/* 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:350px;
		height:150px;
		overflow:hidden; 
		}	
		
	/* numeric controls */	

	ol#controls{
		margin:0;
		padding:0;
		height:25px;
		width: 100%;
		
		}
	ol#controls li{
		margin:0; 
		padding:0;
		float:left;
		list-style:none;
		height:25px;
		line-height:25px;
		width:25%;
		font-size:10px
		}
	ol#controls li a{
		float:left;
		height:25px;
		line-height:25px;
		background:#DAF3F8;
		color:#555;
		padding:0;
		text-decoration:none;
		width: 100%;
		text-align:center;
		cursor:default;
		}
	ol#controls li.current a{
		background:#09C;
		color:#fff;
		}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */