@charset "UTF-8";
/* CSS Document */
html, body {
  -webkit-text-size-adjust: none;
  font-family: "Times New Roman", Times, serif;
  margin: 4px;
}
h1 {
  margin-left: 5px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  color: white;
  padding-top: 15px;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.navigation {
  text-align: center;
}
.navigation a {
  display: inline-block;
  width: 200px;
  margin: 0 auto 16px;
  padding: 8px 16px;
  text-decoration: none;
  color: white;
  background-color: #8c8c8c;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: background-color .3s ease-out;
  -moz-transition: background-color .3s ease-out;
  -ms-transition: background-color .3s ease-out;
  -o-transition: background-color .3s ease-out;
  transition: background-color .3s ease-out;
}
.navigation a:hover {
  background-color: #777;
  cursor: pointer;
}
.navigation .spacer {
  display: inline-block;
  width: 12px;
}
.navigation a.disabled {
  pointer-events: none;
  cursor: default;
  background-color: #2381B3;
}
.small {
  font-size: 11px;
}
.none {
  color: rgba(0, 0, 0, 0);
}
.nowrap {
  white-space: nowrap;
}
