/*
 This division is for AAC Section (Blue Menu - White Bg.)
*/

/* All  UL tags */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none; 
}

/* All  submenus - hidden by default, positioned down from parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 30px;
 left: 0px;
 width: 150px;
}

/* Second  and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 155px;
}

/* All  menu items ('li' tags). These are the horizontal styles with borders/overlapping */
.menulist li {
 float: left;
 position: relative;
 background: #00285C;
 border: 0px solid #036;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #fff;
 font-weight:bold;
 padding-right: 5px;
 padding-left: 5px;
 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: #FFF;
background-color: #8AC;
}
.menulist  a.highlighted {
 color: #963;
background-color: #CDE;
}

/* 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;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack*/


/*
 End for Common Section
*/