#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: 0;
  padding: 0px;
  background: url(/img/prev.png);
  height: 32px;
  width: 32px;
  opacity:0.6;
  filter:alpha(opacity=60);
}
.slides-navigation a.next {
  right: 0;
  padding: 0px;
  background: url(/img/next.png);
  height: 32px;
  width: 32px;
  opacity:0.6;
  filter:alpha(opacity=60);
}
.slides-navigation a.prev:hover {
  opacity:1.0;
  filter:alpha(opacity=100);
}
.slides-navigation a.next:hover {
  opacity:1.0;
  filter:alpha(opacity=100);
}

.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 0;
  text-align: center;
  width: 100%;
  opacity:0.6;
  filter:alpha(opacity=60);
}
.slides-pagination:hover {
  opacity:1.0;
  filter:alpha(opacity=100);
}
.slides-pagination a {
  border: 2px solid #222;
  border-radius: 15px;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 2px;
}
.slides-pagination a.current {
  background: #222;
}

@media only screen and (max-width : 480px){
	.slides-navigation a.prev {
	  background: url(/img/prev_small.png);
	  height: 16px;
	  width: 16px;
	}
	.slides-navigation a.next {
	  background: url(/img/next_small.png);
	  height: 16px;
	  width: 16px;
	}
}
