/* CSS Document */
#slider {
	width: 100%; /* important to be same as image width */
	height: 200px; /* important to be same as image height */
	overflow: hidden; /* important */
	clear:both;
	float:left;
}


#sliderContent {
	width: 100%; /* important to be same as image width or wider */
	margin:0;
	padding:0;
}
.sliderImage {
	position: relative;
	display: none;
	z-index:0;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	height: 200px;
}
.sliderImage img {
	width: 100%;
}

#sliderContent img {
	height: auto;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

.sliderImage span {
	position: absolute;
	width: 98%;
	background-color: #000000;
	color: #fff;
	display: none;
	padding: 5px;
	filter: alpha(opacity=40);
	-moz-opacity: 0.6;
	opacity: 0.8;
	height: auto;
	font-family: Arial, "Arial Black";
	font-size: medium;
}
.top {
	top: 0;
	left: 0;
}
.clear {
	clear: both;
}
.sliderImage span strong {
	font-size: medium;
	font-family: Arial, "Arial Black";
	color: #FFFFFF;
}

