/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 665px;
	width: 700px;
}
.scrollable a, .actions a {
	cursor: pointer;
}


/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:auto;
	margin: 0px;
	width: 700px;
}

/* single scrollable item */
.items div {
	padding:15px;
	font-size:12px;
	border-bottom: solid 1px #ddd;
	
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}

.items h3 {
	margin:0 0 10px 0;
	font-size:16px;
	color:#456;
	font-weight:bold;
}
/* the action buttons above the scrollable */
.actions {
	width:700px;
	margin:0px auto 10px auto;
}
.actions a {
	font-size:11px;
	color:#666;
	text-decoration: none;
}
.actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
}	
.scrollable.vertical .items div p {
	margin-bottom: 10px;
	margin-top: 0px;
}
.scrollableBottomBorder {
	border-bottom: 1px solid #ccc;
	padding-bottom:5px;
}
.scrollableTopBorder {
	border-top: 1px solid #ccc;
	padding-top:5px;
}.scrollable.vertical .items div a.nextGroup {
	width: 65px;
	display: block;
	text-align: right;
	background-image: url(../images/next_group.png);
	background-repeat: no-repeat;
	background-position: right center;
	padding:6px 18px 6px 0px;
	font-weight: bold;
}
.scrollable.vertical .items div a.showMap {
	background:url(../images/showmap.png) no-repeat left center;
	font-weight: bold;
	float: none;
	width: 65px;
	padding:6px 0px 6px 20px;
	display: block;
}
.scrollable.vertical .items div .clearfix {
	float: none;
	height: 1px;
	margin: 0px;
	padding: 0px;
	border: none;
}
