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

#slider {
    width: 770px; /* important to be same as image width */
    height: 335px; /* important to be same as image height */
	background:#000000;
	border: 5px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
    position: relative; /* important */
	overflow: hidden; /* important */
	
}

#slider img {
	border-style: none;
}

#sliderContent {
    width: 770px; /* important to be same as image width or wider */
    position: absolute;
	top: 0;
	left: 0;
}

.sliderImage {
	width:770px;
	height:335px;
	float:left;
    position: absolute;
	top:-1em;
	left:0;
	display: none;
}


.sliderImage span {
    position: absolute;
	font: 20px Arial, Helvetica, sans-serif;
    padding: 10px 13px;
    width: auto;
	background-color: #000000;
    filter: alpha(opacity=95);
    -moz-opacity: 0.95;
    opacity: 0.95;
    color: #fff;
    display: none;
	text-align: left;
}

strong {
	color: #00AEEF;
	font-family:Arial, Helvetica, sans-serif;
	font-style:italic;
	font-size:20px;
	line-height:18px;
	}

sub {
	color:#FFFFFF;
	font-family:Arial, Helvetica, sans-serif;
	font-variant:small-caps;
	font-size:15px;
	}

.clear {
	clear: both;
}

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