/*---------------------------------------------------------------------
Rules to set basic text properties (fonts, colours, padding etc) 
including:

1/ A general body rule to change print fonts and colours - width set 
to fit inside a sheet of A4.

2/Rules to set headings to real print sizes (pts)

Absolute units are OK in print CSS (mm and pts)
---------------------------------------------------------------------*/

body{font-family: Arial, Helvetica, sans-serif;
     font-size: 10pt;
     color: #000000;
     background-color: #FFFFFF;
     width: 170mm; }

h1,h2,h3,h4,h5,h6 {letter-spacing: 0.1em;}
h2, h3 {padding-top: 2mm;}
h1 { font-size: 14pt;}
h2 { font-size: 12pt;}
h3 { font-size: 11pt;}

/*#address, .smallprint { font-size: 8pt; font-style: italic;}
#footer .smallprint { text-align: right; }

#content .hi-lite { font-weight: bold;
                    font-style: italic;
                    color: #000000;}

#content p.hi-lite, #content p {padding: 0mm;}

#content a {color: #000000;}
#address a, #footer a {text-decoration: none;}*/

/*---------------------------------------------------------------------
A rule to prevent the display of the navigation bar (not much
use on a sheet of paper :-)
---------------------------------------------------------------------*/


#navBar {display: none;}
#siteInfo {display: none;}
#pageLinks {display: none;}
#style {display: none;}
#pic {display: none;}
/*---------------------------------------------------------------------
A rule to set the layout for the main content block and center it on 
the page
---------------------------------------------------------------------*/
#masthead {border: none; 
          width: 160mm;
          /*margin: 0mm;*/
          padding: 0mm;
          margin: 0mm auto;}
#content {border: none; 
          width: 160mm;
          /*margin: 0mm;*/
          padding: 0mm;
          margin: 0mm auto;}
         

