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

	/* vertical scrollers have typically larger height than width */	
	height: 665px;	 
	width: 700px;
	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:10px 0;
	padding:15px;
	font-size:12px;
	height:80px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:75px;
	width:100px;
}

#pic { 	float:left;
		margin-right:20px;
		height:55px;
		width:100px;
		}

.items h1 {
	font-size:13px;
	font-weight:bold;
	margin: 0;
	padding: 0;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

.items p {
	margin: 0;
	padding: 0;
	font-size:12px;
	color:#456;
	font-weight:normal;
}

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

#actions a {
	font-size:13px;		
	font-weight: bold;
	cursor:pointer;
	color:#666;
}
#actions img {
	margin-bottom: -7px;
}

#actions a:hover {
	color:#ccc;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

