html {
  font-size: 100%;
  position: relative;
  min-height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--body-bg-color);
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  line-height: var(--line-height-computed);
  padding: 0;
  width: 100%;
  height: 100%;
}

textarea {
  resize: vertical;
}

div.ajax-loader {
  background: url("../images/ajax-loader.gif") scroll no-repeat 50% 50% transparent;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
}

nav {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  font-variant: small-caps;
  height: var(--navbar-height);
  border: 0;
}

.navbar {
  background-color: var(--navbar-default-color-bg);
  color: var(--base-white);
  margin: 0;
}

.navbar-nav > li > a {
  background-color: var(--navbar-default-color-bg);
  color: var(--base-white);
  text-decoration: none;
}

.navbar-nav > li > .dropdown-menu {
  border-radius: 0px;
}

.navbar-nav .open .dropdown-menu > li {
  background-color: var(--navbar-default-color-bg);
  min-height: var(--navbar-height)/2;
}

.liDivider {
  border-bottom: 1px solid var(--navbar-height);
}

/*
.navbar-nav .open .dropdown-menu > li:nth-of-type(3) {
	border-bottom: 1px solid var(--navbar-height);
}
*/
.navbar-nav .open .dropdown-menu > li > a {
  background-color: var(--navbar-default-color-bg);
  color: var(--base-white);
  text-decoration: none;
  border-bottom: 0px solid var(--navbar-height);
}

.navbar-nav .open .dropdown-menu > li > a:focus {
  background-color: var(--navbar-default-color-bg);
}

.navbar-nav .open .dropdown-menu > li > a:hover {
  background-color: var(--accent-red);
}

ul.dropdown-menu {
  background: var(--navbar-default-color-bg);
  color: var(--base-white);
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -1px;
  border: 1px solid var(--navbar-height);
  border-radius: 0;
}

.dropdown-menu {
  border-top: 1px solid var(--body-bg-color);
  margin-left: 0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 1px;
  /*-webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 0 6px 6px 6px;*/
  border: 1px solid var(--body-bg-color);
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: var(--base-white);
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: var(--navbar-default-color-bg);
}

nav.navbar.navbar-inverse.navbar-fixed-top {
  margin-top: 0;
}

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  color: var(--base-white);
  width: auto;
}

.navbar-inverse {
  background-color: var(--navbar-default-color-bg);
  border: 0;
  border-color: var(--navbar-default-color-bg);
  border-radius: 0;
  min-height: calc(var(--navbar-height) / 2);
}

.navbar-inverse .navbar-collapse {
  border-color: var(--navbar-default-color-bg);
}

.navbar-inverse .navbar-nav > li > a {
  color: var(--base-white);
  text-decoration: none;
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-inverse li:hover a:hover {
  background-color: var(--accent-red);
  color: var(--base-white);
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
  color: var(--base-white);
  background-color: var(--accent-red);
}

@media screen and (min-width: 768px) {
  #menu_Menu,
  #menu_Navbar-SM {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-collapse.in {
    overflow-y: auto;
  }
  button.navbar-toggle.btn-md:hover,
  button.navbar-toggle.btn-md:focus {
    background-color: var(--accent-red);
  }
  .nav > li {
    width: var(--navbar-width);
    text-indent: 1em;
  }
  .nav > li > a {
    display: inherit;
  }
  .nav > li > a::before {
    content: "";
  }
  .nav.navbar-nav > li > a {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-variant: small-caps;
    line-height: 20px;
    width: var(--navbar-width);
  }
  .navbar-header {
    height: var(--navbar-height);
    background-color: var(--navbar-default-color-bg);
  }
  .navbar-toggle {
    color: var(--base-white);
    position: relative;
    float: left;
    margin: 0 30px 0 0;
    padding: 3px 10px;
    background-color: var(--navbar-default-color-bg);
    background-image: none;
    border: 0 solid transparent;
    border-radius: 0;
    height: var(--navbar-height);
  }
  .navbar-toggle:focus,
  .navbar-toggle:hover {
    background-color: var(--accent-red);
    outline: 0;
  }
  .navbar-toggle:active {
    background-color: var(--accent-red);
  }
  .navbar-inverse .navbar-nav > li > a {
    color: var(--base-white);
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .navbar-nav {
    margin: 0 -15px;
  }
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    height: var(--navbar-height);
    margin-top: 0;
    background-color: transparent;
    border: 0;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    background-color: var(--navbar-default-color-bg);
    color: var(--base-white);
    text-decoration: none;
    line-height: 20px;
    min-height: var(--navbar-height);
    width: auto;
    padding: 5px 15px 5px 10px;
  }
  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-color: var(--accent-red);
  }
  .dropdown-menu {
    background-color: var(--navbar-default-color-bg);
    color: var(--accent-red);
    width: auto;
    height: var(--navbar-height);
    margin: 0;
  }
  .dropdown-menu ul {
    width: auto;
    color: var(--accent-red);
  }
  .dropdown-menu > ul {
    min-width: var(--navbar-width);
  }
  .dropdown-menu > li {
    min-height: calc(var(--navbar-height) / 2);
    margin-left: -2px;
  }
  .dropdown-menu > li > a {
    background-color: var(--navbar-default-color-bg);
    color: var(--base-white);
    text-decoration: none;
    min-height: calc(var(--navbar-height) / 2);
    padding: 5px 10px 5px 0;
  }
  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus {
    background-color: var(--accent-red);
  }
  .navbar-static-top .navbar-collapse,
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    padding-right: 0;
    padding-left: 0;
  }
  .navbar-fixed-top .navbar-collapse,
  .navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
  }
  #menu_UL-SM {
    max-height: 1500px;
  }
  #menu_Navbar-SM.navbar-collapse.collapse.in {
    background-color: var(--navbar-default-color-bg);
    color: var(--accent-red);
    width: var(--navbar-width);
    margin-left: 0;
  }
  #menu_Home,
  #menu_Navbar-XL {
    display: none;
  }
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-family-serif);
  font-weight: 700;
  color: var(--accent-red);
  padding: 0;
  margin: 0;
}

