#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;
	width: 84px; height: 168px;  
  background-size: 84px 168px;
  background-repeat: no-repeat;
  text-indent: -9999px;
}
.slides-navigation a:hover.prev:after {
	content:"";
	height:100%;
	width: 300px;
	position: absolute;
	top: 0;
	z-index: -1;
}
.slides-navigation a.prev {
  left: 40px;
  background-image: url(./btn_slide_left.png);
}
.slides-navigation a.next {
  right: 40px;
  background-image: url(./btn_slide_right.png);
}
*/

.slides-navigation a {
	-webkit-user-select: none; /* webkit (safari, chrome) browsers */
	-moz-user-select: none; /* mozilla browsers */
	-khtml-user-select: none; /* webkit (konqueror) browsers */
	-ms-user-select: none; /* IE10+ */
	position: absolute;
	z-index: 4;
	top: 0;
	cursor: pointer;
	width: 20%;
	height: 100%;
	border: none;    /*background: #000;*/
	opacity: 0.2;
	transition: opacity 0.3s ease-in;
	text-indent: -9999px;
}
.slides-navigation a:hover {
	opacity: 1.0;
}
.slides-navigation a.prev {
	left: 0;
}
.slides-navigation a.next {
	right: 0;
}
.slides-navigation a.prev:after,
.slides-navigation a.next:after{
	content:"";
	display: block;
	position: absolute;
	width: 50px; height: 105px;  
  background-size: 50px 105px;
  background-repeat: no-repeat;
  text-indent: -9999px;
  top:50%;
  margin-top: -42px;
  z-index: 3000;
	transition: transform 0.6s cubic-bezier(0.39, 0.58, 0.57, 1);
}
.slides-navigation a.prev:after{
	left: 50px;
  background-image: url(./btn_slide_left.png);
	/*opacity:0;*/
	/*transform: translate3d(0, 0, 0);*/
}
.slides-navigation a.next:after{
	right: 50px;
  background-image: url(./btn_slide_right.png);
	/*opacity:0;*/
	/*transform: translate3d(0, 0, 0);*/
}
.slides-navigation a.prev:hover:after,
.slides-navigation a.next:hover:after{
	transform: translate3d(0, 0, 0);
}
.slides-navigation a.prev:hover:after{
	transform: translate3d(-20px, 0, 0);
}
.slides-navigation a.next:hover:after{
	transform: translate3d(20px, 0, 0);
}



/*.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 0;
  text-align: center;
  width: 100%;
}
.slides-pagination a {
  border: 2px solid #222;
  border-radius: 15px;
  width: 10px;
  height: 10px;
  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: #222;
}
*/