//CSS振り分けスクリプト
var browser;
browser=0;

if (!browser) {
if (navigator.platform.indexOf('Mac') > -1) {
//mac
if (navigator.appName.indexOf('Microsoft') > -1) {
//mac:explorer
x="iemac"
document.write("<style type='text/css'><!--")
document.write(".text01 { font-size: 10px; line-height: 13px}")
document.write(".text02 { font-size: 12px; line-height: 16px}")
document.write(".text03 { font-size: 14px; line-height: 120%}")
document.write(".text04 { font-size: 17px; line-height: 120%}")
document.write(".text05 { font-size: 20px; line-height: 120%}")
document.write(".text06 { font-size: 8px; line-height: 120%; color:#003399}")
document.write("--></style>")
} 
else {
//mac:netscape
x="nsmac"
document.write("<style type='text/css'><!--")
document.write(".text01 { font-size: 10px; line-height: 13px; font-family:Osaka}")
document.write(".text02 { font-size: 12px; line-height: 16px; font-family:Osaka}")
document.write(".text03 { font-size: 14px; line-height: 120%; font-family:Osaka}")
document.write(".text04 { font-size: 17px; line-height: 120%; font-family:Osaka}")
document.write(".text05 { font-size: 20px; line-height: 120%; font-family:Osaka}")
document.write(".text06 { font-size: 8px; line-height: 120%; font-family:Osaka; color:#003399}")
document.write("--></style>")

}
} else {
//win
if (navigator.appName.indexOf('Microsoft') > -1) {
//windows or unix:explorer
x="iewin"
document.write("<style type='text/css'><!--")
document.write(".text01 {font-size: 10px;line-height: 13px; font-family:MS Gothic}")
document.write(".text02 {font-size: 12px;line-height: 120%; font-family:MS Gothic}")
document.write(".text03 {font-size: 14px;line-height: 120%; font-family:MS Gothic}")
document.write(".text04 {font-size: 17px;line-height: 120%; font-family:MS Gothic}")
document.write(".text05 {font-size: 20px;line-height: 120%; font-family:MS Gothic}")
document.write(".text06 {font-size: 8px; line-height: 120%; font-family:MS Gothic; color:#003399}")
document.write("--></style>")

} else {
//windows or unix:netscape
x="nswin"
document.write("<style type='text/css'><!--")
document.write(".text01 {font-size: 11px;line-height: 120%; font-family:MS Gothic}")
document.write(".text02 {font-size: 12px;line-height: 120%; font-family:MS Gothic}")
document.write(".text03 {font-size: 15px;line-height: 120%; font-family:MS Gothic}")
document.write(".text04 {font-size: 18px;line-height: 120%; font-family:MS Gothic}")
document.write(".text05 {font-size: 21px;line-height: 120%; font-family:MS Gothic}")
document.write(".text06 {font-size: 9px;line-height: 120%; font-family:MS Gothic; color:#003399}")
document.write("--></style>")

}
}
}