body {
font-family: arial;
font-size: 11px;
}

ul, li, img {
list-style: none;
margin: 0; padding: 0;
}

img {
	border: 0;
}

#slider {
   width: 152px; /* important to be same as image width */
   height: 100px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   background-color:#38618C; border:solid 1px #ACC1DB;
}

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

.sliderImage { /* List item tags */
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.sliderImage span {
   position: absolute; /* important */
   padding: 5px 5px;
   width: 142px; /* width of image minus left and right padding. Needed for IE */
   background-color: #38618C; border-bottom:solid 1px #ACC1DB;
   color: #fff;
   text-align: center;
   filter: alpha(opacity=90); /* here you can set the opacity of box with text */
   -moz-opacity: 0.9; /* here you can set the opacity of box with text */
   -khtml-opacity: 0.9; /* here you can set the opacity of box with text */
   opacity: 0.9; /* here you can set the opacity of box with text */
   display: none; /* important */
   left: 0;
   top: 0;
}

.clear {
   clear: both;
} 
