/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 56px;	 
	width: 500px;
	/*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 {
	/*border-bottom:1px solid #ddd;*/
	margin:5px 0 5px 0 ;
	padding:0px;
	/*font-size:12px;*/
	height:50px;
}

elements inside single item 
.items img {
	float:left;
	margin-right:0px;
	height:1px;
	width:1px;
}


.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

.items p {

margin:0px 0 0px 0;
font-size:11px;
line-height:13px; 
color: #333333;
font-family: Arial, Helvetica, sans-serif;
text-decoration:none;
}

.items a {

text-decoration:none;
}


/* the action buttons above the scrollable */
#actions {
float:right;
	width:130px;
	margin:0px 0 0px 0;	
	text-decoration:none;
}

#actions a {
font-size:11px;


font-family: Arial, Helvetica, sans-serif;
	font-size:9px;		
	cursor:pointer;
	text-decoration:none;
	color:#666;
}

#actions a:hover {
	text-decoration:none;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	/*float:right;*/
}	

