/* 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: 1px outset #FFFFCC;
 /* Borders:     Top    Right  Bottom    Left   */
 border-color: #000000 #000000 #000000 #000000;
 background-color: #FFFFFF;
 /* layer-background-color is non-standard and NS4 only. */
/* layer-background-color: #CCCC99; */
 padding: 0px;
 font: 12px/16px Arial, Helvetica, sans-serif;
 font-weight: bold;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard:
 filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8;*/
 width: 200px;
}


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

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

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

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #F27700;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
 color: #CC9966;
}

.main_link {z-index: 23; position: relative; top: 0px; left: 0px; color: red; visibility: visible; text-decoration: none;}

/*
.shaded { filter: alpha(opacity=70); -moz-opacity: 0.7; opacity: 0.7;}
*/