/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0px;
 padding: 0px;
 list-style: none;
 font: 11px arial, helvetica, serif;
 height: 20px;
 z-index: 5000;
 }

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 20px;
 left: 0px;
 width: 150px;
  z-index: 5000;

}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px;
 left: 150px;
}

/*
 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;
 position: relative;
 border: 0px solid #330;
 margin-right: 3px;
 	padding-top: 0px;
 	
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: -1px;
  	padding-top: 0px;
 border: 1px solid #CCC;
 background: #ECECE4;
 font-weight: normal;
 z-index: 5000;
}

.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 text-decoration:  none;

}


/* topnav and subnav won't work on indystar dev because they are overridden */
.topnav {
 font-weight: bold;
 color: #FFFFFF !important;
 text-decoration: none !important;
 background: transparent !important;
}

.subnav {
 color: #003366 !important;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
/*  background-color: #7D96B0; */
.menulist a.subnav:hover, .menulist a.subnav:focus {
 color: #FFF !important;
 background-color: #7D96B0;
 text-decoration:  none;
}
.menulist a.topnav:hover, .menulist a.topnav:focus, .menulist a.topnav.highlighted {
 color: #a4b9cf !important;
}
/* background-color: #62758A; */
.menulist a.subnav.highlighted {
 color: #FFF;
 background-color: #62758A;
 text-decoration:  none !important;
}

/* 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%;
  z-index: 5000;
}
* html .menulist  ul a {
 height: 1%;
  z-index: 5000;
}
/* End Hack */