/* Bare minimum styles */
.slider {
	overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
	position: relative;
}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
	border: 0px dotted #333;
	max-height: 708px;
	/*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/arrows2.png) no-repeat;
	cursor: pointer;
	filter: alpha(opacity=1);
	height: 116px;
	opacity: 1;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 45%;
	white-space: nowrap;
	width: 50px;
	z-index: 999;
}

.as-prev-arrow {
	left: 20px;
}

.as-next-arrow {
	background-position: -44px 0;
	right: 20px;
}

.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: -10px;
	left: 50%;
	margin-left: -27px;
	position: absolute;
	text-align: left;
	width: 54px;
	z-index: 9999;
}

.as-nav a {
	background: url(img/bullets.html) no-repeat;
	height: 16px;
	display: inline-block;
	margin: 0 1px;
	overflow: hidden;
	text-indent: -9999px;
	width: 16px;
}

a.as-active, .as-nav a:hover {
	background-position: 0 -16px;
}
