/* html{
	height: 100%;
}

body{
	color: #fff;
	font-family: arial;
	margin: 0px;
	height: 100%;
} */

.timelineWindow{
	margin-top: 40px;
	color: #fff;
	font-family: arial;
	width: 100%;
	overflow-x: hidden;
	z-index: -1;
	position: relative;
}

.timelineWindow p{
	margin: 0px;
}

.timelineWindow a{
	color: #fff;
	font-family: arial;	
}

.banner{
	position: relative;
	width: 100%;
	z-index: 9900;
}

.banner img{
	width: 100%;
}

.tlBackground{
	height: 100%;
	position: fixed;
	left: 0px;
	right: 0px;
	background-size: 100% 400%;
	background-position: 50% 66.666%;
	/* background-position: calc(100%/3*2); */
	background-image: linear-gradient(to top, #397aa0 0%, #397aa0 25%, #274867 25%, #274867 50%, #397aa0 50%, #397aa0 75%, #274867 75%, #274867 100%);
}

.transition{
	transition: background-position 1s linear;
}

.darkBlue{
	
}

.lightBlue{
	
}

.tlDottedLine{
	height: 100%;
	position: fixed;
	left: 0px;
	width: calc(50% + 68px);
	border-right: 4px dashed #fff;
}

.tlDottedLineLeft{
	
}

.tlNavigation{
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
	z-index:9990;
}

.tlNavigationCover{
	display: none;
}

.tlNavigationInner{
	position: relative;
}

.tlNavigationInner::after{
	content: '';
	position: absolute;
	border-right: 3px dashed #fff;
	height: calc(100% - 8px);
	top: 4px;
}

.tlNavOption{
	margin: 14px 7px;
	position: relative;
}

.tlNavOption::after{
	content: '';
	position: absolute;
	background-color: #fff;
	height: 16px;
	width: 16px;
	border-radius: 100%;
	left: -14px;
	top: 2px;
}

.tlNavOption a{
	text-decoration: none;
	padding: 7px;
	color: #fff;
	text-shadow: 0px 0px 2px #666;
	line-height: 18px;
}

.tlNavOption.activeNav a, .tlNavOption a:hover{
	font-weight: bold;
	color: #fff;
	font-size: 18px;
}

.timeBlocks{
	position: relative;
	width: calc(100% - 140px);
	margin-left: 140px;
}

.timeBlock{
	position: relative;
}

.dottedTimeLine{
	position: absolute;
}

.entry{
	display: block;
	vertical-align: top;
	width: 80%;
	margin: auto;
}

.oddEntry{
	/* transform: translateX(7.5%); */
	padding: 30px 5% 30px 15%;
}

.evenEntry{
	/* transform: translateX(-7.5%); */
	padding: 30px 15% 30px 5%;
}

.entryTop{
	position: relative;
}

.entryBottom{
	
}
/* line these up */
.timelineDotContainer{
	display: inline-block;
	position: relative;
	vertical-align: top;
	width: 50%;
	padding: 0px;	
}

.timelineDotDiv{
	position: absolute;
	left: 0px;
	right: auto;
	width: 25%;
}

.oddEntry .timelineDotDiv{
	left: auto;
	right: 0px;
}

.timelineDotContainer .timelineDot{
	position: relative;
	background-color: #fff;
	height: 35px;
	width: 35px;
	border-radius: 100%;
	margin: 18px auto;
}

.image{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 50%;
	height: 300px;
	padding: 0px;
}

.oddEntry .image{
	text-align: right;
}

.image img{
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	min-height: 300px;
}

.imageContain{
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
}

.videoLink{
	position: absolute;
	bottom: 0px;
	height: 74px;
	display: block;
	width: 100%;
}

.oddEntry .videoLink{
	right: 0px;
}

.videoLink a{
	text-decoration: none;
}

.videoTitle{
	width: calc(100% - 66px);
	height: 100%;
	display: inline-block;
	position: relative;
	text-align: left;
	vertical-align: top;
}

.videoTitle p{
	padding: 0px 10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.videoPlayButton{
	width: 66px;
	height: 100%;
	text-align: center;
	display: inline-block;
	position: relative;
	text-align: left;
	vertical-align: top;
}

.videoPlayButtonInner{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
	margin: auto;
	left: 0px;
	right: 0px;
}

.videoPlayButton img{
	width: 24px;
	height: 24px;
	margin: 4px auto;
	min-height: 24px;
}

.videoPlayButton p{
	font-size: 10px;
	padding: 5px;
	font-weight: bold;
	font-style: italic;
}

.videoTitle{
	background-color: rgba(57,122,160,.8);
}

.videoPlayButton{
	background-color: rgba(57,122,160,1);
}

body.lightBlue .videoTitle{
	background-color: rgba(39,72,103,.8);
}

body.darkBlue .videoTitle{
	background-color: rgba(57,122,160,.8);
}

body.lightBlue .videoPlayButton{
	background-color: rgba(39,72,103,1);
}

body.darkBlue .videoPlayButton{
	background-color: rgba(57,122,160,1);
}

.info{
	display: inline-block;
	vertical-align: top;
	width: 40%;
	padding: 0px 5%;
}

.evenEntry .info{
	text-align: right;
}

.year{
	font-size: 60px;
	font-weight: bold;
}

.date{
	font-size: 36px;
	padding: 2px 0px 20px;
}

.title{
	font-weight: bold;
	font-size: 20px;
}

.text{
	color: #fff;
	padding: 20px 0px;
}

.quoteSection{
	
}

.person{
	color: #fff;
	padding-bottom: 4px;
	font-weight: bold;
}

.quote{
	font-style: italic;
}

@media screen and (max-width: 1000px) {
	.tlDottedLine {
		width: calc(200px);
	}
	.timeBlocks {
    width: calc(100% - 200px);
    margin-left: 200px;
	}

	.oddEntry, .evenEntry{
		padding: 30px 0px;
		width: 100%;
	} 
	.timelineDotContainer {
		float: left;
		width: 0%;
	}
	.timelineDotDiv {
		width: 40px;
		left: -19px !important;
		right: auto !important;
	}

	.timelineDotContainer .timelineDot {
    height: 30px;
    width: 30px;
	}
	.oddEntry .info, .evenEntry .info{
		text-align: left;
		width: 90%;
		padding: 0px 5%;
	}

	.entryBottom {
    margin-bottom: 300px;
    position: relative;
	}

	.image {
		position: absolute;
		bottom: -320px;
		left: 5%;
		right: 5%;
		width: 90%;
		height: 300px;
	}
	.image img {
    min-height: 0px;
	}
	.imageContain {
    text-align: center;
	}
	.videoLink {
    margin: auto;
    left: 0px;
		right: 0px;
		text-align: left;
	}
}

@media screen and (max-width: 700px) {
	.tlNavigation {
    top: 40px;
    transform: translateY(0%);
		left: calc(40px);
		height: 38px;
		overflow: hidden;
		transition: all .3s linear 0s;
		cursor: pointer;
		text-align: center;
	}
	.darkBlue .tlNavigation {
		background-color: #397aa0;
	}
	.lightBlue .tlNavigation {
		background-color: rgba(39,72,103,1);
	}
	.tlNavigation.active {
    top: 40px;
		left: 0px;
		width: 100%;
		height: 100%;
	}
	.tlNavigationInner {
		display: inline-block;
		margin: auto;
	}
	.tlNavigationInner::after {
		height: calc(100% - 40px);
		top: 20px;
		left: 0px;
	}
	.tlNavigationCover{
		display: block;
		height: 38px;
		text-align: center;
	}
	.tlNavigationCover p{
		color: #fff;
		font-size: 16px;
		line-height: 18px;
		font-weight: bold;
		text-shadow: 0px 0px 2px #666;
		padding: 10px;
	}

	.tlDottedLine {
    width: calc(30px);
	}
	.timeBlocks {
    width: calc(100% - 30px);
    margin-left: 30px;
	}

	.oddEntry .info, .evenEntry .info {
    width: 80%;
    padding: 0px 10%;
	}
	.image{
		width: 80%;
		padding: 0px 5%;
	}
} 
