/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 550px;	 
	width: 210px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	margin:7px 0;
	font-size:12px;
	height:20px;
}

.items a { 
display : block; 
padding : 5px; 
width : 190px; 
border-bottom : 1px dotted #81b3ff; 
} 

.items a:link, .items a:visited { 
color : #09f; 
text-decoration : none; 
} 

.items a:hover { 
border-bottom : 1px solid #cfe2ff; 
background-color : #f7fbfd; 
color : #006699; 
}

/* the action buttons above the scrollable */
#actions {
	width:200px;
	text-align:center;
}

#actions a {
	display:inline;
	border-bottom:none;	
	cursor:pointer;
	padding:0px;
}

#actions a:hover {
	border-bottom:none;
	text-decoration:none;
	color:#000;
	padding:0px;
}

.disabled {
	visibility:hidden;		
}

