<!--
//tmtC_cssOnBrowser
tmt_css_NN = "styles/globalNN.css";
tmt_css_IE = "styles/globalIE.css";
if(document.layers){
   document.write("<link rel='stylesheet' href='" + tmt_css_NN + "' type='text/css'>");
}
if(document.all){
   document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css' media='all'>");
}
else{
    document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css' media='all'>");
}//tmtC_cssOnBrowserEnd
//-->