/* RULES FOR THE "MENUDIV" OBJECT */


/* An absolutely positioned and hidden DIV (treated as a layer in NS4). */
.menudiv {
	position: absolute;
	visibility: hidden;
	border:1px solid black;
	border-bottom-width: 0;
	font:normal 11px Verdana;
	font-weight: bold;
	line-height:18px;
	z-index:100;
	background-color: #0099FF;
 
}

.menudiv a {
width: 100%;
display: block;
border-bottom: 1px solid black;
padding: 1px 0;
}

/* I'm using :hover and :active pseudo-classes for link mouse effects. */
.menudiv a:hover {
 background-color: #266DD9;
}
