/* This stylesheet overwrides the site.css file when the document is being printed */

body {
    color: #111;
    background-color: #EEE;
}

h1 {
    color: inherit
}

a {
    text-decoration: none;
}

a:hover {
    color: inherit;
}

.main-container {
    padding: 0;
}

.content {
    background-color: #DDD;
}

.print-only {
    display: block;
}

.web-only {
    display: none;
}


.sublist-heading {
    color: inherit;
    font-weight: bold;
}

.list-prelude {
    color: inherit;
}

/* We dont print with background so we want to remove the spacing required for the 
 * cars so the text is spaced consistently with the rest of the docuemnt
 */
.card {
    border-radius: 0em;
    padding: 0em;
    margin: 0.25em;
}