/*
 * gallerybox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://gallerybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
/*FULL SCREEN GALLERY*/
#gallerybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#gallerybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	/*background-image: url('gallerybox.png');*/
}

#gallerybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1100;
	display: none;
}

#gallerybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#gallerybox-wrap.full-screen-gallery {
	position: absolute;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: auto !important;
	outline: none;
	display: none;
}

.full-screen-gallery #gallerybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

.full-screen-gallery #gallerybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
	opacity: 1 !important;
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	box-shadow: 1px 1px 80px #000000;
	-moz-box-shadow: 1px 1px 80px #000000;
	-webkit-box-shadow: 1px 1px 80pxx #000000;
	-opera-box-shadow: 1px 1px 80px #000000;
	-khtml-box-shadow: 1px 1px 80px #000000;
}

.full-screen-gallery #gallerybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}


/* Begin: close */
#gallerybox-close.full-screen-gallery {
	position: fixed;
	top: 0; 
	right: 0;
	background: url("/media/img/bg_cube_gallerylayer.png") repeat scroll 0 0 rgba(0, 0, 0, 0);
	height: 51px;
	cursor: pointer;
	width: 100%;
	z-index: 1103;
	/*display: block !important;*/
}

#gallerybox-close.full-screen-gallery.opened{
	display: block !important;
}

#gallerybox-close.full-screen-gallery img{
	position: absolute;
	right: 0;
	top: 0;
}
/* End: close */


.full-screen-gallery #gallerybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

.full-screen-gallery #gallerybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
	
	cursor: pointer;
}

.full-screen-gallery #gallerybox-frame {
	width: 640px;
	height: 480px;
	border: none;
	display: block;
	margin: 100px auto;
}




/* Begin: Left, Right controls */
#gallerybox-left.full-screen-gallery,
#gallerybox-right.full-screen-gallery {
	position: fixed;
	bottom: 0px;
	height: 100%;
	width: 20%;
	outline: none;
	z-index: 1102;
	
}

#gallerybox-left.full-screen-gallery.opened,
#gallerybox-right.full-screen-gallery.opened{
	display: block !important; 
}

#gallerybox-left.full-screen-gallery {
	left: 0;
}

#gallerybox-right.full-screen-gallery {
	right: 0;
}

.full-screen-gallery #gallerybox-left-ico,
.full-screen-gallery #gallerybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 34px;
	height: 66px;
	margin-top: -33px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

.full-screen-gallery #gallerybox-left-ico {
	background: url(/media/img/btn_layer_left.png) no-repeat;
	background-position: 0 0;
}

.full-screen-gallery #gallerybox-right-ico {
	background: url(/media/img/btn_layer_right.png) no-repeat;
	background-position: 0 0;
}


#gallerybox-left.full-screen-gallery span {
	left: 5%;
}

#gallerybox-right.full-screen-gallery span {
	left: auto;
	right: 5%;
}
/* End: Left, Right controls */

.full-screen-gallery-title{
	color: #d3d6dc;
    font-size: 12px;
    font-weight: bold;
    left: 33px;
    position: absolute;
    text-transform: uppercase;
    top: 16px;
    z-index: 1200;
}

.full-screen-gallery-title img{
	margin-right: 20px;
    vertical-align: middle;
}

/* Begin: title */
.full-screen-gallery #gallerybox-title {
    position: relative;
	padding-top: 10px;
	font-family: Verdana,Geneva,Arial,Helvetica,sans-serif;
	z-index: 1103;
}

.full-screen-gallery #gallerybox-title .main-title {
	position: absolute;
	top: -12px;
	text-align: center;
	display: block;
	width: 95%;
	color: white;
	padding: 0;
	font: bold 18px Arial;
}

.full-screen-gallery #gallerybox-title .origin-link {
	font-size: 95%;
	padding-top: 5px;
	color: #ffffff;
}

.full-screen-gallery #gallerybox-title .origin-link .ext {
	text-transform: uppercase;
}

.full-screen-gallery #gallerybox-title .origin-link .ext,
.full-screen-gallery #gallerybox-title .origin-link .size {
	margin-left: 10px;
}

.full-screen-gallery #gallerybox-title .origin-link a,
.full-screen-gallery #gallerybox-title .origin-link a:visited {
	color: #ffffff;
}
.full-screen-gallery #gallerybox-title .origin-link a:hover{
	color: #626262;
}

/* End: title */

