html.lb-disable-scrolling {
  overflow: hidden;
  /* Position fixed required for iOS. Just putting overflow: hidden; on the body is not enough. */
  position: fixed;
  height: 100vh;
  width: 100vw;
}

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

.lightbox {
  position: fixed;
  left: 0 !important;
	top:0px !important;
	height:100vh;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  /* Image border */
  border:0px;
}

.lightbox a img {
  border: none;
}

.lb-container{
	border:0px;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
  top: 50%;
  transform: translateY(-50%);
	
}

.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(../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 {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 44px 44px;
  background-position: center;
  background-repeat: no-repeat;
	-webkit-transition: all 0.2s ease-int;
	-moz-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
}

.lb-nav a.lb-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	  left: 25px;
    right: auto;
}

.lb-nav a.lb-prev:hover {
  	opacity: 0.75;
    filter: alpha(opacity=75); /* For IE8 and earlier */	
}

.lb-nav a.lb-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	right: 25px;
    left: auto;
}

.lb-nav a.lb-next:hover {
  	opacity: 0.75;
    filter: alpha(opacity=75); /* For IE8 and earlier */	
}

.lb-dataContainer {
  margin: 0 auto;
  *zoom: 1;
  width: 100%;
	font-family: 'Oxygen', Arial, sans-serif;
	font-size: 18px;
    font-weight: 300;
	color: #fff;
	height: 41px;
	line-height: 41px;
	text-align:right;
	background-color:transparent;
	position:absolute;
	left:0px;
	bottom:-41px;
}


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

.lb-data {
	display:none !important;
}

.lb-data .lb-details {
  width:100%;
  text-align: right;
}

.lb-data .lb-caption {
	color: #fff;
	text-align:right;
}

.lb-data .lb-caption a {
  color: #4ae;
}

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

.lb-close {
  display: block;
	position:absolute;
	right:0px;
	top:-35px;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

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