ol {
	line-height: 1.3em;
	list-style-type: none;
	display: table;
}
ol li {
	margin: 0.3em 0;
	counter-increment: section;
	display: table-row;
}
ol li::before {
/*	content: "[" counter(section, numeric) "] "; */
	content: "[" counter(section) "] ";
	display: table-cell;   /* MAGIC */
	text-align: right;
	padding-right: 1em;
}
