/* Preload images */
body:after {
  content: url(../_gfx/close.svg) url(../_gfx/gal_load.gif) url(../_gfx/button_prev.svg) url(../_gfx/button_next.svg);
  display: none;
}

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: #000000;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
	opacity: 0.975;
	display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: 300;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
	position: relative;
	background-color: #383838;
	background-image: url(../_gfx/logo_load.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 400px 200px;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
}

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

.lb-container {
  padding: 0px;
}

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

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../_gfx/gal_load.gif) no-repeat;
}

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

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

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 50%;
  left: 0;
  float: left;
  background: url(../_gfx/button_prev.svg) left no-repeat;
  background-size: 50px 50px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.lb-nav a.lb-next {
  width: 50%;
  right: 0;
  float: right;
  background: url(../_gfx/button_next.svg) right no-repeat;
  background-size: 50px 50px;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
}

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

.lb-data {
  padding: 0px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #999;
}

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

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 50px;
  height: 30px;
  background: url(../_gfx/close.svg) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}


@media screen and (max-width: 506px) {
.lb-outerContainer {
	background-image: none;
}
}