
.viSimpleSlider, #testDiv {position:relative;float:left;
  width: 100%;
  background-color: #eee;
  overflow: hidden;
  z-index:1000;
}

.viSimpleSlider ul > li, #testDiv ul > li {
  position: absolute;
  font-size: 0;
  line-height: 0;
}

.viSimpleSlider ul > li img, #testDiv ul > li img {
  width: 100%;
  height: auto;
}

.viSimpleSlider ul > li .slideTo, #testDiv ul > li .slideTo {
  background-color: #222;
  color: #fff;
}

.viSimpleSlider ul > li .slideTo.active, #testDiv ul > li .slideTo.active {
  background-color: green;
}

.viSimpleSlider ul > li .slideTo > div, #testDiv ul > li .slideTo > div {
  font-size: 14px;
}

.viSimpleSlider ul > li .slideTo > img, #testDiv ul > li .slideTo > img {
  vertical-align: top;
}

.viSimpleSlider ul > li span.indexNumber, #testDiv ul > li span.indexNumber {
  display: block;
  position: absolute;
  z-index: 3;
  left: 80px;
  top: 200px;
  color: #fff;
  font-size: 16px;
}

.viSimpleSlider .indicate, #testDiv .indicate {
  position: absolute;
  z-index:10000000000000000000000000000000000;
  width: 100%;
  bottom: 10%;
  z-index: 120;
  text-align: center;
  display:none;
}

.viSimpleSlider .indicate > a, #testDiv .indicate > a {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  margin:0 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.viSimpleSlider .indicate > a.active, #testDiv .indicate > a.active {
  background-color: #000;
}

.viSimpleSlider .indicate:after, #testDiv .indicate:after {
  display: block;
  visibility: hidden;
  content: ".";
  clear: both;
  text-indent: -9999px;
  height: 0;
}

.viSimpleSlider a.arrowBtn, #testDiv a.arrowBtn {
  display: block;
  position: absolute;
  width: 40px;
  top: 50%;
  height: 40px;
  margin-top: -20px;
  z-index: 120;
  padding:8px;
}

.viSimpleSlider a.arrowBtn.prev, #testDiv a.arrowBtn.prev {
  left: -5px;
  background-image: url("../../img/arrow_left.png");
  background-position: left 50%;
  background-size: 40px;
  background-repeat: no-repeat;
}

.viSimpleSlider a.arrowBtn.next, #testDiv a.arrowBtn.next {
  right: -5px;
  background-image: url("../../img/arrow_right.png");
  background-position: right 50%;
  background-size: 40px;
  background-repeat: no-repeat;
}