#map {
	position: absolute;
	left: 5em;
	right: 5em;
	bottom: 5em;
	top: 9em;
	border-radius: 1em;
}

.dot {
	border-radius: 10em;
	border: 2px solid white;
	box-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.tooltip {
	border-radius: .2em;
	position: relative;
	display: inline-block;
	width: 200px;
	height: 130px;
	background-size: cover;
	overflow: hidden;
	text-overflow: ellipsis;
}


.tooltip::before {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2em;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #333;
	opacity: .4;
}

.tooltip::after {
	text-align: center;
	content: attr(title);
	padding: .5em;
	position: absolute;
	display: inline-block;
	width: 100%;
	line-height: 1em;
	max-height: 2em;
	overflow: hidden;
	left: 0;
	right: 0;
	bottom: 0;
	color: #fff;
	font-family: verdana;
	white-space: nowrap;
	text-overflow: ellipsis;
}

#footer {
	height: 3em;
}