/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 405px;	 
	width: 50px;
	text-align: center;
	border-width: 0;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	text-align: center;
	border: 0;
	width: 50px;
}

/* single scrollable item */
.items div {
	font-size: 10px;
	text-align: center;
	width: 50px;
	line-height: 12px;
	font-weight: bold;
}

/* elements inside single item */
.items img {
	float:left;
	height:48px;
	width:48px;
	border: 1px solid #a7a8ac;
	opacity:1;
	filter:alpha(opacity=100);
	margin-bottom: 10px;
}

/* @group Actions */

#actions {
	width: 50px;
	margin: 0;
	text-align: center;
}

#actions-up {
	width: 50px;
	margin: 0 0 4px;
	text-align: center;
	display: block;
	height: 10px;
}

#actions-down {
	width: 50px;
	margin: 4px 0 0;
	text-align: center;
	height: 10px;
	display: block;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility: visible; /* turns bottom triangle on automatically if hidden */	
}

.nextPage {
	float:right;
}



/* @end */	
