/* Easy Slider */
	#slider{
		border:solid 4px #fff;
		float:left;
		margin-left:15px;
	}	
	#slider ul, #slider li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slider li, #slider li img{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:400px;
		height:230px;
		overflow:hidden; 
		}	
	
	#slider li p{
		position:relative;
		margin-top:-60px;
		padding:8px;
		height:40px;
		display:block;
		background:#000;
		line-height:18px;
		filter:alpha(opacity=70);
		-moz-opacity:0.7;
		-khtml-opacity: 0.7;
		opacity: 0.7;
		color:#fff;
	} 

	#prevBtn, #nextBtn{ 
		display:block;
		width:17px;
		height:50px;
		position:absolute;
		left:-2px;
		top:110px;
		}	
	#nextBtn{ 
		left:423px;
		}														
	#prevBtn a, #nextBtn a{  
		display:block;
		width:17px;
		height:50px;
		background:url(../images/btn_prev.gif) no-repeat 0 0;	
		}	
	#nextBtn a{ 
		background:url(../images/btn_next.gif) no-repeat 0 0;	
		}												
	.sliderTit{
		background:#fff;
		-moz-border-radius: 4px;
		-webkit-border-radius: 4px;
		width:64px;
		padding:6px;
		margin-left:15px;
	}
/* // Easy Slider */