/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height:515px;	 
	width:690px;
	float:right;
	}

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

/* single scrollable item */
.items div {
	margin:0px;
	padding:0px;
	font-size:12px;
	height:260px;
	float:left;
	position:relative;
	display:block;
	}

/* elements inside single item */
.items img {
	float:left;
	margin:0px;
	height:218px;
	width:156px;
	}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
	}

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

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
	}

#actions a:hover {
	text-decoration:underline;
	color:#000;
	}

.disabled {
	visibility:hidden;		
	}

.nextPage {
	float:right;
	}	


