html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.noscroll::-webkit-scrollbar {
  background: transparent;
  width: 0px;
}
.noscroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
#header, #footer {
  padding: 5px;
  background: var(--dblclr);
  color: var(--wblclr);
  font-family: Mononoki;
  z-index: 9999;
  width: 100%;
}
#header {
  position: fixed;
  top: 0;
  height: 20px;
}
#footer {
  text-align: center;
  font-size: .75em;
  position: fixed;
  bottom: 0;
  height: 15px;
}
#rheader {
  float: right;
  padding-right: 20px;
}
#header a {
  color: var(--wblclr);
  text-decoration: none;
}
#crumbs {
  float: left;
}

#content {
  flex: 1;
  overflow: auto;
  margin: 0 auto;
  height: calc(100% - 55px);
  position: absolute;
  top: 30px;
  width: 100%;
}
#inner {
  flex: 1;
  overflow: auto;
  height: calc(100% - 55px);
  position: absolute;
  top: 30px;
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: auto auto auto;
}

a {
  text-decoration: none;
}

.section-header {
	font-family: 'Yanone Kaffeesatz';
	font-size: 24px;
	padding: 5px;
	margin-top: -5px;
	margin-bottom: -20px;
}