/* 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;
 text-align:left;
 padding:0px;
 margin:0px;
 width:190px;
}

/* 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 ul {
 list-style:none outside;
 padding: 0px 0px 0px 0px;
 font-size: 12px;
 width: 150px;
}

.menudiv li {
 position:relative;
 display:block;
 color: #ac5627;
 font-weight: bold;
 margin: 0px 0px 0px 0px;
}

.menudiv a {
 display: block;
 padding: 3px 4px 3px 5px;
 color: #ac5627;
 font-weight: bold;
 text-decoration: none;
 border: none;
}

a, a:hover, a:active, .menudiv a:focus {
 color: #ac5627;
 border: none;
 margin: 0px 0px 0px 0px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. 
.menudiv a:hover {
 border: 1px solid #336699;
 border-color: #6699CC #003366 #003366 #6699CC;
 background-color: #336699;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #003366;
 border-color: #000000 #3366CC #3366CC #000000;
 background-color: #003366;
 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;
}

