
#slider {

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

	#gallery li {

		
		/* float left, so that the items are arrangged horizontally */
		float:left;
	}
	#gallery li img {
		width:250px;
		height:250px;
		float: right;
	}


#mask-excerpt {
	
	/* Set the position */
	position:absolute;	
	top:150px;
	left:70px;
	z-index:500px;
	
	/* width should be lesser than #slider width */
	width:150px;
	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:150px;
	left:70px;
	
	/* Set the style */
	width:140px;
	background-color:#000;
	overflow:hidden;
	font-family:arial;
	font-size:10px;
	color:#fff;	
}

	#excerpt li {
		padding:5px;
	}
	
#excerpt li h2 a { 
	font-size:17px; 
	color:#fff;
}

.clear {
	clear:both;	
}

#buttons {
	float:right;  font-size:11px;

width: 280px;
text-align: right;
padding: 2px 2px;
background: #484848;
}
#btn-pause  , 
#btn-play  {
display:none;
}
#btn-prev , 
#btn-next {
	padding: 0 2px;
	margin-left:4px;
	text-decoration: none; 
	color: #ccc;
	background: #484848;
	font-size:11px;

}

