/* 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: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=76);
  opacity: 0.76;
  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: 100%;
  max-width:inherit;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: #fff;
  *zoom: 1;
  margin: 0 auto;
}

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

.lb-container {
  padding:20px 20px 0;
}

.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: 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 {
  position: absolute;
  width: 33%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

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

.lb-nav a.lb-next {
  width: 33%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

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

.lb-dataContainer {
  width:inherit;
  margin: 0 auto;
  *zoom: 1;
  width: 100%;
}

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

.lb-data {
  width:inherit;
  color: #ccc;
}
.lb-data .lb-heading {
  width: 100%;
  float:left;
  line-height:1.5em;
  font-family:notosans-bold;
  font-size:20px;
  text-align: left;
  color:#4A4C4B;
}

.lb-data .lb-details {
  width: inherit;
  padding:10px 20px;
  float:left;
  font-family:'notosans-regular', Helvetica-Neue, Arial, sans-serif;
  font-size:14px;
  text-align: left;
  color:#4A4C4B;
  font-weight:400;
  line-height: 22px;
  background-color:#fff;
}

.lb-data .lb-caption {
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  margin-top:10px;
  clear: left;
  font-family:'notosans-regular', Helvetica-Neue, Arial, sans-serif;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  position:absolute;
  z-index:10001;
  right:-25px;
  top:-25px;
  width: 50px;
  height: 50px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
}

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