/* root element for scrollable */
.vscrollable {

	/* required settings */
	position:relative;
	overflow:hidden;

	/* vertical scrollables have typically larger height than width but not now */
	height: 690px;
	width: 280px;
}

/* root element for scrollable items */
.vscrollable .vitems {
	position:absolute;

	/* this time we have very large space for the height */
	height:20000em;
}

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

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

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

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

/* elements inside single item 
.vitem img {
	float:left;
	margin-right:2px;
	height:74px;
	width:74px;
}*/

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

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

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

#actions a:hover {
	text-decoration:underline;
	color:#000;
}
.next {	
	background:url(/images/btns/arrow_down_active.png) center center no-repeat;
	cursor:hand;
}	
.prev {
	background:url(/images/btns/arrow_up_active.png) center center no-repeat;
	float:center;
}

.vscrollNavBottom .disabled {
	background:url(/images/btns/arrow_down_inactive.png) center center no-repeat !important;	
	cursor:default
}

.vscrollNavTop .disabled {
	background:url(/images/btns/arrow_up_inactive.png) center center no-repeat !important;
	cursor:default
}


