#slides {
  position:fixed !important;
  left:0;
  top:0;
  z-index:-1;
}
#gallery {
  background:#fff;
  height:100% !important;
}
.slides-container {
  display:none;
  position:relative;
}
#slides:after {
  content:"";
  background:rgba(0,0,0,0.3);
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:10;
}
#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;
  opacity:0.5;
  transition:opacity 0.2s ease-in-out;
}
.slides-navigation a.prev {
  background:url(../img/prev.png) no-repeat center;
  background-size:27px 50px;
  width:27px;
  height:50px;
  left:2%;
}
.slides-navigation a.next {
  background:url(../img/next.png) no-repeat center;
  background-size:27px 50px;
  width:27px;
  height:50px;
  right:2%;
}
.slides-navigation a:hover {
  opacity:1;
}

.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;
}


@media only screen and (max-width:479px) {
	#gallery {
		height:500px !important;
	}
	.slides-navigation a.prev {
	  background:url(../img/prev.png) no-repeat center;
	  background-size:14px 25px;
	  width:14px;
	  height:25px;
	  left:3%;
	}
	.slides-navigation a.next {
	  background:url(../img/next.png) no-repeat center;
	  background-size:14px 25px;
	  width:14px;
	  height:25px;
	  right:3%;
	}
}