/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
}

/* ============================================= */
/* GENERAL TYPE STYLES */
/* ============================================= */
* {
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

body {
  font-size: 16px;
  line-height: 20px;
}

body, h1, h2, h3, h4, h5, h6, p, li {
  font-family: Arial, Helvetica, sans-serif;
  color: #ccc;
  line-height: 1.4em;
  -moz-hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.4rem;
  margin-bottom: 10px;
}

p {
  margin: 0 0 12px;
}

strong {
  font-weight: bold;
  color: #000;
}

em {
  font-style: italic;
}

a {
  color: #eee;
  text-decoration: underline;
}
a:hover {
  color: #c9516a;
}

/* ============================================= */
/* NANOSCROLLER STYLES */
/* ============================================= */
.nano > .nano-pane {
  background: #666;
}

.nano > .nano-pane > .nano-slider {
  background: #a4a4a4;
}

/* ============================================= */
/* GENERAL STYLES */
/* ============================================= */
body {
  background-color: #462c35;
}

/* ============================================= */
/* BUTTON STYLES */
/* ============================================= */
.mbutton {
  display: block;
  float: left;
  height: 20px;
  padding: 8px 12px;
  border-right: 1px solid #4d4d4d;
  background-color: #363032;
  font-size: 0.9rem;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
}
.mbutton:first-child {
  border-left: 1px solid #4d4d4d;
}
.mbutton:hover {
  color: white;
  background-color: #c9516a;
  cursor: pointer;
}
.mbutton.selected {
  background-color: #c9516a;
  color: white;
  cursor: default;
}

/* ============================================= */
/* HEADER AND FOOTER*/
/* ============================================= */
#mainheader {
  width: 100%;
  height: 50px;
  background-color: #700e34;
}

/* HEADER */
#mainheader #logo {
  float: left;
  padding: 5px 0 0 40px;
  width: 200px;
}
#mainheader h1 {
  float: left;
  padding-left: 40px;
  font-size: 1.2em;
  color: #eee;
  line-height: 50px;
}

/* FOOTER */
#mainfooter {
  position: fixed;
  bottom: 0;
  width: 100%;
}

#footer-content {
  background-color: #700e34;
}
#footer-content #maintitle {
  padding: 8px 0 10px;
}
#footer-content h1 {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
}
#footer-content h2 {
  font-size: 1rem;
  text-align: center;
}

#mapnav {
  overflow: auto;
  width: 100%;
  background-color: #363032;
}
#mapnav ul {
  width: 450px;
  margin: 0 auto;
}

#hotspot-toggle-button {
  width: 110px;
}

#full-screen-button,
#zin-button,
#zout-button {
  width: 17px;
}

/* ============================================= */
/* GLOBAL MAP STYLES */
/* ============================================= */
#map {
  clear: both;
  position: relative;
  height: 500px;
  background-color: #462c35;
}

.map {
  height: 400px;
}

.map:-moz-full-screen {
  height: 100%;
}

.map:-webkit-full-screen {
  height: 100%;
}

.map:fullscreen {
  height: 100%;
}

/* position the rotate control lower than usual */
.ol-rotate {
  top: 3em;
}

.ol-zoomslider {
  left: auto;
  right: 8px;
  width: 20px;
  height: 170px;
  padding: 4px 2px 30px;
  border-radius: 0;
}
.ol-zoomslider:hover {
  cursor: pointer;
}
.ol-zoomslider button {
  border-radius: 0;
  height: 20px;
  width: 18px;
  margin-bottom: 10px;
  background-color: #363032;
}
.ol-zoomslider button:hover {
  background-color: #c9516a;
  cursor: pointer;
}

/* ============================================= */
/* MAP POPUP STYLES */
/* ============================================= */
#mappop {
  cursor: default;
}

.ol-popup {
  position: fixed;
  background-color: #363032;
  -webkit-filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.2));
  padding: 0;
  top: 60px;
  left: 10px;
  width: 300px;
}

.ol-popup:after, .ol-popup:before {
  top: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

/* ============================================= */
/* MAP POPUP CONTENT STYLES */
/* ============================================= */
#pop-nav, .navbar {
  overflow: hidden;
  width: 100%;
  border-bottom: 1px solid #4d4d4d;
}

#pop-nav-type {
  display: block;
}

#pop-nav-image,
#pop-nav-context {
  display: none;
}

.pop-nav-link {
  width: 235px;
  height: 26px;
  border-right: 1px solid #4d4d4d;
  border-left: none;
  line-height: 26px;
}
.pop-nav-link:first-child {
  border-left: none;
}

