@charset "utf-8";

/* This contains the map and all locationInstances within. */
.mapContainer{
	margin: 0px auto;
	max-width: 90%;
	text-align: center;
	position: relative;
}

/* This is the map image. */
.mapBackground{
	margin: 0px auto;
	max-width: 100%;
	background-color: #cde4f5;
}



/* These are the clickable elements within the map. */
.locationInstance{
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 16px;
	color: #000000 ;
	cursor: pointer;
	position: absolute;
}
@media screen and (max-width: 1200px){
	.locationInstance{
		font-size: 14px;
	}
}
@media screen and (max-width: 700px){
	.locationInstance{
		font-size: 8px;
	}
}

.locationInstance:hover{
	color: #ff0000;
}