@media print {
  html,
  body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    min-width: 0 !important;
    min-height: 0 !important;
    background-color: #ffffff;
  }
  
  #headerContainer,
  #editMenu {
    display: none;
  }
  
  #contentContainer {
/*     position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-0%, -50%);
    margin: 0 auto;
    box-shadow: none; */
    display: block;
    overflow: unset;
    padding: 0;
  }
  
  #contentContainer.landscape {
    top: 0%;
    left: 50%;
    transform-origin: top left;
    transform: scale(.9) translate(-50%, -0%);
  }
  
  #page {
    min-width: 8in;
    min-height: 10.5in;
    max-width: 8in;
    max-height: 10.5in;
    padding: 0;
    margin: .25in;
    box-shadow: none;
  }
}