
/* Easy Slider */

	#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:800px;
	height:450px;
	overflow:hidden;
}
#prevBtn, #nextBtn {
	display:block;
	width:64px;
	height:64px;
	position:absolute;
	left:-90px;
	top:200px;
}
#nextBtn {
	left:810px;
}
#prevBtn a, #nextBtn a {
	display:block;
	width:64px;
	height:64px;
	background:url(images/arrow_prev.png) no-repeat 0 0;
}
#nextBtn a {
	background:url(images/arrow_next.png) no-repeat 0 0;
}
/* // Easy Slider */


