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

	/* vertical scrollers have typically larger height than width */	
	height: 375px;	 
	width: 200px;	
	padding: 0 0 0 10px;
}

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

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	float:none;
	margin: 0;
}

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	/* text/font settings */
	/*
	color: #999;
	*/
	width: 200px;
	height: 125px;
	margin: 0;
	padding: 0;
}


/* mouseover state */
div.scrollable div.items div:hover {	
	background-position:-178px 0px;
}

/* clicked state */
div.scrollable div.items div:active {	
	background-position:-356px 0;
}

/* active item */
div.scrollable div.items div.active {	
	background-position:-534px 0;
	cursor:default;
}


/*******************************************************************************/
/*    */
/*******************************************************************************/

/* root element for scrollable */ 
div.scrollable {   
     
		/* required settings */ 
		position:relative; 
		overflow:hidden;     
		margin: 10px 0 10px 0;
		/* vertical scrollers have typically larger height than width */     
		height: 3750px;      
		width: 200px;   
} 
 
/* root element for scrollable items */ 
div.scrollable div.items {     
    position:absolute; 
     
    /* this time we have very large space for height */     
    height:20000em;     
}



.news-items {
	font-size: 0.8em;
	color: #ffffff;
}
