#slides {
  position: relative;
  /* margin-top: 20px; */
}
#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: 70px;
  height: 70px;
}
.slides-navigation a.prev {
  left: 0px;
  background: #FFF url("left-arrow.png") no-repeat center center;
}
.slides-navigation a.prev:hover {
  background: #BBB url("left-arrow.png") no-repeat center center;
}
.slides-navigation a.next {
  right: 0px;
   background: #FFF url("right-arrow.png") no-repeat center center;
}
.slides-navigation a.next:hover {
   background: #BBB url("right-arrow.png") no-repeat center center;
}

.slides-pagination {
  position: absolute;
  z-index: 3;
  bottom: 30px;
  text-align: center;
  width: 100%;
}
.slides-pagination a {
  border: 2px solid #FFF;
  border-radius: 15px;
  width: 17px;
  height: 17px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
  margin: 4px;
  overflow: hidden;
  text-indent: -1000%;
  background-color: transparent;
  padding: 2px;
}
.slides-pagination a.current {
  background: #FFF;
}

/*******************************************************************************************************
** LAYOUT INFERIORE 980
*/
@media only screen and (max-width: 980px) {
	.slides-pagination a {
		 width: 13px;
  		height: 13px;
	}
	.slides-pagination {
		bottom: 5px;
	}
}