#menu {
	position: relative;
	height: 25px;
	background-color: #366;
	text-align: center;
	margin-top: 0;
	margin-left: 167px;
	border-top: none;
	border-color: white;
	border-width: 2px;
	z-index: 1000;
}
#nav {
	width: 810px;
	margin: auto;
}
#nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: left;
	/*line-height: 1;*/
}
#nav a {
	display: block;
	width: 93px;	
	text-decoration: none;
	text-align: center;
	padding: 5px 0;
	color: #FFF;
	outline: none;
	font-weight: normal;
}
#nav a:hover {
	background-color: #a2bdbc;
	color: #366;
	height: 15px;
}
#nav li { /* all list items */
	float: left; /*Only use float for horizontal menus*/
	width: 93px; /* width needed or else Opera goes nuts */
	/*border: solid;
	border-width: 1px;
	border-color: #ed1c24;*/
}
#nav li.wide {
	width: 156px;
}
#nav li.wide a {
	width: 156px;
}

#nav ul li ul { /* second-level lists */
	position: absolute;
	background-color: white;
	width: 130px;
	margin-left: -1px;
	left: -999px; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
#nav ul li ul li {
	width: 130px;
	*width: 127px;
	border-top: solid;
	border-bottom: solid;
	border-left: solid;
	border-right: solid;
	border-width: 1px;
	border-color: #9d9fa1;
}
.sub {
	float: right;
	padding-right: 5px;
}
#nav ul li ul li a {
	width: 125px;
	color: #ed1c24;
	text-align: left;
	padding-left: 5px;
}
#nav li ul li a:hover {
	color: white;
	background-color: #971b1e;
}
#nav li ul ul { /* third-and-above-level lists*/
	margin: -28px 0 0 129px;
	*margin: -28px 0 0 125px;
}
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999px;
}

#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;
}
body.flori-home a.navFlori-Home,
body.newsletter a.navNewsletter,
body.archives a.navArchives,
body.nfga a.navNfga,
body.auction a.navAuction,
body.contactus a.navContactus {
	color: #366 !important;
	background-color: #a2bdbc;
	height: 15px;
}