#body p {
    margin: 20px 0;
    overflow: hidden;
}

table {
    font-family: Arial, sans-serif;
    font-size: 12px;
}

thead td {
    font-weight: bold;
}
.table tr.head-row > td {
    background-color: #dddddd;
    font-weight: bold;
    border-bottom: 10px solid white;
    border-top: 10px solid white;
}
td {
    text-align: center;
    width: 16%;
}
td:first-child {
    text-align: right;
    width: 32%;
}
.head-row td:first-child {
    text-align: left;
}
tr td {
    border-top: 1px solid lightgrey;
    border-bottom: 1px solid lightgrey;
    text-align: right;
    vertical-align: middle;
}

tr td .progress {
    margin: 10px 0 10px;
}

#statewide-dev-cap {
    width: 49.5%;
    display: inline-block;
    vertical-align: top;
}

.statewide-dev-cap-list {
    width: 90%;
    margin: 5% 10% 0 0;
}
.statewide-dev-cap-list td {
    text-align: center;
    height: 40px;
}
.statewide-dev-cap-list td h3 {
    margin: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.statewide-dev-cap-list td:first-child {
    width: 2.5%;
}
.statewide-dev-cap-list td .progress {
    margin: 10px 0;
}

span.negative {
    color: #B95C41;
}

/* 60/40 Cap Charts */

.cap-chart-container {
    width: 50%;
    display: inline-block;
}

.cap-chart {
    position: relative;
    margin-bottom: 50px;
}
.cap-chart table {
    width: 100%;
}
.cap-chart td {
    width: 50%;
}
.cap-chart td:first-child {
    text-align: left;
}
.cap-chart h2 {
    margin: 10px 0;
}
#dev-cap-threshold {
    position: absolute;
    height: 165px;
    border-left-color: grey;
    border-left-width: 2px;
    border-left-style: dashed;
}
#dev-cap-threshold span {
    position: absolute;
    bottom: -20px;
    left: -10px;
}
.pa-data {
    display: inline-block;
    position: absolute;
    color: black;
    background-color: rgba(200, 200, 255, 0.8);
    border-radius: 10px;

    transform: translate(-250px, -110%) scale(0);
    transition: transform 0.5s;
    opacity: 0;
    width: 300px;
    padding: 10px;
}
.pa-data::after {
    content: " ";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: lightgrey transparent transparent transparent;
    position: absolute;
    left: 250px;
    bottom: -9px;
}
.pa-data dt {
    float: left;
    clear: left;
    margin-right: 5px;
    font-weight: bold;
    line-height: 150%;
}
.pa-data dd {
    margin-left: 0px;
    float: right;
    line-height: 150%;
}
.progress {
    overflow: visible;
}
.progress-bar:hover .pa-data {
    opacity: 1;
    transform: translate(-250px, -110%) scale(1);
}
