/*

Here's the stylesheet rules used to format the menus and their content.

Feel free to alter the menu layout however you want. All you have to do is ensure the script
has the correct CSS property name (like 'visibility' or 'display') that you want it to change,
and that your submenus are set as hidden by default.

*/



/* RULES FOR THE "LISTMENU" OBJECT */

/*
This uses the 'display' property, so you can remove the positions and run it inline if you want.
Basically, nested UL tags are offset from their parent LIs using CSS positioning.
Feel free to experiment with CSS visual effects!
One good resource for UL/LI formatting: http://www.alistapart.com/articles/taminglists/
That covers rearranging lists, e.g. for horizontal menus.
Consult your favourite CSS reference for editing fonts/borders/etc.
Otherwise, just go through and change the #RGB border/background colours where suitable.
*/

/* For the class="menulist" element, and all 'ul' tags inside it. */
.menulist, .menulist ul {
 margin: 0;
 padding: 0;
 width:150px;
 list-style: none;
 border: none;
 background: #999999;
}


/* Submenus ('ul' tags) are hidden by default. You may want to hide them with scripting? */
.menulist ul {
 position: absolute;
 top: 25px;
 left: 25px;
 display: none;
}

/* All menu items ('li' tags) */
.menulist li {
 position: relative;
}

/* Links inside the menu */
.menulist a {
 display: block;
 padding: 3px;
 color: #ffffff;
 font-size:small;
 text-decoration: none;
}

/* Lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover {
 color: #cc0033;
 background-color: #cccccc;
}
.menulist a.highlighted {
 color: #000000;
 background-color: #999999;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.menulist a .subind {
 float: right;
 display: none;
}

/* 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 */

/* Just a random style, needed for NS4 */
b, strong {
 font-weight: bold;
}
