/*
    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: 800px; height: 320px; position: relative; margin: 0 auto 15px; }
.anythingSlider .wrapper                {
	width: 800px;
	overflow: auto;
	height: 320px;
	margin: 0;
	position: absolute;
}
.anythingSlider .wrapper ul             {
	width: 99999px;
	list-style: none;
	position: absolute;
	background: #eee;
	border-top: 0px solid #003366;
	border-bottom: 0px solid #003366;
	margin: 0;
}
.anythingSlider ul li                   {
	display: block;
	float: left;
	padding: 0;
	height: 320px;
	width: 800px;
	margin: 0;
}
.anythingSlider .arrow                  { display: block; height: 50px; width: 50px; background: url(../images/arrows4.png) no-repeat 0 0; text-indent: -9999px; position: absolute; top:130px; cursor: pointer; }
.anythingSlider .forward                { background-position: -50px 0; right: -30px; }
.anythingSlider .back                   { background-position: 0 0; left: -30px; }
.anythingSlider .forward:hover          { background-position: -50px -50px; right: -30px; }
.anythingSlider .back:hover             { background-position: 0 -50px; left: -30px; }

/*
  Thumb
*/

#thumbNav                               { position: relative; float:left; top: 292px; left: 8px; text-align: center; }
#thumbNav a                             { color: #CCC; font: 10px/16px Tahoma; display: inline-block; padding: 2px 8px; height: 16px; margin: 0 5px 0 0; background: #191919 url(../images/cellshade.png) repeat-x; text-align: center; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px; }
#thumbNav a:hover                       { background: #111 url(../images/cellshade.png) repeat-x; }
#thumbNav a.cur                         { background: #111 url(../images/cellshade.png) repeat-x; }

/*
  Autoplay
*/

#start-stop                             { background: #191919 url(../images/cellshade.png) repeat-x; color: #CCC; Font: 11px/18px Tahoma ; padding: 2px 8px; width: 40px; text-align: center; position: absolute; right: 8px; top: 290px; 
-moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 5px; -webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -webkit-border-top-right-radius: 5px; -webkit-border-top-left-radius: 5px; }
#start-stop.playing                     {background: #111 url(../images/cellshade.png) repeat-x; }
#start-stop:hover                       {background: #222 url(../images/cellshade.png) repeat-x; }

/*
  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; }

