/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 100;
 border: 0px solid #BFD9E9;
 border-bottom-width: 0;
 background-color: #FFFFFF;
 /*layer-background-color: #D2E3EF;*/
 padding: 0px;
 margin:8px 0px 0px -29px;
 /*font: 10px Arial, Helvetica, sans-serif;*/
 font:normal 10px Verdana;
}
*html .menudiv { margin:12px 0px 0px -28px;}


/* 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: 1px dashed #999966;
 margin-bottom: 5px;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-right: 1px solid #CCCCCC;
 border-bottom: 1px solid #CCCCCC;
 border-left: 1px solid #CCCCCC;
 color: #000000;
 text-indent: 5px;
 padding: 5px;
 width:325px;
 text-decoration: none;
 font-weight: bold;
 background-color: #FFFFFF;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 1px solid #CCCCCC; border-top:none;
 border-color: #CCCCCC #CCCCCC #CCCCCC #CCCCCC;
 background-color: #FDD540;
 color: #393939;
}
.menudiv a:active {
 border: 1px solid #003366; border-top:none;
 border-color: #FDD540 #FDD540 #FDD540 #FDD540;
 background-color: #FDD540;
 color: #393939;
}

/*
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: #FFCC00;
 border-color: #336699;
 color: #FFFFFF;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #CC9966;
}
