/* 
	Sun Of Suckerfish Horizontal Drop Down Menu
	http://www.htmldog.com/articles/suckerfish/dropdowns/
 */
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
	display: block;
}

#nav li { /* all list items */
	float: left;
	position: relative;
	 /* width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	margin: 24px 0 2px 4px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */

}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: 0px;
}

#nav li:hover, #nav li.hover {

}

.button {
	background: #528D0C;
	width: 10em;
	padding: 6px 0 6px 6px;
}

.button a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.button a:hover {
	text-decoration: underline;
}

.comm-svcs-button {
	background: #528D0C;
	width: 12em;
	padding: 6px 0 6px 6px;
}

.comm-svcs-button a {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.comm-svcs-button a:hover {
	text-decoration: underline;
}