@charset "utf-8";
#nav, #nav ul { /* all lists */
	list-style: none;
	line-height: 1;
	margin: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0;

}
.subMenuSizing {
	font-size: 0.7em;
	line-height: 120%;
}
.mainMenuSizing {
	font-size: 1.5em;
}


#nav a {
	display: block;
	width: 120px;
	text-decoration: none;
}

#nav li { /* all list items. Use this to adjust space between menu items with padding*/
	float: left;
	width: 120px;
	padding-top: 5px;
	padding-bottom: 5px;

}

#nav li ul { /* second-level lists 
Note, this requires a background colour to allow it to be selected in IE7*/
	position: absolute;
	width: 150px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 5px;

}

#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
	font-size: small;
	font-weight: normal;
}

#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
} 

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
#dropDownMenu      {
	padding-left: 130px;
	margin-bottom: 50px;
}
#MenuSpacer {
	height: 20px;
}

/* Fix for IE7's Stuck 'suckerfish' bug*/
#nav li:hover, #menu li.hover {
    position: static;
}
