/*
  Netscape doesn't handle style sheet inheritence correctly, so most
  of the elements must be explicitly specified.  (ugh!)
*/

BODY, H1, H2, H3, H4, H5, H6, P, TH, TD, UL, LI, OL, DL, DT, DD
	{
	font-family: "Verdana", "Lucida", "Arial", "Helvetica", "Serif";
	}

BODY
	{
	margin: 0pt;
	background-color: white;
	color: black;
	}

A:link		{ color: blue; }
A:visited	{ color: navy; }
A:active	{ color: red; }

.border1	{ background-color: rgb(102,102,204); }
.border2	{ background-color: rgb(  0,  0,  0); }
/* .border3	{ background-color: white; } */

/* Sadly, the Verdana font at 12pt looks much larger than Times at 12pt...
   with the result that Verdana looks too big on most folks browsers at
   the default size.  Thus, we scale everything down a wee bit.  Also
   sadly, we can't just apply this to BODY, and have it scale everything
   appropriately. */

TD.body, TD.body TD	{
	font-size: 80%;
	}

TD.body P	{
	line-height: 150%;
	}

TD.footer, TD.footer TD	{
	font-size: 80%;
	color: rgb(153,153,153);
	}

BLOCKQUOTE	{
	font-size: 85%;
	}

HR	{
	height: 1px;
	}

