/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Global Styles */
* {
  text-shadow: none !important;
}

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

body {
  color: var(--base-black);
  background: var(--body-color-background);
  font-family: var(--font-family-base);
  font-size: 1.5rem;
  line-height: var(--line-height-computed);
  margin-bottom: var(--footer-height);
  padding: 0;
  height: 100%;
}

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

/*
main.unselectable input {
	-moz-user-select: text;
}

main.unselectable select {
	-moz-user-select: text;
}
*/
main.unselectable {
  -moz-user-select: -moz-none;
  -webkit-user-select: none;
  /*
  Introduced in IE 10.
  See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
   */
  user-select: none;
}

div.unselectable {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Navigation Styles */
nav {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  font-variant: small-caps;
  font-weight: 400;
  letter-spacing: 1px;
  height: var(--navbar-height);
  border: 0;
}

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

/*
.navbar .navbar-nav {
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}
*/
.navbar-nav > li > a {
  background-color: var(--navbar-default-color-bg);
  color: var(--navbar-default-color-text);
  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: calc(var(--navbar-height) / 2);
}

.navbar-nav .open .dropdown-menu > li > a {
  background-color: var(--navbar-default-color-bg);
  color: var(--navbar-default-color-text);
  text-decoration: none;
  border-bottom: 0px solid var(--navbar-default-color-bg);
}

.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(--navbar-default-color-text);
  padding-top: 0;
  padding-bottom: 0;
  margin-left: -1px;
  border: 1px solid var(--navbar-default-color-text);
  border-radius: 0;
}

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

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: 1px;
  border-radius: 0 6px 6px 6px;
  border: var(--border-style-1);
}

.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(--base-white);
}

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

.navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
  color: var(--navbar-default-color-text);
  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(--navbar-default-color-text);
  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 only screen and (min-width: 1000px) {
  #menu_Menu,
  #menu_Navbar-LG,
  #menu_Navbar-MD,
  #menu_Navbar-SM {
    display: none;
  }
}
@media only screen and (min-width: 850px) and (max-width: 1000px) {
  #menu_Menu,
  #menu_Navbar-XL,
  #menu_Navbar-MD,
  #menu_Navbar-SM {
    display: none;
  }
}
@media only screen and (min-width: 600px) and (max-width: 850px) {
  #menu_Menu,
  #menu_Navbar-XL,
  #menu_Navbar-LG,
  #menu_Navbar-SM {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow-style: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    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 {
    background-color: var(--navbar-default-color-bg);
    width: var(--menu-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(--menu-width);
  }
  .navbar-header {
    height: var(--navbar-height);
    background-color: var(--navbar-default-color-bg);
  }
  .navbar-toggle {
    color: var(--navbar-default-color-text);
    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(--navbar-default-color-text);
    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;
    -webkit-box-shadow-style: none;
    box-shadow: none;
  }
  .navbar-nav .open .dropdown-menu > li > a {
    background-color: var(--navbar-default-color-bg);
    color: var(--navbar-default-color-text);
    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(--menu-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(--navbar-default-color-text);
    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(--menu-width);
    margin-left: 0;
  }
  #menu_Home,
  #menuLiDropDown,
  #menu_Navbar-XL,
  #menu_Navbar-LG,
  #menu_Navbar-MD {
    display: none;
  }
}
/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Header Styles */
header {
  width: 100%;
  padding: 0;
  border-bottom: 0px solid var(--brand-dark);
  margin-top: calc(var(--navbar-height) + 0.5rem);
}

#site_Headers {
  margin-top: var(--navbar-height);
}

/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Footer Styles */
footer {
  color: var(--base-white);
  background-color: var(--navbar-default-color-bg);
  border-top: var(--border-style-2);
  padding-top: 0.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
footer p {
  background: transparent;
  color: var(--base-white);
  font-family: var(--font-footer-sans-serif);
  font-size: 14px;
  font-variant: small-caps;
  font-weight: bold;
  line-height: 120%;
  text-indent: 0;
  text-align: center;
  margin: 0;
}
footer p a, footer p a:link, footer p a:visited {
  color: white;
}
footer p a:hover {
  background-color: hsl(var(--base-color-80));
  color: var(--base-black);
}
footer p.whisper {
  font-size: 13px;
}

#site_Footer {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-template-areas: "foot-link" "foot-cont" "foot-prov" "foot-copy" "foot-devl";
  margin-bottom: 0.25rem;
}

