/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 580px;	 
	width: 120px;
	border-top:1px solid #ddd;	
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	/*height:20000em;	*/
	margin: 0px;
	font-size:12px;
}

/* single scrollable item */
.items-list {
padding:5px 0;
}
.items div {
	padding:5px;
	font-size:11px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:95px;
	width:95px;
}
.items-img {
height:95px;
width:95px;
padding:5px 0;
}
.items-text {
text-align:left;
padding:5px 0;
}
.items-text a {
color:#FFFFFF;
}
.items-text a:hover {
color:#BBAB69;
}


.items h3 {
	padding:5px 0;
	color:#fff;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:120px;
	margin:0 0 10px 0;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#BBAB69;
}

#actions a:hover {
	text-decoration:underline;
	color:#BBAB69;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


