/* CSS Document */
ul, li, img {
list-style: none;
margin: 0; padding: 0;
}

#slider {
   width: 600px; /* important to be same as image width */
   height: 300px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   padding:0px;
   margin:0px;
   z-index:-1000;
}


#sliderContent {
   width: 400px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0; /* important */
}

.sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
   padding:0px;
   margin:0px;
}

.sliderImage span {
   position: absolute;  /* important */
   
   padding: 10px 13px;
   width: 190px; /* width of image minus left and right padding. Needed for IE */
   background-color: #4E4E50;
   font-size:12px;
  /* 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 */
   left: 410px;
   top:0px;
}