/* Meyer-style CSS */

div#navbar
{float: right;
width: 10em;}

#navbar #links a
{
	display: block;
	text-align: right;
	font-family: "Trebuchet MS", "Lucida Grande", "Bitstream Vera Sans", "Univers 55", sans-serif;
	font-weight: normal;
	font-size: 12px;
	line-height: 1.4em;
	padding: 0 0 2px 0;
	margin: 0 0 4px 0;
/*
	border: 2px dotted #999;
*/
	border: none;
	text-decoration: none;
	color: black;
	background: white;
	text-indent: 0;
}

#navbar #links a:hover
{
	color: white;
	background: #990000;
	border: 2px solid gray;
}

#navbar #links a:focus
{
	color: #990000;
	background: #ccc;
	border: 2px solid black;
}
