#timeline_outer{
	position: relative;
	margin-bottom: -2vw;
	padding: 148px 100px 250px;
	overflow-x: scroll;
}
#timeline_inner{
	height: 700px;
	display: flex;
	align-items: center;
	min-width: 1948px;
	width: 3500px;
	position: relative;
	margin-right: 200px;
}
#timeline_outer svg.divider{
	fill:white;
	position: absolute;
	top: -5vw;
	left: 0;
	transform: scaleX(-1);
	z-index: 1;
}
#timeline_outer *{
	transition: none;
}
.timeline_line_holder{
	/*width: calc(100% - 70px);*/
	/*width: calc(100% + 200px);*/
	width: 1800px !important;
	height: 13px;
	position: absolute;
	left: 0px;
	/*right: 0px;*/
	/*margin: auto;*/
}
.timeline_line_red,
.timeline_line_grey{
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}
.timeline_line_red{
	background: #aa1225;
	transition: none;
	z-index: 5;
}
.timeline_line_grey{
	background: #333333;
	width: 100%;
}
.year_marker_container{
	width: 100%;
	display: flex;
	justify-content: space-between;
	position: absolute;
}
.year_marker{
	width: 40px;
	height: 40px;
	background: #333333;
	border-radius: 40px; 
	border: 5px white solid;
	transition:color ease-in-out .2s!important;
	z-index: 10;
	position: absolute;
	margin-top: -20px;
}
.year_marker.past{
	background: #aa1225;
}
.year_info_container{
	display: flex;
	flex-direction: column;
}
.year_info_container_lower,
.year_info_container_upper{
	position: relative;
}
.year_info_container_upper .year_info{
	bottom: 40px;
}
.year_info_container_lower .year_info{
	top: 40px;
}
.year_info_container_upper .year_info.odd{
	margin-bottom: 150px;
}
.year_info_container_lower .year_info.odd{
	margin-top: 150px;
}
.year_info{
	position: absolute;
	min-width: 150px;
}
.year_info div{
	z-index: 2;
	position: relative;
}
.year_info h3{
	text-align: center;
	border-radius:  0px 0px 10px 10px;
	width: 110px;
	margin: auto;
    margin-bottom: -20px;
    z-index: 1;
    position: relative;
    overflow: hidden;
}
.year_info svg{
	position: absolute;
	z-index:1;
}
.year_info_container_lower .year_info svg{
	top: 0px;
}
.year_info_container_upper .year_info svg{
	bottom: 0px;
}
.year_info.first h3{
	background:#333333;
	color: white;
}
.year_info.second h3{
	background:#aa1225;
	color: white;
}
.year_info.third h3{
	background:#aa1225;
	color: white;
}
.year_info p{
	border-radius: 10px;
	padding: 15px;
	padding-top: 35px;
	margin: 0px;
	overflow: hidden;
}
.year_info.first p{
	background:#aa1225;
	color: white;
}
.year_info.second p{
	background:#e3e3e3;
	color: #333333;
}
.year_info.third p{
	background:#333333;
	color: white;
}
.branch_container{
	display: flex;
	flex-direction: column;
}
.branch_container_lower,
.branch_container_upper{
	position: relative;
}
.branch{
	width: 2px;
	background: #aa1225;
	position: absolute;
}
.branch_container_upper .branch{
	bottom: 25px;
}
.branch_container_lower .branch{
	top: 25px;
}
.year_arrow_container{
	position: relative;
}
.year_arrow_container_upper .year_arrow{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 30px 10px;
	border-color: transparent transparent #aa1224 transparent;
	position: absolute;
	bottom: 0px;
}
.year_arrow_container_lower .year_arrow{
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 10px 0 10px;
	border-color: #aa1224 transparent transparent transparent;
	position: absolute;
	top: 0px;
	z-index: 0;
}
.timeline_line_holder svg{
	position: absolute;
	right: -372px;
	top: -9px;
}
svg#skip_timeline{
	position: absolute;
	margin-left: 7vw;
	left: 0px;
	top: 0px;
	width: 60px;
	cursor:pointer;
	fill:#aa1224;
	transition: .5s ease-in fill;
}
.skip_cont:hover svg#skip_timeline{
	fill:#333333;
}