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. */}#container {	background: url(none); /* Removes the background image from the container div. */}#header {	background: url(none); /* Removes the tiling background image from the header div. */}#sidebar {	float: none; /* Removes the float from the sidebar as many printers do not understand floated divs. */	width: 100%; /* Changes the width from 227 pixels to the full width of the printed page. */}#sidebar h3, #sidebar h4, #sidebar p {	color: #000; /* Changes the sidebar text color from white to black. */	background: url(none); /* Removes all decorative and background images from text. */	padding-left: 0px; /* Removes the left padding that had been reserved for the background images. */}#sidebar ul {	display: none; /* Hides the list with link images. */}#sidebar form {	display: none; /* Hides the search form. */}#mainContent {	width: 100%; /* Sets the mainContent div to 100% of the printed page. */}#mainContent h2 {	background: url(none); /* Removes the decorative background image from the mainContent h2. */	padding-left: 0px; /* Removes the left padding that had been reserved for the background images. */	margin-left: 0px; /* Removes the 10 pixel left margin from the h2. */}#mainContent p, #mainContent h3 {	margin-left: 0px; /* Sets the left margins on mainContent text back to 0. The printer will control text margins. */}#footer_wrapper {	display: none; /* Hides the entire footer region. */}
