<!--
var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);

if(navigator.appVersion.indexOf("Mac") > -1){
	if( bName == "M"){
		// MAC IE
		document.write("<style type='text/css'>\
		.c {  font-size:10px; color: #333333; line-height: 14px}\
		</style>");
	}else{
		if( vNum < 5 ){
		// MAC NETSCAPE 4.x
		document.write("<style type='text/css'>\
		.c {  font-size: 10px; color: #333333; line-height: 14px}\
		</style>");
	 	}else{
		// MAC NETSCAPE 6.x~
		document.write("<style type='text/css'>\
		.c {  font-size: 12px; color: #333333; line-height: 16px}\
		</style>");
	 	}
	 }

}else{
	if( bName == "M"){
		// WIN IE
		document.write("<style type='text/css'>\
		.c {  font-size: 12px; color: #333333; line-height: 16px }\
		</style>");
	}else{
		if( vNum < 5 ){
		// WIN NETSCAPE 4.x
		document.write("<style type='text/css'>\
		.c {  font-size: 12px; color: #333333; line-height: 16px}\
		</style>");
		}else{
		// WIN NETSCAPE 6.x~
		document.write("<style type='text/css'>\
		.c {  font-size: 12px; color: #333333; line-height: 16px}\
		</style>");
		}
	}
}
//-->
