.scrollable {
	position:relative;
	overflow:hidden;
	width: 840px;
	height:120px;
}

.scrollable .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
}

/* single scrollable item */
.item 
{
    
	float:left;
	width:290px;
	height:100px;
	display:block;
	cursor:pointer;
	
}

/* active item */
.scrollable .active {
	position:relative;
}




/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 733px;	 
	width: 324px;
}


/* the action buttons above the scrollable */
#actions {
	width:324px;
	margin:10px 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;
}	

.prevPage {
	float:left;
}	
