/*全体
**************************************************************/
@charset "utf-8";

/* 基準のフォントサイズ
**************************************************************/
html {
	font-size: 12pt;
}

/*変更用フォントサイズ定義
**************************************************************/
.fontsmall {
	font-size: 80%;
}

.fontmedium {
	font-size: 100%;
}

.fontlarge {
	font-size: 120%;
}

/*フォントサイズ変更ボタン用
**************************************************************/
#fontswitch{
	margin: 0 0 5px;
}

.fontswitch_menu {
	border: 1px solid #b0b0c0;
	border-radius: 0.25em;
	width: 150px;
	float: right;
	text-align: center;
	margin-right: 10px;
	font-size:12pt;
}

.fontswitch_menu p {
	padding: 0px;
}

.fontswitch_menu ul {
	width: 150px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.fontswitch_menu li {
	float: left;
	width: 30px;
	height: 30px;
	list-style-type: none;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	margin-right: 5px;
	padding-left: 0px;
	padding-right: 0px;
}

.fontswitch_menu li a:visited {
	outline: none;
}

.fontswitch_menu li a:hover {
	text-decoration: none;
}

#fontlarge {
	background: url("./images/size_large.png") no-repeat;
}

#fontlarge.currentsize {
	background: url("./images/size_large_current.png") no-repeat;
}

#fontlarge:hover {
	background: url("./images/size_large_hover.png") no-repeat;
}

#fontmedium {
	background: url("./images/size_medium.png") no-repeat;
}

#fontmedium.currentsize {
	background: url("./images/size_medium_current.png") no-repeat;
}

#fontmedium:hover {
	background: url("./images/size_medium_hover.png") no-repeat;
}

#fontsmall {
	background: url("./images/size_small.png") no-repeat;
}

#fontsmall.currentsize {
	background: url("./images/size_small_current.png") no-repeat;
}
#fontsmall:hover {
	background: url("./images/size_small_hover.png") no-repeat;
}