#slider {
    width: 950px; /* important to be same as image width */
    height: 200px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	border:none;
	background:white repeat;
}
#sliderContent {
    width: 950px; 
    position: absolute;
	top: 0;
	margin-left: 0;
	background:white repeat;
}
.sliderImage {
    float: left;
    position: relative;
	display: none;
	width:950px;
	height:200px;
	background:white repeat;
}
.sliderImage span {
    position: absolute;
	font: 13px/15px Arial, Helvetica, sans-serif;
    padding: 10px 10px;
    width: 928px;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
	-khtml-opacity: 0.7;
    opacity: 0.7;
    color: #fff;
    display: none;
	line-height:22px;
}
.clear {
	clear: both;
}
.sliderImage span strong {
    font-size: 18px;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
    left: 0;
	height:40px;
	border:none;
}

.sliderImage a img { border:none; }