

.lightBox-view img{
    display: block;
    display: none;
    border:0px;
    margin:0px !important;
}
.lightBox-popupMask{
  position: fixed;
  left: 0px;
  top: 0px;
  background:black;
  filter:alpha(opacity=80);/* IE */
  opacity:0.8;
  width:100%;
  height: 100%;
  z-index:9999;
  display: none;
  background-image: url(../images/overlay.png);
}
.lightBox-popup{
  display: none; 
  position: fixed;
  z-index:10000;
  top:0%;
  left:50%;
  height: 50%;
  background-color: white;
  border-radius: 10px;
  border:5px solid white;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/loading_gray.gif); 
  background-size: 8%;
}

.lightBox-description .lightBox-btn{
  display: inline-block;
  height: 100%;
  width:50%;
  text-align: center;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  filter:alpha(opacity=20);/* IE */ 
  opacity: .4;
  background-image: url(../images/opacity.png);
  background-size: 40px 40px;
}
.lightBox-description .lightBox-btn:hover{
  filter:alpha(opacity=100);/* IE */ 
  opacity: 1;
}

.lightBox-description .lightBox-prev-btn.active{
  background-image: url(../images/prev.png); 
}
.lightBox-description .lightBox-next-btn.active{
  background-image: url(../images/next.png); 
}

.lightBox-description .lightBox-prev-btn.disable{
  background-image: url(../images/prev.png);
  opacity: 0.1;
  cursor: default;
}
.lightBox-description .lightBox-next-btn.disable{
  background-image: url(../images/next.png); 
  opacity: 0.1;
  cursor: default;
}
.lightBox-view .lightBox-description{
  position: absolute;
  bottom:0;
  right:0;
  left:0;
  padding:15px;
  display: none;
  color:white;
  background-color: black;
  filter:alpha(opacity=80);/* IE */ 
  background: rgba(0,0,0,.8);
}
.lightBox-view .lightBox-description .lightBox-current-index{
  margin-top: 5px;
  display: block;
  font-style:italic;
}
.lightBox-view .lightBox-description .lightBox-close{
  float: right;
  display: block;
  width:40px;
  height:40px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-image: url(../images/close.png); 
  background-position: center center;
}
.lightBox-description .btn-position{
  float: right;
  position:relative;
  width:100px;
  height: 40px;
}
.lightBox-view .lightBox-description{
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	transition: .4s;
	-ms-transition: .4s;
	max-height: 100%;
	overflow-y: auto;
}
.lightBox-view:hover .lightBox-description{
	display: block;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
