/* 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: 0px;
	filter: alpha(opacity=90);
	-moz-opacity: 0.9;









opacity: 0.9 *;
	text-decoration: none;
	line-height: 30px;
	font-weight: bold;
	margin: 12px;
	border: 1px solid #666666;
}
.pop {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}



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

