#slider0 {
    width: 500px; /* important to be same as image width */
    height: 375px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}



#slider0Content, #slider1Content, #slider2Content {
    width: 500px;
    position: relative;
	top: 0;
	margin-left: -50; /* distance from left */

}
.slider0Image, .slider1Image, .slider2Image {
    float: left;
    position: relative;
	display: none;
}
.slider0Image span {
    position: absolute;
    left: 0;
    font: 15x/25px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: 500px; /* was 384 */
    background-color: #000;
    filter: alpha(opacity=70); /* here you can set the opacity of box with text */
    -moz-opacity: 0.7;  /* here you can set the opacity of box with text */
    -khtml-opacity: 0.7;  /* here you can set the opacity of box with text */
    opacity: 0.7;
    color: #fff;
    display: none;
}

.slider1Image span, .slider2Image span {
    position: absolute;
	font: 20px/15px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: 624px;
    background-color: #000;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
	-khtml-opacity: 0.7;
    opacity: 0.7;
    color: #fff;
    display: none;
}
.clear {
	clear: both;
}
.slider0Image span strong, .slider1Image span strong, .slider2Image span strong {
    font-size: 34px;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
	left: 0;
}
.left {
	top: 0;
	left: 0;
	width: 110px !important;
	height: 251px;
}
.right {
	right: 0;
	bottom: 0;
	width: 90px !important;
	height: 256px;
}
.offset {
	left: 30px;
}
.offsetRight {
	right: 40px;
}
