/* print.css */

@import "crib.css";

body { 
    background-color: white;
    margin: 0.1em;
}

/* Turn off sections which aren't needed when printing */
.no-print { 
    display: none;
}

/* Turn on sections for print mode */
div.print, p.print { 
    display: block;
}

span.print { 
    display: inline;
}
