theAgent=navigator.userAgent;
ver=""+navigator.appVersion;
//-----------------------------------------------------

//all
document.write("<style type='text/css'><!--")

//mac-ie&ns
if(theAgent.indexOf("Mac")>=0)
{

//mac-ie&ns
document.write(".e9{font-size:9px}")
document.write(".e10{font-size:10px}")
document.write(".el{font-size:25px}")
document.write(".ell{font-size:28px}")

document.write(".js{font-size: 12px; line-height: 18px; text-decoration: none}")
document.write(".jm{font-size:14px; line-height: 25px; text-decoration: none}")
document.write(".jl{font-size: 16px; text-decoration: none}")
document.write(".jll{font-size: 20px; text-decoration: none}")
}
else{
//for win-ie
if(ver.charAt(0)=="M")
{

document.write(".e9{font-size:9px;line-height:11px}")
document.write(".e10{font-size:10px;line-height:12px}")
document.write(".el{font-size:25px;line-height:15px}")
document.write(".ell{font-size:28px}")

document.write(".js{font-size: 12px; line-height: 20px; text-decoration: none}")
document.write(".jm{font-size:14px; line-height: 25px; text-decoration: none}")
document.write(".jl{font-size: 16px; text-decoration: none}")
document.write(".jll{font-size: 20px; text-decoration: none}")
}else{
//for win ns
document.write(".e9{font-size:11px}")
document.write(".e10{font-size:12px;line-height:11px}")
document.write(".el{font-size:25px}")
document.write(".ell{font-size:28px}")

document.write(".js{font-size: 14px; line-height: 18px; text-decoration: none}")
document.write(".jm{font-size:15px; line-height: 25px; text-decoration: none}")
document.write(".jl{font-size: 17px; text-decoration: none}")
document.write(".jll{font-size: 21px; text-decoration: none}")
}
}
document.write("--></style>");


