gCssUA = navigator.userAgent.toUpperCase();
gCssBrw = navigator.appName.toUpperCase();

with (document) {
/*================================= Write CSS =================================*/
		write("<style type=\"text/css\">");
		write("<!--");

/*:::: CSS Set For Common ::::*/
		write("A:visited { text-decoration:underline; }");
		write("A:link { text-decoration:underline; }");
		write("A:active { text-decoration:none; }");
		write("A:hover { text-decoration:none; }");

/*:::: CSS Set For Windows(IE) ::::*/
	if (gCssUA.indexOf("WIN") != -1 && gCssUA.indexOf("MSIE") != -1) {
		write(".copy { font-size:11px; }");
		write(".text_10 { font-size:11px; line-height:120%; }");
		write(".text_12 { font-size:12px; line-height:140%; }");
		write(".text_14 { font-size:14px; line-height:140%; }");
	}

/*::::: CSS Set For Windows(NN) ::::*/
	if (gCssUA.indexOf("WIN") != -1 && gCssBrw.indexOf("NETSCAPE") != -1) {
		write(".copy { font-size:11px; }");
		write(".text_10 { font-size:11px; line-height:130%; }");
		write(".text_12 { font-size:12px; line-height:150%; }");
		write(".text_14 { font-size:14px; line-height:150%; }");
	}
/*::::: CSS Set For Macintosh ::::*/
	if (gCssUA.indexOf("MAC") != -1) {
		write(".copy { font-size:12px; }");
		write(".text_10 { font-size:12px; line-height:120%; }");
		write(".text_12 { font-size:13px; line-height:140%; }");
		write(".text_14 { font-size:14px; line-height:140%; }");
	}

	write("-->");
	write("</style>")
}
