/*
* jQuery Nivo Slider v2.4
* http://nivo.dev7studios.com
*
* Copyright 2011, Gilbert Pellegrom
* Free to use and abuse under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 
* March 2010
*/

/* The Nivo Slider styles */
.nivoSlider {
  position:relative;
}
.nivoSlider img {
  left:0px;
  position:absolute;
  top:0px;
}
/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
  border:0;
  display:none;
  height:100%;
  left:0px;
  margin:0;
  padding:0;
  position:absolute;
  top:0px;
  width:100%;
  z-index:60;
}
/* The slices in the Slider */
.nivo-slice {
  display:block;
  height:100%;
  position:absolute;
  z-index:50;
}
.nivo-box {
  display:block;
  position:absolute;
  z-index:5;
}

/* Caption styles */
.nivo-caption {
  background:#000;
  bottom:0px;
  color:#fff;
  font-family: Arial, Helvetica, sans-serif;
  left:0px;
  opacity:0.8; /* Overridden by captionOpacity setting */
  position:absolute;
  text-shadow:none;
  width:100%;
  z-index:89;
}
.nivo-caption a { 
  color:#efe9d1;
  display:inline !important;
  text-decoration:underline;
}

.nivo-caption p {
  padding:5px;
  margin:0;
}
.nivo-html-caption {
  display:none;
}

/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  background:url(../img/botoes/arrows.png) no-repeat;
  border:0;
  cursor:pointer;
  display:block;
  height:30px;
  position:absolute;
  text-indent:-9999px;
  top:50%;
  width:30px;
  z-index:99;
}
a.nivo-nextNav {
  background-position:-30px 0;
  right:15px;
}
a.nivo-prevNav {
  left:15px;
}

/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
  position:absolute;
  left:25px;      /* à esquerda: 8px | para centralizar: 320px mais ou menos */
  bottom:10px;    /* dentro do banner: 4px ou + | abaixo do banner: -42px mais ou menos */

}
.nivo-controlNav a {
  /*background:url(../img/botoes/bullets.png) no-repeat;*/
  border: 1px solid #ccc;
  color:#fff;
  cursor:pointer;
  display:block;
  float:left;
  font-weight:normal;
  /*height:22px; usar junto com a imagem de botões */
  margin: 1px;
  padding: 3px 6px;
  position:relative;
  /*text-indent:-9999px; // foi colocado para fazer sumir os números e usar imagem de botões acima */
  /*width:22px; usar junto com a imagem de botões */
  z-index:99;
}
.nivo-controlNav a.active {
  /*background-position:0 -22px; usar junto com a imagem de botões */
  color:#fff; /*se quiser mudar a cor do item ativo */
  font-weight:bold;
  background-color:#666;
  border-style:solid;
  opacity:0.6;
}

/*============================*/
/*=== Custom Slider Styles ===*/
/*============================*/
#slider-wrapper {
  height:175px;
  margin:0 auto;
  padding: 0;
  width:875px;
}

#slider {
  background: #CCC url(../img/botoes/loading.gif) no-repeat 50% 50%;
  height:175px;
  position:relative;
  width:875px;
}
#slider img {
  position:absolute;
  top:0px;
  left:0px;
  display:none;
}
#slider a {
  border:0;
  display:block;
}

.clear {
  clear:both;
}