@charset "utf-8";

/*

	CSS Document
	Mod 2021 Oct 30
	LCARS Classic Theme
	By Jim Robertus www.thelcars.com

*/

@keyframes blink {
  0% {
    opacity: 0;
  }
  49% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes colorchange {
  0% {
    color: #f70;
  }
  25% {
    color: #f70;
  }
  50% {
    color: #f70;
  }
  75% {
    color: #f70;
  }
  80% {
    color: #000;
  }
  90% {
    color: #000;
  }
  100% {
    color: #f5f6fa;
  }
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 100vw;
  margin-block: 0.5em;
}
::-webkit-scrollbar-thumb {
  background: #2d2d2d;
  border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover {
  background: #3f3f3f;
}
@supports (scrollbar-color: #2d2d2d #121212) {
  * {
    scrollbar-color: #2d2d2d #121212;
  }
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  background: #000;
  color: #f70; /* Arthur Zey 2021-10-31 changed the original #c7f value */
  font: 22px/1.5 "Antonio", "Arial Narrow", "Avenir Next Condensed", sans-serif;
  margin: 0;
  padding: 5px 0;
  overflow-x: hidden; /* Arthur Zey 2021-11-01 trying to fix a weird horizontal scrollbar that appears sometimes. */
}
#stretch .wrap {
  max-width: 100%;
}
a {
  color: #78f; /* Arthur Zey 2021-10-31 changed from #c3f because it doesn't look good. */
  text-decoration: none; /* Arthur Zey 2021-10-31 changed from underline because it doesn't look good. */
}
/* Arthur Zey 2021-10-31 added this block for nicer styling */
a:hover {
  text-decoration: underline;
}
.wrap {
  display: flex;
  margin: 0 auto;
  padding: 0 10px 0 5px;
  overflow: hidden;
  /* max-width: 1340px; commented out by Arthur Zey 2021-10-31 to use full width */
}
.scroll-top {
  display: block;
}

/* added by Arthur Zey 2021-10-31 to make bar-10 a scroll-to-top button */
.scroll-top-bar a {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  font-size: 19px;
  color: #000;
  position: relative;
  top: -9px;
  left: 2px;
}

.scroll-top a {
  display: none;
  width: 190px;
  height: 150px;
  position: fixed;
  bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
  /* padding: 20px 10px 20px 2px; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 20px 2px;
  background: #c8f;
  font-size: 19px;
  font-weight: bold;
  color: #000;
}
.left-frame-top,
.left-frame {
  width: 190px;
  min-width: 190px;
  text-align: right;
  font-size: 19px;
  font-weight: bold;
  color: #000;
}
.left-frame-top {
  background: #78f;
  border-radius: 0 0 0 100px;
}
.left-frame-top a,
.left-frame a {
  text-decoration: none;
  color: #000;
}
.left-frame {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  background: #d44;
  border-radius: 100px 0 0 0;
}
.panel-1 a {
  display: block;
  background: #c8f;
  /* padding: 82px 10px 15px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 82px 5px 5px 0;
  text-decoration: none;
  color: #000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.panel-1 a:active,
.panel-1 a:focus {
  filter: brightness(70%);
  text-decoration: none;
  border-bottom: none;
  outline: none;
}
.panel-2 {
  /* padding: 15px 10px 0 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 0 0;
  text-transform: uppercase; /* Arthur Zey 2021-11-01 to make text conform to style */
}
.right-frame-top {
  flex: 1;
  background: #000;
}
.banner {
  padding: 0 0 15px 5px;
  text-align: right;
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 66px;
  color: #f70;
}
.data-cascade-button-group {
  display: flex;
  justify-content: flex-end;
  column-gap: 15px;
}
.cascade-wrapper {
  flex-basis: 100%;
  padding-right: 10px;
}
.data-cascade {
  max-width: 1200px;
  font-size: 18px;
  line-height: 22px;
}
.row-1,
.row-2,
.row-3,
.row-4,
.row-5,
.row-6 {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  height: 22px;
  color: #000;
}
.data-cascade .row-1 {
  animation: colorchange 2s infinite;
  animation-delay: 0.1s;
}
.data-cascade .row-2 {
  animation: colorchange 3s infinite;
  animation-delay: 0.2s;
}
.data-cascade .row-3 {
  animation: colorchange 2s infinite;
  animation-delay: 0.3s;
}
.data-cascade .row-4 {
  animation: colorchange 2s infinite;
  animation-delay: 0.4s;
}
.data-cascade .row-5 {
  animation: colorchange 3s infinite;
  animation-delay: 0.5s;
}
.data-cascade .row-6 {
  animation: colorchange 2s infinite;
  animation-delay: 0.6s;
}
.data-cascade#niagara .row-1 {
  animation: colorchange 2s infinite;
  animation-delay: 0.1s;
}
.data-cascade#niagara .row-2 {
  animation: colorchange 2s infinite;
  animation-delay: 0.2s;
}
.data-cascade#niagara .row-3 {
  animation: colorchange 2s infinite;
  animation-delay: 0.3s;
}
.data-cascade#niagara .row-4 {
  animation: colorchange 2s infinite;
  animation-delay: 0.4s;
}
.data-cascade#niagara .row-5 {
  animation: colorchange 2s infinite;
  animation-delay: 0.5s;
}
.data-cascade#niagara .row-6 {
  animation: colorchange 2s infinite;
  animation-delay: 0.6s;
}
.data-cascade#orinoco .row-1 {
  animation: colorchange 2s infinite;
  animation-delay: 0.1s;
}
.data-cascade#orinoco .row-2 {
  animation: colorchange 2s infinite;
  animation-delay: 0.2s;
}
.data-cascade#orinoco .row-3 {
  animation: colorchange 3s infinite;
  animation-delay: 0.3s;
}
.data-cascade#orinoco .row-4 {
  animation: colorchange 3s infinite;
  animation-delay: 0.4s;
}
.data-cascade#orinoco .row-5 {
  animation: colorchange 2s infinite;
  animation-delay: 0.5s;
}
.data-cascade#orinoco .row-6 {
  animation: colorchange 2s infinite;
  animation-delay: 0.6s;
}
.data-cascade#frozen .row-1 {
  animation: none;
  color: #f70;
}
.data-cascade#frozen .row-2 {
  animation: none;
  color: #f70;
}
.data-cascade#frozen .row-3 {
  animation: none;
  color: #f70;
}
.data-cascade#frozen .row-4 {
  animation: none;
  color: #fba;
}
.data-cascade#frozen .row-5 {
  animation: none;
  color: #f5f6fa;
}
.data-cascade#frozen .row-6 {
  animation: none;
  color: #f70;
}
.dc1,
.dc2,
.dc3,
.dc4,
.dc5,
.dc6,
.dc7,
.dc8,
.dc9,
.dc10,
.dc11,
.dc12,
.dc13,
.dc14,
.grid,
.grid-2,
.grid-1,
.grid-3,
.grid-4 {
  flex: 1;
  overflow: hidden;
  text-align: right;
  white-space: nowrap;
}
.button-col,
.button-col-1,
.button-col-2 {
  width: 190px;
}
.button-col div:last-of-type,
.button-col-1 div:last-of-type,
.button-col-2 div:last-of-type {
  margin-bottom: -15px;
}
.button a {
  display: block;
  width: 190px;
  height: 58px;
  margin-bottom: 15px;
  padding: 20px 25px 0 0;
  border-radius: 26px;
  background: #78f;
  text-align: right;
  line-height: normal !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.button#top-left a {
  background: #78f;
}
.button#bottom-left a {
  background: #f70;
}
.button#top-right a {
  background: #ffaa90;
}
.button#bottom-right a {
  background: #d44;
}
.button a:active,
.button a:focus {
  filter: brightness(70%);
  border: none;
  outline: none;
  animation: none;
}
.top-corner-bg {
  width: 40px;
  height: 40px;
  background: linear-gradient(to top right, #78f 50%, #000 50%);
}
.top-corner {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 0 0 0 40px;
}
.bar-panel {
  display: flex;
  height: 22px;
}
.bar-1,
.bar-2,
.bar-3,
.bar-4,
.bar-5,
.bar-6,
.bar-7,
.bar-9,
.bar-10 {
  height: 22px;
}
.bar-1,
.bar-2,
.bar-3,
.bar-4,
.bar-6,
.bar-7,
.bar-8,
.bar-9 {
  border-right: 5px solid #000;
}
.bar-1,
.bar-6 {
  transition: width 1s;
}
.bar-1 {
  width: 433px;
  background: #78f;
}
.bar-2 {
  width: 40px;
  background: #f70;
}
.bar-3 {
  width: 200px;
  background: #c8f;
}
.bar-4 {
  flex: 1;
  background: #c8f;
}
.bar-5 {
  width: 50px;
  background: #d44;
}
.bar-6 {
  width: 433px;
  background: #d44;
}
.bar-7 {
  width: 40px;
  background: #ffaa90;
}
.bar-8 {
  width: 200px;
  height: 11px;
  background: #d44;
}
.bar-9 {
  flex: 1;
  background: #c8f;
}
.bar-10 {
  width: 50px;
  background: #ffaa90;
}
#gap {
  margin-top: 10px;
}
.panel-1,
.panel-3,
.panel-4,
.panel-5,
.panel-6,
.panel-7,
.panel-8 {
  border-bottom: 5px solid #000;
  display: block;
}
.panel-3 {
  /* padding: 0 10px 15px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 0 5px 5px 0;
}
.panel-4 {
  /* padding: 180px 10px 15px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 180px 5px 5px 0;
  background: #d44;
}
.panel-5 {
  /* padding: 25px 10px 25px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 45px 0;
  background: #f70;
}
.panel-6 {
  /* padding: 230px 10px 15px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 230px 5px 5px 0;
  background: #ffaa90;
}
.panel-7 {
  /* padding: 15px 10px 300px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 300px 0;
  background: #78f;
}

/* Added by Arthur Zey 2025-09-16 to flash the button for PLAIN READER */
/* flash .panel-7 between #78f and #000 for 10s (1s cycle, 10 iterations) */
@keyframes panel7-flash {
  0%, 49.999% { background: #78f; }
  50%, 100%   { background: #000; }
}

/* Only when you add the 'flash' class */
.panel-7.flash {
  animation-name: panel7-flash;
  animation-duration: 1s;          /* full cycle = 1s => switches every 0.5s */
  animation-timing-function: linear;
  animation-iteration-count: 10;   /* total runtime = 10s */
  animation-fill-mode: none;       /* revert to original background after */
}

.panel-8 {
  /* padding: 15px 10px 110px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 110px 0;
  background: #ffaa90;
}
.panel-9 {
  /* padding: 15px 10px 170px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 170px 0;
  background: #d44;
}
.panel-10 {
  border-top: 5px solid #000;
  background: #f70;
  /* padding: 15px 10px 300px 0; Arthur Zey 2021-10-31 making more responsive on mobile */
  padding: 5px 5px 300px 0;
}
.right-frame {
  flex: 1;
  background: #000;
}
.corner-bg {
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom right, #d44 50%, #000 50%);
}
.corner {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 40px 0 0 0;
}
.content {
  /* padding: 0 0 25px 50px; Arthur Zey 2021-11-01 better "centering" */
  padding: 0 15px 0 15px;
  background: #000;
}
.content img {
  max-width: 100%;
  height: auto;
}
/* Arthur Zey 2021-10-31 added the next two blocks to make tables appear properly */
.content table {
  display: block;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  overflow-x: auto;
  white-space: nowrap;
}
.content table,
.content th,
.content td {
  border: 1px solid #f70;
  border-collapse: collapse;
}
.content th,
.content td {
  padding: 5px;
}
.flexbox {
  display: flex;
  column-gap: 40px;
}
.col {
  flex-basis: 100%;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
  line-height: 1.2;
  text-transform: uppercase;
}
h1 {
  font-size: 72px;
  margin: 0 0 30px 0;
  text-align: right;
}
h2,
h3,
h4 {
  margin: 30px 0;
}
h2 {
  font-size: 50px;
}
h3 {
  font-size: 40px;
}
h4 {
  font-size: 35px;
}
p.caption {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
  font-size: 19px;
}
p.indent {
  padding-left: 40px;
}
p.postmeta {
  margin-top: 0;
  text-align: right;
  font-size: 36px;
  text-transform: uppercase;
}
.logging h1 {
  margin-bottom: 0;
}
code {
  font-size: 0.8em;
  color: #f70;
}
hr {
  margin: 30px 0;
  height: 6px;
  border: none;
  background: #c8f;
  border-radius: 3px;
}
hr.disc {
  margin: 30px auto;
  width: 20px;
  height: 20px;
  border: none;
  background: #c8f;
  border-radius: 10px;
}
blockquote {
  margin: 30px 40px;
  border-left: 4px solid #c8f;
  padding-left: 20px;
}
.nomar {
  margin: 0 !important;
}
.go-center {
  text-align: center !important;
}
.go-right {
  text-align: right !important;
}
.go-left {
  text-align: left !important;
}
.go-big {
  font-size: 1.3em;
}
.go-bigger {
  font-size: 1.5em;
}
.uppercase {
  text-transform: uppercase;
}
.strike {
  text-decoration: line-through;
}
.now {
  white-space: nowrap;
}
.blink-slower {
  animation: blink 3s infinite;
  animation-delay: 1s;
}
.blink {
  animation: blink 2s infinite;
  animation-delay: 1s;
}
.blink-faster {
  animation: blink 1s infinite;
  animation-delay: 1s;
}
a:hover {
  animation: none;
}
.pics-right {
  float: right;
  margin: 10px 0 20px 20px;
}
.pics-left {
  float: left;
  margin: 10px 20px 20px 0;
}
.pics {
  display: block;
  margin: 30px auto 0 auto;
}
.border {
  padding: 10px;
  border: 2px solid #c8f;
}
.thumbnail {
  margin-top: 10px;
  width: 280px;
  height: auto;
}
.list-item {
  display: flex;
  margin: 15px 0 0 40px;
}
.list-item-left {
  width: 44px;
  padding-top: 12px;
}
.bullet {
  width: 30px;
  height: 20px;
  border-radius: 50%;
  background: #c8f;
}
.list-item-main {
  flex: 1;
  font-size: 28px;
}
.buttons {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
}
.jc-space-between {
  justify-content: space-between;
}
.jc-center {
  justify-content: center;
}
.jc-flex-end {
  justify-content: flex-end;
}
.jc-space-around {
  justify-content: space-around;
}
.jc-space-evenly {
  justify-content: space-evenly;
}
.buttons a {
  display: block;
  margin: 0 10px 20px 10px;
  width: 180px;
  height: 58px;
  padding: 20px 25px 0 0;
  background: #c8f;
  border-radius: 26px;
  text-align: right;
  line-height: normal;
  text-decoration: none;
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.buttons a:active,
.buttons a:focus {
  filter: brightness(70%);
  outline: none;
}
.buttons a.two-rows {
  font-size: 19px;
  padding-top: 3px;
}
.buttons a.long {
  padding: 20px 0 0 0 !important;
  text-align: center !important;
}
.sidebar-buttons a {
  display: block;
  text-decoration: none;
  text-align: right;
  border-bottom: 5px solid #000;
  padding: 20px 10px 20px 2px;
  background: #d44;
  text-transform: uppercase;
  color: #000;
}
.sidebar-buttons a:hover {
  filter: brightness(110%);
}
.sidebar-buttons a:active,
.sidebar-buttons a:focus {
  filter: brightness(80%);
  outline: none;
}
.lcars-bar {
  margin: 40px auto;
  height: 20px;
  background: #000;
  border-right: 18px solid #94f;
  border-left: 18px solid #94f;
  border-radius: 9px;
  padding: 0 5px;
}
.lcars-bar-inner {
  height: 20px;
  background: #c8f;
}
.lcars-bar-slice-top {
  margin: 80px auto -30px auto;
  width: 180px;
  height: 8px;
  background: #c8f;
}
.lcars-bar-cutout {
  margin: 0 auto;
  width: 180px;
  height: 10px;
  background: #000;
}
.lcars-bar-slice-bottom {
  margin: -30px auto 0 auto;
  width: 180px;
  height: 5px;
  background: #c8f;
}
.footer {
  margin: 0 auto;
  padding: 35px 20px 0 20px;
  font-size: 19px;
}
.footer p:first-child {
  margin-top: 0;
}
.space-white {
  background: #f5f6fa !important;
}
.go-space-white {
  color: #f5f6fa;
}
.violet-creme {
  background: #dbf !important;
}
.go-violet-creme {
  color: #dbf;
}
.magenta {
  background: #c49 !important;
}
.go-magenta {
  color: #c49;
}
.green {
  background: #3c9 !important;
}
.go-green {
  color: #3c9;
}
.blue {
  background: #45f !important;
}
.go-blue {
  color: #45f;
}
.yellow {
  background: #fc3 !important;
}
.go-yellow {
  color: #fc3;
}
.sunflower {
  background: #fc6 !important;
}
.go-sunflower {
  color: #fc6;
}
.violet {
  background: #94f !important;
}
.go-violet {
  color: #94f;
}
.orange {
  background: #f70 !important;
}
.go-orange {
  color: #f70;
}
.african-violet {
  background: #c8f !important;
}
.go-african-violet {
  color: #c8f;
}
.red {
  background: #d44 !important;
}
.go-red {
  color: #d44;
}
.almond {
  background: #ffaa90 !important;
}
.go-almond {
  color: #ffaa90;
}
.almond-creme {
  background: #fba !important;
}
.go-almond-creme {
  color: #fba;
}
.bluey {
  background: #78f !important;
}
.go-bluey {
  color: #78f;
}
.gray {
  background: #668 !important;
}
.go-gray {
  color: #668;
}
.sky {
  background: #aaf !important;
}
.go-sky {
  color: #aaf;
}
.ice {
  background: #8cf !important;
}
.go-ice {
  color: #8cf;
}
.gold {
  background: #fa0 !important;
}
.go-gold {
  color: #fa0;
}
.mars {
  background: #f20 !important;
}
.go-mars {
  color: #f20;
}
.peach {
  background: #f86 !important;
}
.go-peach {
  color: #f86;
}
.butterscotch {
  background: #f96 !important;
}
.go-butterscotch {
  color: #f96;
}
.tomato {
  background: #f55 !important;
}
.go-tomato {
  color: #f55;
}
.lilac {
  background: #c3f !important;
}
.go-lilac {
  color: #c3f;
}
.evening {
  background: #25f !important;
}
.go-evening {
  color: #25f;
}
.midnight {
  background: #11e !important;
}
.go-midnight {
  color: #11e;
}
.ghost {
  background: #8bf !important;
}
.go-ghost {
  color: #8bf;
}
.wheat {
  background: #ca8 !important;
}
.go-wheat {
  color: #ca8;
}
.roseblush {
  background: #c66 !important;
}
.go-roseblush {
  color: #c66;
}
.honey {
  background: #fc9 !important;
}
.go-honey {
  color: #fc9;
}
.cardinal {
  background: #c23 !important;
}
.go-cardinal {
  color: #c23;
}
.pumpkinshade {
  background: #f74 !important;
}
.go-pumpkinshade {
  color: #f74;
}
.tangerine {
  background: #f83 !important;
}
.go-tangerine {
  color: #f83;
}
.martian {
  background: #9d6 !important;
}
.go-martian {
  color: #9d6;
}
.moonbeam {
  background: #ccdeff !important;
}
.go-moonbeam {
  color: #ccdeff;
}
.cool {
  background: #58f !important;
}
.go-cool {
  color: #58f;
}
.galaxy {
  background: #444a77 !important;
}
.go-galaxy {
  color: #444a77;
}
.moonshine {
  background: #def;
}
.go-moonshine {
  color: #def;
}
.october-sunset {
  background: #f40 !important;
}
.go-october-sunset {
  color: #f40;
}
.harvestgold {
  background: #fa4 !important;
}
.go-harvestgold {
  color: #fa4;
}
.butter {
  background: #fec !important;
}
.go-butter {
  color: #fec;
}
.c43 {
  background: #58e !important;
}
.go-c43 {
  color: #58e;
}
.c44 {
  background: #8ff !important;
}
.go-c44 {
  color: #8ff;
}
.c45 {
  background: #344466 !important;
}
.go-c45 {
  color: #344466;
}
.c46 {
  background: #455577 !important;
}
.go-c46 {
  color: #455577;
}
.c47 {
  background: #79c !important;
}
.go-c47 {
  color: #79c;
}
.c48 {
  background: #6cf !important;
}
.go-c48 {
  color: #6cf;
}
.c49 {
  background: #9cf !important;
}
.go-c49 {
  color: #9cf;
}
.c50 {
  background: #ff3500 !important;
}
.go-c50 {
  color: #ff3500;
}
.c51 {
  background: #525 !important;
}
.go-c51 {
  color: #525;
}
.c52 {
  background: #636 !important;
}
.go-c52 {
  color: #636;
}
.c53 {
  background: #747 !important;
}
.go-c53 {
  color: #747;
}
.c54 {
  background: #858 !important;
}
.go-c54 {
  color: #858;
}
.c55 {
  background: #969 !important;
}
.go-c55 {
  color: #969;
}
.c56 {
  background: #f80 !important;
}
.go-c56 {
  color: #f80;
}
.c57 {
  background: #d0b0a0 !important;
}
.go-c57 {
  color: #d0b0a0;
}
.c58 {
  background: #bbf !important;
}
.go-c58 {
  color: #bbf;
}
.c59 {
  background: #9a6 !important;
}
.go-c59 {
  color: #9a6;
}
.c60 {
  background: #0b0 !important;
}
.go-c60 {
  color: #0b0;
}
.c61 {
  background: #3f3 !important;
}
.go-c61 {
  color: #3f3;
}
.c62 {
  background: #dfd !important;
}
.go-c62 {
  color: #dfd;
}
.c63 {
  background: #ffebde !important;
}
.go-c63 {
  color: #ffebde;
}
.c64 {
  background: #c9c !important;
}
.go-c64 {
  color: #c9c;
}
.c65 {
  background: #f6eef6 !important;
}
.go-c65 {
  color: #f6eef6;
}
.c66 {
  background: #a6a !important;
}
.go-c66 {
  color: #a6a;
}
.c67 {
  background: #d8d !important;
}
.go-c67 {
  color: #d8d;
}
@media only screen and (max-width: 1240px) {
  .dc13,
  .dc14,
  .grid-3 {
    display: none;
  }
  .bar-1,
  .bar-6 {
    width: 320px;
  }
  .panel-4 {
    padding-top: 115px;
  }
}
@media only screen and (min-width: 1080px) {
  .cascade-wrapper {
    padding-left: 25px;
  }
}

/* Next block added by Arthur Zey 2021-10-31 to make .content scroll */
@media only screen and (min-height: 1000px) {
  body {
    /* color: #c7f; */
    overflow: hidden;
  }
  .content {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: auto;
  }
}

@media only screen and (max-width: 1080px) {
  .left-frame-top,
  .left-frame {
    width: 170px;
    min-width: 170px;
  }
  .scroll-top a {
    width: 170px;
  }
  .dc12,
  .dc11,
  .dc10,
  .grid-1 {
    display: none;
  }
  .bar-1,
  .bar-6 {
    width: 290px;
  }
  .left-frame {
    padding-top: 70px;
  }
  /* 2021-11-01 Arthur Zey: I don't think we need this.
  .content {
    padding-left: 40px;
  }
  */
  .banner {
    font-size: 60px;
  }
  h1 {
    font-size: 66px;
  }
  h2 {
    font-size: 46px;
  }
  .buttons a {
    margin: 0 6px 12px 6px;
  }
  .flexbox {
    column-gap: 25px;
  }
}
@media only screen and (max-width: 890px) {
  .left-frame-top,
  .left-frame {
    width: 130px;
    min-width: 130px;
  }
  .left-frame-top {
    border-radius: 0 0 0 80px;
  }
  .left-frame {
    border-radius: 80px 0 0 0;
  }
  .scroll-top a {
    width: 130px;
    padding: 5px 5px 0 0; /* Arthur Zey 2021-10-31 changed from "10px 0 0 0" for consistency */
    text-align: right; /* Arthur Zey 2021-10-31 changed from "center" for consistency */
  }
  .banner {
    font-size: 48px;
  }
  .sutrebor {
    margin: 4px 4px 19px 69px;
  }
  .bar-1,
  .bar-6 {
    width: 180px;
  }
  .bar-3,
  .bar-8 {
    width: 180px;
  }
  /* 2021-11-01 Arthur Zey: I don't think we need this.
  .content {
    padding-left: 30px;
  }
  */
  h1 {
    font-size: 58px;
  }
  h3 {
    font-size: 40px;
  }
  h4 {
    font-size: 32px;
  }
  .list-item {
    margin-left: 1px;
  }
  blockquote {
    margin-right: 0;
    margin-left: 25px;
  }
  .cut-out-top {
    margin-left: 85px;
  }
  .cut-out {
    margin-left: 85px;
  }
  .cut-out-float {
    margin-left: 85px;
  }
  .flexbox {
    display: block;
  }
  .padme .col {
    padding-top: 10px;
  }
  .dc7,
  .dc8,
  .dc9,
  .grid-2 {
    display: none;
  }
  .pics-right,
  .pics-left {
    float: none;
    margin: 20px 0 20px 0;
  }
  .pics-right img,
  .pics-left img {
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 790px) {
  .dc5,
  .dc6,
  .grid-4 {
    display: none;
  }
}
@media only screen and (max-width: 760px) {
  .cascade-wrapper {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  .left-frame-top,
  .left-frame {
    width: 110px;
    min-width: 110px;
  }
  .left-frame-top {
    border-radius: 0 0 0 60px;
  }
  .left-frame {
    border-radius: 60px 0 0 0;
  }
  .scroll-top a {
    width: 110px;
    height: 110px;
  }

  /* Next block added by Arthur Zey 2021-10-31 to remove up chevron from display */
  .scroll-top-bar a {
    color: transparent;
  }

  .bar-panel {
    height: 16px;
  }
  .bar-1,
  .bar-2,
  .bar-3,
  .bar-4,
  .bar-5,
  .bar-6,
  .bar-7,
  .bar-9,
  .bar-10 {
    height: 16px;
  }
  .bar-1,
  .bar-6 {
    width: 130px;
  }
  .bar-3,
  .bar-8 {
    width: 130px;
  }
  .bar-5,
  .bar-10 {
    width: 25px;
  }
}
@media only screen and (max-width: 610px) {
  .button-col,
  .button-col-1,
  .button-col-2 {
    width: auto;
    border-left: 15px solid black;
  }
  .data-cascade-button-group {
    column-gap: 0;
  }
}
@media only screen and (max-width: 500px) {
  body {
    padding: 0;
    font-size: 19px;
  }
  .wrap {
    padding-left: 0;
  }
  .left-frame-top,
  .left-frame {
    width: 60px;
    min-width: 60px;
    font-size: 15px;
  }
  .left-frame-top {
    border-radius: 0 0 0 26px;
  }
  .left-frame {
    border-radius: 26px 0 0 0;
    padding-top: 50px;
  }
  .scroll-top a {
    width: 60px;
  }
  .panel-1 a {
    padding-top: 30px;
  }
  .panel-2 {
    padding-bottom: 15px;
    border-bottom: 5px solid #000;
    background: #78f;
  }
  .panel-6 {
    padding-top: 150px;
  }
  .hop {
    display: none;
  }
  .banner {
    font-size: 26px;
  }
  .button a {
    height: 44px;
    padding-top: 10px;
    width: 142px;
    border-radius: 20px;
    font-size: 19px;
  }
  .sidebar-buttons a {
    /* text-align: center; */ /* Arthur Zey 2021-10-31 getting rid of this because it looks ugly */
    padding: 10px 10px 10px 0; /* Arthur Zey 2021-10-31 changed from "10px 0" to make this match other content */
    font-size: 12px;
  }
  /* Arthur Zey 2021-10-31 overwriting these from 12px and 15px to make a YYYY-MM-DD datestamp fit on small screens */
  .sidebar-buttons a,
  .left-frame,
  .left-frame-top,
  .scroll-top a {
    font-size: 10px;
  }
  .top-corner-bg {
    width: 25px;
    height: 25px;
  }
  .top-corner {
    width: 25px;
    height: 25px;
    border-radius: 0 0 0 20px;
  }
  .bar-panel {
    height: 10px;
  }
  .bar-1,
  .bar-2,
  .bar-3,
  .bar-4,
  .bar-5,
  .bar-6,
  .bar-7,
  .bar-9,
  .bar-10 {
    height: 10px;
  }
  .bar-3,
  .bar-8 {
    width: 80px;
  }
  .bar-2,
  .bar-7 {
    width: 25px;
  }
  .bar-8 {
    height: 5px;
  }
  #gap {
    margin-top: 5px;
  }
  .corner-bg {
    width: 25px;
    height: 25px;
  }
  .corner {
    width: 25px;
    height: 25px;
    border-radius: 20px 0 0 0;
  }
  .panel-4 {
    padding-top: 65px;
  }
  /* 2021-11-01 Arthur Zey: I don't think we need this.
  .content {
    padding: 0 0 20px 15px;
  }
  */
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 26px;
  }
  h3 {
    font-size: 23px;
  }
  h4 {
    font-size: 21px;
  }
  p.caption {
    font-size: 16px;
  }
  p.indent {
    padding-left: 20px;
  }
  p.postmeta {
    font-size: 21px;
  }
  blockquote {
    margin: 25px 0 25px 20px;
  }
  .list-item-main {
    font-size: 21px;
  }
  .list-item-left {
    padding-top: 7px;
  }
  .lcars-bar-cutout {
    margin: 0 auto;
    width: 80px;
    height: 8px;
  }
  .lcars-bar-slice-top {
    margin: 30px auto -30px auto;
    width: 80px;
    height: 6px;
  }
  .lcars-bar-slice-bottom {
    width: 80px;
  }
  .footer {
    padding: 20px 5px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 448px) {
  .bar-1,
  .bar-6 {
    width: 110px;
  }
}
@media only screen and (max-width: 388px) {
  .bar-1,
  .bar-6 {
    width: 90px;
  }
  .button a {
    width: 134px;
  }
}
@media only screen and (max-width: 370px) {
  .left-frame-top,
  .left-frame {
    width: 50px;
    min-width: 50px;
  }
  .scroll-top a {
    width: 50px;
  }
  .button a {
    height: 40px;
    width: 112px;
    text-align: center;
    padding: 0;
    line-height: 40px !important;
    font-size: 17px;
    border-radius: 18px;
  }
  .bar-8 {
    height: 5px;
  }
  .bar-1,
  .bar-6 {
    width: 70px;
  }
  p.indent {
    padding-left: 10px;
  }
  blockquote {
    margin: 20px 0 20px 10px;
    padding-left: 12px;
  }
}
