/*
    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/
*/
*                                       { margin: 0; padding: 0; }

.anythingSlider                         {
	width: 204px;
	height: 239px;
	position: relative;
	border:#CCC solid 2px;
	background-color:#b2b2b2;
}
.anythingSlider .wrapper                { width: 204px; overflow: auto; height: 233px; position: absolute; top: 0; left: 0; }
.anythingSlider .wrapper ul             { width: 9999px; list-style: none; position: absolute; top: 0; left: 0; background: #6f6f6f; margin: 0; }
.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 216px; width: 204px; margin: 0; }
.anythingSlider .arrow                  { display: block; height: 22px; width: 21px; background: url(../images/arrows.gif) no-repeat 0 0; text-indent: -9999px; position: absolute; top: 217px; cursor: pointer; }
.anythingSlider .forward                { background-position: -21px; margin-left:183px;}
.anythingSlider .back                   { background-position: 0px 0;}
.anythingSlider .forward:hover          { background-position: -21px; }
.anythingSlider .back:hover             { background-position: 0px 0px; }

#thumbNav                               { position: relative; top: 222px; text-align: center; }
#thumbNav a                             { color: black; font-size: 2px; display: inline-block; padding: 4px 4px; margin: 0 5px 0 0; background-color: #fff; text-align: center; color:#FFF;}
#thumbNav a:hover                       { background-color:#909090; color:#909090; }
#thumbNav a.cur                         { background-color:#909090; color:#909090; }

#start-stop                             { background: green; background-repeat: repeat-x; color: white; padding: 2px 5px; width: 40px; text-align: center; position: absolute; right: 45px; top: 323px; display:none;}
#start-stop.playing                     { background-color: red; }
#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; }
