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

	/* vertical scrollers have typically larger height than width */	
	height: 250px;	 
	width: 740px;
}

/* 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 span {
	width:173px;
	height:75px;
	float:left;
	margin-bottom:10px;
	margin-right:10px;
}

/* elements inside single item */
.items img {
	float:left;
	height:75px;
	width:173px;
	border:1px solid #BBB3A5;
}

.items img:hover{
	border:1px solid #D70000;	
}

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

/* the action buttons above the scrollable */
#actions {
	width:725px;
	margin:30px 0 10px 0;
	position:absolute;
	margin-top: 255px;
}

#actions a {
	font-size:12px;		
	cursor:pointer;
	color:#900;
}

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


