/* 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, .b1, .b2, .b3 {
	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;
}
h2, h3 {
	color: #000;
}
#blueMenuContainer {
	width: 573px;
	margin: 20px auto 20px auto;
}
#blueMenuAreaCol1 {
	float: left;
	width: 253px;
	padding-right: 57px;
}
#blueMenuAreaCol2 {
	float: left;
	width: 253px;
}
.relatedInfoIcon {
	float: left;
	width: 18px;
	height: 18px;
	padding-right: 8px;
	clear: both;
	text-align: right;
}
#footer {
	text-align: center;
	padding: 20px 0px 20px 8px;
	font-size: 0.9em;
}

