html {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

body {
	margin: 0px;
	padding: 0px;
	/* font-family: 'HelveticaNeue-Light', 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; */
	font-family: Georgia, serif;
	-webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale;
    /* text-shadow: 1px 1px 1px rgba(0,0,0,0.004); */
    font-size: 100%;
    height: 100%;
    color: rgba(255,255,255,0.82);
}

*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::-moz-selection { background: transparent; text-shadow: none; }
::selection { background: transparent; text-shadow: none; }

p {
	font-size: 16px; /* 15px; */
	line-height: 21px; /* 1.35em; */
	margin: 0px 0px 1.35em 0px;
}

a {
	color: rgba(255,255,255,0.82);
}


/* '''''''''''''''''''''''''''''''''''''''''''''''''''' */
#page-wrapper {
	background: white;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border: 6px solid #003366;
}
#page-wrapper:after {
	content: "";
	display: table;
	clear: both;
}

#content-wrapper {
	background: #FFF; /* pink; */
	width: 100%;
	height: 100%;
}

/* LOADER css - styling from codepen: https://codepen.io/Elbone/pen/sezjI */
/* Animation */
@-webkit-keyframes loading {
  to { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes loading {
	to { -moz-transform: rotate(360deg); }
}
@-ms-keyframes loading {
	to { -ms-transform: rotate(360deg); }
}
@keyframes loading {
	to { transform: rotate(360deg); }
}

/* Loader */
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0px 0px -20px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	border-top: 5px solid #003366; /* #fff; */
	border-right: 5px solid #003366; /* #fff; */
	border-bottom: 5px solid #777;
	border-left: 5px solid #777;
	-webkit-animation: loading 1.2s infinite linear;
	-moz-animation: loading 1.2s infinite linear;
	-ms-animation: loading 1.2s infinite linear;
	animation: loading 1.2s infinite linear;
}

/* titlebox in bottom */
.titleBox {
	position: absolute;
	bottom: 6px; /* 16px; */
	left: 6px; /* 16px; */
	right: auto; /* 6px; */
	z-index: 9999;
	background: rgba(32,32,32,0.65); /* rgba(0,52,102,0.65); /* rgba(0,34,68,0.5); /* rgba(64, 64, 64,0.65); */
	padding: 0.4em 0.5em; /* 0px; /* 0.75em; */
	border-radius: 0px 4px 0px 0px;
}

.titleBox p {
	/* font-size: 15px; */
	margin: 0px;
	/* color: rgba(255,255,255,0.82); */
}

.titleBox p span {
	display: inline-block;
	margin: 0px 0.35em;
	/* border: 1px solid red; */
}

/* .titleBox p span div {
	display: block;
	float: left;
	width: 100px;
	font-family: arial, sans-serif;
	border: 1px solid red;
	background: red;
} */


#image-zoom-wrapper {
	position: relative;
	text-align: left;
	width: 100%; /* 800px; */
	height: 100%; /* 400px; */
	overflow: auto;
	margin: 0px; /* 10px auto; */
	border: 0px; /* 1px solid #000; */
	background: transparent; /* #FFF url("../images/loader2.gif") no-repeat 50% 50%; */
	background-size: 60px;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

#image-zoom-wrapper.js-active {
	/* cursor: move; */
	background-image: none;
}

.js-enabled #image-zoom-wrapper {
	overflow: hidden;
	position: relative;
}

.js-enabled #image-zoom-wrapper #image-zoom {
	visibility: hidden;
	position: relative;
}

#image-zoom-wrapper div {
	padding: 0;
}

#image-zoom-wrapper div.zoom-control {
	width: 26px;
	height: 26px;
}

#image-zoom-wrapper div.zoom-in,
#image-zoom-wrapper div.zoom-out {
	background: url("../images/zoom-in.png") no-repeat 0 0;
	position: absolute;
	left: 10px;
	top: 10px;
}

#image-zoom-wrapper div.zoom-out {
	background-image: url("../images/zoom-out.png");
	top: 46px;
}

#image-zoom-wrapper div.zoom-off {
	background-position: 0 100%;
}


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

	#image-zoom-wrapper {
		width: auto;
		height: 100%;
	}

	/* #image-zoom-wrapper div.zoom-in,
	#image-zoom-wrapper div.zoom-out {
		background-image: url("../images/zoom-in-104_2.png");
		background-size: 52px;
		width: 52px;
		height: 52px;
	}

	#image-zoom-wrapper div.zoom-out {
		background-image: url("../images/zoom-out-104_2.png");
		left: auto;
		right: 10px;
		top: 10px;
	} */

	.titleBox {
		right: 6px; /* align right side to match border */
		border-radius: 0px 0px 0px 0px;
	}

}