/* Add Section-to-Print in a div to allow which section you want to print. */
@media print {
  body * {
    visibility: hidden;
  }
  #section-to-print,
  #section-to-print * {
    visibility: visible;
  }
  #section-to-print {
    font-size:1.3em;
    position: absolute;
    left: 0;
    top: 0;
  }
}

/* Remove URL's when Printing */
@media print {
  a[href]:after {
    content: none !important;
  }

  .BreakPage{
    page-break-inside: avoid;
  }  
}

/*
   font-size: 1em;
   .FUCKIT { page-break-before: always; }

#section-to-print h2{
    font-size:1.3em;
    font-weight: bold;
    font-color:#0069aa;
  }

*/