/*
    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                         { position: relative; }
.anythingSlider .wrapper                { width: 460px; overflow: hidden; height: 160px; position: absolute; top: 45px; left: 0; }

                                       /* Width below is max for Opera */
.anythingSlider .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: 160px; width: 460px; margin: 0; }
.anythingSlider .arrow                  { display: none;
                                          color: black;
                                          height: 18px;
                                          width: 18px;
                                          background-color: #d7d7d7;
                                          border-radius: 6px;
                                          -moz-border-radius: 6px;
                                          -webkit-border-radius: 6px;
                                          position: absolute;
                                          top: 0px;
                                          right: 0px;
                                          cursor: pointer;
                                          line-height: 1em;
                                          text-decoration: none;
                                          text-align: center; }
.anythingSlider .forward                { right: 0px; }
.anythingSlider .back                   { right: 22px; }
.anythingSlider .forward:hover          { background-color: red; color: white; }
.anythingSlider .back:hover             { background-color: red; color: white; }

#thumbNav                               { position: relative; 
                                          top: 160px;
                                          text-align: left; }
#thumbNav a                             { color: black;
                                          display: inline-block;
                                          padding: 1px 5px;
                                          height: 14px;
                                          margin: 0 5px 0 0;
                                          text-align: center;
                                          text-decoration: none;
                                          line-height: 0.9em;
                                          border: 1px solid #d7d7d7;
                                          background-color: #d7d7d7;
                                          border-radius: 6px;
                                          -moz-border-radius: 6px;
                                          -webkit-border-radius: 6px; }
#thumbNav a:hover                       { border: 1px solid red; }
#thumbNav a.cur                         { background-color: red; border: 1px solid red; color: white; }

#start-stop                             { background-color: #d7d7d7;
                                          border: 1px solid #d7d7d7;
                                          border-radius: 6px;
                                          -moz-border-radius: 6px;
                                          -webkit-border-radius: 6px;
                                          color: white;
                                          padding: 1px 3px;
                                          width: 40px;
                                          height: 14px;
                                          color: black;
                                          line-height: 0.9em;
                                          text-align: center;
                                          text-decoration: none;
                                          display: none;
                                          position: absolute;
                                          right: 0;
                                          top: 185px; }
#start-stop.playing                     { background-color: red; border: 1px solid red; color: white }
#start-stop.playing:hover               { background-color: #ff3535; }
#start-stop:hover                       { background-color: #c6c6c6; }

/*
  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; }