/*outline numbers for h2, h3*/
/* Info: http://www.westciv.com/style_master/academy/css_tutorial/advanced/generated_content.html */

h2:before {
	content: counter(chapter);
	margin-right: 0.5em;
	}

h2[skip]:before,
h2.apropos:before {
	content: "";
	margin-right: 0;
	}

h2 {
	counter-increment: chapter;
	counter-reset: subsection 0;
	}

h2[skip],
h2.apropos {
	counter-increment: none;
	counter-reset: none;
	}


h3:before {
	content: counter(chapter) "." counter(subsection);
	margin-right: 0.5em;
	}

h3[skip]:before,
h3.apropos:before {
	content: none;
	margin-right: 0;
	}

h3 {
	counter-increment: subsection
	}

h3[skip],
h3.apropos {
	counter-increment: none;
	}

