/*
// File written by Jochen "Khuri" Dippel <khuri@khuris.com>
// Copyright 2015
//
// File        : shared_fullscreenimg.css
// Begin       : 2011.09.05 12:29:10
// Last Update : 2015.10.22 09:03:35
*/

/* Fullscreen Image */
#fullscreenbox_box {
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	height: auto;
	visibility: hidden;
	padding: 20px 20px 6px 20px;
	border: 1px solid #a9a9a9;
	background: #fff;
	z-index: 1000;
	color: #444;
}
#fullscreenbox_img {
	width: auto;
	height: auto;
	border: 1px #aaa solid;
	z-index: 1000;
}
#fullscreenbox_blackbox {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100% !important;
	height: 100% !important;
	visibility: visible;
	background-color: #000;
	opacity: 0;
	-moz-opacity: 0;
	-khtml-opacity: 0;
	filter: alpha(opacity=0);
	z-index: 900;
}
#fullscreenbox_loadingbox {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-left: -110px;
	margin-top: -80px;
	width: 200px;
	height: 140px;
	padding: 0px;
	border: 10px solid #ddd;
	background: url(../images/support/loading.gif) no-repeat #fff center;
	z-index: 10000;
}
#fullscreenbox_closebutton {
	position: absolute;
	top: 2px;
	right: 0;
	width: 138px;
	height: 20px;
	background: url(../images/support/closebutton.png) no-repeat top right;
	cursor: pointer;
}
#fullscreenbox_text {
	position: relative;
}
#fullscreenbox_cl,#fullscreenbox_cr {
	position: absolute;
	top: 0px;
	height: 100%;
	width: 100px;
	cursor: pointer;
}
#fullscreenbox_cl {
	left: 2px;
	float: left;
	background: url(../images/support/fullscreenbox_left.png) no-repeat center left;
}
#fullscreenbox_cr {
	right: 2px;
	float: right;
	background: url(../images/support/fullscreenbox_right.png) no-repeat center right;
}
#fullscreenbox_cl:hover, #fullscreenbox_cl.visible {
	background: url(../images/support/fullscreenbox_left_hover.png) no-repeat center left;
}
#fullscreenbox_cr:hover, #fullscreenbox_cr.visible {
	background: url(../images/support/fullscreenbox_right_hover.png) no-repeat center left;
}
/* classes to mark our images */
div.fullimg {
	position: relative;
	display: list-item;
	list-style-type: none;
}
div.fullimg img {
	cursor: pointer;
}
div.fullimg img + div, #fullscreenbox_magnify {
	position: absolute;
	top: 0;
	right: 0;
	background: url(../images/support/fullscreenimg_magnify.png) no-repeat top right;
	visibility: hidden;
	width: 32px;
	height: 32px;
	cursor: pointer;
}
div.fullimg img:hover + div, div.fullimg img + div:hover, div.fullimg img + div.visible {
	visibility: visible;
}
#fullscreenbox_magnify {
	visibility: visible;
	top: 32px;
	right: 34px;
}
/*
@media only screen and (max-width: 767px) {
	#fullscreenbox_box {
		width: auto !important;
		height: auto !important;
		max-width: 100% !important;
		max-height: 100% !important;
		margin: 0 auto !important;
		top: 0 !important;
		left: 0 !important;
	}
	#fullscreenbox_img {
		width: auto !important;
		height: auto !important;
		max-width: 100% !important;
		max-height: 100% !important;
	}
}
*/