/*make all text centered, black 14 point helvetica
*/

p {font-size: 11pt;
	font-family: "Arial";
	color: black;
	line-height: 13pt;
	text-align: "center"}

/*make body text left justified
*/

p.1 {font-size: 11pt;
	font-family: "Arial";
	color: black;
	line-height: 13pt;
	text-align: "left"}

/* make headings centered 18 pt black helvetica
*/

h1 {font-size: 18pt;
	font-family: "Arial";
	font-weight: bold;
	line-height: 20 pt;
	text-align: "center"}
	
/*make links blue, make links flash purple when activated
*/

a:{text decoration: none;}
a:link {color: blue;}
a:visited {color: purple;}
a:active {color: purple;}