/* 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:665px;
		height:400px;
		overflow:hidden; 
		margin-top: 30px;
		}	
		
	/* numeric controls */
	#dots{
		/*margin-left: 300px;*/
		width: 200px;
	}

	ol#controls{
		/*margin-top:15px;
		padding:0;
		height:28px;*/
		position: relative;
		left: 300px;
		top: -395px;
	}
	ol#controls li{
		margin:0 10px 0 0; 
		padding:0;
		float:left;
		list-style:none;
		height:7px;
		width:7px;
		display:block;
		
		}
	ol#controls li a{
		float:left;
		height:7px;
		width: 7px;
		background-image:url(../images/nav/slide.png);
		display:block;
		text-decoration:none;
		text-indent:-9999px;
		text-decoration:none;
		overflow:hidden;
		}
	ol#controls li a:hover{
		float:left;
		height:7px;
		width: 7px;
		background-image:url(../images/nav/slide-on.png);
		display:block;
		text-decoration:none;
		text-indent:-9999px;
		text-decoration:none;
		overflow:hidden;
		}
	ol#controls li.current a{
		background-image:url(../images/nav/slide-on.png);
	}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}
	
/* // Easy Slider */