#imgModule {
  display: none;
}
#imgDefault {
  cursor: pointer;
  overflow: hidden;
}
.mask {
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.lightBoxContent {
  width: 800px;
  height: 530px;
  position: fixed;
  left: 50%;
  top: 50%;
  background: #fff;
  margin: -265px 0 0 -400px;
  z-index: 100;
}
#imgLoader {
  width: 32px;
  height: 32px;
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -16px 0 0 -16px;
  display: none;
  z-index: 100;
}
#imgLight {
  width: 800px;
  height: 530px;
  -webkit-animation: change 1s;
  animation: change 1s;
}
#imgModule .btn {
  width: 40px;
  height: 50px;
  position: fixed;
  top: 50%;
  margin-top: -25px;
  cursor: pointer;
  z-index: 100;
}
.lightBoxSprite {
  background-image: url(../images/imgIcons.png);
  background-repeat: no-repeat;
}
#lightBoxPrev {
  left: 10px;
  background-position: 2px center;
}
#lightBoxNext {
  right: 10px;
  background-position: -42px center;
}
.closeBtn {
  width: 35px;
  height: 35px;
  background-position: -100px center;
  position: fixed;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 100;
}
.lightBoxPagination {
  position: fixed;
  left: 0;
  bottom: 50px;
  width: 100%;
  text-align: center;
  z-index: 100;
}
.lightBoxPagination span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 8px;
}
.lightBoxPagination span.current {
  background: #fff;
}
@keyframes change {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
