var typeSize;var leading;if (navigator.appName.indexOf('Netscape') != -1) {  if (parseInt(navigator.appVersion) < 5) {   // for Navigator 4.7    typeSize = 11;    leading = 14;  }  else {                                                               //for Navigator 6    typeSize = 9;    leading = 11;  }}else {                                                                //for IE    typeSize = 9;    leading = 11;}document.write('<style type="text/css"> BODY { font-family: arial; font-size: ' + typeSize + 'pt; line-height:' + leading + 'pt; color: 330066;  text-decoration: none;} <\/style>');document.write('<style type="text/css"> BODY B { color: 330066; } <\/style>');document.write('<style type="text/css"> BODY A { color: 990033; } <\/style>');  document.write('<style type="text/css"> .body1 {  font-family: arial; font-size: ' + (typeSize + 1) + 'pt;color: 330066; } <\/style>'); document.write('<style type="text/css"> .nav1 A { font-family: arial; font-size: ' + (typeSize + 1) + 'pt; color: #990033;  line-height:' + (leading + 15) + 'pt; text-decoration: none;} <\/style>');document.write('<style type="text/css"> .nav2 A { font-family: arial; font-size: ' + (typeSize + 1) + 'pt; color: #990033;  line-height:' + (leading  + 1) + 'pt; text-decoration: none; } <\/style>');
