body {
    background-color: black;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    margin: 80px;
    font-size: 16px;
}
@media screen and (min-resolution: 400dpi) {
    body {
        font-size: 32px;
    }
}
h1 {
    color: #FFE620;
    font-size: 48px;
    text-align: center;
}
h2 {
    margin-top: 2em;
    color: #FFE620;
}
table {
    white-space: nowrap;
}
th {
    padding-top: 2em;
    margin-top: 2em;
}
.chart-container {
    position: relative;
    width: 600px;
    /* float: left; */
    display:inline;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .chart-container {
        width: 1200px;
    }
}
.chart-container-small {
    position: relative;
    width: 200px;
    float: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    .chart-container-small {
        width: 320px;
    }
}
.chart-container-wide {
    position: relative;
    width: 600px;
    float: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    /* width: 920px; */
    .chart-container-wide {
        width: 1200px;
    }
}
th.percentage {
    width: 5em;
}
td {
    padding: 5px;
}
a {
    color: #FFE620;
}
.footnote {
    font-size: small;
    color: white;
}
.with_subscript {
    line-height: 0.5em;
}
.download {
  border-radius: 5px;
  border: 2px solid yellow;
  width: 200px;
}
li:not(:last-child) {
   margin-bottom: 3px;
}
@media screen and (max-width: 1000px) {
    .optional-table-content {
        display: none;
    }
}
@media screen and (min-width: 1001px) {
    .shortened-table-content {
        display: none;
    }
}
ul.menubar {
    list-style: none;
}

ul.menubar li {
    display: inline-block;
    margin-right: 10px; /* add spacing between items */

}
ul.menubar li {
    padding: 10px;
}
ul.menubar li:hover {
    background-color: #FFE620;
}

ul.menubar li a {
    text-decoration: none;
}

ul.menubar li:hover a {
    color: black;
}