/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 39px;
	left: 0px;
	width: 200px;
}
/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px;
	margin-top: 0;
	left: 198px;
}
/*
 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.
*/
.menulist li {
	float: left;
	display: block;
	position: relative;
	margin-top: 1px;
	background-image: url(../images/nbg.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding: 0;
}
.menulist li#nmi-3 {
	background-image: none;
}
.menulist ul li {
	background: #ffffff;
	border: 1px solid #cbcbca;
	border-width: 0 1px 1px 1px;
}
/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin: 0;
}
/* Mozilla fix .menulist ul>li:last-child {
	margin-bottom: 1px; 
}*/
/* Links inside the menu */
.menulist a {
	display: block;
	/* padding: 8px 0px 8px 0px; */
	height: 38px;
	line-height: 38px;
	text-decoration: none;
	text-align: center;
	margin-left: 2px;
	margin-right: 1px;
}
.menulist ul a {
	padding-left: 10px;
	height: 18px;
	line-height: 18px;
	margin: 0;
}
.menulist li#nmi-3 a {
	width: 59px;
	margin-left: 0px;
}
.menulist li#nmi-4 a {
	width: 67px;
}
.menulist li#nmi-5 a {
	width: 147px;
}
.menulist li#nmi-6 a {
	width: 87px;
}
.menulist li#nmi-7 a {
	width: 87px;
}
.menulist li#nmi-8 a {
	width: 127px;
}
.menulist li#nmi-9 a {
	width: 137px;
}
.menulist li#nmi-12 a {
	width: 77px;
}
.menulist li#nmi-10 a {
	width: 136px;
	margin-right: 0px;
}

.menulist ul a {
	text-align: left;
	width: auto !important;
}


/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus, .menulist a.active {
	background-color: #ff3399;
	color: #ffffff !important;
}
.menulist ul a:hover {
}
.menulist a.active, .menulist a:hover {
	text-decoration: none !important;
}
.menulist ul a:hover, .menulist ul a.active {
}

/* Only style submenu indicators within submenus. */
.menulist a .subind {
	display: none;
}
.menulist ul a .subind {
	display: block;
	float: right;
}
/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
	float: left;
}
.menulist ul a {
	float: none;
}
/* \*/
.menulist a {
	float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
\*/
*:first-child+html .menulist ul li {
	float: left;
	width: 100%;
}
* html .menulist ul li {
	float: left;
	height: 1%;
}
* html .menulist ul a {
	height: 1%;
}
/* End Hacks */

