

/* root element for scrollable */ 
div.scrollable { 
 
    /* required settings */ 
    position:relative; 
    overflow:hidden; 
 
    /* vertical scrollers have typically larger height than width */ 
    height: 410px; 
    width: 250px; 
} 
 
/* root element for scrollable items */ 
div.scrollable div.items { 
    position:absolute; 
 
    /* this time we have very large space for the height */ 
    height:20000em; 
	width: 200px;
}
div.scrollable div.items div { 
	text-align: center;
	padding: 0 0 10px 0;
}

div.scrollable div.items a.zoom { 
	background-image: url(../img/icon-zoom.gif);
	background-repeat: no-repeat;
	background-position: 0 2px;
	padding: 0 0 0 18px;
}

div#actions { 
	width: 200px;
	text-align: center;
	padding: 4px 0;
}
div#actions a { 
	cursor: pointer;
}
