/* Easy Slider */
#slider {
	width: 600px;
	height: 500px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	background-color: #e8e1ef;
}

#slider ul, #slider ul li{
	margin:0;
	padding:0;
	list-style:none;
	}
#slider ul li{ 
	/* 
		define width and height of list item (slide)
		entire slider area will adjust according to the parameters provided here
	*/ 
	width:600px;
	height:500px;
	overflow:hidden;
	float: left;
}	

#slider .imgarea {
	width: 600px;
	height: 360px;
	background-color: #574e77;
	padding: 0;
	margin: 0;
}

#slider .inside {
	padding: 10px;
}

#slider h2 {
	font-size: 20px;
	line-height: 12px;
}


#prevBtn, #nextBtn{ 
	display:block;
	width:30px;
	height:77px;
	position:absolute;
	left:-30px;
	top:71px;
	z-index:1000;
	}	
#nextBtn { 
	left:100px;
	}														
#prevBtn a, #nextBtn a{  
	display:block;
	position:relative;
	width:30px;
	height:77px;
		background:url(images/btn_prev.gif) no-repeat 0 0;	
	}	
#nextBtn a{
		background:url(images/btn_next.gif) no-repeat 0 0;	
	}	
	
/* numeric controls */	

ol#controls{
	margin: 1em auto;
	padding:0;
	height:20px;
	font-size: 90%;
	width: 200px;
}
ol#controls li{
	margin:0 7px 0 0; 
	padding:0;
	float:left;
	list-style:none;
	height:20px;
	line-height:20px;
	display: block;
}
ol#controls li a{
	float:left;
	height:20px;
	line-height:20px;
	background: #9d87c8;
	color: #fff;
	padding:0 7px;
	text-decoration:none;
	border-radius:20px; 
	-moz-border-radius:20px; 
	-webkit-border-radius:20px;
	display: block;
}
ol#controls li.current a{
	background: #5a4a8c;
	color:#fff;
	}

ol#controls li a:hover {
	background-color: #363166;
	color: #fff;
}	
	
ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}

/* // Easy Slider */