@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font: 400 14px/22px 'Open Sans', sans-serif;
  z-index: -100;
  color: #666;
  background-image: url('/chess-board.png');
  background-repeat: repeat;
  background-position: center top;
}
nav {
  width: auto;
  padding: 0;
  margin: 0;
  text-align: center;
  background-color: #060;
  height: 40px;
}
.topnav {
  overflow: hidden;
  background-color: #060;
  margin: 0 auto;
  display: inline-block;
  height: 40px;
  z-index: 100;
}
.topnav a {
  float: left;
  display: block;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  line-height: 40px;
  text-decoration: none;
  font-size: 1.1em;
  height: 40px;
  font-weight: 400;
}
.topnav a:visited, .topnav a.icon:visited {
  background-color: #060;
  color: #fff;
}
.topnav a:hover, .topnav a.icon:hover, .topnav a:active, .topnav a.icon:active {
  background-color: #ddd;
  color: black;
  text-decoration: none;
}
.topnav .mobOnly {
  display: none;
}
.topnav .icon, .topnav .icon2 {
  display: none;
  width: 60px;
  text-align: center;
}
strong {
  color: #444;
  font-weight: 600;
}
aside {
  display: block;
  float: right;
  padding: 15px 20px;
  margin: 15px 30px;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
  text-align: center;
  background-color: #f6f6f6;
  line-height: 1.6em;
}
table {
  margin: 15px 0;
  font-size: 0.9em;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 20px;
}
tr:nth-child(odd) {
  background-color: transparent;
}
tr:nth-child(even) {
  background-color: #f6f6f6;
}
th {
  font-weight: 600;
  border-bottom: solid 1px #ddd;
  padding: 3px 10px;
  text-align: left;
  background-color: #fff;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 100px;
}
td {
  border-bottom: solid 1px #ddd;
  padding: 4px 10px;
}
main p {
  padding: 10px 0;
}
div.notice {
  padding: 10px;
  margin: 10px;
  background-color: #dd0000;
  border-radius: 15px;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 1.1em;
}
.notice strong {
  color: #fff;
}
.logo {
  position: absolute;
  margin: 0 0 0 5px;
  float: left;
  top: 1px;
  left: 1px;
}
.mapouter {
  float: right;
  margin: 0 15px;
}
header {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  height: 60px;
}
header h1 {
  color: #000;
  margin: 15px 0 0 0;
  font: 600 2.6em/48px 'Open Sans', sans-serif;
}
h2 {
  padding: 10px 0 0 0;
  color: #444;
  font: 600 1.3em/24px 'Open Sans', sans-serif;
}
h3 {
  padding: 10px 0 0 0;
  color: #444;
  font: 600 1.1em/24px 'Open Sans', sans-serif;
}
h1 a:link, h1 a:visited, h1 a:hover {
  color: #444;
  text-decoration: none;
}
small {
  font-size: 0.65em;
  color: #000;
  font-weight: normal;
}
main ul {
  padding: 10px 0 10px 25px;
}
main ol {
  padding: 10px 0;
  font-size: 0.9em;
  list-style: none;
}
main ol.list {
  padding: 10px 0 10px 30px;
  font-size: 0.9em;
  list-style:decimal;
}
label {
  display: inline-block;
  width: 125px;
  vertical-align: top;
  padding: 5px 0 0 0;
}
form {
  padding: 15px 0;
  font-size: 0.9em;
  margin: 0;
}
input[type=checkbox] {
  margin: 7px 0 0 0;
  padding: 0;
  width: 25px;
}
textarea {
  width: 550px;
  min-width: 250px;
  min-height: 100px;
  margin: 5px 0;
  border: 1px solid lightgrey;
  overflow: auto;
  font: 100%/1 'Open Sans', sans-serif;
  color: #000;
  padding: 10px 15px;
  border-radius: 4px;
}
input {
  width: 250px;
  margin: 5px 0;
  border: 1px solid lightgrey;
  font: 100%/1 'Open Sans', sans-serif;
  color: #000;
  padding: 5px 15px;
  border-radius: 4px;
  min-height: 35px;
}
input[type=submit], button {
  background-color: #ddd;
  border: none;
  font: 100%/1 'Open Sans', sans-serif;
  color: #000;
  padding: 5px 15px;
  border-radius: 4px;
  min-height: 40px;
  font-weight: bold;
  cursor: pointer;
}
input[type=submit]:hover, button:hover {
  background-color: #060;
  color: #fff
}
input:valid {
  border: 1px solid #4CBB17;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
.vis1 {
  display: none;
}
.nod {
  display: none;
}
.clear {
  clear: both;
}
a img {
  border: none;
}
main a:link, main a:visited {
  color: #008400;
  text-decoration: none;
}
main a:hover, main a:active, main a:focus {
  color: #F90;
  text-decoration: underline;
}
footer a:link, footer a:visited {
  color: #767676;
  text-decoration: none;
}
footer a:hover, footer a:active, footer a:focus {
  color: #999;
  text-decoration: underline;
}
.container {
  position: relative;
  width: 924px;
  background-color: #fff;
  padding: 0;
  overflow: auto;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
main {
  padding: 15px 15px;
  clear: both;
  width: auto;
  margin: 0 10px;
  min-height: 180px;
  text-align: left;
  display: block;
}
figure {
  margin: 10px 0 30px 65px;
  padding: 0;
  text-align: center;
  display: inline-block;
}
figcaption {
  clear: both;
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 0.8em;
  color: #999;
}
.bottomnav {
  padding: 0;
  margin: 0;
  background-color: #060;
  text-align: center;
}
.bottomnav ul {
  width: 15%;
  padding: 5px;
  margin: 0;
  display: inline-block;
  line-height: 1.5em;
  font-size: 0.8em;
  list-style: none;
  color: #fff;
  text-align: left;
}
.bottomnav li {
  text-align: left;
  width: 100%;
}
footer {
  text-align: center;
  font-size: 0.9em;
  color: #767676;
  margin: 15px;
  padding: 15px 0;
  clear: both;
  line-height: 24px;
}
img.right {
  float: right;
  margin: 15px 30px;
  clear: both;
}
@media screen and (max-width: 1400px) {
  .container {
    font-size: 1em;
  }
}
@media screen and (max-width: 924px) {
  .container {
    width: 100%;
    overflow: auto;
    font-size: 1em;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .container {
    box-shadow: none;
  }
  body {
    background-image: none;
  }
}
@media screen and (max-width: 650px) {
  nav {
    text-align: left;
    height: 50px;
  }
  .topnav a {
    height: 50px;
    line-height: 50px;
    font-size: 1.2em;
    padding: 0 15px;
  }
  .topnav a:not(:first-child), header {
    display: none;
  }
  .topnav a:first-child {
    font-size: 1.5em;
  }
  .topnav a.icon, .topnav.responsive a.icon2 {
    float: right;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    text-align: center;
    font-size: 2.6em;
    font-weight: 400;
    z-index: 100;
  }
  .topnav .mobOnly {
    display: block;
  }
  .topnav .nod {
    display: inline;
  }
  .topnav.responsive {
    position: fixed;
  }
  .topnav.responsive .icon {
    display: none;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav {
    position: fixed;
    top: 0;
    width: 100%;
    height: auto;
  }
  .topnav a.icon:hover, .topnav a.icon:active, .topnav a.icon2:hover, .topnav a.icon2:active {
    background-color: #060;
    color: #fff;
    text-decoration: none;
  }
  .topnav a:hover, .topnav a:active, .topnav.responsive a:hover, .topnav.responsive a:active {
    background-color: #060;
    color: #fff;
    text-decoration: none;
  }
  .mapouter {
    float: none;
    margin: 10px auto;
  }
  figure {
    float: none;
    width: 100%;
    margin: 20px 0 0 0;
  }
  aside {
    float: none;
    padding: 15px 2px;
    display: block;
    margin: 15px auto;
  }
  img.right {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }
  img.hid {
    display: none;
  }
  main {
    margin: 0;
  }
  input, textarea {
    width: 100%;
  }
  td, th {
    padding: 3px 2px;
  }
  th {
    background-color: #fff;
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 50px;
  }
  .bottomnav {
    text-align: center;
    padding: 5px 10px;
  }
  .bottomnav ul {
    display: block;
    width: 95%;
    padding: 0 5px;
  }
  table {
    width: 100%;
    max-width: 100%;
    overflow: auto;
  }
}
@media print {
  body {
    background-image: none;
    color: #000;
  }
  nav, .bottomnav, footer, .nop, .logo, .notice {
    display: none;
  }
  .container {
    box-shadow: none;
  }
  h1, h2, h3, h1 a:link, h1 a:visited, strong {
    color: #000;
  }
  a:link, a:visited {
    text-decoration: none;
    color: #000;
  }
  td {
    page-break-inside: avoid;
  }
  :root {
    -webkit-print-color-adjust: exact;
  }
}
