/* Set some clean defaults */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
    background: white;
    font-size: 12pt;
}

/* Make sure images fit page width */
img {
    max-width: 100% !important;
}

/* Don't print href's for links */
a[href]:after {
    content: none !important;
}

/* Set a max width to the printable page */
.container {
    width: auto;
    max-width: 511pt; /* 8.5 x 11 width */
    margin: 0 5%;
    padding: 0;
    border: 0;
    float: none !important;
    color: black;
    background: transparent none;
}

/* Hide things not necessary for print
   - nav
   - Top photo
   - All of the footer except for location
*/
#mobile-nav-label,
#mobile-nav-button,
#mobile-nav,
nav,
div.sub-nav-section,
section.inner-photo-highlight,
footer .row div:not(:first-child) {
    display: none !important;
}
