/*

This stylesheet should contain fixes / hacks to get normal pages to print well.
Print-friendly styles should go into nwp-p.css

*/

/* Get rid of the overflow: hidden */
* {
    overflow: visible !important;
}

/* Get the navigation to show up sort of correctly */
div#nav, div#nav a {
    padding-top: 0 !important;
}

/* Fix some pullquotes */
.pullquote {
    margin-left: 20px !important;
}

/* Pull in the actual logo, sort of */
/* This hack gets rid of the text and replaces it with an image */
/* It does not work on IE6 */
#hdr h1, #hdr h1 a {
    height: auto;
    letter-spacing: -1000em;
    padding-top: 0;
}

#hdr h1 a:before {
    content: url(/img/logo.gif);
}

