@charset "utf-8";
/* CSS Document */

/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */	
	height: 650px;	 
	width: 580px;
	border-top:1px solid #ddd;
	float:right;
	top:15px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;
	margin: 0px;
	left: 2px;
	overflow:hidden;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #ddd;
	margin:10px 0;
	padding:15px;
	font-size:12px;
	height:180px;
	overflow:hidden;
}

/* elements inside single item */
.item img {
	float:right;
	margin-left:80px;
	height:180px;
	width:180px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	float:right;
	height:15px;
	width:580px;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.next {
	float:right;
}	

