/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
	position: absolute;
	visibility: hidden;
	z-index: 1001;
	border: 0px outset #FFFFCC;
	/* Borders:     Top    Right  Bottom    Left   */
 border-color: #5C96BA #5C96BA #5C96BA #5C96BA;
	background-color: #5C96BA;
	/* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #5C96BA;
	padding: 10px;
	/* Here's a cool effect, try uncommenting this, althought it's non-standard: */
  filter: alpha(opacity=90);
	-moz-opacity: 0.9;
	opacity: 0.9;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
}


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

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

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	background-color: #5E78B5;
	color: #FFCC00;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	line-height: 15px;
	width: 180px;
}
.menudiv a:active {
	background-color: #003366;
	color: #FFFFFF;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	line-height: 15px;
}

/*
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: #5E78B5;
	color: #FFFFFF;
	
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
	color: #FFFFFF;
	text-decoration: none;
	font-family: Tahoma, Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 15px;
	font-weight: bold;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	color: #FFCC00;
	font-weight: bold;
	line-height: 15px;

}

