#slider { 
   width: 375px; /* important to be same as image width */ 
   height: 303px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
}

#sliderContent {
   width: 375px; /* 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 */
}

.sliderImage span {
   position: absolute; /* important */
   left: 10px;
   font: 12px Verdana, Arial, Helvetica, sans-serif;
   padding: 10px 10px;
   width: 190px;
   height: 128px;
   background-color: #ffffff;
   /*filter: alpha(opacity=70); 
   -moz-opacity: 0.7;
   -khtml-opacity: 0.7; 
   opacity: 0.7; */
   color: #747474;
   line-height: 18px;
   font-weight: normal;
   display: none; /* important */
   bottom: 20px;
   border: 1px solid #cccccc;

   /*
       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
   */

}


.clear {
   clear: both;
}