@media print {

  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  /* Page */
  @page {
    margin: 0.75in;
    size: a3;
  }

  body {
    background: #fff;
    color: #000;
    font: 12pt/1.5 Georgia, "Times New Roman", serif;
    padding: 1rem;
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .badge {
    border: 1px solid #000;
  }

  /* Remove app chrome */
  header,
  nav,
  footer,
  #utilityNav,
  .navbar,
  .btn,
  .breadcrumb,
  .pagination,
  .modal,
  .carousel {
    display: none !important;
  }

  .page-header-basic, .page-title-banner.h1, h1.page-title-banner {
    background: white !important;
    color: black !important;
    text-align: left;
}

  /* Layout reset (Bootstrap-safe)
  .container,
  .container-fluid,
  .row,
  [class*="col-"] {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
 */

   abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  /* Typography */
  h1, h2, h3,h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }

  h1 { font-size: 20pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 14pt; }

  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }

  /* Lists */
  ul, ol {
    margin: 0 0 1em 1.25em;
  }

  /* Links */
   a:not(.btn) {
    color: #000;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  /* Tables */
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table thead {
    display: table-header-group;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  /* Images */
  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  /* Ensure hidden UI content becomes visible */
  [hidden],
  .collapsed {
    display: block !important;
    height: auto !important;
  }

}