#footer-link {
  grid-area: foot-link;
  grid-column: col 1/span 12;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 0.5rem;
}

#footer-cont {
  grid-area: foot-cont;
  grid-column: col 1/span 12;
  grid-row: 2;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}

#footer-prov {
  grid-area: foot-prov;
  grid-column: col 1/span 4;
  grid-row: 3;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
}

#footer-copy {
  grid-area: foot-copy;
  grid-column: 5/span 4;
  grid-row: 3;
  height: -moz-fit-content;
  height: fit-content;
  text-align: left;
}

#footer-devl {
  grid-area: foot-devl;
  grid-column: col 9/span 4;
  grid-row: 3;
  height: -moz-fit-content;
  height: fit-content;
  text-align: right;
}

@media screen and (min-width: 1200px) and (max-width: 1399.98px) {
  #footer-link {
    grid-column: col 2/span 12;
  }
  #footer-cont {
    grid-column: col 1/span 12;
  }
  #footer-prov {
    grid-column: col 1/span 4;
  }
  #footer-copy {
    grid-column: col 5/span 4;
  }
  #footer-devl {
    grid-column: col 9/span 4;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199.98px) {
  #footer-link {
    grid-column: col 1/span 12;
  }
  #footer-cont {
    grid-column: col 1/span 12;
  }
  #footer-copy {
    grid-column: col 1/span 12;
  }
  #footer-prov,
  #footer-devl {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 899.98px) {
  #footer-link {
    grid-column: col 1/span 12;
  }
  #footer-cont {
    grid-column: col 1/span 12;
  }
  #footer-copy {
    grid-column: col 1/span 12;
  }
  #footer-prov,
  #footer-devl {
    display: none;
  }
}
@media screen and (min-width: 0px) and (max-width: 599.98px) {
  #footer-link {
    grid-column: col 1/span 12;
  }
  #footer-cont {
    grid-column: col 1/span 12;
  }
  #footer-copy {
    grid-column: col 1/span 12;
  }
  #footer-prov,
  #footer-devl {
    display: none;
  }
}
/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Topography Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-serif);
  font-weight: 700;
  color: var(--brand-accent);
  font-style: normal;
  line-height: 130%;
  padding: 0;
  margin: 0 0 1rem;
}
h1.center, h2.center, h3.center, h4.center, h5.center, h6.center {
  text-align: center;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

div.clearit {
  clear: both;
}
div.clearleft {
  clear: left;
}
div.clearright {
  clear: right;
}
div.floatit {
  float: left;
}
div.indent {
  margin-left: 2rem;
}
div.justify {
  text-align: justify;
}
div.spacer {
  height: var(--spacer-height);
}
div.spacer_sm {
  height: calc(var(--spacer-height) / 2);
}
div.spacer_lg {
  height: calc(var(--spacer-height) * 2);
}

p {
  color: var(--base-black);
  font-size: clamp(0.75rem, 1rem + 2vw, 1.5rem);
  line-height: var(--line-height-computed);
  margin-bottom: 1rem;
}
p.center {
  text-align: center;
}
p.indent {
  text-indent: 1.5rem;
  margin-right: 1rem;
}
p.noIndent {
  text-indent: 0;
}
p.noSpace {
  margin-bottom: 0;
}
p.noIndentBold {
  text-indent: 0;
  font-weight: 700;
}
p.noIndentBoldCaps {
  text-indent: 0;
  font-weight: 700;
  text-transform: uppercase;
}
p.byline {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-sm);
  font-style: italic;
}
p.blocked {
  margin: 0 1em 0.5em 1.5em;
}
p.head-smallcaps {
  font-size: var(--font-size-h4);
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 3em;
  text-align: center;
}
p:last-child {
  margin-bottom: 0;
}

span.noIndent {
  text-indent: 0;
}

sup {
  font-weight: 900;
}

a:link {
  color: var(--link-color);
  text-decoration: underline;
  cursor: pointer;
  outline: none;
}
a:link:hover {
  color: var(--accent-red);
}
a:visited {
  color: var(--accent-red);
}
a:hover, a:active {
  background-color: hsl(var(--base-color-80));
  outline: none;
}
a:hover popup, a:active popup {
  display: block;
  position: absolute;
  left: 200px;
  width: 400px;
  height: 250px;
  border: 1px solid var(--base-black);
  text-align: center;
  z-index: 2;
}
a img:hover {
  background-color: hsl(var(--base-color-85));
}

