/* 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: #996600;
	layer-background-color: #CCCC99;
	padding: 5px;
	font: bold 13px/30px "Trebuchet MS", Helvetica, sans-serif;
	color: #FFCC00;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 5px;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9; opacity: 0.9 */;
	text-decoration: none;
}


/* 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;
	border: none;
	text-decoration: none;
}

.menudiv a {
	display: block;
	color: #FFFFFF;
	text-indent: 5px;
	text-decoration: none;
	border: none;
	font-weight: bold;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	border: none;
	background-color: #669933;
	color: #FFCC00;
	font-weight: bold;
	text-decoration: none;
}
.menudiv a:active {
	border: none;
	background-color: #9B0000;
	color: #000000;
	font-weight: bold;
	text-decoration: none;
}

/*
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: #666666;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
	font: bold 13px "Trebuchet MS", Helvetica, sans-serif;
	color: #FFCC00;
	text-decoration: none;
	border: none;
	padding-right: 10px;
	padding-left: 10px;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	color: #7EBE3F;
	border: none;
	font-weight: bold;
	text-decoration: underline;
}
