/* TIMELINE STYLES by Scott Murray */

ol.timeline {
    margin: 0 auto;
    overflow: hidden;
    padding: 4.5em 0;
    position: relative;
    width: 100%
}


/* timeline spine down the middle */

ol.timeline:before {
    background-color: #DCDDDE;
    content: '';
    height: 100%;
    left: 50%;
    margin-left: -1px; /* needs to be 1/2 the width of this element */
    position: absolute;
    top: 0;
    width: 2px
}


/* milestones */

ol.timeline li {
    display: block;
    margin: 4.5em 0;
    overflow: hidden;
    position: relative
}

ol.timeline li:first-child {
    margin-top: 0
}

ol.timeline li:last-child {
    margin-bottom: 0
}


/* timeline markers along spine */

ol.timeline li span.marker {
    background-color: #DCDDDE;
    border: 3px #FFF solid;
    border-radius: 50%;
    height: 10px;
    position: absolute;
    top: 32px;
    width: 10px;
}

ol.timeline li:nth-child(odd) span.marker {
    left: 50%;
    margin-left: -8px
}

ol.timeline li:nth-child(even) span.marker {
    right: 50%;
    margin-right: -8px
}


/* milestone content bubbles */

/* ol.timeline li section {
    border-bottom: 2px #DCDDDE solid;
    padding: 0 1.5em 10px;
    position: relative;
    width: 44.3%
}*/

ol.timeline li section {
    border-top: 2px #DCDDDE solid;
	margin-top:12px;
    padding: 10px 1.5em 10px;
    position: relative;
    width: 43.85%
}
ol.timeline li:nth-child(odd) section {
    float: left
}

ol.timeline li:nth-child(even) section {
    float: right
}


/* milestone content bubbles text */

ol.timeline li section h2 {
	font-size: 1.2em;
	line-height: 1.3em;
}

ol.timeline li section p {
	font-size: .9em;
    line-height: 1.3em;
	margin-bottom:10px;
}

ol.timeline li section a {
    
}

ol.timeline li section p + a {
    
}

ol.timeline li section img {
	max-width:425px;
}
ol.timeline li section .wp-caption  {
	max-width:425px;
}

.wp-caption-text {
	font-size:9px;
}

/* milestone step/time label opposite the content bubble */

ol.timeline li section time {
    color: #8A8C8E;
    float: left;
    font-family: et-book, Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
    font-size: 4em;
    font-weight: normal;
    position: absolute;
    text-transform: uppercase;
    top: 0px;
    width: 100%
}

ol.timeline li:nth-child(odd) section time {
    left: 110%
}

ol.timeline li:nth-child(even) section time {
    right: 110%;
    text-align: right
}