/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
	position: absolute;
	z-index: 1000;
	/* Borders:     Top    Right  Bottom    Left   */
 border-color: #ACCFE0;
	background-color: #032352;
	/* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #CCCC99;
	padding: 2px;
	background-repeat: repeat-x;
	visibility: hidden;
	font-size: 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;
 border-bottom: 2px dashed #999966;
 margin-bottom: 5px;
}

.menudiv a {
	display: block;
	/* I've specified borders for each side individually so NS4 ignores this setting */
 	/*border-top: 1px outset #85BAD3;
	border-right: 1px outset #85BAD3;
	border-bottom: 1px outset #85BAD3;
	border-left: 1px outset #85BAD3;*/
	color: #FFFFFF;
	text-decoration: none;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
	background-color: #2E87B2;
	color: #FFFFFF;
	background-image: url(images/shared/footer_background.gif);
	background-repeat: repeat-x;
	background-position: bottom;
	/*border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: outset;
	border-right-style: outset;
	border-bottom-style: outset;
	border-left-style: outset;
	border-top-color: #6699CC;
	border-right-color: #003366;
	border-bottom-color: #003366;
	border-left-color: #6699CC;*/
}
.menudiv a:active {
	/*border: 1px solid #336699;
	border-color: #6699CC #003366 #003366 #6699CC;*/
	background-color: #336699;
	color: #FFFFFF;
	background-image: url(images/shared/footer_background.gif);
	background-repeat: repeat-x;
	background-position: bottom;
}

/*
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: #336699;
 border-color: #336699;
 color: #FFFFFF;
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
 font: Bold 14px Arial, Helvetica, sans-serif;
 color: #003366;
 text-decoration: none;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	color: #2884B0;
}
