/* CSS Document */
/* below is an example of negating the background image if you happen to have it specified in the main.css file */
body {
	background: #fff url(none); /* Changes the background color of the page to white and removes the tiling image. */
	font: 12pt "Times New Roman", Times, serif; /* Changes the font size to 12 and the unit of measurement to points, a print unit. Changes the font from a sans-serif to a serif, which is widely believed to be easier to read on a printed page. */
	margin: 0px;
}
/* gets rid of navigation and other items for printing */
#sidebar1, #skipNav, .noPrint, #footer {
	display:none;
}
/* changes link color to black */
a:link {
	color: #000;
}
a:visited {
	color: #000;
}
.printOnly {
	display: block;
}
.forReader {
	height: auto;
	width: auto;
	overflow: auto;
	display: block;
}
h1 {
	font-size: 1.6em;
}
h2 {
	color: #000;
	border-bottom: 2px solid #000;
}


/* LEGACY STYLES IMPORTED FROM HTML SITE */
.displayOnly {
	display: none;
}

