/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menubar {
	position: absolute;
	visibility: hidden;
	z-index: 1000;
	background-color: #EFEFEF;
	layer-background-color: #CCCC99;
	font-family:"Trebuchet MS", "Lucida Sans", sans-serif;
	font-size:10px;
	border: 1px solid #CCCCCC;
	padding-top: 4px;
	padding-bottom: 4px;
}


/* 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. */

.menubar .header {
 	width: 100%;
 	font-weight: bold;
 	text-align: center;
 	border-bottom: 0.3mm dashed #999966;
 	margin-bottom: 5px;
}

.menubar a {
	display: block;
	color: #666666;
	text-indent: 3px;
	text-decoration: none;
	border: 1px solid #EFEFEF;
	font-size: 10px;
	padding: 1px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menubar a:hover, .menubar a:active {
	background-color: #CDCDCD;
	color: #333333;
	border: 1px dashed #BEBEBE;
	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 .menubar element.
*/
.menubar .highlighted {
 	background-color: #336699;
 	border-color: #336699;
 	color: #000000;
 	/*font-weight: bold;*/
}

/* The links in the upper-left that pop out 'divMenu' menus. */
.trigger a {
	font-size:10px;
	font-family:"Trebuchet MS", "Lucida Sans", sans-serif;
	color: #666666;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}

.trigger a:link {
	font-size:10px;
	font-family:"Trebuchet MS", "Lucida Sans", sans-serif;
	color: #666666;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}

/* Likewise, style active trigger links */
.trigger a.highlighted {
	height: 16px;
	padding-right: 10px;
	padding-left: 10px;
	filter: Alpha(Opacity=80);
	font-weight:bold;
	color: #000000;
}
.trigger a.nomenu {
	font-size:10px;
	font-family:"Trebuchet MS", "Lucida Sans", sans-serif;
	color: #666666;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}

.trigger a.nomenu:link {
	font-size:10px;
	font-family:"Trebuchet MS", "Lucida Sans", sans-serif;
	color: #666666;
	text-decoration: none;
	padding-right: 10px;
	padding-left: 10px;
}

.trigger a.nomenu:hover {
	height: 16px;
	padding-right: 10px;
	padding-left: 10px;
	font-weight:bold;
	color: #000000;
}
.trigger {
	height: 16px;
}
