/* https://developer.mozilla.org/fr/docs/Web/CSS/Requ%C3%AAtes_m%C3%A9dia/Utiliser_les_Media_queries */
.boxtitre {
	background-color:#A9A9A9;
	color:white;
	border-radius: 15px 15px 0 0; 
	font-size: 12px;
	font-weight: bold;
	padding:2;
	box-shadow: inset -2px 0px grey; <!-- https://developer.mozilla.org/fr/docs/Web/CSS/box-shadow -->
}

.boxtitreENM {
	background-color:#4ac4b7;
	color:blue;
	border-radius: 15px 15px 15px 15px; 
	font-size: 12px;
	font-weight: bold;
	padding:2;
	border: 2px solid blue;
}
.box {
  display: flex;
  flex-wrap: wrap;
}
.boxtitrea:link { text-decoration: none; color:white; }
.boxtitrea:visited { text-decoration: none; color:white; }
.boxtitrea:hover { text-decoration: none; color:black; }
.boxtitrea:active { text-decoration: none; color:white; }