/* 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:445px;
		height:241px;
		overflow:hidden; 
		}
		
	/* numeric controls */	

	ol#controls{
		margin:0 0;
		padding:0px 0px 0px 5px;;
		height:18px;	
		}
	ol#controls li{
		margin:0 10px 0 0; 
		padding:0;
		float:left;
		list-style:none;
		 width:18px;
		line-height:18px;
		}
	ol#controls li a{
		float:left;
		 width:18px;
		line-height:18px;
		background:#000;
		color:#fff;
		text-align:center;
		text-decoration:none;
		}
	ol#controls li.current a{
		background:#a31696;
		color:#fff;
		}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */