@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Sono:wght@200..800&display=swap');
/* CSS Document */
.sono-<uniquifier> {
  font-family: "Sono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "MONO" 1;
}
body {
	font-family: Calibri, "Calibri Light";
	padding: 0;
}
h1 {
	font-family: Calibri;
	border-top: 2px solid black;
	border-bottom: 2px solid black;
	padding: 0.2em 0px 0.2em 0px;
	font-weight: bold;
	text-align: center;
	background-color: #eee;
}
h2 {
	font-family: Calibri;
	font-weight: bold;
	font-size: 22px;
	margin: 10px 0px 10px 0px;
}
p {
	margin: 10px 0px 10px 0px;
}
hr {
	border: none;
	margin: 0px;
	height: 1px;
	/* Set the hr color */
	color: #333;  /* old IE */
	background-color: #333;  /* Modern Browsers */	
}
[data-tooltip]:hover::after {
	display: block;
	position: absolute;
	content: attr(data-tooltip);
	border: 1px solid black;
	background: #eee;
	padding: .25em;
	color: black;
}
ul {
	list-style-type: none;
	padding: 0;
	display: flex;
	justify-content: space-between;
	text-align: center;
}
ul li a {
	display: block;
	color: #737272;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 1.5em;
}
ul li a:hover {
	color: #F25E0D;
	text-decoration: underline;
}
.Data-Wrapper {
	width: 1000px;
	margin: auto;
}
@media screen and (max-width: 1000px) {
	.Data-Wrapper {
		width: 100%;
    }
}
.back-button2 {
	font-family: Calibri, "Calibri Light";
	display: block;
	color: #737272;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 1.5em;
	border: none;
	background-color: transparent;
	cursor: pointer;
	align-self: flex-start;
	align-items: stretch;
}
.back-button2:hover {
	color: #F25E0D;
	text-decoration: underline;
}
@media screen and (max-width: 850px) {
	ul {
		margin-left: 0px;
		margin-right: 0px;
    }
}
a {
	cursor: inherit;
}
span.redacted {
    color: black;
    background-color: black;
	user-select: none;
}
.img-logoIcon-small {
	display: block;
}
.img-Icon-small {
	display: block;
	width: 1em;
}
.img-Icon-medium {
	display: block;
	width: 2em;
}
.tooltip {
	text-decoration: underline;
	color: #2870BC;
}
.wrapper {
	display: block;
}
.grid-container-home {
	display: grid;
	grid-template-areas:
		'header header header'
		'top top top'
		'main main main';
	gap: 10px;
	padding: 10px;
}

.grid-container > div {
	text-align: left;
		/* background-color: #f1f1f1; */
	padding: 10px;
	font-size: 16px;
}
.grid-top {
	grid-area: top;
	justify-content: center;
}
.grid-head {
	grid-area: header;
	display: flex;
	justify-content: space-between;
}
.grid-main {
	grid-area: main;
	display: flex;
	justify-content: center;
}
.personnel-table {
	padding-left: 20px;
	padding-right: 20px;
}
.personnel-table-heading {
	font-size: 1.4em;
	text-align: left;
	padding: 0.2em 1em 0.2em 1em;
}
.personnel-table-data {
	font-size: 1.2em;
	text-align: left;
	padding: 0.2em 1em 0.2em 1.2em;
	font-family: Sono;
}
.sort-button{
	opacity: 50%;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.sort-button:hover {
	opacity: 100%;
}
.sort-button:focus {
	opacity: 100%;
}
/* Magic Tooltip Button */
.Document-link-alive {
	display: inline-block;
	position: relative;
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: all .4s 0s ease;
}

.Document-link-alive,
.Document-link-alive:before,
.Document-link-alive:after {
	box-sizing: border-box;
}

.Document-link-alive:hover:before,
.Document-link-alive:hover:after {
	visibility: visible;
	opacity: 1;
	transition: all 0.4s 1.5s ease; /** that's the magic **/
}

.Document-link-alive:before,
.Document-link-alive:after {
	content: "";
	visibility: hidden;
	opacity: 0;
	position: absolute;
	z-index: 1000;
	top: 50%;
	transform: translate3d(0, -50%, 0);
	transition: all 0.4s 0s ease;
}

.Document-link-alive:before {
	width: 0;
	height: 0;
	right: -8px;
	border: 8px solid transparent;
	border-right-color: #737272;
}

.Document-link-alive:after {
	content: attr(aria-label);
	width: auto;
	left: calc(100% + 8px);
	padding: 6px;
	background-color: #737272;
	color: #fff;
	border-radius: 4px;
}
/* Magic Tooltip Button */
.Document-link-dead {
	border: none;
	background-color: transparent;
	opacity: 20%;
}
.back-button {
	cursor: pointer;
}
.home-link {
	cursor: pointer;
}