/* Due to Michael Kallgren */
/* Media query for printing */
@media only print {
p span {
    page-break-inside: avoid;
  }
.innerBodyContainer {
    display: inline;
    overflow: visible;
  }
.scrollableContainer {
    display: inline;
    overflow-y: visible;
  }
	/* To print menu, comment header selector */
.header, .footer {  /* if id="footer", use .header, #footer */
    display: none;
  } 
}
