/* RULES FOR THE "MENUDIV" OBJECT */

/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
 position: absolute;
 visibility: hidden;
 z-index: 1000;
 text-align: left;
 /* Here's a cool effect, try uncommenting this, althought it's non-standard: */
 /* filter: alpha(opacity=80); -moz-opacity: 0.8; opacity: 0.8 */
}

.menudiv a {
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	display: block;
	/* I've specified borders for each side individually so NS4 ignores this setting */
	text-decoration: none;
	font-family: Arial, Tahoma, Verdana, serif;
	font-size: 13px;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 text-decoration: none;
}
