#mainnav, #mainnav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}

#nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #4E0301;
	/*width: 100%; 760px;*/
	clear: none;
	text-align: left;
	height: 31px;
	float: left;
}

/*Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#mainnav li:hover a, #mainnav a:focus,
#mainnav a:active, #mainnav li.over a {
	color: #FFFFFF;
	background-color: #FB7F02;
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#mainnav li:hover ul, #mainnav li.over ul {
	display: block;
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#mainnav li:hover ul a, #mainnav li.over ul a {
	color: #FFFFFF;
	background-color: #FB7F02;
	border-bottom: 1px solid #ffffff;
	margin: -1px 0 0 0;
	font-size: 10px;
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#mainnav ul a:hover {
	background-color: #FD942B!important;
	color: #FFFFFF!important;
	border-bottom: 1px solid #ffffff;
}
#mainnav li {
	display: inline;
	float: left;
	list-style-type: none;
}
#mainnav li ul, #mainnav ul li  {
}
#mainnav li ul a, #mainnav ul li a {
	border-style: none;
	text-align: left;

}
#mainnav ul li a  {
	color: #FFFFFF;
	border-right: 0;
	padding: 8px 0 8px 6px;
	width: 175px;
	border-bottom: 1px solid #ffffff;
}
#mainnav li ul {
	position: absolute;
	display: none;
	background-color: #FD9D3E;
	z-index: 100;
	border-bottom: 1px solid #ffffff;
	height: 100%;
}
#mainnav a {
	display: block;
	margin: 0;
	padding: 9px 12px;
	text-decoration: none;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

