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

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

h1 {
  margin-top: 30px;
  font-size: 18pt;
  border-bottom: 1px solid #999;
}

h2 {
  font-size: 16pt;
}

h3 {
  font-size: 14pt;
}

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

acronym {
  border: 0;
}

a {
  color: #00F;
  text-decoration: none;
}

.mailto {
  unicode-bidi:bidi-override;
  direction: rtl;
}

/* Don't display these elements since they're not useful on paper */
.header,
#header,
#menu,
#Smallchat,
hr,
.footer,
.noprint {
  display: none !important;
}

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

#printHeader {
  display: block;
  border-bottom: 1px solid #999;
}

#printURL {
  display: block;
}

.printOnly {
  display: inherit;
}
#blogmain {
  width: 100%;
}

.small {
  font: 400 8pt verdana, arial, sans-serif;
  color: #000;
  background: #FFF;
}

p.printHeight {
  line-height: 180%;
}


