/**************************************************************
    FILE:    print.css
    AUTHOR:  William T Krieger (www.stethelreda.org)
    DATE:    Aug 2007
    PURPOSE: Printing directions for the web site.
    Basically, don't print the sideMenu, header or footer.

    ORIGINAL AUTHOR:  Pat Heard (fullahead.org)
    DATE:    2006.03.19
    PURPOSE: Styles the page for print.  Techniques adopted from
             http://www.alistapart.com/articles/goingtoprint/
**************************************************************/

/* Don't display these elements since they're not useful on paper */
#header,
#mainMenu,
.sideMenu,
#footer {
  display: none;
}

#content {
  width: auto;
  margin: 0 8%;
  padding: 0;
}