h1 {
  font-size: 2em;
  line-height: 1.6;
}

h2 {
  font-size: 1.7em;
  text-align: center;
}

h3 {
  font-size: 1.4em;
  margin-bottom: 0.25em;
}

h4 {
  font-size: 1.2em;
  margin-top: 15px;
}

h5 {
  font-size: 1.2em;
  line-height: 1.5;
}

h1.center, h2.center, h3.center, h4.center, h5.center {
  text-align: center;
}

h1.indent, h2.indent, h3.indent, h4.indent, h5.indent {
  margin-left: 1.25em;
}

p {
  line-height: 1.5em;
  margin: 0.5em 0;
}

p.indent {
  text-indent: 1.5em;
  margin-right: 10px;
}

a:link {
  text-decoration: underline;
  color: var(--brand-dark);
  outline: 0;
}

a:visited {
  text-decoration: underline;
  color: var(--accent-red);
  outline: 0;
}

a:hover,
a:active {
  background-color: var(--table-rollover);
  color: var(--base-white);
  outline: 0;
}

hr {
  height: 3px;
  border: 0;
  margin: 10px 0;
  background-color: var(--brand-dark);
}

hr.divider {
  color: var(--base-white);
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
}

div.indent {
  margin-left: 2em;
}

div.spacer {
  height: 10px;
}

div.spacer_sm {
  height: 5px;
}

div.tab_space {
  margin-right: 10px;
}

div.search {
  width: 48%;
  border-left: 4px solid var(--brand-dark);
  padding-left: 10px;
}

.colText {
  -moz-column-count: 4;
       column-count: 4;
}

.ancestor {
  font-weight: 700;
  color: var(--accent-red);
}

#blockquote {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-size: 1.2em;
}

.bibliography,
.bolditalic {
  font-style: italic;
  font-weight: 700;
}

.caption {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-size: 0.9em;
  color: var(--base-black);
  text-align: center;
}

.textblockquote {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.25em;
  margin-left: 0;
  margin-right: 0;
}

.notethis {
  font-style: italic;
  font-weight: 700;
  color: var(--accent-red);
}

.required, .warning {
  font-weight: 700;
  color: var(--accent-red);
}

.required_field {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-base);
  font-style: italic;
  font-weight: 700;
  color: var(--accent-red);
  text-align: center;
  margin-top: 3px;
}

.validated {
  font-weight: 700;
  color: var(--accent-green);
}

.whisper {
  font-size: 0.8em;
}

.wrong {
  text-decoration: line-through;
}

label {
  font-family: var(--font-family-sans-serif);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
}

input, textarea, option, select {
  background-color: var(--base-white);
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-computed);
  font-weight: normal;
  padding-left: 0.2em;
  height: 21px;
  border: 1px solid var(--base-black);
}

input[type=checkbox], input[type=radio] {
  margin-top: 0;
  outline: none;
}

