/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
	position: absolute;
	visibility: hidden;
	z-index: 100;
	background-color: #B7D8F9;
	layer-background-color: #CCCC99;
	padding: 7px 0px;
	font: normal 12px/15px Arial, Helvetica, sans-serif;
	color: #666666;
	margin: 5px;
	filter: alpha(opacity=90);


-moz-opacity: 0.9; opacity: 0.9 *;
	text-decoration: none;
	left: 539px;
	top: 12px;
}


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

.menudiv a {
	display: block;
	color: #CC0000;
	text-indent: 5px;
	text-decoration: none;
	border: none;
	font-weight: bold;
	text-align: left;
	line-height: 20px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	border: none;
	background-color: #CC0000;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
.menudiv a:active {
	border: none;
	background-color: #990000;
	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 {
	border: none;
	text-align: center;
	background-color: #CC0000;
	color: #FFFFFF;
	height: 25px;
}

.trigger a {
	font: bold 12px/20px Verdana, Arial, Helvetica, sans-serif;
	color: #CC0000;
	text-decoration: none;
	border: none;
	
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	border: none;
	font-weight: bold;
	text-decoration: none;
	line-height: 20px;
	color: #000000;

}
