
.liheading {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 11px;
	font-weight: bold;
}

.liaddress {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 9px;
}

.liaddress a{
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 9px;
}

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

	/* vertical scrollers have typically larger height than width */	
	height: 345px;	 
	width: 297px;	
	
	/* decoration */
	padding:2px;
	
}

/* root element for scrollable items */
div.scrollable div.items {	
	
	position:relative;
	
	
	/* this time we have very large space for height */	
	height:20000em;	
	 
	/* decoration */
	margin-top:2px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	text-align: left;		
	width: 285px;
	padding:5px ;
	border:1px outset #ccc;
	background-color: #F7F6ED;/* #eee; */
	-moz-border-radius:5px;
	margin-bottom:5px;
}

/* active item */
div.scrollable div.items div.active {
	border:1px inset #ccc;		
	background-color:#fff;
}
