/* Easy slidershow */

	#slidershow ul, #slidershow li,
	#slidershow2 ul, #slidershow2 li{
		margin:0;
		padding:0;
		list-style:none;
		}
	#slidershow2{margin-top:1em;}
	#slidershow li, #slidershow2 li{
		/*
			define width and height of list item (slide)
			entire slidershow area will adjust according to the parameters provided here
		*/
		width:420px;
		height:264px;
		overflow:hidden;
		}
	#prevBtn, #nextBtn,
	#slidershow1next, #slidershow1prev{
		display:block;
		width:30px;
		height:77px;
		position:absolute;
		left:-30px;
		top:71px;
		z-index:1000;
		}
	#nextBtn, #slidershow1next{
		left:420px;
		}
	#prevBtn a, #nextBtn a,
	#slidershow1next a, #slidershow1prev a{
		display:block;
		position:relative;
		width:30px;
		height:77px;
		background:url(../images/btn_prev.gif) no-repeat 0 0;
		}
	#nextBtn a, #slidershow1next a{
		background:url(../images/btn_next.gif) no-repeat 0 0;
		}

	/* numeric controls */


	ol#controls{
		padding:0;
		height:30px;
		font-size:11px;
		color:#fff;
		width:420px;
		margin:0 0 0 0px;
		}
	ol#controls li{
		margin:5px 0 5px 5px;
		padding:2px;
		float:left;
		list-style:none;
		width:14px;
		height:14px;
		border:1px solid #4d4d4d;
		background:#1a1a1a;
		color:#fff;
		text-align:center;
		}
	ol#controls li a{
		color:#fff !important;
		text-decoration:none;
		}
	ol#controls li.current{
		background:#444 !important;
		color:#fff;
		}
	ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}


/* // Easy slidershow */