/* 
    Created on : 20/03/2015, 15:36:20
    Author     : Sergio A R Matos

    Configuracao para Generic-Power-Slide da Home Portal Assalariados
*/


    

    
* {
  margin: 0;
  padding: 0;
} 


li { list-style: none; }
a { text-decoration: none; }

.slider {
  width: 500px;
  height: 375px;
  margin: 10px auto;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  border: 2px solid black;
  background-color: black;
}

/*.slider li { width: auto; }*/

.sliderbox { 
    position: relative; 
 }

.sliderbox li {
  //width: 500px;
  //height: 400px;
    
  
}

.sliderbox li a img {
  width: 100%; 
 
}

.slidernav {
  position: absolute;
  right: 4px;
  bottom: 10px;
  //top: 10px;
  //left: 10px;
  z-index: 1;
}

.slidernav li {
  float: left;
  width: auto;
}

.slidernav li a {
  height: 18px;
  padding: 4px;
  margin: 4px;
  background: #fff;
  color: #000;
  text-align: center;
  border-radius: 5px;
  border: 1px solid gray;
}

.slidernav li.current a {
  background: black;//#3B8DD1;
  color: #fff;
}

.slidertext {
  background: #000;
  background: rgba(0, 0, 0, 0.5);
  filter: alpha(opacity=50);
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 420px;
  padding-left:  30px;
  padding-right: 50px;
  padding-bottom: 28px;
  padding-top: 5px;
  min-height: 60px;
  font-family: arial;
  font-size: small;
}

.slidertext li {
  display: none;
  padding-left: 20px;
  color: white;
}

.slidertext li a {
  text-align: left;
  line-height: 30px;
  height: 30px;
  color: #fff;
}

.slidertext li h3 {
  color: Gray;  
}

.slider .prev {
  position: absolute;
  bottom: 40px;
  margin-top: -30px;
  cursor: pointer;
  width: 38px;
  height: 48px;
  left: 0px;
  
  background: url(images/left.gif) no-repeat;
  opacity:.4; filter:alpha(opacity=40);
  
  //background: url(images/scroll-left.gif) no-repeat;
  //background: url(images/ft_icons.png) 0 0 no-repeat;
}
.slider .prev:hover {
  opacity:.7; filter:alpha(opacity=70);   
}


.slider .next {
  position: absolute;
  bottom: 40px;
  margin-top: -30px;
  right: 0px;
  cursor: pointer;
  width: 38px;
  height: 48px;
  
  background: url(images/right.gif) no-repeat;
  opacity:.4; filter:alpha(opacity=40);
  
  //background: url(images/scroll-right.gif)  no-repeat;
  //background: url(images/ft_icons.png) 0 -61px no-repeat;
}
.slider .next:hover {
  opacity:.7; filter:alpha(opacity=70);   
}
