/* root element for scrollable */
.scrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height:175px; 
	width:270px;
	margin-top:35px;
	
}

/* root element for scrollable items */
.scrollable .items {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}
.item
{
	 background:url(../images/twit-sep.png) bottom center no-repeat;
    font-size: 12px;    
    margin: 0px;
    padding: 5px 0px 0px 14px;
}