/* MAPROOM CSS FOR INTERACTIVE MAPS http://maproom.net */


body {
	color: #999;
	font-family: arial, sans-serif;
}

/* EDIT THE MAP SIZE, BACKGROUND AND FRAME HERE */
#map-container {
	max-width: 350px; /*change to resize map */
	background-color: #fff;
}


/* SVG MAP LABELS */
text {
	fill: #000000; 
	font-family: Helvetica, arial, sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1;
}	



/* SVG DEFAULT PATH STYLE */
path {
	fill: #35ADFC; /* Default map colour */
	fill-opacity: 0.5;
	stroke: #ffffff;
	stroke-width: 1;
 	stroke-linecap="round";
 	stroke-linejoin="round";
 	stroke-miterlimit="10";
	-webkit-transition: fill 300ms ease-in-out;
	-moz-transition: fill 300ms ease-in-out;
	-ms-transition: fill 300ms ease-in-out;
	-o-transition: fill 300ms ease-in-out;
	transition: fill 300ms ease-in-out;
}

path:hover {
	fill: #F2B61C; /* Default hover colour */
	fill-opacity: 0.3;
	cursor: pointer;
}



/* THAMES STYLE */
path#The_Thames {
	fill: #ffffff;
	fill-opacity: 1.0;
	stroke: none;
}
path#The_Thames:hover {
	cursor: default;
}

/* TOOLTIP STYLE */

/* Tooltip heading */
.MR-tooltip h3 {
	margin: 0 0 3px;
	padding: 0 0 3px;
	border-bottom: 1px solid #ccc;
	color: #C10000;
	font-size: 15px;
}
/* Tooltip content */
.MR-tooltip, .MR-tooltip p {
	color: #222;
	font-size: 12px;
	line-height: 1.2;
}
/* Tooltip box */
.MR-tooltip {
	background-color: #fff;
	padding: 8px;
	max-width: 180px;
	margin: 0 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.5);
	box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.5);
}
/* Tooltip right arrow */
.MR-right-tooltip:after {
	left: -6px;
	top: 20%;
	content: "◀";
	position: absolute;
	pointer-events: none;
	text-shadow: -1px 1px 1px rgba(50, 50, 50, 0.5);
	color: #fff;
}
/* Tooltip left arrow */
.MR-left-tooltip:after {
	right: -6px;
	top: 20%;
	content: "▶";
	position: absolute;
	pointer-events: none;
	text-shadow: 2px 1px 1px rgba(50, 50, 50, 0.5);
	color: #fff;
}


/* FUNCTIONALITY - DO NOT CHANGE */
#map-container {
	position: relative;
	margin: 0 auto;
	padding: 0 0 55px;
	overflow: hidden;	
}
.MR-tooltip-container {
	position: absolute;
	z-index: 10000000
}
.MR-tooltip {
	display: none;
}
.MR-tooltip-mobile-show {
	display: block;
}
.MR-arrow-hide .MR-left-tooltip:after, .MR-arrow-hide .MR-right-tooltip:after {
	display: none;
}



/* COPYRIGHT NOTICE MAY BE RESTYLED OR MOVED, BUT NOT HIDDEN OR DELETED */
.copyright {
	position: absolute;
	bottom: 5px;
	width: 100%;
	text-align:center;
	font-size: 9px;
}
.copyright a {
	color: inherit;
	text-decoration: underline;
}



/* BROWSER AND DEVICE SUPPORT */

object {
    width: 100%; /* for IE9 sizing */
    min-height:  250px; /* for Safari sizing on PCs and Ipads */
} 


@media only screen and (max-width: 740px) {

path {
	stroke-width: 2;
}




@media only screen and (max-width: 480px) {


path {
	stroke-width: 2;
}

}


