/* root element for scrollable */ 
div.scrollable {
	/* required settings */ 
    position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */ 
    height: 353px;
	width: 897px;
}
/* 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 {
	cursor:pointer;
}
#actions a:hover {
	color:#aaa;
	text-decoration:none;
}
#actions {
	text-align:center;
	text-decoration:none;
	border:0;
	outline:0;
	padding-top:220px;
}
#actions img {
	text-decoration:none;
	border:0;
	outline:0;
}
