/* Bare minimum styles */
.slider {
	-ms-touch-action: none; /* Prevent default touch actions on Windows 8. Only required for IE10 */
	overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
	position: relative;
	touch-action: none; /* Prevent default touch actions on Windows 8. Supported in IE11+ */
}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
	border: 1px dotted #333;
	height: 250px;
	margin: 40px auto;
	padding: 5px;
	text-align: center;
	width: 100%;
}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
	background: url(../images/home-slider-nav.png) no-repeat;
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 37px;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 158px;
	white-space: nowrap;
	width: 37px;
	z-index: 1;
	-webkit-transition:background .1s ease;
	-moz-transition:background .1s ease;
	-o-transition:background .1s ease;
	transition:background .1s ease;
	opacity:0.65;
	filter: alpha(opacity=65);
}
.as-prev-arrow:hover, .as-next-arrow:hover{
	opacity:1;
	filter: alpha(opacity=100);
}
.reviews .as-prev-arrow,
.reviews .as-next-arrow{
	top: 109px;
}
.as-prev-arrow {
	left: -46px;
}
.reviews .as-prev-arrow{
	left: -70px;
}
.as-next-arrow {
	background-position: 100% 0;
	right: -46px;
}
.reviews .as-next-arrow{
	right: -51px;
}
.slider:hover .as-prev-arrow, .slider:hover .as-next-arrow {
	filter: alpha(opacity=1);
	opacity: 1;
}
.slider-section .as-prev-arrow,
.slider-section .as-next-arrow{
	background: url(../images/main-slider-nav.png) no-repeat;
	width:30px;
	height:30px;
	top:185px;
	left:-30px;
	opacity:0.62;
	filter: alpha(opacity=62);
}
.slider-section .as-prev-arrow:hover,
.slider-section .as-next-arrow:hover{
	opacity:1;
	filter: alpha(opacity=100);
}
.slider-section .as-next-arrow{
	background-position:100% 0;
	right:-30px;
	left:auto;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
	bottom: 54px;
	left: 50%;
	margin-left: -27px;
	position: absolute;
	text-align: left;
	z-index: 1;
}
.reviews .as-nav{
	bottom: 46px;
}
.as-nav a {
	background: url(../images/home-slider-pager.png) no-repeat 100% 0;
	background-size:cover;
	height: 10px;
	display: inline-block;
	margin: 0 5px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 10px;
}
a.as-active, .as-nav a:hover {
	background-position: 0 0;
}
.slider-section .as-nav{
	right:0;
	bottom:55px;
	left:auto;
}
.slider-section a.as-active,
.slider-section .as-nav a:hover {
	background: #fff;
	border-radius:10px;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
}
