@charset "utf-8";
/**
 * Print Styles
 *
 * Styles to display when the web page is printed.
 *
 * @project    Washington Center
 * @version    1.0
 * @package    xhtml 1.1 strict+css
 * @author     Justin McDowell
 * @copyright  2012 The Evergreen State College
 * @cssdoc     v0.2.22
 */

/**
 * Hidden items
 *
 * These are standard page elements that would display on a screen, but that we don't necessarily want to print out.
 * (Justin: As of my employment, all of the header information has been removed, but we should really retain the logo at the very least
 * and possibly some other branding elements.
 *
 * @section hidden
 */
    #nav,
    #sidebar{
        display:none;
    }


/**
 * Visible items
 *
 * Converse to section hidden, these are bits that don't show up on screen that are useful for showing up in print.
 *
 * @section visible
 */
/*Note: This section is currently empty. Currently the styles below this block are not included in section "visible".*/

h1{
    background-image:none;  /*backgrounds & borders;*/
    color:#000;             /*typography*/
}

#content-wrapper,
#content,
#main-content{
    width:auto;
}

#content-wrapper{
    background-image: none;
}

#page-title{
    padding:0;
}