#s3slider {
   width: 960px; /* important to be same as image width */
   height: 370px; /* important to be same as image height */
      margin:0 auto 30px;

   position: relative; /* important */
   overflow: hidden; /* important */
   z-index:1;
   -moz-box-shadow: 10px 10px 5px #888888;
   -webkit-box-shadow: 10px 10px 5px #888888; /* Safari */
      box-shadow: 10px 10px 5px #888888;

   -moz-border-radius:15px;
   -webkit-border-radius:15px;
   border-radius:15px;

}

#s3sliderContent {
   width: 960px; /* important to be same as image width or wider */
   position: absolute; /* important */
   top: 0; /* important */
   margin-left: 0; /* important */
   z-index:1;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
}

.s3sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
   z-index:1;
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
}

.s3sliderImage img{
	border-radius:15px;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
}

.s3sliderImage span {
   position: absolute; /* important */
   right: 0;
   font: 12px/15px Arial, Helvetica, sans-serif;
   padding:20px 10px;
   width: 374px;
   background-color: #000;
   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 */
   bottom:100px;
}
.s3sliderImage span a {
	color: #EEEEEE;
}

.clear {
   clear: both;
}