/* Note:
	text-decoration:none FAILS in firefox 3.6.15, hardcode <u>...</u>
	IE 8 and firefox handle padding and margin differently, use both
*/


ol
{
	padding-left : 0;
	margin-left : 0;
	list-style-type:none;
/*	text-decoration:underline; */
	font-weight:bold;
}
ol ol
{
	padding-left : 2em;
	margin-left : 0;
	list-style-type:decimal;
/*	text-decoration:none;*/
	font-weight:normal;
}
ol ol ol
{
	list-style-type:disc;
}
ol ol ol ol
{
	list-style-type:lower-roman;
}
ol ol ol ol ol
{
	list-style-type:lower-alpha;
}


