#slider {

	/* You MUST specify the width and height */
	width:500px;
	height:350px;
	position:relative;	
	overflow:hidden;
}

#mask-gallery {
	
	overflow:hidden;	
}

#gallery {
	
	/* Clear the list style */
	list-style:none;
	margin:0;
	padding:0;
	z-index:10;
	width:400px;
	overflow:hidden;
}

	#gallery li {

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


#mask-excerpt {
	
	/* Set the position */
	position:absolute;	
	top:275px;
	left:0;
	z-index:20;
	/* width should be lesser than #slider width */
	width:500px;
	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:500px;
	background-color:#000;
	overflow:hidden;
	color:#fff;	
}

#excerpt li {
	padding:5px;
	font-size: 16px;
	font-weight: bold;
	font-family: Verdana;
	}
	
#controls {
	z-index:30;
	position:absolute;
	top:325px;
	left:500px;
}
.learnMore a
	{
	color:#fff;
	font-size: 12px;
	font-weight: normal;
	text-align: right;
	}

.clear {
	clear:both;	
}

