/* root element for scrollable */
.vertical {  
	
	/* required settings */
	position:relative;
	overflow:hidden;	

	/* vertical scrollers have typically larger height than width */	
	height: 600px;	 
	width: 232px;
}

/* root element for scrollable items */
.items {
	position:absolute;
	/* this time we have very large space for height */	
	height:20000em;
	margin: 0px;
	width: 230px;
}

/* single scrollable item */
.items div {
	border-bottom:1px solid #ddd;
	margin:5px 0;
	padding:8px;
	font-size:11px;
	height:auto;
	width: 210px;
}

/* elements inside single item */
.items img {
	float:left;
	margin-right:20px;
	height:180px;
	width:240px;
}
.items div a {
	color:#456;
	display:block;
	background:no-repeat center left;
	text-decoration:none;
	font-weight:bold;
	padding:7px 0px 7px 22px;
	width:65px;
	float:left;
}
.items div a:hover {
	text-decoration:underline;
}
.items div a.readMore {
	background-image:url(../images/readmore.png);
	margin-right:20px;
}
.items div a.showMap {
	background-image:url(../images/showmap.png);
}
.items div .clearfix {
	height:1px;
	float:none;
	margin:0;
	padding:0;
	border:none;
}

.items h3 {
	margin:0 0 5px 0;
	font-size:12px;
	color:#456;
	font-weight:normal;
}

/* the action buttons above the scrollable */
#actions {
	width:230;
	padding:10px 0;
	border-bottom:1px solid #ddd;	
}

#actions a {
	font-size:11px;		
	cursor:pointer;
	color:#666;
	display:block;
	font-weight:bold;
}

#actions a:hover {
	text-decoration:underline;
	color:#000;
}

.disabled {
	visibility:hidden;		
}

.nextPage {
	float:right;
	background:url(../images/next_group_home.png) no-repeat center right;
	padding-right:12px;
	margin-right:5px;
}
.prevPage {
	float:left;
	background:url(../images/prev_group_home.png) no-repeat center left;
	padding-left:12px;
	margin-left:5px;
}
#actions clearfix {
	height:1px;
	float:none;
}
