/*

JR Freelance 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 "MENUDIV" OBJECT */

/* This is more complicated CSS, as it will downgrade to NS4 support. */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 0px outset #FFFFCC;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #FFFFCC #666633 #666633 #FFFFCC;
 background-color: #000000; layer-background-color: #CCCC99;
 padding: 0px;
 font: 10px/18px Arial, Helvetica;
 /* Here's a cool effect, try uncommenting this: */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
}


/* Formatting to apply to the elements inside the "menudiv" class elements. */
/* Of course, you can put whatever you want within the menu divs, these are just examples. */

.menudiv .header {
 width: 100%;
 text-align: center;
 border-bottom: 0px dashed #999966;
 margin-bottom: 0px;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 0px solid #CCCC99;
 border-right: 0px solid #CCCC99;
 border-bottom: 0px solid #CCCC99;
 border-left: 0px solid #CCCC99;
 color: #FFFFFF;
 text-indent: 0px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 0px solid #336699;
 border-color: #6699CC #003366 #003366 #6699CC;
 background-color: #D3C9C9;
 color: #FFFFFF;
}
.menudiv a:active {
 border: px solid #003366;
 border-color: #FFFFFF #FFFFFF #FFFFFF #FFFFFF;
 background-color: #FFFFFF;
 color: #FFFFFF;
}

/*
The script will automatically assign a class of "highlighted" to elements that currently
have an active submenu, so here's a little CSS to format links within a .menudiv element.
*/
.menudiv .highlighted {
 background-color: #FFFFFF;
 border-color: #FFFFFF;
 color: #FFFFFF;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 50px Tahoma;
 color: #AFAD73;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #FFFFFF;
}


/* Just a random style, needed for NS4 */
b, strong {
 font-weight: bold;
}