/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 530px;	 
	width: 220px;
	border:1px solid #888;
	background: transparent url(scrollback.jpg);
	margin:0;
	padding:0;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	top:0;
	left:0;
	/* this time we have very large space for height */	
	height:530px;	
	margin: 0px;
}

/* single scrollable item */
.items div {
}

/* elements inside single item */
.items img {
border-top:1px solid #666;
	border-left:1px solid #666;
	border-right:1px solid #fff;
	border-bottom:1px solid #fff;
	padding:0;
	margin:10px 10px;
}


/* the action buttons above the scrollable */
#actions {
	width:220px;
	margin:0	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
}	

.center {width:220px;text-align:center;}


