/* Easy Slider */

	#slider{ position: relative; float: left;}	
	#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:580px;
		height:380px;
		overflow:hidden; 
		}	
	#prevBtn, #nextBtn{ 
		display:block;
		width:30px;
		height:38px;
		position: absolute;
		left:15px;
		top:230px;
		}	
	#nextBtn{ 
		left:540px;
		}														
	#prevBtn a, #nextBtn a{  
		display:block;
		width:30px;
		height:38px;
		background:url(../img/btn_prev.png) no-repeat 0 0;	
		}	
	#nextBtn a{ 
		background:url(../img/btn_next.png) no-repeat 0 0;	
		}												

/* // Easy Slider */