.treemenu {
	margin: 0 auto;
	width: 100%;
}
.treemenu .content {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
.treemenu .content-frame {
	transition: 0.2s;
	height: 0;
	overflow: hidden;
	width: 97.5%;
}
.treemenu .content-inner {
	transition: 0.2s;
	height: 0;
	overflow: hidden;
	width: 100%;
}
.treemenu input:checked + label + .content-frame,
.treemenu input:checked + label + .content-inner {
	height: auto;
}
.treemenu input {
	display: none;
}
.treemenu label {
	border: #999999 solid 1px;
	box-sizing: border-box;
	color: #000;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: bold;
	margin-bottom: 1em;
	padding-left: 1em;
	width: 100%;
}
.treemenu label:after {
	background: #CCCCCC;
	content: '\f0fe';
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Font Awesome 5 Free";
	padding: 1em;
	width: 5%;
}
.treemenu label span i {
	margin-right: 0.5em;
}
.treemenu input:checked + label:after {
	content: '\f146';
}
table.csvtohtml {
	font-size: 1em;
	margin: 0;
	width: 100%;
}
table.csvtohtml tr.headers,
table.csvtohtml tr.rowset {
	background-color: unset;
}
table.csvtohtml tr .colset {
	border: none;
}
table.csvtohtml tr.headers th,
table.csvtohtml tr.headers td,
table.csvtohtml tr.rowset th,
table.csvtohtml tr.rowset td {
	background-color: unset;
	display: block;
	font-weight: normal;
	line-height: 200%;
	text-align: left;
	width: 100%;
}
table.csvtohtml tr.headers th:nth-of-type(1),
table.csvtohtml tr.rowset td:nth-of-type(1) {
	border: solid 1px #999999;
	box-sizing: border-box;
	font-weight: bold;
	padding: 0.5em 0.5em 0.5em 0.7em;
}
table.csvtohtml tr.headers th:last-of-type,
table.csvtohtml tr.rowset td:last-of-type {
	margin: 0 0 2em;
}
table.csvtohtml tr th:nth-of-type(1):before,
table.csvtohtml tr td:nth-of-type(1):before {
	color: #FF3333;
	content: '\f059';
	font-family: "Font Awesome 5 Free";
	margin: 0 0.3em 0 0;
}
table.csvtohtml tr.headers th:nth-of-type(2),
table.csvtohtml tr.rowset td:nth-of-type(2) {
	font-weight: bold;
	padding: 0.5em 0 0.5em 0.75em;
}
table.csvtohtml tr th:nth-of-type(2):before,
table.csvtohtml tr td:nth-of-type(2):before {
	color: #00CC33;
	content: '\f058';
	font-family: "Font Awesome 5 Free";
	margin: 0 0.3em 0 0;
}
table.csvtohtml tr th:nth-of-type(n+3),
table.csvtohtml tr td:nth-of-type(n+3) {
	padding: 0 0 0 2.5em;
}
table.csvtohtml tr th:empty,
table.csvtohtml tr td:empty {
	background: lime;
}
@media screen and (max-width: 834px) {
	.treemenu {
		font-size: 13px;
	}
	.treemenu label:after {
		padding: 0.5em 1em;
	}
	table.csvtohtml * {
		font-size: 1em;
	}
	table.csvtohtml tr th:nth-of-type(n+3),
	table.csvtohtml tr td:nth-of-type(n+3) {
		padding: 0 0 0 1.5em;
	}
}