/* /////////////////////////////////////////////////////
//                                                    //
// SSUAP - version strandard - 2025                   //
// Tome 2 - Fiches Techniques - CSS                   //
//////////////////////////////////////////////////////// */


/*oragnistaion de la CSS FT : */

/*** fonts -> chargement des polices embarquées ***/
/*** init -> initialisation générale ***/
/*** couleurs -> reférence des couleurs du SSUAP ***/
/*** wrap -> encapsulation global du contenu ***/
/*** images -> échelles génériques et propriétés spéfiques des images ***/
/*** textes -> modifs justifications, cractéres, polices ***/
/*** listes -> gestion des listes spécifiques ***/
/*** tableaux -> gestion des tableaux ***/
/*** liens -> hyperliens spécifiques ***/
/*** page de garde -> bloc de la page de garde en début d'ouvrage ***/
/*** filtres -> bloc boutons filtres profiles ***/
/*** ouverture -> bloc d'ouverture de chapitre ***/
/*** bandeaux -> bloc bandeau de sous-chapitres ***/
/*** titres -> niveaux de titres ***/
/*** encadrés -> blocs de textes de couleur encadrés ***/
/*** lexique -> spécifiques au lexique ***/
/*** MAJ -> spécifique au tableau des mises-à-jour ***/
/*** sommaire-TH-FT -> pour le fichier _sommaire (menu droite) ***/
/*** classes utilitaire spéciales -> NE PAS SUPPRIMER (utilisé par les scripts) ***/
/*** responsive -> modification de la mise en forme du contenu selon les tailles écrans ***/
/*** images 1er aide top -> surcouche des images d'aide à l'utilisation du SSUAP et de la PWA ***/
/*** filtre de contenus ***/


