body {
  font-size: 16px;
}

.FAQquestion {
  margin-bottom: 0in;
  line-height: normal;
  font-size: 18.0pt;
  font-family: Arial, sans-serif;
  color: #1B1B1B
}

.FAQanswer {
  margin-bottom: 0in;
  margin-top: 0in;
  line-height: normal;
  background: white;
  font-size: 13.5pt;
  font-family: Arial, sans-serif;
  color: #5E5E5E
}

.Title {
  margin-bottom: 0in;
  text-align: center;
  line-height: normal;
  background: white;
  font-size: 16pt;
  font-family: Times New Roman, serif;
  color: #507DE5;
  text-transform: uppercase;
  letter-spacing: 3.0pt
}

input[type="text"] {
  width: 25PX;
  background: white;
  color: black;
  text-align: justiy;
  font-size: 80%;
}

select {
  background: lightgrey;
}

.result {
  background: white;
  border-width: 1px;
  border-style: solid;
  border-color: #287EC7;
  width: 50px;
}

.resultUnit {
  background: lightgrey;
  text-align: left;
  width: 50px;
}

.variableLabel {
  display: inline-block;
  font-size: large;
  font-weight: bold;
   width: 22px;
   text-align: right;
}

.formulaLabel {
  display: inline-block;
  font-size: large;
  font-weight: bold;
}

#tblControls.hideColumn tr>*:nth-child(6) {
  display: none;
}

/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.slideTitle {
  grid-area: slideTitle;
}

.slideButtons {
  grid-area: slideButtons;
}

.slideContent {
  grid-area: slideContent;
}

.slideContainer {
  display: grid;
  grid-template-areas:
    'slideTitle slideTitle slideTitle slideButtons'
    'slideContent slideContent slideContent slideContent';
}

.tblControls {
  width: auto;
  height: auto;
}

.slideSubTitle {
  font-size: 10.0pt;
  font-family: Arial, sans-serif;
  color: #1B1B1B;
  font-weight: bold;
}
th {
  border: 1px solid black;
}
td {
  border: 1px solid black;
}