/* 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: #0062C4;
	layer-background-color: #CCCC99;
	padding: 7px;
	margin: 12px;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;




opacity: 0.9 *;
	text-decoration: none;
	line-height: 30px;
	font-weight: bold;
}


/* 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 {
	text-decoration: none;
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #FFFF33;
}

.menudiv a {
	display: block;
	color: #FFFF33;
	text-indent: 5px;
	text-decoration: none;
	border: none;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	border: none;
	background-color: #666666;
	color: #FFFFFF;
	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 {
	color: #FFFF33;
	text-decoration: none;
	border: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
}

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