/* CSS Document */
body
{
	behavior:url(csshover.htc); /* Used to support the hover event on any element in Internet Explorer */
	/* This is root relative I assume, so the csshover.htc file has to be in the every directory that has a web page that wants to use the hover event in Internet Explorer */
}

#menu ul
{
	margin:4px 0px 0px 0px;
	padding:0px;
	float:right;
}




/*--- Primary Navigation Link Containers ---*/
#menu ul li
{
	float:left;
	position: relative; 
	list-style-type: none;
}

/*--- Primary Navigation Link Containers (mouseover) ---*/
#menu ul li:hover
{
	background-color:#a6aa99; 
}

/*--- Primary Navigation Links ---*/
#menu ul li a:link,
#menu ul li a:visited,
#menu ul li a:active
{
	color:#ffffff;
	text-decoration:none;
	display:block;
	margin:8px 10px; /*--- Give individual links horizontal spacing ---*/
}

/*--- Primary Navigation Links (mouseover) ---*/
#menu ul li a:hover
{
	color:#4e5634;
}


/*--- Drop Down Navigation Menu Containers ---*/
#menu ul li ul
{
	display:none;
	margin:0px;
	padding:0px;
	position:absolute;
	background-color:#a6aa99; /*--- Set the background color of the Drop Down Navigation Menu Container ---*/
}

/*--- Drop Down Navigation Menu Containers (mouseover) ---*/
#menu ul li:hover ul
{
	display: block;
}




/*--- Drop Down Navigation Link Containers ---*/
#menu ul li ul li
{
	clear:both;
	background-color:#a6aa99; /*--- Set a background color for each Drop Down Navigation Link Container - If this is not set, IE 7 wraps the links ---*/
	display:block;
}



/*--- Drop Down Navigation Link Containers (mouseover) ---*/
#menu ul li ul li:hover
{
	background-color:#a6aa99;
}

/*--- Drop Down Navigation Links ---*/
#menu ul li ul li a:link,
#menu ul li ul li a:visited,
#menu ul li ul li a:active
{
	font-size: 12px;
	color:#FFFFFF;
	display:block;
	width:12em; /*--- This fixes the issue with the links and li's not filling the entire ul area ---*/
	margin-top: 2px;
	margin-bottom: 4px;
}

/*--- Drop Down Navigation Links (mouseover) ---*/
#menu ul li ul li a:hover
{
	display:block;
	color:#4e5634;
}


