/* root element for scrollable */
.vertical {  
	
	/* required settings */
	margin:auto;
	position:relative;
	overflow:hidden;	
	width: 920px;
	/* vertical scrollers have typically larger height than width */	
	height: 540px;	 
}

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

/* single scrollable item */
.item {
	border-bottom: 1px solid #333;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:240px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:40px;
	height:230px;
	width:340px;
	border: 5px #FFF solid;
}

.item h3 {
	margin:0 0 5px 0;
	font-size: 18px;
	color:#333;
}

/* the action buttons above the scrollable */
#actions {
	margin: auto;
	margin-bottom: 10px;
	padding:10px 200px 10px 200px;
	width:520px;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
}

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

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

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	
