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

#slider {
 
    /* You MUST specify the width and height */
    width:939px;
    height:280px;
    position:relative;  
    overflow:hidden;
}
 
#mask-gallery {
     
    overflow:hidden;    
}
 
#gallery {
     
    /* Clear the list style */
    list-style:none;
    margin:0;
    padding:0;
     
    z-index:0;
     
    /* width = total items multiply with #mask gallery width */
    width:939px;
    overflow:hidden;
}
 
    #gallery li {
 
         
        /* float left, so that the items are arrangged horizontally */
        float:left;
    }
 
 
#mask-excerpt {
	/* Set the position */
    position:absolute;
	top:87px;
	left:929px;
	z-index:50px;
	/* width should be lesser than #slider width */
    width:200px;
	overflow:hidden;
	height: 127px;
     
}
     
#excerpt {
	/* Opacity setting for different browsers */
    filter:alpha(opacity=80);
	-moz-opacity:0.6;
	-khtml-opacity: 0.6;
	opacity: 0.6;
	/* Clear the list style */
    list-style:none;
	margin:0;
	padding:0;
	/* Set the position */
    z-index:10;
	position:absolute;
	top:26px;
	left:216px;
	/* Set the style */
    width:353px;
	background-color:#000;
	overflow:hidden;
	font-family:arial;
	font-size:10px;
	color:#fff;
	height: 150px;
}
 
    #excerpt li {
        padding:5px;
    }
     
 
 
.clear {
    clear:both; 
}
#slideshow {
    position:relative;
    height:350px;
}

#slideshow IMG {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
}

#slideshow IMG.active {
    z-index:10;
    opacity:1.0;
}

#slideshow IMG.last-active {
    z-index:9;
}