@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
#vertical2 {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 370px;	 
	width: 228px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.items2 {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items2 div {
	border-bottom:1px solid #ddd;
	margin:5px 0;
	padding:5px;
	font-size:12px;
	height:355px;
	text-align:center;
}

/* elements inside single item */

.items2 h3 {
	margin:0 0 2px 0;
	font-size:14px;
	color:#456;
	font-weight:normal;
}

.items2 u {
	text-decoration:underline;
}

/* the action buttons above the scrollable */
#actions2 {
	width:228px;
	margin:10px 0 10px 0;	
}

#actions2 a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions2 a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
