@charset "shift_jis";
/*-------------------------------------------------------------------------------------------------------------
	各ブラウザ共通　基準フォントサイズ13px 指定
	font: 13px;
	（Firefox、Safari、Opera等モダンブラウザやMac IE5に適用。）
	*font-size: small;
	（Win IE7およびWin IE6標準準拠モードに適用。Mac IE5には不適応。）
	*font: x-small;
	（Win IE 5-5.5､6(後方互換モード)に適用。）
---------------------------------------------------------------------------------------------------------------*/
body {
    font:13px "ＭＳ ゴシック",arial,helvetica,clean,sans-serif;
    *font-size:small;
    *font:x-small;
}
table {
    font-size:inherit;
    font:100%;
}

/*	----------------------------------------------------------------------------------------------------------
	Font size chart  
	基準フォントサイズより相対パーセント指定。
	「フォントサイズをピクセル指定からパーセント指定にした場合に何パーセントになるか」
	例. フォントサイズ:10px = 77% 
	----------------------------------------------------------------------------------------------------------*/
.fontSize_10 { font-size:77%; }
.fontSize_11 { font-size:85%; }
.fontSize_12 { font-size:93%; }
.fontSize_13 { font-size:100%; }
.fontSize_14 { font-size:108%; }
.fontSize_15 { font-size:116%; }
.fontSize_16 { font-size:123.1%; }
.fontSize_17 { font-size:131%; }
.fontSize_18 { font-size:138.5%; }
.fontSize_19 { font-size:146.5%; }
.fontSize_20 { font-size:153.9%; }
.fontSize_21 { font-size:161.6%; }
.fontSize_22 { font-size:167%; }
.fontSize_23 { font-size:174%; }
.fontSize_24 { font-size:182%; }
.fontSize_25 { font-size:189%; }
.fontSize_26 { font-size:197%; }

/*	Adjustment for IE browsers ------------------------------------------------------------------*/
.fontSize_12 { *font-size:96%; 
					 *font:96%;		}

/*	---------------------------------------------------------------------------------------------------------
	Font family for each national language
	---------------------------------------------------------------------------------------------------------*/
.font_en,
.font_pt {
	font-family: arial ,helvetica ,clean ,sans-serif; 
}
.font_zh {
    font-family: "MS UI Gothic", sans-serif;
	*letter-spacing: +1px;
	word-break:break-all; 
}
.font_zh br {
	*letter-spacing: 0px;
}	/* Adjustment of IE6 browser bug */

.font_sign {
	font-family: "ＭＳ ゴシック", sans-serif;
}

