@charset "utf-8";
.ac-list {
	margin-bottom: 2px;
	color: #0f218b;
	font-size: 15px;
	font-weight: bold;
}
.ac-list > li {
	background: #fff;
	margin-bottom: 2px;
}
.ac-list > li .img {
    display: table-cell;
    vertical-align: middle;
    width: 80px;
}
.ac-list > li .text {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px 0 4px;
}
.ac-list > li:last-child {
	margin-bottom: 0;
}
.ac-list > li .ac-header {
	position: relative;
	padding: 0;
	font-weight: bold;
}
.ac-list > li .ac-header:after {
	position: absolute;
    top: 50%;
    right: 10px;
    content: '';
    width: 13px;
    height: 13px;
    margin-top: -6px;
    background-image: url(../img/toggle-close.png);
    background-size: 13px 13px;
    background-position: center;
    background-repeat: no-repeat;
}
.ac-list > li .ac-header.is-open:after {
	background-image: url("../img/toggle-open.png");
}

.ac-list > li .ac-body {
	padding: 0;
	display: none;
	background: #eceef6;
	border-top: 2px solid #0f218b;
}
.ac-list > li .ac-body a{
	display: table;
	width: 100%;
	position: relative;
	text-decoration: none;
	color: inherit;
}
.ac-list > li .ac-body a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    border-top: 3px solid #0f218b;
    border-right: 3px solid #0f218b;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
