/**************************************************************
   AUTHOR:  Pat Heard (fullahead.org)
   DATE:    2006.03.19
   PURPOSE: Styles the page for print.  Techniques adopted from
            http://www.alistapart.com/articles/goingtoprint/
 **************************************************************/

body {
  font: 400 9pt verdana, arial, sans-serif;
  color: #000;
  background: #FFF;
}

h1 {
  font-size: 12pt;
  border-bottom: 1px solid #999;
}

h2 {
  font-size: 12pt;
}

h3 {
  font-size: 12pt;
}

h4, h5, h6 {
  font-size: 12pt;
}

acronym {
  border: 0;
}

a {
  color: #00F;
}
p {
  font-size: 8pt;}


/* Don't display these elements since they're not useful on paper */
#sitename,
#mainmenu,
#leftside,
#rightside,
#img,
#footer {
  display: none;
}

#content {
  width: auto;
  padding: 0;
}



