body{
		font-family: arial, sans-serif;
		font-weight: 400;
		background: #ffffff;
		font-size: 12px;
		text-align: center;
		margin: 0px;
		padding: 0px;
		cursor: default;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
.leftpanel {
	width: 15%;
	float: left;
	margin: 10px 0;
	height: 630px;
	overflow: scroll;
	position: fixed;
}

.leftpanel img {
	width: 100%;
	height: auto;
	margin: 5px 0;
}

.leftpanel .thumb {
	padding-bottom: 5px;
	border: 1px solid #990000;
	
}

.leftpanel .thumb a {
	text-decoration: none;
}

.rightpanel {
	width: 84%;
	float: right;
}

.rightpanel img {
	width:100%;
	height:auto;
}

.button {
  display: inline-block;
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 2vh;
  padding: 5px;
  width: 30%;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
	
	/* Mapify custom popOver example */
	
	.mapify-popOver strong{
		font-weight: 400;
		font-size:24px;
		line-height: 1em;
		display: block;
		margin-bottom: 10px;
		color: #000;
	}
	.mapify-popOver{
		color: #999;
		font-size: 16px;
		height: 130px;
	}
	.mapify-popOver-content{
		position: relative;
		top:50%;
		transform: translateY(-50%);
		-webkit-transform: translateY(-50%);
	}
	
	.mapify-popOver.customPopOver{
		background: #09f;
	}
	
	/* Custom hovering style */
	.mapify-hover{
		fill:rgba(0,0,0,0.15);
		stroke: #fff;
		stroke-width: 2;
	}
	
	.customHover{
		fill:#09f;
		stroke: #fff;
		stroke-width: 2;
	}

@media only screen and (max-width: 800px) {
	
		.leftpanel {
		display: none;	
	}
	
	.rightpanel {
		width: 100%;
	}
	
	.rightpanel img {
		width: 100%;
	}
}