/* 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;
  background-color: #FFFFFF;
 layer-background-color: #5F5E8E;
 padding: 5px;
 font: 14px/22px Arial, Helvetica, sans-serif;
border-bottom: 4px solid #333399; 
border-left: 4px solid #666699; 
border-right: 4px solid #666699; 
border-top: 4px solid #CCCCFF;

 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
}


/* 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: left;
 margin-bottom: 5px;
}

.menudiv a {
 display: block;
 color: #003333;
 text-indent: 5px;
 text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 border: 1px solid #336699;
 border-color: #6699CC #858EC2 #858EC2 #6699CC;
 background-color: #858EC2;
 color: #FFFFFF;
}
.menudiv a:active {
 border: 1px solid #003366;
 border-color: #000000 #858EC2 #858EC2 #000000;
 background-color: #858EC2;
 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: #858EC2;
 border-color: #858EC2;
 color: #FFFFFF;
}


/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger1 a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #FFFFFF;
 text-decoration: none;
 margin-left: 20px;
}

/* Likewise, style active trigger links */
.trigger1 a.highlighted {
 color: #CC9966;
 margin-left: 20px;
}
.trigger2 a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
 margin-left: 20px;
}

.trigger2 a.highlighted {
 color: #CC9966;
 margin-left: 20px;
}
.indent20 {
 font:  10px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
 margin-left: 20px;
}
a {
 color: #003333;
 text-decoration: none;
}
a:hover {
 color: #CC9966;
}
a:active {
 color: ##CC9966;
}