@charset "utf-8";
/* CSS Document */

#s3slider, #s3slider2, #s3slider3 {
   width: 290px; /* important to be same as image width */
   height: 150px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   float:left;
   background:#1F1A17 ;
}

#s3sliderContent, #s3slider2Content, #s3slider3Content{
   width: 290px; /* important to be same as image width or wider */
   height:150px;
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0; /* important */
   padding:0;
   list-style:none;
}

.s3sliderImage, .s3slider2Image, .s3slider3Image {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
   padding:10px 0 0 20px;
}

.s3sliderImage span, .s3slider2Image span, .s3slider3Image span {
   position: absolute; /* important */
   left: 0;
   padding: 10px 0 10px 0;
   width: 290px;
   filter: alpha(opacity=70); /* here you can set the opacity of box with text */
   /*-moz-opacity: 0.7;  here you can set the opacity of box with text */
   -khtml-opacity: 0.7; /* here you can set the opacity of box with text */
   opacity: 0.7; /* here you can set the opacity of box with text */
   color: #fff;
   display: none; /* important */
   top:0;
   text-align:center;

   /*
       if you put
       top: 0; -> the box with text will be shown at the top of the image
       if you put
       bottom: 0; -> the box with text will be shown at the bottom of the image
   */
}

.s3sliderImage span{
   background-color: #000;
}

.clear {
   clear: both;
} 

