/* Easy Slider */
#slider ul,#slider li,#slider2 ul,#slider2 li {
	padding: 0;
	margin: 0;
	list-style: none;
}
/* 
	define width and height of list item (slide)
	entire slider area will adjust according to the parameters provided here
*/
#slider li {
	width: 645px;
	height: 250px;
	overflow: hidden;
}

#slider2 li {
	width: 220px;
	height: 250px;
	overflow: hidden;
}

#prevBtn,#nextBtn,#slider1next,#slider1prev {
	display: block;
	width: 28px;
	height: 28px;
	position: relative;
	left: -30px;
	top: -150px;
	background: url("../images/selected_arrow_left.png") 0 0 no-repeat;
}

#nextBtn,#slider1next {
	left: 225px;
	top: -178px;
	background: url("../images/selected_arrow_right.png") 0 0 no-repeat;
}

#prevBtn a, #slider1prev a, #nextBtn a, #slider1next a {
	display: block;
	width: 28px;
	height: 28px;
	outline-style:none;
}

#prevBtn a:hover, #slider1prev a:hover, #nextBtn a:hover, #slider1next a:hover {
	display: block;
	width: 28px;
	height: 28px;
	background: url("../images/selected_arrow_lefta.png") 0 0 no-repeat;
	outline-style:none;
}

#nextBtn a:hover, #slider1next a:hover {
	outline-style:none;
	background: url("../images/selected_arrow_righta.png") 0 0 no-repeat;
}

#slider1prev a:active,#prevBtn a:active, #nextBtn a:active,#slider1next a:active
{
	outline-style:none;
}

#slider1prev a:hover,#prevBtn a:hover, #nextBtn a:hover,#slider1next a:hover
{
	-moz-outline-style:none;
}

/* numeric controls */
ol#controls {
	padding: 1px;
	position: relative;
}

ol#controls li {
	float: right;
	margin: 0 18px 0 0;
	padding: 0;
	height: 14px;
	line-height: 14px;
	list-style: none;
}

ol#controls li a {
	position: absolute;
	top: -1px;
	height: 8px;
	line-height: 8px;
	
	background: #DEDEDE;
	color: #555;
	padding: 0 4px;
	text-decoration: none;
}

ol#controls li.current a {
	/*background: #5DC9E1;*/
	background: #ADADAD;
	color: #fff;
}

ol#controls li a:focus,#prevBtn a:focus,#nextBtn a:focus {
	outline: none;
}
/* // Easy Slider */