html {
	height:100%;
}

body {
	margin: 0;
	height:100%;
	min-height:100%;
	font-family: verdana, arial, sans-serif;
	font-size: 14px;
	line-height: 1.77;
}

#wrapper {
	padding-top:45px;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
}

#header {
	margin-top:-45px;
	height:45px;
	width:100%;
	text-align: center;
	background-color:#181A19;
	display:block;
}

#content {
	height:100%;
	background-color: #181A19;
}

#l_button_container {
	width: 40px;
	float: left;
	height:60px;
	border-radius: 7px;
	top: 50%;
	z-index: 10;
	margin: -30px auto auto 10px;
	position: relative;
	border: 1px solid #4A5746;
	background-color: #48A12F;
	background-image: -webkit-gradient(linear, left top, right top, from(#48A12F), to(#7ED166));
	background-image: -webkit-linear-gradient(left, #48A12F, #7ED166);
	background-image: -moz-linear-gradient(left, #48A12F, #7ED166);
	background-image: -ms-linear-gradient(left, #48A12F, #7ED166);
	background-image: -o-linear-gradient(left, #48A12F, #7ED166);
	background-image: linear-gradient(to right, #48A12F, #7ED166);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#48A12F, endColorstr=#7ED166);*/
}

#l_button_container:hover {
	background-color: #56C437;
	background-image: -webkit-gradient(linear, left top, right top, from(#56C437), to(#69D94A));
	background-image: -webkit-linear-gradient(left, #56C437, #69D94A);
	background-image: -moz-linear-gradient(left, #56C437, #69D94A);
	background-image: -ms-linear-gradient(left, #56C437, #69D94A);
	background-image: -o-linear-gradient(left, #56C437, #69D94A);
	background-image: linear-gradient(to right, #56C437, #69D94A);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#56C437, endColorstr=#69D94A);*/
}

#r_button_container {
	width:40px;
	float: right;
	height:60px;
	border-radius: 7px;
	top: 50%;
	z-index: 10;
	margin: -30px 10px auto auto;
	position: relative;
	border: 1px solid #4A5746;
	background-color: #7ED166;
	background-image: -webkit-gradient(linear, left top, right top, from(#7ED166), to(#48A12F));
	background-image: -webkit-linear-gradient(left, #7ED166, #48A12F);
	background-image: -moz-linear-gradient(left, #7ED166, #48A12F);
	background-image: -ms-linear-gradient(left, #7ED166, #48A12F);
	background-image: -o-linear-gradient(left, #7ED166, #48A12F);
	background-image: linear-gradient(to right, #7ED166, #48A12F);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#7ED166, endColorstr=#48A12F);*/
}

#r_button_container:hover {
	background-color: #56C437;
	background-image: -webkit-gradient(linear, left top, right top, from(#69D94A), to(#56C437));
	background-image: -webkit-linear-gradient(left, #69D94A, #56C437);
	background-image: -moz-linear-gradient(left, #69D94A, #56C437);
	background-image: -ms-linear-gradient(left, #69D94A, #56C437);
	background-image: -o-linear-gradient(left, #69D94A, #56C437);
	background-image: linear-gradient(to right, #69D94A, #56C437);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=#69D94A, endColorstr=#56C437);*/
}

.parent {
	background: #181A19;
	height:100%;
}

.panzoom {
	height:100%;
}

.arrow-right {
	position: relative;
	top:50%;
	margin: -12px auto auto auto;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 10px solid #181A19;
}

.arrow-left {
	position: relative;
	top:50%;
	margin: -12px auto auto auto;
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 10px solid #181A19;
}

.buttons {
	margin-left: auto;
	margin-right: auto;
	padding-top: 6px;
}

.button {
	background-color: #7ED166;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#7ED166), to(#48A12F));
	background-image: -webkit-linear-gradient(top, #7ED166, #48A12F);
	background-image: -moz-linear-gradient(top, #7ED166, #48A12F);
	background-image: -ms-linear-gradient(top, #7ED166, #48A12F);
	background-image: -o-linear-gradient(top, #7ED166, #48A12F);
	background-image: linear-gradient(to bottom, #7ED166, #48A12F);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#7ED166, endColorstr=#48A12F);*/
	border: 0;
	cursor: pointer;
	font-size: 16px;
	padding: 5px 7px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
	color: #fff;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:3px;
}

.button:hover {
	background-color: #69D94A;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#69D94A), to(#56C437));
	background-image: -webkit-linear-gradient(top, #69D94A, #56C437);
	background-image: -moz-linear-gradient(top, #69D94A, #56C437);
	background-image: -ms-linear-gradient(top, #69D94A, #56C437);
	background-image: -o-linear-gradient(top, #69D94A, #56C437);
	background-image: linear-gradient(to bottom, #69D94A, #56C437);
	/*filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#69D94A, endColorstr=#56C437);*/
}

@media screen and (min-width: 690px) and (max-width: 1023px) {
	body {font-size: 3.1em;}
	#wrapper { padding-top: 0; }
	#header { display:none; !important }
	.panzoom { display: none !important;}
	#mobile { display:block !important;margin-left:auto; margin-right:auto; }
	.zoom-range { display: none !important; }
	.image { width:auto;height:auto;max-height:100%;max-width:100%;max-device-width:100%;max-device-height:100%; }
}

@media screen and (min-width: 540px) and (max-width: 689px) {
	body {font-size: 1.9em;}
}

@media screen and (max-width: 539px) {
	body {font-size: 1.9em;}
}

.warning {
  border:1px solid #ec252e;
  background:#ec252e;
  color:#fff;
  padding:6px 12px;
  background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ec252e), to(#F05057));
  background:-webkit-linear-gradient(#ec252e, #F05057);
  background:-moz-linear-gradient(#ec252e, #F05057);
  background:-ms-linear-gradient(#ec252e, #F05057);
  background:-o-linear-gradient(#ec252e, #F05057);
  background:linear-gradient(#ec252e, #F05057);
  -webkit-border-radius:8px;
  -moz-border-radius:8px;
  border-radius:8px;
}