/* NOSCRIPT*/

ol {
    counter-reset: chapter;
    behavior: expression(chapter = 1);
  }

ol li:before {
    content: counter(chapter) ".  ";
    counter-increment: chapter;
    font-weight: bold;
	margin-right:10px;
  }

* html ol li {
    behavior: expression( !this.before ? this.before = this.innerHTML = '<b>' + chapter++ + '.</b>' + this.innerHTML : '' );
  }
* html ol li b {
	margin-right:10px;
  } 
