/* CSS placed here will affect the print output */

/*
 * Suggestion from #mediawiki to use css to hide toc on printing.
 * 10:53 < p858snake> Kamping_Kaiser: put a rule in your print css file
 * 10:57 < p858snake> Kamping_Kaiser: it should be something like ".toc {display:none}" in your [[Mediawiki:Print.css]] page

 * Code to shrink text when printing.
 * http://en.wikipedia.org/wiki/Help:Printable#Personal_customization
 */

/* save ink and paper with very small fonts */
@media print {

    .toc {display:none}

    #footer,
    #content,
    body { font-size: 10pt !important; }
    h1 { font-size: 19pt }
    h2 { font-size: 16pt }
    h3 { font-size: 13pt }
    h4 { font-size: 11pt }
    h5 { font-size: 10pt }
    h6 {
        font-size: 10pt;
        font-weight: normal;
    }
}