#sidebar {
  float: none; /* takes the float off the sidebar to prevent printing problems */
  width: 100%; /* Sets the width to 100% in order to take advantage of all the paper's width. */
}
#nav, #subnav, #footer {
  display: none; /* Sets display to none so that these divs will not print. */
}
#content, #sideContent {
  margin: 0px; /* Takes margins off the div so that it will print with the printer's default margins. */
  width: 100%; /* Sets the width to 100% in order to take advantage of all the paper's width. */
  border-style: none; /* Removes the border to reduce the use of ink. */
}
body {
  font: 12pt "Times New Roman", Times, serif; /* Changes the font to a serif, which is easier to read on paper, and sets the size to 12 points, which is a print unit of measurement. */
  background: #FFFFFF; /* Though most browsers turn off background printing by default, this will ensure that the printed page is white. */
}
#container {
  border-style: none; /* Removes the border to reduce the use of ink. */
}

