/* CSS Document */

.qa_list{
	position: relative;
	z-index: 2;
}
.qa_list li{
	margin-top: 30px;
	background-color: #FFF;	
	box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.1);
	-webkit-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 10px 10px 10px 0px rgba(0,0,0,0.1);
}
.qa_list li:nth-child(1){margin-top: 0;}
.qa_list li .Q{
	position: relative;
	min-height: 50px;
	text-align: left;
	display: flex;
	align-items: stretch;
}
.qa_list li .Q > *{
	display: flex;
	align-items: center;
}
.qa_list li .Q .icon{
	background-color: #004DA0;
	color:#FFF;
	width:50px;
	min-width: 50px;
	text-align: center;
	font-weight: bold;
	font-size: 175%;
	line-height: 100%;
	vertical-align: middle;
	justify-content: center;
}
.qa_list li .Q .arrow{
	/*
	border-left: solid 8px #004DA0;
	border-top: solid 25px transparent;
	border-bottom: solid 25px transparent;
	*/
	width:8px;
	margin-right: 12px;
	position: relative;
}
.qa_list li .Q .arrow img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.qa_list li .Q > span{
	vertical-align: middle;
	font-weight: bold;
	line-height: 125%;
	flex-grow: 1;
	text-align: left;
	padding: 0.5em 0;
}
.qa_list li .Q .btn{
	position:relative;
	width:50px;
	min-width: 50px;
	cursor: pointer;
	margin-left: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.qa_list li .Q .btn > *{
	width:20px;
}
.qa_list li.active .Q .btn > *{transform: scaleY(-1);}
.qa_list li .A{padding: 0.5em; display: none;}
/* .qa_list li:not(.active) .A{display: none;} */
.qa_list li .A table{
	width:100%;
	background-color: #E5EDF5;
	border-radius: 0.75em;
	-webkit-border-radius: 0.75em;
	-moz-border-radius: 0.75em;
}
.qa_list li .A table tr > *{vertical-align: top;}
.qa_list li .A table th{
	width:50px;
	text-align: center;
	font-weight: bold;
	font-size: 125%;
	line-height: 50px;
	color:#004DA0;
}
.qa_list li .A table td{
	text-align: left;
	padding: 0.75em;
	padding-left: 10px;
	line-height: 175%;
}
.qa_list li .A table td a{color:#00F;}
.qa_list li .A table td b{
	display: inline-block;
	font-size: 125%;
	line-height: 175%;
	margin-top: -0.375em;
	color:#004DA0;
}