﻿/* Preload images */
body:after {
  content: url(../images/close.png) url(../images/loading.gif) url(../images/prev.png) url(../images/next.png);
  display: none;
}

.lightboxOverlay {
  position: fixed;
  width: 100%;
  top: -100%;
  left: 0;
  right: 0;
  height: 100% !important;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  
}
.lightboxOverlay.fadeIn{
	top: 0;
}
.lightbox {
  position: absolute;
  left: -100%;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal; 
  transition: all 0.5s 0.3s;
  -webkit-transition: all 0.5s 0.3s;
}
.lightbox.fadeIn{
	left: 0;
}
.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit; 
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: #585858;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto; overflow: visible !important;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-container { padding: 20px 20px 0 20px;
}

.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(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 50%; margin-top: -18px;
  left: -50px;
  right: -50px;
  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: 36px; height: 36px;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
 
}

.lb-nav a.lb-prev:hover {
 
}

.lb-nav a.lb-next {
  width: 36px; height: 36px;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;

}

.lb-nav a.lb-next:hover {
  
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  background: #585858; padding: 0; line-height: 30px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data { color: #ccc;}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
}

.lb-data .lb-caption {
  font-size: 14px; padding-left:20px;
  line-height: 1em; color: #ddd;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; display: none !important;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  text-align: right; padding-right:30px;
  outline: none; cursor: pointer; color: #ccc;
}

.lb-data .lb-close:hover {
  color: #fff;
}
