/* 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(img/arrows.png) no-repeat;
	cursor: pointer;
	filter: alpha(opacity=0);
	height: 40px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 95px;
	white-space: nowrap;
	width: 40px;
	z-index: 1;
}

.as-prev-arrow {
	left: 0;
}

.as-next-arrow {
	background-position: -40px 0;
	right: 0;
}

.slider:hover .as-prev-arrow, .slider:hover .as-next-arrow {
	filter: alpha(opacity=1);
	opacity: 1;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
    bottom:0;
    margin: 0;
    position:absolute;
    right:0;
    text-align:right;
    width:25%;
    z-index: 1;
}

.as-nav a {
	height: 20px;
	width: 20px;
	text-align:center;
	display:inline-block;
	overflow: hidden;
	white-space: nowrap;
	background-color:#00333b;
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;	
}

a.as-active, .as-nav a:hover {
	background-color:#007a87;
}
