/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 text-align: left;
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 border: 2px outset #FFFFCC;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #FFFFCC #666633 #666633 #FFFFCC;
 padding: 0;
 margin: 0;
 font: 14px "Times New Roman", Times, serif;
}


/* 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 img {
    padding: 0;
    margin: 0;
}

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 width : 140px;
 margin-left : 10px;
 margin-bottom : 2px;
 margin-top : 2px; 
 color: #003333;
 text-indent: 5px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 width : auto;
 background-color: #c0c0c0;
 color: #FFFFFF;
 text-decoration: none; 
}

.menudiv a:active {
 width : auto;
 background-color: #003366;
 color: #FFFFFF;
 text-decoration: none;
}

/*
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 {
 width : auto;
 background-color: #336699;
 color: #FFFFFF;
 text-decoration: none;
}


