/* Make all body text brown-colored 12-point Book Antiqua with 16-point vertical spacing between lines of text and 10-point margins.  Use pebble.jpg as the background.*/

body {font-size: 10pt;
	font-family: "Book Antiqua" ;
	color: #660000;
	background: url(treebg.jpg);
	line-height: 16pt;
	margin-left: 120pt;
	margin-right: 10pt;}

/* Indent paragraphs */
p {margin-left: 24pt;
   	margin-right: 24pt;}

/* Make headings Calligrapher with generous line spacing.  If user doesn't have Calligrapher, use Lucinda Handwriting.*/

h1 {font: 24pt Calligrapher, Lucinda Handwriting;
	font-weight: bold;
	line-height: 30pt;}

h2 {font: 18pt Calligrapher, Lucinda Handwriting;
	font-weight: bold;
	font-height: 22pt;}

h3 { font: bold 14pt Calligrapher, Lucinda Handwriting; line-height: 16pt;}

/* Do not underline links, and make all links red.  Make links flash lime when activated.*/

a {text-decoration;}
a:link {color: olive;}
a:visited {color:green;}
a:active {color: lime;}

/* Format footnotes as 9-point Book Antiqua, and center them. */
div.footnote {font-size: 9pt;
	line-height: 12pt;
	text-align: center;}

