/* menu container NS6+ requires */
div#INGUS_Menu {
	position:relative;
	border: 0px;
	left:0px;
	z-index:10;
	width: 739px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* All <ul> tags in the menu including the first level */
.ingusmenu, .ingusmenu  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.ingusmenu ul {
 visibility: hidden;
 position: absolute;
 top:1.9em; /* I'm using ems rather than px to allow people to zoom their font */
 margin-left: -1px;
 width:210px;
 filter:alpha(opacity=80);
 -moz-opacity:.8;
 opacity: .8;	
}


/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.ingusmenu li {
 float: left;
 position: relative;
 border: 0px;
 margin-right:0px;
 width: 123px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.ingusmenu ul li {
 float: left;
 margin-right:0px;
 margin-bottom:0px;
}

.ingusmenu ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.ingusmenu li a {
	display: block;
	padding: 0px;
	line-height: 19px;
	text-indent: 1.4em;
	color: #fff 
	text-decoration:none;
	font-size: 12px;
	font-weight: bold;
	height: 22px;
	color: #FFFFFF;
	text-decoration: none;
}

.ingusmenu li a.NavActive{
	color: #FF0000;
}

.ingusmenu ul li a {
	display: block;
	line-height: 19px;
	font-weight: normal;
	color: #FFF!important;
	background-color: #7d7d7d;
	font-size: 11px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.ingusmenu a:hover, .ingusmenu a.highlighted:hover, .ingusmenu a:focus {
 color: #ff0000 !important;
 text-decoration:none;

}

.ingusmenu  a.highlighted {
 color: #ff0000;
 text-decoration:none;
 

}

.ingusmenu a#selected
{
 background-color: #ff0000;
}

/* Only style submenu indicators within submenus. */
.ingusmenu a .subind {
 display:none;
}

.ingusmenu ul a .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.ingusmenu a {
 float: left;
}
.ingusmenu ul a {
 float: none;
}
/* \*/
.ingusmenu a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .ingusmenu  ul li {
 float: left;
 height: 1%;
}
* html .ingusmenu  ul a {
 height: 1%;
}

