/* CSS Document */

/* 文字サイズを変更する部分
--------------------*/
#fontSizeChange {
	font-size:90%;
	/*\*/
		*font-size: 85%;    /*win IE用のサイズ指定*/
 /**/
}

/* ここまで
--------------------*/

#fchange {
}
#fchange a {
	cursor:pointer;
}

#fchange .fsize {
	float: left;
}
#fsmall a {
	display: block;
	height: 22px;
	width: 22px;
	margin-top: 3px;
}
#fmiddle a {
	display: block;
	height: 24px;
	width: 25px;
	margin-top: 2px;
}
#flarge a {
	display: block;
	height: 26px;
	width: 27px;
	margin-top: 1px;
}


#fchange .ftxt {
	display: none;
}

/* ボタンの表示状態
--------------------*/
#fsmall a {
	background-image: url(../img/font_size_btn_s.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
/*カレント*/
#fmiddle a {
	background-image: url(../img/font_size_btn_m_over.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#flarge a {
	background-image: url(../img/font_size_btn_l.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#fsmall a:hover {
	background-image: url(../img/font_size_btn_s_over.gif);
}
/*カレント
#fmiddle a:hover {
	background-image: url(../img/font_size_btn_m_over.gif);
}
*/
#flarge a:hover {
	background-image: url(../img/font_size_btn_l_over.gif);
}