/************
NumbThy.css
Date: 9 Jan, 2010
Author: Robert Campbell, <rcampbel@umbc.edu>
************/

body { 
	background-color: #CCFFFF;
	font-family: Arial, Helvetica, sans-serif;
	counter-reset: section subsection appen-ctr;}
h1,h2,h3 {font-family: Arial, Helvetica, sans-serif}
h1 {color: red; text-align: center}
p.defn,p.thm {margin-left: 0; border: solid thin; background-color: #DDD; padding: 1em 3%}

h2.section {counter-reset: subsection;}
h2.section:before {
	content: counter(section) ". ";
	counter-increment: section;
}
h3.section:before {
	content: counter(section) "." counter(subsection) ". ";
	counter-increment: subsection;
}

h2.appendix {counter-reset: subappen-ctr;}
h2.appendix:before {
	counter-increment: appen-ctr;
	content: counter(appen-ctr, upper-latin) ". ";
}

/*
ol {counter-reset: item;}
ol>li {display: block;}
ol>li:before {content: counters(item, ".") ") "; counter-increment: item}
*/

