#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;
}
.slides-navigation a.next {
	right: 0;
}
.slides-pagination {
	position: absolute;
	bottom: 25px;
	left: 50%;
	z-index: 15;
	width: 60%;
	padding-left: 0;
	margin-left: -30%;
	text-align: center;
	list-style: none;
	cursor: pointer;
	cursor: hand;
}
.slides-pagination a {
	display: inline-block;
	width: 20px;
	height: 18px;
	margin: 2px;
	text-indent: -999999px;
	background-image: url(../img/inactive_pagination.png);
	background-repeat: no-repeat;
}
.slides-pagination a.current {
	width: 20px;
	height: 18px;
	margin: 2px;
	background-image: url(../img/active_pagination.png);
	background-repeat: no-repeat;
}
