#faq {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 60px;
	margin: 0 50px;
}
@media screen and (max-width: 980px) {
	#faq {
		margin: 0;
	}
}
@media screen and (max-width: 800px) {
	#faq {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
	}
}
#faq > menu {
	flex-shrink: 0;
	flex-grow: 0;
}
#faq > menu > li {
	margin-bottom: 10px;
}
#faq > menu > li:last-child {
	margin-bottom: 0;
}
#faq > menu > li > a {
	display: inline-block;
	border-left: 5px solid #000;
	padding: 10px;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 20px;
	font-size: 14px;
}
.rd_hover #faq > menu > li > a:hover,
#faq > menu > li > a.selected {
	border-color: #f1e600;
}
#faq > dl {
	flex-shrink: 1;
	flex-grow: 1;
	margin: 0;
}
#faq > dl > dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0;
	line-height: 20px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	gap: 10px;
}
#faq > dl > dt.closed {
}
#faq > dl > dt::after {
	background-image: url(/images/common/pictos/128black/moins.png);
	background-size: 20px 20px;
	display: inline-block;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	content: '';
}
.rd_hover #faq > dl > dt:hover::after {
	background-image: url(/images/common/pictos/128yellow/moins.png);
}
#faq > dl > dt.closed::after {
	background-image: url(/images/common/pictos/128black/plus.png);
}
.rd_hover #faq > dl > dt.closed:hover::after {
	background-image: url(/images/common/pictos/128yellow/plus.png);
}
#faq > dl > dt.outside,
#faq > dl > dt.outside + dd,
#faq > dl > dt.closed + dd {
	display: none;
}
#faq > dl > dd {
	margin: 0 0 50px 0;
}
/*eof*/
