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

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
  if( bName == "M")
   {
    // MAC IE
    document.writeln("h1{font-size:100%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:100%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:135%;}");
    document.writeln(".ltx{font-size:108%; line-height:100%}");
    document.writeln(".mtx{font-size:100%}");
    document.writeln(".stx{font-size:80%}");
    document.writeln(".sstx{font-size:70%}");
    document.writeln(".ll{font-size:135%}");
    document.writeln(".l{font-size:108%}");
    document.writeln(".m{font-size:100%}");
    document.writeln(".s{font-size:80%}");
    document.writeln(".ss{font-size:70%}");
  }
  else
  {
    if( vNum < 5 )
    {
      // MAC NETSCAPE 4.x
    document.writeln("h1{font-size:120%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:120%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:100%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:150%; line-height:180%}");
    document.writeln(".ltx{font-size:140%; line-height:160%}");
    document.writeln(".mtx{font-size:120%; line-height:140%}");
    document.writeln(".stx{font-size:100%; line-height:140%}");
    document.writeln(".sstx{font-size:85%; line-height:140%}");
    document.writeln(".ll{font-size:150%}");
    document.writeln(".l{font-size:140%}");
    document.writeln(".m{font-size:120%}");
    document.writeln(".s{font-size:100%}");
    document.writeln(".ss{font-size:85%}");
    }
    else
    {
      // MAC NETSCAPE 6.x~
    document.writeln("h1{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:75%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:114%; line-height:130%}");
    document.writeln(".ltx{font-size:92%; line-height:130%}");
    document.writeln(".mtx{font-size:80%; line-height:120%}");
    document.writeln(".stx{font-size:75%; line-height:100%}");
    document.writeln(".sstx{font-size:68%; line-height:130%}");
    document.writeln(".ll{font-size:114%}");
    document.writeln(".l{font-size:92%}");
    document.writeln(".m{font-size:80%}");
    document.writeln(".s{font-size:75%}");
    document.writeln(".ss{font-size:68%}");
    }
   }

}
else
{
  if( bName == "M")
  {
    // WIN IE
    document.writeln("h1{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:75%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:100%; line-height:140%;}");
    document.writeln(".ltx{font-size:90%; line-height:140%;}");
    document.writeln(".mtx{font-size:80%; line-height:140%;}");
    document.writeln(".stx{font-size:75%; line-height:140%;}");
    document.writeln(".sstx{font-size:70%; line-height:140%;}");
    document.writeln(".ll{font-size:100%}");
    document.writeln(".l{font-size:90%}");
    document.writeln(".m{font-size:80%}");
    document.writeln(".s{font-size:75%}");
    document.writeln(".ss{font-size:70%}");
  }
  else
  {
    if( vNum < 5 )
    {
      // WIN NETSCAPE 4.x
    document.writeln("h1{font-size:105%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:105%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:98%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:130%; line-height:180%}");
    document.writeln(".ltx{font-size:120%; line-height:160%}");
    document.writeln(".mtx{font-size:105%; line-height:150%}");
    document.writeln(".stx{font-size:98%; line-height:150%}");
    document.writeln(".sstx{font-size:90%; line-height:140%}");
    document.writeln(".ll{font-size:130%}");
    document.writeln(".l{font-size:120%}");
    document.writeln(".m{font-size:105%}");
    document.writeln(".s{font-size:98%}");
    document.writeln(".ss{font-size:90%}");
    }
    else
    {
      // WIN NETSCAPE 6.x~
    document.writeln("h1{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h2{font-size:80%; font-weight:normal; margin:0pt;}");
    document.writeln("h3{font-size:78%; font-weight:normal; margin:0pt;}");
    document.writeln(".lltx{font-size:100%; line-height:140%}");
    document.writeln(".ltx{font-size:90%; line-height:140%}");
    document.writeln(".mtx{font-size:80%; line-height:140%}");
    document.writeln(".stx{font-size:78%; line-height:150%}");
    document.writeln(".sstx{font-size:72%; line-height:140%}");
    document.writeln(".ll{font-size:100%}");
    document.writeln(".l{font-size:90%}");
    document.writeln(".m{font-size:80%}");
    document.writeln(".s{font-size:78%}");
    document.writeln(".ss{font-size:72%}");
    
    }
  }
}
 document.writeln("--></STYLE>");


