/* 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: #000000;
	layer-background-color: #FA3700;
	font: normal 11px/11px verdana, Helvetica, sans-serif;
	filter: alpha(opacity=80);
-moz-opacity: 0.8; 	opacity: 0.8;
	margin: 0px;
}


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

.menudiv a {
	display: block;
	color: #FFFFFF;
	text-indent: 0px;
	text-decoration: none;
	border: 1px solid #FFFFFF;
	padding: 3px;
	margin: 0px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	border: 1px solid #FFFFFF;
	background-color: #B47235;
	color: #FFFFFF;
	padding: 3px;
	margin: 0px;
}
.menudiv a:active {
	border: 0px solid #FFFFFF;
	background-color: #000000;
	color: #FFFFFF;
	margin: 0px;
}

/*
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: #AA6627;
	color: #FFFFFF;
	border: #FFFFFF;
	margin: 0px;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
	color: #000000;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: Bold;
	display: block;
	margin: 2px;
	padding: 2px;
}

/* Likewise, style active trigger links 
.trigger a.highlighted {
 color: #FFFFFF;
}*/
.trigger {
	color: #000000;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	line-height: 11px;
	background-color: #F5F5F5;
}
.trigger a:hover {
	color: #000000;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: Bold;
	display: block;
	margin: 2px;
	padding: 2px;
	background-color: #CCCCCC;
}
.trigger a:active {
	color: #CCCCCC;
	text-decoration: none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: Bold;
	display: block;
	margin: 2px;
	padding: 2px;
	background-color: #F5F5F5;
}
