/*
Container for the menu. 
*/
#mainnavWrapper {
	float: left;
	width: 703px;
	margin-left: 20px;
	margin-top: 12px;
	z-index: 400;
}
* html #mainnavWrapper {
	margin-left: 10px;
	width: 680px;
}
/*
The 1st selector is the Top-Level UL and 2nd ul applies to all the Dropdown ULs.
Sset padding and margin to zero to eliminate all indentation and turn bullets off.
Can also set the font for the menu here. Do not add a font-size here.
*/
#mainnav, #mainnav ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
/*
Top-Level Links. Adjust padding values to make the Top-Level links taller
and to offset them from the left and right edges of the link box.
A border right creates a separator between links.
Font-size is set here and will apply to all menu levels.
*/
#mainnav a {
	font: 13px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #adad93;
	display: block;
	height: 24px;
	padding: 0 6px 0 5px;
	text-decoration: none;
}
* html #mainnav a {
	font: 13px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #adad93;
	display: block;
	height: 24px;
	padding: 0 6px 0 5px;
	text-decoration: none;
	text-align: center;
}
#mainnav a:hover { 
	font: 13px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #FFF;
	display: block;
	height: 24px;
	padding: 0 6px 0 5px;
	background: url(/SiteFiles/1118/Images/main-nav-right.gif) no-repeat 100% 0;
	text-decoration: none;
}
* html #mainnav a:hover {
	font: 13px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #FFF;
	display: block;
	height: 24px;
	padding: 0 6px 0 5px;
	background: url(/SiteFiles/1118/Images/main-nav-ie.gif) no-repeat 100% 0;
	text-decoration: none;
	text-align: center;
}
/*
Sets the properties of the Top-Level link that is currently loaded. OPTIONAL!
*/
#mainnav a.current  {
}
/*
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. If using a background image with
an arrow, increase the padding.
*/
#mainnav a.trigger {
	padding: 0 6px 0 5px;
}
/*
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 Top-Level menu items, you will
need to test this width to ensure it is wide enough to accomodate all text.
*/
#mainnav li {
	float: left;
	padding-left: 2px;
	background: none;
	width: 9em;
}
* html #mainnav li {
	width: 90px;
}
#mainnav li:hover,
#mainnav li.hover{
	background: url(/SiteFiles/1118/Images/main-nav-left.gif) no-repeat;
}
* html #mainnav li:hover,
* html #mainnav li.hover{
	background: url(/SiteFiles/1118/Images/main-nav-ie.gif) no-repeat;
}
/*
Sets width for Dropdown box and the List Items 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  {
	width: 16em;
}
/*
The Dropdown links. Set color and turn off styles that would be inherited
from the Top-Level links. Set top and bottom padding less than the Top-Level items
and increase the left padding to indent the sub-menu links a small amount
in from the Top-Level links.
*/
#mainnav ul li a   {
	padding: 0 6px 0 5px;
	border-bottom: 1px solid #dadad8;
	background: #fff;
	color: #adad93;
	text-align:left;
	height: 24px;
}
* html #mainnav ul li a:hover   {
	text-align:left;
}
/*
Dropdown link that is currently loaded.
*/
#mainnav ul li a.current  {
}
/*
Turns off the li within the Dropdown.
*/
#mainnav ul li li  {display:none;}
/*
Dropdown UL describes each dropdown sub-menu grouping. 
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: #fff;
	z-index:300;
}
#mainnav ul li:hover,
#mainnav ul li.hover{
	background: #EFEFE6;
}
/*
Changes the Text color and background color when the Top-Level
menu items are moused over. The second selector sets color and background
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:#fff;
	background: url(/SiteFiles/1118/Images/main-nav-right.gif) no-repeat 100% 0;
}
* html #mainnav li:hover a, * html #mainnav a:focus, * html #mainnav a:active, * html #mainnav li.p7hvr a {
	color:#fff;
	background: url(/SiteFiles/1118/Images/main-nav-ie.gif) no-repeat;
}
/*
Set the Dropdown UL 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;
}
/*
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 set should match the normal Dropdown link color
in the rule: #mainnav 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.p7hvr ul a {
	font: 11px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #adad93;
	background: #fff;
}
/*
The normal hover class for Dropdown links. The Important directive
is required for older browsers. Set a background color.
*/
#mainnav ul a:hover {
	font: 11px/24px "Lucida Sans Unicode", "Lucida Grande";
	color: #adad93 !important;
	background: #EFEFE6 !important;
	padding: 0 6px 0 5px;
}
/*
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;
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before the
wrapper's closing DIV tag*/
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}