html, body, div, caption, h1, h2, h3, h4, hr, ul, li, ol, p {
	margin: 0;
	padding: 0;
}
html {
	color: var(--color-fg-default);
	background-color: var(--color-bg-default);
}
body {
	padding: 1em;
	text-align: center;
}
h1 {
	color: #080;
	font-size: 2.5rem;
	margin: .5em 0;
}
h2 {
	font-size: 1.6rem;
	margin: 1.2em 0 .4em 0;
}
a {
	color: var(--color-lk-default);
}
a:visited {
	color: var(--color-lk-visited);
}
.table {
	display: table;
	border-collapse: collapse;
	empty-cells: show;
	margin: 0 auto;
	min-width: 50%;
}
.table-caption {
	display: table-caption;
	color: var(--color-fg-muted);
	margin-bottom: .3em;
	font-style: italic;
}
.table-colgroup {
	display: table-column-group;
}
.language-column {
	width: 25%;
}
.table-column {
	display: table-column;
}
.table-header {
	display: table-header-group;
}
.table-body {
	display: table-row-group;
}
.table-row {
	display: table-row;
}
.table-cell {
	display: table-cell;
	padding: .5rem;
	border: 1px solid var(--color-br-default);
	text-align: left;
}
.table-header .table-cell {
	font-weight: bold;
	background: var(--color-bg-header);
}
.table-cell .tree-link {
	display: inline-block;
	padding: .25em;
	margin: .15em;
	border: 1px solid var(--color-br-block);
	border-radius: .3em;
	background-color: var(--color-bg-block);
}
.tree-link.removed, li.removed {
	color: var(--color-fg-muted);
	text-decoration: line-through;
}
.notice {
	margin-top: 1rem;
}
.note {
	color: var(--color-st-txtred);
	font-weight: bold;
}
#main-page ul {
	display: inline-block;
	text-align: left;
}

