@charset "utf-8";
/* CSS Document */
/* root element for scrollable */
.vertical {
	/* required settings */
	position:absolute;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 375px;
	width: 220px;
	border-top:1px solid #cc6633;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:375px;
	margin: 0px;
	left: 30px;
	top: 3px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #cc6633;
	margin:0px;
	padding:10px 0px 0px 0px;
	font-size:14px;
	height:375px;
}

/* elements inside single item */
.items img {
	float:right;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:220px;
	margin:0px 0 0px 0;
}

#actions a {
	font-size:14px;
	cursor:pointer;
	color:#cc6633;
}

#actions a:hover {
	text-decoration:none;
	color:#993300;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	

