﻿#slider 
{
	/* You MUST specify the width and height */
	min-width:580px;
	height:400px;
	position:relative;	
	overflow:hidden;
	width:100%;
}

#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:0;
	left:0;
	/*z-index:500;*/
	
	/* width should be lesser than #slider width */
	width:150px;
	overflow:hidden;	
}
	
#excerpt 
{
	/* Opacity setting for different browsers */
	filter:alpha(opacity=100);
	-moz-opacity:1;  
	-khtml-opacity: 1;
	opacity: 1;  
	
	/* 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:150px;
	font-size:14px;
	color:#fff;	
}

#excerpt li 
{
	padding:5px;
}