#slider {

	/* You MUST specify the width and height */
	width:300px;
	height:214px;
	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:900px;
	overflow:hidden;
}

	#gallery li {

		
		/* float left, so that the items are arrangged horizontally */
		float:left;
	}


#mask-excerpt {
	
	/* Set the position */
	position:absolute;	
	top:151px;
	left:0;
	z-index:500px;
	
	/* width should be lesser than #slider width */
	width:300px;
	overflow:hidden;
	
	

}
	
#excerpt {
	/* Opacity setting for different browsers */
	/*
	filter:alpha(opacity=95);
	-moz-opacity:0.95;  
	-khtml-opacity: 0.95;
	opacity: 0.95;  
	*/
	/* 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:300px;
	overflow:hidden;
	font-family:Tahoma, Geneva, sans-serif;
	font-size:14px;
	color:#fff;	
	text-align:left;
	
	
}

	#excerpt li {
		padding:5px;
		padding-top:14px;
		background:url(../images/manset_slider_bg.png) no-repeat;
	}
	
	#excerpt li a {
		color:#FFF;
		text-decoration:none;
	}
	
	#excerpt li a:hover {
		color:#FF9;
		text-decoration:none;
	}
	


.clear {
	clear:both;	
}

