HTML, BODY {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Open Sans";
}

.form-field .input {
  display: inline-block;
  position: relative;
}

.form-field .ac-options {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: -1px;
  border: 1px solid #444;
  background: #FFF;
  width: 100%;
  display: none;
}
.form-field .ac-options LI {
  padding: 5px;
}

.form-field.auto-complete input:focus ~ .ac-options {
  display: block;
}

.form-field.auto-complete:focus-within .ac-options {
  display: block;
}

.form-field.auto-complete .ac-options LI {
  padding: 0px;
  cursor: pointer;
  border-bottom: 1px solid #AAA;
  position: relative;
}
.form-field.auto-complete .ac-options LI .number {
  background-color: #DDD;
  font-size: 75%;
  padding: 5px;
  width: 50px;
  border-right: 1px solid #BBB;
  display: inline-block;
  vertical-align: top;
  height: 28px;
}
.form-field.auto-complete .ac-options LI .name {
  vertical-align: top;
  display: inline-block;
  padding: 5px;
  height: 28px;
}
.form-field.auto-complete .ac-options LI.active {
  background-color: #AABBFF;
}
.form-field.auto-complete .ac-options LI:hover {
  background-color: #FFBB22 !important;
}

.form-field {
  padding: 4px 0px;
}
.form-field LABEL {
  width: 200px;
  display: inline-block;
}
.form-field INPUT {
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
  appearance: none;
  border: 1px solid #aaf;
}
.form-field INPUT:read-only {
  opacity: 0.8;
}
.form-field BUTTON {
  appearance: none;
  font-weight: inherit;
  font-size: 18px;
  font-family: inherit;
  padding: 6px 12px;
  background-color: #44448A;
  color: #FFFFFF;
  border: 0px none;
  border-radius: 4px;
  cursor: pointer;
}

.data .form-field INPUT:read-only {
  opacity: 0.5;
}

A > BUTTON[type=button] {
  appearance: none;
  font-weight: inherit;
  font-size: 18px;
  font-family: inherit;
  padding: 6px 12px;
  background-color: #44448A;
  color: #FFFFFF;
  border: 0px none;
  border-radius: 4px;
  cursor: pointer;
}

.html-list {
  border-spacing: 0;
}
.html-list TD, .html-list TH {
  padding: 2px 10px 2px 6px;
}
.html-list THEAD TH {
  background-color: #FFBB22;
}
.html-list THEAD TH:first-child {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.html-list THEAD TH:last-child {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.html-list THEAD .space {
  width: 40px;
}
.html-list TBODY .action {
  text-align: center;
}
.html-list TBODY .action A {
  color: inherit;
}

HTML, BODY {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

TH {
  text-align: left;
}

.hidden {
  display: none;
}

.top-area {
  height: 80px;
  position: relative;
  padding: 16px;
}
.top-area .logo {
  color: #cc415a;
}
.top-area .logo A {
  color: inherit;
  text-decoration: inherit;
  font-size: 30px;
  font-weight: bold;
}
.top-area .logo IMG {
  height: 50px;
  vertical-align: middle;
}
.top-area .logo SPAN {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.top-area .logo .motto {
  font-weight: 100;
  font-size: 16px;
  font-style: italic;
}
.top-area .menu {
  position: absolute;
  right: 0px;
  top: 40px;
  list-style-type: none;
  padding: 0;
}
.top-area .menu LI {
  display: inline-block;
}

.footer {
  height: 200px;
}
.footer .menu LI {
  display: inline-block;
}

.main-wrap {
  display: flex;
  flex: 1;
  overflow: hidden;
}
.main-wrap .main {
  max-height: 100vh;
  overflow-y: scroll;
  flex: 1;
  background-color: #EEE;
}
.main-wrap .main .main-header {
  padding: 20px;
  background-color: #FFBB22;
  border-bottom: 2px solid #bb8100;
}
.main-wrap .main .main-header H1 {
  margin: 0px;
}
.main-wrap .main .main-content {
  padding: 20px;
}

.menu-area {
  position: relative;
}
.menu-area .menu {
  list-style-type: none;
  font-size: 14px;
  width: 110px;
  background-color: #CCC;
  height: 100%;
  margin: 0px;
  padding: 0px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
}
.menu-area .menu LI {
  display: block;
  border-bottom: 1px solid #DDD;
  margin-left: 4px;
  height: 80px;
}
.menu-area .menu LI I {
  font-size: 32px;
  display: block;
  text-align: center;
  height: 36px;
  margin-top: 5px;
}
.menu-area .menu LI.active {
  background-color: #44448A;
  color: #FFFFFF;
  margin-left: 0px;
  border-left: 4px solid #FFBB22;
}
.menu-area .menu A {
  text-decoration: inherit;
  color: inherit;
  display: block;
  padding: 10px 0px;
}
.menu-area .sub.menu {
  background-color: #44448A;
  color: #FFFFFF;
  width: 160px;
  text-align: left;
  padding: 0px 5px;
}
.menu-area .sub.menu LI {
  padding-left: 10px;
  margin-left: 0px;
  height: auto;
}
.menu-area .sub.menu LI I {
  display: inline-block;
  font-size: 14px;
  margin-right: 4px;
  padding: 0px;
  height: auto;
}
.menu-area .sub.menu A {
  padding: 10px 0px;
}
.menu-area .sub.menu LI.active {
  color: #FFBB22;
  border-left: 0px none;
}

UL.columns LI {
  display: block;
}
UL.columns LI .column {
  display: inline-block;
}
UL.columns.headers LI {
  display: inline-block;
}
UL.columns.auto-fit INPUT {
  width: 100%;
}

TABLE.input-grid TR.active INPUT {
  background-color: #fff2d5;
}
TABLE.input-grid TD INPUT {
  width: 100%;
}

/*# sourceMappingURL=stylesheet.css.map */
