/* root element for scrollable */
.vertical {  
	
	/* required settings */
	background-color: #888; position:relative; overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 800px; width: 200px;
/*	border: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 */
.item { margin: 5px 0; font-size:12px; background-color: #3b3b31; height: 150px; padding-top: 5px; padding-bottom: 5px; border-top: 1px solid #757575; border-bottom: 1px solid #757575;
/*	background-color: #CF0;
*/}

/* elements inside single item */
.item img {
/*	float:left;
	margin-right:20px;
*/	max-height:150px;
	max-width:200px;
}
/* IE6 fix */
* html .item img {
	height: 200px;
	height: 150px;
}

.item h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

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

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}



.next {
/*	float:right;
*/}	
