#interactivemap {
	background-color: #ffffff;
}

#interactivemap > #mainContainerDiv > #mainContentDiv {
	width: 100%;
	height: 100%;
}

#interactivemap > #mainContainerDiv > #mainContentDiv > div:first-child {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 75px;
	overflow: hidden;
}

#interactivemap > #mainContainerDiv {
	padding-right: 0;
}

#mapImage {
	width: 100%;
	height: 100%;
}

#mapControlDiv {
	position: absolute;
	bottom: 0;
	color: #ffffff;
	min-width: 100%;
	height: 72px;
	background-color: #000000;
	z-index: 90;
}

#mapControlDiv ul{
	margin: 0;
	padding: 0;
	white-space: nowrap;
	background-color: #000000;
	display: inline-block;
}

#mapControlDiv.condensed{
	padding: 0 46px;
}

#mapControlDiv ul li {
	width: 124px;
	height: 72px;
	padding: 17px 0 0 20px;
	border-right: solid 1px #ffffff;
	display: inline-block;
	background-color: #000000;
}

#mapControlDiv ul li a, #mapControlDiv ul li a:hover, #mapControlDiv ul li a:visited {
	color: #ffffff;
	text-decoration: none;
}

#mapControlLeft {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #000000;
	z-index: 100;
	font-size: 50px;
	border-right: solid 1px #ffffff;
}
#mapControlRight {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #000000;
	z-index: 100;
	font-size: 50px;
	border-left: solid 1px #ffffff;
}

#mapControlLeft > a, #mapControlRight a, #mapControlLeft > a:hover, #mapControlRight a:hover, #mapControlLeft > a:visited, #mapControlRight a:visited {
	width: 46px;
	height: 72px;
	padding: 25px 0 0 7px;
	display: block;
	text-decoration: none;
	color: #ffffff;
}

.mapPopupContainer {
	height: 345px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto auto;
	width: 525px;
	background-color: rgba(0, 0, 0, 0.8);
	color: #ffffff;
	padding: 24px 16px 24px 1px;
	text-align: right;
	overflow: hidden;

	-webkit-transform: scale(0.1,0.1);
	-moz-transform: scale(0.1,0.1);
	-ms-transform: scale(0.1,0.1);
	-o-transform: scale(0.1,0.1);
	transform: scale(0.1,0.1);
	opacity: 0;

	-webkit-transition: -webkit-transform 1s, opacity 1s;
	-moz-transition: -moz-transform 1s, opacity 1s;
	-o-transition: -o-transform 1s, opacity 1s;
	-ms-transition: -ms-transform 1s, opacity 1s;
	transition: transform 1s, opacity 1s;
}

.mapPopupContainer.active {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-ms-transform: scale(1,1);
	-o-transform: scale(1,1);
	transform: scale(1,1);
	opacity: 1;
}

#zoomInButton {
	width: 70px;
	height: 70px;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
	background: url(../assets/images/Icon_Map_Desktop_ZoomIn.svg) no-repeat center center;
	background-size: 30px 30px;
	background-color: #000;

	display: none;
}

#zoomOutButton {
	width: 70px;
	height: 70px;
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
	background: url(../assets/images/Icon_Map_Desktop_ZoomOut.svg) no-repeat center center;
	background-size: 30px 30px;
	background-color: #000;
}

.zoomButtons #zoomInButton {
	display: block;
}

.zoomButtons #zoomOutButton {
	display: none;
}

.zoomButtons.zoomed #zoomInButton {
	display: none;
}

.zoomButtons.zoomed #zoomOutButton {
	display: block;
}

.mapPopupContainer > div {
	text-align: left;
}

.mapPopupContainer > div > img {
	width: 40px;
	height: 40px;
	margin-bottom: 16px;
}

.mapPopupContainer > div > .headline2Style {
	margin-bottom: 16px;
}

.mapPopupContainer > img {
	max-width: 94%;
}

.closeIcon {
	cursor: pointer;
	width: 28px;
	height: 28px;
	background: url(../assets/images/dnClose.png) no-repeat center center;
	cursor: pointer;
	position: absolute;
	top: 26px;
	right: 16px;
	z-index: 1000;
}

#interactivemap > #mainContainerDiv {
	width: auto;
	height: 100%;
}

a.maplink {
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 12.5px;
	border: 1px solid black;
}

a.maplink span {
	visibility: hidden;
}
/*==========  Non-Mobile First Method  ==========*/

/* Ipad landscape */
@media only screen and (max-width : 1200px) {
	.mapPopupContainer {
		height: 524px;
		width: 440px;
		max-width: 80%;
	}
}

/* Ipad portrait */
@media only screen and (max-width : 992px) {
}

/* Phone landscape */
@media only screen and (max-width : 768px) {
	.mapPopupContainer {
		height: auto;
		width: 340px;
		max-width: 80%;
	}
}

/* Phone portrait changed from 480 to 550 */ 
@media only screen and (max-width : 550px) {
}

/* Retina */ 
@media only screen and (max-width : 320px) {
}
