
/* OFFICE-STYLE FREESTYLE MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist ul {
 margin: 0;
 padding: 0px;
 width: 190px;
 list-style: none;
 background: #323232;
 border: 1px solid transparent;
}

/* IE fix because it doesn't support transparent borders */
* html .menulist ul, .menulist {
 border: none;
 margin: 1px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned across from their parent */
.menulist ul {
 visibility: hidden;
 position: absolute;
 top: 0;
 left: 185px;
}

/* All menu items (<li> tags) are relatively positioned (to correctly offset submenus). */
.menulist li {
padding: 2px 3px 2px 1px;
 margin-right: -1px;
 float: left;
 position: relative;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 2px 5px 4px 1px;
 color: #FFF;
 text-decoration: none;
 border: 1px solid #4B4B4B;
}

/* IE fix because it doesn't support transparent borders */


/*
 Lit items: hover/focus = the current item. 'highlighted' = parent items to visible menus.
 Here, active items are given a border, and a padding tweak to 'elevate' the text within.
 Feel free to use background-image:url(file.gif) instead of background-color:#nnn here...
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 background-color: #FE5F00;
 padding: 2px 5px 4px 1px;
 margin: 0;
}
.menulist a.highlighted {
 color: #FFF;
 background-color: #FC6620;
 border: 1px solid ;
 margin: 0;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
color: #B3B3B3;
 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 */

