/* menu container NS6+ requires */

#NavMain{float:left;width:580px;}

div#INGUS_Menu {
	position:relative;
	border: 0px;
	left:0px;
	z-index:10;
	width: 580px;
	font-family:Arial;
}

/* 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:2.4em; /* I'm using ems rather than px to allow people to zoom their font */
	margin-left: -1px;
	width:98px;
	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: 96px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.ingusmenu ul li {
width: 94px;
	float: left;
	margin-left:1px;
	margin-right:1px;
	margin-bottom:0px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #cccccc;
	border-left-color: #cccccc;
	
}

.ingusmenu ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.ingusmenu li a {
	display: block;
	padding: 0px;
	line-height: 29px;
	text-align:center;
	text-decoration:none;
	font-size: 13px;
	font-weight: bold;
	height: 28px;
	color: #5F6063;

}

.ingusmenu li a.NavActive{
	color: #ff3399;
}

.ingusmenu ul li a {
	display: block;
	line-height: 27px;
	font-weight: normal;
	color: #333!important;
	background-color: #F6F6F6;
	font-size: 11px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cccccc;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.ingusmenu a:hover, .ingusmenu a.highlighted:hover, .ingusmenu a:focus {
	color: #FFFFFF !important;
	text-decoration:none;
	background-color: #FF6DA1;
}

.ingusmenu  a.highlighted {
	color: #ff3399;
	text-decoration:none;
 

}

.ingusmenu a#selected
{
	background-color: #F6F6F6;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

/* 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%;
}
