﻿/* Easy Slider */
#slider 
{
	margin: 0;
	padding: 0;
	width: 966px;
	height: 310px;
	overflow: hidden;
	background: url('images/slider-bg.png') no-repeat top left;
}

#slider ul, #slider li {
	margin:0;
	padding:0;
	text-indent: 0px;
	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:966px;
	height:310px;
	text-align:left;
}	
#prevBtn, #nextBtn { 
	display:block;
	width:30px;
	height:77px;
	position:absolute;
	left:-30px;
	top:71px;
	z-index:1000;
}	
#nextBtn { 
	left:696px;
}														
#prevBtn a, #nextBtn a {  
	display:block;
	position:relative;
	width:30px;
	height:77px;
	background:url('images/btn_prev.png') no-repeat 0 0;	
}	
#nextBtn a { 
	background:url('images/btn_next.png') no-repeat 0 0;	
}	

#slider ul li div { display:table; margin:0 auto; padding:0; width:966px; height:310px; float:left; text-align:left; vertical-align:top; }
#slider ul li div h2 { text-align:center; display: block; width:300px; float:left; font:normal 40px Georgia, "Times New Roman", Times, serif; color:#1c1d1c; padding:10px 0 0 40px; margin:0; line-height:1.2em; }
#slider ul li div p { text-align:center; width:300px; float:left; font:normal 12px verdana; color:#262626; margin:0; padding:10px 0 0 40px; line-height:1.8em; display:inline; }
#slider ul li div p.img { text-align:center; width:590px; float:right; padding: 20px 0 0 0; margin:0; border:0px; }
#slider ul li div p.img img { display:inline; }

/* numeric controls */	
ol#controls
{
	background: transparent;
	float:right;
	top:0;
	right:0;
	margin:1em 0;
	padding:0;
	height:28px;
}
ol#controls li{
	margin:0 10px 0 0; 
	padding:0;
	float:left;
	list-style:none;
	height:28px;
	line-height:28px;
}
ol#controls li a{
	float:left;
	height:28px;
	line-height:28px;
	border:1px solid #ccc;
	background:#DAF3F8;
	color:#555;
	padding:0 10px;
	text-decoration:none;
}
ol#controls li.current a{
	background:#5DC9E1;
	color:#fff;
}
ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}