

/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 1px outset #FFFFCC;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #e6aeb3 #f3cbcb #f3cbcb #e6aeb3;
 background-color: #f2c5b7; layer-background-color: #F2C5B7;
 padding: 5px;
 font: 12px/22px Arial CE, Arial, Century gothic, Verdana;
 /* 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%;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #f2c5b7;
 margin-bottom: 5px;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 1px solid #F2C5B7;
 border-right: 1px solid #F2C5B7;
 border-bottom: 1px solid #EF9A9A;
 border-left: 1px solid #F2C5B7;
 color: #000000;
 font-weight: bold;
 text-indent: 5px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 1px solid #336699;
 border-color: #909090 #909090 #909090 #909090;
 background-color: #efb8b4;
 color: #8C6470;
}
.menudiv a:active {
 border: 1px solid #336699;
 border-color: #ffffff #3366CC #3366CC #000000;
 background-color: #efb8b4;
 color: #8C6470;
}

/*
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: #efb8b4;
 border-color: #336699;
 color: #8C6470;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial CE, Arial, Century gothic, Verdana;
 color: #003366;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #CC9966;
}







/* Just a random style, needed for NS4 */
b, strong {
 font-weight: bold;
}
