#s3slider {
   width: 600; /* important to be same as image width */
   height: 520px; /* important to be same as image height */
   position: relative; /* important */
   overflow: hidden; /* important */
   margin:auto;
   
-moz-border-radius:0 0 10px 10px;
 -webkit-border-radius:0 0 10px 10px;
 border-radius: 0 0 10px 10px;
}

#s3sliderContent {
   width: 600px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   left: -8px; /* important */
   
   
}

.s3sliderImage {
  
   position: relative; /* important */
   display: none; /* important */
   height:450px;
   
}

.s3sliderImage img {
	border:1px solid black;
}

.s3sliderImage img:hover {
	border:1px solid #B2241D;
}


.s3sliderImage span {
   position: absolute; /* important */
   left: 0;
   font: 10px/15px Arial, Helvetica, sans-serif;
   padding: 10px 13px 0px 13px;
   width: 575px;
   /*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: black;
   display: none; /* important */
   top: 440px;
   font-size:1.1em;
   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
   */
}

#s3sliderContent li
{
	list-style-type: none;
	list-style-image : none;
}

.clear {
   clear: both;
}




