/* Easy Slider */
	
	#slider ul, #slider li,
	#slider2 ul, #slider2 li{
		margin:0;
		padding:0;
		list-style:none;
	}
	#slider2{margin-top:1em;}
	#slider li, #slider2 li{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:940px;
		height:257px;
		overflow:hidden; 
	}	
		
	/* numeric controls */	

	ol#controls{
		margin:0;
		padding:0;
		height:18px;
		position:relative;
		bottom:-2px;
		left: 415px;
		width:200px;
	}
	ol#controls li{
		margin:0 5px 0 0; 
		padding:0;
		float:left;
		list-style:none;
		height:18px;
		line-height:18px;
	}
	ol#controls li a{
		float:left;
		height:18px;
		line-height:18px;
		color:#999999;
		padding:0 5px;
		text-decoration:none;
		font-size: 0.7em;
		background: transparent url(/images/slider_button.png) no-repeat center center;
	}
	ol#controls li.current a{
		color:#FFFFFF;
		background: transparent url(/images/slider_button_current.png) no-repeat center center;
	}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */