/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 246px;	 
	width: 946px;
	/* border-top:1px solid #ddd;	*/
}

/* root element for scrollable items */
.items {	
position:absolute;
/* this time we have very large space for height */
height:2000em;
margin: 0px;
} 


/* single scrollable item */
.items div.slider {
	/* border-bottom:1px solid #ddd; */
	margin:0;
	padding:12px 400px 12px 24px;
	font-size:12px;
	height:222px;
	position:relative;
}
.slidermenu {
	position: absolute;
	left: 25px;
	bottom: 6px;
	height:28px;
	width:62px;
	text-align: right;
}

.slidermenu img {
	padding:0 3px;
	cursor:pointer;
}

/* elements inside single item


/* 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;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

