
/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
	background: url(/i/slider_arrows.png) no-repeat;
	filter: alpha(opacity=0);
	opacity: 0;
	cursor: pointer;
	height: 80px;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
  	top: 50%;
  	margin-top: -40px;
	white-space: nowrap;
	width: 80px;
	z-index: 10000;
}

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

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


.as-arrows a {
	filter: alpha(opacity=0);
	opacity: 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: 20px;
	/*margin-bottom: 20px;*/
	left: 50%;
	margin-left: -150px;
	position: relative;
	text-align: center;
	width: 300px;
	z-index: 110;
}

.as-nav a {
	background: url(/i/slider_bullets.png) no-repeat;
	background-position: top;
	height: 20px; /* 16 px */
	width: 20px;  /* 16 px */
	display: inline-block;
	margin: 0px;
	overflow: hidden;
	text-indent: -9999px;

}

.as-nav a:hover {
	background-position: center;
}
a.as-active {
	background-position: bottom;
}
