/* Make all body text black-colored 10 point Helvetica Neue with 12-point vertical spacing between lines of text and 9-point margins.*/

body {
	font-family: Courier;
	font-size:9pt;	
	font-style: normal;
	font-weight: light;
	color:black;
	line-height:12pt;
	margin-left:10pt;
	margin-right:10pt;
}

/* Don't underline links, and make all links black.
   Make links flash grey when activated.*/

a {
	text-decoration:none;
}

a:link {
	color:black;
}

a:visited {
	color:gray;
}

a:hover {
	color:rgb(70,50,30);
}

a:active {
	color:rgb(255,115,150);
}

