/* 本文スタイル */
body {
	padding: 0;
	background: #FFFFFF;
}

/* エラーメッセージ */
.errorMsg {
	color: #FF0000;
	font-weight: bold;
}

/* 小さめのボタン */
input.smallButton {
	width: 60px;
}

/* 普通のボタン */
input.button {
	width: 100px;
}

/* 大きめのボタン */
input.largeButton {
	width: 140px;
}

/* 普通のテキストボックス */
input.textBox {
	width: 80px;
}

/* 大きめのテキストボックス */
input.largeTextBox {
	width: 120px;
}

/* 普通のセレクトボックス */
select.selectBox {
	width: 80px;
}

/* 大きめのセレクトボックス */
select.largeSelectBox {
	width: 120px;
}

/* 普通の数値入力テキストボックス */
input.numberTextBox {
	width: 80px;
	text-align: right;
	ime-mode: disabled;
}

/* 大きめの数値入力テキストボックス */
input.largeNumberTextBox {
	width: 120px;
	text-align: right;
	ime-mode: disabled;
}

/* IME無効化テキストボックス */
input.disableIMETextBox {
	width: 120px;
	ime-mode: disabled;
}
