We create many legal forms, which use nested ordered lists. In htmlTextBox for reporting, we'd like to apply styles like upper-alpha, lower-alpha, etc to the ol tag. Currently, the only numbering for an ol is 1, 2, 3. CSS ability to set the style at depth (like ol ol) would be best.
<ol>
<li>1. text</li>
<li>2. text
<ol>
<li>a. text
<ol>
<li>i. text</li>
<li>ii. text</li>
</ol>
</li>
<li>b. text</li>
</ol>
</li>
</ol>