#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:556px;
		height:360px;
		overflow:hidden; 
		}	
	#prevBtn, #nextBtn{ 
		display:block;
		width:20px;
		height:23px;
		text-indent:-999px;
		overflow:hidden;
		position:absolute;

		}	
	#nextBtn{
		margin:-200px 0px 0px 536px; 
		}	
	#prevBtn{
		margin:-200px 0px 0px 0px;  
		}														
	#prevBtn a, #nextBtn a{  
		display:block;
		width:20px;
		height:23px;
		background:url(../images/previous.png) no-repeat 0 0;	
		filter:alpha(opacity=25);/* for IE 7+ */
		opacity:0.25;
		}	
	#nextBtn a{ 
		background:url(../images/next.png) no-repeat 0 0;	
		}				
	#prevBtn a:hover, #nextBtn a:hover{	
		filter:alpha(opacity=100);/* for IE 7+ */
		opacity:1;
	}