/********************************/
/* 税金計算画面用スタイルシート */
/********************************/

/*----------*/
/* テーブル */
/*----------*/
/* 外枠のテーブル */
table.tax {
	background-color: #B3B3E1;
	border-collapse: collapse;
	font-size: 12px;
	text-align: center;
	width: 429px;
}

table.tax td {
	border: 0px;
}

/* ガイダンスのテーブル */
table.guidance {
	border: 3px double #CC0033;
	font-size: 12px;
	width: 400px;
}

/* 入力域のテーブル */
table.tax_input {
	background-color: #FFFFCC;
	border-collapse: collapse;
	font-size: 12px;
	width: 360px;
}

table.tax_input thead {
	font-weight: bold;
	text-align: left;
	text-indent: 1em;
	height: 20px;
}

table.tax_input tbody {
	background-color: #FFFFFF;
	text-align: center;
}

table.tax_input tfoot {
	text-align: center;
	height: 20px;
}

table.tax_input td.under_line {
	border-bottom: 2px solid #999999;
}

/* 計算結果のテーブル */
table.result {
	background-color: #000066;
	border-collapse: separate;
	font-size: 12px;
	line-height: 14px;
	width: 400px;
}

table.result td {
	background-color: #FFFFFF;
}

/*----------*/
/* テキスト */
/*----------*/
/* インデント指定 */
.indent {
	text-indent: 1em;
}

/*--------*/
/* 文字色 */
/*--------*/
/* 白 */
.white {
	color: #FFFFFF;
}

