/* RULES FOR THE "MENUDIV" OBJECT */

.hmenudiv {
	position: absolute;
	visibility: hidden;
	z-index: 1000;
	/*border: 0px outset #ffffff;*/
	/* Borders:     Top    Right  Bottom    Left   */
 /*border-color:#082e18;*/
  /* layer-background-color is non-standard and NS4 only. */
 layer-background-color: #500001;
	padding: 5px;
	font: 14px/22px Arial, Helvetica, sans-serif;
	color:white;
	left: 147px;
	top: 386px;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /*filter:alpha(opacity=50);
 -moz-opacity: 0.5;
 opacity: 0.5;*/
}

.hmenudiv div
{
	background-color: #500001;
	border: #ffffff 1px solid;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	margin:0px;
	padding:0px;
	white-space: nowrap;
}
/* 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. */

.hmenudiv .header {
 font-weight: bold;
 text-align:left;
/* border-bottom: 1px dashed #082e18;*/
 margin- bottom: 5px;
 padding:0 0 0 4px;
}

.hmenudiv div a {
 display: block;
 /* I've specified borders for each side individually so NS4 ignores this setting */

 text-decoration: none;
 color:#ffffff;
 /*background:url(../images/dropdown-bullet.gif) right;*/
 background-repeat:no-repeat;
 margin:0px;
 padding:0px 5px 0 4px;
 text-align:left;
}

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

 background-color: #b57273;
 color: #000000;
}
.hmenudiv a:active {
 border: 1px solid #ffffff;
 background-color: #b57273;
 color: #000000;
}

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

