/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 1px solid #cccccc;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #d1c993 #d1c993 #d1c993 #d1c993;
 background-color: #fdfbee;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #bbb27c;
 padding: 3px;
 font: 12px/18px Arial, Verdana, 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 a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 
 color: #003333;
 text-decoration: none;
 font-size: 11px;
 letter-spacing : 1pt;
 font: Arial, Verdana
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {

 background-color: #bbb27c;
 color: #FFFFFF;
 font-size: 11px;
 font: Arial, Verdana
}
.menudiv a:active {
 background-color: #003366;
 color: #FFFFFF;
 font-size: 11px;
 font: Arial, Verdana
}

/*
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: #bbb27c;
 border-color: #bbb27c;
 color: #FFFFFF;
}