hr {
  height: 4px;
  border: 0;
  margin: 0;
  background-color: var(--brand-dark);
}
hr.center {
  width: 50%;
  margin-left: 25%;
  text-align: center;
}
hr.thin {
  height: 2px;
}
hr.pad-sm {
  margin: 1rem 0;
}
hr.pad-md {
  margin: 1.5rem 0;
}
hr.pad-lg {
  margin: 2rem 0;
}

.btn-group {
  text-decoration: none;
  color: var(--base-white);
}

.btn-primary {
  color: var(--btn-primary-color);
  background-color: var(--btn-primary-bg);
  border: var(--btn-default-border);
}

.btn-sm {
  font-family: "Roboto", "Verdana", sans-serif;
  font-size: 12px;
  height: 24px;
  min-width: 90px;
  max-width: 120px;
  padding: 0 5px;
  border-radius: 0;
  border: 0;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.btn-sm:active {
  position: relative;
  top: 2px;
  left: 2px;
}
.btn-sm:hover {
  color: var(--base-white);
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}
.btn-sm:focus {
  outline: none;
  color: var(--base-white);
  background-color: var(--accent-red);
  border-color: var(--accent-red);
}

.btn-sm.active, .open > .dropdown-toggle.btn-sm {
  color: var(--base-white);
  background-color: var(--btn-default-bg);
  border-color: var(--accent-red);
}

.panel-heading {
  font-family: var(--font-family-serif);
  font-weight: 700;
  font-size: clamp(1.3rem, 1.3rem + 1vw, 2.3rem);
  line-height: 120%;
  text-align: left;
  color: var(--brand-accent);
  padding: 0;
  margin: 0 0 0.5rem;
}

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

.smCaps {
  font-variant: small-caps;
}

.smCapsBold {
  font-variant: small-caps;
  font-weight: bold;
}

.capsBoldCenter {
  font-variant-caps: normal;
  font-weight: bold;
  text-align: center;
}

.font-xs {
  font-size: var(--font-size-xs);
}

.font-sm {
  font-size: var(--font-size-sm);
}

.font-md {
  font-size: var(--font-size-md);
}

.font-lg {
  font-size: var(--font-size-lg);
}

.font-xl {
  font-size: var(--font-size-xl);
}

#colText,
.colText {
  -moz-column-count: 3;
       column-count: 3;
}

@media screen and (min-width: 772px) and (max-width: 1399.98px) {
  #colText,
  .colText {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (min-width: 0px) and (max-width: 771.98px) {
  #colText,
  .colText {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.ancestor {
  color: var(--accent-red);
  font-weight: 700;
}

.ancestor > a:link {
  color: var(--accent-brand);
}

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

.ancestor-scb > a:link {
  color: var(--accent-red);
  font-variant: small-caps;
  font-weight: bold;
}

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

.centerbold {
  font-weight: 700;
  text-align: center;
}

.centerboldUC {
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.centerUC {
  text-align: center;
  text-transform: uppercase;
}

.copyright,
.deathcert {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-size: var(--font-size-sm);
  color: var(--base-black);
  text-align: center;
}

.copyright {
  font-weight: 700;
  font-size: var(--font-size-sm);
  margin-left: 2em;
}

.deathcert {
  font-weight: 700;
  font-size: var(--font-size-sm);
}

.highlight {
  font-style: italic;
}

.textblockquote,
.leadingblockquote {
  font-family: var(--font-family-sans-serif);
  font-style: italic;
  font-size: var(--font-size-base);
  line-height: var(--line-height-computed);
  margin-left: 50px;
  margin-right: 50px;
}

.textblockquote {
  margin-left: 0;
  margin-right: 0;
}

.page_quote {
  font-family: var(--font-family-serif);
  font-style: italic;
  font-size: var(--font-size-base);
  line-height: var(--line-height-computed);
  margin: 0 0 0 30px;
}

.extract {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-sm);
  font-weight: bold;
  margin: 2em 0 0 3em;
}

.nickname {
  color: var(--brand-accent);
}

.self {
  color: #999999;
  font-weight: bold;
}

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

.warning {
  font-weight: 700;
  color: var(--brand-accent);
}

.searchresult {
  color: var(--body-color-text);
  background-color: var(--search-bg-color);
}

.whisper {
  font-size: var(--font-size-whisper);
  line-height: 130%;
}

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

.caption {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-xs);
  font-weight: 700;
  line-height: 130%;
  font-style: italic;
  color: var(--brand-dark);
  text-align: center;
  padding: 0 1rem;
}
.caption.justify {
  text-align: justify;
}

.shadowBox {
  background: var(--base-color-85);
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  align-content: center;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin: 0 0 1rem;
  box-shadow: var(--box-shadow-style);
}
.shadowBox h5 {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
}
.shadowBox p {
  font-size: var(--font-size-base);
  line-height: 120%;
}
.shadowBox td {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
}
.shadowBox td:first-child {
  font-weight: 700;
  text-align: right;
}
.shadowBox td:last-child {
  padding-left: 1rem;
}
.shadowBox #map_canvas_sm {
  margin-top: 0;
}

/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Input Styles */
label {
  font-size: var(--font-size-base);
  font-weight: 700;
}

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

input[type=search] {
  margin: 0 0 0 5px;
  border: var(--input-border-style-1);
}

input, textarea, option, select {
  background-color: var(--input-bg-color);
  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.5em;
  height: var(--input-height);
}
input:hover, textarea:hover, option:hover, select:hover {
  background-color: var(--input-bg-color-hover);
}
input:focus, textarea:focus, option:focus, select:focus {
  background-color: var(--input-bg-color-focus);
  border: var(--border-style-1);
}
input:active, textarea:active, option:active, select:active {
  background-color: var(--input-bg-color-active);
}

/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> List Styles */
.basic {
  list-style: none;
}

#toc {
  list-style: none;
}

.family li {
  margin: 10px 0;
}

.gen1 li {
  list-style-type: upper-roman;
}

.gen2 li {
  list-style-type: upper-alpha;
}

.gen3 li {
  list-style-type: decimal;
}

.gen4 li {
  list-style-type: lower-alpha;
}

.gen5 li {
  list-style-type: lower-roman;
}

.basic li {
  margin-left: -2.85em;
}

.list_sm li,
.list_md li,
.list_lg li,
.largebasic li {
  list-style: none;
  font-size: 1rem;
  margin: 6px 0;
  color: var(--base-black);
  cursor: pointer;
}

.list_sm li {
  font-size: 0.8em;
}

.list_md li {
  font-size: 0.9em;
  line-height: 1.6em;
}

.list_lg:last-child {
  margin-bottom: 0;
}

.listLinks {
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-md);
  line-height: var(--line-height-computed);
  list-style: none;
  margin-left: -2rem;
}

ul.list_db > a {
  font-family: var(--font-family-serif);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-decoration: none;
  line-height: var(--line-height-computed);
  color: var(--brand-accent);
  margin-left: 0;
  overflow-wrap: break-word;
}

ul.list_db > a:hover {
  background-color: var(--brand-lite);
  color: var(--base-black);
}

ul.leaders {
  max-width: 100%;
  padding: 0;
  overflow-x: hidden;
  list-style: none;
}

ul.leaders li:before {
  float: left;
  width: 0;
  white-space: nowrap;
  content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . ";
}

ul.leaders span:first-child {
  padding-right: 0.33em;
  background: url(../images/mis_images/newspaper_bg.gif) repeat;
}

ul.leaders span + span {
  float: right;
  padding-left: 0.33em;
  background: url(../images/mis_images/newspaper_bg.gif) repeat;
}

/*
//* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> dot_Leaders
.dot_Item {
	display: grid;
	grid-template-columns: auto max-content;
	grid-template-areas: "dot-left dot-right";
	align-items: end;
	gap: 0 .25rem;
  }
  	.dot_Left {
		grid-area: dot-left;
		position: relative;
		overflow: hidden;

		&:empty {
			display: none;
		}

		&::after {
			position: absolute;
			padding-left: 0.25rem;
			content: 
				". . . . . . . . . . . . . . . . . . . . . . . "
				". . . . . . . . . . . . . . . . . . . . . . . "
				". . . . . . . . . . . . . . . . . . . . . . . "
				". . . . . . . . . . . . . . . . . . . . . . . "
				". . . . . . . . . . . . . . . . . . . . . . . ";
			text-align: right; /* optional
		}
	}
	.dot_Right {
		grid-area: dot-right;
	}
/*
ul.leaders {
	font-family: var(--font-family-serif); /*"Times New Roman", Times, serif;
    max-width: 30em;
    padding: 0;
    overflow-x: hidden;
    list-style: none;
}

	ul.leaders li:before {
		float: left;
		width: 0;
		white-space: nowrap;
		content:
		". . . . . . . . . . . . . . . . . . . . "
		". . . . . . . . . . . . . . . . . . . . "
		". . . . . . . . . . . . . . . . . . . . "
		". . . . . . . . . . . . . . . . . . . . ";
	}

	ul.leaders span:first-child {
		padding-left: .33em;
		padding-right: .33em;
		background: var(--body-bg);
	}

	ul.leaders span{
		background: var(--body-bg);
		padding-left: .33em;
	}

	ul.leaders span + span {
		float: right;
		padding-left:0;
		padding-right: 1em;
		background: var(--body-bg);
	}

	ul.leaders div{
		float: left;
		text-align: right;
		width: 40px;
		background: var(--body-bg);
		clear: none;
	}
*/
/*	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Photos/Images Styles */
/* Three image containers (use 25% for four, and 50% for two, etc) */
#head_Col-Left {
  float: left;
  width: 25%;
  padding: 5px;
}

