/* Make all body text wheat-colored 12 point Book Antiqua with 16-point vertical spacing between lines of text and 50-point margins.  Use black as the background
*/
body 	{font-size: 12 pt;
	font-family: "Book Antiqua";
	color: wheat;
	background: black;
	line-height: 16 pt;
	margin-left: 50 pt;
	margin-right: 50 pt;}

/*Indent paragraphs 
*/
p 	{margin-left: 24 pt;
	margin-right:24 pt;}

/* Make headings Prose Antique bold with generous line spacing.  If user doesn't have Prose Antique, use Lucinda Handwriting.
*/
h1 	{font: 24 pt Lucinda Handwriting, ProseAntiqua;
	font-weight: bold;
	line-height: 30 pt;}

h2	{font:18pt Lucinda Handwriting, ProseAntique;
	font-weight: bold;
	line-height: 22pt;}

/*Make all links red.  Make links flash blue when activated. Make links maroon when visited.
*/
	a {text-decoration: underline;}
	a:link {color: red;}
	a:visited {color: red;}
	a:active {color: blue;}

/* Format footnotes as 9-point Book Angiqua, and center them.
*/
div.footnote 	{font-size: 9pt}
		line-height: 12 pt;
		text-align:center}


