/*
    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
{
  width:1000px;
  height:480px;
  position:relative;
  margin:0 auto 15px;
}

.anythingSlider .as_wrapper
{
  width:1000px;
  height:480px;
  overflow:hidden;
  position:absolute;
  top:0;
  left:0;
/*  margin:0 40px; */
}

.anythingSlider .as_wrapper ul
{
  width:32700px;
  list-style:none;
  position:absolute;
  top:0;
  left:0;
  background:#eee;
  border-top:0px solid #e0a213;
  border-bottom:0px solid #e0a213;
  margin:0;
}

.anythingSlider ul li
{
  display:block;
  float:left;
  width:1000px;
  height:480px;
  margin:0;
  padding:0;
}

.anythingSlider .arrow
{
  /* visibility:hidden;    /*  ricardo ferrari comentou  */
  display:block;
  height:40px;
  width:50px;
  /* background:url(../../images/banner/arrows.png) no-repeat 0 0; //L.F.Martins */
  position:absolute;
  top:465px;
  cursor: pointer;
  color: #15365C;
  z-index: 9999999;
  font-size: 35px;
}

.anythingSlider .arrow:hover { /* //L.F.Martins */
   color: blue;
}

.anythingSlider .forward
{
  /* background-position:0 0; //L.F.Martins*/
  right:-25px;
}

.anythingSlider .back
{
 /*background-position:-67px 0; //L.F.Martins*/
  left:930px;
}

.anythingSlider .forward:hover
{
  background-position:0 -200px;
}

.anythingSlider .back:hover
{
  background-position:-67px -200px;
}

#thumbNav
{
  display: none; /*//L.F.Martins*/
  position:relative;
  top:480px;
  text-align:right;
}

#thumbNav a
{
  color:#ffffff;
  display:inline-block;
  height:18px;
  background:#8DA5B3 url(../../images/banner/cellshade.png) repeat-x;
  text-align:center;
  margin:0 1px 0 0;
  padding:2px 8px;
  text-decoration:none;
}

#thumbNav a.cur
{
  background:#123459;
}

#start-stop
{
  visibility:hidden;    /*  ricardo ferrari comentou */
  background:green;
  background-image:url(../../images/banner/cellshade.png);
  background-repeat:repeat-x;
  color:#FFF;
  width:40px;
  text-align:center;
  position:absolute;
  right:45px;
  top:480px;
  padding:2px 5px;
  text-decoration:none;

}

#start-stop.playing
{
  background-color:red;
}

.anythingSlider .as_wrapper ul ul
{
  position:static;
  background:none;
  overflow:visible;
  width:auto;
  border:0;
  margin:0;
}

.anythingSlider .as_wrapper ul ul li
{
  float:none;
  height:auto;
  width:auto;
  background:none;
}

#thumbNav a:hover,#start-stop:hover
{
  background-image:none;
}
