#simulator {
	padding: 10px;
}
#simulator_set li {
	float: left;
	width: 50%;
}
#simulator table {
	width: 100%;
}
#simulator td {
	border-bottom: dotted 1px #999;
}
.w100 {
	width: 100px;
}
.attention {
	color: red;
	font-size: 0.8em;
}
.validation {
	display: none;
	position: absolute;
	top: -7px;
	right: 0;
	padding: 0 5px;
	background: red;
	color: #fff;
	font-size: 0.7em;
	border-radius: 4px;
}
input {
	font-size: 1.2em;
	height: 24px;
}
#check_cost {
	position: relative;
	margin: 20px auto;
	background-color: #0258a9;
	border-radius: 4px;
	color: #fff;
	width: 300px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	line-height: 52px;
	-webkit-transition: none;
	transition: none;
	box-shadow: 0 3px 0 #014788;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	cursor: pointer;
}
#check_cost:hover {
	background-color: #0265c2;
	box-shadow: 0 3px 0 #014f99;
}
#check_cost:active {
	top: 3px;
	box-shadow: none;
}
table th {
	font-size: 14px;
	font-weight: bold;
	border-bottom: solid 3px #ccc;
	text-align: center;
}
.result_cost {
	font-size: 14px;
	font-weight: bold;
	text-align: right;
}
#result {
	display: none;
}
#btn_rent,#btn_sale {
	position: relative;
	margin: 0 auto;
	padding: 10px;
	border-radius: 4px;
	color: #fff;
	width: 100px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 52px;
	-webkit-transition: none;
	transition: none;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
	cursor: pointer;
}
#btn_rent {
	background-color: #058dd1;
	box-shadow: 0 3px 0 #187cae;
}
#btn_sale {
	background-color: #fe5197;
	box-shadow: 0 3px 0 #e2397d;
}
#rent_set th,.rent_line {
	border-bottom: solid 3px #4bb2e5;
}
#rent_set td,.rent_bg {
	background: #e1f5ff;
}
#rent_set td > span {
	position: relative;
	display: inline-block;
	width: 100%;
}
#sale_set th,.sale_line {
	border-bottom: solid 3px #ff8dbb;
}
#sale_set td,.sale_bg {
	background: #fff0f6;
}
#sale_set td > span {
	position: relative;
	display: inline-block;
	width: 100%;
}
#simulator tr:last-child td {
	border: none;
}
#result_rent_month,#result_sale_month,#result_rent_total,#result_sale_total {
	font-weight: bold;
}
.tleft {
	text-align: left;
}