#slider {
    width: 700px; /* important to be same as image width */
    height: 470px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
	#sliderContent {
		list-style:none !important;
	    width: 100%; /* important to be same as image width or wider */
	    position: absolute;
		top: 0;
		margin: 0 !important;
		padding: 0 !important;
	}
		.sliderImage {
			width: 100%;
		    float: left;
		    position: relative;
			display: none;
		}
		.sliderImage span {
		    position: absolute;
			font-face: Arial, Helvetica, sans-serif;
			font-size:1.2em;
		    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;
		}
			.sliderImage span strong {
				font-size:1.1em;
			}
		.clear {
			clear: both;
		}
		.sliderImage span strong {
		    font-size: 14px;
		}
		.top		{ top: 0; left: 0; }
		.bottom		{ bottom: 0; left: 0; 
