#slider-container {
	position: relative;
	display: block;
	width: 320px;
	height: 267px;
	background: url(../_images/slide_container.png) no-repeat;
	margin-top: -13px;
}

#pagination {
	position: relative;
	display: block;
	text-align: right;
	margin-left: 38px;
}

#pagination a:link, #pagination a:visited, #pagination a:hover {
	display: block;
	float: left;
	background: url(../_images/nav_pag-default.png) no-repeat 0 3px;
	height: 14px;
	padding-left: 12px;
	margin-right: 18px;
	text-decoration: none;
	font-size: 11px;
}

#pagination a.selected { background-image: url(../_images/nav_pag-active.png); font-weight: bold; }
	

#slider {

	/* You MUST specify the width and height */
	position: absolute;
	top: 19px;
	left: 25px;
	width: 270px;
	height: 225px;
	overflow:hidden;
}

#btn-prev, #btn-next {
	position: absolute;
	display: block;
	width: 16px;
	height: 24px;
	text-decoration: none;
}


#btn-prev {
	background: url(../_images/slide_nav-prev.png) no-repeat;
	top: 116px;
	left: 7px;
}

#btn-next {
	background: url(../_images/slide_nav-next.png) no-repeat;
	top: 116px;
	right: 7px;
}
	

#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:1400px;
	overflow:hidden;
}

	#gallery li {

		
		/* float left, so that the items are arrangged horizontally */
		float:left;
		margin-right: 10px;
	}


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

	#excerpt li {
		padding:5px;
	}
	


.clear {
	clear:both;	
}