/* 
	root element for the scrollable. 
	when scrolling occurs this element stays still. 
*/

div.scrollable {
	/* required settings */
	display: block;
	position:relative;
	overflow:hidden;	 	
	width: 238px;	
	height:140px;	
	background: #FFFAEC;
	margin-top: 10px;
	border: 1px solid #AA1114;				
}

/* 
	root element for scrollable items. Must be absolutely positioned
	and it should have a super large width to accomodate scrollable items.
	it's enough that you set width and height for the root element and
	not for this element.
*/
div.scrollable div.items {	
	/* this cannot be too large */
	position:absolute;
	height: 800px;
	clear:both;	
}

/* single scrollable item */
div.scrollable div.items div.news-list-item {
	float:left;
	padding: 0 10px 30px 10px;
	width: 220px;
}

div.scrollable div.items div.news-list-item:hover {
	cursor: pointer;
}

span.news-list-date {
	font-size: 10px;
	display: block;
	color: #4A4A4A;
}

div.scrollable h3 {
	border: none;
	margin-top: 10px;
}


div.scrollable h3 span {
	display: none;
}


