
/* SLIDE SHOW NA INDEX */

#slider {
    width: 265px; /* important to be same as image width */
    height: 181px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#slider1 {
    width: 510px; /* important to be same as image width */
    height: 181px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
}
#sliderContent {
    width: 265px; /* important to be same as image width or wider */
    position: absolute;
	top: 0;
	margin: 0;
	left:0;
}
#slider1Content {
    width: 510px; /* important to be same as image width or wider */
    position: absolute;
	top: 0;
	margin: 0;
	left:0;
}
.sliderImage, .slider1Image {
    float: left;
    position: relative;
	display: none;
}
.sliderImage span {
    position: absolute;
	background:#0B1729; padding:10px; 
	font-size:10px;
	width: 265px;
	text-align:left;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
	-khtml-opacity: 0.9;
    opacity: 0.9;
    color: #fff;
    display: none;
}
.slider1Image span {
    position: absolute;
	background:#0B1729; padding:10px; 
	font-size:10px;
	width: 510px;
	text-align:left;
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
	-khtml-opacity: 0.9;
    opacity: 0.9;
    color: #fff;
    display: none;
}
.clear {
	clear: both;
}
.sliderImage span strong {
    font-size: 14px;
}
.top {
	top: 0;
	left: 0;
}
.bottom {
	bottom: 0;
    left: 0;
}
ul { list-style-type: none;}
