#timeline {
	width: 900px;
	height: 265px;
	margin-left: -25px;
	position: relative;
	margin-top: 20px;
	border: 1px dotted #8BB9C1;
}
#timeline-content {
	background: white url("../images/timeline.jpg") no-repeat center center;
	width: 100%;
	height: 100%;
	z-index: 10;
	position: relative;
}
#timeline-arrow {
	list-style-type: none;
	background: #6CB252;
	height: 60px;
	position: absolute;
	top: 70px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 10px 0 0px;
	margin: 0 120px 0 0px;
	line-height: 50px;
}
#timeline-arrow li {
	display: block;
	vertical-align: middle;
	line-height: normal;
	text-align: center;
	color: white;
	height: 100%;
	padding: 0 12px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	cursor: pointer;
	-webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
	font-size: 16px;
	line-height: 20px;
}
#timeline-arrow li:not(:last-child) {
	border-right: 1px solid white;
}
#timeline-arrow li:hover:before {
	content: "";
	background: url("../images/tree.svg") no-repeat top center;
	background-size: cover;
	top: -49px;
	height: 50px;
	width: 40px;
	margin-left: 2px;
	position: absolute;
	z-index: -1;
}
#timeline-arrow li:hover {
	background: #488431;
	font-weight: bold;
}
#timeline-arrow-end {
	position: absolute;
	top: calc(70px - 35px);
	right: 0;
	width: 0;
	margin-right: 55px;
	height: 0;
	border-top: 65px solid transparent;
	border-bottom: 65px solid transparent;
	border-left: 65px solid #6CB252;
}
#timeline:after {
	position: absolute;
	height: 40%;
	width: calc(100% - 50px);
	margin: 0 auto;
	left: 0;
	right: 0;
	border-radius: 50%;
	z-index: 2;
	bottom: 0%;
	content: "";
	box-shadow: 0 7px 16px rgba(0,0,0,0.8);
}
#timeline-area {
	box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 80px;
	right: 80px;
	background: rgba(255,255,255,0.9);
	border: 1px dotted #82BCBE;
	height: 80px;
	z-index: 10;
}
#timeline-area-year {
	float: left;
	width: 212px;
	margin-right: 10px;
	margin-left: 28px;
      margin-top: 10px;
	height: 80%;
	font-size: 59px;
	font-family: "Cookie", cursive, sans-serif;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5));
	flex-shrink: 0;
	filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5)); /* Same syntax as box-shadow */
}
#timeline-area-text {
	display: block;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 14px;
	line-height: 18px;
	height: 100%;
	padding: 0 20px;
}
#timeline-title {
	position: absolute;
	left: 0;
	right: 0;
	top: -35px;
	height: 50px;
	z-index: 100;
	width: 100%;
	text-align: center;
	background: url("../images/text.svg") no-repeat center center;
	-webkit-filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5));
	filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5)); /* Same syntax as box-shadow */

}
#timeline-mobile {
	display: none;
}
#timeline-mobile-title {
	width: 100%;
	height: 100px;
	background: url("../images/text-mobile.svg") no-repeat center center;
	-webkit-filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5));
	filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5)); /* Same syntax as box-shadow */
}
.timeline-mobile-year {
	text-align: center;
}
.timeline-mobile-year img {
	-webkit-filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5));
	filter: drop-shadow( 0px 2px 1px rgba(0,0,0,0.5)); /* Same syntax as box-shadow */
}
.timeline-mobile-event {
	padding-top: 10px;
	border-top: 1px dotted #90CB53;
	padding-bottom: 5px;
}
.timeline-mobile-event:last-child {
	border-bottom: 1px dotted #90CB53;
}
