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

body.lb-disable-scrolling {
  overflow: hidden;
}

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

.lightbox {
  position: absolute;
  left: 0;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  display: block;
  right: 0;
  margin: 0 auto;
  letter-spacing: 0.75px;
}

.lightbox .lb-image {
  display: block;
  height: auto !important;
  max-width: 1000px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  background-color: rgba(0,0,0,0.85);
  *zoom: 1;
  width: auto !important;
  height: auto !important;
  margin: 0 auto;
  display: table-cell !important;
}

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

.lb-container {
  padding: 4px;
}

.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: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10001;
  display: none;
}

.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;
  height: 50px;
  width: 50px;
  position: absolute;
  top: 45%;
}

a.lb-prev {
  left: -60px;
  float: left;
  background: url(img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0.5;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

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

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

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

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 250px !important;
  display: table-cell !important;
  background-color: #f1f0f0;
  position: relative;
  height: 100%;
  vertical-align: top;
  border: rgb(0,0,0) 4px solid;
}

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

.lb-data {
  padding: 0 12px;
  color: #353535;
}

.lb-data div {
  margin: 7px 2px;
}

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

.lb-data .lb-caption {
  font-size: 18px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-close {
  display: block;
  width: 30px;
  height: 30px;
  background: url(img/close.png) top right no-repeat;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  position: fixed;
  top: 5px;
  right: 5px
}

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

.lb-fullContainer {
    display: table;
    max-width: 90%;
    margin: 0 auto;
}

.lb-data .lb-category {
    font-size: 0.7em;
    margin: 4px 2px;
}

.lb-data .lb-desc {
    font-size: 0.9em;
}

.lb-data .lb-date {
    font-size: 0.7em;
    letter-spacing: 0.5px;
    font-style: italic;
    font-weight: bold;
    margin: 4px 2px;
}

.lb-data .lb-url {
font-weight: bold;
color: #4b4f56;
text-decoration: none;
}

.lb-data .lb-url a {
color: #4b4f56;
text-decoration: none;
font-size: 0.7em;
letter-spacing: 0.20px;
}

#lightboxOverlay div {
    position: relative
}