/* The horizonal width is determined by setting the width of the #menu div itself. The #menu div is also floated in order to "contain" it's floated descendants */
#menu
{
	width: 100%;	/* set width of menu */
	background: #eee;
	float: left;
}

/* Set the width onto the individual lists, <ul>'s, make them float side by side to make them fit into whatever horizontal space is available to them. */
#menu ul
{
	list-style: none;	/* remove bullets and list indents */
	margin: 0;
	padding: 0;
	/*BGalbraith 11/8/05 moved to IEcssFix.inc for cross browser fix*/
	/*width: 50px;*/
	float: left;
}

#menu ul .Level2
{
	list-style: none;	/* remove bullets and list indents */
	margin: 0;
	padding: 0;
	width: 150px;
	float: left;
}

/* [Next 6] Apply the formatting to the <a> anchors on Level1 and Level2. */
#menu .Level1 a
{
	font: bold 12px arial, helvetica, sans-serif;
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
	margin: 0;
	padding: 2px 8px;
}

#menu .Level2 a
{
	font: bold 11px arial, helvetica, sans-serif;
	display: block;
	border-width: 1px;
	border-style: solid;
	border-color: #ccc #888 #555 #bbb;
	margin: 0;
	padding: 2px 3px;
}

#menu .Level1 a
{
	color: #fff;
	background: #000;
	text-transform: uppercase;
	text-decoration: none;
}

#menu .Level2 a
{
	color: #000;
	background: #efefef;
	text-transform: none;
	text-decoration: none;
}

/*
#menu .Level1 a:hover
{
	color: #a00;
	background: #fff;
}
*/

#menu .Level2 a:hover
{
	color: #a00;
	background: #fff;
}

/* [Next 3] Positioning the popout menus and dropdown menus */
#menu li
{
	position: relative;	/* The position: relative on the <li> element establish containing blocks for the descendant <ul> elements */
}

#menu ul ul
{
	position: absolute;	/* All secondary levels and deeper are given position: aboslute; and a high z-index in order to make them appear, drop down above following content. */
	z-index: 500;
}

#menu ul ul ul
{
	position: absolute;
	top: 0;	/* The third level and deeper lists are the ones we want to move so "offset" positioning coordinates only required to be input onto them. */
	left: 100%;
}

/* [Next 2] Hiding and revealing using :hover (Note: Does not work with IE.  IE fix requires using .htc behavior and additional styles in page header) */
div#menu ul ul,
div#menu ul li:hover ul ul,
div#menu ul ul li:hover ul ul,
div#menu ul ul ul li:hover ul ul	/* line added by BGalbraith for fourth level */
{
	display: none;	
}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul,
div#menu ul ul ul ul li:hover ul	/* line added by BGalbraith for fourth level */
{
	display: block;
}