/*
 * +AMDG
 */
/*
 * This document was begun on 21 Oct 2022, the commemoration
 * of Sts. Chrysanthus and Daria, MM, and it is humbly
 * dedicated to them and to the Immaculate Heart of Mary,
 * for their prayers, and to the Sacred Heart of Jesus, for
 * His mercy.
 */

body {
	counter-reset:  articnum;
	counter-reset:  footnotenumber;
}
h2 {
	text-align:  left;
	font-size:  200%;
	color:  var(--heading-color);
	font-variant:  small-caps;
	font-weight:  bold;
	margin:  0;
	margin-top:  2%;
	text-shadow:  1px 1px 1px #000000;
}
@counter-style articdoz {
	system:  numeric;
	symbols:  '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'X' 'E';
}
@counter-style fndoz {
	system:  numeric;
	symbols:  '0' '1' '2' '3' '4' '5' '6' '7' '8' '9' 'X' 'E';
}
.newartic {
	counter-increment:  articnum;
}
.newartic::before {
	display:  inline-block;
	color:  var(--heading-color);
	width:  3em;
	content:  "§ " counter(articnum,articdoz);
}
.fn {
	color:  var(--heading-color);
	font-size:  80%;
	counter-increment:  footnotenumber;
}
.fn::before {
	color:  var(--heading-color);
	font-size:  80%;
	content:  "[" counter(footnotenumber,fndoz) "  ";
}
.fn::after {
	color:  var(--heading-color);
	font-size:  80%;
	content:  "]";
}
