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

	/* vertical scrollers have typically larger height than width */
	
	width:253px;
	height:244px;
	margin:48px 10px 10px 10px; 

	

}

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

	
}

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

/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* background image */
	
	
	/* text/font settings */
	color:#5D544F;
	width:192px;
	font-family:Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight:bold;
	cursor:pointer;
	padding:5px 18px;
	border-top:solid 1px #CBDCEB; border-right:solid 1px #CBDCEB; border-bottom:solid 1px #CBDCEB; border-left:solid 5px #CBDCEB;
	background:url(icon_12.gif) no-repeat left;
	
	
}


/* mouseover state */
div.scrollable div.items div:hover { color:#0074AD;
}

/* 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;
}



