/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 240px;	 
	width: 288px;
}

/* root element for scrollable items */
.vertical .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.vertical .items div {
	height:240px;
	padding: 5px 0 0 0;
}

/* elements inside single item */
.vertical .items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

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

#actions a {
	background: url(../images/scroller_nav.gif) no-repeat 0 0;
	display: block;
	float: left;
	height: 20px;
	text-indent: -9999px;
	width: 20px;
}

#actions a.prevPage {
	background-position: 0 0;
}	

#actions a.prevPage:hover {
	background-position: 0 -20px;
}	

#actions a.nextPage {
	background-position: -20px 0;
}	

#actions a.nextPage:hover {
	background-position: -20px -20px;
}	

#actions a.prevPage.disabled {
	background-position: 0 -40px;		
}

#actions a.nextPage.disabled {
	background-position: -20px -40px;		
}


