/* CSS rules for printing. */


/* Text is black on white, easy for printers. */
body {
    color: black;
    background-color: white;
}

/* Same goes for links. */
a,
a:link,
a:visited,
a:hover,
a:active {
    color: black;
}

/* Don't display logo and navigation. */
#logo {
    display: none;
}
#links {
    display: none;
}
/* Use full width of the page. */
#content {
    width: 100%;
    margin: 0px;
    padding: 0px;
    float: none;
}
