body {
	margin: 0;
	height: 100%;
    overflow: hidden;
    font-family: 'Arial';
}

#mapContainer {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	height: 100vh;
}


#sidebar {
	position: absolute;
	right: 0;
	width: 280px;
	padding: 10px;
	height: 100%;
	background-color: black;
	font-size: 16px;
	color: white;
}

#sb_start span, #sb_end span {
	display: inline-block;
	width: 100px;
}

#tooltip {
	position: absolute;
	display: none;
	color: white;
	background-color: #011128;
	border-radius: 4px;
	padding: 8px 12px;
	width: 240px;
}
#tooltip h2 {
	margin: 4px;
	display: inline-block;
	width: 200px;
}
#tooltip span {
	float: right;
	width: 24px;
	height: 24px;
	margin-top: 4px;
	font-size: 24px;
	text-align: center;
	line-height: 26px;
}
#tooltip span:before {
	content: "\2716";
}
#tooltip span:hover {
	background-color: white;
	color: black;
}
#tooltip div {
	width: 160px;
	border-bottom: 1px solid white;
}
#tooltip p {
}