@CHARSET "UTF-8";

.scrollFix {
    line-height: 1.35;
    overflow: hidden;
    white-space: nowrap;
}

.map-canvas {
     width: inherit;
     height: inherit;
     border-top: 1px solid rgba(50, 50, 50, 0.7);
	 border-left: 1px solid rgba(50, 50, 50, 0.7);
	 border-radius: 5px;
     box-shadow: 5px 5px 2.5px rgba(50, 50, 50, 0.4);

}

.map-canvas img{
	max-width:none!important;
	background:none!important;
}


/* +++++ Flipper by http://davidwalsh.name/css-flip +++++ */

/* entire container, keeps perspective */

.flip-container {
	perspective: 1000;
}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
	transform: rotateY(180deg);
	
}

.flip-container, .front, .back {
	width: 500px;
	height: 510px;
	margin: 10px auto 20px auto;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
	/*-webkit-transform: rotateY(0deg);*/
}

/* back, initially hidden pane */
.back {
	-webkit-transform: translateZ(0);
	transform: rotateY(-180deg);
	/*-webkit-transform: rotateY(-180deg);*/
}

/* ----- Flipper by http://davidwalsh.name/css-flip ----- */