<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*!********************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/main.scss ***!
  \********************************************************************************************************/
* {
  --primary: rgb(92, 132, 159);
  --secondary: rgb(69, 109, 136);
  --tertiary: rgb(71, 101, 146);
  --highlight: rgb(171, 203, 224);
  --navColor: rgb(171, 203, 224);
  --bg: rgb(64, 104, 130);
}

html {
  min-width: 100%;
  min-height: 100%;
  background-color: var(--secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

nav {
  color: var(--navColor);
}

body {
  margin: 0px;
  padding: 0px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
body clr-nav .dl a {
  color: var(--navColor);
}
body p {
  line-height: 14px;
}
body clr-header {
  position: absolute;
  top: 0px;
  left: 0px;
}
body clr-header clr-drop-link {
  color: var(--navColor);
}
body clr-drop-link {
  color: var(--navColor);
}
body clr-drop-link a {
  color: var(--navColor);
}

.main-content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  min-height: calc(100vh - 150px);
  width: calc(100vw - 60px);
  padding: 20px;
  margin: 90px auto 20px auto;
  box-sizing: border-box;
  backdrop-filter: grayscale(0.2) opacity(0.9) blur(7px);
  color: var(--bg);
}
.main-content p {
  line-height: 1.3em;
  color: var(--fontColor);
}
.main-content h2 {
  color: var(--primary);
}

app-root {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
app-root div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header-banner {
  background-image: url(homeHeader.gif);
  width: 100%;
  min-height: 180px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  border-radius: 3px;
}
.header-banner h1, .header-banner p {
  color: white;
  margin: 0px;
}
.header-banner p {
  padding-left: 2px;
}

footer {
  width: 100%;
  text-align: center;
  padding: 0px 0px 20px 0px;
  box-sizing: border-box;
  color: var(--highlight);
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.col {
  display: flex;
  flex-direction: column;
}

.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.max-width-800 {
  max-width: 800px;
}

.title {
  font-size: 1.1em;
  font-weight: bold;
  color: var(--secondary);
}

.pac .padd-side p, .pac .padd-side .title {
  text-align: left;
  min-width: 200px;
}
.pac .row {
  align-items: flex-start;
  justify-content: space-around;
  align-items: flex-start;
}
.pac .col {
  align-items: center;
}

@media screen and (max-width: 880px) {
  clr-header clr-nav-btn {
    z-index: 99;
  }
  #navbtn.off span:first-child, #navbtn.off span:nth-child(2), #navbtn.off span:last-child {
    background-color: var(--primary);
  }
}
</pre></body></html>