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

	/* vertical scrollers have typically larger height than width */	
	height: 280px;	 
	width: 262px;
	border-top:1px solid #ddd;	
	margin-left:20px;
}

/* root element for scrollable items */
.vitems {
	position:absolute;
	/* this time we have very large space for height */	
	height:700px;
	margin: 0px;
	left: 0px;
	top: 20px;
}

/* single scrollable item */
.item {
	border-bottom:1px solid #ddd;

	font-size:12px;
	height:92px;
}

/* elements inside single item */
.item img {
	float:left;
	margin-right:20px;
	height:92px;
	width:262px;
}

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

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

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

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

.disabled {
	visibility:hidden;		
}

.next, .prev{
	cursor:pointer;
	display:block;
	height:10px;
}

.prev{
	margin-top:0px;
}



.narrow{
	width:262px;
	text-align:center;
	margin-top:0px;
	margin-bottom:10px;
	margin-left:15px;
}

.vertical_holder{
	height:440px;
	width:300px;
	position:absolute;
	z-index:90;
	left:581px;
	top:320px;
}
