/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 665px;	 
	width:570px;
	border-top:1px solid #BABABA;	
}

/* 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 #BABABA;
	margin:10px 0;
	padding:15px;
	font-size:13px;
	height:180px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
  margin:0px 0px 5px 0px;
  padding:0px;
  font-family:Arial, sans-serif;
  color:#000000;
}

/* the action buttons above the scrollable */
#actions {
    background-color:#E7E7E7;
	width:550px;
	margin:0px;	
	padding:10px;
}

#actions a {		
  cursor:pointer;
  color:#666;
  font-family:Arial, sans-serif;
  font-size:13px;
  font-weight:bold;
  margin:0px;
  padding:0px;
  text-decoration:none;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	




