@charset "utf-8";

.toolContents {
	margin-bottom: 60px;
	padding: 10px;
	border: solid 2px #41719C;
	border-radius: 5px;
}

.toolContents ul {
	list-style: none;
}
.toolContents ul li {
	padding: 0.5em 3.5em 0.5em 1em;
}

.toolBoxContainer{
	width: 100%;
	display: table;
	table-layout: fixed;
}
.toolBox {
	display: table-cell;
	vertical-align: middle;
	width: 200px;
}
.toolBtn {
	//display: table-cell;
	position: relative;
	margin-left: 20px;
	width: 150px;
}

.toolSelect, 
.toolSelect_min {
	display: table-cell;
	margin-bottom: 15px;
	//width: 500px;
}

.toolSelect select::-ms-expand,
.toolSelect_min::-ms-expand {
	display: none;
}

.toolSelect select,
.toolSelect_min select {
	/* styling */
	background-color: #fff;
	border: thin solid #999;
	border-radius: 4px;
	display: inline-block;
	font: inherit;
	line-height: 1.5em;
	padding: 0.5em 3.5em 0.5em 1em;

	/* reset */

	//margin-left: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.toolSelect select {
	width: 200px;
}
.toolSelect_min select {
	width: 100px;
}

.toolSelect select,
.toolSelect_min select {
	background-image:
		linear-gradient(45deg, transparent 50%, gray 50%),
		linear-gradient(135deg, gray 50%, transparent 50%),
		linear-gradient(to right, #ccc, #ccc);
	background-position:
		calc(100% - 20px) calc(1em + 2px),
		calc(100% - 15px) calc(1em + 2px),
		calc(100% - 2.5em) 0.5em;
	background-size:
		5px 5px,
		5px 5px,
		1px 1.5em;
	background-repeat: no-repeat;
}

select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}

.toolSelect input {
	/* styling */
	background-color: #fff;
	border: thin solid #999;
	border-radius: 4px;
	display: inline-block;
	font: inherit;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 1em;
	width: 50px;
}


.toolCalcBtn{
	display:inline-block;
	padding: 0.5em;
	border-radius: 5px;
	color: #fff !important;
	background: #111987;
	width: 110px;
	margin: 10px 0;
	text-decoration: none;
	font-size:10pt;
	text-align:center;
	text-decoration:none !important;
}
.toolCalcBtn:before {
	display: inline-block;
	vertical-align: middle;
	content: "";
	background: url(/technical/design_tool/images/ico_calc01.png) no-repeat;
	overflow:hidden;
	width: 18px;
	height: 18px;
	margin: -3px 5px 0 0;
	background-size: contain;
}
.toolCalcBtn:hover {
	opacity:0.5;
	cursor:pointer;
}




.resultBoxContents {
	display: block;
	text-align: center;
}
.resultBoxContainer {
	display: flex;
	justify-content: center;
}
.result-box {
}

.result-res {
	font-size: 12pt;
	padding: 2px 5px;
}
.result-err {
	font-size: 12pt;
	color: #ff0000;
	padding: 2px 5px;
}
.resultBoxContents .hr1 {
  background-color: #fff;
  border-top: 2px dashed #41719C;
  width: 90%;
}
.resultBoxContents .hr2 {
  background-color: #fff;
  border-top: 1px dotted #8c8b8b;
}

.d_table {
	width:100%;
	display: table;
	text-align:center;
	margin:0;
}
.d_caption {
	display: table-caption;
	color: #111987;
	font-size: 12pt;
	font-weight: bold;
}
.d_caption span{
	font-size: 8pt;
}
.d_thead  {
	display:table-header-group;
	font-weight: bold;
}
.d_tbody {
	display:table-row-group;
}
.d_foot  {
	display:table-footer-group;
}
.d_tr {
	display: table-row;
}
.d_th1,.d_th2,.d_th3 {
	display: table-cell;
	padding: 5px 10px;
	vertical-align: middle;
	white-space: nowrap;
}
.d_th,.d_td3 {
	display: table-cell;
	padding: 5px 10px;
	vertical-align: middle;
	white-space: nowrap;
	text-align: center;
}
.d_td {
	display: table-cell;
	padding: 5px 10px;
	vertical-align: middle;
	white-space: nowrap;
	text-align: left;
}
.d_td1,.d_td2 {
	display: table-cell;
	padding: 5px 10px;
	vertical-align: middle;
	white-space: nowrap;
	text-align: right;
}
.d_footer {
	display: table-row;
	vertical-align: middle;
}
.d_footcell {
	display: table-cell;
	width:100%;
	font-size: 10pt;
	text-align: left;
}

.d_fract {
	border: thin solid #999;
	padding: 15px 10px 20px;
}
.d_fractBox {
	display: inline-flex;
	flex-direction: column;
	vertical-align: middle;
	text-align: center;
}
.d_fractContent {
	padding: 0 5px; 
}
.d_fractBar {
	padding: 0 5px; 
	border-bottom: 1px solid #000000;
}

#imgBox{
	display: none;
	text-align: center;
	caret-color: transparent;
}
#imgBox h4{
	text-align: left;
}

input[type=radio]+label{
	content: "";
	display: inline-block;
	background-size: contain;
	width: 200px;
	height: 200px;
}

input[type=radio]+label{
	background-image: none;
	background-repeat: no-repeat;
}
input[type=radio]:checked+label{
	border: 3px solid #000080;
	box-sizing: border-box;
}
input[type=radio]{
	display: none;
}
input[type=radio]+label:hover {
	cursor: pointer;
}
