/* Preload images */
body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

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

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

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

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}
.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(../img/loading.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{
  position: absolute;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  border: 1px solid #fff;
  width: 43px;
  height: 43px;
  z-index: 102;
  top: 0;
  bottom: 0;
}
.lb-nav a:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/sprite.png);
  width: 15px;
  height: 19px;
}
.lb-nav a.lb-next{
  left: 100%;
  margin: auto 20px;
}
.lb-nav a.lb-prev{
  right: 100%;
  margin: auto 20px;
}
.lb-nav a.lb-next:before{
  background-position: -224px -31px;
}
.lb-nav a.lb-prev:before{
  background-position: -196px -31px;
}
.lb-nav a:hover{
  background-color: #fff;
}
.lb-nav a.lb-next:hover:before{
  background-position: -224px -55px;
}
.lb-nav a.lb-prev:hover:before{
  background-position: -196px -55px;
}
.lb-dataContainer {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  *zoom: 1;
  width: 100%;
}

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

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
  margin: 2px 0 0;
}
.lb-data .lb-caption {
  float: left;
}
.lb-data .lb-number {
  float: right;
}
.lb-data .lb-close{
  position: absolute;
  z-index: 102;
  bottom: 100%;
  right: 0;
  margin: 0 0 10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: #F38F1E;
  border: 1px solid #fff;
  border-radius: 50%;
}
.lb-data .lb-close:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url('../images/sprite.png') no-repeat -126px 0;
  width: 14px;
  height: 14px;
}
.lb-data .lb-close:hover{
  background: #F9C78E;
}