#slides {
  position: relative;
}
#slides .slides-container {
  display: none;
}
#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: 40%;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
  background-color: #000;
  -moz-opacity: 0.50;
  opacity: 0.50;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=50);
  width: 40px;
  height: 40px
}
.slides-navigation a:hover {
  -moz-opacity: 1;
  opacity: 1;
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha"(Opacity=100);
}

.slides-navigation a.prev {
  right: 0;
  top: 40px;
  background: url('../images/previous.png') center center no-repeat;
  text-indent: -999em
}
.slides-navigation a.next {
  right: 0;
  background: url('../images/next.png') center center no-repeat;
  text-indent: -999em
}

.slides-pagination {
  display: none;
}