div.outer,
#admin_Login,
#main_Form {
  background-color: var(--form-bg-color);
  padding: 5px;
  font-size: 12px;
  width: 100%;
  position: relative;
  border-width: 5px;
  border-style: solid;
  border-radius: 0;
  border-top-color: var(--photo-border-top-color);
  border-left-color: var(--photo-border-left-color);
  border-right-color: var(--photo-border-right-color);
  border-bottom-color: var(--photo-border-bottom-color);
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

#admin_Login {
  font-weight: 700;
  margin-top: 100px;
}

.form-border {
  border: 1px solid var(--brand-dark);
  padding-top: 5px;
}

.form-group {
  display: inline-block;
  margin-bottom: 15px;
  vertical-align: middle;
}

.form-group:before,
.form-group:after {
  display: table;
  content: " ";
}

.form-group:after {
  clear: both;
}

.ui-autocomplete .ui-menu-item {
  font-size: 12px;
}

.tab-content > .tab-pane {
  display: none;
  border: 1px solid var(--brand-dark);
  padding-top: 5px;
  margin-top: -1px;
}

.tab-content > .active {
  display: block;
}

.nav-tabs {
  border-bottom: 0px solid var(--brand-dark);
}

.nav-tabs > li {
  float: left;
  margin-bottom: 0px;
  margin-left: 0;
  margin-right: 0;
}

.nav-tabs > li > a {
  background-color: var(--tab-default-body-color);
  color: var(--tab-default-text-color);
  height: 24px;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base)-2;
  font-weight: bold;
  text-decoration: none;
  line-height: 0.2em;
  padding: 10px 8px;
  border-color: var(--tab-default-border-color);
  border-radius: 8px 8px 0 0;
  margin-right: 5px;
}

.nav-tabs > li > a:hover {
  background-color: var(--tab-hover-body-color);
  color: var(--tab-hover-text-color);
  border-color: var(--tab-hover-border-color);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus {
  background-color: var(--tab-active-body-color);
  color: var(--tab-active-text-color);
  cursor: default;
  border-color: var(--tab-active-border-color) var(--tab-active-border-color) var(--tab-active-body-color);
}

.nav-tabs > li.active > a:hover {
  background-color: var(--tab-active-body-color);
  color: var(--tab-active-text-color);
  cursor: default;
  border-color: var(--tab-active-border-color) var(--tab-active-border-color) var(--tab-active-body-color);
}

.list_db > a {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-md);
  font-weight: 700;
  text-decoration: none !important;
  line-height: 1.1em;
  color: var(--brand-dark);
  margin-left: 10px;
}

.list_db > a:hover {
  background-color: var(--accent-red);
  color: var(--base-white);
}

.buttonMid {
  width: 66px;
  height: 24px;
  padding: 0px;
  margin: 0 5px 0 5px;
  color: var(--base-white);
  font-size: 14px;
  font-weight: bold;
  font-variant: small-caps;
  font-family: var(--font-family-sans-serif);
  background: var(--table-button);
  border: 1px solid var(--table-button);
}

.buttonMid:hover,
.buttonMid:focus,
.buttonMid:active {
  background-color: var(--accent-red);
  color: var(--base-white);
  border: 0px;
  border-style: solid;
  border-color: var(--accent-red);
  outline: none;
  cursor: pointer;
}

.tabberlive .tabbertabhide {
  display: none;
}

.tabberlive {
  margin-top: 1em;
}

ul.tabbernav {
  margin: 0;
  padding: 1px 0;
  border-bottom: 1px solid var(--brand-dark);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-family-sans-serif);
}

ul.tabbernav li {
  list-style: none;
  margin: 0;
  display: inline;
}

ul.tabbernav li a {
  padding: 3px 0.5em;
  margin-right: 5px;
  border: 1px solid var(--brand-dark);
  border-radius: 8px 8px 0 0;
  background: var(--base-color-pct-20);
  text-decoration: none;
}

ul.tabbernav li a:link {
  color: var(--tab-border-top);
}

ul.tabbernav li a:visited {
  color: var(--tab-border-top);
}

ul.tabbernav li a:hover {
  color: var(--base-white);
  background: var(--tab-border-top);
  border-color: var(--tab-border-top);
}

ul.tabbernav li.tabberactive a {
  background-color: var(--tab-border-bottom);
  border-bottom: 1px solid var(--tab-border-bottom);
}

ul.tabbernav li.tabberactive a:hover {
  color: var(--base-white);
  background: var(--tab-border-top);
  border-bottom: 1px solid var(--tab-border-top);
}

