.tab {
	overflow: hidden;
	background-color: #f2f2f2;
	display: inline-flex;
	justify-content: left;
	align-items: center;
	width: 100%;
	padding: 4px 4px 0 4px;
	border-radius: 10px 10px 0 0;
}

.tab button {
	background-color: inherit;
	margin: 0 1px 0 0;
	float: left;
	border: none;
	cursor: pointer;
	padding: 14px 16px;
	font-size: 16px;
	font-family: 'Didact Gothic',sans-serif;
	border-radius: 10px 10px 0 0;
}

.tab button.active {
	background: #fff;
	color: #000 !important;
}

.tabcontent {
	display: none;
	padding: 6px 12px;
	border: none;
}

div {
	box-sizing: border-box;
}

button.accordion {
	background-color: white;
	color: #000000;
	cursor: pointer;
	padding: 10px 20px 10px 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	transition: 0.4s;
	margin-top: 4px;
	font-family: 'Didact Gothic',sans-serif;
	font-size: 16px;
}

button.accordion:hover {	
	background-color: rgba(91,126,149,0.7);
	color: #FFFFFF;
}

button.accordion.active {	
	background-color: rgba(91,126,149,0.7);
}

#accordion-head:after {
	content: '\276E';
	font-size: 100%;
	color: #000000;
	float: right;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: -15px;
	transform: rotate(-90deg); 
}

#accordion-head.active:after {
	content: '\276E';
	color: #FFFFFF;
	transform: rotate(90deg);
}

div.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: 0.6s ease-in-out;
	opacity: 0;
	font-family: 'Didact Gothic',sans-serif;
	font-size: 14px;
}

div.panel.show {
	opacity: 1;
	max-height: max-content; 
}

#panel-content {
	width: inherit;
	text-align:left;
}

.table-container {
	display: block;
	width: 100%;
}
.flex-table {
	border-left: solid 1px #B6AEA5;
	transition: 0.5s;
}
.table-header {
	border-left: solid 1px #B6AEA5;
}
.table-header .row {
	background: #FFFFFF;
	color: #968C83;
	border-color: #B6AEA5;
	padding: 10px 20px 10px 25px;
}

.row {
	width: 100%;
	text-align: left;
	padding: 0.5em 0.5em;
	border-right: solid 1px #B6AEA5;
	border-bottom: solid 1px #B6AEA5;
}

.row a {
	font-family: 'Didact Gothic',sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #001489;
	text-decoration: none;
}

.row a:hover {
	text-decoration: underline;
}

.row p {
	line-height: 16px;
	color: #001489;
}

.row p:before {
	color: #001489;
	font-size: 100%;
}

.text-bold {
	font-weight: bold;
}

p a:hover {
	text-decoration: underline;
}

.panel p {
	line-height: 16px;
}

.file {
	padding-right: 10px;
}

#unavailable {
	color: #968C83;
	font-weight: 200;
	text-decoration: none;
}

p.sourcelink {
	font-size: 14px;
	line-height: 16px;
}

.wrap-text {
	margin-right: 20px;
}

@media all and (max-width: 767px) {
	.table-container {
	width: 100%;
  }
  
  .flex-row {
    width: 100%;
  }
  
  .flex-row.first {
    width: 100%;
  }
  
  .column {
	width: 100%;
  }
  
  .flex-table{
	display: flex;
	flex-direction: column;
  }
  
  #one {
	order: 1;
  }
  
  #two {
	order: 3;
  }
  
  #three {
	order: 2;
  }
  
  #four {
	order: 4;
  }
  
  #hide {
	display: none;
  }
}