/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: relative;
 top: -260px;
 left: 219px;
 visibility: hidden;
 z-index: 1000;
 border: 0;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #FFFFCC #666633 #666633 #FFFFCC;
 background-color: #8B877C;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #8B877C;
 padding: 0;
 font: 11px Geneva, Arial, Helvetica, sans-serif;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* 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: 95%;
 font-weight: bold;
 text-align: center;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
}
a.divmenulink {
 width: 95%;
 padding: 2px;
 line-height: 12px;
 font-size:11px;
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 color: #FFFFFF;
 text-decoration: none;
}
.menudiv a {
 padding: 0;
 /* I've specified borders for each side individually so NS4 ignores this setting */
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
}
.menudiv a:active {
}

/*
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 {
}

