#slider {
    width: 100%; /* important to be same as image width */
    height: 230px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	background: #000;
	z-index: 10;
}
#sliderContent {
    width: 100%; /* important to be same as image width or wider */
	top: 0;
	margin: 0;
	padding: 0;
	
}
.sliderImage {
width: 100%;
float: left;
	display: none;
	margin: 0;
	padding: 0;
}


.sliderImage span {
    position: absolute;
	font: 10px/15px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: 100%;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
	-khtml-opacity: 0.7;
    opacity: 0.7;
    color: #fff;
    display: none;
	text-align: left;
}
.clear {
	clear: both;
}
.sliderImage span strong {
    font: bold 12px Tahoma, Arial, sans;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
    left: 0;
}
ul { list-style-type: none;}