#head_Col-Middle {
  width: 100%;
  padding: 5px;
}

#head_Col-Right {
  float: left;
  width: 25%;
  padding: 5px;
}

/* Clear floats after image containers */
#head_Row::after {
  content: "";
  clear: both;
  display: table;
}

a.logoLink {
  color: var(--brand-lite);
}
a.logoLink:hover, a.logoLink:active {
  background-color: var(--brand-accent);
}

.ad_img {
  margin-bottom: 0.5rem;
}

.scan,
.photo,
.cemPhoto {
  background-color: var(--photo-bg-color);
  padding: 3px;
  border-width: 5px;
  border-style: solid;
  border-top-color: var(--photo-border-color-top);
  border-left-color: var(--photo-border-color-left);
  border-right-color: var(--photo-border-color-right);
  border-bottom-color: var(--photo-border-color-bottom);
  margin-bottom: 0.5rem;
}

.cemPhoto {
  cursor: zoom-in;
}

.scan {
  border: var(--border-style-5);
}

img.left {
  margin: 0.5rem 1rem 1rem 0;
  float: left;
}
img.center {
  margin: 0 1rem;
  text-align: center;
  align-content: center;
}
img.right {
  margin: 0.5rem 0 1rem 1rem;
  float: right;
}
img.icon {
  padding-left: 5px;
  padding-bottom: 3px;
}
img.thumb {
  height: 32px;
  border: var(--border-style-1);
  margin: 10px;
}

