/* root element for scrollable */
.scrollvertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 350px;
	width: 150px;
}

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

/* single scrollable item */
.scrollitems div {
	height:50px;
}

/* elements inside single item */
.scrollitems img {
	float:left;
	margin-right:5px;
}

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

#scrollactions {
	width:160px;
}

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

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

.disabled {
	visibility:hidden;		
}

.prevPage {
	float:left;
}	

.nextPage {
	float:right;
}	
