.mapContainer {
	float: left;
	width: 99.6%;
	min-height: 200px;
	background: #ccc;
	position: relative;
	border: 1px solid #555;
}
.mapItem {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.timeline {
	float: left;
	background: #444;
	width: 100%;
	padding: 0px 0% 0px;
	margin-left: 0px;
	height: 20px;
	position: relative;
	border-top: 4px solid #000;
	border-bottom: 2px solid #000;
	z-index: 100;
	margin-bottom: 2px;
}
.timelineObj {
	float: left;
	font-size: 13px;
	margin-left: 0px;
	width: 0.8%;
	background: rgba(170,210,255,0.4);
	position: absolute;
	height: 18px;
	cursor: pointer;
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	-o-transition: all 100ms linear;
	-ms-transition: all 100ms linear;
	transition: all 100ms linear;

}
.timelineObj:hover {
	background: #00DDFF;
	color: black;
}
.timelineObj.selected {
	background: #00DDFF;
	font-weight: bold;
	color: #000;
}
.play {
	position: absolute;
	z-index: 100;
	left: 20px;
	bottom: 20px;
	font-size: 120px;
	color: #00DDFF;
	font-weight: bold;
	text-shadow: 2px 2px 14px #000;
	text-align: left;
	cursor: pointer;
	font-family: Arial, sans-serif;
}
.play:hover {
	color: #fff;
}


@media screen and (max-width: 600px) {
	.play {
		font-size: 60px;
	}
	
}
.year {
	position: absolute;
	left: 20px;
	top: 20px;
	font-size: 40px;
	text-shadow: 2px 2px 14px #000;
	color: #fff;
	z-index: 200;
}