Try this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Here</title>
<style type="text/css">
ol{line-height: 150%;
list-style-type: upper-alpha;
}
ol ol{list-style-type: decimal}
</style>
</head>
<body>
<ol>
<li>Number 1</li>
<li>
<ol>
<li>Info Here</li>
<li>Info Here</li>
<li>Info Here</li>
</ol>
</li>
<li>Number 2</li>
<li>
<ol>
<li>Info Here</li>
</ol>
</li>
<li>Number 3</li>
<li>
<ol>
<li>Info Here</li>
</ol>
</li>
</ol>
</body>
</html>
This code validates for me. Hope this helps.
EDIT: Sorry boxxertrumps, posted same time.
Bookmarks