/* Preload images */
.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-container {
  padding: 12px;
  position: relative;
}

.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;
}

.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;
}

.lb-prev, .lb-next {
    height: 100%;
    cursor: pointer;
    display: block;
}

.lb-nav a.lb-prev {
    background: url(../images/sprite.png) no-repeat -6px -182px;
    width: 11px;
    height: 16px;
    position: absolute;
    top: -28px;
    left: 37px;
    z-index: 100;
    filter: progid:DXImageTransform.Microsoft.Alpha(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:before {
    content: 'הבא';
    color: #fff;
    position: absolute;
    left: -37px;
    line-height: 100%;
    top: -2px;
    font-size: 18px;
}

.lb-nav a.lb-next {
    background: url(../images/sprite.png) no-repeat -25px -182px;
    width: 11px;
    height: 16px;
    position: absolute;
    top: -28px;
    right: 53px;
    z-index: 100;
    filter: progid:DXImageTransform.Microsoft.Alpha(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:before {
    content: 'הקודם';
    color: #fff;
    line-height: 100%;
    padding: 0 0 0 18px;
    font-size: 18px;
    position: absolute;
    top: -2px;
    right: -51px;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

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

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

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

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

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

.lb-data .lb-close {
    display: block;
    background: url(../images/sprite.png) no-repeat -12px -209px;
    width: 70px;
    height: 18px;
    outline: none;
    padding: 1px 0 0;
    position: relative;
    top: 5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    cursor: pointer;
}

.lb-data .lb-close:before {
    content: 'סגור';
    color: #fff;
    line-height: 100%;
    padding: 0 0 0 20px;
    font-size: 18px;
}


