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

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
	height: 413px;
	margin: 0px auto;
	width: 100%;
}

.as-slide-inner {
	position: relative;
}

/* 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/arrows.png) no-repeat;
	background-position-y: center;
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 413px;
	opacity: 0;
	margin:0 10px;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	white-space: nowrap;
	width: 41px;
	z-index: 1;
	transition:all .2s ease-in-out;
}

.as-prev-arrow {
	background-position: 0px center;
	left: 0;
}

.as-next-arrow {
	background-position: -40px center;
	right: 0;
}

.slider:hover .as-arrows a {
	filter: alpha(opacity=1);
	opacity: 1;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
	bottom: -45px;
	left: 50%;
	margin-left: -50px;
	position: absolute;
	text-align: left;
	z-index: 3;
}

.as-nav a {
	background: url(../../../images/bullets.png) no-repeat;
	height: 16px;
	display: inline-block;
	margin: 0 1px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 12px;
}

a.as-active, .as-nav a:hover {
	background-position: 0 -16px;
}

.as-arrows{ position:relative; z-index:4;} 

