/*
 * BAOC
 *
 * This style is for printing and eliminates all of the area surrounding
 * the "content" div, making the "header", "footer", and "menu" divs
 * invisible.
 *
 * Written by Van A. Boughner
 */
@media print {

body {
  background-color: #FFFFFF;
}
.degrade {
  display: none;
}
.printonly {
  display: inline;
}
.screenonly {
  display: none;
}
div#header {
  background-color: #FFFFFF;
  height: 50px;
}
div#header div#search {
  display: none;
}
div#menu {
  display: none;
}
div#content {
  background: #FFFFFF;
  border: none;
  margin: 15px;
  padding: 0;
}
div#footer {
  border-top: 1px solid #BDCCAE;
  margin: 15px;
  padding: 1.0em;
}
div#validations {
  display: none;
}
div#footlinks {
  display: none;
}
div#copyright {
  margin-right: 15px;
}

}  /* @media print */
