/* RULES FOR THE "MENUDIV" OBJECT */

/* 
NOT USED
*/


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv1 {
 position: relative;
}

.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 2px outset #000000;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #F3F3F3 #000000 #000000 #F3F3F3;
 background-color: #CF1C2B;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #CF1C2B;
 padding: 5px;
 margin-top:-17px;
 margin-left:30px;
 font: 11px Verdana, Arial;
 color: #FFFFFF;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=90); -moz-opacity: 0.9; opacity: 0.9 ; */
}


/* 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 #FFFFFF;
 margin-bottom: 5px;
 padding-bottom: 5px;
 color: #FFFFFF;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 1px solid #CF1C2B;
 border-right: 1px solid #CF1C2B;
 border-bottom: 1px solid #CF1C2B;
 border-left: 1px solid #CF1C2B;
 color: #FFFFFF;
 text-indent: 0px;
 padding: 2px;
 text-decoration: none ! important;
 font-weight:bold;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:link, .menudiv a:visited {
 text-decoration: none;
 color: #FFFFFF;
}
.menudiv a:hover, .menudiv a.highlighted {
 border: 1px solid #333366;
 border-color: #999999 #000000 #000000 #999999;
 background-color: #CF1C2B;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #003366;
 border-color: #999999 #000000 #000000 #999999;
 background-color: #CF1C2B;
 color: #FFFFFF;
}

.submenudiv a {
 display: block;
 font-size: 10px;
 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;
}

