qc-trousse-sdg 1.2.4-beta.1 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +52 -35
- package/composer.json +6 -0
- package/dist/css/qc-sdg-no-grid.min.css +1 -1
- package/dist/css/qc-sdg.min.css +1 -1
- package/dist/js/qc-sdg.min.js +1 -1
- package/package.json +2 -6
- package/public/css/qc-doc-sdg.css +25 -25
- package/public/css/qc-sdg-no-grid.css +26 -26
- package/public/css/qc-sdg.css +26 -26
- package/public/js/qc-doc-sdg.js +1 -1
- package/public/js/qc-sdg.js +1 -1
- package/rollup.config.js +0 -3
- package/src/sdg/scss/base/_grid.scss +1 -1
- package/src/sdg/scss/modules/_grid.scss +4 -4
- package/src/sdg/scss/qc-sgd-no-grid.scss +1 -1
- package/src/sdg/scss/settings/_grid.scss +3 -3
- package/src/sdg/scss/utilities/_display.scss +2 -2
- package/src/sdg/scss/vendor/bootstrap-rewrite/_functions.scss +193 -0
- package/src/sdg/scss/vendor/bootstrap-rewrite/_variables.scss +1151 -0
- package/src/sdg/scss/vendor/bootstrap-rewrite/mixins/_breakpoints.scss +126 -0
- package/src/sdg/scss/vendor/bootstrap-rewrite/mixins/_deprecate.scss +12 -0
- package/src/sdg/scss/vendor/modern-css-reset/src/reset.css +73 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/_grid.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/_tables.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/mixins/_grid-framework.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/mixins/_grid.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/utilities/_display.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/utilities/_flex.scss +0 -0
- /package/{vendor → src/sdg/scss/vendor}/bootstrap-rewrite/utilities/_spacing.scss +0 -0
package/README.md
CHANGED
|
@@ -87,50 +87,31 @@ Les composants du SDG sont catalogués avec leur documentation dans le fichier `
|
|
|
87
87
|
|
|
88
88
|
## Développement
|
|
89
89
|
|
|
90
|
-
###
|
|
91
|
-
|
|
92
|
-
- Cloner le dépôt : `git clone https://github.com/Quebecca/qc_trousse_sdg.git`.
|
|
93
|
-
- Aller dans le dossier : `cd qc_trousse_sdg`.
|
|
94
|
-
- Installer les dépendances Node.js : `npm install`.
|
|
95
|
-
- Lancer la commande : `npm run dev`.
|
|
96
|
-
|
|
97
|
-
Une fois cette commande lancée, toute modification d’un fichier dans `/src` est automatiquement compilée à la volée dans le répertoire `/public`.
|
|
98
|
-
|
|
99
|
-
Un lien vers la documentation de la trousse (`/public/index.html`) est affiché dans la console : les changements dans le code seront automatiquement reflétés dans le navigateur, sans besoin de recharger manuellement la page.
|
|
100
|
-
|
|
101
|
-
### Installation dans un projet node.js
|
|
102
|
-
|
|
103
|
-
Vous pouvez installer la trousse comme dépendance dans un projet node.js avec la commande suivante : `npm i qc-trousse-sgd`
|
|
104
|
-
|
|
105
|
-
Pour installer la trousse de cette façon, pour pouvoir utiliser les SCSS de la trousse, il faut ajoute
|
|
106
|
-
|
|
107
|
-
### Étendre la trousse de développement
|
|
108
|
-
|
|
109
|
-
Il y a 2 façons de faire pour étendre la trousse de développement afin d’y ajouter des composants ou de l’utiliser pour l’intégrer dans un cadriciel déjà existant.
|
|
90
|
+
### Extension de la trousse de développement
|
|
110
91
|
|
|
111
92
|
Il est important de consulter tous les outils et utiliser le matériel disponible dès qu’il y a lieu. Les composants et modèles qui ne sont pas présents actuellement dans les outils devront être conçus en collaboration avec le SCG, dans la continuité du système de design et approuvés par le SCG. Vous pouvez nous écrire à l’adresse [design@quebec.ca](mailto:design@quebec.ca) pour planifier des ateliers de collaboration au besoin.
|
|
112
93
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
C’est la façon la plus simple de procéder pour bonifier la trousse avec de nouveaux composants ou feuilles de style, qui pourront être proposés à la fusion.
|
|
94
|
+
Nous vous conseillons de créer une divergence du projet dans github : de cette façon, vous pourrez bonifier la trousse avec de nouveaux composants ou feuilles de style, qui pourront ensuite être proposés à la fusion avec le dépôt principal.
|
|
116
95
|
|
|
117
96
|
Cf le guide GitHub : https://docs.github.com/fr/get-started.
|
|
118
97
|
|
|
119
|
-
####
|
|
98
|
+
#### Installation
|
|
120
99
|
|
|
121
|
-
|
|
100
|
+
Une fois votre divergence créée :
|
|
101
|
+
- Cloner le dépôt : `git clone <url-de-votre-divergence>`
|
|
102
|
+
- Aller dans le dossier : `cd qc_trousse_sdg`.
|
|
103
|
+
- Installer les dépendances Node.js : `npm install`.
|
|
104
|
+
- Lancer la commande : `npm run dev`.
|
|
122
105
|
|
|
123
|
-
|
|
106
|
+
Une fois cette commande lancée, toute modification d’un fichier dans `/src` est automatiquement compilée à la volée dans le répertoire `/public`.
|
|
124
107
|
|
|
125
|
-
|
|
126
|
-
- Utilisation de la trousse comme dépendance pour créer une feuille de style personnalisée.
|
|
127
|
-
- Intégration dans Bootstrap.
|
|
108
|
+
Un lien vers la documentation de la trousse (`/public/index.html`) est affiché dans la console : les changements dans le code seront automatiquement reflétés dans le navigateur, sans besoin de recharger manuellement la page.
|
|
128
109
|
|
|
129
|
-
|
|
110
|
+
#### Compilation pour la production
|
|
130
111
|
|
|
131
112
|
Lancer la commande `npm run build` pour générer les fichiers CSS et JavaScript minifiés dans le répertoire `/dist`.
|
|
132
113
|
|
|
133
|
-
|
|
114
|
+
#### Génération des sprites
|
|
134
115
|
|
|
135
116
|
Pour ajouter de nouvelles images :
|
|
136
117
|
|
|
@@ -144,17 +125,53 @@ Votre SVG sera ajouté au deux fichiers `qc-sprite.svg` dans les répertoires `/
|
|
|
144
125
|
Ensuite pour afficher votre SVG, il faut le référencer de la façon suivante :
|
|
145
126
|
|
|
146
127
|
```css
|
|
147
|
-
.custom-
|
|
128
|
+
.custom-class {
|
|
148
129
|
background-image: url(#{$img-dir}/qc-sprite.svg?v={{pkg-version}}#<nom-du-fichier-svg-ajouté>);
|
|
149
130
|
}
|
|
150
131
|
```
|
|
151
132
|
|
|
152
133
|
Voir par exemple ce qui est fait dans `src/scss/components/_icons.scss`.
|
|
153
134
|
|
|
154
|
-
|
|
135
|
+
### Ajout de la trousse dans un projet existant
|
|
136
|
+
|
|
137
|
+
L’autre option est d’ajouter la trousse comme dépendance de votre projet et d’inclure les SCSS nécessaires pour profiter des jetons et fonctions de la trousse.
|
|
138
|
+
|
|
139
|
+
Pour un projet node.js :
|
|
140
|
+
- `npm i qc-trousse-sgd`
|
|
141
|
+
|
|
142
|
+
Pour ajouter votre propre divergence à l'adresse `https://github.com/votre-organisation/qc_trousse_sdg`, si elle n'est pas publiée dans npmjs :
|
|
143
|
+
- `npm i github:votre-organisation/qc-trousse-sdg`
|
|
155
144
|
|
|
156
|
-
|
|
157
|
-
-
|
|
145
|
+
Pour un projet php avec composer :
|
|
146
|
+
- ajouter le dépôt github dans votre composer.json
|
|
147
|
+
```
|
|
148
|
+
// composer.json
|
|
149
|
+
{
|
|
150
|
+
(...)
|
|
151
|
+
"repositories": [
|
|
152
|
+
(...),
|
|
153
|
+
{
|
|
154
|
+
"type": "vcs",
|
|
155
|
+
"url": "https://github.com/Quebecca/qc_trousse_sdg.git"
|
|
156
|
+
// ou pour installer votre divergence
|
|
157
|
+
// "url": "https://github.com/votre-organisation/qc-trousse-sdg
|
|
158
|
+
}
|
|
159
|
+
]
|
|
160
|
+
}
|
|
161
|
+
```
|
|
162
|
+
- installer la trousse avec composer : `composer req qc/qc-trousse-sdg`
|
|
163
|
+
|
|
164
|
+
Une fois la trousse ajoutée comme dépendance, vous pourrez directement inclure ses fichiers sources dans vos propres fichiers scss ou js.
|
|
165
|
+
Voici un [exemple de projet d'utilisation de la trousse](https://github.com/Quebecca/qc-sdg-extension-demo) offrant 3 besoins liés à l'utilisation de la trousse :
|
|
166
|
+
|
|
167
|
+
- Recompilation des feuilles de style de la trousse avec de nouveaux réglages ;
|
|
168
|
+
- Inclusion des scss de la trousse dans une feuille de style personnalisée ;
|
|
169
|
+
- Intégration dans Bootstrap.
|
|
170
|
+
|
|
171
|
+
## Historique
|
|
172
|
+
- 1.2.5 — Ajout/modififcation des instructions concernant l'installation et l'extension de la trousse ;
|
|
173
|
+
- 1.2.4 — Suppression de dépendances npm et réorganisation des répertoires ; Ajout d'un composer.json pour pouvoir installer la trousse par composer ;
|
|
174
|
+
- 1.2.3 — Modification des dépendances npm du projets ;
|
|
158
175
|
- 1.2.2 — Calcul automatique du chemin d'insertion de la feuille de style en fonction de celui du fichier javascript ; correction dans la documentation.
|
|
159
176
|
- 1.2.1 — Mise à jour d’un jeton de design concernant les ombrages ; correction d’une anomalie visuelle dans du bandeau PIV en mobile ; mise à jour des titres de la documentation incluse.
|
|
160
177
|
- 1.2.0 — Ajout des composants Alerte générale, Avis, Bandeau d’en-tête du PIV et Haut de page ; réorganisation des répertoires du projet ; modification de la documentation incluse (`/public/index.html`) ; ajout/modification de jetons de design.
|
package/composer.json
ADDED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700";:root,:host{--qc-font-family-roboto:Roboto,sans-serif;--qc-font-family-open-sans:Open Sans,sans-serif;--qc-font-family-roboto-mono:Roboto Mono,monospace;--qc-font-family-content:var(--qc-font-family-open-sans);--qc-font-family-header:var(--qc-font-family-roboto);--qc-font-family-code:var(--qc-font-family-roboto-mono);--qc-font-size-root-percent:62.5%;--qc-font-size-h6:1.6rem;--qc-font-size-h5:1.9rem;--qc-font-size-h4:2.1rem;--qc-font-size-h3:2.8rem;--qc-font-size-h2:3.6rem;--qc-font-size-h1:4.8rem;--qc-font-size-90:1.4rem;--qc-font-size-100:1.6rem;--qc-font-size-120:1.8rem;--qc-font-size-200:2.2rem;--qc-font-size-sm:var(--qc-font-size-90);--qc-font-size-md:var(--qc-font-size-100);--qc-font-size-lg:var(--qc-font-size-120);--qc-font-size-xl:var(--qc-font-size-200);--qc-font-size-content:var(--qc-font-size-md);--qc-font-weight-regular:400;--qc-font-weight-medium:500;--qc-font-weight-semi-bold:600;--qc-font-weight-bold:700;--qc-font-weight-header-regular:var(--qc-font-weight-regular);--qc-font-weight-header-medium:var(--qc-font-weight-medium);--qc-font-weight-header-bold:var(--qc-font-weight-bold);--qc-font-weight-content-regular:var(--qc-font-weight-regular);--qc-font-weight-content-medium:var(--qc-font-weight-semi-bold);--qc-font-weight-content-bold:var(--qc-font-weight-bold);--qc-line-height-h6:2rem;--qc-line-height-h5:2.4rem;--qc-line-height-h4:2.4rem;--qc-line-height-h3:3.2rem;--qc-line-height-h2:4rem;--qc-line-height-h1:5.6rem;--qc-line-height-90:2rem;--qc-line-height-100:2.4rem;--qc-line-height-120:2.8rem;--qc-line-height-200:3.2rem;--qc-line-height-sm:var(--qc-line-height-90);--qc-line-height-md:var(--qc-line-height-100);--qc-line-height-lg:var(--qc-line-height-120);--qc-line-height-xl:var(--qc-line-height-200);--qc-line-height-content:var(--qc-line-height-md);--qc-max-content-width:82.5rem;--qc-color-white:#fff;--qc-color-blue-pale:#dae6f0;--qc-color-blue-light:#4a98d9;--qc-color-blue-regular:#1472bf;--qc-color-blue-piv:#095797;--qc-color-blue-medium:#19406c;--qc-color-blue-dark:#223654;--qc-color-purple:#6b4fa1;--qc-color-grey-pale:#f1f1f2;--qc-color-grey-light:#c5cad2;--qc-color-grey-regular:#8893a2;--qc-color-grey-medium:#6b778a;--qc-color-grey-dark:#4e5662;--qc-color-pink-pale:#ffdbd6;--qc-color-pink-regular:#e58271;--qc-color-red-regular:#cb381f;--qc-color-red-dark:#692519;--qc-color-green-pale:#d7f0bb;--qc-color-green-regular:#4f813d;--qc-color-green-dark:#2c4024;--qc-color-yellow-pale:#f8e69a;--qc-color-yellow-regular:#e0ad03;--qc-color-yellow-dark:#ad781c;--qc-color-text-primary:var(--qc-color-blue-dark);--qc-color-accent:var(--qc-color-pink-regular);--qc-color-success:var(--qc-color-green-regular);--qc-color-error:var(--qc-color-red-regular);--qc-color-danger:var(--qc-color-red-dark);--qc-color-link-text:var(--qc-color-blue-piv);--qc-color-link-hover:var(--qc-color-blue-piv);--qc-color-link-visited:var(--qc-color-purple);--qc-color-link-active:var(--qc-color-red-regular);--qc-box-shadow-color:rgba(34,54,84,.24);--qc-box-shadow-blur-0:0;--qc-box-shadow-blur-1:4px;--qc-box-shadow-blur-2:8px;--qc-box-shadow-blur-3:16px;--qc-box-shadow-blur-4:24px;--qc-box-shadow-offset-0:0;--qc-box-shadow-offset-1:1px;--qc-box-shadow-offset-2:2px;--qc-box-shadow-offset-3:4px;--qc-box-shadow-offset-4:6px;--qc-spacer-xs:.8rem;--qc-spacer-sm:1.6rem;--qc-spacer-md:2.4rem;--qc-spacer-lg:4.8rem;--qc-spacer-xl:9.6rem;--qc-spacer-section:var(--qc-spacer-xl);--qc-spacer-h1-mt:7.2rem;--qc-spacer-h1-mb:3.2rem;--qc-spacer-h2-mt:7.2rem;--qc-spacer-h2-mb:var(--qc-spacer-sm);--qc-spacer-h3-mt:var(--qc-spacer-lg);--qc-spacer-h3-mb:var(--qc-spacer-xs);--qc-spacer-h4-mt:var(--qc-spacer-lg);--qc-spacer-h4-mb:var(--qc-spacer-xs);--qc-spacer-h5-mt:var(--qc-spacer-md);--qc-spacer-h5-mb:0;--qc-spacer-h6-mt:var(--qc-spacer-md);--qc-spacer-h6-mb:0;--qc-spacer-content-block-mb:var(--qc-spacer-md);--qc-spacer-list-pl:var(--qc-spacer-sm);--qc-spacer-list-mb:var(--qc-spacer-content-block-mb);--qc-spacer-list-embedded-mb:var(--qc-spacer-sm);--qc-spacer-list-item-mb:var(--qc-spacer-sm);--qc-spacer-notice-my:var(--qc-spacer-md);--qc-spacer-notice-mx:3.2rem;--qc-grid-gutter:32px;--qc-grid-breakpoint-xs:0;--qc-grid-breakpoint-sm:576px;--qc-grid-breakpoint-md:768px;--qc-grid-breakpoint-lg:992px;--qc-grid-breakpoint-xl:1200px;--qc-grid-container-max-width-sm:576px;--qc-grid-container-max-width-md:768px;--qc-grid-container-max-width-lg:992px;--qc-grid-container-max-width-xl:1200px}@media(max-width: 1199.98px){:root,:host{--qc-grid-gutter:24px}}@media(max-width: 991.98px){:root,:host{--qc-font-size-h3:2.5rem;--qc-font-size-h2:2.8rem;--qc-font-size-h1:3.6rem;--qc-line-height-h2:3.2rem;--qc-line-height-h1:4rem;--qc-spacer-h2-mt:4.8rem;--qc-spacer-h2-mb:.8rem}}@media(max-width: 767.98px){:root,:host{--qc-grid-gutter:16px}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root{font-size:var(--qc-font-size-root-percent)}body{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);background-color:var(--qc-color-white);color:var(--qc-color-text-primary)}h1,.qc-h1{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h1);line-height:var(--qc-line-height-h1);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h1-mt);margin-bottom:var(--qc-spacer-h1-mb)}h2,.qc-h2{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h2);line-height:var(--qc-line-height-h2);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h2-mt);margin-bottom:var(--qc-spacer-h2-mb)}h3,.qc-h3{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h3);line-height:var(--qc-line-height-h3);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h3-mt);margin-bottom:var(--qc-spacer-h3-mb)}h4,.qc-h4{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h4);line-height:var(--qc-line-height-h4);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h4-mt);margin-bottom:var(--qc-spacer-h4-mb)}h5,.qc-h5{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h5);line-height:var(--qc-line-height-h5);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h5-mt);margin-bottom:var(--qc-spacer-h5-mb)}h6,.qc-h6{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h6);line-height:var(--qc-line-height-h6);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h6-mt);margin-bottom:var(--qc-spacer-h6-mb)}h1 .qc-subhead,.qc-h1 .qc-subhead{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);color:var(--qc-color-grey-medium);display:block;margin:0}h1:after,.qc-h1:after{content:"";display:block;margin:0;width:4.8rem;padding-top:.8rem;border-bottom:4px solid var(--qc-color-accent)}p{margin-top:0;margin-bottom:var(--qc-spacer-md);max-inline-size:var(--qc-max-content-width)}img{border:none;vertical-align:middle}a{color:var(--qc-color-link-text)}a:visited{color:var(--qc-color-link-visited)}a:hover,a:focus{color:var(--qc-color-link-hover);text-decoration:none}a:active{color:var(--qc-color-link-active)}a .qc-external-link-tail{white-space:nowrap}a .qc-external-link-tail img{max-height:1.1rem;max-width:1.1rem;margin-bottom:.16rem;display:inline-block;content:url(../img/external-link.svg?v=1.2.2)}code,.qc-code{font-family:var(--qc-font-family-code)}.qc-bg-color-white{background-color:#fff}.qc-bg-color-blue-pale{background-color:#dae6f0}.qc-bg-color-blue-light{background-color:#4a98d9}.qc-bg-color-blue-regular{background-color:#1472bf}.qc-bg-color-blue-piv{background-color:#095797}.qc-bg-color-blue-medium{background-color:#19406c}.qc-bg-color-blue-dark{background-color:#223654}.qc-bg-color-purple{background-color:#6b4fa1}.qc-bg-color-grey-pale{background-color:#f1f1f2}.qc-bg-color-grey-light{background-color:#c5cad2}.qc-bg-color-grey-regular{background-color:#8893a2}.qc-bg-color-grey-medium{background-color:#6b778a}.qc-bg-color-grey-dark{background-color:#4e5662}.qc-bg-color-pink-pale{background-color:#ffdbd6}.qc-bg-color-pink-regular{background-color:#e58271}.qc-bg-color-red-regular{background-color:#cb381f}.qc-bg-color-red-dark{background-color:#692519}.qc-bg-color-green-pale{background-color:#d7f0bb}.qc-bg-color-green-regular{background-color:#4f813d}.qc-bg-color-green-dark{background-color:#2c4024}.qc-bg-color-yellow-pale{background-color:#f8e69a}.qc-bg-color-yellow-regular{background-color:#e0ad03}.qc-bg-color-yellow-dark{background-color:#ad781c}.qc-bg-color-text-primary{background-color:var(--qc-color-blue-dark)}.qc-bg-color-accent{background-color:var(--qc-color-pink-regular)}.qc-bg-color-success{background-color:var(--qc-color-green-regular)}.qc-bg-color-error{background-color:var(--qc-color-red-regular)}.qc-bg-color-danger{background-color:var(--qc-color-red-dark)}.qc-bg-color-link-text{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-hover{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-visited{background-color:var(--qc-color-purple)}.qc-bg-color-link-active{background-color:var(--qc-color-red-regular)}figure{display:inline-block;flex-direction:column}figure img{max-width:100%;height:auto}figcaption{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);background-color:var(--qc-color-grey-pale);padding:.8rem;margin-top:.8rem}figcaption p{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}figcaption p:last-child{margin-bottom:0}ul{max-inline-size:var(--qc-max-content-width);list-style:disc;margin-top:0;margin-bottom:var(--qc-spacer-list-mb);padding-left:var(--qc-spacer-list-pl)}ul li{margin-bottom:var(--qc-spacer-list-item-mb)}ul ul{margin-top:var(--qc-spacer-list-item-mb);margin-bottom:var(--qc-spacer-list-embedded-mb);list-style:circle}.qc-shading-0{box-shadow:0 0 0 var(--qc-color-grey-light)}.qc-shading-1,.qc-to-top{box-shadow:0 1px 4px var(--qc-color-grey-light)}.qc-shading-2,.qc-to-top:focus{box-shadow:0 2px 8px var(--qc-color-grey-light)}.qc-shading-3{box-shadow:0 4px 16px var(--qc-color-grey-light)}.qc-shading-4{box-shadow:0 6px 24px var(--qc-color-grey-light)}.qc-d-none{display:none !important}.qc-d-inline{display:inline !important}.qc-d-inline-block{display:inline-block !important}.qc-d-block{display:block !important}.qc-d-table{display:table !important}.qc-d-table-row{display:table-row !important}.qc-d-table-cell{display:table-cell !important}.qc-d-flex{display:flex !important}.qc-d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.qc-d-sm-none{display:none !important}.qc-d-sm-inline{display:inline !important}.qc-d-sm-inline-block{display:inline-block !important}.qc-d-sm-block{display:block !important}.qc-d-sm-table{display:table !important}.qc-d-sm-table-row{display:table-row !important}.qc-d-sm-table-cell{display:table-cell !important}.qc-d-sm-flex{display:flex !important}.qc-d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.qc-d-md-none{display:none !important}.qc-d-md-inline{display:inline !important}.qc-d-md-inline-block{display:inline-block !important}.qc-d-md-block{display:block !important}.qc-d-md-table{display:table !important}.qc-d-md-table-row{display:table-row !important}.qc-d-md-table-cell{display:table-cell !important}.qc-d-md-flex{display:flex !important}.qc-d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.qc-d-lg-none{display:none !important}.qc-d-lg-inline{display:inline !important}.qc-d-lg-inline-block{display:inline-block !important}.qc-d-lg-block{display:block !important}.qc-d-lg-table{display:table !important}.qc-d-lg-table-row{display:table-row !important}.qc-d-lg-table-cell{display:table-cell !important}.qc-d-lg-flex{display:flex !important}.qc-d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.qc-d-xl-none{display:none !important}.qc-d-xl-inline{display:inline !important}.qc-d-xl-inline-block{display:inline-block !important}.qc-d-xl-block{display:block !important}.qc-d-xl-table{display:table !important}.qc-d-xl-table-row{display:table-row !important}.qc-d-xl-table-cell{display:table-cell !important}.qc-d-xl-flex{display:flex !important}.qc-d-xl-inline-flex{display:inline-flex !important}}@media print{.qc-d-print-none{display:none !important}.qc-d-print-inline{display:inline !important}.qc-d-print-inline-block{display:inline-block !important}.qc-d-print-block{display:block !important}.qc-d-print-table{display:table !important}.qc-d-print-table-row{display:table-row !important}.qc-d-print-table-cell{display:table-cell !important}.qc-d-print-flex{display:flex !important}.qc-d-print-inline-flex{display:inline-flex !important}}.qc-icon{display:inline-block;content:"";background-repeat:no-repeat;background-position:center;background-size:100% auto;min-width:32px;height:32px}.qc-icon.qc-icon-sm{min-width:12px;height:12px}.qc-icon.qc-icon-md{min-width:20px;height:20px}.qc-icon.qc-icon-lg{min-width:40px;height:40px}.qc-icon.qc-external-link{background-image:url(../img/qc-sprite.svg?v=1.2.2#external-link)}.qc-icon.qc-warning{background-image:url(../img/qc-sprite.svg?v=1.2.2#warning)}.qc-icon.qc-arrow-up-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#arrow-up-white)}.qc-icon.qc-clipboard{background-image:url(../img/qc-sprite.svg?v=1.2.2#clipboard)}.qc-icon.qc-error{background-image:url(../img/qc-sprite.svg?v=1.2.2#error)}.qc-icon.qc-error-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#error-white)}.qc-icon.qc-information{background-image:url(../img/qc-sprite.svg?v=1.2.2#information)}.qc-icon.qc-information-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#information-white)}.qc-icon.qc-minus{background-image:url(../img/qc-sprite.svg?v=1.2.2#minus)}.qc-icon.qc-plus{background-image:url(../img/qc-sprite.svg?v=1.2.2#plus)}.qc-icon.qc-question-mark{background-image:url(../img/qc-sprite.svg?v=1.2.2#question-mark)}.qc-icon.qc-success{background-image:url(../img/qc-sprite.svg?v=1.2.2#success)}.qc-icon.qc-success-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#success-white)}.qc-icon.qc-xclose-white{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.2#xclose-white)}.qc-icon.qc-xclose-blue{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.2#xclose-blue)}.qc-icon.qc-chevron-blue,.qc-icon.qc-chevron-white{width:16px;min-width:16px;height:10px}.qc-icon.qc-chevron-blue{background-image:url(../img/qc-sprite.svg?v=1.2.2#chevron-blue)}.qc-icon.qc-chevron-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#chevron-white)}.qc-icon.qc-facebook{background-image:url(../img/qc-sprite.svg?v=1.2.2#facebook)}.qc-icon.qc-linkedin{background-image:url(../img/qc-sprite.svg?v=1.2.2#linkedin);height:30px}.qc-icon.qc-twitter{background-image:url(../img/qc-sprite.svg?v=1.2.2#twitter)}.qc-icon.qc-youtube{background-image:url(../img/qc-sprite.svg?v=1.2.2#youtube)}.qc-icon.qc-warning-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.2#warning)}.qc-icon.qc-general-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.2#information)}.qc-icon.qc-search{background-image:url(../img/qc-sprite.svg?v=1.2.2#loupe-piv-droite)}.qc-icon.qc-search-submit{background-image:url(../img/qc-sprite.svg?v=1.2.2#loupe-piv-fonce)}.qc-notice{max-inline-size:var(--qc-max-content-width);display:flex;border:1px solid var(--qc-color-grey-light);background-color:var(--qc-color-white);word-break:break-word;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);margin-bottom:3.2rem}.qc-notice .icon-container{display:flex;padding:var(--qc-spacer-md) var(--qc-spacer-xs);background-color:var(--qc-color-blue-pale)}.qc-notice .icon-container .qc-icon{background-size:100% auto;min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-notice .content-container{width:100%}.qc-notice.qc-information .icon-container{background-color:var(--qc-color-blue-pale)}.qc-notice.qc-warning .icon-container{background-color:var(--qc-color-yellow-pale)}.qc-notice.qc-success .icon-container{background-color:var(--qc-color-green-pale)}.qc-notice.qc-error .icon-container{background-color:var(--qc-color-pink-pale)}.qc-notice .title{margin:0;padding:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-bold);font-family:var(--qc-font-family-content)}.qc-notice .content{margin:var(--qc-spacer-notice-my) var(--qc-spacer-notice-mx) var(--qc-spacer-notice-my) var(--qc-spacer-sm)}.qc-notice .content .text ::slotted(ul){padding-left:var(--qc-spacer-sm) !important;margin-top:var(--qc-spacer-sm) !important}qc-notice[type=error] ul li a{color:var(--qc-color-red-regular)}qc-notice[type=error] ul li a:hover,qc-notice[type=error] ul li a:focus{text-decoration:none}@media(max-width: 575.98px){.qc-notice .content{margin-right:var(--qc-spacer-notice-my)}}qc-piv-header{display:block;min-height:7.2rem;background-color:var(--qc-color-blue-piv);width:100%}.qc-piv-header{color:var(--qc-color-white)}.qc-piv-header a{color:var(--qc-color-white);text-decoration:none}.qc-piv-header a:hover,.qc-piv-header a:focus{color:var(--qc-color-white);text-decoration:underline}.qc-piv-header .piv-top{display:flex;justify-content:space-between;align-items:center}.qc-piv-header .piv-top .logo{margin-right:6.4rem}@media(max-width: 575.98px){.qc-piv-header .piv-top .logo{margin:0}}.qc-piv-header .piv-top .logo a{display:block}.qc-piv-header .piv-top .logo img{height:7.2rem;min-width:20rem}.qc-piv-header .piv-top .title{width:100%;padding:var(--qc-spacer-sm) 0;min-height:7.2rem;align-items:center;display:flex;margin-right:4rem}.qc-piv-header .piv-top .title a{font-size:var(--qc-font-size-100);line-height:var(--qc-line-height-100);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-header)}.qc-piv-header .piv-top .title a:hover,.qc-piv-header .piv-top .title a:focus{text-decoration:underline}.qc-piv-header .piv-top .title a .description{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content;display:flex;align-items:center}@media(max-width: 575.98px){.qc-piv-header .piv-top .right-section{min-width:auto}}.qc-piv-header .piv-top .qc-search{min-width:2.4rem;height:2.4rem}.qc-piv-header .piv-top .qc-search span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.qc-piv-header .piv-bottom .title{display:none}.qc-piv-header .piv-bottom .search-zone{padding-bottom:var(--qc-spacer-md)}.qc-piv-header .piv-bottom .search-zone form .input-group{width:100%;display:flex;justify-content:space-between;align-items:stretch}.qc-piv-header .piv-bottom .search-zone form .input-group input{width:100%;padding:.6rem 1.2rem;border:1px solid var(--qc-color-blue-dark);border-right:none}.qc-piv-header .piv-bottom .search-zone form .input-group input:focus{outline:.2rem solid var(--qc-color-blue-light);border-right:1px solid #000;z-index:1}.qc-piv-header .piv-bottom .search-zone form .input-group input::-moz-placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group input::placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group button{display:flex;justify-content:center;border:1px solid var(--qc-color-blue-dark);border-left:none;background-color:#fff;width:4.16rem}.qc-piv-header .piv-bottom .search-zone form .input-group button:focus{outline:.2rem solid var(--qc-color-blue-light);border-left:1px solid #000}.qc-piv-header .piv-bottom .search-zone form .input-group button .qc-search-submit{min-width:2.4rem;height:2.4rem;align-self:center}.qc-piv-header .piv-bottom .search-zone form .input-group button .sr-description{position:absolute;width:1px;height:1px;clip:rect(0 0 0 0)}qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{list-style:none;padding:0;margin:0;height:100%;margin-left:var(--qc-spacer-md)}@media(max-width: 575.98px){qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{margin-left:var(--qc-spacer-sm)}}qc-piv-header [slot=links] li,.qc-piv-header .piv-top .right-section .links ul li{padding:0;margin:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a,.qc-piv-header .piv-top .right-section .links ul a{font-family:var(--qc-font-family-header);text-decoration:none;font-size:1.2rem;color:var(--qc-color-white);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a:focus,.qc-piv-header .piv-top .right-section .links ul a:focus,qc-piv-header [slot=links] a:hover,.qc-piv-header .piv-top .right-section .links ul a:hover{text-decoration:underline;color:var(--qc-color-white)}.go-to-content{display:flex;height:0}.go-to-content a{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.go-to-content a:focus{width:inherit;height:inherit;overflow:inherit;clip:inherit;white-space:inherit;color:var(--qc-color-white);background-color:var(--qc-color-blue-piv)}@media(max-width: 767.98px){.qc-piv-header .piv-top .logo img{min-width:17.5rem;width:17.5rem}.qc-piv-header .piv-top .title{display:none}.qc-piv-header .piv-top .right-section{min-width:13rem}.qc-piv-header .piv-bottom .title{margin:0;display:flex;padding-bottom:var(--qc-spacer-sm)}}@media(max-width: 575.98px){.qc-piv-header .piv-top{height:7.2rem}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content}}qc-piv-footer{display:block;margin-top:4rem;padding-bottom:3.2rem;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-footer a{text-decoration:none}qc-piv-footer a:hover{text-decoration:underline}qc-piv-footer ul{margin:0 0 var(--qc-spacer-sm) 0;padding:0;width:100%;display:flex;list-style-type:none;justify-content:center;flex-wrap:wrap}qc-piv-footer ul li{padding:0 var(--qc-spacer-sm) var(--qc-spacer-xs);margin:0;text-align:center}qc-piv-footer ul li:hover{text-decoration:underline}.qc-piv-footer a{text-decoration:none}.qc-piv-footer a:hover{text-decoration:underline}.qc-piv-footer .qc-container{display:flex;flex-direction:column;align-items:center}.qc-general-alert{max-inline-size:var(--qc-max-content-width);padding:var(--qc-spacer-md) var(--qc-spacer-sm)}@media(max-width: 575.98px){.qc-general-alert{padding:var(--qc-spacer-sm)}}.qc-general-alert .qc-general-alert-elements{display:flex;padding:0}.qc-general-alert.warning{background-color:var(--qc-color-yellow-pale)}.qc-general-alert.general{background-color:var(--qc-color-blue-pale)}.qc-general-alert .qc-icon{min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-semi-bold);margin:0 var(--qc-spacer-md);width:100%}@media(max-width: 575.98px){.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-semi-bold)}}.qc-general-alert .qc-alert-close{display:flex;align-items:center}@media(max-width: 575.98px){.qc-general-alert .qc-alert-close{align-items:inherit}}.qc-general-alert .qc-close{padding:0;background-color:rgba(0,0,0,0);border:0;display:inline-flex;justify-content:center}.qc-general-alert .qc-close .qc-close-alert-icon{display:inline-block;min-width:var(--qc-spacer-sm);height:var(--qc-spacer-sm);vertical-align:middle;cursor:pointer}qc-alert [slot] *,qc-alert:not([slot=content]) *{margin-bottom:0}qc-alert [slot] a,qc-alert:not([slot=content]) a{color:var(--qc-color-blue-dark)}.qc-to-top{display:flex;z-index:99;cursor:pointer;width:4rem;height:4rem;background-color:var(--qc-color-blue-piv);align-items:center;justify-content:center;transition:opacity .4s linear;opacity:0;background-size:1.6rem 2rem}.qc-to-top[demo=false]{position:fixed;bottom:9.6rem;right:3.2rem}.qc-to-top[style*=block]{display:flex !important}.qc-to-top:hover{background-color:var(--qc-color-blue-regular)}.qc-to-top:focus{background-color:var(--qc-color-blue-regular);outline:2px solid var(--qc-color-blue-light);border:2px solid var(--qc-color-blue-dark)}.qc-to-top:active{background-color:var(--qc-color-blue-light)}.qc-to-top.visible{opacity:1;visibility:visible}.qc-to-top span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}hr{margin:var(--qc-spacer-lg) 0;border:0;border-bottom:1px solid var(--qc-color-grey-light)}
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700";:root,:host{--qc-font-family-roboto:Roboto,sans-serif;--qc-font-family-open-sans:Open Sans,sans-serif;--qc-font-family-roboto-mono:Roboto Mono,monospace;--qc-font-family-content:var(--qc-font-family-open-sans);--qc-font-family-header:var(--qc-font-family-roboto);--qc-font-family-code:var(--qc-font-family-roboto-mono);--qc-font-size-root-percent:62.5%;--qc-font-size-h6:1.6rem;--qc-font-size-h5:1.9rem;--qc-font-size-h4:2.1rem;--qc-font-size-h3:2.8rem;--qc-font-size-h2:3.6rem;--qc-font-size-h1:4.8rem;--qc-font-size-90:1.4rem;--qc-font-size-100:1.6rem;--qc-font-size-120:1.8rem;--qc-font-size-200:2.2rem;--qc-font-size-sm:var(--qc-font-size-90);--qc-font-size-md:var(--qc-font-size-100);--qc-font-size-lg:var(--qc-font-size-120);--qc-font-size-xl:var(--qc-font-size-200);--qc-font-size-content:var(--qc-font-size-md);--qc-font-weight-regular:400;--qc-font-weight-medium:500;--qc-font-weight-semi-bold:600;--qc-font-weight-bold:700;--qc-font-weight-header-regular:var(--qc-font-weight-regular);--qc-font-weight-header-medium:var(--qc-font-weight-medium);--qc-font-weight-header-bold:var(--qc-font-weight-bold);--qc-font-weight-content-regular:var(--qc-font-weight-regular);--qc-font-weight-content-medium:var(--qc-font-weight-semi-bold);--qc-font-weight-content-bold:var(--qc-font-weight-bold);--qc-line-height-h6:2rem;--qc-line-height-h5:2.4rem;--qc-line-height-h4:2.4rem;--qc-line-height-h3:3.2rem;--qc-line-height-h2:4rem;--qc-line-height-h1:5.6rem;--qc-line-height-90:2rem;--qc-line-height-100:2.4rem;--qc-line-height-120:2.8rem;--qc-line-height-200:3.2rem;--qc-line-height-sm:var(--qc-line-height-90);--qc-line-height-md:var(--qc-line-height-100);--qc-line-height-lg:var(--qc-line-height-120);--qc-line-height-xl:var(--qc-line-height-200);--qc-line-height-content:var(--qc-line-height-md);--qc-max-content-width:82.5rem;--qc-color-white:#fff;--qc-color-blue-pale:#dae6f0;--qc-color-blue-light:#4a98d9;--qc-color-blue-regular:#1472bf;--qc-color-blue-piv:#095797;--qc-color-blue-medium:#19406c;--qc-color-blue-dark:#223654;--qc-color-purple:#6b4fa1;--qc-color-grey-pale:#f1f1f2;--qc-color-grey-light:#c5cad2;--qc-color-grey-regular:#8893a2;--qc-color-grey-medium:#6b778a;--qc-color-grey-dark:#4e5662;--qc-color-pink-pale:#ffdbd6;--qc-color-pink-regular:#e58271;--qc-color-red-regular:#cb381f;--qc-color-red-dark:#692519;--qc-color-green-pale:#d7f0bb;--qc-color-green-regular:#4f813d;--qc-color-green-dark:#2c4024;--qc-color-yellow-pale:#f8e69a;--qc-color-yellow-regular:#e0ad03;--qc-color-yellow-dark:#ad781c;--qc-color-text-primary:var(--qc-color-blue-dark);--qc-color-accent:var(--qc-color-pink-regular);--qc-color-success:var(--qc-color-green-regular);--qc-color-error:var(--qc-color-red-regular);--qc-color-danger:var(--qc-color-red-dark);--qc-color-link-text:var(--qc-color-blue-piv);--qc-color-link-hover:var(--qc-color-blue-piv);--qc-color-link-visited:var(--qc-color-purple);--qc-color-link-active:var(--qc-color-red-regular);--qc-box-shadow-color:rgba(34,54,84,.24);--qc-box-shadow-blur-0:0;--qc-box-shadow-blur-1:4px;--qc-box-shadow-blur-2:8px;--qc-box-shadow-blur-3:16px;--qc-box-shadow-blur-4:24px;--qc-box-shadow-offset-0:0;--qc-box-shadow-offset-1:1px;--qc-box-shadow-offset-2:2px;--qc-box-shadow-offset-3:4px;--qc-box-shadow-offset-4:6px;--qc-spacer-xs:.8rem;--qc-spacer-sm:1.6rem;--qc-spacer-md:2.4rem;--qc-spacer-lg:4.8rem;--qc-spacer-xl:9.6rem;--qc-spacer-section:var(--qc-spacer-xl);--qc-spacer-h1-mt:7.2rem;--qc-spacer-h1-mb:3.2rem;--qc-spacer-h2-mt:7.2rem;--qc-spacer-h2-mb:var(--qc-spacer-sm);--qc-spacer-h3-mt:var(--qc-spacer-lg);--qc-spacer-h3-mb:var(--qc-spacer-xs);--qc-spacer-h4-mt:var(--qc-spacer-lg);--qc-spacer-h4-mb:var(--qc-spacer-xs);--qc-spacer-h5-mt:var(--qc-spacer-md);--qc-spacer-h5-mb:0;--qc-spacer-h6-mt:var(--qc-spacer-md);--qc-spacer-h6-mb:0;--qc-spacer-content-block-mb:var(--qc-spacer-md);--qc-spacer-list-pl:var(--qc-spacer-sm);--qc-spacer-list-mb:var(--qc-spacer-content-block-mb);--qc-spacer-list-embedded-mb:var(--qc-spacer-sm);--qc-spacer-list-item-mb:var(--qc-spacer-sm);--qc-spacer-notice-my:var(--qc-spacer-md);--qc-spacer-notice-mx:3.2rem;--qc-grid-gutter:32px;--qc-grid-breakpoint-xs:0;--qc-grid-breakpoint-sm:576px;--qc-grid-breakpoint-md:768px;--qc-grid-breakpoint-lg:992px;--qc-grid-breakpoint-xl:1200px;--qc-grid-container-max-width-sm:576px;--qc-grid-container-max-width-md:768px;--qc-grid-container-max-width-lg:992px;--qc-grid-container-max-width-xl:1200px}@media(max-width: 1199.98px){:root,:host{--qc-grid-gutter:24px}}@media(max-width: 991.98px){:root,:host{--qc-font-size-h3:2.5rem;--qc-font-size-h2:2.8rem;--qc-font-size-h1:3.6rem;--qc-line-height-h2:3.2rem;--qc-line-height-h1:4rem;--qc-spacer-h2-mt:4.8rem;--qc-spacer-h2-mb:.8rem}}@media(max-width: 767.98px){:root,:host{--qc-grid-gutter:16px}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root{font-size:var(--qc-font-size-root-percent)}body{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);background-color:var(--qc-color-white);color:var(--qc-color-text-primary)}h1,.qc-h1{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h1);line-height:var(--qc-line-height-h1);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h1-mt);margin-bottom:var(--qc-spacer-h1-mb)}h2,.qc-h2{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h2);line-height:var(--qc-line-height-h2);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h2-mt);margin-bottom:var(--qc-spacer-h2-mb)}h3,.qc-h3{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h3);line-height:var(--qc-line-height-h3);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h3-mt);margin-bottom:var(--qc-spacer-h3-mb)}h4,.qc-h4{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h4);line-height:var(--qc-line-height-h4);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h4-mt);margin-bottom:var(--qc-spacer-h4-mb)}h5,.qc-h5{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h5);line-height:var(--qc-line-height-h5);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h5-mt);margin-bottom:var(--qc-spacer-h5-mb)}h6,.qc-h6{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h6);line-height:var(--qc-line-height-h6);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h6-mt);margin-bottom:var(--qc-spacer-h6-mb)}h1 .qc-subhead,.qc-h1 .qc-subhead{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);color:var(--qc-color-grey-medium);display:block;margin:0}h1:after,.qc-h1:after{content:"";display:block;margin:0;width:4.8rem;padding-top:.8rem;border-bottom:4px solid var(--qc-color-accent)}p{margin-top:0;margin-bottom:var(--qc-spacer-md);max-inline-size:var(--qc-max-content-width)}img{border:none;vertical-align:middle}a{color:var(--qc-color-link-text)}a:visited{color:var(--qc-color-link-visited)}a:hover,a:focus{color:var(--qc-color-link-hover);text-decoration:none}a:active{color:var(--qc-color-link-active)}a .qc-external-link-tail{white-space:nowrap}a .qc-external-link-tail img{max-height:1.1rem;max-width:1.1rem;margin-bottom:.16rem;display:inline-block;content:url(../img/external-link.svg?v=1.2.5)}code,.qc-code{font-family:var(--qc-font-family-code)}.qc-bg-color-white{background-color:#fff}.qc-bg-color-blue-pale{background-color:#dae6f0}.qc-bg-color-blue-light{background-color:#4a98d9}.qc-bg-color-blue-regular{background-color:#1472bf}.qc-bg-color-blue-piv{background-color:#095797}.qc-bg-color-blue-medium{background-color:#19406c}.qc-bg-color-blue-dark{background-color:#223654}.qc-bg-color-purple{background-color:#6b4fa1}.qc-bg-color-grey-pale{background-color:#f1f1f2}.qc-bg-color-grey-light{background-color:#c5cad2}.qc-bg-color-grey-regular{background-color:#8893a2}.qc-bg-color-grey-medium{background-color:#6b778a}.qc-bg-color-grey-dark{background-color:#4e5662}.qc-bg-color-pink-pale{background-color:#ffdbd6}.qc-bg-color-pink-regular{background-color:#e58271}.qc-bg-color-red-regular{background-color:#cb381f}.qc-bg-color-red-dark{background-color:#692519}.qc-bg-color-green-pale{background-color:#d7f0bb}.qc-bg-color-green-regular{background-color:#4f813d}.qc-bg-color-green-dark{background-color:#2c4024}.qc-bg-color-yellow-pale{background-color:#f8e69a}.qc-bg-color-yellow-regular{background-color:#e0ad03}.qc-bg-color-yellow-dark{background-color:#ad781c}.qc-bg-color-text-primary{background-color:var(--qc-color-blue-dark)}.qc-bg-color-accent{background-color:var(--qc-color-pink-regular)}.qc-bg-color-success{background-color:var(--qc-color-green-regular)}.qc-bg-color-error{background-color:var(--qc-color-red-regular)}.qc-bg-color-danger{background-color:var(--qc-color-red-dark)}.qc-bg-color-link-text{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-hover{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-visited{background-color:var(--qc-color-purple)}.qc-bg-color-link-active{background-color:var(--qc-color-red-regular)}figure{display:inline-block;flex-direction:column}figure img{max-width:100%;height:auto}figcaption{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);background-color:var(--qc-color-grey-pale);padding:.8rem;margin-top:.8rem}figcaption p{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}figcaption p:last-child{margin-bottom:0}ul{max-inline-size:var(--qc-max-content-width);list-style:disc;margin-top:0;margin-bottom:var(--qc-spacer-list-mb);padding-left:var(--qc-spacer-list-pl)}ul li{margin-bottom:var(--qc-spacer-list-item-mb)}ul ul{margin-top:var(--qc-spacer-list-item-mb);margin-bottom:var(--qc-spacer-list-embedded-mb);list-style:circle}.qc-shading-0{box-shadow:0 0 0 var(--qc-color-grey-light)}.qc-shading-1,.qc-to-top{box-shadow:0 1px 4px var(--qc-color-grey-light)}.qc-shading-2,.qc-to-top:focus{box-shadow:0 2px 8px var(--qc-color-grey-light)}.qc-shading-3{box-shadow:0 4px 16px var(--qc-color-grey-light)}.qc-shading-4{box-shadow:0 6px 24px var(--qc-color-grey-light)}.qc-d-none{display:none !important}.qc-d-inline{display:inline !important}.qc-d-inline-block{display:inline-block !important}.qc-d-block{display:block !important}.qc-d-table{display:table !important}.qc-d-table-row{display:table-row !important}.qc-d-table-cell{display:table-cell !important}.qc-d-flex{display:flex !important}.qc-d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.qc-d-sm-none{display:none !important}.qc-d-sm-inline{display:inline !important}.qc-d-sm-inline-block{display:inline-block !important}.qc-d-sm-block{display:block !important}.qc-d-sm-table{display:table !important}.qc-d-sm-table-row{display:table-row !important}.qc-d-sm-table-cell{display:table-cell !important}.qc-d-sm-flex{display:flex !important}.qc-d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.qc-d-md-none{display:none !important}.qc-d-md-inline{display:inline !important}.qc-d-md-inline-block{display:inline-block !important}.qc-d-md-block{display:block !important}.qc-d-md-table{display:table !important}.qc-d-md-table-row{display:table-row !important}.qc-d-md-table-cell{display:table-cell !important}.qc-d-md-flex{display:flex !important}.qc-d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.qc-d-lg-none{display:none !important}.qc-d-lg-inline{display:inline !important}.qc-d-lg-inline-block{display:inline-block !important}.qc-d-lg-block{display:block !important}.qc-d-lg-table{display:table !important}.qc-d-lg-table-row{display:table-row !important}.qc-d-lg-table-cell{display:table-cell !important}.qc-d-lg-flex{display:flex !important}.qc-d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.qc-d-xl-none{display:none !important}.qc-d-xl-inline{display:inline !important}.qc-d-xl-inline-block{display:inline-block !important}.qc-d-xl-block{display:block !important}.qc-d-xl-table{display:table !important}.qc-d-xl-table-row{display:table-row !important}.qc-d-xl-table-cell{display:table-cell !important}.qc-d-xl-flex{display:flex !important}.qc-d-xl-inline-flex{display:inline-flex !important}}@media print{.qc-d-print-none{display:none !important}.qc-d-print-inline{display:inline !important}.qc-d-print-inline-block{display:inline-block !important}.qc-d-print-block{display:block !important}.qc-d-print-table{display:table !important}.qc-d-print-table-row{display:table-row !important}.qc-d-print-table-cell{display:table-cell !important}.qc-d-print-flex{display:flex !important}.qc-d-print-inline-flex{display:inline-flex !important}}.qc-icon{display:inline-block;content:"";background-repeat:no-repeat;background-position:center;background-size:100% auto;min-width:32px;height:32px}.qc-icon.qc-icon-sm{min-width:12px;height:12px}.qc-icon.qc-icon-md{min-width:20px;height:20px}.qc-icon.qc-icon-lg{min-width:40px;height:40px}.qc-icon.qc-external-link{background-image:url(../img/qc-sprite.svg?v=1.2.5#external-link)}.qc-icon.qc-warning{background-image:url(../img/qc-sprite.svg?v=1.2.5#warning)}.qc-icon.qc-arrow-up-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#arrow-up-white)}.qc-icon.qc-clipboard{background-image:url(../img/qc-sprite.svg?v=1.2.5#clipboard)}.qc-icon.qc-error{background-image:url(../img/qc-sprite.svg?v=1.2.5#error)}.qc-icon.qc-error-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#error-white)}.qc-icon.qc-information{background-image:url(../img/qc-sprite.svg?v=1.2.5#information)}.qc-icon.qc-information-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#information-white)}.qc-icon.qc-minus{background-image:url(../img/qc-sprite.svg?v=1.2.5#minus)}.qc-icon.qc-plus{background-image:url(../img/qc-sprite.svg?v=1.2.5#plus)}.qc-icon.qc-question-mark{background-image:url(../img/qc-sprite.svg?v=1.2.5#question-mark)}.qc-icon.qc-success{background-image:url(../img/qc-sprite.svg?v=1.2.5#success)}.qc-icon.qc-success-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#success-white)}.qc-icon.qc-xclose-white{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.5#xclose-white)}.qc-icon.qc-xclose-blue{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.5#xclose-blue)}.qc-icon.qc-chevron-blue,.qc-icon.qc-chevron-white{width:16px;min-width:16px;height:10px}.qc-icon.qc-chevron-blue{background-image:url(../img/qc-sprite.svg?v=1.2.5#chevron-blue)}.qc-icon.qc-chevron-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#chevron-white)}.qc-icon.qc-facebook{background-image:url(../img/qc-sprite.svg?v=1.2.5#facebook)}.qc-icon.qc-linkedin{background-image:url(../img/qc-sprite.svg?v=1.2.5#linkedin);height:30px}.qc-icon.qc-twitter{background-image:url(../img/qc-sprite.svg?v=1.2.5#twitter)}.qc-icon.qc-youtube{background-image:url(../img/qc-sprite.svg?v=1.2.5#youtube)}.qc-icon.qc-warning-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.5#warning)}.qc-icon.qc-general-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.5#information)}.qc-icon.qc-search{background-image:url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-droite)}.qc-icon.qc-search-submit{background-image:url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-fonce)}.qc-notice{max-inline-size:var(--qc-max-content-width);display:flex;border:1px solid var(--qc-color-grey-light);background-color:var(--qc-color-white);word-break:break-word;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);margin-bottom:3.2rem}.qc-notice .icon-container{display:flex;padding:var(--qc-spacer-md) var(--qc-spacer-xs);background-color:var(--qc-color-blue-pale)}.qc-notice .icon-container .qc-icon{background-size:100% auto;min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-notice .content-container{width:100%}.qc-notice.qc-information .icon-container{background-color:var(--qc-color-blue-pale)}.qc-notice.qc-warning .icon-container{background-color:var(--qc-color-yellow-pale)}.qc-notice.qc-success .icon-container{background-color:var(--qc-color-green-pale)}.qc-notice.qc-error .icon-container{background-color:var(--qc-color-pink-pale)}.qc-notice .title{margin:0;padding:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-bold);font-family:var(--qc-font-family-content)}.qc-notice .content{margin:var(--qc-spacer-notice-my) var(--qc-spacer-notice-mx) var(--qc-spacer-notice-my) var(--qc-spacer-sm)}.qc-notice .content .text ::slotted(ul){padding-left:var(--qc-spacer-sm) !important;margin-top:var(--qc-spacer-sm) !important}qc-notice[type=error] ul li a{color:var(--qc-color-red-regular)}qc-notice[type=error] ul li a:hover,qc-notice[type=error] ul li a:focus{text-decoration:none}@media(max-width: 575.98px){.qc-notice .content{margin-right:var(--qc-spacer-notice-my)}}qc-piv-header{display:block;min-height:7.2rem;background-color:var(--qc-color-blue-piv);width:100%}.qc-piv-header{color:var(--qc-color-white)}.qc-piv-header a{color:var(--qc-color-white);text-decoration:none}.qc-piv-header a:hover,.qc-piv-header a:focus{color:var(--qc-color-white);text-decoration:underline}.qc-piv-header .piv-top{display:flex;justify-content:space-between;align-items:center}.qc-piv-header .piv-top .logo{margin-right:6.4rem}@media(max-width: 575.98px){.qc-piv-header .piv-top .logo{margin:0}}.qc-piv-header .piv-top .logo a{display:block}.qc-piv-header .piv-top .logo img{height:7.2rem;min-width:20rem}.qc-piv-header .piv-top .title{width:100%;padding:var(--qc-spacer-sm) 0;min-height:7.2rem;align-items:center;display:flex;margin-right:4rem}.qc-piv-header .piv-top .title a{font-size:var(--qc-font-size-100);line-height:var(--qc-line-height-100);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-header)}.qc-piv-header .piv-top .title a:hover,.qc-piv-header .piv-top .title a:focus{text-decoration:underline}.qc-piv-header .piv-top .title a .description{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content;display:flex;align-items:center}@media(max-width: 575.98px){.qc-piv-header .piv-top .right-section{min-width:auto}}.qc-piv-header .piv-top .qc-search{min-width:2.4rem;height:2.4rem}.qc-piv-header .piv-top .qc-search span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.qc-piv-header .piv-bottom .title{display:none}.qc-piv-header .piv-bottom .search-zone{padding-bottom:var(--qc-spacer-md)}.qc-piv-header .piv-bottom .search-zone form .input-group{width:100%;display:flex;justify-content:space-between;align-items:stretch}.qc-piv-header .piv-bottom .search-zone form .input-group input{width:100%;padding:.6rem 1.2rem;border:1px solid var(--qc-color-blue-dark);border-right:none}.qc-piv-header .piv-bottom .search-zone form .input-group input:focus{outline:.2rem solid var(--qc-color-blue-light);border-right:1px solid #000;z-index:1}.qc-piv-header .piv-bottom .search-zone form .input-group input::-moz-placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group input::placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group button{display:flex;justify-content:center;border:1px solid var(--qc-color-blue-dark);border-left:none;background-color:#fff;width:4.16rem}.qc-piv-header .piv-bottom .search-zone form .input-group button:focus{outline:.2rem solid var(--qc-color-blue-light);border-left:1px solid #000}.qc-piv-header .piv-bottom .search-zone form .input-group button .qc-search-submit{min-width:2.4rem;height:2.4rem;align-self:center}.qc-piv-header .piv-bottom .search-zone form .input-group button .sr-description{position:absolute;width:1px;height:1px;clip:rect(0 0 0 0)}qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{list-style:none;padding:0;margin:0;height:100%;margin-left:var(--qc-spacer-md)}@media(max-width: 575.98px){qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{margin-left:var(--qc-spacer-sm)}}qc-piv-header [slot=links] li,.qc-piv-header .piv-top .right-section .links ul li{padding:0;margin:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a,.qc-piv-header .piv-top .right-section .links ul a{font-family:var(--qc-font-family-header);text-decoration:none;font-size:1.2rem;color:var(--qc-color-white);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a:focus,.qc-piv-header .piv-top .right-section .links ul a:focus,qc-piv-header [slot=links] a:hover,.qc-piv-header .piv-top .right-section .links ul a:hover{text-decoration:underline;color:var(--qc-color-white)}.go-to-content{display:flex;height:0}.go-to-content a{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.go-to-content a:focus{width:inherit;height:inherit;overflow:inherit;clip:inherit;white-space:inherit;color:var(--qc-color-white);background-color:var(--qc-color-blue-piv)}@media(max-width: 767.98px){.qc-piv-header .piv-top .logo img{min-width:17.5rem;width:17.5rem}.qc-piv-header .piv-top .title{display:none}.qc-piv-header .piv-top .right-section{min-width:13rem}.qc-piv-header .piv-bottom .title{margin:0;display:flex;padding-bottom:var(--qc-spacer-sm)}}@media(max-width: 575.98px){.qc-piv-header .piv-top{height:7.2rem}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content}}qc-piv-footer{display:block;margin-top:4rem;padding-bottom:3.2rem;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-footer a{text-decoration:none}qc-piv-footer a:hover{text-decoration:underline}qc-piv-footer ul{margin:0 0 var(--qc-spacer-sm) 0;padding:0;width:100%;display:flex;list-style-type:none;justify-content:center;flex-wrap:wrap}qc-piv-footer ul li{padding:0 var(--qc-spacer-sm) var(--qc-spacer-xs);margin:0;text-align:center}qc-piv-footer ul li:hover{text-decoration:underline}.qc-piv-footer a{text-decoration:none}.qc-piv-footer a:hover{text-decoration:underline}.qc-piv-footer .qc-container{display:flex;flex-direction:column;align-items:center}.qc-general-alert{max-inline-size:var(--qc-max-content-width);padding:var(--qc-spacer-md) var(--qc-spacer-sm)}@media(max-width: 575.98px){.qc-general-alert{padding:var(--qc-spacer-sm)}}.qc-general-alert .qc-general-alert-elements{display:flex;padding:0}.qc-general-alert.warning{background-color:var(--qc-color-yellow-pale)}.qc-general-alert.general{background-color:var(--qc-color-blue-pale)}.qc-general-alert .qc-icon{min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-semi-bold);margin:0 var(--qc-spacer-md);width:100%}@media(max-width: 575.98px){.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-semi-bold)}}.qc-general-alert .qc-alert-close{display:flex;align-items:center}@media(max-width: 575.98px){.qc-general-alert .qc-alert-close{align-items:inherit}}.qc-general-alert .qc-close{padding:0;background-color:rgba(0,0,0,0);border:0;display:inline-flex;justify-content:center}.qc-general-alert .qc-close .qc-close-alert-icon{display:inline-block;min-width:var(--qc-spacer-sm);height:var(--qc-spacer-sm);vertical-align:middle;cursor:pointer}qc-alert [slot] *,qc-alert:not([slot=content]) *{margin-bottom:0}qc-alert [slot] a,qc-alert:not([slot=content]) a{color:var(--qc-color-blue-dark)}.qc-to-top{display:flex;z-index:99;cursor:pointer;width:4rem;height:4rem;background-color:var(--qc-color-blue-piv);align-items:center;justify-content:center;transition:opacity .4s linear;opacity:0;background-size:1.6rem 2rem}.qc-to-top[demo=false]{position:fixed;bottom:9.6rem;right:3.2rem}.qc-to-top[style*=block]{display:flex !important}.qc-to-top:hover{background-color:var(--qc-color-blue-regular)}.qc-to-top:focus{background-color:var(--qc-color-blue-regular);outline:2px solid var(--qc-color-blue-light);border:2px solid var(--qc-color-blue-dark)}.qc-to-top:active{background-color:var(--qc-color-blue-light)}.qc-to-top.visible{opacity:1;visibility:visible}.qc-to-top span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}hr{margin:var(--qc-spacer-lg) 0;border:0;border-bottom:1px solid var(--qc-color-grey-light)}
|
package/dist/css/qc-sdg.min.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700";:root,:host{--qc-font-family-roboto:Roboto,sans-serif;--qc-font-family-open-sans:Open Sans,sans-serif;--qc-font-family-roboto-mono:Roboto Mono,monospace;--qc-font-family-content:var(--qc-font-family-open-sans);--qc-font-family-header:var(--qc-font-family-roboto);--qc-font-family-code:var(--qc-font-family-roboto-mono);--qc-font-size-root-percent:62.5%;--qc-font-size-h6:1.6rem;--qc-font-size-h5:1.9rem;--qc-font-size-h4:2.1rem;--qc-font-size-h3:2.8rem;--qc-font-size-h2:3.6rem;--qc-font-size-h1:4.8rem;--qc-font-size-90:1.4rem;--qc-font-size-100:1.6rem;--qc-font-size-120:1.8rem;--qc-font-size-200:2.2rem;--qc-font-size-sm:var(--qc-font-size-90);--qc-font-size-md:var(--qc-font-size-100);--qc-font-size-lg:var(--qc-font-size-120);--qc-font-size-xl:var(--qc-font-size-200);--qc-font-size-content:var(--qc-font-size-md);--qc-font-weight-regular:400;--qc-font-weight-medium:500;--qc-font-weight-semi-bold:600;--qc-font-weight-bold:700;--qc-font-weight-header-regular:var(--qc-font-weight-regular);--qc-font-weight-header-medium:var(--qc-font-weight-medium);--qc-font-weight-header-bold:var(--qc-font-weight-bold);--qc-font-weight-content-regular:var(--qc-font-weight-regular);--qc-font-weight-content-medium:var(--qc-font-weight-semi-bold);--qc-font-weight-content-bold:var(--qc-font-weight-bold);--qc-line-height-h6:2rem;--qc-line-height-h5:2.4rem;--qc-line-height-h4:2.4rem;--qc-line-height-h3:3.2rem;--qc-line-height-h2:4rem;--qc-line-height-h1:5.6rem;--qc-line-height-90:2rem;--qc-line-height-100:2.4rem;--qc-line-height-120:2.8rem;--qc-line-height-200:3.2rem;--qc-line-height-sm:var(--qc-line-height-90);--qc-line-height-md:var(--qc-line-height-100);--qc-line-height-lg:var(--qc-line-height-120);--qc-line-height-xl:var(--qc-line-height-200);--qc-line-height-content:var(--qc-line-height-md);--qc-max-content-width:82.5rem;--qc-color-white:#fff;--qc-color-blue-pale:#dae6f0;--qc-color-blue-light:#4a98d9;--qc-color-blue-regular:#1472bf;--qc-color-blue-piv:#095797;--qc-color-blue-medium:#19406c;--qc-color-blue-dark:#223654;--qc-color-purple:#6b4fa1;--qc-color-grey-pale:#f1f1f2;--qc-color-grey-light:#c5cad2;--qc-color-grey-regular:#8893a2;--qc-color-grey-medium:#6b778a;--qc-color-grey-dark:#4e5662;--qc-color-pink-pale:#ffdbd6;--qc-color-pink-regular:#e58271;--qc-color-red-regular:#cb381f;--qc-color-red-dark:#692519;--qc-color-green-pale:#d7f0bb;--qc-color-green-regular:#4f813d;--qc-color-green-dark:#2c4024;--qc-color-yellow-pale:#f8e69a;--qc-color-yellow-regular:#e0ad03;--qc-color-yellow-dark:#ad781c;--qc-color-text-primary:var(--qc-color-blue-dark);--qc-color-accent:var(--qc-color-pink-regular);--qc-color-success:var(--qc-color-green-regular);--qc-color-error:var(--qc-color-red-regular);--qc-color-danger:var(--qc-color-red-dark);--qc-color-link-text:var(--qc-color-blue-piv);--qc-color-link-hover:var(--qc-color-blue-piv);--qc-color-link-visited:var(--qc-color-purple);--qc-color-link-active:var(--qc-color-red-regular);--qc-box-shadow-color:rgba(34,54,84,.24);--qc-box-shadow-blur-0:0;--qc-box-shadow-blur-1:4px;--qc-box-shadow-blur-2:8px;--qc-box-shadow-blur-3:16px;--qc-box-shadow-blur-4:24px;--qc-box-shadow-offset-0:0;--qc-box-shadow-offset-1:1px;--qc-box-shadow-offset-2:2px;--qc-box-shadow-offset-3:4px;--qc-box-shadow-offset-4:6px;--qc-spacer-xs:.8rem;--qc-spacer-sm:1.6rem;--qc-spacer-md:2.4rem;--qc-spacer-lg:4.8rem;--qc-spacer-xl:9.6rem;--qc-spacer-section:var(--qc-spacer-xl);--qc-spacer-h1-mt:7.2rem;--qc-spacer-h1-mb:3.2rem;--qc-spacer-h2-mt:7.2rem;--qc-spacer-h2-mb:var(--qc-spacer-sm);--qc-spacer-h3-mt:var(--qc-spacer-lg);--qc-spacer-h3-mb:var(--qc-spacer-xs);--qc-spacer-h4-mt:var(--qc-spacer-lg);--qc-spacer-h4-mb:var(--qc-spacer-xs);--qc-spacer-h5-mt:var(--qc-spacer-md);--qc-spacer-h5-mb:0;--qc-spacer-h6-mt:var(--qc-spacer-md);--qc-spacer-h6-mb:0;--qc-spacer-content-block-mb:var(--qc-spacer-md);--qc-spacer-list-pl:var(--qc-spacer-sm);--qc-spacer-list-mb:var(--qc-spacer-content-block-mb);--qc-spacer-list-embedded-mb:var(--qc-spacer-sm);--qc-spacer-list-item-mb:var(--qc-spacer-sm);--qc-spacer-notice-my:var(--qc-spacer-md);--qc-spacer-notice-mx:3.2rem;--qc-grid-gutter:32px;--qc-grid-breakpoint-xs:0;--qc-grid-breakpoint-sm:576px;--qc-grid-breakpoint-md:768px;--qc-grid-breakpoint-lg:992px;--qc-grid-breakpoint-xl:1200px;--qc-grid-container-max-width-sm:576px;--qc-grid-container-max-width-md:768px;--qc-grid-container-max-width-lg:992px;--qc-grid-container-max-width-xl:1200px}@media(max-width: 1199.98px){:root,:host{--qc-grid-gutter:24px}}@media(max-width: 991.98px){:root,:host{--qc-font-size-h3:2.5rem;--qc-font-size-h2:2.8rem;--qc-font-size-h1:3.6rem;--qc-line-height-h2:3.2rem;--qc-line-height-h1:4rem;--qc-spacer-h2-mt:4.8rem;--qc-spacer-h2-mb:.8rem}}@media(max-width: 767.98px){:root,:host{--qc-grid-gutter:16px}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root{font-size:var(--qc-font-size-root-percent)}body{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);background-color:var(--qc-color-white);color:var(--qc-color-text-primary)}h1,.qc-h1{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h1);line-height:var(--qc-line-height-h1);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h1-mt);margin-bottom:var(--qc-spacer-h1-mb)}h2,.qc-h2{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h2);line-height:var(--qc-line-height-h2);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h2-mt);margin-bottom:var(--qc-spacer-h2-mb)}h3,.qc-h3{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h3);line-height:var(--qc-line-height-h3);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h3-mt);margin-bottom:var(--qc-spacer-h3-mb)}h4,.qc-h4{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h4);line-height:var(--qc-line-height-h4);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h4-mt);margin-bottom:var(--qc-spacer-h4-mb)}h5,.qc-h5{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h5);line-height:var(--qc-line-height-h5);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h5-mt);margin-bottom:var(--qc-spacer-h5-mb)}h6,.qc-h6{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h6);line-height:var(--qc-line-height-h6);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h6-mt);margin-bottom:var(--qc-spacer-h6-mb)}h1 .qc-subhead,.qc-h1 .qc-subhead{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);color:var(--qc-color-grey-medium);display:block;margin:0}h1:after,.qc-h1:after{content:"";display:block;margin:0;width:4.8rem;padding-top:.8rem;border-bottom:4px solid var(--qc-color-accent)}p{margin-top:0;margin-bottom:var(--qc-spacer-md);max-inline-size:var(--qc-max-content-width)}img{border:none;vertical-align:middle}a{color:var(--qc-color-link-text)}a:visited{color:var(--qc-color-link-visited)}a:hover,a:focus{color:var(--qc-color-link-hover);text-decoration:none}a:active{color:var(--qc-color-link-active)}a .qc-external-link-tail{white-space:nowrap}a .qc-external-link-tail img{max-height:1.1rem;max-width:1.1rem;margin-bottom:.16rem;display:inline-block;content:url(../img/external-link.svg?v=1.2.2)}code,.qc-code{font-family:var(--qc-font-family-code)}.qc-bg-color-white{background-color:#fff}.qc-bg-color-blue-pale{background-color:#dae6f0}.qc-bg-color-blue-light{background-color:#4a98d9}.qc-bg-color-blue-regular{background-color:#1472bf}.qc-bg-color-blue-piv{background-color:#095797}.qc-bg-color-blue-medium{background-color:#19406c}.qc-bg-color-blue-dark{background-color:#223654}.qc-bg-color-purple{background-color:#6b4fa1}.qc-bg-color-grey-pale{background-color:#f1f1f2}.qc-bg-color-grey-light{background-color:#c5cad2}.qc-bg-color-grey-regular{background-color:#8893a2}.qc-bg-color-grey-medium{background-color:#6b778a}.qc-bg-color-grey-dark{background-color:#4e5662}.qc-bg-color-pink-pale{background-color:#ffdbd6}.qc-bg-color-pink-regular{background-color:#e58271}.qc-bg-color-red-regular{background-color:#cb381f}.qc-bg-color-red-dark{background-color:#692519}.qc-bg-color-green-pale{background-color:#d7f0bb}.qc-bg-color-green-regular{background-color:#4f813d}.qc-bg-color-green-dark{background-color:#2c4024}.qc-bg-color-yellow-pale{background-color:#f8e69a}.qc-bg-color-yellow-regular{background-color:#e0ad03}.qc-bg-color-yellow-dark{background-color:#ad781c}.qc-bg-color-text-primary{background-color:var(--qc-color-blue-dark)}.qc-bg-color-accent{background-color:var(--qc-color-pink-regular)}.qc-bg-color-success{background-color:var(--qc-color-green-regular)}.qc-bg-color-error{background-color:var(--qc-color-red-regular)}.qc-bg-color-danger{background-color:var(--qc-color-red-dark)}.qc-bg-color-link-text{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-hover{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-visited{background-color:var(--qc-color-purple)}.qc-bg-color-link-active{background-color:var(--qc-color-red-regular)}figure{display:inline-block;flex-direction:column}figure img{max-width:100%;height:auto}figcaption{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);background-color:var(--qc-color-grey-pale);padding:.8rem;margin-top:.8rem}figcaption p{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}figcaption p:last-child{margin-bottom:0}ul{max-inline-size:var(--qc-max-content-width);list-style:disc;margin-top:0;margin-bottom:var(--qc-spacer-list-mb);padding-left:var(--qc-spacer-list-pl)}ul li{margin-bottom:var(--qc-spacer-list-item-mb)}ul ul{margin-top:var(--qc-spacer-list-item-mb);margin-bottom:var(--qc-spacer-list-embedded-mb);list-style:circle}.qc-shading-0{box-shadow:0 0 0 var(--qc-color-grey-light)}.qc-shading-1,.qc-to-top{box-shadow:0 1px 4px var(--qc-color-grey-light)}.qc-shading-2,.qc-to-top:focus{box-shadow:0 2px 8px var(--qc-color-grey-light)}.qc-shading-3{box-shadow:0 4px 16px var(--qc-color-grey-light)}.qc-shading-4{box-shadow:0 6px 24px var(--qc-color-grey-light)}.qc-d-none{display:none !important}.qc-d-inline{display:inline !important}.qc-d-inline-block{display:inline-block !important}.qc-d-block{display:block !important}.qc-d-table{display:table !important}.qc-d-table-row{display:table-row !important}.qc-d-table-cell{display:table-cell !important}.qc-d-flex{display:flex !important}.qc-d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.qc-d-sm-none{display:none !important}.qc-d-sm-inline{display:inline !important}.qc-d-sm-inline-block{display:inline-block !important}.qc-d-sm-block{display:block !important}.qc-d-sm-table{display:table !important}.qc-d-sm-table-row{display:table-row !important}.qc-d-sm-table-cell{display:table-cell !important}.qc-d-sm-flex{display:flex !important}.qc-d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.qc-d-md-none{display:none !important}.qc-d-md-inline{display:inline !important}.qc-d-md-inline-block{display:inline-block !important}.qc-d-md-block{display:block !important}.qc-d-md-table{display:table !important}.qc-d-md-table-row{display:table-row !important}.qc-d-md-table-cell{display:table-cell !important}.qc-d-md-flex{display:flex !important}.qc-d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.qc-d-lg-none{display:none !important}.qc-d-lg-inline{display:inline !important}.qc-d-lg-inline-block{display:inline-block !important}.qc-d-lg-block{display:block !important}.qc-d-lg-table{display:table !important}.qc-d-lg-table-row{display:table-row !important}.qc-d-lg-table-cell{display:table-cell !important}.qc-d-lg-flex{display:flex !important}.qc-d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.qc-d-xl-none{display:none !important}.qc-d-xl-inline{display:inline !important}.qc-d-xl-inline-block{display:inline-block !important}.qc-d-xl-block{display:block !important}.qc-d-xl-table{display:table !important}.qc-d-xl-table-row{display:table-row !important}.qc-d-xl-table-cell{display:table-cell !important}.qc-d-xl-flex{display:flex !important}.qc-d-xl-inline-flex{display:inline-flex !important}}@media print{.qc-d-print-none{display:none !important}.qc-d-print-inline{display:inline !important}.qc-d-print-inline-block{display:inline-block !important}.qc-d-print-block{display:block !important}.qc-d-print-table{display:table !important}.qc-d-print-table-row{display:table-row !important}.qc-d-print-table-cell{display:table-cell !important}.qc-d-print-flex{display:flex !important}.qc-d-print-inline-flex{display:inline-flex !important}}.qc-icon{display:inline-block;content:"";background-repeat:no-repeat;background-position:center;background-size:100% auto;min-width:32px;height:32px}.qc-icon.qc-icon-sm{min-width:12px;height:12px}.qc-icon.qc-icon-md{min-width:20px;height:20px}.qc-icon.qc-icon-lg{min-width:40px;height:40px}.qc-icon.qc-external-link{background-image:url(../img/qc-sprite.svg?v=1.2.2#external-link)}.qc-icon.qc-warning{background-image:url(../img/qc-sprite.svg?v=1.2.2#warning)}.qc-icon.qc-arrow-up-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#arrow-up-white)}.qc-icon.qc-clipboard{background-image:url(../img/qc-sprite.svg?v=1.2.2#clipboard)}.qc-icon.qc-error{background-image:url(../img/qc-sprite.svg?v=1.2.2#error)}.qc-icon.qc-error-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#error-white)}.qc-icon.qc-information{background-image:url(../img/qc-sprite.svg?v=1.2.2#information)}.qc-icon.qc-information-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#information-white)}.qc-icon.qc-minus{background-image:url(../img/qc-sprite.svg?v=1.2.2#minus)}.qc-icon.qc-plus{background-image:url(../img/qc-sprite.svg?v=1.2.2#plus)}.qc-icon.qc-question-mark{background-image:url(../img/qc-sprite.svg?v=1.2.2#question-mark)}.qc-icon.qc-success{background-image:url(../img/qc-sprite.svg?v=1.2.2#success)}.qc-icon.qc-success-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#success-white)}.qc-icon.qc-xclose-white{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.2#xclose-white)}.qc-icon.qc-xclose-blue{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.2#xclose-blue)}.qc-icon.qc-chevron-blue,.qc-icon.qc-chevron-white{width:16px;min-width:16px;height:10px}.qc-icon.qc-chevron-blue{background-image:url(../img/qc-sprite.svg?v=1.2.2#chevron-blue)}.qc-icon.qc-chevron-white{background-image:url(../img/qc-sprite.svg?v=1.2.2#chevron-white)}.qc-icon.qc-facebook{background-image:url(../img/qc-sprite.svg?v=1.2.2#facebook)}.qc-icon.qc-linkedin{background-image:url(../img/qc-sprite.svg?v=1.2.2#linkedin);height:30px}.qc-icon.qc-twitter{background-image:url(../img/qc-sprite.svg?v=1.2.2#twitter)}.qc-icon.qc-youtube{background-image:url(../img/qc-sprite.svg?v=1.2.2#youtube)}.qc-icon.qc-warning-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.2#warning)}.qc-icon.qc-general-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.2#information)}.qc-icon.qc-search{background-image:url(../img/qc-sprite.svg?v=1.2.2#loupe-piv-droite)}.qc-icon.qc-search-submit{background-image:url(../img/qc-sprite.svg?v=1.2.2#loupe-piv-fonce)}.qc-notice{max-inline-size:var(--qc-max-content-width);display:flex;border:1px solid var(--qc-color-grey-light);background-color:var(--qc-color-white);word-break:break-word;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);margin-bottom:3.2rem}.qc-notice .icon-container{display:flex;padding:var(--qc-spacer-md) var(--qc-spacer-xs);background-color:var(--qc-color-blue-pale)}.qc-notice .icon-container .qc-icon{background-size:100% auto;min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-notice .content-container{width:100%}.qc-notice.qc-information .icon-container{background-color:var(--qc-color-blue-pale)}.qc-notice.qc-warning .icon-container{background-color:var(--qc-color-yellow-pale)}.qc-notice.qc-success .icon-container{background-color:var(--qc-color-green-pale)}.qc-notice.qc-error .icon-container{background-color:var(--qc-color-pink-pale)}.qc-notice .title{margin:0;padding:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-bold);font-family:var(--qc-font-family-content)}.qc-notice .content{margin:var(--qc-spacer-notice-my) var(--qc-spacer-notice-mx) var(--qc-spacer-notice-my) var(--qc-spacer-sm)}.qc-notice .content .text ::slotted(ul){padding-left:var(--qc-spacer-sm) !important;margin-top:var(--qc-spacer-sm) !important}qc-notice[type=error] ul li a{color:var(--qc-color-red-regular)}qc-notice[type=error] ul li a:hover,qc-notice[type=error] ul li a:focus{text-decoration:none}@media(max-width: 575.98px){.qc-notice .content{margin-right:var(--qc-spacer-notice-my)}}qc-piv-header{display:block;min-height:7.2rem;background-color:var(--qc-color-blue-piv);width:100%}.qc-piv-header{color:var(--qc-color-white)}.qc-piv-header a{color:var(--qc-color-white);text-decoration:none}.qc-piv-header a:hover,.qc-piv-header a:focus{color:var(--qc-color-white);text-decoration:underline}.qc-piv-header .piv-top{display:flex;justify-content:space-between;align-items:center}.qc-piv-header .piv-top .logo{margin-right:6.4rem}@media(max-width: 575.98px){.qc-piv-header .piv-top .logo{margin:0}}.qc-piv-header .piv-top .logo a{display:block}.qc-piv-header .piv-top .logo img{height:7.2rem;min-width:20rem}.qc-piv-header .piv-top .title{width:100%;padding:var(--qc-spacer-sm) 0;min-height:7.2rem;align-items:center;display:flex;margin-right:4rem}.qc-piv-header .piv-top .title a{font-size:var(--qc-font-size-100);line-height:var(--qc-line-height-100);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-header)}.qc-piv-header .piv-top .title a:hover,.qc-piv-header .piv-top .title a:focus{text-decoration:underline}.qc-piv-header .piv-top .title a .description{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content;display:flex;align-items:center}@media(max-width: 575.98px){.qc-piv-header .piv-top .right-section{min-width:auto}}.qc-piv-header .piv-top .qc-search{min-width:2.4rem;height:2.4rem}.qc-piv-header .piv-top .qc-search span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.qc-piv-header .piv-bottom .title{display:none}.qc-piv-header .piv-bottom .search-zone{padding-bottom:var(--qc-spacer-md)}.qc-piv-header .piv-bottom .search-zone form .input-group{width:100%;display:flex;justify-content:space-between;align-items:stretch}.qc-piv-header .piv-bottom .search-zone form .input-group input{width:100%;padding:.6rem 1.2rem;border:1px solid var(--qc-color-blue-dark);border-right:none}.qc-piv-header .piv-bottom .search-zone form .input-group input:focus{outline:.2rem solid var(--qc-color-blue-light);border-right:1px solid #000;z-index:1}.qc-piv-header .piv-bottom .search-zone form .input-group input::-moz-placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group input::placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group button{display:flex;justify-content:center;border:1px solid var(--qc-color-blue-dark);border-left:none;background-color:#fff;width:4.16rem}.qc-piv-header .piv-bottom .search-zone form .input-group button:focus{outline:.2rem solid var(--qc-color-blue-light);border-left:1px solid #000}.qc-piv-header .piv-bottom .search-zone form .input-group button .qc-search-submit{min-width:2.4rem;height:2.4rem;align-self:center}.qc-piv-header .piv-bottom .search-zone form .input-group button .sr-description{position:absolute;width:1px;height:1px;clip:rect(0 0 0 0)}qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{list-style:none;padding:0;margin:0;height:100%;margin-left:var(--qc-spacer-md)}@media(max-width: 575.98px){qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{margin-left:var(--qc-spacer-sm)}}qc-piv-header [slot=links] li,.qc-piv-header .piv-top .right-section .links ul li{padding:0;margin:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a,.qc-piv-header .piv-top .right-section .links ul a{font-family:var(--qc-font-family-header);text-decoration:none;font-size:1.2rem;color:var(--qc-color-white);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a:focus,.qc-piv-header .piv-top .right-section .links ul a:focus,qc-piv-header [slot=links] a:hover,.qc-piv-header .piv-top .right-section .links ul a:hover{text-decoration:underline;color:var(--qc-color-white)}.go-to-content{display:flex;height:0}.go-to-content a{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.go-to-content a:focus{width:inherit;height:inherit;overflow:inherit;clip:inherit;white-space:inherit;color:var(--qc-color-white);background-color:var(--qc-color-blue-piv)}@media(max-width: 767.98px){.qc-piv-header .piv-top .logo img{min-width:17.5rem;width:17.5rem}.qc-piv-header .piv-top .title{display:none}.qc-piv-header .piv-top .right-section{min-width:13rem}.qc-piv-header .piv-bottom .title{margin:0;display:flex;padding-bottom:var(--qc-spacer-sm)}}@media(max-width: 575.98px){.qc-piv-header .piv-top{height:7.2rem}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content}}qc-piv-footer{display:block;margin-top:4rem;padding-bottom:3.2rem;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-footer a{text-decoration:none}qc-piv-footer a:hover{text-decoration:underline}qc-piv-footer ul{margin:0 0 var(--qc-spacer-sm) 0;padding:0;width:100%;display:flex;list-style-type:none;justify-content:center;flex-wrap:wrap}qc-piv-footer ul li{padding:0 var(--qc-spacer-sm) var(--qc-spacer-xs);margin:0;text-align:center}qc-piv-footer ul li:hover{text-decoration:underline}.qc-piv-footer a{text-decoration:none}.qc-piv-footer a:hover{text-decoration:underline}.qc-piv-footer .qc-container{display:flex;flex-direction:column;align-items:center}.qc-general-alert{max-inline-size:var(--qc-max-content-width);padding:var(--qc-spacer-md) var(--qc-spacer-sm)}@media(max-width: 575.98px){.qc-general-alert{padding:var(--qc-spacer-sm)}}.qc-general-alert .qc-general-alert-elements{display:flex;padding:0}.qc-general-alert.warning{background-color:var(--qc-color-yellow-pale)}.qc-general-alert.general{background-color:var(--qc-color-blue-pale)}.qc-general-alert .qc-icon{min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-semi-bold);margin:0 var(--qc-spacer-md);width:100%}@media(max-width: 575.98px){.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-semi-bold)}}.qc-general-alert .qc-alert-close{display:flex;align-items:center}@media(max-width: 575.98px){.qc-general-alert .qc-alert-close{align-items:inherit}}.qc-general-alert .qc-close{padding:0;background-color:rgba(0,0,0,0);border:0;display:inline-flex;justify-content:center}.qc-general-alert .qc-close .qc-close-alert-icon{display:inline-block;min-width:var(--qc-spacer-sm);height:var(--qc-spacer-sm);vertical-align:middle;cursor:pointer}qc-alert [slot] *,qc-alert:not([slot=content]) *{margin-bottom:0}qc-alert [slot] a,qc-alert:not([slot=content]) a{color:var(--qc-color-blue-dark)}.qc-to-top{display:flex;z-index:99;cursor:pointer;width:4rem;height:4rem;background-color:var(--qc-color-blue-piv);align-items:center;justify-content:center;transition:opacity .4s linear;opacity:0;background-size:1.6rem 2rem}.qc-to-top[demo=false]{position:fixed;bottom:9.6rem;right:3.2rem}.qc-to-top[style*=block]{display:flex !important}.qc-to-top:hover{background-color:var(--qc-color-blue-regular)}.qc-to-top:focus{background-color:var(--qc-color-blue-regular);outline:2px solid var(--qc-color-blue-light);border:2px solid var(--qc-color-blue-dark)}.qc-to-top:active{background-color:var(--qc-color-blue-light)}.qc-to-top.visible{opacity:1;visibility:visible}.qc-to-top span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}hr{margin:var(--qc-spacer-lg) 0;border:0;border-bottom:1px solid var(--qc-color-grey-light)}.qc-container,.qc-container-fluid,.qc-container-xl,.qc-container-lg,.qc-container-md,.qc-container-sm{width:100%;padding-right:calc(1*var(--qc-grid-gutter)/2);padding-left:calc(1*var(--qc-grid-gutter)/2);margin-right:auto;margin-left:auto}@media(min-width: 576px){.qc-container-sm,.qc-container{max-width:576px}}@media(min-width: 768px){.qc-container-md,.qc-container-sm,.qc-container{max-width:768px}}@media(min-width: 992px){.qc-container-lg,.qc-container-md,.qc-container-sm,.qc-container{max-width:992px}}@media(min-width: 1200px){.qc-container-xl,.qc-container-lg,.qc-container-md,.qc-container-sm,.qc-container{max-width:1200px}}.qc-row{display:flex;flex-wrap:wrap;margin-right:calc(-1*var(--qc-grid-gutter)/2);margin-left:calc(-1*var(--qc-grid-gutter)/2)}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.qc-col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.qc-col-xl,.qc-col-xl-auto,.qc-col-xl-12,.qc-col-xl-11,.qc-col-xl-10,.qc-col-xl-9,.qc-col-xl-8,.qc-col-xl-7,.qc-col-xl-6,.qc-col-xl-5,.qc-col-xl-4,.qc-col-xl-3,.qc-col-xl-2,.qc-col-xl-1,.qc-col-lg,.qc-col-lg-auto,.qc-col-lg-12,.qc-col-lg-11,.qc-col-lg-10,.qc-col-lg-9,.qc-col-lg-8,.qc-col-lg-7,.qc-col-lg-6,.qc-col-lg-5,.qc-col-lg-4,.qc-col-lg-3,.qc-col-lg-2,.qc-col-lg-1,.qc-col-md,.qc-col-md-auto,.qc-col-md-12,.qc-col-md-11,.qc-col-md-10,.qc-col-md-9,.qc-col-md-8,.qc-col-md-7,.qc-col-md-6,.qc-col-md-5,.qc-col-md-4,.qc-col-md-3,.qc-col-md-2,.qc-col-md-1,.qc-col-sm,.qc-col-sm-auto,.qc-col-sm-12,.qc-col-sm-11,.qc-col-sm-10,.qc-col-sm-9,.qc-col-sm-8,.qc-col-sm-7,.qc-col-sm-6,.qc-col-sm-5,.qc-col-sm-4,.qc-col-sm-3,.qc-col-sm-2,.qc-col-sm-1,.qc-col,.qc-col-auto,.qc-col-12,.qc-col-11,.qc-col-10,.qc-col-9,.qc-col-8,.qc-col-7,.qc-col-6,.qc-col-5,.qc-col-4,.qc-col-3,.qc-col-2,.qc-col-1{position:relative;width:100%;padding-right:calc(1*var(--qc-grid-gutter)/2);padding-left:calc(1*var(--qc-grid-gutter)/2)}.qc-col{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-3{flex:0 0 25%;max-width:25%}.qc-col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-6{flex:0 0 50%;max-width:50%}.qc-col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-9{flex:0 0 75%;max-width:75%}.qc-col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-12{flex:0 0 100%;max-width:100%}.qc-order-first{order:-1}.qc-order-last{order:13}.qc-order-0{order:0}.qc-order-1{order:1}.qc-order-2{order:2}.qc-order-3{order:3}.qc-order-4{order:4}.qc-order-5{order:5}.qc-order-6{order:6}.qc-order-7{order:7}.qc-order-8{order:8}.qc-order-9{order:9}.qc-order-10{order:10}.qc-order-11{order:11}.qc-order-12{order:12}.qc-offset-1{margin-left:8.33333333%}.qc-offset-2{margin-left:16.66666667%}.qc-offset-3{margin-left:25%}.qc-offset-4{margin-left:33.33333333%}.qc-offset-5{margin-left:41.66666667%}.qc-offset-6{margin-left:50%}.qc-offset-7{margin-left:58.33333333%}.qc-offset-8{margin-left:66.66666667%}.qc-offset-9{margin-left:75%}.qc-offset-10{margin-left:83.33333333%}.qc-offset-11{margin-left:91.66666667%}@media(min-width: 576px){.qc-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-sm-3{flex:0 0 25%;max-width:25%}.qc-col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-sm-6{flex:0 0 50%;max-width:50%}.qc-col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-sm-9{flex:0 0 75%;max-width:75%}.qc-col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-sm-12{flex:0 0 100%;max-width:100%}.qc-order-sm-first{order:-1}.qc-order-sm-last{order:13}.qc-order-sm-0{order:0}.qc-order-sm-1{order:1}.qc-order-sm-2{order:2}.qc-order-sm-3{order:3}.qc-order-sm-4{order:4}.qc-order-sm-5{order:5}.qc-order-sm-6{order:6}.qc-order-sm-7{order:7}.qc-order-sm-8{order:8}.qc-order-sm-9{order:9}.qc-order-sm-10{order:10}.qc-order-sm-11{order:11}.qc-order-sm-12{order:12}.qc-offset-sm-0{margin-left:0}.qc-offset-sm-1{margin-left:8.33333333%}.qc-offset-sm-2{margin-left:16.66666667%}.qc-offset-sm-3{margin-left:25%}.qc-offset-sm-4{margin-left:33.33333333%}.qc-offset-sm-5{margin-left:41.66666667%}.qc-offset-sm-6{margin-left:50%}.qc-offset-sm-7{margin-left:58.33333333%}.qc-offset-sm-8{margin-left:66.66666667%}.qc-offset-sm-9{margin-left:75%}.qc-offset-sm-10{margin-left:83.33333333%}.qc-offset-sm-11{margin-left:91.66666667%}}@media(min-width: 768px){.qc-col-md{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-md-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-md-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-md-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-md-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-md-3{flex:0 0 25%;max-width:25%}.qc-col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-md-6{flex:0 0 50%;max-width:50%}.qc-col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-md-9{flex:0 0 75%;max-width:75%}.qc-col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-md-12{flex:0 0 100%;max-width:100%}.qc-order-md-first{order:-1}.qc-order-md-last{order:13}.qc-order-md-0{order:0}.qc-order-md-1{order:1}.qc-order-md-2{order:2}.qc-order-md-3{order:3}.qc-order-md-4{order:4}.qc-order-md-5{order:5}.qc-order-md-6{order:6}.qc-order-md-7{order:7}.qc-order-md-8{order:8}.qc-order-md-9{order:9}.qc-order-md-10{order:10}.qc-order-md-11{order:11}.qc-order-md-12{order:12}.qc-offset-md-0{margin-left:0}.qc-offset-md-1{margin-left:8.33333333%}.qc-offset-md-2{margin-left:16.66666667%}.qc-offset-md-3{margin-left:25%}.qc-offset-md-4{margin-left:33.33333333%}.qc-offset-md-5{margin-left:41.66666667%}.qc-offset-md-6{margin-left:50%}.qc-offset-md-7{margin-left:58.33333333%}.qc-offset-md-8{margin-left:66.66666667%}.qc-offset-md-9{margin-left:75%}.qc-offset-md-10{margin-left:83.33333333%}.qc-offset-md-11{margin-left:91.66666667%}}@media(min-width: 992px){.qc-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-lg-3{flex:0 0 25%;max-width:25%}.qc-col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-lg-6{flex:0 0 50%;max-width:50%}.qc-col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-lg-9{flex:0 0 75%;max-width:75%}.qc-col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-lg-12{flex:0 0 100%;max-width:100%}.qc-order-lg-first{order:-1}.qc-order-lg-last{order:13}.qc-order-lg-0{order:0}.qc-order-lg-1{order:1}.qc-order-lg-2{order:2}.qc-order-lg-3{order:3}.qc-order-lg-4{order:4}.qc-order-lg-5{order:5}.qc-order-lg-6{order:6}.qc-order-lg-7{order:7}.qc-order-lg-8{order:8}.qc-order-lg-9{order:9}.qc-order-lg-10{order:10}.qc-order-lg-11{order:11}.qc-order-lg-12{order:12}.qc-offset-lg-0{margin-left:0}.qc-offset-lg-1{margin-left:8.33333333%}.qc-offset-lg-2{margin-left:16.66666667%}.qc-offset-lg-3{margin-left:25%}.qc-offset-lg-4{margin-left:33.33333333%}.qc-offset-lg-5{margin-left:41.66666667%}.qc-offset-lg-6{margin-left:50%}.qc-offset-lg-7{margin-left:58.33333333%}.qc-offset-lg-8{margin-left:66.66666667%}.qc-offset-lg-9{margin-left:75%}.qc-offset-lg-10{margin-left:83.33333333%}.qc-offset-lg-11{margin-left:91.66666667%}}@media(min-width: 1200px){.qc-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-xl-3{flex:0 0 25%;max-width:25%}.qc-col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-xl-6{flex:0 0 50%;max-width:50%}.qc-col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-xl-9{flex:0 0 75%;max-width:75%}.qc-col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-xl-12{flex:0 0 100%;max-width:100%}.qc-order-xl-first{order:-1}.qc-order-xl-last{order:13}.qc-order-xl-0{order:0}.qc-order-xl-1{order:1}.qc-order-xl-2{order:2}.qc-order-xl-3{order:3}.qc-order-xl-4{order:4}.qc-order-xl-5{order:5}.qc-order-xl-6{order:6}.qc-order-xl-7{order:7}.qc-order-xl-8{order:8}.qc-order-xl-9{order:9}.qc-order-xl-10{order:10}.qc-order-xl-11{order:11}.qc-order-xl-12{order:12}.qc-offset-xl-0{margin-left:0}.qc-offset-xl-1{margin-left:8.33333333%}.qc-offset-xl-2{margin-left:16.66666667%}.qc-offset-xl-3{margin-left:25%}.qc-offset-xl-4{margin-left:33.33333333%}.qc-offset-xl-5{margin-left:41.66666667%}.qc-offset-xl-6{margin-left:50%}.qc-offset-xl-7{margin-left:58.33333333%}.qc-offset-xl-8{margin-left:66.66666667%}.qc-offset-xl-9{margin-left:75%}.qc-offset-xl-10{margin-left:83.33333333%}.qc-offset-xl-11{margin-left:91.66666667%}}
|
|
1
|
+
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Open Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Roboto Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700";:root,:host{--qc-font-family-roboto:Roboto,sans-serif;--qc-font-family-open-sans:Open Sans,sans-serif;--qc-font-family-roboto-mono:Roboto Mono,monospace;--qc-font-family-content:var(--qc-font-family-open-sans);--qc-font-family-header:var(--qc-font-family-roboto);--qc-font-family-code:var(--qc-font-family-roboto-mono);--qc-font-size-root-percent:62.5%;--qc-font-size-h6:1.6rem;--qc-font-size-h5:1.9rem;--qc-font-size-h4:2.1rem;--qc-font-size-h3:2.8rem;--qc-font-size-h2:3.6rem;--qc-font-size-h1:4.8rem;--qc-font-size-90:1.4rem;--qc-font-size-100:1.6rem;--qc-font-size-120:1.8rem;--qc-font-size-200:2.2rem;--qc-font-size-sm:var(--qc-font-size-90);--qc-font-size-md:var(--qc-font-size-100);--qc-font-size-lg:var(--qc-font-size-120);--qc-font-size-xl:var(--qc-font-size-200);--qc-font-size-content:var(--qc-font-size-md);--qc-font-weight-regular:400;--qc-font-weight-medium:500;--qc-font-weight-semi-bold:600;--qc-font-weight-bold:700;--qc-font-weight-header-regular:var(--qc-font-weight-regular);--qc-font-weight-header-medium:var(--qc-font-weight-medium);--qc-font-weight-header-bold:var(--qc-font-weight-bold);--qc-font-weight-content-regular:var(--qc-font-weight-regular);--qc-font-weight-content-medium:var(--qc-font-weight-semi-bold);--qc-font-weight-content-bold:var(--qc-font-weight-bold);--qc-line-height-h6:2rem;--qc-line-height-h5:2.4rem;--qc-line-height-h4:2.4rem;--qc-line-height-h3:3.2rem;--qc-line-height-h2:4rem;--qc-line-height-h1:5.6rem;--qc-line-height-90:2rem;--qc-line-height-100:2.4rem;--qc-line-height-120:2.8rem;--qc-line-height-200:3.2rem;--qc-line-height-sm:var(--qc-line-height-90);--qc-line-height-md:var(--qc-line-height-100);--qc-line-height-lg:var(--qc-line-height-120);--qc-line-height-xl:var(--qc-line-height-200);--qc-line-height-content:var(--qc-line-height-md);--qc-max-content-width:82.5rem;--qc-color-white:#fff;--qc-color-blue-pale:#dae6f0;--qc-color-blue-light:#4a98d9;--qc-color-blue-regular:#1472bf;--qc-color-blue-piv:#095797;--qc-color-blue-medium:#19406c;--qc-color-blue-dark:#223654;--qc-color-purple:#6b4fa1;--qc-color-grey-pale:#f1f1f2;--qc-color-grey-light:#c5cad2;--qc-color-grey-regular:#8893a2;--qc-color-grey-medium:#6b778a;--qc-color-grey-dark:#4e5662;--qc-color-pink-pale:#ffdbd6;--qc-color-pink-regular:#e58271;--qc-color-red-regular:#cb381f;--qc-color-red-dark:#692519;--qc-color-green-pale:#d7f0bb;--qc-color-green-regular:#4f813d;--qc-color-green-dark:#2c4024;--qc-color-yellow-pale:#f8e69a;--qc-color-yellow-regular:#e0ad03;--qc-color-yellow-dark:#ad781c;--qc-color-text-primary:var(--qc-color-blue-dark);--qc-color-accent:var(--qc-color-pink-regular);--qc-color-success:var(--qc-color-green-regular);--qc-color-error:var(--qc-color-red-regular);--qc-color-danger:var(--qc-color-red-dark);--qc-color-link-text:var(--qc-color-blue-piv);--qc-color-link-hover:var(--qc-color-blue-piv);--qc-color-link-visited:var(--qc-color-purple);--qc-color-link-active:var(--qc-color-red-regular);--qc-box-shadow-color:rgba(34,54,84,.24);--qc-box-shadow-blur-0:0;--qc-box-shadow-blur-1:4px;--qc-box-shadow-blur-2:8px;--qc-box-shadow-blur-3:16px;--qc-box-shadow-blur-4:24px;--qc-box-shadow-offset-0:0;--qc-box-shadow-offset-1:1px;--qc-box-shadow-offset-2:2px;--qc-box-shadow-offset-3:4px;--qc-box-shadow-offset-4:6px;--qc-spacer-xs:.8rem;--qc-spacer-sm:1.6rem;--qc-spacer-md:2.4rem;--qc-spacer-lg:4.8rem;--qc-spacer-xl:9.6rem;--qc-spacer-section:var(--qc-spacer-xl);--qc-spacer-h1-mt:7.2rem;--qc-spacer-h1-mb:3.2rem;--qc-spacer-h2-mt:7.2rem;--qc-spacer-h2-mb:var(--qc-spacer-sm);--qc-spacer-h3-mt:var(--qc-spacer-lg);--qc-spacer-h3-mb:var(--qc-spacer-xs);--qc-spacer-h4-mt:var(--qc-spacer-lg);--qc-spacer-h4-mb:var(--qc-spacer-xs);--qc-spacer-h5-mt:var(--qc-spacer-md);--qc-spacer-h5-mb:0;--qc-spacer-h6-mt:var(--qc-spacer-md);--qc-spacer-h6-mb:0;--qc-spacer-content-block-mb:var(--qc-spacer-md);--qc-spacer-list-pl:var(--qc-spacer-sm);--qc-spacer-list-mb:var(--qc-spacer-content-block-mb);--qc-spacer-list-embedded-mb:var(--qc-spacer-sm);--qc-spacer-list-item-mb:var(--qc-spacer-sm);--qc-spacer-notice-my:var(--qc-spacer-md);--qc-spacer-notice-mx:3.2rem;--qc-grid-gutter:32px;--qc-grid-breakpoint-xs:0;--qc-grid-breakpoint-sm:576px;--qc-grid-breakpoint-md:768px;--qc-grid-breakpoint-lg:992px;--qc-grid-breakpoint-xl:1200px;--qc-grid-container-max-width-sm:576px;--qc-grid-container-max-width-md:768px;--qc-grid-container-max-width-lg:992px;--qc-grid-container-max-width-xl:1200px}@media(max-width: 1199.98px){:root,:host{--qc-grid-gutter:24px}}@media(max-width: 991.98px){:root,:host{--qc-font-size-h3:2.5rem;--qc-font-size-h2:2.8rem;--qc-font-size-h1:3.6rem;--qc-line-height-h2:3.2rem;--qc-line-height-h1:4rem;--qc-spacer-h2-mt:4.8rem;--qc-spacer-h2-mb:.8rem}}@media(max-width: 767.98px){:root,:host{--qc-grid-gutter:16px}}*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role=list],ol[role=list]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}:root{font-size:var(--qc-font-size-root-percent)}body{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);background-color:var(--qc-color-white);color:var(--qc-color-text-primary)}h1,.qc-h1{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h1);line-height:var(--qc-line-height-h1);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h1-mt);margin-bottom:var(--qc-spacer-h1-mb)}h2,.qc-h2{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h2);line-height:var(--qc-line-height-h2);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h2-mt);margin-bottom:var(--qc-spacer-h2-mb)}h3,.qc-h3{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h3);line-height:var(--qc-line-height-h3);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h3-mt);margin-bottom:var(--qc-spacer-h3-mb)}h4,.qc-h4{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h4);line-height:var(--qc-line-height-h4);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h4-mt);margin-bottom:var(--qc-spacer-h4-mb)}h5,.qc-h5{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h5);line-height:var(--qc-line-height-h5);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h5-mt);margin-bottom:var(--qc-spacer-h5-mb)}h6,.qc-h6{font-family:var(--qc-font-family-header);font-size:var(--qc-font-size-h6);line-height:var(--qc-line-height-h6);font-weight:var(--qc-font-weight-header-bold);max-inline-size:var(--qc-max-content-width);margin-top:var(--qc-spacer-h6-mt);margin-bottom:var(--qc-spacer-h6-mb)}h1 .qc-subhead,.qc-h1 .qc-subhead{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-content);color:var(--qc-color-grey-medium);display:block;margin:0}h1:after,.qc-h1:after{content:"";display:block;margin:0;width:4.8rem;padding-top:.8rem;border-bottom:4px solid var(--qc-color-accent)}p{margin-top:0;margin-bottom:var(--qc-spacer-md);max-inline-size:var(--qc-max-content-width)}img{border:none;vertical-align:middle}a{color:var(--qc-color-link-text)}a:visited{color:var(--qc-color-link-visited)}a:hover,a:focus{color:var(--qc-color-link-hover);text-decoration:none}a:active{color:var(--qc-color-link-active)}a .qc-external-link-tail{white-space:nowrap}a .qc-external-link-tail img{max-height:1.1rem;max-width:1.1rem;margin-bottom:.16rem;display:inline-block;content:url(../img/external-link.svg?v=1.2.5)}code,.qc-code{font-family:var(--qc-font-family-code)}.qc-bg-color-white{background-color:#fff}.qc-bg-color-blue-pale{background-color:#dae6f0}.qc-bg-color-blue-light{background-color:#4a98d9}.qc-bg-color-blue-regular{background-color:#1472bf}.qc-bg-color-blue-piv{background-color:#095797}.qc-bg-color-blue-medium{background-color:#19406c}.qc-bg-color-blue-dark{background-color:#223654}.qc-bg-color-purple{background-color:#6b4fa1}.qc-bg-color-grey-pale{background-color:#f1f1f2}.qc-bg-color-grey-light{background-color:#c5cad2}.qc-bg-color-grey-regular{background-color:#8893a2}.qc-bg-color-grey-medium{background-color:#6b778a}.qc-bg-color-grey-dark{background-color:#4e5662}.qc-bg-color-pink-pale{background-color:#ffdbd6}.qc-bg-color-pink-regular{background-color:#e58271}.qc-bg-color-red-regular{background-color:#cb381f}.qc-bg-color-red-dark{background-color:#692519}.qc-bg-color-green-pale{background-color:#d7f0bb}.qc-bg-color-green-regular{background-color:#4f813d}.qc-bg-color-green-dark{background-color:#2c4024}.qc-bg-color-yellow-pale{background-color:#f8e69a}.qc-bg-color-yellow-regular{background-color:#e0ad03}.qc-bg-color-yellow-dark{background-color:#ad781c}.qc-bg-color-text-primary{background-color:var(--qc-color-blue-dark)}.qc-bg-color-accent{background-color:var(--qc-color-pink-regular)}.qc-bg-color-success{background-color:var(--qc-color-green-regular)}.qc-bg-color-error{background-color:var(--qc-color-red-regular)}.qc-bg-color-danger{background-color:var(--qc-color-red-dark)}.qc-bg-color-link-text{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-hover{background-color:var(--qc-color-blue-piv)}.qc-bg-color-link-visited{background-color:var(--qc-color-purple)}.qc-bg-color-link-active{background-color:var(--qc-color-red-regular)}figure{display:inline-block;flex-direction:column}figure img{max-width:100%;height:auto}figcaption{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);background-color:var(--qc-color-grey-pale);padding:.8rem;margin-top:.8rem}figcaption p{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}figcaption p:last-child{margin-bottom:0}ul{max-inline-size:var(--qc-max-content-width);list-style:disc;margin-top:0;margin-bottom:var(--qc-spacer-list-mb);padding-left:var(--qc-spacer-list-pl)}ul li{margin-bottom:var(--qc-spacer-list-item-mb)}ul ul{margin-top:var(--qc-spacer-list-item-mb);margin-bottom:var(--qc-spacer-list-embedded-mb);list-style:circle}.qc-shading-0{box-shadow:0 0 0 var(--qc-color-grey-light)}.qc-shading-1,.qc-to-top{box-shadow:0 1px 4px var(--qc-color-grey-light)}.qc-shading-2,.qc-to-top:focus{box-shadow:0 2px 8px var(--qc-color-grey-light)}.qc-shading-3{box-shadow:0 4px 16px var(--qc-color-grey-light)}.qc-shading-4{box-shadow:0 6px 24px var(--qc-color-grey-light)}.qc-d-none{display:none !important}.qc-d-inline{display:inline !important}.qc-d-inline-block{display:inline-block !important}.qc-d-block{display:block !important}.qc-d-table{display:table !important}.qc-d-table-row{display:table-row !important}.qc-d-table-cell{display:table-cell !important}.qc-d-flex{display:flex !important}.qc-d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.qc-d-sm-none{display:none !important}.qc-d-sm-inline{display:inline !important}.qc-d-sm-inline-block{display:inline-block !important}.qc-d-sm-block{display:block !important}.qc-d-sm-table{display:table !important}.qc-d-sm-table-row{display:table-row !important}.qc-d-sm-table-cell{display:table-cell !important}.qc-d-sm-flex{display:flex !important}.qc-d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.qc-d-md-none{display:none !important}.qc-d-md-inline{display:inline !important}.qc-d-md-inline-block{display:inline-block !important}.qc-d-md-block{display:block !important}.qc-d-md-table{display:table !important}.qc-d-md-table-row{display:table-row !important}.qc-d-md-table-cell{display:table-cell !important}.qc-d-md-flex{display:flex !important}.qc-d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.qc-d-lg-none{display:none !important}.qc-d-lg-inline{display:inline !important}.qc-d-lg-inline-block{display:inline-block !important}.qc-d-lg-block{display:block !important}.qc-d-lg-table{display:table !important}.qc-d-lg-table-row{display:table-row !important}.qc-d-lg-table-cell{display:table-cell !important}.qc-d-lg-flex{display:flex !important}.qc-d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.qc-d-xl-none{display:none !important}.qc-d-xl-inline{display:inline !important}.qc-d-xl-inline-block{display:inline-block !important}.qc-d-xl-block{display:block !important}.qc-d-xl-table{display:table !important}.qc-d-xl-table-row{display:table-row !important}.qc-d-xl-table-cell{display:table-cell !important}.qc-d-xl-flex{display:flex !important}.qc-d-xl-inline-flex{display:inline-flex !important}}@media print{.qc-d-print-none{display:none !important}.qc-d-print-inline{display:inline !important}.qc-d-print-inline-block{display:inline-block !important}.qc-d-print-block{display:block !important}.qc-d-print-table{display:table !important}.qc-d-print-table-row{display:table-row !important}.qc-d-print-table-cell{display:table-cell !important}.qc-d-print-flex{display:flex !important}.qc-d-print-inline-flex{display:inline-flex !important}}.qc-icon{display:inline-block;content:"";background-repeat:no-repeat;background-position:center;background-size:100% auto;min-width:32px;height:32px}.qc-icon.qc-icon-sm{min-width:12px;height:12px}.qc-icon.qc-icon-md{min-width:20px;height:20px}.qc-icon.qc-icon-lg{min-width:40px;height:40px}.qc-icon.qc-external-link{background-image:url(../img/qc-sprite.svg?v=1.2.5#external-link)}.qc-icon.qc-warning{background-image:url(../img/qc-sprite.svg?v=1.2.5#warning)}.qc-icon.qc-arrow-up-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#arrow-up-white)}.qc-icon.qc-clipboard{background-image:url(../img/qc-sprite.svg?v=1.2.5#clipboard)}.qc-icon.qc-error{background-image:url(../img/qc-sprite.svg?v=1.2.5#error)}.qc-icon.qc-error-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#error-white)}.qc-icon.qc-information{background-image:url(../img/qc-sprite.svg?v=1.2.5#information)}.qc-icon.qc-information-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#information-white)}.qc-icon.qc-minus{background-image:url(../img/qc-sprite.svg?v=1.2.5#minus)}.qc-icon.qc-plus{background-image:url(../img/qc-sprite.svg?v=1.2.5#plus)}.qc-icon.qc-question-mark{background-image:url(../img/qc-sprite.svg?v=1.2.5#question-mark)}.qc-icon.qc-success{background-image:url(../img/qc-sprite.svg?v=1.2.5#success)}.qc-icon.qc-success-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#success-white)}.qc-icon.qc-xclose-white{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.5#xclose-white)}.qc-icon.qc-xclose-blue{width:16px;height:16px;min-width:16px;background-image:url(../img/qc-sprite.svg?v=1.2.5#xclose-blue)}.qc-icon.qc-chevron-blue,.qc-icon.qc-chevron-white{width:16px;min-width:16px;height:10px}.qc-icon.qc-chevron-blue{background-image:url(../img/qc-sprite.svg?v=1.2.5#chevron-blue)}.qc-icon.qc-chevron-white{background-image:url(../img/qc-sprite.svg?v=1.2.5#chevron-white)}.qc-icon.qc-facebook{background-image:url(../img/qc-sprite.svg?v=1.2.5#facebook)}.qc-icon.qc-linkedin{background-image:url(../img/qc-sprite.svg?v=1.2.5#linkedin);height:30px}.qc-icon.qc-twitter{background-image:url(../img/qc-sprite.svg?v=1.2.5#twitter)}.qc-icon.qc-youtube{background-image:url(../img/qc-sprite.svg?v=1.2.5#youtube)}.qc-icon.qc-warning-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.5#warning)}.qc-icon.qc-general-alert-icon{background-image:url(../img/qc-sprite.svg?v=1.2.5#information)}.qc-icon.qc-search{background-image:url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-droite)}.qc-icon.qc-search-submit{background-image:url(../img/qc-sprite.svg?v=1.2.5#loupe-piv-fonce)}.qc-notice{max-inline-size:var(--qc-max-content-width);display:flex;border:1px solid var(--qc-color-grey-light);background-color:var(--qc-color-white);word-break:break-word;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular);margin-bottom:3.2rem}.qc-notice .icon-container{display:flex;padding:var(--qc-spacer-md) var(--qc-spacer-xs);background-color:var(--qc-color-blue-pale)}.qc-notice .icon-container .qc-icon{background-size:100% auto;min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-notice .content-container{width:100%}.qc-notice.qc-information .icon-container{background-color:var(--qc-color-blue-pale)}.qc-notice.qc-warning .icon-container{background-color:var(--qc-color-yellow-pale)}.qc-notice.qc-success .icon-container{background-color:var(--qc-color-green-pale)}.qc-notice.qc-error .icon-container{background-color:var(--qc-color-pink-pale)}.qc-notice .title{margin:0;padding:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-bold);font-family:var(--qc-font-family-content)}.qc-notice .content{margin:var(--qc-spacer-notice-my) var(--qc-spacer-notice-mx) var(--qc-spacer-notice-my) var(--qc-spacer-sm)}.qc-notice .content .text ::slotted(ul){padding-left:var(--qc-spacer-sm) !important;margin-top:var(--qc-spacer-sm) !important}qc-notice[type=error] ul li a{color:var(--qc-color-red-regular)}qc-notice[type=error] ul li a:hover,qc-notice[type=error] ul li a:focus{text-decoration:none}@media(max-width: 575.98px){.qc-notice .content{margin-right:var(--qc-spacer-notice-my)}}qc-piv-header{display:block;min-height:7.2rem;background-color:var(--qc-color-blue-piv);width:100%}.qc-piv-header{color:var(--qc-color-white)}.qc-piv-header a{color:var(--qc-color-white);text-decoration:none}.qc-piv-header a:hover,.qc-piv-header a:focus{color:var(--qc-color-white);text-decoration:underline}.qc-piv-header .piv-top{display:flex;justify-content:space-between;align-items:center}.qc-piv-header .piv-top .logo{margin-right:6.4rem}@media(max-width: 575.98px){.qc-piv-header .piv-top .logo{margin:0}}.qc-piv-header .piv-top .logo a{display:block}.qc-piv-header .piv-top .logo img{height:7.2rem;min-width:20rem}.qc-piv-header .piv-top .title{width:100%;padding:var(--qc-spacer-sm) 0;min-height:7.2rem;align-items:center;display:flex;margin-right:4rem}.qc-piv-header .piv-top .title a{font-size:var(--qc-font-size-100);line-height:var(--qc-line-height-100);font-weight:var(--qc-font-weight-regular);font-family:var(--qc-font-family-header)}.qc-piv-header .piv-top .title a:hover,.qc-piv-header .piv-top .title a:focus{text-decoration:underline}.qc-piv-header .piv-top .title a .description{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content;display:flex;align-items:center}@media(max-width: 575.98px){.qc-piv-header .piv-top .right-section{min-width:auto}}.qc-piv-header .piv-top .qc-search{min-width:2.4rem;height:2.4rem}.qc-piv-header .piv-top .qc-search span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.qc-piv-header .piv-bottom .title{display:none}.qc-piv-header .piv-bottom .search-zone{padding-bottom:var(--qc-spacer-md)}.qc-piv-header .piv-bottom .search-zone form .input-group{width:100%;display:flex;justify-content:space-between;align-items:stretch}.qc-piv-header .piv-bottom .search-zone form .input-group input{width:100%;padding:.6rem 1.2rem;border:1px solid var(--qc-color-blue-dark);border-right:none}.qc-piv-header .piv-bottom .search-zone form .input-group input:focus{outline:.2rem solid var(--qc-color-blue-light);border-right:1px solid #000;z-index:1}.qc-piv-header .piv-bottom .search-zone form .input-group input::-moz-placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group input::placeholder{font-size:var(--qc-font-size-sm)}.qc-piv-header .piv-bottom .search-zone form .input-group button{display:flex;justify-content:center;border:1px solid var(--qc-color-blue-dark);border-left:none;background-color:#fff;width:4.16rem}.qc-piv-header .piv-bottom .search-zone form .input-group button:focus{outline:.2rem solid var(--qc-color-blue-light);border-left:1px solid #000}.qc-piv-header .piv-bottom .search-zone form .input-group button .qc-search-submit{min-width:2.4rem;height:2.4rem;align-self:center}.qc-piv-header .piv-bottom .search-zone form .input-group button .sr-description{position:absolute;width:1px;height:1px;clip:rect(0 0 0 0)}qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{list-style:none;padding:0;margin:0;height:100%;margin-left:var(--qc-spacer-md)}@media(max-width: 575.98px){qc-piv-header [slot=links],.qc-piv-header .piv-top .right-section .links ul,qc-piv-header [slot=links] ul{margin-left:var(--qc-spacer-sm)}}qc-piv-header [slot=links] li,.qc-piv-header .piv-top .right-section .links ul li{padding:0;margin:0;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a,.qc-piv-header .piv-top .right-section .links ul a{font-family:var(--qc-font-family-header);text-decoration:none;font-size:1.2rem;color:var(--qc-color-white);font-weight:var(--qc-font-weight-regular)}qc-piv-header [slot=links] a:focus,.qc-piv-header .piv-top .right-section .links ul a:focus,qc-piv-header [slot=links] a:hover,.qc-piv-header .piv-top .right-section .links ul a:hover{text-decoration:underline;color:var(--qc-color-white)}.go-to-content{display:flex;height:0}.go-to-content a{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.go-to-content a:focus{width:inherit;height:inherit;overflow:inherit;clip:inherit;white-space:inherit;color:var(--qc-color-white);background-color:var(--qc-color-blue-piv)}@media(max-width: 767.98px){.qc-piv-header .piv-top .logo img{min-width:17.5rem;width:17.5rem}.qc-piv-header .piv-top .title{display:none}.qc-piv-header .piv-top .right-section{min-width:13rem}.qc-piv-header .piv-bottom .title{margin:0;display:flex;padding-bottom:var(--qc-spacer-sm)}}@media(max-width: 575.98px){.qc-piv-header .piv-top{height:7.2rem}.qc-piv-header .piv-top .right-section{min-width:-moz-fit-content;min-width:fit-content}}qc-piv-footer{display:block;margin-top:4rem;padding-bottom:3.2rem;font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-regular)}qc-piv-footer a{text-decoration:none}qc-piv-footer a:hover{text-decoration:underline}qc-piv-footer ul{margin:0 0 var(--qc-spacer-sm) 0;padding:0;width:100%;display:flex;list-style-type:none;justify-content:center;flex-wrap:wrap}qc-piv-footer ul li{padding:0 var(--qc-spacer-sm) var(--qc-spacer-xs);margin:0;text-align:center}qc-piv-footer ul li:hover{text-decoration:underline}.qc-piv-footer a{text-decoration:none}.qc-piv-footer a:hover{text-decoration:underline}.qc-piv-footer .qc-container{display:flex;flex-direction:column;align-items:center}.qc-general-alert{max-inline-size:var(--qc-max-content-width);padding:var(--qc-spacer-md) var(--qc-spacer-sm)}@media(max-width: 575.98px){.qc-general-alert{padding:var(--qc-spacer-sm)}}.qc-general-alert .qc-general-alert-elements{display:flex;padding:0}.qc-general-alert.warning{background-color:var(--qc-color-yellow-pale)}.qc-general-alert.general{background-color:var(--qc-color-blue-pale)}.qc-general-alert .qc-icon{min-width:var(--qc-spacer-md);height:var(--qc-spacer-md)}.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-md);line-height:var(--qc-line-height-md);font-weight:var(--qc-font-weight-semi-bold);margin:0 var(--qc-spacer-md);width:100%}@media(max-width: 575.98px){.qc-general-alert .qc-alert-content{font-size:var(--qc-font-size-sm);line-height:var(--qc-line-height-sm);font-weight:var(--qc-font-weight-semi-bold)}}.qc-general-alert .qc-alert-close{display:flex;align-items:center}@media(max-width: 575.98px){.qc-general-alert .qc-alert-close{align-items:inherit}}.qc-general-alert .qc-close{padding:0;background-color:rgba(0,0,0,0);border:0;display:inline-flex;justify-content:center}.qc-general-alert .qc-close .qc-close-alert-icon{display:inline-block;min-width:var(--qc-spacer-sm);height:var(--qc-spacer-sm);vertical-align:middle;cursor:pointer}qc-alert [slot] *,qc-alert:not([slot=content]) *{margin-bottom:0}qc-alert [slot] a,qc-alert:not([slot=content]) a{color:var(--qc-color-blue-dark)}.qc-to-top{display:flex;z-index:99;cursor:pointer;width:4rem;height:4rem;background-color:var(--qc-color-blue-piv);align-items:center;justify-content:center;transition:opacity .4s linear;opacity:0;background-size:1.6rem 2rem}.qc-to-top[demo=false]{position:fixed;bottom:9.6rem;right:3.2rem}.qc-to-top[style*=block]{display:flex !important}.qc-to-top:hover{background-color:var(--qc-color-blue-regular)}.qc-to-top:focus{background-color:var(--qc-color-blue-regular);outline:2px solid var(--qc-color-blue-light);border:2px solid var(--qc-color-blue-dark)}.qc-to-top:active{background-color:var(--qc-color-blue-light)}.qc-to-top.visible{opacity:1;visibility:visible}.qc-to-top span{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}hr{margin:var(--qc-spacer-lg) 0;border:0;border-bottom:1px solid var(--qc-color-grey-light)}.qc-container,.qc-container-fluid,.qc-container-xl,.qc-container-lg,.qc-container-md,.qc-container-sm{width:100%;padding-right:calc(1*var(--qc-grid-gutter)/2);padding-left:calc(1*var(--qc-grid-gutter)/2);margin-right:auto;margin-left:auto}@media(min-width: 576px){.qc-container-sm,.qc-container{max-width:576px}}@media(min-width: 768px){.qc-container-md,.qc-container-sm,.qc-container{max-width:768px}}@media(min-width: 992px){.qc-container-lg,.qc-container-md,.qc-container-sm,.qc-container{max-width:992px}}@media(min-width: 1200px){.qc-container-xl,.qc-container-lg,.qc-container-md,.qc-container-sm,.qc-container{max-width:1200px}}.qc-row{display:flex;flex-wrap:wrap;margin-right:calc(-1*var(--qc-grid-gutter)/2);margin-left:calc(-1*var(--qc-grid-gutter)/2)}.no-gutters{margin-right:0;margin-left:0}.no-gutters>.qc-col,.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.qc-col-xl,.qc-col-xl-auto,.qc-col-xl-12,.qc-col-xl-11,.qc-col-xl-10,.qc-col-xl-9,.qc-col-xl-8,.qc-col-xl-7,.qc-col-xl-6,.qc-col-xl-5,.qc-col-xl-4,.qc-col-xl-3,.qc-col-xl-2,.qc-col-xl-1,.qc-col-lg,.qc-col-lg-auto,.qc-col-lg-12,.qc-col-lg-11,.qc-col-lg-10,.qc-col-lg-9,.qc-col-lg-8,.qc-col-lg-7,.qc-col-lg-6,.qc-col-lg-5,.qc-col-lg-4,.qc-col-lg-3,.qc-col-lg-2,.qc-col-lg-1,.qc-col-md,.qc-col-md-auto,.qc-col-md-12,.qc-col-md-11,.qc-col-md-10,.qc-col-md-9,.qc-col-md-8,.qc-col-md-7,.qc-col-md-6,.qc-col-md-5,.qc-col-md-4,.qc-col-md-3,.qc-col-md-2,.qc-col-md-1,.qc-col-sm,.qc-col-sm-auto,.qc-col-sm-12,.qc-col-sm-11,.qc-col-sm-10,.qc-col-sm-9,.qc-col-sm-8,.qc-col-sm-7,.qc-col-sm-6,.qc-col-sm-5,.qc-col-sm-4,.qc-col-sm-3,.qc-col-sm-2,.qc-col-sm-1,.qc-col,.qc-col-auto,.qc-col-12,.qc-col-11,.qc-col-10,.qc-col-9,.qc-col-8,.qc-col-7,.qc-col-6,.qc-col-5,.qc-col-4,.qc-col-3,.qc-col-2,.qc-col-1{position:relative;width:100%;padding-right:calc(1*var(--qc-grid-gutter)/2);padding-left:calc(1*var(--qc-grid-gutter)/2)}.qc-col{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-3{flex:0 0 25%;max-width:25%}.qc-col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-6{flex:0 0 50%;max-width:50%}.qc-col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-9{flex:0 0 75%;max-width:75%}.qc-col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-12{flex:0 0 100%;max-width:100%}.qc-order-first{order:-1}.qc-order-last{order:13}.qc-order-0{order:0}.qc-order-1{order:1}.qc-order-2{order:2}.qc-order-3{order:3}.qc-order-4{order:4}.qc-order-5{order:5}.qc-order-6{order:6}.qc-order-7{order:7}.qc-order-8{order:8}.qc-order-9{order:9}.qc-order-10{order:10}.qc-order-11{order:11}.qc-order-12{order:12}.qc-offset-1{margin-left:8.33333333%}.qc-offset-2{margin-left:16.66666667%}.qc-offset-3{margin-left:25%}.qc-offset-4{margin-left:33.33333333%}.qc-offset-5{margin-left:41.66666667%}.qc-offset-6{margin-left:50%}.qc-offset-7{margin-left:58.33333333%}.qc-offset-8{margin-left:66.66666667%}.qc-offset-9{margin-left:75%}.qc-offset-10{margin-left:83.33333333%}.qc-offset-11{margin-left:91.66666667%}@media(min-width: 576px){.qc-col-sm{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-sm-3{flex:0 0 25%;max-width:25%}.qc-col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-sm-6{flex:0 0 50%;max-width:50%}.qc-col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-sm-9{flex:0 0 75%;max-width:75%}.qc-col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-sm-12{flex:0 0 100%;max-width:100%}.qc-order-sm-first{order:-1}.qc-order-sm-last{order:13}.qc-order-sm-0{order:0}.qc-order-sm-1{order:1}.qc-order-sm-2{order:2}.qc-order-sm-3{order:3}.qc-order-sm-4{order:4}.qc-order-sm-5{order:5}.qc-order-sm-6{order:6}.qc-order-sm-7{order:7}.qc-order-sm-8{order:8}.qc-order-sm-9{order:9}.qc-order-sm-10{order:10}.qc-order-sm-11{order:11}.qc-order-sm-12{order:12}.qc-offset-sm-0{margin-left:0}.qc-offset-sm-1{margin-left:8.33333333%}.qc-offset-sm-2{margin-left:16.66666667%}.qc-offset-sm-3{margin-left:25%}.qc-offset-sm-4{margin-left:33.33333333%}.qc-offset-sm-5{margin-left:41.66666667%}.qc-offset-sm-6{margin-left:50%}.qc-offset-sm-7{margin-left:58.33333333%}.qc-offset-sm-8{margin-left:66.66666667%}.qc-offset-sm-9{margin-left:75%}.qc-offset-sm-10{margin-left:83.33333333%}.qc-offset-sm-11{margin-left:91.66666667%}}@media(min-width: 768px){.qc-col-md{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-md-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-md-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-md-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-md-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-md-3{flex:0 0 25%;max-width:25%}.qc-col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-md-6{flex:0 0 50%;max-width:50%}.qc-col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-md-9{flex:0 0 75%;max-width:75%}.qc-col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-md-12{flex:0 0 100%;max-width:100%}.qc-order-md-first{order:-1}.qc-order-md-last{order:13}.qc-order-md-0{order:0}.qc-order-md-1{order:1}.qc-order-md-2{order:2}.qc-order-md-3{order:3}.qc-order-md-4{order:4}.qc-order-md-5{order:5}.qc-order-md-6{order:6}.qc-order-md-7{order:7}.qc-order-md-8{order:8}.qc-order-md-9{order:9}.qc-order-md-10{order:10}.qc-order-md-11{order:11}.qc-order-md-12{order:12}.qc-offset-md-0{margin-left:0}.qc-offset-md-1{margin-left:8.33333333%}.qc-offset-md-2{margin-left:16.66666667%}.qc-offset-md-3{margin-left:25%}.qc-offset-md-4{margin-left:33.33333333%}.qc-offset-md-5{margin-left:41.66666667%}.qc-offset-md-6{margin-left:50%}.qc-offset-md-7{margin-left:58.33333333%}.qc-offset-md-8{margin-left:66.66666667%}.qc-offset-md-9{margin-left:75%}.qc-offset-md-10{margin-left:83.33333333%}.qc-offset-md-11{margin-left:91.66666667%}}@media(min-width: 992px){.qc-col-lg{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-lg-3{flex:0 0 25%;max-width:25%}.qc-col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-lg-6{flex:0 0 50%;max-width:50%}.qc-col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-lg-9{flex:0 0 75%;max-width:75%}.qc-col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-lg-12{flex:0 0 100%;max-width:100%}.qc-order-lg-first{order:-1}.qc-order-lg-last{order:13}.qc-order-lg-0{order:0}.qc-order-lg-1{order:1}.qc-order-lg-2{order:2}.qc-order-lg-3{order:3}.qc-order-lg-4{order:4}.qc-order-lg-5{order:5}.qc-order-lg-6{order:6}.qc-order-lg-7{order:7}.qc-order-lg-8{order:8}.qc-order-lg-9{order:9}.qc-order-lg-10{order:10}.qc-order-lg-11{order:11}.qc-order-lg-12{order:12}.qc-offset-lg-0{margin-left:0}.qc-offset-lg-1{margin-left:8.33333333%}.qc-offset-lg-2{margin-left:16.66666667%}.qc-offset-lg-3{margin-left:25%}.qc-offset-lg-4{margin-left:33.33333333%}.qc-offset-lg-5{margin-left:41.66666667%}.qc-offset-lg-6{margin-left:50%}.qc-offset-lg-7{margin-left:58.33333333%}.qc-offset-lg-8{margin-left:66.66666667%}.qc-offset-lg-9{margin-left:75%}.qc-offset-lg-10{margin-left:83.33333333%}.qc-offset-lg-11{margin-left:91.66666667%}}@media(min-width: 1200px){.qc-col-xl{flex-basis:0;flex-grow:1;max-width:100%}.qc-row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.qc-row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.qc-row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.qc-row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.qc-row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.qc-row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.qc-col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.qc-col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.qc-col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.qc-col-xl-3{flex:0 0 25%;max-width:25%}.qc-col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.qc-col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.qc-col-xl-6{flex:0 0 50%;max-width:50%}.qc-col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.qc-col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.qc-col-xl-9{flex:0 0 75%;max-width:75%}.qc-col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.qc-col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.qc-col-xl-12{flex:0 0 100%;max-width:100%}.qc-order-xl-first{order:-1}.qc-order-xl-last{order:13}.qc-order-xl-0{order:0}.qc-order-xl-1{order:1}.qc-order-xl-2{order:2}.qc-order-xl-3{order:3}.qc-order-xl-4{order:4}.qc-order-xl-5{order:5}.qc-order-xl-6{order:6}.qc-order-xl-7{order:7}.qc-order-xl-8{order:8}.qc-order-xl-9{order:9}.qc-order-xl-10{order:10}.qc-order-xl-11{order:11}.qc-order-xl-12{order:12}.qc-offset-xl-0{margin-left:0}.qc-offset-xl-1{margin-left:8.33333333%}.qc-offset-xl-2{margin-left:16.66666667%}.qc-offset-xl-3{margin-left:25%}.qc-offset-xl-4{margin-left:33.33333333%}.qc-offset-xl-5{margin-left:41.66666667%}.qc-offset-xl-6{margin-left:50%}.qc-offset-xl-7{margin-left:58.33333333%}.qc-offset-xl-8{margin-left:66.66666667%}.qc-offset-xl-9{margin-left:75%}.qc-offset-xl-10{margin-left:83.33333333%}.qc-offset-xl-11{margin-left:91.66666667%}}
|
package/dist/js/qc-sdg.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
!function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function o(t){t.forEach(e)}function r(t){return"function"==typeof t}function s(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}let i;function c(t,e){return t===e||(i||(i=document.createElement("a")),i.href=e,t===i.href)}function l(t,e,n,o){if(t){const r=a(t,e,n,o);return t[0](r)}}function a(t,e,n,o){return t[1]&&o?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](o(e))):n.ctx}function u(t,e,n,o){if(t[2]&&o){const r=t[2](o(n));if(void 0===e.dirty)return r;if("object"==typeof r){const t=[],n=Math.max(e.dirty.length,r.length);for(let o=0;o<n;o+=1)t[o]=e.dirty[o]|r[o];return t}return e.dirty|r}return e.dirty}function h(t,e,n,o,r,s){if(r){const i=a(e,n,o,s);t.p(i,r)}}function $(t){if(t.ctx.length>32){const e=[],n=t.ctx.length/32;for(let t=0;t<n;t++)e[t]=-1;return e}return-1}const d="undefined"!=typeof window?window:"undefined"!=typeof globalThis?globalThis:global;function g(t,e){t.appendChild(e)}function p(t,e,n){t.insertBefore(e,n||null)}function f(t){t.parentNode&&t.parentNode.removeChild(t)}function m(t){return document.createElement(t)}function x(t){return document.createTextNode(t)}function b(){return x(" ")}function y(t,e,n,o){return t.addEventListener(e,n,o),()=>t.removeEventListener(e,n,o)}function T(t){return function(e){return e.preventDefault(),t.call(this,e)}}function v(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}const w=["width","height"];function S(t,e){const n=Object.getOwnPropertyDescriptors(t.__proto__);for(const o in e)null==e[o]?t.removeAttribute(o):"style"===o?t.style.cssText=e[o]:"__value"===o?t.value=t[o]=e[o]:n[o]&&n[o].set&&-1===w.indexOf(o)?t[o]=e[o]:v(t,o,e[o])}function U(t,e){Object.keys(e).forEach((n=>{!function(t,e,n){const o=e.toLowerCase();o in t?t[o]="boolean"==typeof t[o]&&""===n||n:e in t?t[e]="boolean"==typeof t[e]&&""===n||n:v(t,e,n)}(t,n,e[n])}))}function _(t,e){e=""+e,t.data!==e&&(t.data=e)}function q(t,e,n){t.classList.toggle(e,!!n)}class A{is_svg=!1;e=void 0;n=void 0;t=void 0;a=void 0;constructor(t=!1){this.is_svg=t,this.e=this.n=null}c(t){this.h(t)}m(t,e,n=null){var o;this.e||(this.is_svg?this.e=(o=e.nodeName,document.createElementNS("http://www.w3.org/2000/svg",o)):this.e=m(11===e.nodeType?"TEMPLATE":e.nodeName),this.t="TEMPLATE"!==e.tagName?e:e.content,this.c(t)),this.i(n)}h(t){this.e.innerHTML=t,this.n=Array.from("TEMPLATE"===this.e.nodeName?this.e.content.childNodes:this.e.childNodes)}i(t){for(let e=0;e<this.n.length;e+=1)p(this.t,this.n[e],t)}p(t){this.d(),this.h(t),this.i(this.a)}d(){this.n.forEach(f)}}let L;function k(t){L=t}function E(t){(function(){if(!L)throw new Error("Function called outside component initialization");return L})().$$.on_mount.push(t)}const C=[],P=[];let N=[];const j=[],O=Promise.resolve();let F=!1;function I(t){N.push(t)}const W=new Set;let H=0;function R(){if(0!==H)return;const t=L;do{try{for(;H<C.length;){const t=C[H];H++,k(t),M(t.$$)}}catch(t){throw C.length=0,H=0,t}for(k(null),C.length=0,H=0;P.length;)P.pop()();for(let t=0;t<N.length;t+=1){const e=N[t];W.has(e)||(W.add(e),e())}N.length=0}while(C.length);for(;j.length;)j.pop()();F=!1,W.clear(),k(t)}function M(t){if(null!==t.fragment){t.update(),o(t.before_update);const e=t.dirty;t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(I)}}const B=new Set;let z,D;function Q(){z={r:0,c:[],p:z}}function Y(){z.r||o(z.c),z=z.p}function G(t,e){t&&t.i&&(B.delete(t),t.i(e))}function J(t,e,n,o){if(t&&t.o){if(B.has(t))return;B.add(t),z.c.push((()=>{B.delete(t),o&&(n&&t.d(1),o())})),t.o(e)}else o&&o()}function K(t,e){const n=t.$$;null!==n.fragment&&(!function(t){const e=[],n=[];N.forEach((o=>-1===t.indexOf(o)?e.push(o):n.push(o))),n.forEach((t=>t())),N=e}(n.after_update),o(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function V(t,e){-1===t.$$.dirty[0]&&(C.push(t),F||(F=!0,O.then(R)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<<e%31}function X(s,i,c,l,a,u,h=null,$=[-1]){const d=L;k(s);const g=s.$$={fragment:null,ctx:[],props:u,update:t,not_equal:a,bound:n(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(i.context||(d?d.$$.context:[])),callbacks:n(),dirty:$,skip_bound:!1,root:i.target||d.$$.root};h&&h(g.root);let p=!1;if(g.ctx=c?c(s,i.props||{},((t,e,...n)=>{const o=n.length?n[0]:e;return g.ctx&&a(g.ctx[t],g.ctx[t]=o)&&(!g.skip_bound&&g.bound[t]&&g.bound[t](o),p&&V(s,t)),e})):[],g.update(),p=!0,o(g.before_update),g.fragment=!!l&&l(g.ctx),i.target){if(i.hydrate){const t=function(t){return Array.from(t.childNodes)}(i.target);g.fragment&&g.fragment.l(t),t.forEach(f)}else g.fragment&&g.fragment.c();i.intro&&G(s.$$.fragment),function(t,n,s){const{fragment:i,after_update:c}=t.$$;i&&i.m(n,s),I((()=>{const n=t.$$.on_mount.map(e).filter(r);t.$$.on_destroy?t.$$.on_destroy.push(...n):o(n),t.$$.on_mount=[]})),c.forEach(I)}(s,i.target,i.anchor),R()}k(d)}function Z(t,e,n,o){const r=n[t]?.type;if(e="Boolean"===r&&"boolean"!=typeof e?null!=e:e,!o||!n[t])return e;if("toAttribute"===o)switch(r){case"Object":case"Array":return null==e?null:JSON.stringify(e);case"Boolean":return e?"":null;case"Number":return null==e?null:e;default:return e}else switch(r){case"Object":case"Array":return e&&JSON.parse(e);case"Boolean":default:return e;case"Number":return null!=e?+e:e}}function tt(t,e,n,o,r,s){let i=class extends D{constructor(){super(t,n,r),this.$$p_d=e}static get observedAttributes(){return Object.keys(e).map((t=>(e[t].attribute||t).toLowerCase()))}};return Object.keys(e).forEach((t=>{Object.defineProperty(i.prototype,t,{get(){return this.$$c&&t in this.$$c?this.$$c[t]:this.$$d[t]},set(n){n=Z(t,n,e),this.$$d[t]=n,this.$$c?.$set({[t]:n})}})})),o.forEach((t=>{Object.defineProperty(i.prototype,t,{get(){return this.$$c?.[t]}})})),s&&(i=s(i)),t.element=i,i}"function"==typeof HTMLElement&&(D=class extends HTMLElement{$$ctor;$$s;$$c;$$cn=!1;$$d={};$$r=!1;$$p_d={};$$l={};$$l_u=new Map;constructor(t,e,n){super(),this.$$ctor=t,this.$$s=e,n&&this.attachShadow({mode:"open"})}addEventListener(t,e,n){if(this.$$l[t]=this.$$l[t]||[],this.$$l[t].push(e),this.$$c){const n=this.$$c.$on(t,e);this.$$l_u.set(e,n)}super.addEventListener(t,e,n)}removeEventListener(t,e,n){if(super.removeEventListener(t,e,n),this.$$c){const t=this.$$l_u.get(e);t&&(t(),this.$$l_u.delete(e))}}async connectedCallback(){if(this.$$cn=!0,!this.$$c){if(await Promise.resolve(),!this.$$cn||this.$$c)return;function t(t){return()=>{let e;return{c:function(){e=m("slot"),"default"!==t&&v(e,"name",t)},m:function(t,n){p(t,e,n)},d:function(t){t&&f(e)}}}}const e={},n=function(t){const e={};return t.childNodes.forEach((t=>{e[t.slot||"default"]=!0})),e}(this);for(const r of this.$$s)r in n&&(e[r]=[t(r)]);for(const s of this.attributes){const i=this.$$g_p(s.name);i in this.$$d||(this.$$d[i]=Z(i,s.value,this.$$p_d,"toProp"))}for(const c in this.$$p_d)c in this.$$d||void 0===this[c]||(this.$$d[c]=this[c],delete this[c]);this.$$c=new this.$$ctor({target:this.shadowRoot||this,props:{...this.$$d,$$slots:e,$$scope:{ctx:[]}}});const o=()=>{this.$$r=!0;for(const t in this.$$p_d)if(this.$$d[t]=this.$$c.$$.ctx[this.$$c.$$.props[t]],this.$$p_d[t].reflect){const e=Z(t,this.$$d[t],this.$$p_d,"toAttribute");null==e?this.removeAttribute(this.$$p_d[t].attribute||t):this.setAttribute(this.$$p_d[t].attribute||t,e)}this.$$r=!1};this.$$c.$$.after_update.push(o),o();for(const l in this.$$l)for(const a of this.$$l[l]){const u=this.$$c.$on(l,a);this.$$l_u.set(a,u)}this.$$l={}}}attributeChangedCallback(t,e,n){this.$$r||(t=this.$$g_p(t),this.$$d[t]=Z(t,n,this.$$p_d,"toProp"),this.$$c?.$set({[t]:this.$$d[t]}))}disconnectedCallback(){this.$$cn=!1,Promise.resolve().then((()=>{this.$$cn||(this.$$c.$destroy(),this.$$c=void 0)}))}$$g_p(t){return Object.keys(this.$$p_d).find((e=>this.$$p_d[e].attribute===t||!this.$$p_d[e].attribute&&e.toLowerCase()===t))||t}});class et{$$=void 0;$$set=void 0;$destroy(){K(this,1),this.$destroy=t}$on(e,n){if(!r(n))return t;const o=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return o.push(n),()=>{const t=o.indexOf(n);-1!==t&&o.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}"undefined"!=typeof window&&(window.__svelte||(window.__svelte={v:new Set})).v.add("4");class nt{static assetsBasePath=new URL(document.currentScript.src).pathname.split("/").slice(0,-2).join("/")||".";static cssRelativePath=`${this.assetsBasePath}/css/`.replace("//","/");static imagesRelativePath=`${this.assetsBasePath}/img/`.replace("//","/");static cssFileName=document.currentScript.getAttribute("sdg-css-filename")||"qc-sdg.min.css";static sharedTexts={openInNewTab:{fr:"Ce lien s’ouvrira dans un nouvel onglet.",en:"This link will open in a new tab."}};static getPageLanguage(){return document.getElementsByTagName("html")[0].getAttribute("lang")||"fr"}}function ot(t){let e,n;return{c(){var o;e=m(t[1]),n=x(t[2]),(o=t[1],/-/.test(o)?U:S)(e,{class:"title"})},m(t,o){p(t,e,o),g(e,n)},p(t,e){4&e&&_(n,t[2])},d(t){t&&f(e)}}}function rt(t){let e,n,o,r,i,c,a,d,x,y,T,w,S,U,_,q=t[1],L=t[1]&&ot(t);const k=t[5].default,E=l(k,t,t[4],null);return{c(){e=m("div"),n=m("div"),o=m("div"),i=b(),c=m("div"),a=m("div"),L&&L.c(),d=b(),x=m("div"),y=new A(!1),T=b(),E&&E.c(),S=b(),U=m("link"),v(o,"aria-hidden","true"),v(o,"class",r="qc-icon qc-"+t[0]),v(n,"class","icon-container"),y.a=T,v(x,"class","text"),v(a,"class","content"),v(c,"class","content-container"),v(e,"class",w="qc-component qc-notice qc-"+t[0]),v(e,"tabindex","0"),v(U,"rel","stylesheet"),v(U,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(r,s){p(r,e,s),g(e,n),g(n,o),g(e,i),g(e,c),g(c,a),L&&L.m(a,null),g(a,d),g(a,x),y.m(t[3],x),g(x,T),E&&E.m(x,null),p(r,S,s),p(r,U,s),_=!0},p(t,[n]){(!_||1&n&&r!==(r="qc-icon qc-"+t[0]))&&v(o,"class",r),t[1]?q?s(q,t[1])?(L.d(1),L=ot(t),q=t[1],L.c(),L.m(a,d)):L.p(t,n):(L=ot(t),q=t[1],L.c(),L.m(a,d)):q&&(L.d(1),L=null,q=t[1]),(!_||8&n)&&y.p(t[3]),E&&E.p&&(!_||16&n)&&h(E,k,t,t[4],_?u(k,t[4],n,null):$(t[4]),null),(!_||1&n&&w!==(w="qc-component qc-notice qc-"+t[0]))&&v(e,"class",w)},i(t){_||(G(E,t),_=!0)},o(t){J(E,t),_=!1},d(t){t&&(f(e),f(S),f(U)),L&&L.d(t),E&&E.d(t)}}}function st(t,e,n){let{$$slots:o={},$$scope:r}=e;const s="h2",i="information",c=["information","warning","success","error"];let{title:l="",type:a=i,content:u="",header:h=s}=e;return E((()=>{n(1,h=h.match(/h[1-6]/)?h:s),n(0,a=c.includes(a)?a:i)})),t.$$set=t=>{"title"in t&&n(2,l=t.title),"type"in t&&n(0,a=t.type),"content"in t&&n(3,u=t.content),"header"in t&&n(1,h=t.header),"$$scope"in t&&n(4,r=t.$$scope)},[a,h,l,u,r,o]}customElements.define("qc-notice",tt(class extends et{constructor(t){super(),X(this,t,st,rt,s,{title:2,type:0,content:3,header:1})}get title(){return this.$$.ctx[2]}set title(t){this.$$set({title:t}),R()}get type(){return this.$$.ctx[0]}set type(t){this.$$set({type:t}),R()}get content(){return this.$$.ctx[3]}set content(t){this.$$set({content:t}),R()}get header(){return this.$$.ctx[1]}set header(t){this.$$set({header:t}),R()}},{title:{},type:{},content:{},header:{}},["default"],[],!0));const it=t=>({}),ct=t=>({}),lt=t=>({}),at=t=>({});function ut(t){let e,n,o;return{c(){e=m("div"),n=m("a"),o=x(t[12]),v(n,"href",t[11]),v(e,"class","go-to-content")},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){4096&e&&_(o,t[12]),2048&e&&v(n,"href",t[11])},d(t){t&&f(e)}}}function ht(t){let e,n,o,r;return{c(){e=m("div"),n=m("a"),o=m("span"),r=x(t[5]),v(n,"href",t[4]),v(e,"class","title")},m(t,s){p(t,e,s),g(e,n),g(n,o),g(o,r)},p(t,e){32&e&&_(r,t[5]),16&e&&v(n,"href",t[4])},d(t){t&&f(e)}}}function $t(t){let e,n,r,s,i,c=(t[21]?t[17]:t[16])+"";return{c(){e=m("a"),n=m("span"),r=x(c),v(e,"class","qc-icon qc-search"),v(e,"href","/"),v(e,"role","button")},m(o,c){p(o,e,c),g(e,n),g(n,r),s||(i=[y(e,"click",T(t[27])),y(e,"click",t[19])],s=!0)},p(t,e){2293760&e&&c!==(c=(t[21]?t[17]:t[16])+"")&&_(r,c)},d(t){t&&f(e),s=!1,o(i)}}}function dt(t){let e,n,o=t[7]&>(t),r=t[9]&&pt(t);return{c(){e=m("ul"),o&&o.c(),n=b(),r&&r.c()},m(t,s){p(t,e,s),o&&o.m(e,null),g(e,n),r&&r.m(e,null)},p(t,s){t[7]?o?o.p(t,s):(o=gt(t),o.c(),o.m(e,n)):o&&(o.d(1),o=null),t[9]?r?r.p(t,s):(r=pt(t),r.c(),r.m(e,null)):r&&(r.d(1),r=null)},d(t){t&&f(e),o&&o.d(),r&&r.d()}}}function gt(t){let e,n,o;return{c(){e=m("li"),n=m("a"),o=x(t[6]),v(n,"href",t[7])},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){64&e&&_(o,t[6]),128&e&&v(n,"href",t[7])},d(t){t&&f(e)}}}function pt(t){let e,n,o;return{c(){e=m("li"),n=m("a"),o=x(t[8]),v(n,"href",t[9])},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){256&e&&_(o,t[8]),512&e&&v(n,"href",t[9])},d(t){t&&f(e)}}}function ft(t){let e,n=(t[9]||t[7])&&dt(t);return{c(){n&&n.c(),e=x("")},m(t,o){n&&n.m(t,o),p(t,e,o)},p(t,o){t[9]||t[7]?n?n.p(t,o):(n=dt(t),n.c(),n.m(e.parentNode,e)):n&&(n.d(1),n=null)},d(t){t&&f(e),n&&n.d(t)}}}function mt(t){let e,n,o,r;return{c(){e=m("div"),n=m("a"),o=m("span"),r=x(t[5]),v(n,"href",t[4]),v(e,"class","title")},m(t,s){p(t,e,s),g(e,n),g(n,o),g(o,r)},p(t,e){32&e&&_(r,t[5]),16&e&&v(n,"href",t[4])},d(t){t&&f(e)}}}function xt(t){let e,n;const o=t[26]["search-zone"],r=l(o,t,t[25],ct),s=r||function(t){let e,n,o,r,s,i,c,l,a;return{c(){e=m("form"),n=m("div"),o=m("input"),r=b(),s=m("button"),i=m("span"),c=b(),l=m("span"),a=x(t[15]),v(o,"type","text"),v(o,"placeholder",t[13]),v(o,"name",t[14]),v(i,"class","qc-icon qc-search-submit"),v(l,"class","sr-description"),v(n,"class","input-group"),v(e,"method","get"),v(e,"action",t[18])},m(u,h){p(u,e,h),g(e,n),g(n,o),t[28](o),g(n,r),g(n,s),g(s,i),g(s,c),g(s,l),g(l,a)},p(t,n){8192&n&&v(o,"placeholder",t[13]),16384&n&&v(o,"name",t[14]),32768&n&&_(a,t[15]),262144&n&&v(e,"action",t[18])},d(n){n&&f(e),t[28](null)}}}(t);return{c(){e=m("div"),s&&s.c(),v(e,"class","search-zone")},m(t,o){p(t,e,o),s&&s.m(e,null),n=!0},p(t,e){r?r.p&&(!n||33554432&e)&&h(r,o,t,t[25],n?u(o,t[25],e,it):$(t[25]),ct):s&&s.p&&(!n||4513792&e)&&s.p(t,n?e:-1)},i(t){n||(G(s,t),n=!0)},o(t){J(s,t),n=!1},d(t){t&&f(e),s&&s.d(t)}}}function bt(t){let e,n,o,r,s,i,a,d,x,y,T,w,S,U,_,q,A,L,k,E="true"==t[10]&&ut(t),C=t[5]&&ht(t),P="true"==t[0]&&$t(t);const N=t[26].links,j=l(N,t,t[25],at),O=j||ft(t);let F=t[5]&&mt(t),I=t[21]&&xt(t);return{c(){e=m("div"),n=m("div"),E&&E.c(),o=b(),r=m("div"),s=m("div"),i=m("a"),a=m("img"),x=b(),C&&C.c(),y=b(),T=m("div"),P&&P.c(),w=b(),S=m("div"),O&&O.c(),U=b(),_=m("div"),F&&F.c(),q=b(),I&&I.c(),A=b(),L=m("link"),v(a,"alt",t[3]),c(a.src,d=t[2])||v(a,"src",d),v(i,"href",t[1]),v(i,"target","_blank"),v(i,"rel","noreferrer"),v(s,"class","logo"),v(S,"class","links"),v(T,"class","right-section"),v(r,"class","piv-top"),v(_,"class","piv-bottom"),v(n,"class",t[20]),v(e,"class","qc-piv-header qc-component"),v(L,"rel","stylesheet"),v(L,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,c){p(t,e,c),g(e,n),E&&E.m(n,null),g(n,o),g(n,r),g(r,s),g(s,i),g(i,a),g(r,x),C&&C.m(r,null),g(r,y),g(r,T),P&&P.m(T,null),g(T,w),g(T,S),O&&O.m(S,null),g(n,U),g(n,_),F&&F.m(_,null),g(_,q),I&&I.m(_,null),p(t,A,c),p(t,L,c),k=!0},p(t,[e]){"true"==t[10]?E?E.p(t,e):(E=ut(t),E.c(),E.m(n,o)):E&&(E.d(1),E=null),(!k||8&e)&&v(a,"alt",t[3]),(!k||4&e&&!c(a.src,d=t[2]))&&v(a,"src",d),(!k||2&e)&&v(i,"href",t[1]),t[5]?C?C.p(t,e):(C=ht(t),C.c(),C.m(r,y)):C&&(C.d(1),C=null),"true"==t[0]?P?P.p(t,e):(P=$t(t),P.c(),P.m(T,w)):P&&(P.d(1),P=null),j?j.p&&(!k||33554432&e)&&h(j,N,t,t[25],k?u(N,t[25],e,lt):$(t[25]),at):O&&O.p&&(!k||960&e)&&O.p(t,k?e:-1),t[5]?F?F.p(t,e):(F=mt(t),F.c(),F.m(_,q)):F&&(F.d(1),F=null),t[21]?I?(I.p(t,e),2097152&e&&G(I,1)):(I=xt(t),I.c(),G(I,1),I.m(_,null)):I&&(Q(),J(I,1,1,(()=>{I=null})),Y()),(!k||1048576&e)&&v(n,"class",t[20])},i(t){k||(G(O,t),G(I),k=!0)},o(t){J(O,t),J(I),k=!1},d(t){t&&(f(e),f(A),f(L)),E&&E.d(),C&&C.d(),P&&P.d(),O&&O.d(t),F&&F.d(),I&&I.d()}}}function yt(t,e,n){let{$$slots:o={},$$scope:r}=e;const s=nt.getPageLanguage();let{logoUrl:i="/",fullWidth:c="false",logoSrc:l=nt.imagesRelativePath+"quebec-logo.svg",logoAlt:a=("fr"===s?"Logo du gouvernement du Québec":"Logo of government of Québec"),titleUrl:u="/",titleText:h="",altLanguageText:$=("fr"===s?"English":"Français"),altLanguageUrl:d="",joinUsText:g=("fr"===s?"Nous joindre":"Contact us"),joinUsUrl:p="",goToContent:f="true",goToContentAnchor:m="#main",goToContentText:x=("fr"===s?"Passer au contenu":"Skip to content"),searchPlaceholder:b=("fr"===s?"Rechercher…":"Search…"),searchInputName:y="q",submitSearchText:T=("fr"===s?"Rechercher":"Search"),displaySearchText:v=("fr"===s?"Cliquer pour faire une recherche":"Click to search"),hideSearchText:w=("fr"===s?"Masquer la barre de recherche":"Hide search bar"),searchFormAction:S="#",enableSearch:U="false",showSearch:_="false"}=e;let q,A="qc-container",L=!1;E((()=>{n(20,A+="true"===c?"-fluid":""),"true"===_&&(n(0,U="true"),n(21,L=!0))}));return t.$$set=t=>{"logoUrl"in t&&n(1,i=t.logoUrl),"fullWidth"in t&&n(23,c=t.fullWidth),"logoSrc"in t&&n(2,l=t.logoSrc),"logoAlt"in t&&n(3,a=t.logoAlt),"titleUrl"in t&&n(4,u=t.titleUrl),"titleText"in t&&n(5,h=t.titleText),"altLanguageText"in t&&n(6,$=t.altLanguageText),"altLanguageUrl"in t&&n(7,d=t.altLanguageUrl),"joinUsText"in t&&n(8,g=t.joinUsText),"joinUsUrl"in t&&n(9,p=t.joinUsUrl),"goToContent"in t&&n(10,f=t.goToContent),"goToContentAnchor"in t&&n(11,m=t.goToContentAnchor),"goToContentText"in t&&n(12,x=t.goToContentText),"searchPlaceholder"in t&&n(13,b=t.searchPlaceholder),"searchInputName"in t&&n(14,y=t.searchInputName),"submitSearchText"in t&&n(15,T=t.submitSearchText),"displaySearchText"in t&&n(16,v=t.displaySearchText),"hideSearchText"in t&&n(17,w=t.hideSearchText),"searchFormAction"in t&&n(18,S=t.searchFormAction),"enableSearch"in t&&n(0,U=t.enableSearch),"showSearch"in t&&n(24,_=t.showSearch),"$$scope"in t&&n(25,r=t.$$scope)},[U,i,l,a,u,h,$,d,g,p,f,m,x,b,y,T,v,w,S,function(){L&&q.focus()},A,L,q,c,_,r,o,()=>n(21,L=!L),function(t){P[t?"unshift":"push"]((()=>{q=t,n(22,q)}))}]}customElements.define("qc-piv-header",tt(class extends et{constructor(t){super(),X(this,t,yt,bt,s,{logoUrl:1,fullWidth:23,logoSrc:2,logoAlt:3,titleUrl:4,titleText:5,altLanguageText:6,altLanguageUrl:7,joinUsText:8,joinUsUrl:9,goToContent:10,goToContentAnchor:11,goToContentText:12,searchPlaceholder:13,searchInputName:14,submitSearchText:15,displaySearchText:16,hideSearchText:17,searchFormAction:18,enableSearch:0,showSearch:24,focusOnSearchInput:19})}get logoUrl(){return this.$$.ctx[1]}set logoUrl(t){this.$$set({logoUrl:t}),R()}get fullWidth(){return this.$$.ctx[23]}set fullWidth(t){this.$$set({fullWidth:t}),R()}get logoSrc(){return this.$$.ctx[2]}set logoSrc(t){this.$$set({logoSrc:t}),R()}get logoAlt(){return this.$$.ctx[3]}set logoAlt(t){this.$$set({logoAlt:t}),R()}get titleUrl(){return this.$$.ctx[4]}set titleUrl(t){this.$$set({titleUrl:t}),R()}get titleText(){return this.$$.ctx[5]}set titleText(t){this.$$set({titleText:t}),R()}get altLanguageText(){return this.$$.ctx[6]}set altLanguageText(t){this.$$set({altLanguageText:t}),R()}get altLanguageUrl(){return this.$$.ctx[7]}set altLanguageUrl(t){this.$$set({altLanguageUrl:t}),R()}get joinUsText(){return this.$$.ctx[8]}set joinUsText(t){this.$$set({joinUsText:t}),R()}get joinUsUrl(){return this.$$.ctx[9]}set joinUsUrl(t){this.$$set({joinUsUrl:t}),R()}get goToContent(){return this.$$.ctx[10]}set goToContent(t){this.$$set({goToContent:t}),R()}get goToContentAnchor(){return this.$$.ctx[11]}set goToContentAnchor(t){this.$$set({goToContentAnchor:t}),R()}get goToContentText(){return this.$$.ctx[12]}set goToContentText(t){this.$$set({goToContentText:t}),R()}get searchPlaceholder(){return this.$$.ctx[13]}set searchPlaceholder(t){this.$$set({searchPlaceholder:t}),R()}get searchInputName(){return this.$$.ctx[14]}set searchInputName(t){this.$$set({searchInputName:t}),R()}get submitSearchText(){return this.$$.ctx[15]}set submitSearchText(t){this.$$set({submitSearchText:t}),R()}get displaySearchText(){return this.$$.ctx[16]}set displaySearchText(t){this.$$set({displaySearchText:t}),R()}get hideSearchText(){return this.$$.ctx[17]}set hideSearchText(t){this.$$set({hideSearchText:t}),R()}get searchFormAction(){return this.$$.ctx[18]}set searchFormAction(t){this.$$set({searchFormAction:t}),R()}get enableSearch(){return this.$$.ctx[0]}set enableSearch(t){this.$$set({enableSearch:t}),R()}get showSearch(){return this.$$.ctx[24]}set showSearch(t){this.$$set({showSearch:t}),R()}get focusOnSearchInput(){return this.$$.ctx[19]}},{logoUrl:{attribute:"logo-url"},fullWidth:{attribute:"full-width"},logoSrc:{attribute:"logo-src"},logoAlt:{attribute:"logo-alt"},titleUrl:{attribute:"title-url"},titleText:{attribute:"title-text"},altLanguageText:{attribute:"alt-language-text"},altLanguageUrl:{attribute:"alt-language-url"},joinUsText:{attribute:"join-us-text"},joinUsUrl:{attribute:"join-us-url"},goToContent:{attribute:"go-to-content"},goToContentAnchor:{attribute:"go-to-content-anchor"},goToContentText:{attribute:"go-to-content-text"},searchPlaceholder:{attribute:"search-placeholder"},searchInputName:{attribute:"search-input-name"},submitSearchText:{attribute:"submit-search-text"},displaySearchText:{attribute:"display-search-text"},hideSearchText:{attribute:"hide-search-text"},searchFormAction:{attribute:"search-form-action"},enableSearch:{attribute:"enable-search"},showSearch:{attribute:"show-search"}},["links","search-zone"],["focusOnSearchInput"],!0));const Tt=t=>({}),vt=t=>({}),wt=t=>({}),St=t=>({});function Ut(t){let e,n,o,r,s,i,a,d,y,T;const w=t[8].default,S=l(w,t,t[7],null),U=t[8].logo,q=l(U,t,t[7],St),A=q||function(t){let e,n,o;return{c(){e=m("a"),n=m("img"),v(n,"class","logo-mo"),v(n,"alt",t[2]),c(n.src,o=t[1])||v(n,"src",o),v(n,"width",t[3]),v(n,"height",t[4]),v(e,"href",t[0])},m(t,o){p(t,e,o),g(e,n)},p(t,r){4&r&&v(n,"alt",t[2]),2&r&&!c(n.src,o=t[1])&&v(n,"src",o),8&r&&v(n,"width",t[3]),16&r&&v(n,"height",t[4]),1&r&&v(e,"href",t[0])},d(t){t&&f(e)}}}(t),L=t[8].copyright,k=l(L,t,t[7],vt),E=k||function(t){let e,n;return{c(){e=m("a"),n=x(t[5]),v(e,"href",t[6])},m(t,o){p(t,e,o),g(e,n)},p(t,o){32&o&&_(n,t[5]),64&o&&v(e,"href",t[6])},d(t){t&&f(e)}}}(t);return{c(){e=m("div"),n=m("div"),o=m("nav"),S&&S.c(),r=b(),s=m("div"),A&&A.c(),i=b(),a=m("span"),E&&E.c(),d=b(),y=m("link"),v(s,"class","logo"),v(a,"class","copyright"),v(n,"class","qc-container"),v(e,"class","qc-piv-footer qc-component"),v(y,"rel","stylesheet"),v(y,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,c){p(t,e,c),g(e,n),g(n,o),S&&S.m(o,null),g(n,r),g(n,s),A&&A.m(s,null),g(n,i),g(n,a),E&&E.m(a,null),p(t,d,c),p(t,y,c),T=!0},p(t,[e]){S&&S.p&&(!T||128&e)&&h(S,w,t,t[7],T?u(w,t[7],e,null):$(t[7]),null),q?q.p&&(!T||128&e)&&h(q,U,t,t[7],T?u(U,t[7],e,wt):$(t[7]),St):A&&A.p&&(!T||31&e)&&A.p(t,T?e:-1),k?k.p&&(!T||128&e)&&h(k,L,t,t[7],T?u(L,t[7],e,Tt):$(t[7]),vt):E&&E.p&&(!T||96&e)&&E.p(t,T?e:-1)},i(t){T||(G(S,t),G(A,t),G(E,t),T=!0)},o(t){J(S,t),J(A,t),J(E,t),T=!1},d(t){t&&(f(e),f(d),f(y)),S&&S.d(t),A&&A.d(t),E&&E.d(t)}}}function _t(t,e,n){let{$$slots:o={},$$scope:r}=e;const s=nt.getPageLanguage();let{logoUrl:i="/",logoSrc:c=`${nt.imagesRelativePath}qc-sprite.svg?v=v1.2.2#logo-quebec-piv-footer`,logoAlt:l="Gouvernement du Québec",logoWidth:a="117",logoHeight:u="35",copyrightText:h="© Gouvernement du Québec, "+(new Date).getFullYear(),copyrightUrl:$=("fr"===s?"https://www.quebec.ca/droit-auteur":"https://www.quebec.ca/en/copyright")}=e;return t.$$set=t=>{"logoUrl"in t&&n(0,i=t.logoUrl),"logoSrc"in t&&n(1,c=t.logoSrc),"logoAlt"in t&&n(2,l=t.logoAlt),"logoWidth"in t&&n(3,a=t.logoWidth),"logoHeight"in t&&n(4,u=t.logoHeight),"copyrightText"in t&&n(5,h=t.copyrightText),"copyrightUrl"in t&&n(6,$=t.copyrightUrl),"$$scope"in t&&n(7,r=t.$$scope)},[i,c,l,a,u,h,$,r,o]}function qt(t){let e,n,o,r,s,i,c,a,d,x;const y=t[11].default,T=l(y,t,t[10],null);let w="true"===t[1]&&At(t);return{c(){e=m("div"),n=m("div"),o=m("div"),s=b(),i=m("div"),c=new A(!1),a=b(),T&&T.c(),d=b(),w&&w.c(),v(o,"class",r="qc-icon qc-"+t[0]+"-alert-icon"),v(o,"aria-hidden","true"),c.a=a,v(i,"class","qc-alert-content"),v(n,"class","qc-container qc-general-alert-elements"),v(e,"class","qc-general-alert "+t[5]),v(e,"role","alert"),v(e,"aria-label",t[7])},m(r,l){p(r,e,l),g(e,n),g(n,o),g(n,s),g(n,i),c.m(t[2],i),g(i,a),T&&T.m(i,null),g(n,d),w&&w.m(n,null),t[12](e),x=!0},p(t,e){(!x||1&e&&r!==(r="qc-icon qc-"+t[0]+"-alert-icon"))&&v(o,"class",r),(!x||4&e)&&c.p(t[2]),T&&T.p&&(!x||1024&e)&&h(T,y,t,t[10],x?u(y,t[10],e,null):$(t[10]),null),"true"===t[1]?w?w.p(t,e):(w=At(t),w.c(),w.m(n,null)):w&&(w.d(1),w=null)},i(t){x||(G(T,t),x=!0)},o(t){J(T,t),x=!1},d(n){n&&f(e),T&&T.d(n),w&&w.d(),t[12](null)}}}function At(e){let n,o,r,s,i;return{c(){n=m("div"),o=m("button"),r=m("span"),v(r,"aria-hidden","true"),v(r,"class","qc-icon qc-xclose-blue qc-close-alert-icon"),v(o,"type","button"),v(o,"class","qc-close"),v(o,"aria-label",e[6]),v(n,"class","qc-alert-close")},m(t,c){p(t,n,c),g(n,o),g(o,r),s||(i=y(o,"click",e[8]),s=!0)},p:t,d(t){t&&f(n),s=!1,i()}}}function Lt(t){let e,n,o,r=!t[4]&&qt(t);return{c(){r&&r.c(),e=b(),n=m("link"),v(n,"rel","stylesheet"),v(n,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,s){r&&r.m(t,s),p(t,e,s),p(t,n,s),o=!0},p(t,[n]){t[4]?r&&(Q(),J(r,1,1,(()=>{r=null})),Y()):r?(r.p(t,n),16&n&&G(r,1)):(r=qt(t),r.c(),G(r,1),r.m(e.parentNode,e))},i(t){o||(G(r),o=!0)},o(t){J(r),o=!1},d(t){t&&(f(e),f(n)),r&&r.d(t)}}}function kt(t,e,n){let o,r,{$$slots:s={},$$scope:i}=e,{type:c="general",maskable:l="",content:a="",hide:u="false"}=e,h=""!==c?c:"general",$="fr"===nt.getPageLanguage()?"Fermer":"Close",d="fr"===nt.getPageLanguage()?"Information d'importance élevée":"Information of high importance",g="fr"===nt.getPageLanguage()?"Information importante":"Important information",p="general"===c?g:d;return t.$$set=t=>{"type"in t&&n(0,c=t.type),"maskable"in t&&n(1,l=t.maskable),"content"in t&&n(2,a=t.content),"hide"in t&&n(9,u=t.hide),"$$scope"in t&&n(10,i=t.$$scope)},t.$$.update=()=>{512&t.$$.dirty&&n(4,r="true"===u)},[c,l,a,o,r,h,$,p,function(){n(9,u="true"),o.dispatchEvent(new CustomEvent("qc.alert.hide",{bubbles:!0,composed:!0}))},u,i,s,function(t){P[t?"unshift":"push"]((()=>{o=t,n(3,o)}))}]}customElements.define("qc-piv-footer",tt(class extends et{constructor(t){super(),X(this,t,_t,Ut,s,{logoUrl:0,logoSrc:1,logoAlt:2,logoWidth:3,logoHeight:4,copyrightText:5,copyrightUrl:6})}get logoUrl(){return this.$$.ctx[0]}set logoUrl(t){this.$$set({logoUrl:t}),R()}get logoSrc(){return this.$$.ctx[1]}set logoSrc(t){this.$$set({logoSrc:t}),R()}get logoAlt(){return this.$$.ctx[2]}set logoAlt(t){this.$$set({logoAlt:t}),R()}get logoWidth(){return this.$$.ctx[3]}set logoWidth(t){this.$$set({logoWidth:t}),R()}get logoHeight(){return this.$$.ctx[4]}set logoHeight(t){this.$$set({logoHeight:t}),R()}get copyrightText(){return this.$$.ctx[5]}set copyrightText(t){this.$$set({copyrightText:t}),R()}get copyrightUrl(){return this.$$.ctx[6]}set copyrightUrl(t){this.$$set({copyrightUrl:t}),R()}},{logoUrl:{attribute:"logo-url"},logoSrc:{},logoAlt:{attribute:"logo-alt"},logoWidth:{attribute:"logo-width"},logoHeight:{attribute:"logo-height"},copyrightText:{attribute:"copyrightText"},copyrightUrl:{attribute:"copyright-url"}},["default","logo","copyright"],[],!0));customElements.define("qc-alert",tt(class extends et{constructor(t){super(),X(this,t,kt,Lt,s,{type:0,maskable:1,content:2,hide:9})}get type(){return this.$$.ctx[0]}set type(t){this.$$set({type:t}),R()}get maskable(){return this.$$.ctx[1]}set maskable(t){this.$$set({maskable:t}),R()}get content(){return this.$$.ctx[2]}set content(t){this.$$set({content:t}),R()}get hide(){return this.$$.ctx[9]}set hide(t){this.$$set({hide:t}),R()}},{type:{},maskable:{},content:{},hide:{}},["default"],[],!0));const{window:Et}=d;function Ct(e){let n,r,s,i,c,l,a;return{c(){n=m("a"),r=m("span"),s=x(e[0]),i=b(),c=m("link"),v(n,"href"," "),v(n,"class","qc-to-top qc-icon qc-arrow-up-white"),v(n,"tabindex","0"),v(n,"demo",e[1]),q(n,"visible",e[2]),v(c,"rel","stylesheet"),v(c,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,o){p(t,n,o),g(n,r),g(r,s),e[5](n),p(t,i,o),p(t,c,o),l||(a=[y(Et,"scroll",e[4]),y(n,"click",T(Pt)),y(n,"keydown",Nt)],l=!0)},p(t,[e]){1&e&&_(s,t[0]),2&e&&v(n,"demo",t[1]),4&e&&q(n,"visible",t[2])},i:t,o:t,d(t){t&&(f(n),f(i),f(c)),e[5](null),l=!1,o(a)}}}function Pt(){window.scrollTo({top:0,behavior:"smooth"})}function Nt(t){switch(t.code){case"Enter":case"Space":t.preventDefault(),Pt()}}function jt(t,e,n){const o=nt.getPageLanguage();let r,{alt:s=("fr"===o?"Retour en haut":"Back to top"),demo:i="false"}=e,c=0,l="true"===i,a=l;return t.$$set=t=>{"alt"in t&&n(0,s=t.alt),"demo"in t&&n(1,i=t.demo)},[s,i,l,r,function(){if("true"===i)return;let t=window.innerHeight+window.scrollY>=document.body.offsetHeight-1;n(2,l=c>window.scrollY&&(document.body.scrollTop>0||document.documentElement.scrollTop>0)&&!t),!l&&a&&r.blur(),a=l,c=window.scrollY},function(t){P[t?"unshift":"push"]((()=>{r=t,n(3,r)}))}]}customElements.define("qc-to-top",tt(class extends et{constructor(t){super(),X(this,t,jt,Ct,s,{alt:0,demo:1})}get alt(){return this.$$.ctx[0]}set alt(t){this.$$set({alt:t}),R()}get demo(){return this.$$.ctx[1]}set demo(t){this.$$set({demo:t}),R()}},{alt:{},demo:{}},[],[],!0))}();
|
|
1
|
+
!function(){"use strict";function t(){}function e(t){return t()}function n(){return Object.create(null)}function o(t){t.forEach(e)}function r(t){return"function"==typeof t}function s(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}let i;function c(t,e){return t===e||(i||(i=document.createElement("a")),i.href=e,t===i.href)}function l(t,e,n,o){if(t){const r=a(t,e,n,o);return t[0](r)}}function a(t,e,n,o){return t[1]&&o?function(t,e){for(const n in e)t[n]=e[n];return t}(n.ctx.slice(),t[1](o(e))):n.ctx}function u(t,e,n,o){if(t[2]&&o){const r=t[2](o(n));if(void 0===e.dirty)return r;if("object"==typeof r){const t=[],n=Math.max(e.dirty.length,r.length);for(let o=0;o<n;o+=1)t[o]=e.dirty[o]|r[o];return t}return e.dirty|r}return e.dirty}function h(t,e,n,o,r,s){if(r){const i=a(e,n,o,s);t.p(i,r)}}function $(t){if(t.ctx.length>32){const e=[],n=t.ctx.length/32;for(let t=0;t<n;t++)e[t]=-1;return e}return-1}const d="undefined"!=typeof window?window:"undefined"!=typeof globalThis?globalThis:global;function g(t,e){t.appendChild(e)}function p(t,e,n){t.insertBefore(e,n||null)}function f(t){t.parentNode&&t.parentNode.removeChild(t)}function m(t){return document.createElement(t)}function x(t){return document.createTextNode(t)}function b(){return x(" ")}function y(t,e,n,o){return t.addEventListener(e,n,o),()=>t.removeEventListener(e,n,o)}function T(t){return function(e){return e.preventDefault(),t.call(this,e)}}function v(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}const w=["width","height"];function S(t,e){const n=Object.getOwnPropertyDescriptors(t.__proto__);for(const o in e)null==e[o]?t.removeAttribute(o):"style"===o?t.style.cssText=e[o]:"__value"===o?t.value=t[o]=e[o]:n[o]&&n[o].set&&-1===w.indexOf(o)?t[o]=e[o]:v(t,o,e[o])}function U(t,e){Object.keys(e).forEach((n=>{!function(t,e,n){const o=e.toLowerCase();o in t?t[o]="boolean"==typeof t[o]&&""===n||n:e in t?t[e]="boolean"==typeof t[e]&&""===n||n:v(t,e,n)}(t,n,e[n])}))}function _(t,e){e=""+e,t.data!==e&&(t.data=e)}function q(t,e,n){t.classList.toggle(e,!!n)}class A{is_svg=!1;e=void 0;n=void 0;t=void 0;a=void 0;constructor(t=!1){this.is_svg=t,this.e=this.n=null}c(t){this.h(t)}m(t,e,n=null){var o;this.e||(this.is_svg?this.e=(o=e.nodeName,document.createElementNS("http://www.w3.org/2000/svg",o)):this.e=m(11===e.nodeType?"TEMPLATE":e.nodeName),this.t="TEMPLATE"!==e.tagName?e:e.content,this.c(t)),this.i(n)}h(t){this.e.innerHTML=t,this.n=Array.from("TEMPLATE"===this.e.nodeName?this.e.content.childNodes:this.e.childNodes)}i(t){for(let e=0;e<this.n.length;e+=1)p(this.t,this.n[e],t)}p(t){this.d(),this.h(t),this.i(this.a)}d(){this.n.forEach(f)}}let L;function k(t){L=t}function E(t){(function(){if(!L)throw new Error("Function called outside component initialization");return L})().$$.on_mount.push(t)}const C=[],P=[];let N=[];const j=[],O=Promise.resolve();let F=!1;function I(t){N.push(t)}const W=new Set;let H=0;function R(){if(0!==H)return;const t=L;do{try{for(;H<C.length;){const t=C[H];H++,k(t),M(t.$$)}}catch(t){throw C.length=0,H=0,t}for(k(null),C.length=0,H=0;P.length;)P.pop()();for(let t=0;t<N.length;t+=1){const e=N[t];W.has(e)||(W.add(e),e())}N.length=0}while(C.length);for(;j.length;)j.pop()();F=!1,W.clear(),k(t)}function M(t){if(null!==t.fragment){t.update(),o(t.before_update);const e=t.dirty;t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(I)}}const B=new Set;let z,D;function Q(){z={r:0,c:[],p:z}}function Y(){z.r||o(z.c),z=z.p}function G(t,e){t&&t.i&&(B.delete(t),t.i(e))}function J(t,e,n,o){if(t&&t.o){if(B.has(t))return;B.add(t),z.c.push((()=>{B.delete(t),o&&(n&&t.d(1),o())})),t.o(e)}else o&&o()}function K(t,e){const n=t.$$;null!==n.fragment&&(!function(t){const e=[],n=[];N.forEach((o=>-1===t.indexOf(o)?e.push(o):n.push(o))),n.forEach((t=>t())),N=e}(n.after_update),o(n.on_destroy),n.fragment&&n.fragment.d(e),n.on_destroy=n.fragment=null,n.ctx=[])}function V(t,e){-1===t.$$.dirty[0]&&(C.push(t),F||(F=!0,O.then(R)),t.$$.dirty.fill(0)),t.$$.dirty[e/31|0]|=1<<e%31}function X(s,i,c,l,a,u,h=null,$=[-1]){const d=L;k(s);const g=s.$$={fragment:null,ctx:[],props:u,update:t,not_equal:a,bound:n(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(i.context||(d?d.$$.context:[])),callbacks:n(),dirty:$,skip_bound:!1,root:i.target||d.$$.root};h&&h(g.root);let p=!1;if(g.ctx=c?c(s,i.props||{},((t,e,...n)=>{const o=n.length?n[0]:e;return g.ctx&&a(g.ctx[t],g.ctx[t]=o)&&(!g.skip_bound&&g.bound[t]&&g.bound[t](o),p&&V(s,t)),e})):[],g.update(),p=!0,o(g.before_update),g.fragment=!!l&&l(g.ctx),i.target){if(i.hydrate){const t=function(t){return Array.from(t.childNodes)}(i.target);g.fragment&&g.fragment.l(t),t.forEach(f)}else g.fragment&&g.fragment.c();i.intro&&G(s.$$.fragment),function(t,n,s){const{fragment:i,after_update:c}=t.$$;i&&i.m(n,s),I((()=>{const n=t.$$.on_mount.map(e).filter(r);t.$$.on_destroy?t.$$.on_destroy.push(...n):o(n),t.$$.on_mount=[]})),c.forEach(I)}(s,i.target,i.anchor),R()}k(d)}function Z(t,e,n,o){const r=n[t]?.type;if(e="Boolean"===r&&"boolean"!=typeof e?null!=e:e,!o||!n[t])return e;if("toAttribute"===o)switch(r){case"Object":case"Array":return null==e?null:JSON.stringify(e);case"Boolean":return e?"":null;case"Number":return null==e?null:e;default:return e}else switch(r){case"Object":case"Array":return e&&JSON.parse(e);case"Boolean":default:return e;case"Number":return null!=e?+e:e}}function tt(t,e,n,o,r,s){let i=class extends D{constructor(){super(t,n,r),this.$$p_d=e}static get observedAttributes(){return Object.keys(e).map((t=>(e[t].attribute||t).toLowerCase()))}};return Object.keys(e).forEach((t=>{Object.defineProperty(i.prototype,t,{get(){return this.$$c&&t in this.$$c?this.$$c[t]:this.$$d[t]},set(n){n=Z(t,n,e),this.$$d[t]=n,this.$$c?.$set({[t]:n})}})})),o.forEach((t=>{Object.defineProperty(i.prototype,t,{get(){return this.$$c?.[t]}})})),s&&(i=s(i)),t.element=i,i}"function"==typeof HTMLElement&&(D=class extends HTMLElement{$$ctor;$$s;$$c;$$cn=!1;$$d={};$$r=!1;$$p_d={};$$l={};$$l_u=new Map;constructor(t,e,n){super(),this.$$ctor=t,this.$$s=e,n&&this.attachShadow({mode:"open"})}addEventListener(t,e,n){if(this.$$l[t]=this.$$l[t]||[],this.$$l[t].push(e),this.$$c){const n=this.$$c.$on(t,e);this.$$l_u.set(e,n)}super.addEventListener(t,e,n)}removeEventListener(t,e,n){if(super.removeEventListener(t,e,n),this.$$c){const t=this.$$l_u.get(e);t&&(t(),this.$$l_u.delete(e))}}async connectedCallback(){if(this.$$cn=!0,!this.$$c){if(await Promise.resolve(),!this.$$cn||this.$$c)return;function t(t){return()=>{let e;return{c:function(){e=m("slot"),"default"!==t&&v(e,"name",t)},m:function(t,n){p(t,e,n)},d:function(t){t&&f(e)}}}}const e={},n=function(t){const e={};return t.childNodes.forEach((t=>{e[t.slot||"default"]=!0})),e}(this);for(const r of this.$$s)r in n&&(e[r]=[t(r)]);for(const s of this.attributes){const i=this.$$g_p(s.name);i in this.$$d||(this.$$d[i]=Z(i,s.value,this.$$p_d,"toProp"))}for(const c in this.$$p_d)c in this.$$d||void 0===this[c]||(this.$$d[c]=this[c],delete this[c]);this.$$c=new this.$$ctor({target:this.shadowRoot||this,props:{...this.$$d,$$slots:e,$$scope:{ctx:[]}}});const o=()=>{this.$$r=!0;for(const t in this.$$p_d)if(this.$$d[t]=this.$$c.$$.ctx[this.$$c.$$.props[t]],this.$$p_d[t].reflect){const e=Z(t,this.$$d[t],this.$$p_d,"toAttribute");null==e?this.removeAttribute(this.$$p_d[t].attribute||t):this.setAttribute(this.$$p_d[t].attribute||t,e)}this.$$r=!1};this.$$c.$$.after_update.push(o),o();for(const l in this.$$l)for(const a of this.$$l[l]){const u=this.$$c.$on(l,a);this.$$l_u.set(a,u)}this.$$l={}}}attributeChangedCallback(t,e,n){this.$$r||(t=this.$$g_p(t),this.$$d[t]=Z(t,n,this.$$p_d,"toProp"),this.$$c?.$set({[t]:this.$$d[t]}))}disconnectedCallback(){this.$$cn=!1,Promise.resolve().then((()=>{this.$$cn||(this.$$c.$destroy(),this.$$c=void 0)}))}$$g_p(t){return Object.keys(this.$$p_d).find((e=>this.$$p_d[e].attribute===t||!this.$$p_d[e].attribute&&e.toLowerCase()===t))||t}});class et{$$=void 0;$$set=void 0;$destroy(){K(this,1),this.$destroy=t}$on(e,n){if(!r(n))return t;const o=this.$$.callbacks[e]||(this.$$.callbacks[e]=[]);return o.push(n),()=>{const t=o.indexOf(n);-1!==t&&o.splice(t,1)}}$set(t){var e;this.$$set&&(e=t,0!==Object.keys(e).length)&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}"undefined"!=typeof window&&(window.__svelte||(window.__svelte={v:new Set})).v.add("4");class nt{static assetsBasePath=new URL(document.currentScript.src).pathname.split("/").slice(0,-2).join("/")||".";static cssRelativePath=`${this.assetsBasePath}/css/`.replace("//","/");static imagesRelativePath=`${this.assetsBasePath}/img/`.replace("//","/");static cssFileName=document.currentScript.getAttribute("sdg-css-filename")||"qc-sdg.min.css";static sharedTexts={openInNewTab:{fr:"Ce lien s’ouvrira dans un nouvel onglet.",en:"This link will open in a new tab."}};static getPageLanguage(){return document.getElementsByTagName("html")[0].getAttribute("lang")||"fr"}}function ot(t){let e,n;return{c(){var o;e=m(t[1]),n=x(t[2]),(o=t[1],/-/.test(o)?U:S)(e,{class:"title"})},m(t,o){p(t,e,o),g(e,n)},p(t,e){4&e&&_(n,t[2])},d(t){t&&f(e)}}}function rt(t){let e,n,o,r,i,c,a,d,x,y,T,w,S,U,_,q=t[1],L=t[1]&&ot(t);const k=t[5].default,E=l(k,t,t[4],null);return{c(){e=m("div"),n=m("div"),o=m("div"),i=b(),c=m("div"),a=m("div"),L&&L.c(),d=b(),x=m("div"),y=new A(!1),T=b(),E&&E.c(),S=b(),U=m("link"),v(o,"aria-hidden","true"),v(o,"class",r="qc-icon qc-"+t[0]),v(n,"class","icon-container"),y.a=T,v(x,"class","text"),v(a,"class","content"),v(c,"class","content-container"),v(e,"class",w="qc-component qc-notice qc-"+t[0]),v(e,"tabindex","0"),v(U,"rel","stylesheet"),v(U,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(r,s){p(r,e,s),g(e,n),g(n,o),g(e,i),g(e,c),g(c,a),L&&L.m(a,null),g(a,d),g(a,x),y.m(t[3],x),g(x,T),E&&E.m(x,null),p(r,S,s),p(r,U,s),_=!0},p(t,[n]){(!_||1&n&&r!==(r="qc-icon qc-"+t[0]))&&v(o,"class",r),t[1]?q?s(q,t[1])?(L.d(1),L=ot(t),q=t[1],L.c(),L.m(a,d)):L.p(t,n):(L=ot(t),q=t[1],L.c(),L.m(a,d)):q&&(L.d(1),L=null,q=t[1]),(!_||8&n)&&y.p(t[3]),E&&E.p&&(!_||16&n)&&h(E,k,t,t[4],_?u(k,t[4],n,null):$(t[4]),null),(!_||1&n&&w!==(w="qc-component qc-notice qc-"+t[0]))&&v(e,"class",w)},i(t){_||(G(E,t),_=!0)},o(t){J(E,t),_=!1},d(t){t&&(f(e),f(S),f(U)),L&&L.d(t),E&&E.d(t)}}}function st(t,e,n){let{$$slots:o={},$$scope:r}=e;const s="h2",i="information",c=["information","warning","success","error"];let{title:l="",type:a=i,content:u="",header:h=s}=e;return E((()=>{n(1,h=h.match(/h[1-6]/)?h:s),n(0,a=c.includes(a)?a:i)})),t.$$set=t=>{"title"in t&&n(2,l=t.title),"type"in t&&n(0,a=t.type),"content"in t&&n(3,u=t.content),"header"in t&&n(1,h=t.header),"$$scope"in t&&n(4,r=t.$$scope)},[a,h,l,u,r,o]}customElements.define("qc-notice",tt(class extends et{constructor(t){super(),X(this,t,st,rt,s,{title:2,type:0,content:3,header:1})}get title(){return this.$$.ctx[2]}set title(t){this.$$set({title:t}),R()}get type(){return this.$$.ctx[0]}set type(t){this.$$set({type:t}),R()}get content(){return this.$$.ctx[3]}set content(t){this.$$set({content:t}),R()}get header(){return this.$$.ctx[1]}set header(t){this.$$set({header:t}),R()}},{title:{},type:{},content:{},header:{}},["default"],[],!0));const it=t=>({}),ct=t=>({}),lt=t=>({}),at=t=>({});function ut(t){let e,n,o;return{c(){e=m("div"),n=m("a"),o=x(t[12]),v(n,"href",t[11]),v(e,"class","go-to-content")},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){4096&e&&_(o,t[12]),2048&e&&v(n,"href",t[11])},d(t){t&&f(e)}}}function ht(t){let e,n,o,r;return{c(){e=m("div"),n=m("a"),o=m("span"),r=x(t[5]),v(n,"href",t[4]),v(e,"class","title")},m(t,s){p(t,e,s),g(e,n),g(n,o),g(o,r)},p(t,e){32&e&&_(r,t[5]),16&e&&v(n,"href",t[4])},d(t){t&&f(e)}}}function $t(t){let e,n,r,s,i,c=(t[21]?t[17]:t[16])+"";return{c(){e=m("a"),n=m("span"),r=x(c),v(e,"class","qc-icon qc-search"),v(e,"href","/"),v(e,"role","button")},m(o,c){p(o,e,c),g(e,n),g(n,r),s||(i=[y(e,"click",T(t[27])),y(e,"click",t[19])],s=!0)},p(t,e){2293760&e&&c!==(c=(t[21]?t[17]:t[16])+"")&&_(r,c)},d(t){t&&f(e),s=!1,o(i)}}}function dt(t){let e,n,o=t[7]&>(t),r=t[9]&&pt(t);return{c(){e=m("ul"),o&&o.c(),n=b(),r&&r.c()},m(t,s){p(t,e,s),o&&o.m(e,null),g(e,n),r&&r.m(e,null)},p(t,s){t[7]?o?o.p(t,s):(o=gt(t),o.c(),o.m(e,n)):o&&(o.d(1),o=null),t[9]?r?r.p(t,s):(r=pt(t),r.c(),r.m(e,null)):r&&(r.d(1),r=null)},d(t){t&&f(e),o&&o.d(),r&&r.d()}}}function gt(t){let e,n,o;return{c(){e=m("li"),n=m("a"),o=x(t[6]),v(n,"href",t[7])},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){64&e&&_(o,t[6]),128&e&&v(n,"href",t[7])},d(t){t&&f(e)}}}function pt(t){let e,n,o;return{c(){e=m("li"),n=m("a"),o=x(t[8]),v(n,"href",t[9])},m(t,r){p(t,e,r),g(e,n),g(n,o)},p(t,e){256&e&&_(o,t[8]),512&e&&v(n,"href",t[9])},d(t){t&&f(e)}}}function ft(t){let e,n=(t[9]||t[7])&&dt(t);return{c(){n&&n.c(),e=x("")},m(t,o){n&&n.m(t,o),p(t,e,o)},p(t,o){t[9]||t[7]?n?n.p(t,o):(n=dt(t),n.c(),n.m(e.parentNode,e)):n&&(n.d(1),n=null)},d(t){t&&f(e),n&&n.d(t)}}}function mt(t){let e,n,o,r;return{c(){e=m("div"),n=m("a"),o=m("span"),r=x(t[5]),v(n,"href",t[4]),v(e,"class","title")},m(t,s){p(t,e,s),g(e,n),g(n,o),g(o,r)},p(t,e){32&e&&_(r,t[5]),16&e&&v(n,"href",t[4])},d(t){t&&f(e)}}}function xt(t){let e,n;const o=t[26]["search-zone"],r=l(o,t,t[25],ct),s=r||function(t){let e,n,o,r,s,i,c,l,a;return{c(){e=m("form"),n=m("div"),o=m("input"),r=b(),s=m("button"),i=m("span"),c=b(),l=m("span"),a=x(t[15]),v(o,"type","text"),v(o,"placeholder",t[13]),v(o,"name",t[14]),v(i,"class","qc-icon qc-search-submit"),v(l,"class","sr-description"),v(n,"class","input-group"),v(e,"method","get"),v(e,"action",t[18])},m(u,h){p(u,e,h),g(e,n),g(n,o),t[28](o),g(n,r),g(n,s),g(s,i),g(s,c),g(s,l),g(l,a)},p(t,n){8192&n&&v(o,"placeholder",t[13]),16384&n&&v(o,"name",t[14]),32768&n&&_(a,t[15]),262144&n&&v(e,"action",t[18])},d(n){n&&f(e),t[28](null)}}}(t);return{c(){e=m("div"),s&&s.c(),v(e,"class","search-zone")},m(t,o){p(t,e,o),s&&s.m(e,null),n=!0},p(t,e){r?r.p&&(!n||33554432&e)&&h(r,o,t,t[25],n?u(o,t[25],e,it):$(t[25]),ct):s&&s.p&&(!n||4513792&e)&&s.p(t,n?e:-1)},i(t){n||(G(s,t),n=!0)},o(t){J(s,t),n=!1},d(t){t&&f(e),s&&s.d(t)}}}function bt(t){let e,n,o,r,s,i,a,d,x,y,T,w,S,U,_,q,A,L,k,E="true"==t[10]&&ut(t),C=t[5]&&ht(t),P="true"==t[0]&&$t(t);const N=t[26].links,j=l(N,t,t[25],at),O=j||ft(t);let F=t[5]&&mt(t),I=t[21]&&xt(t);return{c(){e=m("div"),n=m("div"),E&&E.c(),o=b(),r=m("div"),s=m("div"),i=m("a"),a=m("img"),x=b(),C&&C.c(),y=b(),T=m("div"),P&&P.c(),w=b(),S=m("div"),O&&O.c(),U=b(),_=m("div"),F&&F.c(),q=b(),I&&I.c(),A=b(),L=m("link"),v(a,"alt",t[3]),c(a.src,d=t[2])||v(a,"src",d),v(i,"href",t[1]),v(i,"target","_blank"),v(i,"rel","noreferrer"),v(s,"class","logo"),v(S,"class","links"),v(T,"class","right-section"),v(r,"class","piv-top"),v(_,"class","piv-bottom"),v(n,"class",t[20]),v(e,"class","qc-piv-header qc-component"),v(L,"rel","stylesheet"),v(L,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,c){p(t,e,c),g(e,n),E&&E.m(n,null),g(n,o),g(n,r),g(r,s),g(s,i),g(i,a),g(r,x),C&&C.m(r,null),g(r,y),g(r,T),P&&P.m(T,null),g(T,w),g(T,S),O&&O.m(S,null),g(n,U),g(n,_),F&&F.m(_,null),g(_,q),I&&I.m(_,null),p(t,A,c),p(t,L,c),k=!0},p(t,[e]){"true"==t[10]?E?E.p(t,e):(E=ut(t),E.c(),E.m(n,o)):E&&(E.d(1),E=null),(!k||8&e)&&v(a,"alt",t[3]),(!k||4&e&&!c(a.src,d=t[2]))&&v(a,"src",d),(!k||2&e)&&v(i,"href",t[1]),t[5]?C?C.p(t,e):(C=ht(t),C.c(),C.m(r,y)):C&&(C.d(1),C=null),"true"==t[0]?P?P.p(t,e):(P=$t(t),P.c(),P.m(T,w)):P&&(P.d(1),P=null),j?j.p&&(!k||33554432&e)&&h(j,N,t,t[25],k?u(N,t[25],e,lt):$(t[25]),at):O&&O.p&&(!k||960&e)&&O.p(t,k?e:-1),t[5]?F?F.p(t,e):(F=mt(t),F.c(),F.m(_,q)):F&&(F.d(1),F=null),t[21]?I?(I.p(t,e),2097152&e&&G(I,1)):(I=xt(t),I.c(),G(I,1),I.m(_,null)):I&&(Q(),J(I,1,1,(()=>{I=null})),Y()),(!k||1048576&e)&&v(n,"class",t[20])},i(t){k||(G(O,t),G(I),k=!0)},o(t){J(O,t),J(I),k=!1},d(t){t&&(f(e),f(A),f(L)),E&&E.d(),C&&C.d(),P&&P.d(),O&&O.d(t),F&&F.d(),I&&I.d()}}}function yt(t,e,n){let{$$slots:o={},$$scope:r}=e;const s=nt.getPageLanguage();let{logoUrl:i="/",fullWidth:c="false",logoSrc:l=nt.imagesRelativePath+"quebec-logo.svg",logoAlt:a=("fr"===s?"Logo du gouvernement du Québec":"Logo of government of Québec"),titleUrl:u="/",titleText:h="",altLanguageText:$=("fr"===s?"English":"Français"),altLanguageUrl:d="",joinUsText:g=("fr"===s?"Nous joindre":"Contact us"),joinUsUrl:p="",goToContent:f="true",goToContentAnchor:m="#main",goToContentText:x=("fr"===s?"Passer au contenu":"Skip to content"),searchPlaceholder:b=("fr"===s?"Rechercher…":"Search…"),searchInputName:y="q",submitSearchText:T=("fr"===s?"Rechercher":"Search"),displaySearchText:v=("fr"===s?"Cliquer pour faire une recherche":"Click to search"),hideSearchText:w=("fr"===s?"Masquer la barre de recherche":"Hide search bar"),searchFormAction:S="#",enableSearch:U="false",showSearch:_="false"}=e;let q,A="qc-container",L=!1;E((()=>{n(20,A+="true"===c?"-fluid":""),"true"===_&&(n(0,U="true"),n(21,L=!0))}));return t.$$set=t=>{"logoUrl"in t&&n(1,i=t.logoUrl),"fullWidth"in t&&n(23,c=t.fullWidth),"logoSrc"in t&&n(2,l=t.logoSrc),"logoAlt"in t&&n(3,a=t.logoAlt),"titleUrl"in t&&n(4,u=t.titleUrl),"titleText"in t&&n(5,h=t.titleText),"altLanguageText"in t&&n(6,$=t.altLanguageText),"altLanguageUrl"in t&&n(7,d=t.altLanguageUrl),"joinUsText"in t&&n(8,g=t.joinUsText),"joinUsUrl"in t&&n(9,p=t.joinUsUrl),"goToContent"in t&&n(10,f=t.goToContent),"goToContentAnchor"in t&&n(11,m=t.goToContentAnchor),"goToContentText"in t&&n(12,x=t.goToContentText),"searchPlaceholder"in t&&n(13,b=t.searchPlaceholder),"searchInputName"in t&&n(14,y=t.searchInputName),"submitSearchText"in t&&n(15,T=t.submitSearchText),"displaySearchText"in t&&n(16,v=t.displaySearchText),"hideSearchText"in t&&n(17,w=t.hideSearchText),"searchFormAction"in t&&n(18,S=t.searchFormAction),"enableSearch"in t&&n(0,U=t.enableSearch),"showSearch"in t&&n(24,_=t.showSearch),"$$scope"in t&&n(25,r=t.$$scope)},[U,i,l,a,u,h,$,d,g,p,f,m,x,b,y,T,v,w,S,function(){L&&q.focus()},A,L,q,c,_,r,o,()=>n(21,L=!L),function(t){P[t?"unshift":"push"]((()=>{q=t,n(22,q)}))}]}customElements.define("qc-piv-header",tt(class extends et{constructor(t){super(),X(this,t,yt,bt,s,{logoUrl:1,fullWidth:23,logoSrc:2,logoAlt:3,titleUrl:4,titleText:5,altLanguageText:6,altLanguageUrl:7,joinUsText:8,joinUsUrl:9,goToContent:10,goToContentAnchor:11,goToContentText:12,searchPlaceholder:13,searchInputName:14,submitSearchText:15,displaySearchText:16,hideSearchText:17,searchFormAction:18,enableSearch:0,showSearch:24,focusOnSearchInput:19})}get logoUrl(){return this.$$.ctx[1]}set logoUrl(t){this.$$set({logoUrl:t}),R()}get fullWidth(){return this.$$.ctx[23]}set fullWidth(t){this.$$set({fullWidth:t}),R()}get logoSrc(){return this.$$.ctx[2]}set logoSrc(t){this.$$set({logoSrc:t}),R()}get logoAlt(){return this.$$.ctx[3]}set logoAlt(t){this.$$set({logoAlt:t}),R()}get titleUrl(){return this.$$.ctx[4]}set titleUrl(t){this.$$set({titleUrl:t}),R()}get titleText(){return this.$$.ctx[5]}set titleText(t){this.$$set({titleText:t}),R()}get altLanguageText(){return this.$$.ctx[6]}set altLanguageText(t){this.$$set({altLanguageText:t}),R()}get altLanguageUrl(){return this.$$.ctx[7]}set altLanguageUrl(t){this.$$set({altLanguageUrl:t}),R()}get joinUsText(){return this.$$.ctx[8]}set joinUsText(t){this.$$set({joinUsText:t}),R()}get joinUsUrl(){return this.$$.ctx[9]}set joinUsUrl(t){this.$$set({joinUsUrl:t}),R()}get goToContent(){return this.$$.ctx[10]}set goToContent(t){this.$$set({goToContent:t}),R()}get goToContentAnchor(){return this.$$.ctx[11]}set goToContentAnchor(t){this.$$set({goToContentAnchor:t}),R()}get goToContentText(){return this.$$.ctx[12]}set goToContentText(t){this.$$set({goToContentText:t}),R()}get searchPlaceholder(){return this.$$.ctx[13]}set searchPlaceholder(t){this.$$set({searchPlaceholder:t}),R()}get searchInputName(){return this.$$.ctx[14]}set searchInputName(t){this.$$set({searchInputName:t}),R()}get submitSearchText(){return this.$$.ctx[15]}set submitSearchText(t){this.$$set({submitSearchText:t}),R()}get displaySearchText(){return this.$$.ctx[16]}set displaySearchText(t){this.$$set({displaySearchText:t}),R()}get hideSearchText(){return this.$$.ctx[17]}set hideSearchText(t){this.$$set({hideSearchText:t}),R()}get searchFormAction(){return this.$$.ctx[18]}set searchFormAction(t){this.$$set({searchFormAction:t}),R()}get enableSearch(){return this.$$.ctx[0]}set enableSearch(t){this.$$set({enableSearch:t}),R()}get showSearch(){return this.$$.ctx[24]}set showSearch(t){this.$$set({showSearch:t}),R()}get focusOnSearchInput(){return this.$$.ctx[19]}},{logoUrl:{attribute:"logo-url"},fullWidth:{attribute:"full-width"},logoSrc:{attribute:"logo-src"},logoAlt:{attribute:"logo-alt"},titleUrl:{attribute:"title-url"},titleText:{attribute:"title-text"},altLanguageText:{attribute:"alt-language-text"},altLanguageUrl:{attribute:"alt-language-url"},joinUsText:{attribute:"join-us-text"},joinUsUrl:{attribute:"join-us-url"},goToContent:{attribute:"go-to-content"},goToContentAnchor:{attribute:"go-to-content-anchor"},goToContentText:{attribute:"go-to-content-text"},searchPlaceholder:{attribute:"search-placeholder"},searchInputName:{attribute:"search-input-name"},submitSearchText:{attribute:"submit-search-text"},displaySearchText:{attribute:"display-search-text"},hideSearchText:{attribute:"hide-search-text"},searchFormAction:{attribute:"search-form-action"},enableSearch:{attribute:"enable-search"},showSearch:{attribute:"show-search"}},["links","search-zone"],["focusOnSearchInput"],!0));const Tt=t=>({}),vt=t=>({}),wt=t=>({}),St=t=>({});function Ut(t){let e,n,o,r,s,i,a,d,y,T;const w=t[8].default,S=l(w,t,t[7],null),U=t[8].logo,q=l(U,t,t[7],St),A=q||function(t){let e,n,o;return{c(){e=m("a"),n=m("img"),v(n,"class","logo-mo"),v(n,"alt",t[2]),c(n.src,o=t[1])||v(n,"src",o),v(n,"width",t[3]),v(n,"height",t[4]),v(e,"href",t[0])},m(t,o){p(t,e,o),g(e,n)},p(t,r){4&r&&v(n,"alt",t[2]),2&r&&!c(n.src,o=t[1])&&v(n,"src",o),8&r&&v(n,"width",t[3]),16&r&&v(n,"height",t[4]),1&r&&v(e,"href",t[0])},d(t){t&&f(e)}}}(t),L=t[8].copyright,k=l(L,t,t[7],vt),E=k||function(t){let e,n;return{c(){e=m("a"),n=x(t[5]),v(e,"href",t[6])},m(t,o){p(t,e,o),g(e,n)},p(t,o){32&o&&_(n,t[5]),64&o&&v(e,"href",t[6])},d(t){t&&f(e)}}}(t);return{c(){e=m("div"),n=m("div"),o=m("nav"),S&&S.c(),r=b(),s=m("div"),A&&A.c(),i=b(),a=m("span"),E&&E.c(),d=b(),y=m("link"),v(s,"class","logo"),v(a,"class","copyright"),v(n,"class","qc-container"),v(e,"class","qc-piv-footer qc-component"),v(y,"rel","stylesheet"),v(y,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,c){p(t,e,c),g(e,n),g(n,o),S&&S.m(o,null),g(n,r),g(n,s),A&&A.m(s,null),g(n,i),g(n,a),E&&E.m(a,null),p(t,d,c),p(t,y,c),T=!0},p(t,[e]){S&&S.p&&(!T||128&e)&&h(S,w,t,t[7],T?u(w,t[7],e,null):$(t[7]),null),q?q.p&&(!T||128&e)&&h(q,U,t,t[7],T?u(U,t[7],e,wt):$(t[7]),St):A&&A.p&&(!T||31&e)&&A.p(t,T?e:-1),k?k.p&&(!T||128&e)&&h(k,L,t,t[7],T?u(L,t[7],e,Tt):$(t[7]),vt):E&&E.p&&(!T||96&e)&&E.p(t,T?e:-1)},i(t){T||(G(S,t),G(A,t),G(E,t),T=!0)},o(t){J(S,t),J(A,t),J(E,t),T=!1},d(t){t&&(f(e),f(d),f(y)),S&&S.d(t),A&&A.d(t),E&&E.d(t)}}}function _t(t,e,n){let{$$slots:o={},$$scope:r}=e;const s=nt.getPageLanguage();let{logoUrl:i="/",logoSrc:c=`${nt.imagesRelativePath}qc-sprite.svg?v=v1.2.5#logo-quebec-piv-footer`,logoAlt:l="Gouvernement du Québec",logoWidth:a="117",logoHeight:u="35",copyrightText:h="© Gouvernement du Québec, "+(new Date).getFullYear(),copyrightUrl:$=("fr"===s?"https://www.quebec.ca/droit-auteur":"https://www.quebec.ca/en/copyright")}=e;return t.$$set=t=>{"logoUrl"in t&&n(0,i=t.logoUrl),"logoSrc"in t&&n(1,c=t.logoSrc),"logoAlt"in t&&n(2,l=t.logoAlt),"logoWidth"in t&&n(3,a=t.logoWidth),"logoHeight"in t&&n(4,u=t.logoHeight),"copyrightText"in t&&n(5,h=t.copyrightText),"copyrightUrl"in t&&n(6,$=t.copyrightUrl),"$$scope"in t&&n(7,r=t.$$scope)},[i,c,l,a,u,h,$,r,o]}function qt(t){let e,n,o,r,s,i,c,a,d,x;const y=t[11].default,T=l(y,t,t[10],null);let w="true"===t[1]&&At(t);return{c(){e=m("div"),n=m("div"),o=m("div"),s=b(),i=m("div"),c=new A(!1),a=b(),T&&T.c(),d=b(),w&&w.c(),v(o,"class",r="qc-icon qc-"+t[0]+"-alert-icon"),v(o,"aria-hidden","true"),c.a=a,v(i,"class","qc-alert-content"),v(n,"class","qc-container qc-general-alert-elements"),v(e,"class","qc-general-alert "+t[5]),v(e,"role","alert"),v(e,"aria-label",t[7])},m(r,l){p(r,e,l),g(e,n),g(n,o),g(n,s),g(n,i),c.m(t[2],i),g(i,a),T&&T.m(i,null),g(n,d),w&&w.m(n,null),t[12](e),x=!0},p(t,e){(!x||1&e&&r!==(r="qc-icon qc-"+t[0]+"-alert-icon"))&&v(o,"class",r),(!x||4&e)&&c.p(t[2]),T&&T.p&&(!x||1024&e)&&h(T,y,t,t[10],x?u(y,t[10],e,null):$(t[10]),null),"true"===t[1]?w?w.p(t,e):(w=At(t),w.c(),w.m(n,null)):w&&(w.d(1),w=null)},i(t){x||(G(T,t),x=!0)},o(t){J(T,t),x=!1},d(n){n&&f(e),T&&T.d(n),w&&w.d(),t[12](null)}}}function At(e){let n,o,r,s,i;return{c(){n=m("div"),o=m("button"),r=m("span"),v(r,"aria-hidden","true"),v(r,"class","qc-icon qc-xclose-blue qc-close-alert-icon"),v(o,"type","button"),v(o,"class","qc-close"),v(o,"aria-label",e[6]),v(n,"class","qc-alert-close")},m(t,c){p(t,n,c),g(n,o),g(o,r),s||(i=y(o,"click",e[8]),s=!0)},p:t,d(t){t&&f(n),s=!1,i()}}}function Lt(t){let e,n,o,r=!t[4]&&qt(t);return{c(){r&&r.c(),e=b(),n=m("link"),v(n,"rel","stylesheet"),v(n,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,s){r&&r.m(t,s),p(t,e,s),p(t,n,s),o=!0},p(t,[n]){t[4]?r&&(Q(),J(r,1,1,(()=>{r=null})),Y()):r?(r.p(t,n),16&n&&G(r,1)):(r=qt(t),r.c(),G(r,1),r.m(e.parentNode,e))},i(t){o||(G(r),o=!0)},o(t){J(r),o=!1},d(t){t&&(f(e),f(n)),r&&r.d(t)}}}function kt(t,e,n){let o,r,{$$slots:s={},$$scope:i}=e,{type:c="general",maskable:l="",content:a="",hide:u="false"}=e,h=""!==c?c:"general",$="fr"===nt.getPageLanguage()?"Fermer":"Close",d="fr"===nt.getPageLanguage()?"Information d'importance élevée":"Information of high importance",g="fr"===nt.getPageLanguage()?"Information importante":"Important information",p="general"===c?g:d;return t.$$set=t=>{"type"in t&&n(0,c=t.type),"maskable"in t&&n(1,l=t.maskable),"content"in t&&n(2,a=t.content),"hide"in t&&n(9,u=t.hide),"$$scope"in t&&n(10,i=t.$$scope)},t.$$.update=()=>{512&t.$$.dirty&&n(4,r="true"===u)},[c,l,a,o,r,h,$,p,function(){n(9,u="true"),o.dispatchEvent(new CustomEvent("qc.alert.hide",{bubbles:!0,composed:!0}))},u,i,s,function(t){P[t?"unshift":"push"]((()=>{o=t,n(3,o)}))}]}customElements.define("qc-piv-footer",tt(class extends et{constructor(t){super(),X(this,t,_t,Ut,s,{logoUrl:0,logoSrc:1,logoAlt:2,logoWidth:3,logoHeight:4,copyrightText:5,copyrightUrl:6})}get logoUrl(){return this.$$.ctx[0]}set logoUrl(t){this.$$set({logoUrl:t}),R()}get logoSrc(){return this.$$.ctx[1]}set logoSrc(t){this.$$set({logoSrc:t}),R()}get logoAlt(){return this.$$.ctx[2]}set logoAlt(t){this.$$set({logoAlt:t}),R()}get logoWidth(){return this.$$.ctx[3]}set logoWidth(t){this.$$set({logoWidth:t}),R()}get logoHeight(){return this.$$.ctx[4]}set logoHeight(t){this.$$set({logoHeight:t}),R()}get copyrightText(){return this.$$.ctx[5]}set copyrightText(t){this.$$set({copyrightText:t}),R()}get copyrightUrl(){return this.$$.ctx[6]}set copyrightUrl(t){this.$$set({copyrightUrl:t}),R()}},{logoUrl:{attribute:"logo-url"},logoSrc:{},logoAlt:{attribute:"logo-alt"},logoWidth:{attribute:"logo-width"},logoHeight:{attribute:"logo-height"},copyrightText:{attribute:"copyrightText"},copyrightUrl:{attribute:"copyright-url"}},["default","logo","copyright"],[],!0));customElements.define("qc-alert",tt(class extends et{constructor(t){super(),X(this,t,kt,Lt,s,{type:0,maskable:1,content:2,hide:9})}get type(){return this.$$.ctx[0]}set type(t){this.$$set({type:t}),R()}get maskable(){return this.$$.ctx[1]}set maskable(t){this.$$set({maskable:t}),R()}get content(){return this.$$.ctx[2]}set content(t){this.$$set({content:t}),R()}get hide(){return this.$$.ctx[9]}set hide(t){this.$$set({hide:t}),R()}},{type:{},maskable:{},content:{},hide:{}},["default"],[],!0));const{window:Et}=d;function Ct(e){let n,r,s,i,c,l,a;return{c(){n=m("a"),r=m("span"),s=x(e[0]),i=b(),c=m("link"),v(n,"href"," "),v(n,"class","qc-to-top qc-icon qc-arrow-up-white"),v(n,"tabindex","0"),v(n,"demo",e[1]),q(n,"visible",e[2]),v(c,"rel","stylesheet"),v(c,"href",""+(nt.cssRelativePath+nt.cssFileName))},m(t,o){p(t,n,o),g(n,r),g(r,s),e[5](n),p(t,i,o),p(t,c,o),l||(a=[y(Et,"scroll",e[4]),y(n,"click",T(Pt)),y(n,"keydown",Nt)],l=!0)},p(t,[e]){1&e&&_(s,t[0]),2&e&&v(n,"demo",t[1]),4&e&&q(n,"visible",t[2])},i:t,o:t,d(t){t&&(f(n),f(i),f(c)),e[5](null),l=!1,o(a)}}}function Pt(){window.scrollTo({top:0,behavior:"smooth"})}function Nt(t){switch(t.code){case"Enter":case"Space":t.preventDefault(),Pt()}}function jt(t,e,n){const o=nt.getPageLanguage();let r,{alt:s=("fr"===o?"Retour en haut":"Back to top"),demo:i="false"}=e,c=0,l="true"===i,a=l;return t.$$set=t=>{"alt"in t&&n(0,s=t.alt),"demo"in t&&n(1,i=t.demo)},[s,i,l,r,function(){if("true"===i)return;let t=window.innerHeight+window.scrollY>=document.body.offsetHeight-1;n(2,l=c>window.scrollY&&(document.body.scrollTop>0||document.documentElement.scrollTop>0)&&!t),!l&&a&&r.blur(),a=l,c=window.scrollY},function(t){P[t?"unshift":"push"]((()=>{r=t,n(3,r)}))}]}customElements.define("qc-to-top",tt(class extends et{constructor(t){super(),X(this,t,jt,Ct,s,{alt:0,demo:1})}get alt(){return this.$$.ctx[0]}set alt(t){this.$$set({alt:t}),R()}get demo(){return this.$$.ctx[1]}set demo(t){this.$$set({demo:t}),R()}},{alt:{},demo:{}},[],[],!0))}();
|