/* RULES FOR THE VERTICAL "MENUDIV" OBJECT */

/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv
{
	position: absolute;
	visibility: hidden;
	color: #000000;
	z-index: 1000;
	border-left: 4px #50AC26 outset;
	border-right: 1px #50AC26 outset;
	border-top: 1px #000000 outset;
	border-bottom: 1px #000000 outset;
	background-color: #FFFFFF;
	layer-background-color: #FFFFFF;
	font: 12px, Verdana, sans-serif;
	/* Here's a cool effect, try uncommenting this, althought it's non-standard: */
	filter: alpha(opacity=95); -moz-opacity: 0.95; opacity: 0.8;
	line-height: 24px;
}
A.menudiv
{
	color: #000000;
}


/* 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 a
{
	display: block;
	color: #000000;
	text-indent: 5px;
	text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover
{
	background-color: #50AC26;
	color: #000000;
	text-decoration: underline;
}
.menudiv a:active
{
	color: #808080;
}

/*
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: #000000;
}

/* RULES FOR THE HORIZONTAL "MENUDIV" OBJECT */

/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv2
{
	position: absolute;
	visibility: hidden;
	color: #000000;
	z-index: 1000;
	border: 1px outset;
	border-color: #FFFFFF #FFFFFF #FFFFFF #FFFFFF;
	background-color: #FFFFFF;
	layer-background-color: #FFFFFF;
	padding: 0px;
	font: 13px, Verdana, sans-serif;
	/* Here's a cool effect, try uncommenting this, althought it's non-standard: */
	filter: alpha(opacity=95); -moz-opacity: 0.95; opacity: 0.8;
	line-height: 16px;
}
A.menudiv2
{
	color: #000000;
}


/* Formatting to apply to the elements inside the "menudiv2" class elements. */
/* Of course, you can put whatever you want within the menu divs, these are just examples. */

.menudiv2 a
{
	color: #000000;
	text-indent: 0px;
	text-decoration: none;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv2 a:hover
{
	color: #000000;
	text-decoration: underline;
}
.menudiv2 a:active
{
	color: #808080;
}

/*
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 .menudiv2 element.
*/
.menudiv2 .highlighted
{
	color: #000000;
}
