/*
    anythingSlider v1.0
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
*/
.anythingSlider { 
	width: 976px; 
	height: 80px; 
	position: relative; 
	margin: 7px auto; 
	
}
.anythingSlider .wrapper { 
	padding-bottom: 0;
	margin-bottom: 0;
	width: 976px; 
	overflow: hidden; 
	height: 80px; 
	margin: 0 0 0 -2px; 
	position: absolute; 
	top: 0; 
	left: 0; 
}
.anythingSlider .wrapper ul { 
	width: 9999px; 
	list-style: none; 
	position: absolute; 
	top: 0; 
	left: 0; 
	background: #fff;  
	border-bottom: 3px solid #e0a213; 
	margin: 0; 
}
.anythingSlider ul li { 
	display: block; 
	float: left; 
	padding: 0; 
	height: 80px; 
	width: 976px; 
	margin: 0; 
}
.anythingSlider .arrow { 
	display: none; 
	height: 200px; 
	width: 67px; 
	background: url(../images/arrows.png) no-repeat 0 0; 
	text-indent: -9999px; 
	position: absolute; 
	top: 65px; 
	cursor: pointer; 
}
.anythingSlider .forward { 
	background-position: 0 0; 
	right: -20px; 
}
.anythingSlider .back { 
	background-position: -67px 0; 
	left: -20px; 
}
.anythingSlider .forward:hover { 
	background-position: 0 -200px; 
}
.anythingSlider .back:hover { 
	background-position: -67px -200px; 
}
#start-stop { 
	background: url(images/bannerctrl.gif) no-repeat; 
	background-position:0 -340px;
	color: white; 
	padding: 2px 0px; 
	width: 14px; 
	margin: 0;
	text-align: left; 
	text-indent: -9999px;
	position: absolute; 
	left: 10px; 
	top: 85px; 
}
#thumbNav { 
	color: white;
	padding: 0;
	width: 200px;
	text-align: left; 
	position: absolute; 
	left:35px; 
	top: 85px; 
}
#thumbNav a { 
	color: white;
	width: 18px;
	color: black; 
	display: inline-block; 
	overflow: hidden;
	padding: 0; 
	height: 18px; 
	margin-right: 5px; 
	background: white url(images/bannerctrl.gif) no-repeat; 
	background-position:0 -40px;
 	text-indent: 20px; 
	text-align: center; 
}
#thumbNav a:hover { 
	background-position:0 -240px;
}
#thumbNav a.cur {
	background-position:0 -140px;
}
#start-stop.playing {
	background: url(images/bannerctrl.gif) no-repeat; 
	background-position:0 -440px; 
}
#start-stop:hover { 
	background: url(images/bannerctrl.gif) no-repeat;
	background-position:0 -340px; 
}
/*
  Prevents
*/
.anythingSlider .wrapper ul ul { 
	position: static; 
	margin: 0; 
	background: none; 
	overflow: visible; 
	width: auto; 
	border: 0; 
}
.anythingSlider .wrapper ul ul li { 
	float: none; 
	height: auto; 
	width: auto; 
	background: none; 
}
