//tmtC_cssOnBrowser
tmt_css_NS4 = "ns4.css";
tmt_css_NS6plus = "default.css";
tmt_css_IE = "default.css";
if(document.layers){
   document.write("<link rel='stylesheet' href='" + tmt_css_NS4 + "' type='text/css'>");
}
if(document.getElementById){
   document.write("<link rel='stylesheet' href='" + tmt_css_NS6plus + "' type='text/css'>");
}
if(document.all){
   document.write("<link rel='stylesheet' href='" + tmt_css_IE + "' type='text/css'>");
}//tmtC_cssOnBrowserEnd