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

#slider {
	/* You MUST specify the width and height */
	float: left;
	width:100%;
	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:100%;
	overflow:hidden;
	float: left;
}

#gallery li {
	/* float left, so that the items are arrangged horizontally */
	float:left;
}


#mask-excerpt {
	/* Set the position */
	position:absolute;	
	top:0;
	left:0;
	z-index:500px;
	/* width should be lesser than #slider width */
	width:53%;
	overflow:hidden;
}
	
#excerpt {
	/* Opacity setting for different browsers */
	filter:alpha(opacity=60);
	-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:0;
	left:0;
	
	/* Set the style */
	width:53%;
	height: 99.5%;
	background-color:#000;
	overflow:hidden;
	font-size:11px;
	color:#fff;	
}

#excerpt li {
	padding:5px;
}

#excerpt li h2, #excerpt li h2 a{ font-size: 14px; color: #FFF; border: none; text-decoration: none;}
#excerpt li h2 a:hover { text-decoration: underline; }

.clear {
	clear:both;	
}
