#slider {
    width: 700px; /* important to be same as image width */
    height: 320px; /* important to be same as image height */
    position: relative; /* important */
	  overflow: hidden; /* important */
    border: #666 1px solid;
}
#sliderContent {
   width: 700px; /* important to be same as image width or wider */
   position: absolute;
	 top: 0;
	 margin: 0px; padding:0px;
   list-style-type: none;
}
.sliderImage {
    float: left;
    position: relative;
	 display: none;
}
.sliderImage span {
    position: absolute;
	  font: 12px;
    padding: 10px 0px 10px 10px;
    width: 700px;
    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;
}
.sliderImage span strong {
    font-size: 14px;
}
.leftin {
	left: 0;
	bottom: 0;
	width: 160px !important;
	height: 160px;
}
.rightin {
	right: 0;
	bottom: 0;
	width: 160px !important;
	height: 160px;
}
.topin {
	top: 0;
	left: 0;
}
.bottomin {
	bottom: 0;
    left: 0;
}
