/* Easy Slider */
#slider{
	position:relative;
	top:16px;
	left:-1px;
	z-index:1500;
	border:none;
}	

#slider ul, #slider li, #slider2 ul, #slider2 li{
	margin:0;
	padding:0;
	list-style:none;
	border:none;
}

#slider li{ 
/* 
define width and height of list item (slide)
entire slider area will adjust according to the parameters provided here
*/ 
	width:961px;
	height:280px;
	overflow:hidden;
	border:none; 
}
	
/* numeric controls - these are the indicators for which panel is showing. they are clickable also
use the top and left settings to position these*/
ol#controls{
	position:absolute;
	top:250px;
	left:10px;
	z-index:2009;
	margin:1em 0;
	padding:0;
	height:28px;
}
		
ol#controls li{
	margin:0 10px 0 0; 
	padding:0;
	float:left;
	list-style:none;
	height:28px;
	line-height:28px;
}

ol#controls li a{
	float:left;
	height:28px;
	line-height:28px;
	background:none;
	color:#f8981d;
	padding:0 10px;
	text-decoration:none;
	height: 28px;
	border:1px solid #6d1f7e; 
	filter:alpha(opacity=50);
	-moz-opacity:0.5;
	-khtml-opacity: 0.5;
	opacity: 0.5;

}

ol#controls li.current a{
	background:none;
	color:#6d1f7e;
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}

ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{
	outline:none;
	border:1px solid #ffffff; 
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
}
	