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

	/* vertical scrollers have typically larger height than width */	
	height: 401px;	 
	width: 225px;	
	margin-left: 25px;	
	float:left;
}

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

/* override item style defined in scrollable.css */
div.scrollable div.items div {
	margin: 0;	
	line-height: 16px;
}


/* single scrollable item */
div.scrollable div.items div {
	float:left;
	
	/* background image */
	background: #000 url(../img/scrollable/white.jpg) no-repeat 0 0;
	
	
	/* text/font settings */
	color:#FFF;
	text-align:left;
	width:225px;
	height: 401px;
	padding:0;
	font-size:11px;

}

div.scrollable a:link, #accordion a:visited  {
	color:#FFF;
	font-weight: bold;
	margin:0;
	padding:0;
	font-size:11px;	
	text-decoration: none;
}

div.scrollable a:hover  {
	color:#FFF;
	font-weight:bold;
	background-color: #666;
	margin:0;
	padding:0;
	font-size:11px;	
	text-decoration: none;
}




