.timeline {
    position: relative;
	width: 100%;
    padding:4px 0 0 0;
    margin-top:0.1em;
    list-style: none;
}
.timeline>li:nth-child(even){
    position: relative;
    margin-bottom: 50px;
    height: 180px;
    right:0px;
}
.timeline>li:nth-child(odd){
    position: relative;
    margin-bottom: 50px;
    height: 180px;
    left:0px;
}
.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}
.timeline>li:after {
    clear: both;
    min-height: 170px;
}

.timeline > li .timeline-box{
	position: relative;
	float: left;
	width: 100%;
	border:1px solid transpraent;
}
.timeline>li:nth-child(even) .timeline-panel,
.timeline>li:nth-child(even) .timeline-image{
	float: left;
}
.timeline>li:nth-child(odd) .timeline-panel,
.timeline>li:nth-child(odd) .timeline-image{
	float: right;
}
.timeline > li .timeline-panel {
	display: inline-block;
	position: relative;
	width: 55%;
	min-height: 200px;
	padding: 0 20px 20px 30px;
	text-align: left;
	border:1px solid transpraent;
}
.timeline > li .timeline-image {
    z-index: 100;
	display: inline-block;
    position: relative;
	background-size:cover;
    border: 2px solid #F3f3f3;
    border-radius: 100%;
    background-color: transparent;
    box-shadow: 0 0 5px #4582ec;
    width: 200px;
    height: 200px;
    margin-left: 0px;
	border:1px solid transpraent;
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1;
}
.timeline > li .timeline-panel > .timeline-heading{
	font-size:0.6em;
}
.timeline > li > h2{font-size:0.6em;line-height:0.6em;}
.timeline > li .timeline-panel > .timeline-body{
}
.timeline > li .line:before {
	content: "";
    position: absolute;
    top: 10%;
    bottom: 0;
    width: 1px;
    height:350px;
    background-color: #A7A7A7;
    box-shadow: 0 0 5px #4582ec;
	}
timeline .timeline-body>ul {
    margin-bottom: 0;
    color:#808080;
}
/*Style for even div.line*/
.timeline>li:nth-child(odd) .line:before {
    left: 47.5%;
    -ms-transform: rotate(-55deg); /* IE 9 */
    -webkit-transform: rotate(-55deg); /* Safari */
    transform: rotate(-55deg);
}
/*Style for odd div.line*/
.timeline>li:nth-child(even) .line:before  {
    left: 52.5%;
    -ms-transform: rotate(55deg); /* IE 9 */
    -webkit-transform: rotate(55deg); /* Safari */
    transform: rotate(55deg);
}
.timeline>li:last-child .line:before {
	height:1px;
	}
	
@media only screen and (max-width: 767px){
	.timeline > .timeline-image{display:table-row;}
	.timeline > li .line:before {display:none;}
}