@charset "UTF-8";
/* DEFAULT */
@media only screen {
  blockquote {
    margin: 1em;
  }
  blockquote, .italic {
    font-style: italic;
  }
  div, img, .zero {
    border: 0;
    margin: 0;
    padding: 0;
  }
  hr {
    border: 1px solid #0044BB;
    height: 4px;
    margin: 4px 0;
  }
  label, .hidden {
    display: none;
  }
  ol, ul {
    margin: 0;
  }
    table {
        margin: 2vw;
        max-width: calc(600px - 8vw);
        width: 26vw;
    }
    td {
        border: 1px solid #CF1717;
        text-align: center;
        padding: 1px 8px;
    }
    th {
        font-weight: bold;
        text-align: center;
        padding: 1px 8px;
    }
  .b {
    border: 1px solid #CF1717;
      margin: 1px 15px 24px 15px;
    max-width: 600px;
    width: calc(30vw + 2px);
  }
  .c {
    height: auto;
    max-width: 600px;
    width: 30vw;
  }
  .center {
    text-align: center;
  }
  .cz {
    margin: 0;
    text-align: center;
  }
  .flex-around {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .flex-between {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: bold;
  }
    .ir {
        margin: 1px 2vw;
    }
  .justify {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .larger {
    font-size: 24px;
  }
  .left {
    text-align: left;
  }
  .normal {
    font-weight: normal;
  }
  .pointer, #backbutton, #submit {
    cursor: pointer;
    text-decoration: underline;
  }
  .right {
    text-align: right;
  }
  .strong {
    font-weight: bold;
  }
  .white {
    background-color: #FFFFFF;
    }
  #mswd, #mswd a, #mswd p {
    color: #C0C0C0;
    margin: 0;
    text-align: right;
  }
}
/* MEGAPIXEL */
@media only screen and (min-width: 2001px) {}
/* DESKTOP */
@media only screen and (max-width: 2000px) {}
/* MOBILE */
@media only screen and (max-width: 700px) {
  .b {
    width: calc(80vw + 2px);
  }
  .c {
    width: 80vw;
  }
}
/* PRINT */
@media print {
  blockquote, caption, h1, h2, h3, h4, li, p, td, th {
    font-family: 'Times New Roman', Times, serif;
  }
  blockquote, caption, li, p, td, th {
    font-size: 12pt;
    line-height: 15pt;
  }
  h1 {
    font-size: 15pt;
  }
  h2 {
    font-size: 14pt;
  }
  h3 {
    font-size: 13pt;
  }
  h4 {
    font-size: 12pt;
  }
}