*{box-sizing:border-box;}
body{
	font-size:100%;
	font-family:Arial, Helvetica, sans-serif;
	background-color:#000;
	color:#fff;
	font-weight:300;
}
.inner{
	max-width:1600px;
	width:100%;
	margin:0 auto;
	position:relative;
	z-index:1;
	height:100%;
	padding:0 2rem;
}
.mask{
	position:absolute;
	z-index:0;
	top:0;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,.7);
	display:none;
}
section{
	padding:4rem 0;
}
header{
	/*background-image:url(images/panthers.webp); */
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	height:50vh;
	padding:4rem 0;
	position:relative;
}
header .inner{
	display:flex;
	flex-direction: column;
	justify-content: center;
	gap:2rem;
}
#intro,
#correlation{
	display:flex;
	align-items:flex-start;
	padding:0;
}
#correlation{
	align-items:center;
}
#intro > *,
#correlation > *{
	width:50%;
}
#intro .inner,
#correlation .inner{
	padding:4rem;
}
img{
	width:100%;
	height:auto;
}
h1{
	font-size:4rem;
	font-weight:600;
}
h2{
	font-size:2.25rem;
	font-weight:400;
	line-height:1.25em;
}
h3{
	font-size:2.25rem;
	font-weight:400;
	line-height:1.25em;
	font-style:italic;
	margin:2rem 0;
}
p{
	font-size:1.3rem;
	line-height:1.4em;
	margin:2rem 0;
}
strong{
	font-weight:600;
}
em{
	font-style:italic;
}
small{
	font-size:.73em;
}

.tabs {
  display: flex;
  margin-bottom: 10px;
}
.tabs button {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  cursor: pointer;
  margin-right: 5px;
}
.tabs button.active {
  background: #3498db;
  color: white;
}
.chart-container {
  display: none;
}
.chart-container.active {
  display: block;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  font-size:.85rem
}
table#taxrates tr th:last-child,
table#taxrates tr td:last-child{
	text-align:right;
}
.prehead th{
	background-color:transparent;
}
th.label, th, td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border:1px solid #000;
}
th {
  text-align: left;
}
th.label{
	text-align:center;
}
thead th {
  background-color: #55608f;
}
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
tbody td {
  position: relative;
}
tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

/*SORTING */
.inner.sortable td,

table.sortable th {
  position: relative;
}

table.sortable th.no-sort {
  padding-top: 0.35em;
}

table.sortable th button {
  padding: 4px;
  margin: 1px;
  font-size: 100%;
  font-weight: bold;
  background: transparent;
  border: none;
  display: inline;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  text-align: left;
  outline: none;
  cursor: pointer;
}

table.sortable th button span {
  position: absolute;
  right: 4px;
}

table.sortable th[aria-sort="descending"] span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}

table.sortable th[aria-sort="ascending"] span::after {
  content: "▲";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}

table.show-unsorted-icon th:not([aria-sort]) button span::after {
  content: "♢";
  color: currentcolor;
  font-size: 100%;
  position: relative;
  top: -3px;
  left: -4px;
}

table.sortable td.num {
  text-align: right;
}

/* Focus and hover styling */

table.sortable th button:focus,
table.sortable th button:hover {
  padding: 2px;
  border: 2px solid currentcolor;
  background-color: #e5f4ff;
}

table.sortable th button:focus span,
table.sortable th button:hover span {
  right: 2px;
}

table.sortable th:not([aria-sort]) button:focus span::after,
table.sortable th:not([aria-sort]) button:hover span::after {
  content: "▼";
  color: currentcolor;
  font-size: 100%;
  top: 0;
}
