/* =========================
   BASE
========================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #7f3600;
  color: #111;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
  height: 66px;
  width: 100%;
  background: #111;
  border-right: 1px solid #777;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 26px; 
}

.brand {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
    text-align: center;
}

/* =========================
   CURRENT UPDATE
========================= */
.current {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 50px 15px 61px;
}

.current h1 {
  margin: 0 0 15px;
  font-size: 22px;
}

.current h2 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
}

.current div {
  font-size: 14px;
  line-height: 22px;
}

/* =========================
   CONTENT
========================= */
.content {
  width: min(1185px, calc(100% - 28px));
  margin: 0 auto;
  padding-bottom: 50px;
}

.content h2 {
  text-align: center;
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  margin: 0 0 13px;
}

.content h2:not(:first-child) {
  margin-top: 60px;
}

/* =========================
   TABLE CONTAINER
========================= */
.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

/* =========================
   MAIN TABLE
========================= */
table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: #eee;
  table-layout: fixed;
}

th,
td {
  border: 1px solid #444;
  text-align: center;
  vertical-align: middle;
  padding: 11px 8px;
  height: 39px;
  font-size: 14px;

  /* Allow text to wrap */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

th {
  font-weight: 700;
  background: #ffdab6;
}

td {
  background: #eee;
}

/* =========================
   ARCHIVE
========================= */
#archive {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.archive-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 15px;
  table-layout: fixed;
}

.archive-table th,
.archive-table td {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

footer{ text-decoration-color:white;}
/* =========================
   MOBILE
========================= */
@media (max-width: 700px) {

  header {
    height: 58px;
    padding: 0 15px;
  }

  .brand {
    font-size: 17px;
      text-align: center;
  }

  .current {
    padding: 34px 10px 48px;
  }

  .current h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .current h2 {
    font-size: 16px;
  }

  .content {
    width: calc(100% - 18px);
    max-width: 100%;
  }

  .content h2 {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .content h2:not(:first-child) {
    margin-top: 42px;
  }

  /*
     Mobile table:
     Force table to stay inside screen.
  */
  .table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

  th,
  td {
    width: auto;
    height: 36px;
    padding: 7px 4px;
    font-size: 10px;
    line-height: 13px;

    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .archive-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
  }

  .archive-table th,
  .archive-table td {
    padding: 7px 4px;
    font-size: 9px;
    line-height: 12px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/* =========================
   SMALL PHONES
========================= */
@media (max-width: 400px) {

  .content {
    width: calc(100% - 12px);
  }

  .current {
    padding: 28px 8px 40px;
  }

  .current h1 {
    font-size: 18px;
  }

  .current h2 {
    font-size: 15px;
  }

  th,
  td {
    padding: 6px 3px;
    font-size: 8px;
    line-height: 11px;
  }

  .archive-table th,
  .archive-table td {
    padding: 6px 3px;
    font-size: 8px;
    line-height: 11px;
  }
}
/* =========================
   SEO CONTENT / FOOTER
========================= */
.seo-content {
  width: min(900px, calc(100% - 28px));
  margin: 20px auto 0;
  padding: 24px 0 10px;
  color: #fff;
  text-align: center;
}
.seo-content h2 {
  margin: 0 0 12px;
  font-size: 20px;
}
.seo-content p {
  margin: 8px auto;
  max-width: 820px;
  font-size: 14px;
  line-height: 1.7;
}
footer {
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 12px;
  padding: 20px 12px 28px;
}
