
#lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  background-color: #222222;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}


#lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  line-height: 0;
  font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
  font-weight: normal;
}

#lightbox img {
  width: auto;
  height: auto;
}

#lightbox a img {
  border: none;
}


.outerContainer {
  position: relative;
  background-color: white;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  -moz-border-radius-topleft: 4px;
  -webkit-border-top-left-radius: 4px;
  -ms-border-top-left-radius: 4px;
  -o-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -webkit-border-top-right-radius: 4px;
  -ms-border-top-right-radius: 4px;
  -o-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
}

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


.outerContainer.animating {
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -ms-border-bottom-left-radius: 4px;
  -o-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -ms-border-bottom-right-radius: 4px;
  -o-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}


.container {
  padding: 10px;
}


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


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


.container > .nav {
  left: 0;
}


.nav a {
  outline: none;
}


.prev, .next {
  width: 49%;
  height: 100%;
  background-image: url("data:image/gif;base64,AAAA");
  
  display: block;
}


.prev {
  left: 0;
  float: left;
}


.next {
  right: 0;
  float: right;
}


.prev:hover {
  background: url(/images/prev.png) left 48% no-repeat;
}


.next:hover {
  background: url(/images/next.png) right 48% no-repeat;
}


.dataContainer {
  background-color: white;
  margin: 0 auto;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -ms-border-bottom-left-radius: 4px;
  -o-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -ms-border-bottom-right-radius: 4px;
  -o-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

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


.data {
  padding: 0 10px;
  color: #666666;
}

.data .details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

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

.data .number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 11px;
}

.data .close {
  width: 35px;
  float: right;
  padding-bottom: 0.7em;
  outline: none;
}

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


