/* 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;
	 border: 2px solid #FFFFFF;
	 background-color: #d4e282;
	 color: #231F20;
	 padding: 5px;
	 font-size: 11px;
	 font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	 text-align: center;
	 width: 350px;
	 white-space: normal;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
}


/* 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 #999966;
	 margin-bottom: 5px;
}

.menudiv a {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	text-decoration: none;
}
.menudiv a:active {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	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 {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	text-decoration: none;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	display: block;
	font-family: Arial, Verdana, Geneva, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 14px;
	text-decoration: none;
}


a.whitebig:active, a.whitebig:visited, a.whitebig:hover, a.whitebig:link {
	font-size: 14px;
	font-weight:bold;
	color: #FFFFFF;
	line-height: normal;
	letter-spacing: normal; 
	text-decoration: none;
}