/* CSS Document */

body{margin:0px; background-color:#FFFFFF;}

td{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:14px;
 color:#999999;
}
a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #999999;
	font-weight: bold;
}
a:link {
	color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
}
a:hover {
	text-decoration: none;
	color: #999999;
	font-weight: bold;
}
a:active {
	text-decoration: none;
}
 
.main{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:14px;
 color:#999999;
 font-weight:normal;
 background-color:#FFFFFF;
 }
 
 
.textHeader{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:14px;
 color:#999999;
 font-weight:bold;
 }
 
 .footer{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:10px;
 color:#666666;
 text-decoration:none;
 padding-top:6px;
 padding-bottom:6px;
 background-color:#FFFFFF;
}

.logo{
 font-family:Verdana, Arial, Helvetica, sans-serif;
 font-size:16px;
 color:#999999;
 font-weight:bold;

}

.footerLink {
	font-size: 9px;
	color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.footerLink a {
	font-size: 9px;
	color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

table {
	table.center {margin-left:auto; margin-right:auto;}
And then do this: 

  <table class="center">
    ...
  </table>
At this point, Mozilla and Opera will center your table. Internet Explorer 5.5 and up, however, needs you to add this to your CSS as well: 

  body {text-align:center;}

	}
h2 {  font-size: 18px; color: #999999;  background: transparent;  font-weight: bold;  text-align: center}


