/* UTF-8 à jamais */
.filtres{
	display:flex;
	flex-flow:row wrap;
	gap:4px;
	margin-top:32px;
}
.filtres li a{
	padding:6px 12px;
	line-height:1.29;
	text-decoration:none;
	background:#f1f0f0;
	border-radius:4px;
	display:block;
}
.filtres li.sel a{
	background:#000;
	color:#fff;
}
.liste_documents{
	display:flex;
	flex-flow:row wrap;
	gap:16px;
	margin:32px 0;
}
.liste_documents li{
	box-shadow:1px 2px 4px rgba(0, 0, 0, 0.12);
	border-radius:6px;
	width:572px;
	height:100px;
	overflow:hidden;
}
.liste_documents li.sep_annee{
	box-shadow:none;
	border-radius:0;
	width:100%;
	height:auto;
	display:flex;
}
.liste_documents li.sep_annee h3{
	padding:6px 12px;
	line-height:1.29;
	background:#f1f0f0;
	border-radius:4px;
}
.liste_documents li a{
	text-decoration:none;
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	width:calc(100% - 48px);
	height:calc(100% - 48px);
	padding:24px;
}
.liste_documents li div.texte{
	display:flex;
	flex-flow:column nowrap;
	gap:8px;
	width:calc(100% - 64px);
}
.liste_documents li div.texte h2{
	font-family:"NeueHansKendrick-SemiBold";
	font-size:1.14em;
	line-height:1.25;
}
.liste_documents li div.texte .infos{
	display:flex;
	align-items:center;
	gap:4px;
	line-height:1.14;
}
.liste_documents li div.texte .infos span{
	background:#f1f0f0;
	border-radius:4px;
	padding:4px 8px;
	font-family:"NeueHansKendrick-Medium";
	font-size:0.86em;
	line-height:1.25;
}
.pagination_ancre{
	margin-top:32px;
	height:32px;
	position:relative;
}
.pagination_ancre .ancre{
	position:absolute;
	top:0;
	right:0;
	text-decoration:none;
	display:flex;
	align-items:center;
	gap:8px;
	height:32px;
}
/*------------------------------------------
						RESPONSIVE
------------------------------------------*/
@media screen and (max-width:1279px){
	.liste_documents li{
		width:calc(50% - 8px);
	}
}
@media screen and (max-width:1023px){
}
@media screen and (max-width:767px){
	.liste_documents li{
		width:100%;
	}
}