main img {
	width: 100%;
}

/*
ol.internnav {
    counter-reset: item;
}

ol.internnav > li {
    counter-increment: item;
	padding: .1em;
}
ol.internnav li:before {
	content: counters(item, ".") ". ";
}

ol.internnav li:empty {
	display: none;
}
*/
.table-of-content ol {
	list-style-type: none;
	counter-reset: item;
	margin: 0 !important;
	padding: 0 !important;
}
.table-of-content li {
	display: table;
	counter-increment: item;
	margin: 0 !important;
	padding: .1em !important;
}
.table-of-content li:before {
	content: counters(item, ".") ". ";
	display: table-cell;
	padding-right: .5em;
}
.table-of-content li li {
	margin: 0;
}
.table-of-content li li:before {
	content: counters(item, ".") " ";
}


.table-of-content,
.has-background {
	background: var(--c3);
	padding: var(--gap);
}
.table-of-content,
.has-cyan-bluish-gray-background-color {
	background: rgba(118, 157, 255, 0.24);	
}

.table-of-content * {
	font-size: .9rem;
}
.table-of-content a:hover {
	text-decoration: underline;
}
.table-of-content span {
	font-size: 1rem;
	font-weight: 700;
}