/* Top Level Menu Items */
a#topmenuroot {
 border: 1px solid #cccccc;
 background-color: #06437d;
 margin-left: 0px;
 font-weight: bold;
 letter-spacing: 1.003;
 cursor: pointer;
}
a#topmenuroot:hover, a#topmenuroot.highlighted, a#topmenuroot.highlighted:hover {
 background-color: #99ccff;
}

/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 list-style: none;
 font-size: 12px;
 font-family: Arial;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 position: absolute;
 top: 21px;
 left: 0px;
 background-color: #cce3f8; 
 border-top: 3px solid #26639d;
 border-bottom: 3px solid #26639d;
 visibility: hidden;
 text-align: left;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 clear:both;
 float: left;
 left: 130px;
}

/*
 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;
 background: #06437d;
 border: 0px solid #fff;
 margin-right: -1px;
 width: 130px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 background-color: #cce3f8;
 border-top: 1px solid #b9c9f8;
 margin-right: 0;
 margin-bottom: 0px;
}
.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 1px;
 color: #ffffff;
 text-decoration: none;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #ffffee;
 text-decoration:  none;
}
.menulist a.highlighted {
 color: #000033;
 text-decoration:  none;
}

/* Links inside the sub-menu */
.menulist ul li a {
 color: #06437d;
 text-decoration: none;
 padding-left: 6px;
 font-size: 12px;
}
.menulist ul li a:visited {
 color: #06437d;
 text-decoration: none;
 padding-left: 6px;
 font-size: 12px;
}

.menulist ul li a:hover, .menulist ul li a.highlighted:hover, .menulist ul li a:focus {
 color: #255585;
 background-color: #ecf2f8;
 text-decoration:  none;
}


/* 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 *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*+html .menulist ul li {
 float: left;
 height: 1%;
}
*+html .menulist ul a {
 height: 1%;
}
* html .menulist ul li {
 float: left;
 height: 1%;
}

* html .menulist ul a {
 height: 1%;
}
/* End Hacks */