* {box-sizing: border-box;}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

iframe {
  width: 100%;
  border: 0;
}

.header-iframe {
  height: 115px;
}

.header {
  box-shadow: 0px 1px 2px rgba(0,0,0,0.25);
  width: 100%;
}

.container {
  margin: auto;
  overflow-x: auto;
  background-color: #f1f1f1;
  padding: 0.5em;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.logo {
  width: 80px;
  height: 80px;
  margin-right: 1em;
}

.header-links {
  display: flex;
  flex-shrink: 0;
}

.header-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  font-size: 1.1em;
  color: black;
  margin-right: 2em;
}

.header-link:hover {
  text-decoration: underline;
}

.content {
  padding: 2em;
  margin: auto;
  max-width: 45em;
}

.separator::before {
  content: '/';
}

h1 {
  font-size: 1.4em;
  padding-bottom: 1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-iframe {
  height: 250px;
}

.footer {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
}

.footer-column {
  margin-right: 1.5em;
}

label {
  width: 100%;
  display: block;
  color: #303050;
}

input[type="text"] {
  width: 100%;
  margin: 0.25em 0 1.0em 0;
  border: 0;
  font-size: 1em;
  color: #303050;
  background-color: #efeff3;
  border-bottom: 2px solid #9090b0;
  padding: 8px;
}

img {
  max-height: 800px;
}

@media screen and (max-width: 720px) {
  .container {
    justify-content: flex-start;
  }
}

@media print
{
  .noprint { display:none; }
  label { page-break-before: avoid; }
  .pagebreaker { page-break-after: always; }
}