/* 
Filename: print.css
Last Modified on 25-Jul-2003 By Linc Spaulding
For use in TPC website root directory
Purpose: controls styles when pages are printed (is respected by IE only (Netscape ignores)
*/
A {color : DarkBlue;
text-decoration : none;}
.printOnly {visibility:visible}
.screenOnly, .displayonly {
        display:none;
        visibility:hidden;
        font-size:0pt;
        width:0pt;
        height:0pt;}
.newPage, .pageBreak {page-break-before:always;}

/* Do not need to limit to a specific width, but must still pad to keep from truncating content  */
.padded {padding: 2em; text-align:left}
.paddedwide {padding: 2em; text-align:left}

/* This setting can be used to suppress top & bottom padding, yet keep content within screen boundaries */
.horiz-padded{padding-top:0;padding-bottom:0;padding-left:2em;padding-right:2em;}


