/* CSS Document */
#s3slider {
   width: 218px; /* important to be same as image width */
   height: 200px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   float:right; /* DWS added to align to right of page, text can flow down left */
   padding:10px 0 10px 20px; /* DWS added to align to right of page, text can flow down left */
   background:#fff url(../../images/serviceSlide-bg.jpg) no-repeat 20px 0px; /* DWS added to make transitions of service images nicer */
}

#s3sliderContent {
   width: 218px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0; /* important */
}

.s3sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.s3sliderImage span {
   position: absolute; /* important */
   left: 0;
   font: 10px/15px Arial, Helvetica, sans-serif;
   padding: 10px 13px;
   width: 200px; /* DWS - if set to same as image width, text can run off on right hand side? */
   background-color: #00406E; /* IC dark blue */
   background-color: #fff;
   filter: alpha(opacity=80); /* here you can set the opacity of box with text */
   -moz-opacity: 0.8; /* here you can set the opacity of box with text */
   -khtml-opacity: 0.8; /* here you can set the opacity of box with text */
   opacity: 0.8; /* here you can set the opacity of box with text */
   color: #fff;
   color: #000;
   display: none; /* important */
   bottom: 0;

   /*
       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;
} 

#s3slider ul, #s3slider li{list-style-type:none; padding:0; margin:0;}
