/*
 * CSS intended specificly for print media
 * e.g: <link rel=stylesheet type="text/css" media="print" href="templates/default/jspwiki_print.css">
 * This stylesheet mainly hides all the webspecific stuff.
 * Shows content in a print friendly way.
 * Author PhilipVanBogaert, Dirk Fredericx
 */
/* Webpage stuff */
#applicationlogo, #companylogo, .searchbox, .breadcrumbs, #actionsTop, #actionsBottom, #favorites, .tabmenu {
    display: none
    }
/* Wild guess */
body {
    font-size: 10pt
    }
#header .pagename {
    font-size: 23pt;
    font-weight: bold
    }
/* Show links as normal text (maybe show urls at the bottom of the page) */
a {
    text-decoration: none
    }
/* Give the content what it deserves. */
#header, .pagename, #footer, #page {
    width: 100%;
    margin: 0;
    padding-top: 10pt;
    float: none;
    clear: both;
    position: static
    }
#footer {
    margin-top: 1em
    }
/* No borders around nowiki, blocks, gets confusing */
tt {
    border: 0;
    font-size: 1em;
    margin: 0 0.2em
    }
pre {
    border: 0;
    font-size: 1em
    }
/* Make commentbox smaller in printout */
.commentbox {
    font-size: 80%;
    width: 15em
    }
/* Surround TOC with border */
.toc .collapsebox {
    border: 1px solid #000
    }
/* underline links in printout to distinguish them in geyscale printouts */
a {
    text-decoration: none;
    border-bottom: 1px solid blue
    }
/* Use serif (like New Times Roman, since it is easier to read offline, smaller lineheigt */
body {
    font: small serif;
    line-height: 1.2em;
    font-size: 90%
    }
p {
    line-height: 1.2em
    }
/* More to come. */