.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: inherit;
	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: inherit;
	font-size: 16px;
}

button.accordion:hover {
	background-color: rgba(126,168,173,1);
	color: #FFFFFF;
}

button.accordion.active {	
	background-color: rgba(126,168,173,1);
	color: #FFFFFF;
}

#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: inherit;
	font-size: 14px;
}

div.panel.show {
	opacity: 1;
	max-height: max-content; 
}

.table-container {
	display: block;
	width: 100%;
}
.flex-table {
	display: flex;
	flex-flow: row wrap;
	border-left: solid 1px #B6AEA5;
	transition: 0.5s;
}
.flex-table.header {
	border-left: solid 1px #B6AEA5;
}
.flex-table.header .flex-row {
	background: #FFFFFF;
	color: #968C83;
	border-color: #B6AEA5;
	padding: 10px 20px 10px 25px;
}

.flex-row {
	width: calc(100%/2);
	text-align: left;
	padding: 0.5em 0.5em;
	border-right: solid 1px #B6AEA5;
	border-bottom: solid 1px #B6AEA5;
}

.flex-row a {
	font-family: inherit;
	font-weight: 300;
	font-size: 14px;
	color: #001489;
	text-decoration: none;
}

.flex-row a:hover {
	text-decoration: underline;
}

.flex-row p {
	line-height: 16px;
	color: #001489;
}

.flex-row p:before {
	color: #001489;
	font-size: 100%;
}

.column .flex-row {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	padding: 0;
	border: 0;
	border-bottom: solid 1px #B6AEA5;
}

.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: 16px;
	line-height: 20px;
}

.wrap-text {
	margin-right: 20px;
}

.breadcrumb a:last-child{
	font-weight: normal;
	color: #c7c7c7;
}

.breadcrumb a {
	color: #0058af;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    text-decoration: none;
	font-size: 16px;
}

@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;
	}
}