/* Easy Slider */

	#slider ul, #slider li,
	#slider2 ul, #slider2 li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slider2{margin-top:1em;}
	#slider li, #slider2 li{ 
		/* 
			define width and height of list item (slide)
			entire slider area will adjust according to the parameters provided here
		*/ 
		width:728px;
		height:250px;
		overflow:hidden; 
}	

	/* numeric controls */	

	ol#controls{
		margin:3px 0px 0px 600px;
		padding:0;
		}
	ol#controls li{
		margin:0; 
		padding:3px 5px 3px 5px;
		float:left;
		list-style:none;
		font-size:10px;
		}
	ol#controls li a{
		float:left;
		border:1px solid #5B79A3;
		background:#C5D5EB;
		color:#000;
		padding:3px 5px 3px 5px;
		text-decoration:none;
		text-align:center;
		background-image:url(images/num00.gif);
		background-position:bottom center;
		background-repeat:no-repeat;
		border-radius: 4px;        /* CSS3‘ˆÄ */  
    -webkit-border-radius: 4px;    /* Safari,Google Chrome—p */  
    -moz-border-radius:  4px;   /* Firefox—p */ 
		}
	ol#controls li.current a{
		background:#5B79A3;
		color:#fff;
		background-image:url(images/num01.gif);
		background-position:bottom center;
		background-repeat:no-repeat;
		}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */