/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 550px;
	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:5px;
	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-size:9px;
	/* font-weight:bold; */
	padding:2px 0px 2px 0px;
	width:65px;
	float:left;
}
.items div a:hover {
	text-decoration:underline;
}
.items div a.readMore {
		/*background-image:url(../images/readmore.png); */
	margin-top: 3px;
	margin-left:20px;
	margin-right:58px;
	color:#00F
}
.items div a.showMap {
	/* background-image:url(../images/showmap.png); */
	margin-top: 3px;
	color:#F03
}
.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:5px 0;
	border-bottom:1px solid #ddd;	
}

#actions a {
	font-size:10px;		
	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;
}

