/* print styles */

/* When a user selects the "Print" function from their web browser, your print.css file is substituted for the default stylesheet. The print.css file will be similar to your global stylesheet, but should contain the changes you wish to see on a printout. In this example, we want to remove the navigation and footer, so we add this line of code:

#navigation, #footer, .noprint { display: none; }

This line tells any html element with id="navigation" or id="footer" or class="noprint" to not show up for the printout (FYI, you get one id per document, but as many class elements as you want [reference]). This means that you could apply the class="noprint" to any part of the page you don't want to see in print. For example, the elements to be removed (corresponding with the above css) look like this:

<td id="navigation"> and <p class="noprint"> */

/* #scrollx, #scrollx60, .noprint { display: none; } */

.noprint { display: none; }

	body, div, table, th, td {
	background-color: transparent;
	color: black;
	margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
	padding: 0;
	border: 0;
	font-family:Times; 
	}
	
/* the following does not cause the print in black ink! */

a { 
	color: black;
	text-decoration: none;
	}

#wrapper, #content {
	width: 100%;
	margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
	padding: 0;
	border: 0;
	float: none !important;
	color: black;
	background: transparent none;
	}

a:link, a:visited, a:link:after {
	color: blue;
	background: transparent;
	/*font-weight: normal;*/
	text-decoration: none;
	}

DIV.center {text-align: center;} /* deprecated but should not be needed */
DIV.CENTER {text-align: center;} /* should be standard */

