/* CSS Print
**************************************/

/* Don't print these containers */
#header, #footer, #sidebar { display: none; } 

/* Extend these to the full length  */
#main, #content { width: 100%; margin: 0; float: none; }

/* IMPORTANT otherwise the page on print gets chop off after first page */
body, #content { overflow: visible; }

img { border: none; }

/* borders at the bottom of the table so it easy to read the content */
#main table.static th, 
#main table.static td, 
#main table.sortable tbody th, 
#main table.sortable tbody td { border-bottom: 1px solid #AAAAAA; }

/*********************************************************************************/
/* This is for the url footnotes. 
**********************************************************************************/
.printOnly { display: inline; }

/* If the footnoteLinks.js fails to load for some reason, then print urls into the document */
a:link:after, a:visited:after { content: " (" attr(href) ") "; }

/* To print url of the "noted" html document with urls at the bottom */
html.noted a:link:after, html.noted a:visited:after { content: ""; }
/*********************************************************************************/


