/*
    anythingSlider v1.2
    
    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: 650px;
	height: 95px;
	position: relative;
	overflow: hidden;
	#overflow: hidden;
	_overflow: hidden;
}
.anythingSlider .wrapper                {
	width: 640px;
	overflow: hidden;
	#overflow: hidden;
	_overflow: hidden;
	height: 95px;
	position: absolute;
	top: 0px;
	left: 10px;
}

                                       /* Width below is max for Opera */
.anythingSlider .wrapper ul{
	width: 32700px;
	list-style: none;
	top: 0;
	background: #eee;
	margin: 0;
}
.anythingSlider ul li                   {
	display: block;
	float: left;
	padding: 0;
	height: 93px;
	width: 665px;
	margin:0;
}
.anythingSlider .arrow                  {
	display: block;
	height: 93px;
	width: 67px;
	background: url(images/arrows.png) no-repeat 0 0;
	position: absolute;
	cursor: pointer;
	text-indent: -9999px;
}
.anythingSlider .forward                { background-position: 0 0; right:-50px; }
.anythingSlider .back                   { background-position: -67px 0; left: -40px; }
.anythingSlider .forward:hover          { background-position: 0 -200px; }
.anythingSlider .back:hover             { background-position: -67px -200px; }

#thumbNav                               { position: relative; top: 323px; text-align: center; }
#thumbNav a                             { color: black; font: 11px/18px Georgia, Serif; display: inline-block; padding: 2px 8px; height: 18px; margin: 0 5px 0 0; background: #c58b04 url(images/cellshade.png) repeat-x; text-align: center; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; }
#thumbNav a:hover                       { background-image: none; }
#thumbNav a.cur                         { background: #e0a213; }

#start-stop {
	background: #999999;
	background-repeat: repeat-x;
	color: white;
	padding: 2px 5px;
	width: 40px;
	text-align: center;
	position: relative;
	margin-left:620px;
	top: 75px;
	-moz-border-radius-bottomleft: 5px;
	-moz-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
#start-stop.playing                     {
	background-color: #FFFFFF;
}
#start-stop:hover                       {
	background-color: #FFFFFF;
}

/*
  Prevents
*/
.anythingSlider .wrapper ul ul          {
	position: static;
	margin: 0;
	background: none;
	overflow: hidden;
	#overflow: hidden;
	_overflow: hidden;
	width: auto;
	border: 0;
}
.anythingSlider .wrapper ul ul li       { float: none; height: auto; width: auto; background: none; }