figure {
  display: table;
}
figure.left {
  float: left;
  padding-right: 1rem;
}
figure.right {
  float: right;
  padding-left: 1rem;
}
figure.center {
  margin: 1rem auto 0;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
  text-align: center;
  font-family: var(--font-family-sans-serif);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 0;
}
figcaption.justify {
  text-align: justify;
}

#map_canvas_sm,
#map_canvas_md,
#map_canvas_lg,
#map_canvas_xl {
  border-width: 5px;
  border-style: solid;
  border-top-color: var(--photo-border-color-top);
  border-left-color: var(--photo-border-color-left);
  border-right-color: var(--photo-border-color-right);
  border-bottom-color: var(--photo-border-color-bottom);
  margin: 0 auto 0.5rem;
}
#map_canvas_sm a:link,
#map_canvas_md a:link,
#map_canvas_lg a:link,
#map_canvas_xl a:link {
  font-size: inherit;
}

#map_canvas_sm {
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
}

#map_canvas_md {
  width: 400px;
  height: auto;
  aspect-ratio: 1/1;
}

#map_canvas_lg {
  width: 600px;
  height: auto;
  aspect-ratio: 1/1;
}

#map_canvas_xl {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.marker_tooltip {
  background: transparent;
  color: var(--base-black);
  font-size: 12px;
  font-weight: bold;
  border: none;
  box-shadow: none;
}

.marker_tooltip::before {
  border: none;
}

.marker_thumb {
  margin-top: 3px;
  padding: 1px;
  border: 1px solid var(--brand-dark);
}

.marker_town {
  background: transparent;
  color: var(--map-color-town-name);
  font-size: 11px;
  border: none;
  box-shadow: none;
}

.leaflet-bar a, .leaflet-bar a:hover {
  text-decoration: none !important;
}

.leaflet-control-layers label {
  font-size: var(--font-size-base);
}

.leaflet-control-layers-selector {
  top: 6px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 12px;
  min-height: 1px;
}

