.vertical { /* root element for scrollable */
	position:relative; /* required */
	overflow:hidden; /* required */
	height: 330px; /* vertical scrollers have typically larger height than width */	
	width: 220px;
	/*border-top:1px solid #ddd;*/
	}
	
	.items { /* root element for scrollable items */
		position:absolute;
		/*height:20000em;	this time we have very large space for height */	
		width:20000em;	/* for horizontal scrolling */
		margin: 0px;
		}
		.items div { /* single scrollable item */
			margin:0px;
			padding:0px 0px 10px;
			font-size:12px;
			height:380px;
			float:left;
			}

/* the action buttons above the scrollable */
#actions {
	/*background:#eee;*/
	border-bottom:1px solid #aaa;
	margin:0px 0px 5px;
	padding:5px 5px 7px;
	overflow:hidden;
	}
	#actions a {
		font-size:11px;		
		cursor:pointer;
		color:#666;
		}
		#actions a:hover {
			text-decoration:underline;
			color:#000;
			}

.disabled {
	visibility:hidden;	
	}

.prevPage {
	float:left;
	}
.nextPage {
	float:right;
	}	


