/* root element for the whole scrollable setup */
div.event_features {  
	position:relative;
	overflow:hidden;
	width: 650px;	 
	height:230px;	
	float:left;
	background:#0c0c0c;
}

/* 
	root element for scrollable items. It is 
	absolutely positioned with large width. 
*/
#featuredEvent {	
	position:absolute;
	width:20000em;	
	clear:both;
}



/* single item */
#featuredEvent div {
	float:left;
	width:325px;
	height:230px;
	cursor:pointer;
}

/* style when mouse is over the item */
#featuredEvent div.hover {
	background-color:#000;	
}


/* style when element is active (clicked) */
#featuredEvent div.active {
	background-color:#0c0c0c;
	cursor:default;
}

