/* print.css */

body              {
                    font-family: Verdana, Helvetica, Arial, sans-serif;
                    font-size: 10px;
                    background-color: white;
                    color: black;
                  }
h1,h2,h3,h4,h5,h6 { font-family: Georgia, Times, serif; }

h1                { font-size: 24px; }

h2                { font-size: 18px; }

a:link            { color: black; text-decoration: underline; }
a:visited         { color: black; text-decoration: underline; }
a:hover           { color: red;   text-decoration: underline; }
a:active          { color: black; text-decoration: underline; }

table             {
                    font-size: 10px;
                    border-width: 1px;
                    border-style: solid;
                    border-collapse: collapse;
                  }
table th          {
                    border-width: 1px;
                    border-style: solid;
                    text-align: center;
                  }
table td          {
                    border-width: 1px;
                    border-style: solid;
                    text-align: center;
                  }

#header           { border: 1px solid black;
                    background: white;
                    color: black;
                    text-align: center;
                  }
#body             { border: 1px solid black;
                    padding: 1em;
                    background: white;
                    color: black;
                  }

#footer           {
                    display: none;
                  }
#noprint          {
                    display: none;
                  }
