#mainnavWrapper {
	margin: 0px auto;
	padding: 0px;
	width: 960px;
	position: relative;
	z-index: 400;
}
/* 
The first selector sets the top-level ul and applies to all the dropdown ULs as well.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
If desired, we could set a font-family different from the global font-family declared for the
body element. 
*/
#mainnav, #mainnav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

/* 
The following selectors control the top-level links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. If font-size or color is set here, it will apply to all menu levels.
*/
#mainnav a {
	color: #FFFFFF;
    display: block;
    margin: 6px 6px 0;
    padding: 9px 6px;
    text-decoration: none;
}

#mainnav a:hover { 
	background-color: #aa0000;
}
	
/*
Sets the properties of the top-level link that is currently loaded. OPTIONAL!
*/
#mainnav a.current  {
	background-color: #aa0000;
}
	
/*
Class assigned to those top-level links that have associated dropdowns.
The top and bottom padding assigned this element must be the same as
that assigned to the "mainnav a" element above. 
*/
#mainnav a.trigger {
	padding: 9px 6px;
}

/*
Sets the properties of the top-level list items. 
Floating left allows them to appear horizontally. Width is for IE5 Mac. 
The last rule in this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#mainnav li {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	text-transform: uppercase;
	float: left;
	padding: 0px;
	margin: 0px;
	background: none;
	width: 9em;	
}

/*
Sets the properties of the dropdown links. 
Keeping the padding the same throughout should eliminate any blinking issues on ie.
*/
#mainnav ul li a, #mainnav ul li a.current  {
	color: #FFFFFF;
	text-align:left;
	background-color: #aa0000;
	padding: 1px 10px;
	margin: 0px;
}

/*
Sets width for dropdown box and the links inside - in proportional em units. 
This allows the dropdown width to expand if users resize the text in their browsers.
*/
#mainnav li ul, #mainnav ul li  {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-transform: none;
	width: 16em;
}
/*
Sets the properties of each dropdown box.
Positioned Absolutely to allow them to appear below their root trigger. 
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
*/
#mainnav li ul {
	position: absolute;
	display: none;
	background-color: #aa0000;
	z-index:100;
	padding: 4px;
	margin: 0px 0px 0px 12px;
}
/*
The first selector sets the top-level link hover display when the dropdowns below it are highlighted.
The second selector sets properties when top-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.p7hvr a {
	color: #FFFFFF;
	background-color: #aa0000;
}

/*
The first selector sets the dropdown to be visible when its associated
top-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.p7hvr ul {
	display: block;
}

/*
The first selector sets the text color of the dropdown links when the top-level
menu items are moused over. The second selector is assigned to IE5 and IE6 via 
the P7_ExpMenu script. The color should match the normal dropdown link color
in the rule: #mainnav ul li a. The background color must be
transparent if any background needs to show through from the UL .
*/
#mainnav li:hover ul a, #mainnav li.p7hvr ul a {
	color: #FFFFFF;
}

/*
Sets the normal hover state for dropdown 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: #ca0902!important;
	color: #FFFFFF!important;
	padding: 1px 10px;
	margin: 0px;
}

/*
Clears the floated menu items.
Assigned to a BR tag placed just after the main nav closing ul.
*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}

/*
The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. 
*/
#mainnav li {
	width: auto;
}
/*
Turns off the li within the dropdown.
*/
#mainnav ul li li {display:none; padding: 0;}
#mainnav li ul li ul {display:none; padding: 0;}