@charset "UTF-8";
/* CSS Document */

#slider {
	/* You MUST specify the width and height */
	width:390px; /* ERA 100 */
	height:250px; /* ERA 186 */
	position:relative;
	padding-left:75px;
	top:0px;
	overflow:hidden;
}

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


/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 250px; /* ERA 200 */	 
	width: 390px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.item {
/*	margin:5px 0; 
	padding:15px;
	font-size:12px; */
	height:100px;
}
