/*Clears the floated menu items.
Assigned to a BR tag placed at the end of the UL tag*/
.clearit {
	clear			: both;
	height			: 0;
	line-height		: 0.0;
	font-size		: 0;
}
/*
Nav is the root UL and Nav ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#Nav, #Nav ul
{
	padding				: 0;
	margin				: 0;
	list-style			: none;
	font-family			: Helvetica, Verdana, sans-serif;
	font-weight			: bold;
	text-transform		: uppercase;
	display				: inline;
}
/*
Root-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. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#Nav a
{
	display				: block;
	text-decoration		: none;
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the Nav a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#Nav li:hover, #Nav li.over
{
	background			: url(images/nav_bg_highlight.png) top repeat-x;
}
/*
The Root-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.
*/
#Nav li
{
	display				: block;
	float				: left;
	width				: 11em;
	font-size			: 14px;
	position			: relative;
}

#Nav li a
{
	padding				: 17px 20px 5px 20px;
}
	/*
	Sub-Menu
	
	Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
	This allows the sub-menu width to expand if users resize the text in their browsers.
	*/
	#Nav li ul, #Nav ul li
	{
		width				: 11em;
		padding-left		: 0;
	}
	/*
	The sub-menu links. We set color and turn off the right border, which
	would otherwise be inherited from the root link rule. We set top and 
	bottom padding less than the root items and increas the left padding
	to indent the sub-menu links a small amount in from the root links.
	*/
	#Nav ul li a
	{
		color				: #FFFFFF;
	}
	
	#Nav ul li a:hover
	{
		text-decoration		: underline;
	}
	/*
	Sub-Menu Unordered Lists 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.
	*/
	#Nav li ul
	{
		position			: absolute;
		display				: none;
		left				: 0px;
		margin-left			: 0;
		overflow			: visible;
		padding				: 10px 10px 5px 10px;
		font-size			: 14px;

			background-color	: #000;
			border-right		: 1px solid #FFF;
			border-left			: 1px solid #FFF;
			border-bottom		: 1px solid #FFF;

		z-index				: 9999;
	}
	
	#Nav li li
	{
		font-size			: 14px;
		text-transform		: lowercase;
	}

	#Nav li li a
	{
		padding: 5px 0 5px 0;
	}
	/*
	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.
	*/
	#Nav li li:hover a, #Nav li a:focus,
	#Nav li li:Hover, #Nav li li.over,
	#Nav li a:active, #Nav li li.over a
	{
		color				: #FFFFFF;
	}
	/*
	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.
	*/
	#Nav li:hover ul, #Nav li.over ul
	{
		display				: block;
		background-image	: none;
	}

	#Nav li li:hover, #Nav li li.over
	{
		display				: block;
		background-image	: none;
	}
	/*
	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: #Nav ul li a. The background color must be
	transparent to allow the underlying gradient background on the UL
	to show through.
	*/
	#Nav li:hover ul a, #Nav li.over ul a
	{
		background-image	: none;
		color				: #FFFFFF;
	}
	/* 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. */
	#Nav li
	{
		width				: auto;
	}