/**
The default size for ‘medium’ text in all modern browsers is 16px.

So, if we divide 100/16 we get 6.25 as a standard % for 1px.

If we want to base our design on a 10px font, we would set the
root font percentage to 62.5
*/

*
	{
	font-family : "Times New Roman", Times, serif;
	}

html	{ font-size: 100%; /* IE hack .. prevents  */ }

body
	{
	background : #FFFFFF;
	margin-left : 50px;
	color:#000;
	font-size: .625em;
	font-weight : normal;
	font-style : normal;
	}


body,ol,ul.td,blockquote,em
	{
	font-size: 1.0em;
	}


H1 {
	margin-left : 40px;
	text-align : center;
	/* font-size : 24px; */
	font-size : 1.3em;
	font-family : "Times New Roman", Times, serif;
	font-weight : bold;
	font-style : normal;
	color : #000099;
}

H2  {
	/* font-size : 16px; */
	font-size : 1.1em;
	font-family : Arial, Helvetica, sans-serif;
	font-weight : bold;
	font-style : normal;
	color : Black;
	margin-left : 25px;
	text-align : center;
}

H3  {
	/* font-size : 18px; */
	font-size : 1.1em;
	font-family : "Times New Roman", Times, serif;
	font-weight : bold;
	font-style : normal;
	color : #000099;
	text-align : center;
	margin-left : 25px;
}


H4  {
	/* font-size : 17px; */
	font-size : 1.05em;
	font-family : "Times New Roman", Times, serif;
	font-weight : bold;
	font-style : normal;
	color : Black;
	text-align : center;
	margin-left : 25px;
}


P  {/*margin-left : 25;*/}

sup A  {color : Red;font-size : small;}
A  {color : Red;font-weight : bold;font-style : normal;}
A:link  {color : Red;text-decoration:none;}
A:Visited  {color : #965A5A;text-decoration:none;}
A:Active  {color : #66ABCC;}
A:Hover  {color : #000099;text-decoration:none;}


ol,ul
	{
	margin-left: 25px;
	padding-left: 60px;
	text-indent:0px;
	}

li
	{
	list-style-position : outside;
	}


td  {}