/* RULES FOR THE "MENUDIV" OBJECT */
/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
	position: absolute;
	visibility: hidden;
	text-align: left;
	z-index: 1001;
	width: 150px;
	padding: 0px;
	margin: 0px;
	font: 11px verdana, arial, sans-serif;
	border-left: 1px solid #CCCFD7;
	border-right: 1px solid #CCCFD7;
}
.submenu_item {
	width: 150px;
	min-height: 22px;
	text-align:left;
	margin: 0px;
	background: #97B0C6 url(imgs/submenu_item_back.jpg) left top repeat-x;
	font: 11px verdana, arial, sans-serif;
	color: #333333;
}
/* Formatting to apply to the elements inside the "menudiv" class elements. */
.menudiv .header {
	width: 100%;
	text-align: center;
	margin-bottom: 5px;
}
.submenu_item p {
	 vertical-align:middle;
	 margin: 0px;
	 padding: 8px 5px 8px 5px;
}

.submenu_item a {
	color: #003333;
	text-decoration: none;
}
.submenu_item img {
	vertical-align:middle;
}
.submenu_item a:hover {
	color: #FFFFFF;
}
.submenu_item a:active {
	color: #FFFFFF;
}
/*
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. 
*/
.submenu_item .highlighted {
	color: #FFFFFF;
}
/* The links in the upper-left that pop out 'divMenu' menus. */

.trigger a {
	color: #003366;
	text-decoration: none;
}
/* Likewise, style active trigger links */
.trigger a.highlighted {
	color: #FFFFFF;
}