/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 365px;	 
	width: 450px;
	border-top:0px solid #F1DECD;	
}

/* 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:0px solid #F1DECD;
	margin:10px 0;
	padding:15px;
	/*font-size:10px;*/
	height:380px;
	
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	/*color: #E8C9AC;*/
	color:#F1DECD;
	font-weight: normal;
	line-height: 18px;
	text-align:justify;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:10px;
	margin-bottom:10px;
	height:124px;
	width:177px;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:450px;
	margin:0px 0 0px 0;	
	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#F1DECD;
}

#actions a:hover {
	text-decoration:underline;
	color:#F1DECD;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	


