/* 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. */
}
body, td, th 
{
	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. */
}
/* gets rid of navigation and other items for printing */
#navList, #skipNav, .noPrint,#menu {
	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;
}
.altForReader {
	position: relative;
	top: auto;
}

