/** gallery_lightbox.css - for the gallery_lightbox.js
 *
 */	
	
#lightboxOverlay {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background-color: #000000;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
	opacity: 0.85;
}

#lightbox {
	display: none;
	position: fixed;
	top: 100px;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-family: "Helvetica Neue", "lucida grande", tahoma, verdana, arial, sans-serif;
	font-weight: normal;	
}

 /* target only browsers that like CSS3 */
.UILightboxWrapper > #lightbox:first-of-type {
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ie-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

#lightbox a img {
  border: none;
}

.lb-outerContainer {
/*   position: relative; */
	/*
	position: absolute;
	left: 50px;
	right: 50px;
	*/
	*zoom: 1;
	/*
	width: 250px;
	height: 250px;
	*/
	margin: 0 auto;
	/*
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	*/
	/*   box-shadow: 0 4px 8px rgba(0,0,0,0.45); */
	max-width: 100%;
}

.lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
}


.lb-container {
/* 	padding: 10px; */
/*
	left: 50px;
	right: 50px;
	position: absolute;
*/
}

.lb-loader {
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

.lb-image {
	position: relative;
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0 auto;
	z-index: 12;
}

/*
.lb-nav {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
}
*/

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
}

.lb-prev,
.lb-next {
	display: block;
	position: absolute;	
	z-index: 13;
	top: 0;
	bottom: 36px;
	width: 36px;
	background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
	/* Trick IE into showing hover */
	/*   border-radius: 4px; */
	border-radius: 0;
	-webkit-transition: background-color 300ms ease-out;
	   -moz-transition: background-color 300ms ease-out;
	        transition: background-color 300ms ease-out;
	cursor: pointer;
}

.lb-prev {
	left: 0;
	background: url(../graphics/back.png) center center no-repeat;
}

.lb-next {
	right: 0;
	background: url(../graphics/next.png) center center no-repeat;
}

.lb-prev:hover,
.lb-prev:focus,
.lb-next:hover,
.lb-next:focus {
	/* 	background-color: rgba(255,255,255,0.25); */
	background-color: rgba(0,0,0,0.25);  
}

.lb-dataContainer {
	position: relative;
	z-index: 11;
	margin: 0 auto;
	padding: .6em 0;
	*zoom: 1;
	width: 100%;
	max-width: 100%;
	min-height: 36px;
	/*
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-ms-border-bottom-left-radius: 4px;
	-o-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	-ms-border-bottom-right-radius: 4px;
	-o-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
	*/
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
/* 	position: relative; */
	padding: 0 0 0 10px;
	color: #ffffff;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
	display: block;
	margin: 0;
	padding-bottom: 0.6em;
	font-weight: bold;
	line-height: 1.3em;
	font-size: 13px;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  font-size: 12px;
}

/* A element */
.lb-data .lb-close { 
	position: absolute;
	bottom: .6em;
	right: 0;
	width: 35px;
	outline: none;
}

.lb-data .lb-close:hover {
  cursor: pointer;
}

.cms-lightbox-gallery a {
	display: inline-block;
}