/* 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: 0;
 border-top: none;
 background-color: #300202;
 text-align: left;
 /*padding: 5px;*/
 font: 11px/22px Arial, 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 */

 width: 139px;
 border-bottom: solid 1px red;
}


/* 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;
 background: #15427B;
 cursor: default;
}

.menudiv a {
 float: none;
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 /*border-bottom: 1px solid #888;*/
 color: #FFFFFF;
 padding-left: 5px;
 padding-right: 5px;
 text-decoration: none;
 font-size: 11px;
 /*font-weight: bold;*/
 border: solid 1px red;
 border-bottom: 0;
}

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

.menudiv a:hover {
 color: #FFFFFF;
 background-color: #be1e1e;
 
}
.menudiv a:active {
 /*background-color: #f55e2f;*/
 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: #336699;
 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;
}

