/* stylelint-disable selector-class-pattern */
body {
  margin: 0;
  font-family: Arial, Verdana, sans-serif;
  font-size: 85%;
}
table {
  border-spacing: 0;
  empty-cells: show;
}

.table_allborders {
  border: 1px solid black;
  border-collapse: collapse;
}

.table_allborders th,
.table_allborders td {
  border: 1px solid #000;
}

.table_listing th,
.table_listing td {
  padding: 4px;
}

.table_controls th,
.table_controls td {
  padding: 3px;
}

.th_formfield {
  padding-top: 3px;
  text-align: right;
  vertical-align: top;
  font-weight: normal;
  white-space: nowrap;
}

.table_controls .th_formfield {
  padding: 5px;
}

.table_form {
  border-spacing: 3px;
  empty-cells: show;
}

.table_form th {
  vertical-align: top;
  text-align: right;
  padding-top: 3px;
  font-weight: normal;
  white-space: nowrap;
}

.table_form td {
  vertical-align: top;
}

.table_report {
  border-spacing: 0;
  empty-cells: show;
}

.table_report th {
  vertical-align: top;
  text-align: right;
  font-weight: bold;
  white-space: nowrap;
  padding: 4px;
}

.table_report td {
  vertical-align: top;
  padding: 4px;
}

.th_reportfield {
  text-align: right;
  vertical-align: top;
  white-space: nowrap;
}

.th_leftalign {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

.th_centeralign {
  font-weight: normal;
  text-align: center;
  vertical-align: top;
}

.th_bottomalign {
  font-weight: normal;
  vertical-align: bottom;
}

.th_rowheader {
  text-align: left;
  vertical-align: bottom;
}

.smallnotes {
  font-size: 85%;
  color: #888;
}

.reportheader {
  font-weight: bold;
  font-size: 100%;
  text-decoration: underline;
  margin-bottom: 12px;
}

.formsectionheader {
  margin-bottom: 12px;
  font-weight: bold;
  border-bottom: 1px solid #999;
  padding-bottom: 3px;
}

.otherinformationlabel {
  font-style: italic;
}

.infocontainer {
    border: 1px solid #666;
    background-color: #f6f6f6;
    padding: 5px;
}

.div_marginbottom12 {
  margin-bottom: 12px;
}

.div_marginbottom12:empty {
  margin-bottom: 0;
}

.div_margintop12 {
  margin-top: 12px;
}

.div_margintop12:empty {
  margin-top: 0;
}

.div_nomarginifempty:empty {
  margin: 0;
}

.saved + .saving-msg {
    border: 1px solid darkgreen;
    color: darkgreen;
    opacity: 1;
}

.saved + .saving-msg > .saved-text {
    display: inline
}

.saving + .saving-msg {
    border: 1px solid darkorange;
    color: darkorange;
    opacity: 1;
}

.saving + .saving-msg > .saving-text {
    display: inline
}

.saving-msg {
    pointer-events: none;
    transition: opacity 240ms;
    opacity: 0;
    margin-right: 0;
    display: inline;
    left: 5px;
    position: absolute;
    bottom: 5px;
    padding: 3px;
    background-color: white;
    border-radius: 5px;
    font-weight: bold;
    box-shadow: 4px 5px 6px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 4px 5px 6px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 4px 5px 6px 0px rgba(0,0,0,0.2);
}
.saving-text, .saved-text {
    display: none;
}