/* column-based layout */
* {
  box-sizing: border-box;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
  padding: 1px;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
/* column */

html,body {
  height: 100%;
  padding:0;
  margin:0;
  min-height: 100%;
}

textarea:focus, input:focus {
  outline-style: none;
  border-color: var(--focus);
  box-shadow: inset 0px 0px 1px 1px var(--focus);
}

textarea, input {
  border-radius: 0;
  border-style: solid;
  border-width: 1px;
  border-color: #000;
}

#pageContents {
  padding-top: 25px;
}

#menubar {
  display: block;
  box-shadow: 0px 4px 8px #000000a0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}

.link {
  cursor: pointer;
}

.link:hover {
  background-color: var(--accent2);
  box-shadow: 2px 2px 2px #000000a0;
}

.bold {
  font-weight: bold;
  font-style: normal;
}

.lockIcon {
  height: 16px;
  padding-right: 0px;
  padding-left: 4px;
}

.sectionHeader {
  text-align: left;
  font-weight: bold;
  font-size: 10pt;
  font-style: normal;
  margin: 0;
}

.inputLabel {
  text-align: right;
}

.centered {
  text-align: center;
}

.flexCenter {
  display: flex;
  justify-content: center;
}

.header {
  display: block;
  font-size: 10pt;
  background-color: var(--neutral3);
}

.thinHeader {
  height: 26px;
  text-align: left;
}

.menuButton {
  cursor: pointer;
  padding: 5px;
  margin: 0px;
  height: 26px;
  text-align: center;
  min-width: 60px;
  background-color: var(--neutral3);
  display: flex;
  align-content: center;
  justify-content: center;
}

.menuButton:hover {
  background-color: var(--accent1);
}

.menuDivider {
  border-top: 2px solid var(--neutral5);
  margin: 0px;
}

.infoIcon {
  width: 16px;
  display: flex;
}

.infoDropdown {
  vertical-align: middle;
}

.infoContent {
  width: 200px;
  font-size: 8pt;
  background-color: var(--neutral3);
  border-width: 1px;
  border-style: solid;
  border-color: black;
  padding: 3px;
}

.spad {
  padding: 5px;
}

.mpad {
  padding: 10px;
}

.lpad {
  padding: 15px;
}

.shadow {
  box-shadow: 5px 5px 2px #666;
}

body {
  font-family: "Arial", sans-serif;
	font-size: 8pt;
  color: #000;
  background-color: var(--neutral6);
}

input {
	font-family: Sans-Serif;
	font-size: 8pt;
  background-color: var(--neutral1);
  padding: 0;
}

table {
  border-width: 0px;
  border-style: solid;
  border-color: #ccc;
  border-collapse: collapse;
  background-color: var(--neutral3);
}

td {
  border-width: 0px;
  border-style: solid;
  border-color: #ccc;
  border-collapse: collapse;
  padding: 2px;
}

.button {
  cursor: pointer;
  height: 16px;
  padding: 2px 2px;
  margin: 2px;
  text-align: center;
  border: none;
  color: #000;
  background-color: var(--neutral1);
  box-shadow: 2px 2px 1px #666;
}

.button:hover {
  background-color: var(--accent1);
}

.hidden {
  display: none;
}

#container {
  margin: auto;
  margin-top: 15px;
  text-align: center;
  padding: 10px;
  display: table;
  background-color: var(--neutral5);
}

.container {
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
  display: table;
  background-color: var(--neutral5);
}

.innerContainer {
  margin: auto;
  text-align: left;
  padding: 10px;
  display: block;
  background-color: var(--neutral3);
}

.outerContainer {
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
  display: table;
  background-color: var(--neutral5);
}

.controlButton {
  width: 120px;
  height: 16px;
  padding: 0px 0px;
  margin: 2px;
  text-align: center;
  border: none;
}

.number {
  text-align: right;
  width: 40px;
  padding: 0;
}

.output {
  color: #000;
  background-color: var(--neutral1);
}

.input {
  color: #000;
  background-color: var(--neutral1);
}

.rightJustify {
  text-align: right;
}

.leftJustify {
  text-align: left;
}

.bottom {
  vertical-align: bottom;
}

.policy {
  text-align: left;
  width: 640px;
  background-color: var(--neutral3);
}

.filler {
  margin: auto;
}

.icon {
  height: 12px;
  margin: 1px;
  padding: 0;
}

.menuIcon {
  height: 16px;
  padding: 0;
  margin: 0;
}

.menuSpan {
  display: flex;
  justify-content: center;
}

.justified {
  display: flex;
  justify-content: space-between;
}

hr {
  border: 1px solid var(--neutral4);
}

.dim {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#bodyDiv {
  min-width: 1300px;
  min-height: calc(100% - 2.3em);
}

footer {
  background-color: var(--neutral5);
  padding: 0.5em;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 5px;
  min-width: 100px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 999;
  text-align: left;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Inserting this collapsed row between two flex items will make 
 * the flex item that comes after it break to a new row */
.break {
  flex-basis: 100%;
  height: 0;
}
