/* root element for scrollable */
.scrollable {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	height: 162px;	 
	width: 286px;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	/**/
}

/* the action buttons above the scrollable */
#actions {
	width:700px;
	margin:30px 0 10px 0;	
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

