#nav {
	position:absolute;
	left:150px;
	height:84px;
	top:0px;
	z-index:99999;
}
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
#nav a {
	display: block;
	width: 220px;
	height:33px;
	color:#FFFFFF;
	text-decoration:none;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
}
#nav li { /* all list items */
	float: left;
	width: 220px; /* width needed or else Opera goes nuts */
}
#nav li ul { /* second-level lists */
	position: absolute;
	width: 220px;
	height:33px;
	margin-top:39px; /* Need to update this for IE */
	/*top:80px; /* Need to update this for IE */
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav li ul li {
	background-image:url(../assets/dropdown_bg.png);
	background-repeat:no-repeat;
	text-align:center;
	line-height:26px;
	padding:0;
	margin:0;
}
#nav li ul li a:hover {
	background-image:url(../assets/dropdown_bg_hover.png);
	background-repeat:no-repeat;
}
#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;
	margin-left:6px;
	background-image:none;
}
#nav li:hover ul li ul li {
	position:absolute;
	left:214px;
	margin-top:-105px;
	height:104px;
	text-align:left;
	background-image:none;
}
.flyout {
	padding-left:5px;
	padding-right:5px;
	padding-top:17px;
	padding-bottom:17px;
	color:#FFFFFF;
	font-size:11px;
	line-height:13px;
	background-image:url(../assets/flyout_bg.png);
	background-repeat:repeat;
}
.flyout p {
	margin:0;
	padding:0;
	margin-bottom:10px;
}
.flyoutImage {
	width:92px;
}
.flyoutCopy {
	width:118px;
}