/* root element for scrollable */
.boxcontent .vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 300px;	 
	width: 208px;
	/*border-top:1px solid #ddd;	*/
	background: #000;
	text-align: left;
}

/* root element for scrollable items */
.boxcontent .items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
	
}

/* single scrollable item */
.boxcontent .items div {
border-bottom:1px solid #333;
	/*
	margin:10px 0;
	padding:15px;
	*/
	padding: 7px 10px 7px 15px;
	font-size:12px;
	line-height: normal;
	/*height:34px; /* 40 */
	
	
}
.boxcontent .items div h3, .items p {
	margin: 0;
	padding: 0;
	
	}

/* elements inside single item */


/* the action buttons above the scrollable */
.boxcontent #actions {
	
	/*
	width:700px;
	margin:30px 0 10px 0;
	*/	
	margin: 0 5px;
	height: 20px;
}

.boxcontent #actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

.boxcontent #actions a:hover {
	
	color:#fff;
}

.boxcontent .disabled {
	visibility:hidden;		
}

.boxcontent .nextPage {
	float:right;
}	

