/*
    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: 428px; height: 428px; position: relative; margin: 0 auto 15px; left: -10px; z-index: 10; }
.anythingSlider .slide-wrapper          { width: 408px; overflow: auto; height: 420px; margin: 9px 40px; position: absolute; top: 0; left: -48px; }

                                        /* Width below is max for Opera */
.anythingSlider .slide-wrapper ul       { width: 32700px; list-style: none; position: absolute; top: 0; left: 0; margin: 0; }
.anythingSlider ul li                   { display: block; float: left; padding: 0; height: 357px; width: 408px; margin: 0; }
.anythingSlider .arrow                  { display: block; height: 30px; width: 30px; top: -6px;
                                          background: url(../images/slider/arrows.png) no-repeat 0 0; 
                                          text-indent: -9999px; position: absolute; cursor: pointer; z-index: 30; }
.anythingSlider .forward                { background-position: -30px 0; right: 60px; }
.anythingSlider .back                   { background-position: 0 0; left: 60px; }
.anythingSlider .forward:hover          { background-position: -30px -30px; }
.anythingSlider .back:hover             { background-position: 0 -30px; }

.thumbNav                               { position: relative; top: 360px; text-align: center; z-index: 20; }
.thumbNav ul li                         { float: none; display: inline-block; width: 20px; height: 20px;}
.thumbNav a                             { display: inline-block; width: 16px; height: 16px; padding: 2px; 
                                          background: url(../images/slider/circle-white.png) center center no-repeat; }
.thumbNav a:hover                       { background: url(../images/slider/circle-fill.png) center center no-repeat;  }
.thumbNav a.cur                         { background: url(../images/slider/circle.png) center center no-repeat;  }

.thumbNav ul                            { margin: 0px; padding: 0px; }

.start-stop                             { text-indent: -9999px; width: 40px; height: 40px;
                                          background: url(../images/slider/play.png) no-repeat 0 0; 
                                          margin-bottom: 1em; position: absolute; 
                                          right: 194px; top: 390px; z-index: 20; }
.start-stop.playing                     { background-image: url(../images/slider/pause.png); }
.start-stop:hover                       { background-position-y: -40px; }

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