/**************************************************************
   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 {
 color: #000;
 background: #FFF;
 font-family: Verdana, Geneva, sans-serif;
 font-size: 15px;
}

h1 {
 margin-top: 30px;
 font-size: 30px;
 font-weight: normal;
 border-bottom-width: 1px;
 border-bottom-style: dotted;
 border-bottom-color: #999;
}

h2 {
 font-size: 22px;
 font-weight: normal;
 color: #666;
}

h3 {
 font-size: 16px;
 font-weight: normal;
}

h4, h5, h6 { font-size: 14px; 
}

acronym {
  border: 0;
}

a { color: #0061aa; 
}

/* Prints the URL after a link in CSS2 supporting browsers */
a:link:after, 
a:visited:after {
   content: " (" attr(href) ") ";
   font-size: 90%;
}


/* Don't display these elements since they're not useful on paper */
#header,
#mainMenu,
.sideMenu,
#footer {
  display: none;
}

#content {
  width: auto;
  margin: 0 8%;
  padding: 0;
}

