/* root element for scrollable */
.vertical {
	/* required settings */
	position: relative;
	overflow: hidden;
	height: 90px;
	width: 300px;
}

/* root element for scrollable items */
.items {
	position: absolute;
	margin: 0;
}

/* single scrollable item */
.items div {
	margin: 3px 0;
    text-align: center;
	width: 300px;
	height: 27px;
}

/* the action buttons above the scrollable */
.disabled {
	visibility: hidden;
}

.nextPage {
	float: right;
}

#actions {
	width: 300px;
	margin: 5px 0 5px 0;
}
/*
#actions a {
	font-size:11px;
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}
*/
