/* Do some of the browser sensative stuff.
 * Really need adaptive rendering here.
 */
/* !IE  margin-left:-30px */
/* IE  margin-left:0px   */


function tweak_Style_MSIE() {
if (navigator.userAgent.indexOf('MSIE')==-1) {
/* not MSIE */ 
document.writeln('<st'+'yle type="text/css">');
document.writeln('#relatedLinks  ul {  margin-left:-30px  } ');
document.writeln('#ContentBody   {  font-size:medium; } ');
document.writeln('#ContentBody  dt {  font-size:large; } ');
document.writeln('#ContentBody  dd {  font-size:medium; } ');
document.writeln('#ContentBody  td {  font-size:medium; } ');
document.writeln('#ContentBody  p  {  font-size:medium; } ');
document.writeln('#relatedLinks  li {  font:verdana; font-size:small;font-weight:bolder  } ');
document.writeln('</st'+'yle>');
}else {
/* MSIE */ 
document.writeln('<st'+'yle type="text/css">');
document.writeln('#relatedLinks  ul {  margin-left:0px  } ');
document.writeln('</st'+'yle>'); 
}
}; //tweak_Style_MSIE
