/* Printing */

/* Page Break for Printing */
/* e.g. use: <br class="pagebreak"> or <p class="pagebreak">*/
/* pagebreak-after is a CSS-2 property and is not yet supported by Netscape 6 (June 2003) */
.pagebreak {pagebreak-after: always}

/* Don't print Left or Right Columns */
#leftcolumn { display: none; }
#rightcolumn { display: none; }

#checkoutleftcolumn { display: none; }
#checkoutrightcolumn { display: none; }

/* Don't print top right, and top centre banner */
#topbanners { display: none; }
#topcentrebanner { display: none; }

/* Use to stop misc elements from printing */
#noprint { display: none; }

