﻿/* root element for scrollable */
.vertical {  
	/* required settings */
	position:relative;
	overflow:hidden;	
	/* vertical scrollers have typically larger height than width */		 
	min-height:300px;
	/*border:solid 1px blue;*/
}

/* root element for scrollable items */
.items {	
	position:absolute;
	float:left;
	min-height:100%;
	width: 200px;
	/* this time we have very large space for height */	
	margin: 0px 0px 0px 40px;
	/*border:solid 1px red;*/
}

/* single scrollable item */
.items div 
{
	float:left;
	font-size:12px;
	height: 100px;
	width:200px;
}
/* the action buttons above the scrollable */
#actions {
	text-align:center;
	width:width: 34.5%;
	/*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 {

}	
