/* 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: #F4FAFD;
 /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #F4FAFD;
 padding: 0px;
 text-align: left;
 font-family : Verdana, Arial, Helvetica, sans-serif;
 font-size : 10px;

 /* transparency */
 filter: alpha(opacity=96); -moz-opacity: 0.96; opacity: 0.96;

}
div.menudiv { 
 border-color: #F4D100; 
 border-style: solid; 
 border-width: thin;
 }

/* 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%;
 color : #000000;
 text-align: center;
 background-color : #e2e9ea;
 background-image : url(logo_bg.jpg);
 font-weight: bold;
 padding-bottom: 3px;
 padding-top: 3px;
}


.menudiv a {
 display: block;
 color: #000000;
 text-indent: 0px;
 text-decoration: none ! important;
 text-align: middle;
 border-top : 1px solid #000000;
 border-left : 1px solid #F4FAFD;
 border-right : 1px solid #F4FAFD;
 border-bottom : 1px solid #F4FAFD;
 padding : 3px;
}

.subnav
{ 
 background-image : url(subnav-arrow.gif);
 background-repeat : no-repeat;
 background-position : right;
 }

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 background-color: #ffffcc;
 color: #000000;
}

.menudiv a:active {
 background-color: #ffffcc;
 color: #000000;
}
.menudiv a:link, .menudiv a:visited  {
 color: #000000;
}

/*
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: #eeeebb;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 color: #000000;
 text-decoration: none ! important;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
/* color: #CC9966; */
}

.trigger img
{ 
  display : block;
}