@charset "utf-8";
/* CSS Document */
/* this changes the size of the paragraph text on the page*/
p {
	font-size: 16pt;/*change this to increase or decrease the print font size on most of the page*/
	line-height: normal;
	font-weight: normal;
}
/* the table uses the font tag extensively which cannot be overriden by the css alone, so instead we redefine the actual <font> tag here so all text inside <font tags resizes the the point size below*/
font {
	font-size: 16pt; /*change this to increase or decrease the print font size in the tables*/
	line-height: normal;
}


