/*
 * Design Power Print Styles
 *
 * These styles, when included after the screen styles, will result in
 * a page that looks good for printing.
 */
@media print {

body {
  background-color: #FFFFFF;
}
.printonly {
  display: inline;
}
.screenonly {
  display: none;
}
div#header {
  background: #FFFFFF;
}
div#footer {
  background: #FFFFFF;
}
div#buttons, div#menu, div#search {
  display: none;
}

}  /* @media print */
