/* Easy Slider */
	#slider {
	border:1px solid #;
	}

	#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:551px;
		height:330px;
		position:relative;
		overflow:hidden;
		}
		
		
	span#prevBtn{}
	span#nextBtn{}					

	#prevBtn a {
		background:url(../images/feat-prev.gif) no-repeat;
		width:73px;
		height:22px;
		float:left;
		margin-top:4px;
	}
	#nextBtn a {
		background:url(../images/feat-next.gif) no-repeat;
		margin-top:4px;
		width:66px;
		height:22px;
		float:right;
	}
	
/* // Easy Slider */