@charset "Shift_JIS";

/*********************************************************************
 *
 *    ■「文字サイズ: 中」のフォントサイズ指定用CSS
 *
 *    ※ここではbody要素のフォントサイズのみ指定。
 *      他の要素は、bodyのフォントサイズに対する相対指定のため。
 *
 *********************************************************************/

body {
	font-size: 12px;
	*font-size: 75%;
}

/*「中」選択時 */

#font_changer dd.medium a {
	cursor: default;
}

#font_changer dd.medium a,
#font_changer dd.medium a:hover {
	background: url(/common/img/medium_on.gif) no-repeat 0 100%;
}

#font_changer dd.small a {
	background: url(/common/img/small_off.gif) no-repeat 0 100%;
	cursor: pointer;
}

#font_changer dd.small a:hover {
	background: url(/common/img/small.gif) no-repeat 0 100%;
}

#font_changer dd.large a {
	background: url(/common/img/large_off.gif) no-repeat 0 100%;
	cursor: pointer;
}

#font_changer dd.large a:hover {
	background: url(/common/img/large.gif) no-repeat 0 100%;
}

