/*
    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: 445px; height: 110px; position: relative; margin-top: 0; margin-bottom: 15px; }
.anythingSlider .wrapper                { width: 378px; overflow: auto; height: 125px; position: absolute; top: 0; left: 32px; margin: 0; }
.anythingSlider .wrapper ul             { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; margin: 0; padding: 0px; }

.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 150px; width: 600px; margin: 0 20px 0 0; }
.anythingSlider .arrow                  {
	display: block;
	height: 90px;
	width: 32px;
	text-indent: -9999px;
	position: absolute;
	top: 16px;
	cursor: pointer;
	background-image: url(../images/arrows_home.png);
	background-repeat: no-repeat;
	background-position: 0 0;
}
.anythingSlider .forward                {
	background-position: 0 0;
	right: -5px;
}
.anythingSlider .back                   {
	background-position: -64px 0;
	left: -5px;
}
.anythingSlider .forward:hover          { background-position: 0 -151px; }
.anythingSlider .back:hover             { background-position: -64px -151px; }

#thumbNav                               { display:none 
}
#thumbNav a {display:none
}
#thumbNav a:hover                       {
	color: #FFFFFF;
	background-color: #E4AF24;
}
#thumbNav a.cur                         { background: #e0a213; color: #FFFFFF; }

#start-stop                             { display:none}
#start-stop.playing                     {
	background-color: #E4AF24;
	color: #FFFFFF;
}
#start-stop:hover                       { background-image: none; }

/*
  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; }
