/* Easy Slider */
#banner {
	position: relative;
	width:765px;
	height:447px;
}
#slider {
	width:765px;
	height:447px;
	overflow: hidden;
}
#slider ul, #slider li{
	position: relative;
	margin:0;
	padding:0;
	list-style:none;
}
#slider li{
	width:765px;
	height:447px;
	overflow:hidden;
}
#prevBtn, #nextBtn{
	display:block;
	width:93px;
	height:447px;
	position:absolute;
	top:0;
	z-index:9;
	font-size:0;
	color: transparent;
	text-indent: -999px;
	opacity: 0.9;
	filter:Alpha(Opacity=90);
}
#prevBtn{
	left:-93px;
}
#nextBtn{
	left:765px;
}
#prevBtn a, #nextBtn a{
	display:block;
	position:relative;
	width:93px;
	height:447px;
}
#prevBtn a{
	background:url(../images/slider_prev.png) no-repeat;
}
#nextBtn a{
	background:url(../images/slider_next.png) no-repeat;
}

/* numeric controls */

ol#controls{
	position:absolute;
	z-index:7;
	right:5px;
	bottom:5px;
	margin:0;
	padding:0;
}
ol#controls li{
	margin: 0 0 0 5px;
	padding: 0;
	float: left;
	list-style: none;
	height: 16px;
	line-height: 16px;
}
ol#controls li a{
	height: 16px;
	line-height: 16px;
	text-decoration: none;
	/*
	padding-right:14px;
	background:url(../images/slider.png) no-repeat;
	font-size:0;
	color: transparent;
	text-indent: -999px;
	*/
	background-color:#630;
	display: block;
	text-align: center;
	width: 16px;
	font-size: 0.75em;
}
ol#controls li.current a{
	/*
	background:url(../images/slider_active.png) no-repeat;
	*/
	background-color:#963;
}
ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
/* // Easy Slider */