/*
 *	<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
 *
 *	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-color-background);
  border-right: 2px solid var(--body-color-background);
  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: 9em;
}

#spec_Links {
  max-width: 100%;
  margin: auto;
  text-align: left;
}

aside.spec_Links {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

#spec_Links ul {
  text-align: left;
}

.transition,
p,
ul li i:before,
ul li i:after {
  transition: all 0.3s;
}

#spec_Links .no-select,
#spec_Links h4 {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#spec_Links h4 {
  line-height: var(--line-height-computed);
  text-align: left;
  padding: 1rem 0 0.5rem 0.5rem;
  text-transform: none;
  font-weight: 700;
  display: block;
  margin: 0;
  cursor: pointer;
  transition: 0.2s;
}

#spec_Links p {
  color: var(--base-black);
  font-family: var(--font-family-serif);
  font-size: var(--font-size-base);
  line-height: var(--line-height-computed);
  text-align: left;
  text-indent: 0 !important;
  position: relative;
  overflow: hidden;
  contain: layout;
  display: inline-block;
  opacity: 1;
  transform: translate(0, 0);
  padding: 0 0 0 2rem;
  transition: 0.3s opacity, 0.6s max-height;
  -webkit-hyphens: auto;
          hyphens: auto;
  z-index: 2;
}

#spec_Links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#spec_Links ul li {
  background: hsl(var(--base-color-80));
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 1rem 0 0 0;
  -webkit-tap-highlight-color: transparent;
}

#spec_Links ul li + li {
  margin-top: 1rem;
}

#spec_Links ul li:last-of-type {
  padding-bottom: 0;
}

#spec_Links ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 1rem;
  right: 1rem;
}

#spec_Links ul li i:before,
#spec_Links ul li i:after {
  content: "";
  position: absolute;
  background-color: #cc071e;
  width: 3px;
  height: 9px;
}

#spec_Links ul li i:before {
  transform: translate(-2px, 0) rotate(45deg);
}

#spec_Links ul li i:after {
  transform: translate(2px, 0) rotate(-45deg);
}

#spec_Links ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  touch-action: manipulation;
}

#spec_Links ul li input[type=checkbox]:checked ~ h2 {
  color: #000;
}

#spec_Links ul li input[type=checkbox]:checked ~ p {
  /*margin-top: 0;*/
  max-height: 0;
  transition: 0.3s;
  opacity: 0;
  /*transform: translate(0, 50%);*/
}

#spec_Links ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg);
}

#spec_Links ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg);
}

/*  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<< - >>>>>>>>>>>>>>>>>>>>>>>>>>>>>> Page Styles */
h3 {
  font-style: normal;
}

.do_Hyphens {
  -webkit-hyphens: auto;
          hyphens: auto;
}

#page_Heading,
.page_Heading {
  font-style: italic;
  text-align: center;
  margin: 2rem;
}
#page_Heading h2.subHead, #page_Heading::after,
.page_Heading h2.subHead,
.page_Heading::after {
  font-size: clamp(1rem, 3vw + 1rem, 3rem);
  line-height: 130%;
  font-style: normal;
}
#page_Heading.mapMargin,
.page_Heading.mapMargin {
  line-height: 100%;
  margin: 2rem 2rem 0;
}

#page_Wrapper,
#main_Wrapper,
#spec_Wrapper,
#tabl_Wrapper,
#tofc_Wrapper {
  display: grid;
  grid-template-columns: repeat(12, [col] 1fr);
  grid-template-rows: auto auto 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 0;
  padding: 0;
  margin: 0 2rem;
}

#page_Intro:empty,
#tabl_Intro:empty,
#spec_Image:empty,
#spec_Words:empty,
#spec_Links:empty {
  display: none;
}

#page_Intro,
.page_Intro {
  background-color: var(--base-color-95);
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-base);
  font-style: normal;
  text-align: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  -moz-column-count: 1;
       column-count: 1;
}

#tabl_Intro,
.tabl_Intro {
  font-style: italic;
  text-align: center;
  margin-bottom: 1.5rem;
}

#page_Table,
.page_Table {
  margin-bottom: 2rem;
}

#page_Image,
.page_Image,
#spec_Image {
  grid-area: page-image;
  grid-column: col 2/span 5;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin: 0 auto 2rem;
}

#page_Info,
.page_Info,
#spec_Info {
  grid-area: page-info;
  grid-column: col 7/span 5;
  grid-row: 1;
  height: -moz-fit-content;
  height: fit-content;
  margin-bottom: 2rem;
}

.loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/mis_images/ajax-loader-132.gif") 50% 50% no-repeat;
  opacity: 0.8;
}