#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;
  bottom: 30px;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
}
.slides-navigation a.prev {
  right: 50px;
  background-image:url(../image/prev.png);
  background-repeat: no-repeat;
  width:16px;
  height:16px
}
.slides-navigation a.prev:hover {
  right: 50px;
  background-image:url(../image/prev_roll.png);
  background-repeat: no-repeat;
  width:16px;
  height:16px
}
.slides-navigation a.next {
  right: 15px;
  background-image: url(../image/next.png);
  background-repeat: no-repeat;
  width:16px;
  height:16px
}
.slides-navigation a.next:hover {
  right: 15px;
  background-image:url(../image/next_roll.png);
  background-repeat: no-repeat;
  width:16px;
  height:16px
}
