/* 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;

	layer-background-color: #CCCC99;
	padding: 25px;
	font: .8em/normal Arial, Helvetica, sans-serif;
	;
	background-color: #E6EDF3;
	/* border-bottom: thin solid #70ABDF; 
		border: thin solid #70ABDF; */
}


/* 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;
}

.menudiv a {
	color: #085BAD;
	text-indent: 0px;
	text-decoration: none;
	margin: 0px;
	line-height: 15px;
	color: #085BAD;
	font-weight: bold;
	margin-left: -8px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {


 color: #C07300;
}
.menudiv a:active {


 color: #C07300;
}

/*
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 {


 color: #C07300;
}

/* 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: #CC9966;
}


.bodysmall3 {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-size: 10px;
		line-height: 15px;
}
