/* 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: 1px outset #FFFFCC;
	background-color: #FFFFFF;
	layer-background-color: #CCCC99;
	padding: 1px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	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: left;
}

.menudiv a {
	display: block;
	padding: 1px;
	text-align: left;
	text-indent: 5px;
	text-decoration: none;
	font-weight:bold;	
	background-color: #2572B8;
	background-image:url(/images/BG_DropDownMenu.jpg);
	color: #FFFFFF;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 padding: 1px; 
/* background-color: #DDEEFF; */
 color: #F9C90D;
}

/*
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 {
 padding: 1px; 
 background-color: #DDEEFF;
 color: #000000;
}