

#slider {
	clear:both;
    width: 900px; /* important to be same as image width */
    height: 300px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	text-align:left;
}

#sliderContent {
    width: 900px; /* important to be same as image width or wider */
	height: 300px;
	float: left;
    position: absolute;
	top: 0;
	margin-left: 0;
}

.sliderImage {
	 width: 900px;
	 height:300px;
    float: left;
    position: relative;
	display: none;
}

.sliderImage span {
    position: absolute;
    padding: 10px;
    width: 300px;  /* width of the caption box  */
	height:300px; /* height of the caption box  */
    background-color: #000;  /* background color of the semi transparent box */
	filter: alpha(opacity=70); -moz-opacity: 0.7; -khtml-opacity: 0.7; opacity: 0.7;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:150%;
    color: #fff; /* color of the text in the caption box */
    display: none;
}

.sliderImage span strong { 
	color:#D65532; /*title text in the caption box sbred */
	font-size: 22px; /* font size of the title text in the caption box */
	line-height:300%;
	}

.clear { clear: both; }


.top { top: 0; left: 600px; }  /* upper left corner of the caption box */

.bottom { bottom: 0; left: 0; } /* lower left corner of the caption box */

#slider ul 		{ list-style-type: none;}
#slider ul li 	{ margin-left:0px; }





