/* prev, next, prevPage and nextPage buttons */
a.prev, a.next, a.prevPage, a.nextPage {
	display:block;
	float:left;
	cursor:pointer;
}
/* root element for scrollable */
div.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 606px;	 
	width: 192px;	
	
	/* decoration */
	padding:0px 8px;
	background-color:#00a7ac;
}

/* root element for scrollable items */
div.scrollable div.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	
	/* decoration */
	margin-top:0px;
}

/* 
	same settings as in horizontal scroller except that these items 
	are not floated
*/
div.scrollable div.items div {
	margin-left:8px;
	width:150px;
	padding:0px;
	background-color: #ffffff;
	font-weight:bold;
	font-size:9pt;
	margin-bottom:0px;
	line-height:1.2;
}

div.scrollable div.items a {
	text-decoration:none;
}

div#arrow_up {
	/*float:left;*/
	}

div#arrow_down {'
	}
