/* root element for scrollable */ 
div.scrollable { 
 
		/* required settings */ 
		position:relative; 
		overflow:hidden; 
 
		/* vertical scrollers have typically larger height than width */ 
		height: 340px; 
		width: 100%; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
		position:absolute; 
 
		/* this time we have very large space for the height */ 
		height:20000em; 
}

#actions a {
	display:block;
	width:20px;
	height:20px;
	cursor:pointer;
}

#actions a.prevPage, #actions a.prevPage:link, #actions a.prevPage:active, #actions a.prevPage:visited {
	background-image:url(back_gray.gif);
}
#actions a.prevPage:hover {
	background-image:url(back.gif);
}

#actions a.nextPage, #actions a.nextPage:link, #actions a.nextPage:active, #actions a.nextPage:visited {
	background-image:url(next_gray.gif);
}
#actions a.nextPage:hover {
	background-image:url(next.gif);
}

.disabled {
	visibility:hidden;
}
