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

	/* vertical scrollers have typically larger height than width */	
	height: 470px;	 
	width: 600px;
	border-top: 1px solid #EEEEEE;	
}

/* root element for scrollable items */
.items {	
	position: absolute;
	
	/* this time we have very large space for height */	
	height: 20000em;	
	margin: 0px;
}

* html .items {
   margin-left: -300px;
}

/* ganzer scrollbarer bereich */
.items div {
	border-bottom: 1px solid #EEEEEE;
	margin: 0px;
	padding: 15px;
	height: 180px;
}

/* einzelne elemente im scrollbaren bereich */
.items img {
	float: left;
	margin-right: 25px;
	height: 180px;
	width: 240px;
}

/* buttons/links über dem scrollbaren bereich */
#actions {
    text-align: left;
	width: 560px;
	margin: 10px 20px 10px 20px;	
	}

#actions a {
    font-family: lucida sans unicode,lucida grande,geneva,verdana,helvetica,arial,sans-serif;
	font-size: 9px;	
	cursor: pointer;
	text-decoration: none;
	color: #666666;
	}

#actions a:hover {
    font-family: lucida sans unicode,lucida grande,geneva,verdana,helvetica,arial,sans-serif;
	text-decoration: none;
	color: #CC6600;
	}

.disabled {
	visibility: hidden;		
	}

.nextPage {
	float: right;
	}
