@charset "utf-8";
/* CSS Document */
#slider {
	width: 360px; /* important to be same as image width */
	height: 296px; /* important to be same as image height */
	position: relative; /* important */
	overflow: hidden; /* important */
}
[if IE]>
#slider {
	margin-left: 40px;
}
<![endif]
#sliderContent {
	width: 360px; /* important to be same as image width or wider */
	position: absolute; /* important */
	margin-left: 10;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 3px;
	top: 10;
}

.sliderImage {
   float: right; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.ie .sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.sliderImage span {
	position: absolute; /* important */
	left: 0;
	font: 12px/16px Arial, Helvetica, sans-serif;
	width: 305px;
	background-color: #ddd;
	filter: alpha(opacity=95); /* 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 */
	color: #003;
	display: none; /* important */
	bottom: 0;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 25px;
	padding-left: 10px;   /*
       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;
} 

