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

	/* vertical scrollers have typically larger height than width */	
	height: 1600px;	 
	width: 350px;
	border-top:1px solid #ddd;
	margin-bottom:10px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;
	width:350px;
	margin: 0px;
	background-color:#ffffff;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:5px 0 5px 0;
	padding:0 0 0 0;
}


.items h3 {
	margin:0 0 2px 0;
	padding:0 0 0 5px ;
	font-size:12px;
	color:#333333;
	font-weight:bold;
	line-height:1.2em;

}

.items h4 {
	margin:0 0 5px 0;
	padding:0 0 0 5px ;
	font-size:11px;
	color:#999999;
	line-height:1.2em;

}

.items h5 {
	margin:0 0 0 0;
	padding:2px 0 2px 0 ;
	font-size:11px;
	color:#0088cc;
}

.items p {
	margin:0 0 0 0;
	padding:0 0 0 5px ;
	font-size:12px;
	color:#333333;
	font-weight:normal;
	line-height:1.3em;
}


.items hr {
clear:left;
visibility:hidden;
height:0;
margin:0;
border:none;
}

.items img {
width:120px;
height:100px;
float:left;
margin:0 5px 5px 0 ;
background-color:#ffffff;
}
 

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

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

#actions a:hover {
text-decoration:none;
color:#990000;

}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