.tabberlive .tabbertab {
  padding: 5px;
  border: 1px solid var(--tab-border-top);
  border-top: 0;
}

.tabberlive .tabbertab h2 {
  display: none;
}

.tabberlive .tabbertab h3 {
  display: none;
}

.tabberlive#tab2 .tabbertab {
  height: 200px;
  overflow: auto;
}

/*
 *	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 *
 *	CSS elemnts for dataTables alphabet_Search-2.0
 *
 *	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 */
div.alphabet {
  font-family: "Roboto Mono", Verdana, "sans-serif";
  font-size: var(--table-font-size);
  line-height: 20px;
  display: table;
  width: 100%;
  margin: 0;
}

#myAlphabet.alphabet {
  align-items: center;
  margin-bottom: 1rem;
}

div.alphabet span {
  display: table-cell;
  background-color: var(--ltr-active);
  color: var(--base-white);
  text-align: center;
  width: 3.7037%;
  padding-bottom: 2px;
  border-left: 2px solid var(--body-bg-color);
  border-right: 2px solid var(--body-bg-color);
  cursor: pointer;
}

div.alphabet span.active {
  background: var(--accent-red);
  color: var(--base-white);
  text-decoration: none;
}

div.alphabet span.active:hover {
  background-color: var(--accent-red);
}

div.alphabet span.empty {
  background: var(--ltr-empty);
}

div.alphabet span.empty:hover {
  text-decoration: none;
}

div.alphabet span.empty:nth-last-child(1) {
  border-right: 0;
}

div.alphabetInfo {
  font-size: var(--table-font-size);
  font-weight: 500;
  display: block;
  position: absolute;
  border-radius: 0px;
  color: var(--base-black);
  top: -1.25em;
  height: 1.8em;
  padding-top: 0.1rem;
  padding-left: 3px;
  text-align: center;
  z-index: 1;
}

/*
 *	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 *
 *	CSS elemnts to enhance dataTables-2.0
 *
 *  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 */
table.center {
  margin-left: auto;
  margin-right: auto;
}
table.dataTable {
  margin: 0 auto;
  clear: both;
  width: 100%;
}
table.dataTable thead > tr > th {
  background-color: var(--table-head-bg);
  color: var(--base-white);
  font-size: var(--table-font-size);
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 1px;
  height: var(--table-line-height);
  padding: 1px 6px;
  border-bottom: 1px solid var(--base-black);
  cursor: pointer;
  *cursor: hand;
}
table.dataTable thead > tr > th.center {
  font-size: var(--table-font-size);
  font-weight: 700;
  height: var(--table-line-height);
  text-align: center;
}
table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after {
  opacity: 1;
  color: var(--base-white);
}
table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after, table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before, table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after {
  opacity: 0;
  color: var(--base-white);
}
table.dataTable thead > tr > th.udatal {
  text-align: left;
  white-space: nowrap;
  padding-left: 0.25em;
}
table.dataTable thead > tr > th.udatac {
  text-align: center;
}
table.dataTable thead > tr > th.udatar {
  text-align: right;
  padding-right: 0.5em;
}
table.dataTable thead > tr > th.udatas {
  text-align: right;
  padding-right: 10px;
}
table.dataTable tfoot > th {
  height: 0;
  padding: 0;
  border-top: 1px solid var(--base-black);
  font-weight: 700;
}
table.dataTable tbody > tr {
  cursor: pointer;
}
table.dataTable tbody > tr:nth-child(odd) {
  background-color: var(--table-rowodd);
}
table.dataTable tbody > tr:nth-child(odd):hover {
  background-color: var(--table-rollover);
}
table.dataTable tbody > tr:nth-child(even) {
  background-color: var(--table-roweven);
}
table.dataTable tbody > tr:nth-child(even):hover {
  background-color: var(--table-rollover);
}
table.dataTable tbody > tr:nth-child(odd) td.sorting_1 {
  background-color: var(--table-sortodd);
}
table.dataTable tbody > tr:nth-child(odd):hover td.sorting_1 {
  background-color: var(--table-rollover);
}
table.dataTable tbody > tr:nth-child(even) td.sorting_1 {
  background-color: var(--table-sorteven);
}
table.dataTable tbody > tr:nth-child(even):hover td.sorting_1 {
  background-color: var(--table-rollover);
}
table.dataTable tbody > tr:nth-child(odd).selected td {
  background-color: var(--table-row-selected);
}
table.dataTable tbody > tr:nth-child(even).selected td {
  background-color: var(--table-row-selected);
}
table.dataTable tbody > tr.noHand {
  cursor: none;
}
table.dataTable tbody > tr > td {
  height: var(--table-line-height);
  padding: 1px 10px;
  font-size: var(--table-font-size);
  vertical-align: middle;
  border-bottom: 1px solid var(--base-black);
}
table.dataTable tbody > tr > td.udatal {
  text-align: left;
  white-space: nowrap;
  padding-left: 0.25em;
}
table.dataTable tbody > tr > td.udatac, table.dataTable tbody > tr > td.center {
  text-align: center;
}
table.dataTable tbody > tr > td.udatar {
  text-align: right;
  padding-right: 0.5em;
}
table.dataTable tbody > tr > td.udatas {
  text-align: right;
  padding-right: 10px;
}
table.dataTable tbody > tr > td.lists > a {
  color: var(--base-black);
  font-size: 1.15em;
  text-decoration: underline;
}

