  var sVar = navigator.appName;

  if (sVar != "Microsoft Internet Explorer")
  {
  document.write ("<style TYPE='TEXT/CSS'>");
  document.write ("  body      { font-family: Verdana, Arial, sans-serif; font-size: 9pt; line-height: 17pt }");
  document.write ("  table     { font-family: Verdana, Arial, sans-serif; font-size: 9pt; line-height: 11pt }");
  document.write ("  td        { font-family: Verdana, Arial, sans-serif; font-size: 9pt; line-height: 15pt }");
  document.write ("  A:link    { text-decoration=none; color=#19477F; }");
  document.write ("  A:active  { text-decoration=none; color=red; }");
  document.write ("  A:hover   { text-decoration=none; color=red; }");
  document.write ("  A:visited { text-decoration=none; }");
  document.write ("</style>");
  }

  if (sVar == "Microsoft Internet Explorer")
  {
  document.write ("<style TYPE='text/css'>");
  document.write ("  body      { font-family: Verdana, Arial, sans-serif; font-size: 8pt; line-height: 17pt }");
  document.write ("  table     { font-family: Verdana, Arial, sans-serif; font-size: 8pt; }");
  document.write ("  td        { font-family: Verdana, Arial, sans-serif; font-size: 8pt; }");
  document.write ("  A:link    { text-decoration=none; color=#19477F; }");
  document.write ("  A:active  { text-decoration=none; color=red; }");
  document.write ("  A:hover   { text-decoration=none; color=red; }");
  document.write ("  A:visited { text-decoration=none; }");
  document.write ("</style>");
  }
