@charset "utf-8";
/* CSS Document */

#slider {
    width: 450px; /* important to be same as image width */
    height: 270px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	border: none;
	margin: 0;
}
#sliderContent {
    width: 450px; /* important to be same as image width or wider */
    position: absolute;
	top: 0px;
	left: 0px;
	border: none;
}
.sliderImage {
    float: left;
	width: 450px;
	height: 300px;
    position: relative;
	display: none;
}
.sliderImage span {
    position: absolute;
    width: 450px;
	height: 300px;
    display: none;
}
.clear {
	clear: both;
}

ul { 
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.sliderImage span {
    position: absolute;
	font: 12px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: 250px;
	height: 100px;
    background-color: #002632;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
	-khtml-opacity: 0.9;
    opacity: 0.9;
    color: #fff;
    display: none;
}

.bottom {
	bottom: 0;
	left: 0;
}

.top {
	top: 0;
	left: 0;
}