@media print { 
 /* All your print styles go here */
  .hidden-print {
    display: none !important;
  } 

  .print-no-ellipsis {
    overflow: auto !important;
    text-overflow: unset !important;
    white-space: normal !important;
  }

  #header-nav {
    display: none !important;
  }

  .sub-navigation {
    display: none !important;
  }

  body {
    padding-top: 0px !important;
  }
}