/* OFFICE-STYLE FREESTYLE MENU LAYOUT *//* All <ul> tags in the menu including the first level */

.menulist, .menulist ul {
 margin: 0;
 padding: 0px;
 width: 188px;
 list-style: none;
 background: #eee;
 border: 0px solid #0d2436;
 }

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */

.menulist ul {
 visibility: hidden;
 position: absolute;
 z-index: 99;
 top: 0;
 left: 188px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */

.menulist li {
 position: relative;
}

/* Links inside the menu */

.menulist a {
 display: block;
 padding: 3px 5px 4px 8px;
font-family: verdana, helvetica, arial, sans-serif;
font-size: 1em;
font-weight: bold;
color: #0d2436;
 text-decoration: none;
 z-index: 99;
 border: 0px solid #3c0200;
}

/* IE fix because it doesn't support transparent borders */

* html .menulist a {
 border: 0px;
 z-index: 99;
 margin: 0px;

}


.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
font-family: verdana, helvetica, arial, sans-serif;
font-size: 1em;
font-weight: bold;
color: #0d2436;
 background-color: #e69187;
 padding: 3px 5px 4px 8px;

 border: 0px solid #3c0200;
 margin: 0;
}

.menulist a.highlighted {
font-family: verdana, helvetica, arial, sans-serif;
font-size: 1em;
font-weight: bold;
 color: #0d2436;
 background-color: #eeeeee;

 border: 0px solid #3c0200;
 margin: 0;
}


    .menulist a#xyz {
      background-image: url(/images/nav_off.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(/images/academics/pod2_nav_on.gif);
    }




.menulist a .subind {
 float: right;
}


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/

* html .menulist li {
 float: left;
 height: 1%;
}

* html .menulist a {
 height: 1%;
}

/* End Hack */


