/* root element for scrollable */
.vertical {  
    overflow:hidden;	
    height: 75px;	 
    width: 260px;
    clear: both;
    float: left;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	margin: 0px 0px 0px 15px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	/*margin:10px 0;
	padding:15px;*/
	font-size:12px;
	/*height:180px;*/
}

/* elements inside single item */
.items img {
	float:right;
	margin-right:7px;
	height:14px;
	width:14px;
}

.items h3 {
	margin:0 0 0px 0;
	font-size:12px;
	color:#456;
	font-weight:normal;
	padding:2px 0;
	float:left;
}

/* the action buttons above the scrollable */
#actions {
margin:0px 0 5px 15px;
width:205px;
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


