/* RULES FOR THE "MENUDIV" OBJECT */
/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv
{
	position: absolute;
	visibility: hidden;
	border:1px #ccc solid;
	border-top: none;
	padding: 0;
	background-color: #efefef;
}
.menudiv a
{
	border-bottom:1px #ccc dotted;
	color: #640990;
	text-align: left;
	display: block;
	text-decoration: none;
	padding: 7px 10px;
}
.menudiv a.last
{
	border: none;
}
.menudiv a:hover
{
	background-color: #545454;
	color: #fff;
}
/*
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
{
	background-color: #d0a85a;
	color: #fff;
}