/* 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: 2px outset #AD9974;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #AD9974 #FFE3AB #FFE3AB #AD9974;
body {
	background-color: #FFFFCC;
}

body, td, th, h3, h6 {
	color: #AD9974;
}

h1, h2, h4, h5 {
  color: AD9974;
}

a {
	color: #AD9974;
}




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

.menudiv a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */
 border-top: 1px solid #AD9974;
 border-right: 1px solid #AD9974;
 border-bottom: 1px solid #AD9974;
 border-left: 1px solid #AD9974;
 color: #FFE3AB;
 text-indent: 5px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 1px solid #AD9974;
 border-color: #AD9974 #AD9974 #AD9974 #AD9974;
 background-color: #FFE3AB;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #AD9974;
 border-color: #AD9974 #AD9974 #AD9974 #AD9974;
 background-color: #FFE3AB;
 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;
}




