/* CSS Document */
/* menu css */
.neonmenu { font: bold 12px sans-serif; }

ul#primary-nav,
ul#primary-nav ul {
	width: 160px; 
	margin: 0;
	padding: 0;
	background-color: #006634; /* was #D4DEC3; #ccc IE6 Bug */ /* RED  menu background color */
	font-size: 100%;
	}
	
ul#primary-nav {
	float: left;
	width: 800px;
	}
	
ul#primary-nav:after {
	content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	}

ul#primary-nav li {
	/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006634;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #006634;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006634 / * #3300CC * /
	*/
	position: relative;
	list-style: none;
	float: left;
	width: 160px; /* Width of Menu Items */
	}

ul#primary-nav li a,
ul#primary-nav li li a {
	/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006634;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #006634;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006634; / * #3300CC * /
	*/
	display: block;
	text-decoration: none;
	color: #FFFFFF; /* was #006634; menu text color */
	padding: 3px; /* 5px */
}

/* Fix IE. Hide from IE Mac \*/
* html ul#primary-nav li { float: left; height: 1%; }
* html ul#primary-nav li a { height: 1%; }
/* End */

ul#primary-nav ul {
	position: absolute;
	display: none;
	}
	
ul#primary-nav ul ul {
	left: 160px;
	top: 0;
	}

ul#primary-nav li ul li a { padding: 3px 3px 3px 3px; } /*  padding: 2px 5px; Sub Menu Styles */

ul#primary-nav li:hover ul ul,
ul#primary-nav li:hover ul ul ul,
ul#primary-nav li.over ul ul,
ul#primary-nav li.over ul ul ul { 
	display: none; 
} /* Hide sub-menus initially */

ul#primary-nav li:hover ul,
ul#primary-nav li li:hover ul,
ul#primary-nav li li li:hover ul,
ul#primary-nav li.over ul,
ul#primary-nav li li.over ul,
ul#primary-nav li li li.over ul { 
	display: block; 
} /* The magic */

ul#primary-nav li.menuparent { 
	background: transparent url(img/arrow-right.gif) right center no-repeat; 
}
ul#primary-nav li li.menuparent { 
	background: transparent url(img/arrow-right.gif) right center no-repeat; 
}

ul#primary-nav li.menuparent:hover,
ul#primary-nav li li.menuparent:hover,
ul#primary-nav li.over {
	background: transparent url(img/arrow-down.gif) right center no-repeat; /* change the graphic when mousover */
	background-color: #CC0000 !important; /* was #D4DEC3; #0033FF  #f9f9f9  - seems to change very top level with dropdown the menu background color */
}
/* start added by nm */
ul#primary-nav li.menuparent:hover,
ul#primary-nav li.over { 
	z-index: 100;
	background: transparent url(img/arrow-down.gif) right center no-repeat; /* change the graphic when mousover */
	background-color: #006634; /* was #D4DEC3; */
}
ul#primary-nav li li.menuparent:hover { 
	background: transparent url(img/arrow-down.gif) right center no-repeat; /* change the graphic when mousover */
	background-color: #006634; 
}

ul#primary-nav li a {
	/* sets a default border for all menus */
	/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006634;
	*/
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF; /* #3300CC */
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF; /* #3300CC */
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF; /* #3300CC */

}
ul#primary-nav li li.menuparent:hover {
	/* affects the actual menu item with the flyout */
	background: transparent url(img/arrow-down.gif) right center no-repeat; /* change the graphic when mousover */
	border-top: none;
}
ul#primary-nav li:hover,     /* desscribes top level menu item - background color */
ul#primary-nav li.menuparent li a:hover {  /* descibes menu items in dropdowns that are not menuparents */
	/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006634;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006634; / * #3300CC * /
	*/
	 background-color: #CC0000; /* was background-color:#D4DEC3; */
	 color: #FFFFFF;  	/* was #CC0000; #FFFFFF:white #000000:black font color for text under mouse */
}

/***/
ul#primary-nav li a:hover {
	/*
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006634;

	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006634; /  * #3300CC * /
	 background-color: #D4DEC3;  	/ * #6699CC:turquoise #FFFF00:yellow makes menu bar item background colors change under mouse *  /
	*/
}

/* end added by nm */

ul#primary-nav li a:hover {
	 z-index: 9000;
	 background-color: #CC0000;
	 color: #FFFFFF;  	/* was #CC0000; #FFFFFF:white #000000:black font color for text under mouse */
}
/* end of menu css */



