@charset "utf-8";
/* CSS Document */

#slider {
	width: 890px; /* important to be same as image width */
	height: 350px; /* important to be same as image height */
	position: relative; /* important */
	overflow: hidden; /* important */
}

#sliderContent {
	width: 890px; /* important to be same as image width or wider */
	position: absolute; /* important */
	top: 0; /* important */
	margin-left: 0; /* important */
}

.sliderImage {
   float: left; /* important */
   position: relative; /* important */
   display: none; /* important */
}

.sliderImage span {
	position: absolute; /* important */
	left: 0;
	width: 890px;
	background-color: #7B8FC1;
	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 */
	color: #fff;
	display: none; /* important */
	bottom: 0;
	padding-top: 15px;
	padding-right: 13px;
	padding-bottom: 15px;
	padding-left: 13px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 15px;
   /*
       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
   */
}
#wrapper #ad_panel #ads #slider #sliderContent .sliderImage .bottom strong {
	display: block;
	width: 870px;
	font-size: 22px;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-bottom: 3px;
	font-weight: normal;
	letter-spacing: -1px;
}

.bottom {
	bottom: 0;
    left: 0;
}
.clear {
   clear: both;
}
