
var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

document.write("<STYLE TYPE='text/css'><!--");
	if(navigator.appVersion.indexOf("Mac") > -1){

		//for MAC IE
		if( bName == "M"){
			document.write(".news{font-size:12pt}");
			document.write(".text1{font-size:8pt; line-height:8pt}");
			document.write(".text2{font-size:10pt; line-height:10pt}");
			document.write(".text3{font-size:12pt; line-height:14pt}");
			document.write(".text4{font-size:14pt; line-height:14pt}");
		}else{
			if( vNum < 5 ){

				//for MAC NETSCAPE 4.x
				document.write(".news{font-size:14pt}");
				document.write(".text1{font-size:10pt; line-height:10pt}");
				document.write(".text2{font-size:12pt; line-height:14pt}");
				document.write(".text3{font-size:14pt; line-height:18pt}");
				document.write(".text4{font-size:18pt; line-height:18pt}");

			}else if( vNum >= 5 ){
				//for MAC NETSCAPE 6.x~
				document.write(".news{font-size:11pt}");
				document.write(".text1{font-size:8pt; line-height:8pt}");
				document.write(".text2{font-size:9pt; line-height:10pt}");
				document.write(".text3{font-size:11pt; line-height:13pt}");
				document.write(".text4{font-size:14pt; line-height:14pt}");

			}
		}

	}else{

		if( bName == "M"){
			//for WIN IE
			document.write(".news{font-size:12pt}");
			document.write(".text1{font-size:8pt; line-height:9pt}");
			document.write(".text2{font-size:10pt; line-height:12pt}");
			document.write(".text3{font-size:12pt; line-height:16pt}");
			document.write(".text4{font-size:14pt; line-height:14pt}");
		}else{
			if( vNum < 5 ){

				//for WIN NETSCAPE 4.x
				document.write(".news{font-size:12pt}");
				document.write(".text1{font-size:8pt; line-height:9pt}");
				document.write(".text2{font-size:10pt; line-height:12pt}");
				document.write(".text3{font-size:12pt; line-height:16pt}");
				document.write(".text4{font-size:14pt; line-height:16pt}");

			}else if( vNum >= 5 ){
				//for WIN NETSCAPE 6.x~
				document.write(".news{font-size:12pt}");
				document.write(".text1{font-size:8pt; line-height:9pt}");
				document.write(".text2{font-size:10pt; line-height:12pt}");
				document.write(".text3{font-size:12pt; line-height:16pt}");
				document.write(".text4{font-size:14pt; line-height:16pt}");

			}
		}
	}
document.write("A:link {text-decoration:none}");
document.write("A:visited {text-decoration:none}");
document.write("A:active {text-decoration:none}");
document.write("A:hover {text-decoration:underline}");

 document.write("--></STYLE>");