/*
*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*
*	CSS .table class to enhance dataTables-2.0
*
*  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*/
.dataTables_wrapper {
  position: relative;
  clear: both;
  zoom: 1;
}

.table {
  margin-bottom: 0;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 4px;
  line-height: var(--line-height-base);
  vertical-align: middle;
  border-top: 1px solid var(--brand-dark);
  border-bottom: 1px solid var(--brand-dark);
}

.table > tfoot > tr > td {
  border-bottom: 0;
  margin-bottom: 20px;
}

.table-nohand > tbody > tr {
  cursor: default;
}

.table-striped > tbody > tr:nth-child(even) > td,
.table-striped > tbody > tr:nth-child(even) > th {
  background-color: var(--table-roweven);
}

.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-color: var(--table-rollover);
}

div.top > input[type=search] {
  margin: 0;
}

/*
*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*
*	CSS div.dt-container class to enhance dataTables-2.0
*
*  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
*/
div.dt-container .dt-paging .dt-paging-button {
  background-color: var(--btn-paginate);
  color: var(--btn-text);
  font-family: "Roboto Mono", Verdana, "sans-serif";
  font-size: var(--table-font-size);
  line-height: 110%;
  border: var(--btn-border-style);
  border-radius: 5px;
  padding: 1px 6px 2px 5px;
  margin: 0 3px;
  cursor: pointer;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover {
  background-color: var(--btn-active);
  color: var(--btn-text);
  cursor: not-allowed;
}

div.dt-container .dt-paging .dt-paging-button.disabled,
div.dt-container .dt-paging .dt-paging-button.disabled:hover,
div.dt-container .dt-paging .dt-paging-button.disabled:active {
  color: var(--btn-text);
  background-color: var(--btn-disabled);
  border: var(--border-style-1);
  cursor: not-allowed;
}

div.dt-container .dt-paging .ellipsis {
  padding: 0 0.25em;
}

div.dt-container .dt-info {
  text-align: center;
  font-size: var(--table-font-size);
  font-weight: 700;
}

div.dt-container .dt-length,
div.dt-container .dt-search,
div.dt-container .dt-info,
div.dt-container .dt-processing,
div.dt-container .dt-paging {
  height: var(--table-line-height);
  padding-bottom: 0;
}

div.dt-container .dt-empty-footer tbody > tr:last-child > * {
  border-bottom: var(--border-style-1);
}

div.dt-container .dt-search input {
  width: 8em;
}

#main_Wrapper {
  display: grid;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-template-areas: "main-head" "main-form" "main-tabl";
  margin: var(--navbar-height) 1rem 0;
}

#main_Heading,
#main_Form,
#main_Table {
  grid-column: col/span 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

#main_Heading {
  grid-area: main-head;
  color: var(--accent-red);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-h4);
  font-weight: bold;
  font-style: italic;
  text-align: center;
  line-height: 110%;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

#main_Form {
  grid-area: main-form;
  margin-bottom: 1.5rem;
}

#form_Menu {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-dark);
}

#form_Grid,
#form_Grid_Tab_1,
#form_Grid_Tab_2,
#form_Grid_Tab_3,
#form_Grid_Tab_4,
#form_Grid_Tab_5,
#form_Grid_Tab_6 {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0;
  margin: 0 1rem;
}

#form_Grid.grid_Border {
  padding: 0.5rem 1rem 0;
  border: 1px solid var(--brand-dark);
  margin: 0;
}

#form_Text {
  color: var(--accent-red);
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin: 0;
}

#main_Table {
  grid-area: main-tabl;
}

#small_Message::before {
  content: "Larger screen required for this Admin module.<br><strong>Hint:</strong> Turn phone to Landscape mode.";
}