#slides {
  position: relative;
  background-color: #000;
  width: 100%;
  height: 100%;
}

#slides .slides-container  {
  display: none;
    position: relative;
}
#slides .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
#slides .scrollable:after {
  content: "";
  display: table;
  clear: both;
}

.slides-navigation {
  margin: 0 auto;
  position: absolute;
  z-index: 3;
  top: 46%;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
}
.slides-navigation a.prev {
  left: 27px;
  width: 50px;
  height: 50px;
  background: url("images/left_arrow.png") no-repeat left top;
  background-size: 50px 100px;
  text-indent: -9999px;
  cursor: pointer;
}

.ie7 .slides-navigation a.prev, .ie8 .slides-navigation a.prev { 
    background: url("images/left_arrow_lo.png") no-repeat left top;
}

.slides-navigation a.next {
  right: 27px;
  width: 50px;
  height: 50px;
  background: url("images/right_arrow.png") no-repeat left top;
  background-size: 50px 100px;
  text-indent: -9999px;
  cursor: pointer;
}

.ie7 .slides-navigation a.next, .ie8 .slides-navigation a.next {
    background: url("images/right_arrow_lo.png") no-repeat left top;
}