/* image replacement */
.graphic, #prevBtn, #nextBtn, #slider1prev, #slider1next{
	margin:0;
	padding:0;
	display:block;
	overflow:hidden;
	text-indent:-8000px;
}

/* Easy Slider */

#slider ul, #slider li {
		margin:0;
		padding:0;
		list-style:none;
}

#slider li { 
	/* 
		define width and height of list item (slide)
		entire slider area will adjust according to the parameters provided here
	*/ 
	width:894px;
	height:420px;
	overflow:hidden;
}
	
/* numeric controls */	

ol#controls{
	margin:15px 0 20px 370px;
	padding:0;
	height:27px;	
}
	
ol#controls li{
	margin:0; 
	padding:0;
	float:left;
	list-style:none;
	height:27px;
}

ol#controls li a {
	background-image:url(../images/slide_nav_off.png);
	background-repeat:no-repeat;
	float:left;
	width:27px;
	height:27px;
	padding:0 8px 0 0;
	font-family:Arial, Helvetica, sans-serif;
	line-height:26px;
	color:#afafaf;
	text-align:center;
}

ol#controls li a:hover {
	background-image:url(../images/slide_nav_on.png);
	background-repeat:no-repeat;
	float:left;
	width:27px;
	height:27px;
	line-height:26px;
	color:#000;
}
	
ol#controls li.current a{
	background-image:url(../images/slide_nav_on.png);
	background-repeat:no-repeat;
	color:#000;
}

ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus {
	outline:none;
}
	
/* // Easy Slider */