var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.writeln("<STYLE TYPE='text/css'><!--");
document.writeln("body{margin-left:0px; margin-top:0px; color:#555555}");
document.writeln("a:link,a:visited,a:active{color:#555555; text-decoration:none}");
document.writeln("a:hover{color:#555555; text-decoration:underline}");
document.writeln("a.white:link,a.white:visited,a.white:active{color:#ffffff; text-decoration:none}");
document.writeln("a.white:hover{color:#ffffff; text-decoration:underline}");

if(navigator.appVersion.indexOf("Mac") > -1)
{
  if( bName == "M") {
    document.writeln(".mtx{font-size:12px}");
    document.writeln(".stx{font-size:11px}");
    document.writeln(".m{font-size:12px}");
    document.writeln(".s{font-size:10px}");
  } else {
    if( vNum < 5 ) {
    document.writeln(".mtx{font-size:12px; line-height:140%}");
    document.writeln(".stx{font-size:10px; line-height:140%}");
    document.writeln(".m{font-size:12px}");
    document.writeln(".s{font-size:10px}");
    } else {
      document.writeln(".mtx{font-size:12px; line-height:140%}");
      document.writeln(".stx{font-size:10px; line-height:140%}");
      document.writeln(".m{font-size:12px}");
      document.writeln(".s{font-size:10px}");
    }
  }
} else {
  if( bName == "M") {
    document.writeln(".mtx{font-size:12px; line-height:140%}");
    document.writeln(".stx{font-size:10px; line-height:140%; letter-spacing:1px}");
    document.writeln(".m{font-size:12px}");
    document.writeln(".s{font-size:10px}");
  } else {
    if( vNum < 5 ) {
      document.writeln(".mtx{font-size:12px; line-height:140%}");
      document.writeln(".stx{font-size:11px; line-height:160%}");
      document.writeln(".m{font-size:12px}");
      document.writeln(".s{font-size:11px}");
    } else {
      document.writeln(".mtx{font-size:12px; line-height:140%}");
      document.writeln(".stx{font-size:11px; line-height:160%}");
      document.writeln(".m{font-size:12px}");
      document.writeln(".s{font-size:11px}");
    }
  }
}
document.writeln("--></STYLE>");