.timeline-container {
    position: relative;
    height: 95px;
    width: 1170px;
    margin: 0 auto;
    display: table-cell;
    margin-bottom: 50px;
}
.timeline-container ol, .timeline-container ul {
	list-style: none;
}
.timeline-container blockquote, q {
	quotes: none;
}
.timeline-container blockquote:before, 
.timeline-container blockquote:after,
.timeline-container q:before, 
.timeline-container q:after {
	content: '';
	content: none;
}

.timeline-container .eventPointer {
	width: 0; 
	height: 0; 
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
    border-bottom: 15px solid #e0f0ce;
	position: relative;
	top:0;
	left: 50%;
    transition: all .25s ease-out;
    transform: translateX(-15px);
}

.timeline-nav {
    position: absolute;
    top: 55px;
    bottom: auto;
    width: 33px;
    height: 33px;
    cursor:pointer;
}

.timeline-nav.nav-past {
	background: transparent url(navi.png) 0 0 no-repeat;
}
.timeline-nav.nav-past:hover {
	background: transparent url(navi.png) 0 -33px no-repeat;
}
.timeline-nav.nav-past-off {
	display:none;
    background: transparent url(navi.png) 0 -66px no-repeat;
    cursor:unset;
}

.timeline-nav.nav-future {
	background: transparent url(navi.png) -33px 0 no-repeat;
}
.timeline-nav.nav-future:hover {
	background: transparent url(navi.png) -33px -33px no-repeat;
}
.timeline-nav.nav-future-off {
	display:none;
    background: transparent url(navi.png) -33px -66px no-repeat;
    cursor:unset;
}
.nav-future,
.nav-future-off {
    right: 0;
}
.nav-past,
.nav-past-off {
    left: 0;
}
.timeline-nav.inactive:hover {
    color: #dfdfdf;
    border: 2px solid #dfdfdf;
    cursor: not-allowed;
}
#timelineWrapper {
    position: relative;
    height: 130px;
    margin: 0 50px;
    overflow: hidden;
}
#timelineWrapper::before,
#timelineWrapper::after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 20px;
}
#timelineWrapper::before {
    left: 0;
    background-image: -webkit-linear-gradient( left , #ffffff, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to right, #ffffff, rgba(248, 248, 248, 0));
}

#timelineWrapper::after {
    right: 0;
    background-image: -webkit-linear-gradient( right , #ffffff, rgba(248, 248, 248, 0));
    background-image: linear-gradient(to left, #ffffff, rgba(248, 248, 248, 0));
}
#timelineWrapper #timeline {
    position: absolute;
    z-index: 1;
    top: 69px;
    min-width: 1170px;
    height: 2px;
    background-color: #0155ae;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.event-marker {
    position: absolute;
    top: -4px;
    width: 10px;
    height: 10px;
    background-color: #0155ae;
    border-radius: 50%;
    cursor: pointer;
    transition: all .25s;
}
.event-marker:hover {
    transform: scale(1.4);
}
.event-marker.noShow {
	display:none;
}
.event-marker.selected {
    width: 20px;
    height: 20px;
    top: -9px;
    margin-left: -4x;
    background-color: #88c946;
}
.event-date{
    position: relative;
    bottom: 25px;
    width: 30px;
}
.timeline-tick {
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 10px;
    background-color: #0155ae;
}
.timeline-tick.year {
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 20px;
    background-color: #0155ae;
}
.tick-label {
    position: absolute;
    bottom: 24px;
	color: #0155ae;
    font-size: 14px;
    font-weight: bold;
	left: -16px;
}
.event-detail-container {
    font-family: 'Helvetica', 'Arial', sans-serif;
	min-height: 300px;
    background-color: #e3edc6;
	color: #314EA3;
	font-size: 16px;
	line-height: 1.2;
	width: 65%;
	min-width: 760px;
    margin: 0 auto;
    margin-bottom: 50px;
	-webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.selected-event {
	display: flex;
	width: 100%;
}
.selected-event .text {
    padding: 15px 30px;
    width: 70%;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.imageWrapper {
    display: flex;
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center center;
    background-color: #ffffff;
}
.event-title {
	color: #314EA3;
    font-family: "Myriad", Sans-serif;
    font-size: 25px;
    font-weight: bold;
    text-transform: uppercase;
}
.event-date-range {
    margin-top: 10px;
}
.event-start-date {
    display: inline-block;
}
.separator {
    display: inline-block;
}
.event-end-date {
    display: inline-block;
}
.event-notes {
    color: #314EA3;
    font-family: "Myriad", Sans-serif;
    font-size: 18px;
    font-weight: normal;
}

@media only screen and (max-width: 993px) {
	.event-detail-container {
		width: 100%;
    }
    .selected-event {
        display: flex;
        width: 100%;
        flex-direction: column-reverse;
    }
    .selected-event .text {
        padding: 15px;
        width: 100%;
    }
    .imageWrapper {
        display: flex;
        width: 100%;
        background-size: contain;
        background-repeat:no-repeat;
    }
}