/*** fonts -> chargement des polices embarquées ***/
@font-face {
    font-family: 'Heading Pro Trial';
    src: url("../webfonts/Heading-Pro-Regular-trial.woff") format("woff"), url("../webfonts/Heading-Pro-Regular-trial.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto Light';
    src: url("../webfonts/Roboto-Light_0.woff") format("woff"), url("../webfonts/Roboto-Light_0.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto Black';
    src: url("../webfonts/Roboto-Black_0.woff") format("woff"), url("../webfonts/Roboto-Black_0.ttf") format("truetype");
}

@font-face {
    font-family: 'Roboto';
    src: url("../webfonts/Roboto-Regular.woff") format("woff"), url("../webfonts/Roboto-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Minion Pro';
    src: url("../webfonts/Minion-Pro-Regular.woff") format("woff"), url("../webfonts/Minion-Pro-Regular.ttf") format("truetype");
}
/*** fonts ***/


/*** init -> initialisation générale ****/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family:Roboto, "Roboto", Verdana, Geneva, Tahoma, sans-serif;
    color: rgb(0, 0, 0);
	background-color: #f1f1f1;
    user-select: none;
}

a{
    text-decoration: none;
}

.fiche-P, 
.fiche-H,
.fiche-G,
.fiche-M,
.fiche-S,
.fiche-A,
.fiche-I,
.fiche-D {
    background-color: #fff;
    padding: 0 2em 4em 2em;
    border-radius: 8px;
    margin-bottom: 6em;
    box-shadow: 2px 4px 6px #00000040;
    overflow: hidden;
}

img{
    margin: 12px;
}
.imgintxt {
    margin: 0 2px 0 2px !important;}

p{
    color:black;
	font-family:Roboto, "Roboto", sans-serif;
	font-size: 1.25em;
	line-height:1.5;
	text-align:left;
    margin-top: 12px;
}

ul{
    color:black;
	font-family:Roboto, "Roboto", sans-serif;
    margin-left: 32px;
    line-height: 1.2;
	font-size: 1.25em;
}

ul ul{
    color:black;
	font-family:Roboto, "Roboto", sans-serif;
    line-height: 1.2;
	font-size: 1em;
}

ol{
    color:black;
	font-family:Roboto, "Roboto", sans-serif;
    margin-left: 32px;
    line-height: 1.2;
	font-size: 1.25em;
}

li{
    padding: 4px 8px 6px 0;
}

ul ul li{
    padding: 4px 8px 4px 0;
}

table{
	width: 99%;
	background-color: #FFFFFF;
	border-collapse: collapse;
	border-width: 2px;
	border-color: #006eb7;
	border-style: solid;
	color: #000000;
	margin: 12px 0;
}

table p, table li, table div, table ul, table ol{
    font-size: 1em;
}

table li{
    padding: 4px 0;
}

th, td{
	border-width: 2px;
	border-color: #006eb7;
	border-style: solid;
	padding: 5px;
}

thead{
	background-color: #006eb7;
	color: white;
	text-align: center;
}
.center {
    text-align: center;}
.red{ color: #D90000;}
/*** init ***/

/*** couleurs -> reférence des couleurs du SSUAP ***/
span.c-gris{
	color:#868786;
}
span.c-bleu{
	color:#0084ae;
}
span.c-violet{
	color:#804b98;
}
span.c-vert{
	color:#159542;
}
span.c-orange{
	color:#da8c0a;
}
span.c-jaune{
	color:#c5bb00;
}
span.c-rouge{
	color:#e44f38;
}
span.c-blanc{
	color:white;
}
/*** couleurs -> reférence des couleurs du SSUAP ***/

/*** wrap -> encapsulation global du contenu ***/
.contenu-livre{
    background-color: rgb(255, 255, 255);
    padding: 22px;
    margin: 0 auto;
    width: 100%;
	background-color: #f1f1f1;
    max-width: 924px;
}
/*** wrap ***/

/*** images -> échelles génériques et propriétés spéfiques des images*/
img.i100p{
	width: 100%;
    max-width: 1000px;
	height: auto;
    margin-left: 0;
    margin-top: 4px;
}
img.i90p{
	width: 90%;
    max-width: 600px;
	height: auto;
}
img.i80p{
	width: 80%;
    max-width: 600px;
	height: auto;
}


img.i100{
	width: 100%;
    max-width: 400px;
	height: auto;
    margin-left: 0;
    margin-top: 4px;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i90{
	width: 90%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i80{
	width: 80%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i70{
	width: 70%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i60{
	width: 60%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i50{
	width: 50%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i40{
	width: 40%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i30{
	width: 30%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i20{
    width: 20%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i15{
    width: 15%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
}
img.i10{
    width: 10%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
}

img.i100:hover, img.i90:hover, img.i80:hover, img.i70:hover, img.i60:hover, img.i50:hover, img.i40:hover, img.i30:hover{
    transform: scale(1.5);
    position: relative;
    z-index: 99;
    border: #0084ae solid 3px;
    border-radius: 8px;
}

/*spécial tubulure*/
img.i10t{
    width: 10%;
    max-width: 400px;
	height: auto;
    transition: transform 1.5s;
    border: white solid 3px;
}
img.i10t:hover{
    transform: scale(1.8);
    position: relative;
    z-index: 99;
    border: #0084ae solid 3px;
    border-radius: 8px;
}


img.i5{
    width: 5%;
    max-width: 40px;
	height: auto;

}

img.i-puce {
    width: 100%;
    max-width: 22px;
	height: auto;
    margin: 0;
    padding: 0;
}

div.centrer-img {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}



/*** images ***/


/*** textes -> modifs justifications, cractéres, polices ***/
span.roboto{
    font-family:Roboto, "Roboto", sans-serif;
}

p.commentaire-FT{
    color: #4a4c4e;
    font-size: .75em;
}

.legende-FT{
    color: #006eb7;
	font-family:Roboto, "Roboto", sans-serif;
	font-size: 1.25em;
	line-height:1.2;
	text-align:center;
    margin: 22px 0 12px 0;
    padding: 6px;
}

p.dialogue-FT{
    padding: 4px 8px 8px 50px;
    margin: 0;
    line-height: 1.2;
    font-style: italic;
    color: #006eb7;
}

span.dialogue-FT, li.dialogue-FT{
    font-style: italic;
    color: #006eb7;
}

.exclam{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding-left: 8px;
    margin: 8px;
}

.exclam img, .exclam p{
    margin: 0;
    padding: 0 8px 0 0;

}

p.copyright{
    font-family:Roboto, "Roboto", sans-serif;
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
}
/*** textes ***/

/*** listes -> gestion des listes spécifiques ***/
/*** liste ***/

/*** tableaux -> gestion des tableaux ***/
/* couleurs de fond pour les cellules de tableaux */
.bgcolorblanc { background-color: #fff;} /* Blanc */
.bgcolorbleu1 { background-color: #006eb7;} /* Bleu intense */
.bgcolorbleu2 { background-color: #B3D0EB;} /* Bleu pale */
.bgcolorvert1 { background-color: #BEDEC2;} /* vert fort */
.bgcolorvert2 { background-color: #DEEEE0;} /* vert pale */
.bgcolorrose1 { background-color: #FFC0AC;} /* rose fort */
.bgcolorrose2 { background-color: #FFDFD4;} /* rose pale */
.bgcolornoir { background-color: black;} /* noir */
.bgcolorrouge { background-color: #e31a22;} /* rouge */
.bgcolororrange { background-color: #ffcb08;} /* orange */
.bgcolorvert { background-color: #8cc63f;} /* vert */
.txtcenter { text-align: center; }
.txtright { text-align: right; }
td.cell-0 {background-color: white; border: none; }
td.cell-g{
	background-color:rgb(211, 206, 206);
	border:solid 2px black;
	padding: 4px;
	vertical-align:middle;
}
td.cell-y{
	background-color:#fff7e2;
	border:solid 2px black;
	vertical-align:middle;
}
td.cell-b{
	background-color:#dfeffb;
	border:solid 2px black;
	vertical-align:middle;
}
/*** tableaux ***/

/*** liens -> hyperliens spécifiques ***/
.lien-cf-FT{
    color: #006eb7;
    font-weight: 600;
}
/*** liens ***/

/*** page de garde -> bloc de la page de garde en début d'ouvrage ***/
#ouverture-edito {
    min-height: 60svh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 6px;
    margin: 40px 0 100px 0;
}

img.ouverture-cover{
    margin: 2em;
    /* box-shadow: 16px 16px 48px #b9b9b9;  */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px;
    width: 45%;
    max-width: 220px;
    height: auto;
}

.ouverture-titre-1{
padding: 8px;
}

p.titre-ssuap{
    font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
    font-size:2em;
    color:#565655;
	font-size:35px;
	font-style:normal;
	font-weight:bold;
    text-align: center;
}

span.titre-ssuap-min{
	font-size:26px;
    text-transform:uppercase;
}

.titre-ssuap-version {
	color:#0089bb;
	font-family: "Roboto Black", Roboto, "Roboto", sans-serif;
	font-size:18px;
	font-weight:600;
	line-height:1.2;
	text-transform:uppercase;
    text-align: center;
}
/*** page de garde ***/

/*** filtres -> bloc boutons filtres profiles ***/
div.bloc-filtres-t{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#0084ae;
    color: white;
    font-family:  Roboto, "Roboto", sans-serif;
    font-size: 1.2em;

}

div.bloc-filtres{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: solid 2px #0088ba;
    background-color: #e6e6e6;
    padding: 0 6px;
}

#ctn-prompt,#ctn-vsav,#ctn-appro,#ctn-chefagres,#ctn-ssuap {
    padding: 12px;
}

button.bt-flt-prompt{
padding: 8px;
background-color:#0084ae;
color: white;
font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
font-size:1.1em;
line-height:1.2;
border-radius: 8px;
border-color: white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

button.bt-flt-vsav{
padding: 8px;
background-color:#159542;
color: white;
font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
font-size:1.1em;
line-height:1.2;
border-radius: 8px;
border-color: white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

button.bt-flt-chefagres{
padding: 8px;
background-color:#da8c0a;
color: white;
font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
font-size:1.1em;
line-height:1.2;
border-radius: 8px;
border-color: white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

button.bt-flt-appro{
padding: 8px;
background-color:#c5bb00;
color: white;
font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
font-size:1.1em;
line-height:1.2;
border-radius: 8px;
border-color: white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

button.bt-flt-ssuap{
padding: 8px;
background-color:#555555;
color: white;
font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
font-size:1.1em;
line-height:1.2;
border-radius: 8px;
border-color: white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
/*** filtres ***/

/*** ouverture -> bloc d'ouverture de chapitre ***/
/*** ouverture ***/

/*** bandeaux -> bloc bandeau de sous-chapitres ***/
.tag-list-FT{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 100px 0 0 0;
    padding: 0;
    background: repeating-linear-gradient(
        -55deg,
        #f3f3f4,
        #f3f3f4 20px,
        #f5f5f5 20px,
        #f5f5f5 40px
      );
}
.tag-list-prompt-FT{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;

    background: repeating-linear-gradient(
        -55deg,
        #e9eef8,
        #e9eef8 20px,
        #e5ebf7 20px,
        #e5ebf7 40px
      );

      padding: 0;
      margin: 100px 0 0 0;
}
.bandeau-FT{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: repeating-linear-gradient(
        -55deg,
        #e5ebf7,
        #e5ebf7 20px,
        #e9eef8 20px,
        #e9eef8 40px
      );
    border-radius: 0 0 25px 0;
    padding: 0;
    margin: 80px 0 22px 0;
}
.bandeau-prompt-FT{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: repeating-linear-gradient(
        -55deg,
        #e9f1f7,
        #e9f1f7 20px,
        #edf3f8 20px,
        #edf3f8 40px
      );
    border-radius: 0 0 25px 0;
    padding: 0;
    margin: 80px 0 22px 0;
}
.bandeau-vsav-FT{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: repeating-linear-gradient(
        -55deg,
        #f1f6ef,
        #f1f6ef 20px,
        #eef4ec 20px,
        #eef4ec 40px
      );
    border-radius: 0 0 25px 0;
    padding: 0;
    margin: 80px 0 22px 0;
}
.bandeau-appro-FT{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: repeating-linear-gradient(
        -55deg,
        #f9f9ed,
        #f9f9ed 20px,
        #f8f8e9 20px,
        #f8f8e9 40px
      );
    border-radius: 0 0 25px 0;
    padding: 0;
    margin: 80px 0 22px 0;
}
.bandeau-chef-a-FT{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    background: repeating-linear-gradient(
        -55deg,
        #fcf5ec,
        #fcf5ec 20px,
        #fbf3e8 20px,
        #fbf3e8 40px
      );
    border-radius: 0 0 25px 0;
    padding: 0;
    margin: 80px 0 22px 0;
}

p.bloc-num-FT{
    float: left;
    background-color: #b3b2b2;
    color: white;
    font-size:1.5em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 8px 16px 8px 16px;
    border-radius: 0 0 25px 0;
    margin-top: 0;
}

img.tag-bandeau-FT{
    width: auto;
    height: 100%;
    max-height: 60px;
    margin: 0;
    }

.titre-chapitre-FT{
    color:#006eb7;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	letter-spacing: 0.20em;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	text-transform:uppercase;
    font-size:1.7em;
    padding: 16px 16px 22px 16px;
    margin: 0;
    width: 100%;
}

.titre-chapitre-prompt-FT{
    color:#0084ae;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	letter-spacing: 0.20em;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	text-transform:uppercase;
    font-size:1.7em;
    padding: 16px 16px 22px 16px;
    margin: 0;
    width: 100%;
}
.titre-chapitre-vsav-FT{
    color:#159542;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	letter-spacing: 0.20em;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	text-transform:uppercase;
    font-size:1.7em;
    padding: 16px 16px 22px 16px;
    margin: 0;
    width: 100%;
}
.titre-chapitre-appro-FT{
    color:#c5bb00;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	letter-spacing: 0.20em;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	text-transform:uppercase;
    font-size:1.7em;
    padding: 16px 16px 22px 16px;
    margin: 0;
    width: 100%;
}
.titre-chapitre-chef-a-FT{
    color:#da8c0a;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	letter-spacing: 0.20em;
	font-weight:bold;
	line-height:1.2;
	text-align:center;
	text-transform:uppercase;
    font-size:1.7em;
    padding: 16px 16px 22px 16px;
    margin: 0;
    width: 100%;
}
/*** bandeaux ****/

/*** titres -> niveaux de titres ***/
.titre-nb-sp{
	color:#006eb7;
	font-family: Roboto, "Roboto", sans-serif;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .10rem;
	text-align:right;
    margin: 0 0 16px 0;
    padding: 8px;
}
.titre-nb-sp-prompt{
	color:#0084ae;
	font-family: Roboto, "Roboto", sans-serif;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .10rem;
	text-align:right;
    margin: 0 0 16px 0;
    padding: 8px;
}
.titre-nb-sp-vsav{
	color:#159542;
	font-family: Roboto, "Roboto", sans-serif;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .10rem;
	text-align:right;
    margin: 0 0 16px 0;
    padding: 8px;
}
.titre-nb-sp-appro{
	color:#c5bb00;
	font-family: Roboto, "Roboto", sans-serif;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .10rem;
	text-align:right;
    margin: 0 0 16px 0;
    padding: 8px;
}
.titre-nb-sp-chef-a{
	color:#da8c0a;
	font-family: Roboto, "Roboto", sans-serif;
	font-size:1.3em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .10rem;
	text-align:right;
    margin: 0 0 16px 0;
    padding: 8px;
}

.titre-2-FT{
	color:#006eb7;
	font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px 2px 8px;
    border-top: solid 3px #006eb7;
    margin: 22px 0 0px 0;
}
.titre-2-prompt-FT{
	color:#0084ae;
	font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px 2px 8px;
    border-top: solid 3px #0084ae;
    margin: 22px 0 0px 0;
}
.titre-2-vsav-FT{
	color:#159542;
	font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px 2px 8px;
    border-top: solid 3px #159542;
    margin: 22px 0 0px 0;
}
.titre-2-appro-FT{
	color:#c5bb00;
	font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px 2px 8px;
    border-top: solid 3px #c5bb00;
    margin: 22px 0 0px 0;
}
.titre-2-chef-a-FT{
	color:#da8c0a;
	font-family: "Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.6em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px 2px 8px;
    border-top: solid 3px #da8c0a;
    margin: 22px 0 0px 0;
}

.titre-3-FT{
	color:#006eb7;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.35em;
	font-weight:bold;
	line-height:1.2;
	text-align:left;
    padding: 8px 6px 8px 22px;
    letter-spacing: .05em;
    margin: 18px 0 6px 0;
}
.titre-3-prompt-FT{
	color:#0084ae;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.35em;
	font-weight:bold;
	line-height:1.2;
	text-align:left;
    padding: 8px 6px 8px 22px;
    letter-spacing: .05em;
    margin: 18px 0 6px 0;
}
.titre-3-vsav-FT{
	color:#159542;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.35em;
	font-weight:bold;
	line-height:1.2;
	text-align:left;
    padding: 8px 6px 8px 22px;
    letter-spacing: .05em;
    margin: 18px 0 6px 0;
}
.titre-3-appro-FT{
	color:#c5bb00;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.35em;
	font-weight:bold;
	line-height:1.2;
	text-align:left;
    padding: 8px 6px 8px 22px;
    letter-spacing: .05em;
    margin: 18px 0 6px 0;
}
.titre-3-chef-a-FT{
	color:#da8c0a;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.35em;
	font-weight:bold;
	line-height:1.2;
	text-align:left;
    padding: 8px 6px 8px 22px;
    letter-spacing: .05em;
    margin: 18px 0 6px 0;
}

div.titre-3-FT:before{
    background-image: url('../images_FT/fleche-b.svg');
    background-size: 20px 20px;

    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";
    margin-right: 12px;
}
div.titre-3-prompt-FT:before{
    background-image: url('../images_FT/fleche-prompt.svg');
    background-size: 20px 20px;

    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";
    margin-right: 12px;
}
div.titre-3-vsav-FT:before{
    background-image: url('../images_FT/fleche-VSAV.svg');
    background-size: 20px 20px;

    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";
    margin-right: 12px;
}
div.titre-3-appro-FT:before{
    background-image: url('../images_FT/fleche-appro.svg');
    background-size: 20px 20px;

    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";
    margin-right: 12px;
}
div.titre-3-chef-a-FT:before{
    background-image: url('../images_FT/fleche-chef-a.svg');
    background-size: 20px 20px;

    display: inline-block;
    width: 20px;
    height: 20px;
    content:"";
    margin-right: 12px;
}

.titre-4-FT{
	color:#006eb7;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.5em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px;
    margin: 22px 0 12px 0;
}
.titre-4-prompt-FT{
	color:#0084ae;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.5em;
	font-weight:bold;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px;
    margin: 22px 0 12px 0;
}

.titre-5-FT{
	color:#4a4c4e;
	font-family:"Heading Pro Trial", Roboto, "Roboto", sans-serif;
	font-size:1.15em;
	font-weight:bold;
    text-decoration: underline;
	line-height:1.2;
    letter-spacing: .18rem;
	text-align:left;
    padding: 8px 8px;
    margin: 22px 0 -12px 0;
}
/*** titres ***/


/*** encadrés -> blocs de textes de couleur encadrés ***/
.encadre-1-FT{
    margin: 22px 0;
    border: solid 2px #006eb7;
    padding: 0 0 22px 0;
}

.encadre-1-FT p{
    padding: 0 12px 0 22px;
}

.coin-FT{
    color: white;
    background-color: #006eb7;
    font-size: 1.5em;
    font-weight: 600;
    padding: 8px 16px;
    /* display: inline-block;  */
    height: 50px;
    width: 60px;
}
div.coin-FT::after{
    background-image: url('../images_FT/coin-b.svg');
    background-size: 71px 62px;

    display: inline-block;
    width: 71px;
    height: 52px;
    content:"";
    transform: translate(38px, -43px);
}
/*** encadrés ***/

/*** lexique -> spécifiques au lexique ***/
/*** lexique **/

/*** MAJ -> spécifique au tableau des mises-à-jour ***/
.cross-non-maj-FT{
    color: #db1200;
    text-decoration: line-through;
}

.non-maj-FT{
    color: #db1200;
}

.MAJ-FT{
	font-size:1.25em;
	line-height:1.4;
	margin: 4px;
	padding: 6px;
	color:black;
}

th.maj-titre-FT{
	background-color:#006eb7;
	color: white;
	padding: 8px;
	/* border: solid 2px black; */
}
/*** MAJ ***/


/*** sommaire-TH-FT -> pour le fichier _sommaire (menu droite) ***/
/*sommaire partie bloc TH*/
.navigation-menu .guide-link_in-sommaire{
    margin: 0;
    top:-32px;
}

div.tag-sommaire-FT img{
    width: auto;
    height: 64px;
    margin: 0;
}

div.entete-sommaire-flt{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

div.bloc-btn-swtch{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 16px 0 16px 0;
}

div.bt-TH-FT{
    color: white;
    background-color: #006eb7;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.4em;
	line-height:1.2;
    text-align:center;
    padding: 6px;
    margin: 0;
    letter-spacing: .18rem;
    width: 50%;
    height: auto;
    border: #006eb7 solid 2px;
    border-radius: 12px;
}

div.bt-TH-FT-incanive{
    color: #006eb7;
    background-color: #f4f7fa;
}

div.sommaire-TH{
    padding: 20px 16px;
}
p.sommaire-titre-top-TH{
    color: #006eb7;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.6em;
	line-height:1.2;
    padding: 6px;
    text-align:center;
    padding: 12px;
    margin: 0;
    letter-spacing: .18rem;

}
p.sommaire-titre-1-TH{
    color: #565655;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.6em;
	line-height:1.2;
    text-align:center;
    padding: 0 12px;
    margin: 0;
    letter-spacing: .18rem;
    text-transform:uppercase;
}
div.som-1-chap-TH{
    background-color: #f4f7fa;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin: 8px 0;
}
div.som-1-chap-TH:hover{
    background-color: #97a5b3;
}
p.som-bloc-num-TH{
    background-color: #006eb7;
    color: white;
    font-size:1.2em;
    letter-spacing: .1em;
	font-family:Roboto, "Roboto", sans-serif;
	font-weight:600;
    padding:6px 16px 6px 12px ;
    margin: 0;
    border-radius: 0 0 12px 0;
}

div.som-sep-chap-th{
    font-family:Roboto, "Roboto", sans-serif;
    font-weight:600;
    background-color: #006eb7;
    color: white;
    font-size:1.2em;
    padding:6px 16px 6px 12px ;
    margin: 0;
    text-align: center;
}

p.som-bloc-txt-TH{
    color: #006eb7;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.5;
    padding: 6px 12px 6px 6px;
    margin: 0;
}
p.som-2-det-txt-TH{
    background-color: #e9e9e9;
    color: gray;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 0 16px 6px 12px ;
    margin: 6px 0px 6px 12px;
}
p.som-2-prompt-txt-TH{
    background-color: #dde5ee;
    color: #006eb7;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 0 16px 6px 12px;
    margin: 6px 0px 6px 12px;
}
p.som-2-chef-a-txt-TH{
    background-color: #f3e7db;
    color: #da8c0a;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 0 16px 6px 12px;
    margin: 6px 0px 6px 12px;
}
p.som-2-vsav-txt-TH{
    background-color: #e7efe8;
    color: #5ea759;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 0 16px 6px 12px;
    margin: 6px 0px 6px 12px;
}
p.som-2-appro-txt-TH{
    background-color: #f7f7e2;
    color: #c5bb00;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 0 16px 6px 12px;
    margin: 6px 0px 6px 12px;
}
p.som-2-det-txt-TH:before, p.som-2-chef-a-txt-TH:before, p.som-2-prompt-txt-TH:before, p.som-2-appro-txt-TH:before ,p.som-2-vsav-txt-TH:before{
    background-image: url('../images_FT/main-left-b.svg');
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
	padding:0;
    content:"";
    transform: translateY(5px);
}
p.som-3-vsav-txt-TH{
    background-color: #e7efe8;
    color: #5ea759;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.3;
    padding: 8px 12px;
    margin: 6px 0 6px 20px ;
}
div.detail-som-TH{
    background-color:white;
}
div.tdm-bloc-TH{
    background-color: #f5f6ff;
    padding: 0;
    margin: 0 0 20px 0;
}
div.tdm-closer-TH{
    background-color: #e9f1f7;
    height: 16px;
    width: auto;
    margin: 8px 0 0 0;
}
p.tdm-1-prompt-TH{
    background-color: #e9f1f7;
    color: #0088ba;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.5;
    padding: 12px 6px 12px 12px;
    margin: 0;
}
p.tdm-1-prompt-TH:before{
    background-image: url('../images_FT/main-left-b.svg');
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
	padding:0;
    content:"";
    transform: translateY(5px);
}
p.tdm-2-prompt-TH{
    color: #0088ba;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.4;
    padding: 4px 6px 4px 22px;
    margin: 0;
}
p.tdm-3-prompt-TH{
    color: #0088ba;
    font-size:1.2em;
    line-height: 1.4;
    margin: 0;
    padding: 0 6px 0 42px;
}
p.tdm-3-prompt-TH:before{
    background-image: url('../images_FT/puce-titre-3-prompt-th.svg');
    background-size: 10px 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
	padding:0;
    content:"";
}
p.tdm-1-vsav-TH{
    background-color: #e9f1f7;
    color: #5ea759;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.5;
    padding: 6px 8px;
}
p.tdm-1-vsav-TH:before{
    background-image: url('../images_FT/main-left-b.svg');
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
	padding:0;
    content:"";
    transform: translateY(5px);
}
p.tdm-2-vsav-TH{
    color: #5ea759;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.4;
    padding: 4px 6px 4px 22px;
    margin: 0;
}
p.tdm-3-vsav-TH{
    color: #5ea759;
    font-size:1.2em;
    line-height: 1.4;
    margin: 0;
    padding: 0 6px 0 42px;
}
p.tdm-3-vsav-TH:before{
    background-image: url('../images_FT/puce-titre-3-VSAV-th.svg');
    background-size: 10px 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
	padding:0;
    content:"";
}
p.tdm-1-chef-a-TH{
    background-color: #e9f1f7;
    color: #da8c0a;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.5;
    padding: 6px 8px;
}
p.tdm-1-chef-a-TH:before{
    background-image: url('../images_FT/main-left-b.svg');
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
	padding:0;
    content:"";
    transform: translateY(5px);
}
p.tdm-2-chef-a-TH{
    color: #da8c0a;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.4;
    padding: 4px 6px 4px 22px;
    margin: 0;
}
p.tdm-3-chef-a-TH{
    color: #da8c0a;
    font-size:1.2em;
    line-height: 1.4;
    margin: 0;
    padding: 0 6px 0 42px;
}
p.tdm-3-chef-a-TH:before{
    background-image: url('../images_FT/puce-titre-3-chef-a-th.svg');
    background-size: 10px 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
	padding:0;
    content:"";
}
p.tdm-1-appro-TH{
    background-color: #e9f1f7;
    color: #c5bb00;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.5;
    padding: 6px 8px;
}
p.tdm-1-appro-TH:before{
    background-image: url('../images_FT/main-left-b.svg');
    background-size: 30px 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 8px;
	padding:0;
    content:"";
    transform: translateY(5px);
}
p.tdm-2-appro-TH{
    color: #c5bb00;
    font-size:1.2em;
    font-weight:600;
    line-height: 1.4;
    padding: 4px 6px 4px 22px;
    margin: 0;
}
p.tdm-3-appro-TH{
    color: #c5bb00;
    font-size:1.2em;
    line-height: 1.4;
    margin: 0;
    padding: 0 6px 0 42px;
}
p.tdm-3-appro:before{
    background-image: url('../images_FT/puce-titre-3-appro-th.svg');
    background-size: 10px 10px;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
	padding:0;
    content:"";
}
/*sommaire partie bloc TH*/

/*sommaire partie bloc FT*/
.sommaire-FT{
    padding: 20px 10px 60px 10px;
}

.sommaire-FT a{
    display: block;
}

.sommaire-ligne-FT{
    background-color: #f4f7fa ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin: 8px;
}
.sommaire-ligne-prompt-FT{
    background-color: #dde5ee ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin: 8px;
}
.sommaire-ligne-vsav-FT{
    background-color: #e7efe8 ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin: 8px;
}
.sommaire-ligne-appro-FT{
    background-color: #f7f7e2 ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin: 8px;
}
.sommaire-ligne-chef-a-FT{
    background-color: #f3e7db ;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    margin: 8px;
}

.sommaire-ligne-FT:hover, .sommaire-ligne-prompt-FT:hover,.sommaire-ligne-vsav-FT:hover,.sommaire-ligne-appro-FT:hover,.sommaire-ligne-chef-a-FT:hover{
    background-color: #97a5b3 ;
}

div.som-1-chap-FT{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 8px 0;
    border: 2px solid #006eb7;
    background-color: #f4f7fa;
    border-radius: 0 0 8px 0 ;
}

div.som-1-chap-FT:hover{
    color: white;
    background-color: #56565564;
}

p.sommaire-titre-top-FT{
	font-family:Roboto, "Roboto", sans-serif;
    color: #006eb7;
    font-weight: 600;
	font-size: 1.6em;
	line-height:1.6;
    padding: 12px;
    margin: 0;
    letter-spacing: .10rem;
    text-align: center;
}

p.sommaire-titre-0-FT{
	font-family:Roboto, "Roboto", sans-serif;
    color: #565655;
    font-weight: 600;
	font-size: 1.6em;
	line-height:1.6;
    padding: 12px;
    margin: 0;
    letter-spacing: .10rem;
    text-align: center;
    text-transform:uppercase;
}

p.som-bloc-num-FT{
    font-family:Roboto, "Roboto", sans-serif;
    background-color: #006eb7;
    width: 60px;
    height: 100%;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    line-height:1.2;
    padding: 12px;
    text-transform:uppercase;
    border: 2px solid #006eb7;
    text-align:center;
    margin: 0;
}

p.sommaire-titre-1-FT{
	font-family:Roboto, "Roboto", sans-serif;
    /* background-color: #f4f7fa; */
    color: #006eb7;
    width: 100%;
    height: auto;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.2;
    padding: 12px;
    margin: 0;
    letter-spacing: .10rem;
    text-transform:uppercase;
}

.sommaire-titre-2-prompt-FT{
    color: #006eb7;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.35;
    padding: 6px 12px 6px 6px;
}
.sommaire-titre-2-vsav-FT{
    color: #5ea759;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.35;
    padding: 6px 12px 6px 6px;
}
.sommaire-titre-2-appro-FT{
    color: #c5bb00;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.35;
    padding: 6px 12px 6px 6px;
}
.sommaire-titre-2-chef-a-FT{
    color: #da8c0a;
	font-family:Roboto, "Roboto", sans-serif;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.35;
    padding: 6px 12px 6px 6px;
}

.sommaire-titre-2-non-FT{
    color: #919191;
	font-family:Roboto, "Roboto", sans-serif;
    text-decoration: line-through;
    text-decoration-style: double;
    font-weight: 600;
	font-size: 1.2em;
	line-height:1.35;
    padding: 6px 12px 6px 6px;
}

.sommaire-bloc-num-FT{
    background-color: #b3b2b2;
    color: white;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}
.sommaire-bloc-num-prompt{
    background-color: #006eb7;
    color: white;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}

.sommaire-bloc-num-FT-vsav{
    background-color: rgb(105,185,125);
    color: white;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}

.sommaire-bloc-num-FT-chef{
    background-color: rgb(240,169,97);
    color: white;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}

.sommaire-bloc-num-FT-appro{
    background-color: #c5bb00;
    color: white;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}

.sommaire-bloc-num-non-FT{
    background-color: #919191;
    color: white;
    text-decoration: line-through;
    text-decoration-style: double;
    font-size:1.2em;
    letter-spacing: .25em;
	font-family:Roboto, sans-serif;
	font-weight:bold;
	line-height:1.2;
    padding: 6px 16px 6px 12px ;
    border-radius: 0 0 20px 0;
}
/*sommaire partie bloc FT*/
/*** sommaire-TH-FT ***/

/*** classes utilitaire spéciales -> NE PAS SUPPRIMER (utilisé par les scripts) ***/
.unshow{
	display: none;
}
.show{
	display: block;
   }
/*** classes utilitaire spéciales -> NE PAS SUPPRIMER (utilisé par les scripts) ***/

/*** responsive -> modification de la mise en forme du contenu selon les tailles écrans ***/
/*ecran PC*/

@media (min-width: 1000px) {
    .encadre-1-FT{
/*        width: 50%;*/
    }
}
@media (min-width: 800px) {
    .encadre-1-FT{
/*        width: 70%;*/
    }
}


/*tablette*/
@media (max-width: 590px) {
    #ouverture-edito {
        flex-direction: column;
    }

    p, ul, ol{
        font-size: 1.15em;
    }

    .titre-2-FT{
        letter-spacing: .14rem;
        margin: 26px 0 6px 0;
    }

    .titre-3-FT{
        margin:8px 0 6px 0;
    }

    .titre-chapitre-FT{
        padding: 8px 14px 22px 14px;
    }

    .titre-nb-sp{
        margin: 0 0 8px 0;
    }

    .encadre-1-FT{
        margin: 16px 0 28px 0;
    }

    .bandeau-prompt-FT, .bandeau-vsav-FT, .bandeau-appro-FT, .bandeau-chef-a-FT{
        margin: 40px 0 10px 0;
    }

    img.tag-bandeau-FT{
        max-height: 50px;
    }

    .titre-chapitre-prompt-FT, .titre-chapitre-vsav-FT, .titre-chapitre-appro-FT, .titre-chapitre-chef-a-FT{
        font-size: 1.5em;
        letter-spacing: 0.16em;
        padding: 14px;
    }


    img.i60, img.i80{
        width: 90%;
    }

    img.i100, img.i90, img.i80, img.i70, img.i60, img.i50,img.i40{
    min-width: 300px;
    }

    img.i30, img.i20, img.i15, img.i10{
    min-width: 200px;
    }

    img.i100p, img.i90p, img.i80p{
        min-width: 300px;
    }


}


/*téléphone*/
@media (max-width: 480px) {
	img.ouverture-cover{
        margin: 1em;
        width: 50%;
        max-width: 400px;
        height: auto;
    }
    .sommaire-FT{
        padding: 4px;
    }
    .sommaire-titre-2-FT, .sommaire-titre-2-app-FT, .sommaire-titre-2-non-FT{
        font-size:1em;
    }
    .sommaire-bloc-num-FT,.sommaire-bloc-num-FT-vsav, .sommaire-bloc-num-FT-chef,.sommaire-bloc-num-FT-appro, .sommaire-bloc-num-non-FT{
        font-size: 1em;
    }
    p.som-bloc-num-FT{
        font-size:1.1em;
    }
    .tag-list-FT{
        margin: 60px 0 0 0;
    }
    .titre-chapitre-FT{
        font-size:1.3em;
        padding:8px 8px 12px 8px;
    }

    .titre-3-FT{
        font-size:1.2em;
        padding: 8px 6px 8px 12px;
        margin: 8px 0 6px 0;
    }

    p.bloc-num-FT{
        font-size: 1em;
    }

    .titre-nb-sp{
        font-size: 1.1em;
        margin: 0 0 8px 0;
    }

    p, ul, ol{
        font-size: 1.1em;
    }

    p.dialogue-FT{
        padding: 4px 8px 8px 30px;
    }

    .contenu-livre{
        padding: 12px;
    }

    img.i60, img.i80, img.i100{
        width: 90%;
    }

    img.i100, img.i90, img.i80, img.i70, img.i60, img.i50,img.i40{
    min-width: 240px;
    }

    ul, ol{
        padding-inline-start: 0;
        margin-left: 28px;
    }

    ul ul{
        margin: 0;
        padding: 0;
    }

    div.encadre-1-FT ul{
        margin-left: 26px;
    }

     .bandeau-prompt-FT, .bandeau-vsav-FT, .bandeau-appro-FT, .bandeau-chef-a-FT{
        margin: 30px 0 8px 0;
    }

    img.tag-bandeau-FT{
        max-height: 50px;
    }

    .titre-chapitre-prompt-FT, .titre-chapitre-vsav-FT, .titre-chapitre-appro-FT, .titre-chapitre-chef-a-FT{
        font-size: 1.3em;
        letter-spacing: 0.12em;
        padding: 8px;
    }
}


/*teléphones - niv 2*/
@media (max-width: 300px) {

    .titre-chapitre-FT{
        font-size:1em;
        padding: 8px 8px 11px 8px;
    }
}

/*responsive sommaire - autres corrections spécifiques*/
@media (max-width: 710px){
    div.bt-TH-FT{
        font-size: 1.4em;
        letter-spacing: .08rem;
    }
}

@media (max-width: 640px){
	img.ouverture-cover{
        margin: 1.5em;
        width: 70%;
        max-width: 400px;
        height: auto;
    }
    div.bt-TH-FT{
        font-size: 1.3em;
    }
}

@media (max-width: 560px){
	
	.fiche-P, 
	.fiche-H,
	.fiche-G,
	.fiche-M,
	.fiche-S,
	.fiche-A,
	.fiche-I,
	.fiche-D {
		padding: 0 1em 2.5em 1em;
		margin-bottom: 4em;
	}

    div.bt-TH-FT{
        font-size: 1.2em;
        letter-spacing: .08rem;
        height: 65px;
        display: flex;
        justify-content: center;
        padding: 8px 2px;
        align-items: center
    }

    div.entete-sommaire-flt{
        gap: 0;
    }

    .navigation-menu .guide-link_in-sommaire{
        margin: 0;
        top:-32px;
    }

    p.sommaire-titre-1-FT{
        font-size: 1em;
        padding: 10px;
    }

    .sommaire-ligne-prompt-FT, .sommaire-ligne-vsav-FT, .sommaire-ligne-appro-FT, .sommaire-ligne-chef-a-FT {
        flex-direction: column;
        gap: 0;
    }

    .sommaire-ligne-prompt-FT, .sommaire-ligne-vsav-FT,.sommaire-ligne-appro-FT,.sommaire-ligne-chef-a-FT{
        margin: 8px 0;
    }

}
/*** responsive ***/


/*** images 1er aide top -> surcouche des images d'aide à l'utilisation du SSUAP et de la PWA ***/
@keyframes pulse {
    0% {
        /* opacity: 0; */
        transform: scale(1);
    }

    50%
    {
        /* opacity: 0; */
        transform: scale(1.3);
    }

    100%{
        /* opacity: 1; */
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 8s once ease-in-out;
}

@keyframes upFadein {
    from {
        opacity: 0;
        transform: translateY(600px);
    }

    to {
        opacity: 1;
    }
}

.UPfadein {
        animation: upFadein 800ms ease;

    }

    @keyframes upFadein {
        from {
            opacity: 0;
            transform: translateY(600px);
        }

        to {
            opacity: 1;
        }
    }

    .fade {
            animation: Fade 800ms ease;

        }

@keyframes bouncing {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    0% {
        transform: translateY(0);
    }
}

.bloc-picto-ouverture{
    display: block;
}

.bloc-picto-ouverture img {
    filter: drop-shadow(2px 4px 6px #515151);
}

img.image-1er-acceuil{
    position: fixed;
    top: 12px;
    left: 12px;
    height: 100%;
    max-height: 120px;
    width: auto;
    z-index: 4;
    margin: 0;
    animation: 1000ms bouncing ease infinite both;
    opacity: 0.75;
}

img.image-1er-sommaire{
    position: fixed;
    top: 12px;
    right: 26px;
    height: 100%;
    max-height: 120px;
    width: auto;
    z-index: 4;
    margin: 0;
    animation: 1000ms bouncing ease infinite both;
    opacity: 0.75;
}

img.image-1er-recherche{
    position: fixed;
    bottom: 92px;
    right: 92px;
    height: 100%;
    max-height: 100px;
    width: auto;
    z-index: 4;
    margin: 0;
    animation: 1000ms bouncing ease infinite both;
    opacity: 0.75;
}

img.image-1er-defil{
    position: fixed;
    bottom: 50px;
    left: 60px;
    width: 100%;
    max-width: 60px;
    height: auto;
    z-index: 4;
    margin: 0;
    animation: 1000ms bouncing ease infinite both;
    opacity: 0.75;
}

@media (max-width: 400px) {
    img.image-1er-acceuil{
        position: fixed;
        top: 12px;
        left: 12px;
        height: 100%;
        max-height: 100px;
        width: auto;
    }

    img.image-1er-sommaire{
        position: fixed;
        top: 12px;
        right: 26px;
        height: 100%;
        max-height: 100px;
        width: auto;
    }

    img.image-1er-recherche{
        position: fixed;
        bottom: 68px;
        right: 64px;
        height: 100%;
        max-height: 90px;
        width: auto;
    }
}

@media (max-width: 350px) {
    img.image-1er-acceuil{
        height: 100%;
        max-height: 80px;
        width: auto;
    }

    img.image-1er-sommaire{
        height: 100%;
        max-height: 80px;
        width: auto;
    }

    img.image-1er-recherche{
        height: 100%;
        max-height: 75px;
        width: auto;
    }

    img.image-1er-defil{
        position: fixed;
        bottom: 50px;
        left: 18px;
    }
}
/*images 1er aide top*/

/*** filtre de contenus ***/
.hidden {
    display: none;
}

.hidden-interface {
display: none;
}

.checkbox-list {
background-color: #E9F1F7;
padding: 20px;
border-radius: 10px;
width: 70%;
}

.checkbox-item {
display: flex;
align-items: center;
margin-bottom: 10px;
color: rgb(58, 58, 58);
border: #006eb7 1px solid;
padding: 4px 4px 4px 12px;
border-radius: 8px;
}

.checkbox-item:hover {
    background-color: #6189a4;
    color: white;
}

.select-label{
    font-weight: bold;
    color: #006eb7;
}

.st-label{
    font-weight: 1.15em;
}

.select-label:hover{
    color: white;
}

.checkbox-input {
margin-right: 10px;
}

p.inter-chap-niv-1{
background-color: #006eb7;
color: white;
font-size:1.2em;
letter-spacing: .1em;
font-family:Roboto, "Roboto", sans-serif;
font-weight:600;
padding:6px 16px 6px 12px ;
margin: 12px 0 10px 0;
border-radius: 0 0 12px 0;
}

p.inter-chap-niv-1:hover{
background-color: #6189a4;
}

.niv2{
    margin-left: 36px;
}


/*zone de chargement*/
div.chargement{
    display: flex;
    justify-content: space-between;
    align-content: center;

    gap: 20px;
    padding: 12px;
    margin: 12px 0 6px 0;
    background-color: rgb(204, 204, 204);
    border-radius: 12px;
}

div.menuUI{
    display: flex;
    justify-content: space-between;
    align-content: center;
    gap: 20px;
    padding: 12px;
    margin: 26px 0 18px 0;
    background-color: rgb(204, 204, 204);
    border-radius: 12px;
}

.button-wrap{
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 12px;

}

div.chargement button {
    padding: 6px;
    font-weight: 600;
    font-size: 1em;
    background-color: #22669F;
    color: white;
    border-radius: 6px;
}

div.chargement button:hover {
    background-color: #5d907e;
}

.button-upload {
    padding: 6px;
    font-size: 1em;
    background-color: #22669F;
    color: white;
    border-radius: 4px;
}

input[type="file"] {
margin-top: 12p;
font-size: 17px;
font-weight: 600;
color: #22669F;
transform: translateY(6px);
}

div.actions{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
}

div.actions button{
    padding: 6px;
    font-weight: 600;
    font-size: 1em;
    background-color: #22669F;
    color: white;
    border-radius: 6px;
}

div.actions button:hover {
    background-color: #5d907e;
}
div.actions button:active {
    background-color: black;
}


/*bouton de déploiement*/
.toggle-button {
background-color: #CC3333;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
font-size: 1.25em;
font-weight: 600;
}

.toggle-button:hover {
    background-color: #A62727;
}

.toggle-button.collapsed {
    background-color: #2C82C9;
}

.toggle-button.collapsed:hover {
    background-color: #22669F;
}

.toggle-button .icon {
    display: inline-block;
    margin-right: 5px;
}

.interface-transition {
/* transition: height 1s ease; */ /* fait bugger le repliement global */
overflow: hidden;
}

/*responsive*/
/*tablette*/
@media (max-width: 1000px) {
    .checkbox-list {
        width: 100%;
        padding: 4px 8px 8px 8px;
    }

    .checkbox-list h2{
        text-align: center;
        padding-top: 8px;
        margin-top: 0;
        font-size: 1.2em;
    }

    #load-input{
        display: none;
    }

    p.inter-chap-niv-1 {
        font-size: 0.95em;
    }
}

/*telephone*/
@media (max-width: 480px) {
    .checkbox-list {
        width: 100%;
        padding: 4px 8px 8px 8px;
    }

    .checkbox-list h2{
        text-align: center;
        padding-top: 8px;
        margin-top: 0;
        font-size: 1.15em;
    }

    div.chargement{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 10px;
    }

    div.menuUI{
        margin-top: 8px;
    }

    div.actions{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    gap: 10px;
    }

    #load-input{
        display: none;
    }

    p.inter-chap-niv-1 {
        font-size: 0.95em;
    }
}
/*** filtre de contenus ***/