#slider {
    width: 980px; /* important to be same as image width */
    height: 500px; /* important to be same as image height */
    position: relative; /* important */
	overflow: hidden; /* important */
	background:#666;
	z-index:888;
}
#sliderContent {
    width: 980px; /* important to be same as image width or wider */
	position: absolute;
	top: 0;
	margin-left: 0;
}
.slideshowArrow{
	position:absolute;
	top:132px;
	z-index:5;
	opacity:0;
	/*filter: alpha(opacity = 0);*/
	cursor:pointer;
	height:135px;
	width:65px;
}
/*.slideshowArrow:hover{background-image:url(../images/slideshowArrowL.png)}*/
.slideshowArrow.next { left:900px }
.slideshowArrow.previous { left:22px }
.sliderImage {
    width:980px;
	float: left;
    position: relative;
	display: none;
}

.sliderImage span {
    position: absolute;
	padding:25px 30px;
    width: 980px;
	color:#555;
    background-color: #fff;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
	-khtml-opacity: 0.8;
    opacity: 0.8;
    display: none;
	font-size:36px;
	font-style:italic;
}

.sliderImage span em {
	padding:0 250px 0 0;
	display:block;
}

.top {top: 0; left: 0;}
.bottom {bottom: 0; left: 0;}
