/* CSS Document */
/* The styles for each menu */
div.navilayer {position: absolute;
	top: 1px;
	visibility: hidden;
	width: 140px;
}

div#base {
	position: relative;
}

div a:visited {
	background-color: transparent;
}

/* The extra DIV around the links. I'd rather have done
	a {display: block}
	throughout but that doesn't work in Explorer 4. */

div.navilayer div {
	width: 140px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	font: 11px verdana;
	background: #D3DCED;
	layer-background-color: #D3DCED;
}

div.navilayer div.bottom {
	width: 140px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
	font: 11px verdana;
	background: #D3DCED;
	layer-background-color: #D3DCED;
}
/* This style does not work in Netscape 4 so you see the borders of the empty
	DIV's */

div.navilayer div.fill {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #DEE7F7;
	}

/* Explorer 5.5 gives my general link colours precedence over
	the colour defined here. I think it's a bug */

div.navilayer div a {display: block;
	width: 140px;
	color: #000000;
	text-decoration: none;
	padding-left: 0px;
	letter-spacing: 1px;
}

/* The styles for the pseudo-mouseover. The class change does not work in Netscape 4,
	while Opera 5 changes the class but doesn't do anything about it,
	so these styles will never be visible in those browsers */

div.navilayer div.over {
	background: #003399;
}

div.navilayer div.over a {
	color: #ffffff;
}
