/* Border around table header row */
.standard_table tbody tr th {
  border: 1px solid black;
  border-collapse: collapse;
}
/* Border around table cells */
.standard_table tbody tr td {
  border: 1px solid black;
  border-collapse: collapse;
}
/* Shading of alternate table rows */
.standard_table tr:nth-child(odd) td {
  background-color: #E6E6E6;
}
/* Shading of table header row and centering of column headers */
.standard_table tr th {
  background-color: #C0C0C0;
  text-align: center;
}
/* Borderless table for lists, etc. */
.borderless_table tbody tr td {
  border: hidden;
}
/* Borderless, highlighted table for EQuIS warnings or errors */
.warning_table tbody tr td {
  border: hidden;
  background-color: #fbe0cd;
  padding: 30px;

}

/* Release note styles */
blockquote.release-note {
  border-top: 3px solid #eeeeee;
  font-size: medium;
}
span.release-note-title {
  font-weight: bold;
}

/* Border and shading of table header row */
.header_table th {
  border: 1px solid black;
}

/* Centering the EarthSoft logo in the header */
.navbar-brand > img {
  vertical-align: middle;
  padding-top: 5px;
}