@charset "utf-8";

#map {
	max-width: 100%;
	max-height: 100%;
}

#map path {
	fill: #4769B2;
	stroke: #FFFFFF;
	stroke-width: 0.6;
	transition: fill 0.2s, stroke 0.3s;
}

#map path:hover {
	fill: #86AAE0;
	stroke: #CCCCCC;
}

#map .separator {
	stroke: #CCCCCC;
	fill: none;
	stroke-width: 1.5;
}

#map .separator:hover {
	stroke: #CCCCCC;
	fill: none;
}

#map .cent_ref {
	fill: #A0A0A0;
	cursor: pointer;
}

#map .cent_comp {
	fill: #98FB98;
	cursor: pointer;
}

#map .cons_spe {
	fill: #87CEEB;
	cursor: pointer;
}

#map_tooltip {
	display: none;
	position: absolute;
	border-radius: 3px;
	background: #292929;
	color: white;
	font-family: sans-serif, Verdana;
	font-size: smaller;
	padding: 3px;
}