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

	/* vertical scrollers have typically larger height than width */	
	height: 605px;	 
	width: 300px;
	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;
}

/* single scrollable item */
.items div a{
    display:block;
	background-color:#4D4B4C;
	padding:5px 5px 0px;
	height:95px;
	width:300px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:11px;
	border:1px outset #D0D0D0;		
	text-decoration:none;
	letter-spacing: 0px;
	color:#D0D0D0;

	
}


/* elements inside single item */
.items img {
	float:left;
	margin-right:8px;
	height:60px;
	width:84px;
}

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

/* the action buttons above the scrollable */
#actions {
	width:300px;
	margin:15px 0 3px 0;	
}

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

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

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

