/* root element for scrollable */
.vertical {
	/* required settings */
	position:relative;
	overflow:hidden;
	/* vertical scrollers have typically larger height than width */	
	height: 665px;
	width: 750px;
	margin: 0px auto;
}

/* root element for scrollable items */
.items {	
	position:absolute;
	
	/* this time we have very large space for height */	
	height:20000em;	
	margin: 0px;
}

/* single scrollable item */
.items div {
	margin:15px 0;
	padding:10px;
	font-size:12px;
	/* height:500px; */
}

/* elements inside single item */
.items img {
/*		float:left;
margin-right:20px;
	height:460px;
	width:324px; */
}

.items h3 {
	margin:0 0 5px 0;
	font-size:16px;
	color:#456;
	font-family: Tahoma, Geneva, sans-serif;
}

/* the action buttons above the scrollable */
#actions {
	width:700px;
	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;		
}
.scrollableBottomBorder {
	border-bottom: 1px solid #ccc;
	padding-bottom:5px;
	width: 750px;
	margin: 0px auto;
}
.scrollableTopBorder {
	border-top: 1px solid #ccc;
	padding-top:5px;
	width: 750px;
	margin: 0px auto;
}
.scrollable.vertical .items div .regionMaps {
	height: 460px;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
	text-align: center;
}
.scrollable.vertical .items div .stateLinks {
	height: auto;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

