#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: 46%;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
}


.slides-navigation a.prev {
  left: 30px;
  height:121px;
  width:62px;
  display:block;
  background:url(../images/previous.png) no-repeat;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s linear;
  -o-transition: all 1s linear;
  transition: all 1s linear;
}
.slides-navigation a.next {
  right: 30px;
  height:121px;
  width:62px;
   display:block;
  background:url(../images/next.png) no-repeat;
  opacity:0;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.slides-navigation a.next:hover{ opacity:1;-webkit-opacity: 1;
  -moz-opacity: 1;}
.slides-navigation a.prev:hover{opacity:1;-webkit-opacity: 1;
  -moz-opacity: 1;}


@media all and (-webkit-min-device-pixel-ratio: 2) {
 .slides-navigation a.prev {
  left: 30px;
  height:61px;
   width:31px;
   display:block;
  background:url(../images/previous@2x.png) no-repeat;
  background-size:31px 61px; height:61px;
  opacity:0.5;
}
.slides-navigation a.next {
  right: 30px;
  height:61px;
   width:31px;
   display:block;
  background:url(../images/next@2x.png) no-repeat;
  background-size:31px 61px; height:61px;
  opacity:0.5;

}

}

.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 100px;
  text-align: center;
  width:100%;
}
.slides-pagination a {
  border:1px solid #666;
  border-radius: 15px;
  width: 15px;
  height: 15px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR4nGP6zwAAAgcBApocMXEAAAAASUVORK5CYII=");
  margin: 2px;
  overflow: hidden;
  text-indent: -100%;
}
.slides-pagination a.current {
  background: rgba(31, 67, 143, 1);
}
.slides-pagination a.current:hover {
  background: rgba(31, 67, 143, 1);
}


.slides-pagination a:hover {
  background: #fff;
}