#pop-nav, .navbar {
  margin-bottom: 8px;
}
#pop-nav.one-link > span, .navbar.one-link > span {
  color: #ccc;
  background-color: #363032;
  cursor: default;
}
#pop-nav.two-link #pop-nav-image,
#pop-nav.two-link #pop-nav-type,
#pop-nav.two-link #pop-nav-context, .navbar.two-link #pop-nav-image,
.navbar.two-link #pop-nav-type,
.navbar.two-link #pop-nav-context {
  width: 105px;
}
#pop-nav.two-link span:hover, .navbar.two-link span:hover {
  background-color: #c9516a;
  color: #fff;
  cursor: pointer;
}
#pop-nav.two-link span.selected, .navbar.two-link span.selected {
  background-color: #c9516a;
  cursor: default;
}
#pop-nav > span.currentContent, .navbar > span.currentContent {
  display: block;
}

.nano-content {
  padding: 16px 16px 24px;
}

#pop-advisory {
  display: none;
  height: 50px;
  margin-bottom: 8px;
  padding: 2px 16px 6px;
  border-bottom: 1px solid #4d4d4d;
  font-size: 0.9rem;
  line-height: 1rem;
  font-weight: bold;
}

#pop-body,
#pop-image {
  clear: both;
  padding-right: 16px;
  padding-bottom: 16px;
}

#mappop-content h4 {
  margin: 0;
  padding: 10px 8px;
  background-color: #700e34;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.2rem;
  color: #eee;
  text-align: center;
}
#mappop-content p {
  margin-bottom: 8px;
}

#pop-context {
  display: none;
}

#pop-image img {
  min-width: 100px;
  min-height: 100px;
  max-width: 100%;
  max-height: 200px;
}
#pop-image .caption,
#pop-image .imagedesc {
  display: block;
}
#pop-image .caption {
  margin-bottom: 16px;
  font-size: 0.7rem;
  line-height: 1rem;
}

/* ============================================= */
/* MAP POPUP CONTENT NAVIGATION STYLES */
/* ============================================= */
#pop-content-nav {
  overflow: hidden;
  height: 40px;
  margin-top: 10px;
  border-top: 1px solid #4d4d4d;
}

#pop-content-nav-down,
#pop-content-nav-up {
  display: block;
  float: right;
  width: 40px;
  height: 40px;
  border-left: 1px solid #4d4d4d;
  background-image: url("../images/map_content_nav_arrows.png");
  background-repeat: no-repeat;
  background-position: 0 0;
}
#pop-content-nav-down:hover,
#pop-content-nav-up:hover {
  background-color: #c9516a;
  cursor: pointer;
}

#pop-content-nav-down {
  background-position: 0 -40px;
}

#pop-nav.one-link > span.ol-popup-closer,
#pop-nav.two-link > span.ol-popup-closer {
  float: right;
  width: 40px;
  height: 42px;
  line-height: 38px;
  padding: 0;
  border-left: none;
  border-right: none;
  text-decoration: none;
}
#pop-nav.one-link > span.ol-popup-closer:hover,
#pop-nav.two-link > span.ol-popup-closer:hover {
  cursor: pointer;
  background-color: #c9516a;
  background-position: 0 -30px;
}

/* ============================================= */
/* CONTENT POPUP STYLES */
/* ============================================= */
#static-content {
  display: none;
  position: fixed;
  top: 70px;
  width: 100%;
}

#content-window {
  width: 90%;
  margin: 0 auto;
  background-color: #363032;
}
#content-window header {
  height: 70px;
  margin: 0;
  padding: 20px 10px;
  background-color: #700e34;
}

#project-nav .mainbuttons {
  width: 370px;
  margin: 0 auto;
}
#project-nav #project-info-close {
  display: block;
  float: right;
  width: 40px;
  height: 36px;
  padding: 0;
  border-left: 1px solid #4d4d4d;
  line-height: 35px;
}
#project-nav #project-info-close .ol-popup-closer {
  top: 3px;
}

#aboutlogo {
  display: block;
  height: 70px;
  margin: 0 auto;
}

#project-content {
  clear: both;
  padding: 10px 40px;
}

#content-about,
#content-acknowledgements,
#content-advisory {
  display: none;
  padding-bottom: 20px;
}

#content-about {
  display: block;
}

.creditlogo {
  margin: 8px 40px 8px 0;
}

#logo-aam {
  max-width: 120px;
}

#logo-jfbt {
  max-width: 180px;
}

/* ============================================= */
/* SMALL SCREEN STYLES */
/* ============================================= */
.small-screen #static-content {
  top: 50px;
}
.small-screen #content-window {
  width: 100%;
}
.small-screen #content-window header {
  height: 50px;
  padding: 10px 10px;
}
.small-screen #aboutlogo {
  height: 50px;
}
.small-screen #project-content {
  overflow-y: scroll;
}
.small-screen #project-content p {
  font-size: 0.9rem;
  line-height: 1.2rem;
}

/*# sourceMappingURL=cmaps.css.map */
