diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..a40fb0cb46369e5018c6c5b89d1807e0cf9f08f8
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,44 @@
+# Prerequisites
+*.d
+
+# Compiled Object files
+*.slo
+*.lo
+*.o
+*.obj
+
+# Precompiled Headers
+*.gch
+*.pch
+
+# Compiled Dynamic libraries
+*.so
+*.dylib
+*.dll
+
+# Fortran module files
+*.mod
+*.smod
+
+# Compiled Static libraries
+*.lai
+*.la
+*.a
+*.lib
+
+# Executables
+*.exe
+*.out
+*.app
+.DS_Store
+
+pbc-0.5.14*
+index.html
+
+__pycache__
+parameters.yaml
+crypto_buffers/
+trusted_from_authority/
+challenges/
+revoked/
+identifiers/
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000000000000000000000000000000000000..b1203771c090a8cb0e1e9357ce553bca52a85eef
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,14 @@
+FROM ubuntu 
+
+RUN apt-get update \
+  && apt-get install -y wget tar flex build-essential bison libgmp3-dev python3 python3-pip \
+  && rm -rf /var/lib/apt/lists/*
+
+RUN wget https://crypto.stanford.edu/pbc/files/pbc-0.5.14.tar.gz && tar -xf pbc-0.5.14.tar.gz && cd /pbc-0.5.14 && ./configure && make && make install
+COPY . /SigGroup/
+RUN cd SigGroup/ && cp parameters.yaml.docker parameters.yaml && make && pip install -r requirements.txt && LD_LIBRARY_PATH=/usr/local/lib python3 initialisation.py
+#RUN LD_LIBRARY_PATH=/usr/local/lib ./crypto
+
+EXPOSE 9091 9092 9093
+RUN apt-get clean 
+CMD cd SigGroup/ && LD_LIBRARY_PATH=/usr/local/lib /SigGroup/launch.sh
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..5c9ff31630e91eb4cfcff7d6096d57b6c7e175df
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,677 @@
+  Copyright (c) 2012, Laboratoire d'Innovation Numérique de la CNIL
+ 
+ 
+ GNU GENERAL PUBLIC LICENSE
+                       Version 3, 29 June 2007
+
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+                            Preamble
+
+  The GNU General Public License is a free, copyleft license for
+software and other kinds of works.
+
+  The licenses for most software and other practical works are designed
+to take away your freedom to share and change the works.  By contrast,
+the GNU General Public License is intended to guarantee your freedom to
+share and change all versions of a program--to make sure it remains free
+software for all its users.  We, the Free Software Foundation, use the
+GNU General Public License for most of our software; it applies also to
+any other work released this way by its authors.  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+them if you wish), that you receive source code or can get it if you
+want it, that you can change the software or use pieces of it in new
+free programs, and that you know you can do these things.
+
+  To protect your rights, we need to prevent others from denying you
+these rights or asking you to surrender the rights.  Therefore, you have
+certain responsibilities if you distribute copies of the software, or if
+you modify it: responsibilities to respect the freedom of others.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must pass on to the recipients the same
+freedoms that you received.  You must make sure that they, too, receive
+or can get the source code.  And you must show them these terms so they
+know their rights.
+
+  Developers that use the GNU GPL protect your rights with two steps:
+(1) assert copyright on the software, and (2) offer you this License
+giving you legal permission to copy, distribute and/or modify it.
+
+  For the developers' and authors' protection, the GPL clearly explains
+that there is no warranty for this free software.  For both users' and
+authors' sake, the GPL requires that modified versions be marked as
+changed, so that their problems will not be attributed erroneously to
+authors of previous versions.
+
+  Some devices are designed to deny users access to install or run
+modified versions of the software inside them, although the manufacturer
+can do so.  This is fundamentally incompatible with the aim of
+protecting users' freedom to change the software.  The systematic
+pattern of such abuse occurs in the area of products for individuals to
+use, which is precisely where it is most unacceptable.  Therefore, we
+have designed this version of the GPL to prohibit the practice for those
+products.  If such problems arise substantially in other domains, we
+stand ready to extend this provision to those domains in future versions
+of the GPL, as needed to protect the freedom of users.
+
+  Finally, every program is threatened constantly by software patents.
+States should not allow patents to restrict development and use of
+software on general-purpose computers, but in those that do, we wish to
+avoid the special danger that patents applied to a free program could
+make it effectively proprietary.  To prevent this, the GPL assures that
+patents cannot be used to render the program non-free.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+                       TERMS AND CONDITIONS
+
+  0. Definitions.
+
+  "This License" refers to version 3 of the GNU General Public License.
+
+  "Copyright" also means copyright-like laws that apply to other kinds of
+works, such as semiconductor masks.
+
+  "The Program" refers to any copyrightable work licensed under this
+License.  Each licensee is addressed as "you".  "Licensees" and
+"recipients" may be individuals or organizations.
+
+  To "modify" a work means to copy from or adapt all or part of the work
+in a fashion requiring copyright permission, other than the making of an
+exact copy.  The resulting work is called a "modified version" of the
+earlier work or a work "based on" the earlier work.
+
+  A "covered work" means either the unmodified Program or a work based
+on the Program.
+
+  To "propagate" a work means to do anything with it that, without
+permission, would make you directly or secondarily liable for
+infringement under applicable copyright law, except executing it on a
+computer or modifying a private copy.  Propagation includes copying,
+distribution (with or without modification), making available to the
+public, and in some countries other activities as well.
+
+  To "convey" a work means any kind of propagation that enables other
+parties to make or receive copies.  Mere interaction with a user through
+a computer network, with no transfer of a copy, is not conveying.
+
+  An interactive user interface displays "Appropriate Legal Notices"
+to the extent that it includes a convenient and prominently visible
+feature that (1) displays an appropriate copyright notice, and (2)
+tells the user that there is no warranty for the work (except to the
+extent that warranties are provided), that licensees may convey the
+work under this License, and how to view a copy of this License.  If
+the interface presents a list of user commands or options, such as a
+menu, a prominent item in the list meets this criterion.
+
+  1. Source Code.
+
+  The "source code" for a work means the preferred form of the work
+for making modifications to it.  "Object code" means any non-source
+form of a work.
+
+  A "Standard Interface" means an interface that either is an official
+standard defined by a recognized standards body, or, in the case of
+interfaces specified for a particular programming language, one that
+is widely used among developers working in that language.
+
+  The "System Libraries" of an executable work include anything, other
+than the work as a whole, that (a) is included in the normal form of
+packaging a Major Component, but which is not part of that Major
+Component, and (b) serves only to enable use of the work with that
+Major Component, or to implement a Standard Interface for which an
+implementation is available to the public in source code form.  A
+"Major Component", in this context, means a major essential component
+(kernel, window system, and so on) of the specific operating system
+(if any) on which the executable work runs, or a compiler used to
+produce the work, or an object code interpreter used to run it.
+
+  The "Corresponding Source" for a work in object code form means all
+the source code needed to generate, install, and (for an executable
+work) run the object code and to modify the work, including scripts to
+control those activities.  However, it does not include the work's
+System Libraries, or general-purpose tools or generally available free
+programs which are used unmodified in performing those activities but
+which are not part of the work.  For example, Corresponding Source
+includes interface definition files associated with source files for
+the work, and the source code for shared libraries and dynamically
+linked subprograms that the work is specifically designed to require,
+such as by intimate data communication or control flow between those
+subprograms and other parts of the work.
+
+  The Corresponding Source need not include anything that users
+can regenerate automatically from other parts of the Corresponding
+Source.
+
+  The Corresponding Source for a work in source code form is that
+same work.
+
+  2. Basic Permissions.
+
+  All rights granted under this License are granted for the term of
+copyright on the Program, and are irrevocable provided the stated
+conditions are met.  This License explicitly affirms your unlimited
+permission to run the unmodified Program.  The output from running a
+covered work is covered by this License only if the output, given its
+content, constitutes a covered work.  This License acknowledges your
+rights of fair use or other equivalent, as provided by copyright law.
+
+  You may make, run and propagate covered works that you do not
+convey, without conditions so long as your license otherwise remains
+in force.  You may convey covered works to others for the sole purpose
+of having them make modifications exclusively for you, or provide you
+with facilities for running those works, provided that you comply with
+the terms of this License in conveying all material for which you do
+not control copyright.  Those thus making or running the covered works
+for you must do so exclusively on your behalf, under your direction
+and control, on terms that prohibit them from making any copies of
+your copyrighted material outside their relationship with you.
+
+  Conveying under any other circumstances is permitted solely under
+the conditions stated below.  Sublicensing is not allowed; section 10
+makes it unnecessary.
+
+  3. Protecting Users' Legal Rights From Anti-Circumvention Law.
+
+  No covered work shall be deemed part of an effective technological
+measure under any applicable law fulfilling obligations under article
+11 of the WIPO copyright treaty adopted on 20 December 1996, or
+similar laws prohibiting or restricting circumvention of such
+measures.
+
+  When you convey a covered work, you waive any legal power to forbid
+circumvention of technological measures to the extent such circumvention
+is effected by exercising rights under this License with respect to
+the covered work, and you disclaim any intention to limit operation or
+modification of the work as a means of enforcing, against the work's
+users, your or third parties' legal rights to forbid circumvention of
+technological measures.
+
+  4. Conveying Verbatim Copies.
+
+  You may convey verbatim copies of the Program's source code as you
+receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice;
+keep intact all notices stating that this License and any
+non-permissive terms added in accord with section 7 apply to the code;
+keep intact all notices of the absence of any warranty; and give all
+recipients a copy of this License along with the Program.
+
+  You may charge any price or no price for each copy that you convey,
+and you may offer support or warranty protection for a fee.
+
+  5. Conveying Modified Source Versions.
+
+  You may convey a work based on the Program, or the modifications to
+produce it from the Program, in the form of source code under the
+terms of section 4, provided that you also meet all of these conditions:
+
+    a) The work must carry prominent notices stating that you modified
+    it, and giving a relevant date.
+
+    b) The work must carry prominent notices stating that it is
+    released under this License and any conditions added under section
+    7.  This requirement modifies the requirement in section 4 to
+    "keep intact all notices".
+
+    c) You must license the entire work, as a whole, under this
+    License to anyone who comes into possession of a copy.  This
+    License will therefore apply, along with any applicable section 7
+    additional terms, to the whole of the work, and all its parts,
+    regardless of how they are packaged.  This License gives no
+    permission to license the work in any other way, but it does not
+    invalidate such permission if you have separately received it.
+
+    d) If the work has interactive user interfaces, each must display
+    Appropriate Legal Notices; however, if the Program has interactive
+    interfaces that do not display Appropriate Legal Notices, your
+    work need not make them do so.
+
+  A compilation of a covered work with other separate and independent
+works, which are not by their nature extensions of the covered work,
+and which are not combined with it such as to form a larger program,
+in or on a volume of a storage or distribution medium, is called an
+"aggregate" if the compilation and its resulting copyright are not
+used to limit the access or legal rights of the compilation's users
+beyond what the individual works permit.  Inclusion of a covered work
+in an aggregate does not cause this License to apply to the other
+parts of the aggregate.
+
+  6. Conveying Non-Source Forms.
+
+  You may convey a covered work in object code form under the terms
+of sections 4 and 5, provided that you also convey the
+machine-readable Corresponding Source under the terms of this License,
+in one of these ways:
+
+    a) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by the
+    Corresponding Source fixed on a durable physical medium
+    customarily used for software interchange.
+
+    b) Convey the object code in, or embodied in, a physical product
+    (including a physical distribution medium), accompanied by a
+    written offer, valid for at least three years and valid for as
+    long as you offer spare parts or customer support for that product
+    model, to give anyone who possesses the object code either (1) a
+    copy of the Corresponding Source for all the software in the
+    product that is covered by this License, on a durable physical
+    medium customarily used for software interchange, for a price no
+    more than your reasonable cost of physically performing this
+    conveying of source, or (2) access to copy the
+    Corresponding Source from a network server at no charge.
+
+    c) Convey individual copies of the object code with a copy of the
+    written offer to provide the Corresponding Source.  This
+    alternative is allowed only occasionally and noncommercially, and
+    only if you received the object code with such an offer, in accord
+    with subsection 6b.
+
+    d) Convey the object code by offering access from a designated
+    place (gratis or for a charge), and offer equivalent access to the
+    Corresponding Source in the same way through the same place at no
+    further charge.  You need not require recipients to copy the
+    Corresponding Source along with the object code.  If the place to
+    copy the object code is a network server, the Corresponding Source
+    may be on a different server (operated by you or a third party)
+    that supports equivalent copying facilities, provided you maintain
+    clear directions next to the object code saying where to find the
+    Corresponding Source.  Regardless of what server hosts the
+    Corresponding Source, you remain obligated to ensure that it is
+    available for as long as needed to satisfy these requirements.
+
+    e) Convey the object code using peer-to-peer transmission, provided
+    you inform other peers where the object code and Corresponding
+    Source of the work are being offered to the general public at no
+    charge under subsection 6d.
+
+  A separable portion of the object code, whose source code is excluded
+from the Corresponding Source as a System Library, need not be
+included in conveying the object code work.
+
+  A "User Product" is either (1) a "consumer product", which means any
+tangible personal property which is normally used for personal, family,
+or household purposes, or (2) anything designed or sold for incorporation
+into a dwelling.  In determining whether a product is a consumer product,
+doubtful cases shall be resolved in favor of coverage.  For a particular
+product received by a particular user, "normally used" refers to a
+typical or common use of that class of product, regardless of the status
+of the particular user or of the way in which the particular user
+actually uses, or expects or is expected to use, the product.  A product
+is a consumer product regardless of whether the product has substantial
+commercial, industrial or non-consumer uses, unless such uses represent
+the only significant mode of use of the product.
+
+  "Installation Information" for a User Product means any methods,
+procedures, authorization keys, or other information required to install
+and execute modified versions of a covered work in that User Product from
+a modified version of its Corresponding Source.  The information must
+suffice to ensure that the continued functioning of the modified object
+code is in no case prevented or interfered with solely because
+modification has been made.
+
+  If you convey an object code work under this section in, or with, or
+specifically for use in, a User Product, and the conveying occurs as
+part of a transaction in which the right of possession and use of the
+User Product is transferred to the recipient in perpetuity or for a
+fixed term (regardless of how the transaction is characterized), the
+Corresponding Source conveyed under this section must be accompanied
+by the Installation Information.  But this requirement does not apply
+if neither you nor any third party retains the ability to install
+modified object code on the User Product (for example, the work has
+been installed in ROM).
+
+  The requirement to provide Installation Information does not include a
+requirement to continue to provide support service, warranty, or updates
+for a work that has been modified or installed by the recipient, or for
+the User Product in which it has been modified or installed.  Access to a
+network may be denied when the modification itself materially and
+adversely affects the operation of the network or violates the rules and
+protocols for communication across the network.
+
+  Corresponding Source conveyed, and Installation Information provided,
+in accord with this section must be in a format that is publicly
+documented (and with an implementation available to the public in
+source code form), and must require no special password or key for
+unpacking, reading or copying.
+
+  7. Additional Terms.
+
+  "Additional permissions" are terms that supplement the terms of this
+License by making exceptions from one or more of its conditions.
+Additional permissions that are applicable to the entire Program shall
+be treated as though they were included in this License, to the extent
+that they are valid under applicable law.  If additional permissions
+apply only to part of the Program, that part may be used separately
+under those permissions, but the entire Program remains governed by
+this License without regard to the additional permissions.
+
+  When you convey a copy of a covered work, you may at your option
+remove any additional permissions from that copy, or from any part of
+it.  (Additional permissions may be written to require their own
+removal in certain cases when you modify the work.)  You may place
+additional permissions on material, added by you to a covered work,
+for which you have or can give appropriate copyright permission.
+
+  Notwithstanding any other provision of this License, for material you
+add to a covered work, you may (if authorized by the copyright holders of
+that material) supplement the terms of this License with terms:
+
+    a) Disclaiming warranty or limiting liability differently from the
+    terms of sections 15 and 16 of this License; or
+
+    b) Requiring preservation of specified reasonable legal notices or
+    author attributions in that material or in the Appropriate Legal
+    Notices displayed by works containing it; or
+
+    c) Prohibiting misrepresentation of the origin of that material, or
+    requiring that modified versions of such material be marked in
+    reasonable ways as different from the original version; or
+
+    d) Limiting the use for publicity purposes of names of licensors or
+    authors of the material; or
+
+    e) Declining to grant rights under trademark law for use of some
+    trade names, trademarks, or service marks; or
+
+    f) Requiring indemnification of licensors and authors of that
+    material by anyone who conveys the material (or modified versions of
+    it) with contractual assumptions of liability to the recipient, for
+    any liability that these contractual assumptions directly impose on
+    those licensors and authors.
+
+  All other non-permissive additional terms are considered "further
+restrictions" within the meaning of section 10.  If the Program as you
+received it, or any part of it, contains a notice stating that it is
+governed by this License along with a term that is a further
+restriction, you may remove that term.  If a license document contains
+a further restriction but permits relicensing or conveying under this
+License, you may add to a covered work material governed by the terms
+of that license document, provided that the further restriction does
+not survive such relicensing or conveying.
+
+  If you add terms to a covered work in accord with this section, you
+must place, in the relevant source files, a statement of the
+additional terms that apply to those files, or a notice indicating
+where to find the applicable terms.
+
+  Additional terms, permissive or non-permissive, may be stated in the
+form of a separately written license, or stated as exceptions;
+the above requirements apply either way.
+
+  8. Termination.
+
+  You may not propagate or modify a covered work except as expressly
+provided under this License.  Any attempt otherwise to propagate or
+modify it is void, and will automatically terminate your rights under
+this License (including any patent licenses granted under the third
+paragraph of section 11).
+
+  However, if you cease all violation of this License, then your
+license from a particular copyright holder is reinstated (a)
+provisionally, unless and until the copyright holder explicitly and
+finally terminates your license, and (b) permanently, if the copyright
+holder fails to notify you of the violation by some reasonable means
+prior to 60 days after the cessation.
+
+  Moreover, your license from a particular copyright holder is
+reinstated permanently if the copyright holder notifies you of the
+violation by some reasonable means, this is the first time you have
+received notice of violation of this License (for any work) from that
+copyright holder, and you cure the violation prior to 30 days after
+your receipt of the notice.
+
+  Termination of your rights under this section does not terminate the
+licenses of parties who have received copies or rights from you under
+this License.  If your rights have been terminated and not permanently
+reinstated, you do not qualify to receive new licenses for the same
+material under section 10.
+
+  9. Acceptance Not Required for Having Copies.
+
+  You are not required to accept this License in order to receive or
+run a copy of the Program.  Ancillary propagation of a covered work
+occurring solely as a consequence of using peer-to-peer transmission
+to receive a copy likewise does not require acceptance.  However,
+nothing other than this License grants you permission to propagate or
+modify any covered work.  These actions infringe copyright if you do
+not accept this License.  Therefore, by modifying or propagating a
+covered work, you indicate your acceptance of this License to do so.
+
+  10. Automatic Licensing of Downstream Recipients.
+
+  Each time you convey a covered work, the recipient automatically
+receives a license from the original licensors, to run, modify and
+propagate that work, subject to this License.  You are not responsible
+for enforcing compliance by third parties with this License.
+
+  An "entity transaction" is a transaction transferring control of an
+organization, or substantially all assets of one, or subdividing an
+organization, or merging organizations.  If propagation of a covered
+work results from an entity transaction, each party to that
+transaction who receives a copy of the work also receives whatever
+licenses to the work the party's predecessor in interest had or could
+give under the previous paragraph, plus a right to possession of the
+Corresponding Source of the work from the predecessor in interest, if
+the predecessor has it or can get it with reasonable efforts.
+
+  You may not impose any further restrictions on the exercise of the
+rights granted or affirmed under this License.  For example, you may
+not impose a license fee, royalty, or other charge for exercise of
+rights granted under this License, and you may not initiate litigation
+(including a cross-claim or counterclaim in a lawsuit) alleging that
+any patent claim is infringed by making, using, selling, offering for
+sale, or importing the Program or any portion of it.
+
+  11. Patents.
+
+  A "contributor" is a copyright holder who authorizes use under this
+License of the Program or a work on which the Program is based.  The
+work thus licensed is called the contributor's "contributor version".
+
+  A contributor's "essential patent claims" are all patent claims
+owned or controlled by the contributor, whether already acquired or
+hereafter acquired, that would be infringed by some manner, permitted
+by this License, of making, using, or selling its contributor version,
+but do not include claims that would be infringed only as a
+consequence of further modification of the contributor version.  For
+purposes of this definition, "control" includes the right to grant
+patent sublicenses in a manner consistent with the requirements of
+this License.
+
+  Each contributor grants you a non-exclusive, worldwide, royalty-free
+patent license under the contributor's essential patent claims, to
+make, use, sell, offer for sale, import and otherwise run, modify and
+propagate the contents of its contributor version.
+
+  In the following three paragraphs, a "patent license" is any express
+agreement or commitment, however denominated, not to enforce a patent
+(such as an express permission to practice a patent or covenant not to
+sue for patent infringement).  To "grant" such a patent license to a
+party means to make such an agreement or commitment not to enforce a
+patent against the party.
+
+  If you convey a covered work, knowingly relying on a patent license,
+and the Corresponding Source of the work is not available for anyone
+to copy, free of charge and under the terms of this License, through a
+publicly available network server or other readily accessible means,
+then you must either (1) cause the Corresponding Source to be so
+available, or (2) arrange to deprive yourself of the benefit of the
+patent license for this particular work, or (3) arrange, in a manner
+consistent with the requirements of this License, to extend the patent
+license to downstream recipients.  "Knowingly relying" means you have
+actual knowledge that, but for the patent license, your conveying the
+covered work in a country, or your recipient's use of the covered work
+in a country, would infringe one or more identifiable patents in that
+country that you have reason to believe are valid.
+
+  If, pursuant to or in connection with a single transaction or
+arrangement, you convey, or propagate by procuring conveyance of, a
+covered work, and grant a patent license to some of the parties
+receiving the covered work authorizing them to use, propagate, modify
+or convey a specific copy of the covered work, then the patent license
+you grant is automatically extended to all recipients of the covered
+work and works based on it.
+
+  A patent license is "discriminatory" if it does not include within
+the scope of its coverage, prohibits the exercise of, or is
+conditioned on the non-exercise of one or more of the rights that are
+specifically granted under this License.  You may not convey a covered
+work if you are a party to an arrangement with a third party that is
+in the business of distributing software, under which you make payment
+to the third party based on the extent of your activity of conveying
+the work, and under which the third party grants, to any of the
+parties who would receive the covered work from you, a discriminatory
+patent license (a) in connection with copies of the covered work
+conveyed by you (or copies made from those copies), or (b) primarily
+for and in connection with specific products or compilations that
+contain the covered work, unless you entered into that arrangement,
+or that patent license was granted, prior to 28 March 2007.
+
+  Nothing in this License shall be construed as excluding or limiting
+any implied license or other defenses to infringement that may
+otherwise be available to you under applicable patent law.
+
+  12. No Surrender of Others' Freedom.
+
+  If conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot convey a
+covered work so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you may
+not convey it at all.  For example, if you agree to terms that obligate you
+to collect a royalty for further conveying from those to whom you convey
+the Program, the only way you could satisfy both those terms and this
+License would be to refrain entirely from conveying the Program.
+
+  13. Use with the GNU Affero General Public License.
+
+  Notwithstanding any other provision of this License, you have
+permission to link or combine any covered work with a work licensed
+under version 3 of the GNU Affero General Public License into a single
+combined work, and to convey the resulting work.  The terms of this
+License will continue to apply to the part which is the covered work,
+but the special requirements of the GNU Affero General Public License,
+section 13, concerning interaction through a network will apply to the
+combination as such.
+
+  14. Revised Versions of this License.
+
+  The Free Software Foundation may publish revised and/or new versions of
+the GNU General Public License from time to time.  Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+  Each version is given a distinguishing version number.  If the
+Program specifies that a certain numbered version of the GNU General
+Public License "or any later version" applies to it, you have the
+option of following the terms and conditions either of that numbered
+version or of any later version published by the Free Software
+Foundation.  If the Program does not specify a version number of the
+GNU General Public License, you may choose any version ever published
+by the Free Software Foundation.
+
+  If the Program specifies that a proxy can decide which future
+versions of the GNU General Public License can be used, that proxy's
+public statement of acceptance of a version permanently authorizes you
+to choose that version for the Program.
+
+  Later license versions may give you additional or different
+permissions.  However, no additional obligations are imposed on any
+author or copyright holder as a result of your choosing to follow a
+later version.
+
+  15. Disclaimer of Warranty.
+
+  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
+APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
+HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
+OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
+IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. Limitation of Liability.
+
+  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
+THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
+USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
+DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
+PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
+EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGES.
+
+  17. Interpretation of Sections 15 and 16.
+
+  If the disclaimer of warranty and limitation of liability provided
+above cannot be given local legal effect according to their terms,
+reviewing courts shall apply local law that most closely approximates
+an absolute waiver of all civil liability in connection with the
+Program, unless a warranty or assumption of liability accompanies a
+copy of the Program in return for a fee.
+
+                     END OF TERMS AND CONDITIONS
+
+            How to Apply These Terms to Your New Programs
+
+  If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+  To do so, attach the following notices to the program.  It is safest
+to attach them to the start of each source file to most effectively
+state the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+    <one line to give the program's name and a brief idea of what it does.>
+    Copyright (C) <year>  <name of author>
+
+    This program is free software: you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, either version 3 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+Also add information on how to contact you by electronic and paper mail.
+
+  If the program does terminal interaction, make it output a short
+notice like this when it starts in an interactive mode:
+
+    <program>  Copyright (C) <year>  <name of author>
+    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+    This is free software, and you are welcome to redistribute it
+    under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License.  Of course, your program's commands
+might be different; for a GUI interface, you would use an "about box".
+
+  You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU GPL, see
+<http://www.gnu.org/licenses/>.
+
+  The GNU General Public License does not permit incorporating your program
+into proprietary programs.  If your program is a subroutine library, you
+may consider it more useful to permit linking proprietary applications with
+the library.  If this is what you want to do, use the GNU Lesser General
+Public License instead of this License.  But first, please read
+<http://www.gnu.org/philosophy/why-not-lgpl.html>.
\ No newline at end of file
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..f92155dc7c214c4f00019acd827739b63fe982c7
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,3 @@
+main:
+	chmod 644 crypto.c
+	gcc crypto.c -shared -fPIC -I /usr/local/include/pbc -L /usr/local/include/pbc/ -Wl,-rpath /usr/local/include/pbc/ -l pbc -l gmp -o crypto.so
diff --git a/README.md b/README.md
index 7eefc1abee115803a47854aacf9529840e929482..0749068bd098e455ff1ab2ba9a3594f25ba6338e 100644
--- a/README.md
+++ b/README.md
@@ -1,92 +1,104 @@
-# SigGroup
+Démonstrateur de signature de groupes (Français)
+===
 
-Peut-on prouver qu’on est majeur sans divulguer son âge, ni son identité ? Le LINC, en association avec Olivier Blazy, professeur de l’Ecole polytechnique et chercheur en cryptographie, et le Pôle d’Expertise de la Régulation Numérique de l’Etat (PER
+Le LINC met à disposition un démonstrateur de système de preuve d’âge pour permettre l’accès à certaines catégories de sites sans que ne soient partagées d’autres informations identifiantes. Vous trouverez plus d'information sur son fonctionnement dans l'article associé, disponible à l'adresse suivante :(mettre lien)
 
-## Getting started
+Ce démonstrateur est publié sous [licence GPLv3](https://www.gnu.org/licenses/gpl-3.0.html) et sous [licence ouverte 2.0](https://www.etalab.gouv.fr/wp-content/uploads/2017/04/ETALAB-Licence-Ouverte-v2.0.pdf) (explicitement compatible avec [CC-BY 4.0 FR](https://creativecommons.org/licenses/by/4.0/deed.fr)). Vous pouvez donc librement contribuer à son enrichissement.
 
-To make it easy for you to get started with GitLab, here's a list of recommended next steps.
+# Comment lancer ce démonstrateur
 
-Already a pro? Just edit this README.md and make it your own. Want to make it easy? [Use the template at the bottom](#editing-this-readme)!
+Le démonstrateur est associé à un fichier DockerFile afin de simplifier son déploiement. Celui-ci est également publié sur DockerHub. Par défaut, il nécessite l'accès au port 9091, 9092 et 9093.
 
-## Add your files
+Son lancement depuis la plateforme Docker nécessite l'usage du programme [Docker](https://docs.docker.com/get-docker/) et de s'authentifier à la plateforme.
 
-- [ ] [Create](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#create-a-file) or [upload](https://docs.gitlab.com/ee/user/project/repository/web_editor.html#upload-a-file) files
-- [ ] [Add files using the command line](https://docs.gitlab.com/ee/gitlab-basics/add-file.html#add-a-file-using-the-command-line) or push an existing Git repository with the following command:
+Le lancement se déroulement depuis la commande suivante sur un terminal :
+```bash
+docker run -p 9091:9091 -p 9092:9092 -p 9093:9093 cnil/siggroup
+```
+
+Les différentes plateformes sont accessibles sur un navigeur aux adresses suivantes : https://localhost:9091/ (tiers de confiances), https://localhost:9092/ (sites à accès restreint), https://localhost:9092/ (autorité certificatrice).
 
+La construction du docker en local nécessite dans un premier temps de construire l'image du docker :
+```bash
+docker build -t siggroup .
 ```
-cd existing_repo
-git remote add origin https://gitlab.adullact.net/linc/siggroup.git
-git branch -M main
-git push -uf origin main
+
+Puis de lancer ce docker :
+```bash
+docker run -p 9091:9091 -p 9092:9092 -p 9093:9093 siggroup
 ```
 
-## Integrate with your tools
+Pour lancer localement sans utiliser de docker:
+- cp parameters.yaml.example parameters.yaml && $EDITOR parameters.yaml
+- python3 initialisation.py
+puis :
+- python3 site.py
+- python3 trust.py
+- python3 authority.py
+
+# Fonctionnement
+
+Vous trouverez dans le fichier crypto.c une description complète de la cinématique d'échange des clefs : dans la fonction main, puis en découpe par fonctions pour les différentes entités.
+
+La partie serveur.py contient un exemple d'échange de clef entre un tiers vérification et un site. Ce code dépend de bibliothèques C (libpbc.so.1 et crypto.s) pouvant être générées respectivement depuis le site https://crypto.stanford.edu/pbc/ et depuis le makefile de ce dossier. Le repertoire est également accompagné d'un DockerFile pour simplifier le déploiement.
+
+L'ensemble des échanges de cette bibliothèque nécessite des paramètres d'initialisations communs stockés dans le fichier param.pbc.
+
+L'ensemble des fonctions est conçu pour pouvoir fonctionner indépendamments tant que chaque fonction est associée au fichier de paramétrage initial (param.pbc).
 
-- [ ] [Set up project integrations](https://gitlab.adullact.net/linc/siggroup/-/settings/integrations)
+## Contribuer
 
-## Collaborate with your team
+**Ce démonstrateur est disponible sous license GPLv3 et peut être enrichi par chacun des utilisateurs.** Les plus expérimentés peuvent améliorer cette version initiale de notre outil ou corriger d’éventuels bugs. N'oubliez pas de soumettre vos contributions via des pull-requests.
 
-- [ ] [Invite team members and collaborators](https://docs.gitlab.com/ee/user/project/members/)
-- [ ] [Create a new merge request](https://docs.gitlab.com/ee/user/project/merge_requests/creating_merge_requests.html)
-- [ ] [Automatically close issues from merge requests](https://docs.gitlab.com/ee/user/project/issues/managing_issues.html#closing-issues-automatically)
-- [ ] [Enable merge request approvals](https://docs.gitlab.com/ee/user/project/merge_requests/approvals/)
-- [ ] [Automatically merge when pipeline succeeds](https://docs.gitlab.com/ee/user/project/merge_requests/merge_when_pipeline_succeeds.html)
+**Vous avez une idée que vous souhaitez partager avec nous pour améliorer ce projet ?** Contactez l’équipe du laboratoire CNIL par mail - ip(at)cnil.fr - ou via le compte Twitter [@LINCnil](https://twitter.com/LINCnil).
 
-## Test and Deploy
+Pour de plus amples informations, voir le fichier ``LICENSE`` inclus.
 
-Use the built-in continuous integration in GitLab.
+English
+===
 
-- [ ] [Get started with GitLab CI/CD](https://docs.gitlab.com/ee/ci/quick_start/index.html)
-- [ ] [Analyze your code for known vulnerabilities with Static Application Security Testing(SAST)](https://docs.gitlab.com/ee/user/application_security/sast/)
-- [ ] [Deploy to Kubernetes, Amazon EC2, or Amazon ECS using Auto Deploy](https://docs.gitlab.com/ee/topics/autodevops/requirements.html)
-- [ ] [Use pull-based deployments for improved Kubernetes management](https://docs.gitlab.com/ee/user/clusters/agent/)
-- [ ] [Set up protected environments](https://docs.gitlab.com/ee/ci/environments/protected_environments.html)
+LINC provides a proof of age system demonstrator to allow access to certain categories of sites without sharing other identifying information. You will find more information on how it works in the associated article, available at the following address: (link)
 
-***
+This demonstrator is published under GPLv3 license and under open license 2.0 (explicitly compatible with CC-BY 4.0 FR). You can therefore freely contribute to its enrichment.
 
-# Editing this README
+# How to launch this demonstrator
 
-When you're ready to make this README your own, just edit this file and use the handy template below (or feel free to structure it however you want - this is just a starting point!).  Thank you to [makeareadme.com](https://www.makeareadme.com/) for this template.
+The demonstrator is associated with a DockerFile to simplify its deployment. This one is also published on DockerHub. By default, it requires access to port 9091, 9092 and 9093.
 
-## Suggestions for a good README
-Every project is different, so consider which of these sections apply to yours. The sections used in the template are suggestions for most open source projects. Also keep in mind that while a README can be too long and detailed, too long is better than too short. If you think your README is too long, consider utilizing another form of documentation rather than cutting out information.
+Its launch from the Docker platform requires the use of the Docker program and authentication to the platform.
 
-## Name
-Choose a self-explaining name for your project.
+The launch takes place from the following command on a terminal:
 
-## Description
-Let people know what your project can do specifically. Provide context and add a link to any reference visitors might be unfamiliar with. A list of Features or a Background subsection can also be added here. If there are alternatives to your project, this is a good place to list differentiating factors.
+docker run -p 9091:9091 -p 9092:9092 -p 9093:9093 cnil/siggroup
+The various platforms are accessible on a browser at the following addresses: https://localhost:9091/ (trusted third parties), https://localhost:9092/ (restricted access sites), https://localhost:9092/ ( certification authority).
 
-## Badges
-On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project. You can use Shields to add some to your README. Many services also have instructions for adding a badge.
+Building the docker locally requires first building the docker image:
 
-## Visuals
-Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos). Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
+docker build -t siggroup .
+Then run this docker:
 
-## Installation
-Within a particular ecosystem, there may be a common way of installing things, such as using Yarn, NuGet, or Homebrew. However, consider the possibility that whoever is reading your README is a novice and would like more guidance. Listing specific steps helps remove ambiguity and gets people to using your project as quickly as possible. If it only runs in a specific context like a particular programming language version or operating system or has dependencies that have to be installed manually, also add a Requirements subsection.
+docker run -p 9091:9091 -p 9092:9092 -p 9093:9093 siggroup
+To launch locally without using docker:
 
-## Usage
-Use examples liberally, and show the expected output if you can. It's helpful to have inline the smallest example of usage that you can demonstrate, while providing links to more sophisticated examples if they are too long to reasonably include in the README.
+cp parameters.yaml.example parameters.yaml && $EDITOR parameters.yaml
+python3 initialization.py then:
+python3 site.py
+python3 trust.py
+python3 authority.py
 
-## Support
-Tell people where they can go to for help. It can be any combination of an issue tracker, a chat room, an email address, etc.
+# How it works
 
-## Roadmap
-If you have ideas for releases in the future, it is a good idea to list them in the README.
+You will find in the crypto.c file a complete description of the key exchange kinematics: in the main function, then broken down by functions for the different entities.
 
-## Contributing
-State if you are open to contributions and what your requirements are for accepting them.
+The server.py part contains an example of key exchange between a third-party verification and a site. This code depends on C libraries (libpbc.so.1 and crypto.s) that can be generated respectively from the site https://crypto.stanford.edu/pbc/ and from the makefile of this folder. The directory also comes with a DockerFile to simplify deployment.
 
-For people who want to make changes to your project, it's helpful to have some documentation on how to get started. Perhaps there is a script that they should run or some environment variables that they need to set. Make these steps explicit. These instructions could also be useful to your future self.
+All of the exchanges in this library require common initialization parameters stored in the param.pbc file.
 
-You can also document commands to lint the code or run tests. These steps help to ensure high code quality and reduce the likelihood that the changes inadvertently break something. Having instructions for running tests is especially helpful if it requires external setup, such as starting a Selenium server for testing in a browser.
+The set of functions is designed to be able to operate independently as long as each function is associated with the initial parameterization file (param.pbc).
 
-## Authors and acknowledgment
-Show your appreciation to those who have contributed to the project.
+# Contribute
+This demonstrator is available under the terms of the GPLv3 license and can be enriched by any of its users.** The most experimented can improve this initial version of our tool or correct potential bugs. Don't forget to submit your contributions *via* pull-requests.
 
-## License
-For open source projects, say how it is licensed.
+**You have an idea you wish to share with us to improve this project ?** Contact the team of the CNIL lab by mail - ip(at)cnil.fr - or *via* the Twitter account [@CNIL](https://twitter.com/CNIL).
 
-## Project status
-If you have run out of energy or time for your project, put a note at the top of the README saying that development has slowed down or stopped completely. Someone may choose to fork your project or volunteer to step in as a maintainer or owner, allowing your project to keep going. You can also make an explicit request for maintainers.
+For more information, see the `LICENSE` file included.
\ No newline at end of file
diff --git a/authority.key b/authority.key
new file mode 100644
index 0000000000000000000000000000000000000000..29ffc71c279e7ee3222beeeee9867c5156b1f0ee
--- /dev/null
+++ b/authority.key
@@ -0,0 +1,28 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQDQ+1MkIANeJ+uY
+MdM8XSYnjf/IFyBaTdk5v8FBz9lPfKQF1yQdrgnMKFYinacGBc8CuQEbD/swO+B8
+Rf3Eh+EiTQL55cm59aTW5KT6OqBgCHTFNaxfHTtxCHAx9B7aI6Z3+IdJ79RzVy+f
+MZBfMVB3v7e22VDy1npkKDKLgrvSY6EXifhYXdQOBdk6YqEJRaiSijeNv7DAdxNZ
+nbavEZwN68mumJrro6JwT9GYJ8DPs56Cnex94pSdr4QwOI91ylhSHl6cWDNHCt0f
+yL40vGJ83XAnanElrrHaS+XRZmg3vAQKVOeRBhKyW0yAUAqBaRXHL8aWSk0vaD2e
+qolqMAV1AgMBAAECggEAJQs3zKKEFk+bOmoymHOmjMJmAbDfwkIkbFEqT6EpUyaz
+6HkfZMdx4yePRSmO7slezYu/v21QyFcEzuKVPh4b8TmXenaaEIWTh6gV+mkj/oHh
+OQfvmxiSbdHiGWi9g0toecGrMZb6oMtmnKBriAQ00FVCmn3hFHqiTVi2xPYSlxNR
+micdaOPAbW0XNc9Lr5yTcDMxlju6x8pbWRdAg9sOl3d5haSD67Iz3gohl8abfo4J
+pG4sqEUQ8D334RQS5sr9EARyokrxVEr7mfHPGuoOYzOP9FRHvISjB6+U2AOvDp/w
+bKAHtFsrydWgdqshOI61XotHYQNlK5e5MJN1zjxiYQKBgQD+8RKLtO/186vju81H
+jWdNRc2ifzzfesGK7tFFwtvrU+q/cVglpIPsOzTVBXXfwdc+qSBojjvM58TGCd1+
+CCqSVeQPOJTBQQcVrc1u4VnQwnb+VGa5G0BihsFxHVE6UkpFtiI8wj9SfeIEwLqj
+UAlInLMOC8UBSWrI0De9427piQKBgQDR2WkWkCS+MJ56nsSQLlDWBuN1qsQcoFIk
++lUOG566spkozTHKk74e9uVbglEywzX+QskZZq15hIjrWJQOK3NOevMNG+7o+OVk
+kXwt4VHWNmEsp0+GC0KTuJZo/SULSrmU+cV9g4vBZRPWwoYAfKGJ1p+Vpo5qZb0u
+GzAU5KX9jQKBgFe9ag+Q3wD7ss22xah5fvL2MhZZyf5zxgZluLpUnNF52RG4FYkm
+/IwhuEYUEgRHNygGlvPE98nGfk9V99e3QceJLesbIv77vU91uH0Pq5SQSNmw/IV6
+XodKL2sZluoGhi9FxrS4eYiPcGkIV3N7SSanX2xXGp8dwFWKa5S7oGFZAoGAJ7BR
+4tWSTXJOluxuSsKnwUL+RCPvAWcFAj9iVM++fpsGwqPEdgbpX1vc1yjXiJ1JGfSx
+qh80UhZR+wj+v4tSPJaeX21YCzH/2Lx3WwoRe00/pb1jGfwJNH0l3Wd7WR5h6R4w
+TuPRS9t9HBIgW/k2aCZyelBNASyK0iyMNHdmOYUCgYB2Z8/mlFJV7+GEM/08LOiv
+PuetxtCnXH+KgPRTwTLPbZ7fJ7X3RVZGWh9q9UY99eky3i6QZIls/FqeO2RQ/Y7I
+NdWpy4fUqKonUsbs0MT6CuGh/hx8PWVi/LLW6/YpI4E8O8668rzv1aFjWybP887o
+Rv4+wOtWeXQTtkAnJr93iw==
+-----END PRIVATE KEY-----
diff --git a/authority.pem b/authority.pem
new file mode 100644
index 0000000000000000000000000000000000000000..7b666760f36bb7ce2135586e58262a2f49f0e33f
--- /dev/null
+++ b/authority.pem
@@ -0,0 +1,20 @@
+-----BEGIN CERTIFICATE-----
+MIIDWTCCAkGgAwIBAgIUKDG5YOXii8P1oYUsFjwgQwK7YuEwDQYJKoZIhvcNAQEL
+BQAwPDELMAkGA1UEBhMCRlIxDjAMBgNVBAgMBVBhcmlzMQ4wDAYDVQQHDAVQYXJp
+czENMAsGA1UECgwEQUNNRTAeFw0yMjAzMTIxNTAwMjJaFw0zMjAzMDkxNTAwMjJa
+MDwxCzAJBgNVBAYTAkZSMQ4wDAYDVQQIDAVQYXJpczEOMAwGA1UEBwwFUGFyaXMx
+DTALBgNVBAoMBEFDTUUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDQ
++1MkIANeJ+uYMdM8XSYnjf/IFyBaTdk5v8FBz9lPfKQF1yQdrgnMKFYinacGBc8C
+uQEbD/swO+B8Rf3Eh+EiTQL55cm59aTW5KT6OqBgCHTFNaxfHTtxCHAx9B7aI6Z3
++IdJ79RzVy+fMZBfMVB3v7e22VDy1npkKDKLgrvSY6EXifhYXdQOBdk6YqEJRaiS
+ijeNv7DAdxNZnbavEZwN68mumJrro6JwT9GYJ8DPs56Cnex94pSdr4QwOI91ylhS
+Hl6cWDNHCt0fyL40vGJ83XAnanElrrHaS+XRZmg3vAQKVOeRBhKyW0yAUAqBaRXH
+L8aWSk0vaD2eqolqMAV1AgMBAAGjUzBRMB0GA1UdDgQWBBSy9BwVcc/hQZN7YTFc
+MSQ2qgQcHzAfBgNVHSMEGDAWgBSy9BwVcc/hQZN7YTFcMSQ2qgQcHzAPBgNVHRMB
+Af8EBTADAQH/MA0GCSqGSIb3DQEBCwUAA4IBAQAMB7IqSNwOn9Cvvf8gJzXwMdQl
+Sws9mPBTOh7mX2x6JGoz3H0jCqByDn7x0RRKRvTPF+qP4btWFa1g/jK6CBo2u1P3
+iG+mzOXePGJsSF17lPpsec0NDo6xVUMJPWyCtIXQr/gm8zSrUEe41XU1yIzSarGH
+MOLoqvLb68mg3/pbGuIvH1jYLu4SNA15pD7lixP2SWygEezYUb5V+QD1uFge1SuX
+Hktpof8AeI6+VMlhul4jvuqwS6ppVxjcrGTwvaMytwLug7XxmZHC+T22o8Z/XoQI
++0B5UlULnsKqW+ELQqM2wvay30hWdeKdm9o+P7F4Ec0MAQePLClChXj6f482
+-----END CERTIFICATE-----
diff --git a/authority.py b/authority.py
new file mode 100644
index 0000000000000000000000000000000000000000..2c4b3e9a7426ecc146f82e94fdb77f449ce22d11
--- /dev/null
+++ b/authority.py
@@ -0,0 +1,138 @@
+import json
+import signature_c
+from bottle import get, run, request, SimpleTemplate, static_file,app
+from bottle_cors_plugin import cors_plugin
+import ctypes
+import os
+import base64
+from utils import load_urls_from_yaml
+import shutil
+
+ENCODING = "utf-8"
+
+urls = load_urls_from_yaml()
+
+hostName = urls["authority"]["host_name"]
+authorityPort = urls["authority"]["port"]
+
+SECRET_SIZE = 20
+CERT_SIZE = 128
+
+app = app()
+app.install(cors_plugin('*'))
+
+# Load crypto parameters
+crypto_buffers = {}
+for buffer_type in ["gsk", "gpk", "g1", "g2"]:
+    with open(f"./crypto_buffers/{buffer_type}_buffer", "rb") as f:
+        crypto_buffers[buffer_type] = ctypes.create_string_buffer(f.read())
+
+
+# Server of the certification authority
+
+# Print the page
+@app.get("/")
+def racine():
+    with open("index_authority.html", "rb") as index_file:
+        return SimpleTemplate(index_file.read()).render(urls=urls)
+
+
+@app.get('/static/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static')
+
+
+@app.get('/fonts/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static/fonts')
+
+
+# Return the number of certificates (trusted parties) previously emitted
+@app.get("/number_certificates")
+def number_certificates():
+    number = len(os.listdir("./trusted_from_authority/"))
+    return bytes(json.dumps({"number": number}), ENCODING)
+
+
+# Return a list of the revokation tokens previously emitted
+@app.get("/revoked_list")
+def revoked_list():
+    revoked = []
+    for revoked_token in os.listdir("./revoked/"):
+        with open("./revoked/" + str(revoked_token), "rb") as f:
+            revoked += [
+                base64.b64encode(ctypes.create_string_buffer(f.read()).raw).decode(
+                    ENCODING
+                )
+            ]
+    return bytes(json.dumps({"revoked_list": revoked}), ENCODING)
+
+
+# Return the crypto parameters (used to sign for trusted parties or check signatures for sites)
+@app.get("/crypto_parameters")
+def crypto_parameters():
+    crypto_params = {
+        key: base64.b64encode(crypto_buffers[key].raw).decode(ENCODING)
+        for key in ["gpk", "g1", "g2"]
+    }
+    return bytes(json.dumps(crypto_params), ENCODING)
+
+
+# Create a new certificate (the id of the certificate is the number of previous certificates +1)
+@app.get("/new_certificate")
+def new_certificate():
+    # Create buffers for C code
+    cert_buffers = {
+        key: ctypes.create_string_buffer(CERT_SIZE) for key in ["cert", "tk"]
+    }
+    cert_buffers["y"] = ctypes.create_string_buffer(SECRET_SIZE)
+    # Create certificate
+    signature_c.pbc.new_certificate(
+        *[crypto_buffers[key] for key in ["gsk", "gpk", "g1", "g2"]],
+        *[cert_buffers[key] for key in ["y", "cert", "tk"]],
+    )
+    # Compute the number of the new certificate (increments by 1 for each new certificate)
+    numero_certificat = 1
+    while os.path.exists("./trusted_from_authority/" + str(numero_certificat)):
+        numero_certificat += 1
+    # Write new certificate
+    os.mkdir(f"./trusted_from_authority/{numero_certificat}")
+
+    for key, cert_buffer in cert_buffers.items():
+        with open(
+            f"./trusted_from_authority/{numero_certificat}/{key}_buffer", "wb"
+        ) as f:
+            f.write(cert_buffer.raw)
+    cert_sent = {
+        key: base64.b64encode(cert_buffers[key].raw).decode(ENCODING)
+        for key in cert_buffers.keys()
+    }
+    cert_sent["numero"] = numero_certificat
+    return cert_sent
+
+
+# Revoke a certificate by adding the revokation token to a list that can be forwarded.
+# Note that a certificate cannot "disappear" : once it is emitted, it can be revoked, but will still exist.
+# This is
+# - realistic as revoked trusted parties may still try to appear as legitimate
+# - useful for the implementation as the number of a given party will never change
+@app.get("/revoke")
+def revoke():
+    revoked_server = request.query.untrusted
+    with open(f"./trusted_from_authority/{revoked_server}/tk_buffer", "rb") as f:
+        tk_buffer = ctypes.create_string_buffer(f.read())
+    with open(f"./revoked/{revoked_server}", "wb") as f:
+        f.write(tk_buffer.raw)
+
+
+# Run the server
+if __name__ == "__main__":
+    print(f'Create two trusted parties for testing purpose')
+    new_certificate()
+    new_certificate()
+    shutil.copytree("./trusted_from_authority/1", "./trusted_from_trusted/1")
+    shutil.copytree("./trusted_from_authority/2", "./trusted_from_trusted/2")
+    print(f'Available on {urls["authority"]["url"]} ...')
+    app.run(port=authorityPort, host=hostName,  server='gunicorn', keyfile='authority.key',  certfile='authority.pem')
+    #Create two test trust parties
+
diff --git a/crypto.c b/crypto.c
new file mode 100644
index 0000000000000000000000000000000000000000..9909e0cfb5e034d111afe381f1620fdf39712b28
--- /dev/null
+++ b/crypto.c
@@ -0,0 +1,954 @@
+// BLS + BB signature with Schnorr proofs...
+#include <string.h>
+
+#include "pbc.h"
+
+typedef int bool;
+#define true 1
+#define false 0
+
+//-----------------------------------------------------------------------------
+// Valeurs partagées
+//-----------------------------------------------------------------------------
+#define fileName "param.pbc"
+#define unittest 0
+
+void comp(bool b, char s[])
+{
+  printf("///====================================\\\\\\ \n");
+
+  if (!b)
+  {
+    printf("         %s works\n", s);
+  }
+  else
+  {
+    printf("      %s does not work :()\n", s);
+  }
+
+  printf("\\\\\\====================================/// \n");
+}
+
+void setPairing(pairing_t pairing)
+{
+  FILE *pFile;
+  long lSize;
+  char *buffer;
+  size_t result;
+  pbc_param_t par;
+
+  pFile = fopen(fileName, "r");
+  if (pFile == NULL)
+  {
+    fputs("File error", stderr);
+    exit(1);
+  }
+  fseek(pFile, 0, SEEK_END);
+  lSize = ftell(pFile);
+  rewind(pFile);
+  buffer = (char *)malloc(sizeof(char) * lSize);
+  if (buffer == NULL)
+  {
+    fputs("Memory error", stderr);
+    exit(2);
+  }
+  result = fread(buffer, 1, lSize, pFile);
+  if (result != lSize)
+  {
+    fputs("Reading error", stderr);
+    exit(3);
+  }
+  pbc_param_init_set_str(par, buffer);
+  pairing_init_pbc_param(pairing, par);
+  pbc_param_clear(par);
+  fclose(pFile);
+  free(buffer);
+}
+
+//-----------------------------------------------------------------------------
+// Code des autorités d'accréditations des autorités de certification
+//-----------------------------------------------------------------------------
+void authority_init(char *gsk_buffer_out, 
+                    char *gpk_buffer_out, 
+                    char *alpha_buffer_out,
+                    char *g1_buffer_out,
+                    char *g2_buffer_out)
+{
+  pairing_t pairing;
+  setPairing(pairing);
+  element_t g1, g2;
+  element_init_G1(g1, pairing);
+  element_init_G2(g2, pairing);
+
+  // Groth Sahai:
+  element_t g11, g12, h11, h12, g21, g22, h21, h22, dla, dlb;
+  element_init_G1(g11, pairing);
+  element_init_G1(g12, pairing);
+  element_init_G1(h11, pairing);
+  element_init_G1(h12, pairing);
+  element_init_G2(g21, pairing);
+  element_init_G2(g22, pairing);
+  element_init_G2(h21, pairing);
+  element_init_G2(h22, pairing);
+  element_init_Zr(dla, pairing);
+  element_init_Zr(dlb, pairing);
+
+  // Soundness mode!  (No real reason to prefer one over the other, but less random call with this one... if preferred take all h random and disregard a,b)
+  element_random(g11);
+  element_random(g12);
+  element_random(g21);
+  element_random(g22);
+  element_random(dla);
+  element_random(dlb);
+  element_pow_zn(h11, g11, dla);
+  element_pow_zn(h12, g12, dla);
+  element_pow_zn(h21, g21, dlb);
+  element_pow_zn(h22, g22, dlb);
+
+  // G1, G2 generators
+  element_random(g1);
+  element_random(g2);
+
+  // Master key generation by the main authority
+  // Things in 1 are in G1, things in 2 are in G2
+  // Keygen param -> pk (elem G2), sk (elem Zp), RL : (elem list)
+  element_t alpha, gsk, gpk;
+  element_init_Zr(alpha, pairing);
+  element_init_Zr(gsk, pairing);
+    element_init_G2(gpk, pairing);
+
+  element_random(alpha);
+  element_random(gsk);
+
+  element_mul_zn(gpk, g2, gsk);
+  
+  if (unittest)
+  {
+    element_printf("Public values: gpk : %B \n", gpk);
+    element_printf("Secret values: gsk : %B, alpha : %B\n", gsk, alpha);
+  }
+
+  // Sending values
+  element_to_bytes(gsk_buffer_out, gsk);
+  element_to_bytes(gpk_buffer_out, gpk);
+  element_to_bytes(alpha_buffer_out, alpha);
+  element_to_bytes(g1_buffer_out, g1);
+  element_to_bytes(g2_buffer_out, g2);
+
+  if (unittest)
+  {
+    element_t temp1, t1, t2;
+    element_init_G1(temp1, pairing);
+    element_init_GT(t1, pairing);
+    element_init_GT(t2, pairing);
+    element_pow_zn(temp1, g1, gsk);
+    pairing_apply(t1, temp1, g2, pairing);
+    pairing_apply(t2, g1, gpk, pairing);
+
+    comp(element_cmp(t1, t2), "KeyGen");
+  }
+
+  //Cleanup
+  element_clear(g11);
+  element_clear(g12);
+  element_clear(h11);
+  element_clear(h12);
+  element_clear(g21);
+  element_clear(g22);
+  element_clear(h21);
+  element_clear(h22);
+  element_clear(dla);
+  element_clear(dlb);
+  element_clear(g1);
+  element_clear(g2);
+  pairing_clear(pairing);
+}
+
+void new_certificate(char *gsk_buffer_in,
+                     char *gpk_buffer_in,
+                     char *g1_buffer_in,
+                     char *g2_buffer_in,
+                     char *y_buffer_out,
+                     char *cert_buffer_out,
+                     char *tk_buffer_out)
+{
+
+  pairing_t pairing;
+  setPairing(pairing);
+
+  // Retrieve public and secret key from the autority
+  element_t g1, g2;
+  element_init_G1(g1, pairing);
+  element_init_G2(g2, pairing);
+  element_from_bytes(g1, g1_buffer_in);
+  element_from_bytes(g2, g2_buffer_in);
+
+  element_t gsk, gpk;
+  element_init_Zr(gsk, pairing);
+  element_from_bytes(gsk, gsk_buffer_in);
+  element_init_G2(gpk, pairing);
+  element_from_bytes(gpk, gpk_buffer_in);
+
+  // Certification key generation by the main authority for the sub authority
+  // y_0 could be chosen jointly... but bleh...
+  // CertifKeyGen (param, sk Zp) -> yi (elem Zp), si (elem G1), tk (elem g2)
+  element_t y, s, n, tk;
+  element_init_Zr(y, pairing);
+  element_init_Zr(n, pairing);
+  element_init_G1(s, pairing);
+  element_init_G2(tk, pairing);
+
+  element_random(y);
+
+  element_add(n, y, gsk);
+  element_invert(n, n);
+  element_pow_zn(s, g1, n);
+  element_pow_zn(tk, g2, y);
+  
+  if (unittest)
+  {
+    element_printf("Certif is: y : %B, cert : %B, tk : %B\n", y, s, tk);
+  }
+
+  // Sending result
+  element_to_bytes(y_buffer_out, y);
+  element_to_bytes(cert_buffer_out, s);
+  element_to_bytes(tk_buffer_out, tk);
+
+  if (unittest)
+  {
+    element_t temp1, temp2, temp3;
+    element_init_GT(temp1, pairing);
+    element_init_GT(temp2, pairing);
+    element_init_G2(temp3, pairing);
+
+    element_mul(temp3, tk, gpk);
+    pairing_apply(temp1, g1, g2, pairing);
+    pairing_apply(temp2, s, temp3, pairing);
+
+    comp(element_cmp(temp1, temp2), "CertifKeyGen");
+  }
+
+   //Cleanup
+  element_clear(g1);
+  element_clear(g2);
+  element_clear(gsk);
+  element_clear(gpk);
+  element_clear(y);
+  element_clear(s);
+  element_clear(n);
+  element_clear(tk);
+  pairing_clear(pairing);
+}
+
+//-----------------------------------------------------------------------------
+// Code des sites vérificateurs
+//-----------------------------------------------------------------------------
+
+int site_verify_tk(
+  char *chal_buffer_in,
+  char *sig_buffer_in,
+  char *g2_buffer_in,
+  char *tk_buffer_in
+){
+  pairing_t pairing;
+  setPairing(pairing);
+
+  // Init elements from inputs
+  element_t chal, tk, g2, sig;
+  element_init_G1(chal, pairing);
+  element_init_G2(g2, pairing);
+  element_init_G1(sig, pairing);
+  element_init_G2(tk, pairing);
+  element_from_hash(chal, chal_buffer_in, strlen(chal_buffer_in));
+  element_from_bytes(g2, g2_buffer_in);
+  element_from_bytes(sig, sig_buffer_in);
+  element_from_bytes(tk, tk_buffer_in);
+
+  // First check is the signature comes from a revocated authority, normaly a list of tk but let's assume we only have one
+  element_t temp1, temp2;
+  element_init_GT(temp1, pairing);
+  element_init_GT(temp2, pairing);
+  pairing_apply(temp1, sig, g2, pairing);
+  pairing_apply(temp2, chal, tk, pairing);
+  int test1 = element_cmp(temp1, temp2);
+  if (unittest)
+  {
+    comp(test1, "Revocation check");
+  }
+
+  element_clear(temp1);
+  element_clear(temp2);
+  element_clear(chal);
+  element_clear(tk);
+  element_clear(sig);
+  element_clear(g2);
+  pairing_clear(pairing);
+
+  return !test1;
+}
+
+int site_verify_sign(
+    char *chal_buffer_in,
+    char *gpk_buffer_in,
+    char *y_buffer_in,
+    char *cert_buffer_in,
+    char *g1_buffer_in,
+    char *g2_buffer_in,
+    char *sig_buffer_in,
+    char *c1_buffer_in,
+    char *c2_buffer_in,
+    char *d1_buffer_in,
+    char *d2_buffer_in,
+    char *p1_buffer_in,
+    char *p11_buffer_in,
+    char *p12_buffer_in,
+    char *p21_buffer_in,
+    char *p22_buffer_in,
+    char *th11_buffer_in,
+    char *th12_buffer_in,
+    char *th21_buffer_in,
+    char *th22_buffer_in,
+    char *g11_buffer_in,
+    char *g12_buffer_in,
+    char *h11_buffer_in,
+    char *h12_buffer_in,
+    char *g21_buffer_in,
+    char *g22_buffer_in,
+    char *h21_buffer_in,
+    char *h22_buffer_in)
+{
+  // Résultat final du test
+  int result = 1;
+
+  pairing_t pairing;
+  setPairing(pairing);
+
+  // load elements
+  element_t chal, y, s, gpk;
+  element_init_G1(chal, pairing);
+  element_from_hash(chal, chal_buffer_in, strlen(chal_buffer_in));
+  element_init_Zr(y, pairing);
+  element_from_bytes(y, y_buffer_in);
+  element_init_G1(s, pairing);
+  element_from_bytes(s, cert_buffer_in);
+  element_init_G2(gpk, pairing);
+  element_from_bytes(gpk, gpk_buffer_in);
+
+  element_t g1, g2;
+  element_init_G1(g1, pairing);
+  element_init_G2(g2, pairing);
+  element_from_bytes(g1, g1_buffer_in);
+  element_from_bytes(g2, g2_buffer_in);
+
+  element_t sig, p1, th11, th12, th21, th22, p11, p12, p21, p22, c1, c2, d1, d2, t2, t1;
+  element_init_G1(sig, pairing);
+  element_init_G1(c1, pairing);
+  element_init_G1(c2, pairing);
+  element_init_G1(d1, pairing);
+  element_init_G1(d2, pairing);
+  element_init_G1(t1, pairing);
+  element_init_G1(t2, pairing);
+  element_init_G1(p1, pairing);
+  element_init_G1(th11, pairing);
+  element_init_G1(th21, pairing);
+  element_init_G1(th12, pairing);
+  element_init_G1(th22, pairing);
+  element_init_G2(p11, pairing);
+  element_init_G2(p12, pairing);
+  element_init_G2(p21, pairing);
+  element_init_G2(p22, pairing);
+  element_from_bytes(sig, sig_buffer_in);
+  element_from_bytes(c1, c1_buffer_in);
+  element_from_bytes(c2, c2_buffer_in);
+  element_from_bytes(d1, d1_buffer_in);
+  element_from_bytes(d2, d2_buffer_in);
+  element_from_bytes(p1, p1_buffer_in);
+  element_from_bytes(th11, th11_buffer_in);
+  element_from_bytes(th21, th21_buffer_in);
+  element_from_bytes(th12, th12_buffer_in);
+  element_from_bytes(th22, th22_buffer_in);
+  element_from_bytes(p11, p11_buffer_in);
+  element_from_bytes(p12, p12_buffer_in);
+  element_from_bytes(p21, p21_buffer_in);
+  element_from_bytes(p22, p22_buffer_in);
+
+  // Groth Sahai:
+  element_t g11, g12, h11, h12, g21, g22, h21, h22;
+  element_init_G1(g11, pairing);
+  element_init_G1(g12, pairing);
+  element_init_G1(h11, pairing);
+  element_init_G1(h12, pairing);
+  element_init_G2(g21, pairing);
+  element_init_G2(g22, pairing);
+  element_init_G2(h21, pairing);
+  element_init_G2(h22, pairing);
+  element_from_bytes(g11, g11_buffer_in);
+  element_from_bytes(g12, g12_buffer_in);
+  element_from_bytes(h11, h11_buffer_in);
+  element_from_bytes(h12, h12_buffer_in);
+  element_from_bytes(g21, g21_buffer_in);
+  element_from_bytes(g22, g22_buffer_in);
+  element_from_bytes(h21, h21_buffer_in);
+  element_from_bytes(h22, h22_buffer_in);
+
+  if (unittest)
+  {
+    element_printf("The server received : \n sig: %B, \n c1: %B, \n c2: %B, \n d1: %B, \n d2: %B, \n p1: %B, \n p11: %B,\n p12: %B, \n p21 : %B,\n, p22: %B, \n th11: %B,\n th12: %B,\n th21: %B,\n th22: %B,\n, g21 : %B, \n g22 : %B, \n g11 : %B, \n g12 : %B, \n h11 : %B, \n h12 : %B, \n", sig, c1, c2, d1, d2, p1, p11, p12, p21, p22, th11, th12, th21, th22, g21, g22, g11, g12, h11, h12);
+  }
+
+
+
+  // Then check each part of the proofs...
+  element_t temp22;
+  element_t temp1, temp2;
+  element_init_GT(temp1, pairing);
+  element_init_GT(temp2, pairing);
+  element_init_G2(temp22, pairing);
+
+  pairing_apply(temp1, sig, g22, pairing);
+  pairing_apply(temp2, p1, g21, pairing);
+  element_mul(temp1, temp1, temp2);
+  pairing_apply(temp2, chal, c1, pairing);
+  
+  int test2 = element_cmp(temp1, temp2);
+  result = result && !test2;
+  if (unittest)
+  {
+    comp(test2, "GS eq 1-1 (sig)");
+  }
+
+  element_mul(temp22, g2, h22);
+  pairing_apply(temp1, sig, temp22, pairing);
+  pairing_apply(temp2, p1, h21, pairing);
+  element_mul(temp1, temp1, temp2);
+  pairing_apply(temp2, chal, c2, pairing);
+
+  int test3 = element_cmp(temp1, temp2);
+  result = result && !test3;
+  if (unittest)
+  {
+    comp(test3, "GS eq 1-2 (sig)");
+  }
+
+  // At this stage, the server knows that the sig receives is valid under the key encrypted/commited in d1,d2... now let's check if this key is certfied
+
+  element_t tt1, tt2, tt3, te2;
+  element_init_GT(tt1, pairing);
+  element_init_GT(tt2, pairing);
+  element_init_GT(tt3, pairing);
+  element_init_G2(te2, pairing);
+
+  pairing_apply(tt1, d1, c1, pairing);
+  pairing_apply(tt2, g11, p11, pairing);
+  pairing_apply(tt3, g12, p21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th11, g21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th21, g22, pairing);
+  element_mul(tt2, tt2, tt3);
+  
+  int test4 = element_cmp(tt1, tt2);
+  result = result && !test4;
+  if (unittest)
+  {
+    comp(test4, "GS eq 2-11");
+  }
+
+  // eq 2-12
+
+  element_mul(te2, c2, gpk);
+  pairing_apply(tt1, d1, te2, pairing);
+
+  // e(u1,1, π1,2)e(u2,1, π2,2)e(θ1,1, v1,2)e(θ2,1, v2,2
+
+  pairing_apply(tt2, g11, p12, pairing);
+  pairing_apply(tt3, g12, p22, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th11, h21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th21, h22, pairing);
+  element_mul(tt2, tt2, tt3);
+  
+  int test5 = element_cmp(tt1, tt2);
+  result = result && !test5;
+  if (unittest)
+  {
+    comp(test5, "GS eq 2-12");
+  }
+
+  // eq 2-21
+
+  element_mul(te2, c2, gpk);
+
+  pairing_apply(tt1, d2, c1, pairing);
+  // e(u1,2, π1,1)e(u2,2, π2,1)e(θ1,2, v1,1)e(θ2,2, v2,1)
+
+  pairing_apply(tt2, h11, p11, pairing);
+  pairing_apply(tt3, h12, p21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th12, g21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th22, g22, pairing);
+  element_mul(tt2, tt2, tt3);
+
+  int test6 = element_cmp(tt1, tt2);
+  result = result && !test6;
+  if (unittest)
+  {
+    comp(test6, "GS eq 2-21");
+  }
+
+  // eq 2-22
+
+  element_mul(te2, c2, gpk);
+  pairing_apply(tt1, d2, te2, pairing);
+  //  tT e(u1,2, π1,2)e(u2,2, π2,2)e(θ1,2, v1,2)e(θ2,2, v2,2
+
+  pairing_apply(tt2, h11, p12, pairing);
+  pairing_apply(tt3, h12, p22, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th12, h21, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, th22, h22, pairing);
+  element_mul(tt2, tt2, tt3);
+  pairing_apply(tt3, g1, g2, pairing);
+  element_mul(tt2, tt2, tt3);
+
+  int test7 = element_cmp(tt1, tt2);
+  result = result && !test7;
+  if (unittest)
+  {
+    comp(test7, "GS eq 2-22");
+  }
+
+   //Cleanup
+  element_clear(y);
+  element_clear(s);
+  element_clear(gpk);
+  element_clear(g1);
+  element_clear(g2);
+  element_clear(sig);
+  element_clear(p1);
+  element_clear(th11);
+  element_clear(th12);
+  element_clear(th21);
+  element_clear(th22);
+  element_clear(p11);
+  element_clear(p12);
+  element_clear(p21);
+  element_clear(p22);
+  element_clear(c1);
+  element_clear(c2);
+  element_clear(d1);
+  element_clear(d2);
+  element_clear(t1);
+  element_clear(t2);
+  element_clear(chal);
+  element_clear(temp1);
+  element_clear(temp2);
+  element_clear(temp22);
+  element_clear(tt1);
+  element_clear(tt2);
+  element_clear(tt3);
+  element_clear(te2);
+
+  pairing_clear(pairing);
+
+  return result;
+}
+//-----------------------------------------------------------------------------
+// Code des tiers de confiance
+//-----------------------------------------------------------------------------
+void trusted_sign_challenge(char *chal_buffer_in,
+                            char *y_buffer_in,
+                            char *cert_buffer_in,
+                            char *gpk_buffer_in,
+                            char *g1_buffer_in,
+                            char *g2_buffer_in,
+                            char *tk_buffer_in,
+                            char *signed_chal_buffer_out,
+                            char *c1_buffer_out,
+                            char *c2_buffer_out,
+                            char *d1_buffer_out,
+                            char *d2_buffer_out,
+                            char *p1_buffer_out,
+                            char *p11_buffer_out,
+                            char *p12_buffer_out,
+                            char *p21_buffer_out,
+                            char *p22_buffer_out,
+                            char *th11_buffer_out,
+                            char *th12_buffer_out,
+                            char *th21_buffer_out,
+                            char *th22_buffer_out,
+                            char *g11_buffer_out,
+                            char *g12_buffer_out,
+                            char *h11_buffer_out,
+                            char *h12_buffer_out,
+                            char *g21_buffer_out,
+                            char *g22_buffer_out,
+                            char *h21_buffer_out,
+                            char *h22_buffer_out)
+{
+  pairing_t pairing;
+  setPairing(pairing);
+
+  // load elements
+  element_t chal, y, s, gpk, tk;
+  element_init_G1(chal, pairing);
+  element_from_hash(chal, chal_buffer_in, strlen(chal_buffer_in));
+  element_init_Zr(y, pairing);
+  element_from_bytes(y, y_buffer_in);
+  element_init_G1(s, pairing);
+  element_from_bytes(s, cert_buffer_in);
+  element_init_G2(gpk, pairing);
+  element_from_bytes(gpk, gpk_buffer_in);
+  element_init_G2(tk, pairing);
+  element_from_bytes(tk, tk_buffer_in);
+
+
+  element_t g1, g2;
+  element_init_G1(g1, pairing);
+  element_init_G2(g2, pairing);
+  element_from_bytes(g1, g1_buffer_in);
+  element_from_bytes(g2, g2_buffer_in);
+
+  // Groth Sahai:
+  element_t g11, g12, h11, h12, g21, g22, h21, h22, dla, dlb;
+  element_init_G1(g11, pairing);
+  element_init_G1(g12, pairing);
+  element_init_G1(h11, pairing);
+  element_init_G1(h12, pairing);
+  element_init_G2(g21, pairing);
+  element_init_G2(g22, pairing);
+  element_init_G2(h21, pairing);
+  element_init_G2(h22, pairing);
+  element_init_Zr(dla, pairing);
+  element_init_Zr(dlb, pairing);
+
+  // Soundness mode!  (No real reason to prefer one over the other, but less random call with this one... if preferred take all h random and disregard a,b)
+  element_random(g11);
+  element_random(g12);
+  element_random(g21);
+  element_random(g22);
+  element_random(dla);
+  element_random(dlb);
+  element_pow_zn(h11, g11, dla);
+  element_pow_zn(h12, g12, dla);
+  element_pow_zn(h21, g21, dlb);
+  element_pow_zn(h22, g22, dlb);
+
+  element_t sig, p1, th11, th12, th21, th22, p11, p12, p21, p22, c1, c2, d1, d2, r1, r2, r3, t2, t1;
+
+  element_init_G1(sig, pairing);
+  element_pow_zn(sig, chal, y);
+
+  // Generate the short GS proof!
+  element_init_G1(c1, pairing);
+  element_init_G1(c2, pairing);
+  element_init_G1(t1, pairing);
+  element_init_G1(t2, pairing);
+  element_init_G1(p1, pairing);
+
+  // commit y
+  element_init_Zr(r1, pairing);
+  element_random(r1);
+  element_mul(t2, h22, g2);
+  element_pow_zn(t2, t2, y);
+  element_pow_zn(t1, h21, r1);
+  element_mul(c2, t1, t2);
+  element_pow_zn(t2, g22, y);
+  element_pow_zn(t1, g21, r1);
+  element_mul(c1, t1, t2);
+  element_pow_zn(p1, chal, r1);
+
+  if (unittest)
+  {
+    element_t temp1, temp2, temp22;
+    element_init_GT(temp1, pairing);
+    element_init_GT(temp2, pairing);
+    element_init_G2(temp22, pairing);
+
+    pairing_apply(temp1, sig, g22, pairing);
+    pairing_apply(temp2, p1, g21, pairing);
+    element_mul(temp1, temp1, temp2);
+    pairing_apply(temp2, chal, c1, pairing);
+    comp(element_cmp(temp1, temp2), "GS eq 1-1 (sig)");
+
+    element_mul(temp22, g2, h22);
+    pairing_apply(temp1, sig, temp22, pairing);
+    pairing_apply(temp2, p1, h21, pairing);
+    element_mul(temp1, temp1, temp2);
+    pairing_apply(temp2, chal, c2, pairing);
+    comp(element_cmp(temp1, temp2), "GS eq 1-2 (sig)");
+  }
+
+  // Generate the looooong second proofs
+  element_t te11, te12, te13, te21, te22, te23, tz1, tz2, t11, t12, t21, t22; // don't publish them, just auxialirary building component 1* is in G1, 2* in G2
+  element_init_G1(te11, pairing);
+  element_init_G1(te12, pairing);
+  element_init_G1(te13, pairing);
+  element_init_G2(te21, pairing);
+  element_init_G2(te22, pairing);
+  element_init_G2(te23, pairing);
+
+  element_init_Zr(tz1, pairing); // intermediate exponent
+  element_init_Zr(tz2, pairing); // intermediate exponent
+
+  element_init_G1(d1, pairing);
+  element_init_G1(d2, pairing);
+
+  element_init_G1(th11, pairing);
+  element_init_G1(th21, pairing);
+  element_init_G1(th12, pairing);
+  element_init_G1(th22, pairing);
+  element_init_G2(p11, pairing);
+  element_init_G2(p12, pairing);
+  element_init_G2(p21, pairing);
+  element_init_G2(p22, pairing);
+
+  // commit s
+  element_init_Zr(r2, pairing);
+  element_init_Zr(r3, pairing);
+
+  element_random(r2);
+  element_random(r3);
+
+  element_pow_zn(te11, g11, r2);
+  element_pow_zn(te12, g12, r3);
+  element_mul(d1, te11, te12);
+  element_pow_zn(te11, h11, r2);
+  element_pow_zn(te12, h12, r3);
+  element_mul(d2, te11, te12);
+  element_mul(d2, d2, s);
+  //
+
+  // Pick a random 2*2 matrix t:
+  element_init_Zr(t11, pairing);
+  element_init_Zr(t12, pairing);
+  element_init_Zr(t21, pairing);
+  element_init_Zr(t22, pairing);
+
+  element_random(t11);
+  element_random(t12);
+  element_random(t21);
+  element_random(t22);
+
+  // let's start with pi... mmhh pi
+
+  element_mul_zn(tz1, r2, r1);
+  element_mul_si(tz2, t11, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te21, g21, tz1);
+  element_mul_zn(tz1, r2, y);
+  element_mul_si(tz2, t21, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te22, g22, tz1);
+  element_mul(p11, te21, te22); // 1 out of 8 !! -> Valid
+
+  element_mul_zn(tz1, r3, r1);
+  element_mul_si(tz2, t12, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te21, g21, tz1);
+  element_mul_zn(tz1, r3, y);
+  element_mul_si(tz2, t22, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te22, g22, tz1);
+  element_mul(p21, te21, te22); // 2 out of 8 !! -> Valid
+
+  element_mul_zn(tz1, r2, r1);
+  element_mul_si(tz2, t11, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te21, h21, tz1);
+  element_mul_zn(tz1, r2, y);
+  element_mul_si(tz2, t21, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te22, h22, tz1);
+  element_mul(te21, te21, te22);
+  element_mul(te22, gpk, tk);
+  element_pow_zn(te22, te22, r2);
+  element_mul(p12, te21, te22); // 3 out of 8 !!
+
+  element_mul_zn(tz1, r3, r1);
+  element_mul_si(tz2, t12, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te21, h21, tz1);
+  element_mul_zn(tz1, r3, y);
+  element_mul_si(tz2, t22, -1);
+  element_add(tz1, tz1, tz2);
+  element_pow_zn(te22, h22, tz1);
+  element_mul(te21, te21, te22);
+  element_mul(te22, gpk, tk);
+  element_pow_zn(te22, te22, r3);
+  element_mul(p22, te21, te22); // 4 out of 8 !!
+
+  // No more pi :( let's switch to theta)
+
+  element_pow_zn(te11, g11, t11);
+  element_pow_zn(te12, g12, t12);
+  element_mul(th11, te11, te12); // 5 out of 8 !! -> Valid
+
+  element_pow_zn(te11, g11, t21);
+  element_pow_zn(te12, g12, t22);
+  element_mul(th21, te11, te12); // 6 out of 8 !! -> Valid
+
+  element_pow_zn(te11, h11, t11);
+  element_pow_zn(te12, h12, t12);
+  element_mul(th22, te11, te12);
+  element_pow_zn(te12, s, r1);
+  element_mul(th12, th22, te12); // 7 out 8 -> valid
+
+  element_pow_zn(te11, h11, t21);
+  element_pow_zn(te12, h12, t22);
+  element_mul(th22, te11, te12);
+  element_pow_zn(te12, s, y);
+  element_mul(th22, th22, te12); // 8 out of 8 !! -> valid
+
+  if (unittest)
+  {
+    element_t tt1, tt2, tt3, te2;
+    element_init_GT(tt1, pairing);
+    element_init_GT(tt2, pairing);
+    element_init_GT(tt3, pairing);
+    element_init_G2(te2, pairing);
+
+    pairing_apply(tt1, d1, c1, pairing);
+    pairing_apply(tt2, g11, p11, pairing);
+    pairing_apply(tt3, g12, p21, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th11, g21, pairing);
+
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th21, g22, pairing);
+    element_mul(tt2, tt2, tt3);
+
+    comp(element_cmp(tt1, tt2), "GS eq 2-11");
+    element_mul(te2, c2, gpk);
+    pairing_apply(tt1, d1, te2, pairing);
+    pairing_apply(tt2, g11, p12, pairing);
+    pairing_apply(tt3, g12, p22, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th11, h21, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th21, h22, pairing);
+    element_mul(tt2, tt2, tt3);
+    comp(element_cmp(tt1, tt2), "GS eq 2-12");
+
+    // eq 2-21
+
+    element_mul(te2, c2, gpk);
+
+    pairing_apply(tt1, d2, c1, pairing);
+    // e(u1,2, π1,1)e(u2,2, π2,1)e(θ1,2, v1,1)e(θ2,2, v2,1)
+
+    pairing_apply(tt2, h11, p11, pairing);
+    pairing_apply(tt3, h12, p21, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th12, g21, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th22, g22, pairing);
+    element_mul(tt2, tt2, tt3);
+    comp(element_cmp(tt1, tt2), "GS eq 2-21");
+
+    // eq 2-22
+
+    element_mul(te2, c2, gpk);
+    pairing_apply(tt1, d2, te2, pairing);
+    //  tT e(u1,2, π1,2)e(u2,2, π2,2)e(θ1,2, v1,2)e(θ2,2, v2,2
+
+    pairing_apply(tt2, h11, p12, pairing);
+    pairing_apply(tt3, h12, p22, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th12, h21, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, th22, h22, pairing);
+    element_mul(tt2, tt2, tt3);
+    pairing_apply(tt3, g1, g2, pairing);
+    element_mul(tt2, tt2, tt3);
+    comp(element_cmp(tt1, tt2), "GS eq 2-22");
+  }
+  
+  if (unittest)
+  {
+    element_printf("The server sent : \n sig: %B, \n c1: %B, \n c2: %B, \n d1: %B, \n d2: %B, \n p1: %B, \n p11: %B,\n p12: %B, \n p21 : %B,\n, p22: %B, \n th11: %B,\n th12: %B,\n th21: %B,\n th22: %B,\n, g21 : %B, \n g22 : %B, \n g11 : %B, \n g12 : %B, \n h11 : %B, \n h12 : %B, \n", sig, c1, c2, d1, d2, p1, p11, p12, p21, p22, th11, th12, th21, th22, g21, g22, g11, g12, h11, h12);
+  }
+
+  element_to_bytes(signed_chal_buffer_out, sig);
+  element_to_bytes(c1_buffer_out, c1);
+  element_to_bytes(c2_buffer_out, c2);
+  element_to_bytes(d1_buffer_out, d1);
+  element_to_bytes(d2_buffer_out, d2);
+  element_to_bytes(p1_buffer_out, p1);
+  element_to_bytes(p11_buffer_out, p11);
+  element_to_bytes(p12_buffer_out, p12);
+  element_to_bytes(p21_buffer_out, p21);
+  element_to_bytes(p22_buffer_out, p22);
+  element_to_bytes(th11_buffer_out, th11);
+  element_to_bytes(th12_buffer_out, th12);
+  element_to_bytes(th21_buffer_out, th21);
+  element_to_bytes(th22_buffer_out, th22);
+  element_to_bytes(g11_buffer_out, g11);
+  element_to_bytes(g12_buffer_out, g12);
+  element_to_bytes(h11_buffer_out, h11);
+  element_to_bytes(h12_buffer_out, h12);
+  element_to_bytes(g21_buffer_out, g21);
+  element_to_bytes(g22_buffer_out, g22);
+  element_to_bytes(h21_buffer_out, h21);
+  element_to_bytes(h22_buffer_out, h22);
+
+  //Cleanup
+  element_clear(chal);
+  element_clear(y);
+  element_clear(s);
+  element_clear(gpk);
+  element_clear(tk);
+  element_clear(g1);
+  element_clear(g2);
+  element_clear(g11);
+  element_clear(g12);
+  element_clear(h11);
+  element_clear(h12);
+  element_clear(g21);
+  element_clear(g22);
+  element_clear(h21);
+  element_clear(h22);
+  element_clear(dla);
+  element_clear(dlb);
+  element_clear(sig);
+  element_clear(p1);
+  element_clear(th11);
+  element_clear(th12);
+  element_clear(th21);
+  element_clear(th22);
+  element_clear(p11);
+
+  element_clear(p12);
+  element_clear(p21);
+  element_clear(p22);
+  element_clear(c1);
+  element_clear(c2);
+  element_clear(d1);
+  element_clear(d2);
+  element_clear(r1);
+
+  element_clear(r2);
+  element_clear(r3);
+  element_clear(t2);
+  element_clear(t1);
+  element_clear(te11);
+  element_clear(te12);
+  element_clear(te13);
+
+   element_clear(te21);
+  element_clear(te22);
+  element_clear(te23);
+  element_clear(tz1);
+  element_clear(tz2);
+  element_clear(t11);
+  element_clear(t12);
+  element_clear(t21);
+  element_clear(t22);
+
+
+  pairing_clear(pairing);
+}
\ No newline at end of file
diff --git a/index_authority.html b/index_authority.html
new file mode 100644
index 0000000000000000000000000000000000000000..75487287e2d71febf98bf9d82f430dbe9cb19f8e
--- /dev/null
+++ b/index_authority.html
@@ -0,0 +1,175 @@
+<!doctype html>
+<html lang="en" data-fr-scheme="light">
+
+<head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+    <link rel="stylesheet" href="static/dsfr.min.css">
+
+    <meta name="theme-color" content="#000091">
+    <style>
+        table,
+        th,
+        td {
+            border: 1px solid black;
+            border-collapse: collapse;
+            text-align: center;
+        }
+    </style>
+    <title>Certification authority website</title>
+</head>
+
+<body>
+    <div class="fr-container" role="main">
+        <h1 style="text-align: center;background-color: red;">Certification authority website</h1>
+
+        <h2>Create new trusted party</h2>
+        <p>
+            <button class="fr-btn" onClick="new_trusted()">
+                Create new trusted party
+            </button>
+            <button class="fr-btn" onClick="count_authorities()">
+                Count trusted parties
+            </button>
+        </p>
+
+        <h2>Revoke trusted party</h2>
+
+        <form onsubmit="revoke(); return false;">
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="RevikedId">Trusted party id to revoke:</label>
+                <select class="fr-input" type="number" id="RevokedId" required />
+
+            <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+                Note that a revoked trusted party still exists, but its revokation
+                certificate is added to a list (and checked by the requiring site).
+            </div>
+            </p>
+            <input type="submit" class="fr-btn" value="Revoke trusted party" />
+        </form>
+
+        <h2>List of existing trusted third parties</h2>
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p>This section list all third parties that has been registered.New trusted third parties can be created
+                from the <a href="" id="authority_link"> certification authority website</a>.</p>
+        </div>
+
+        <table id="thirdparty_list"
+            style="font-family: arial, sans-serif;border-collapse: collapse;width: 20%;border: 1px solid black;">
+            <tr>
+                <th>id</th>
+            </tr>
+        </table>
+        <br>
+        <input class="fr-btn" type="button" value="Refresh list" onclick="refresh_values()" />
+    </div>
+
+    <!-- Script en version es6 module et nomodule pour les navigateurs le ne supportant pas -->
+    <script type="module" src="static/dsfr.module.min.js"></script>
+    <script type="text/javascript" nomodule src="static/dsfr.nomodule.min.js"></script>
+    <script type="text/javascript">
+        var authority_url = "{{urls['authority']['url']}}";
+        var age_verification_url = "{{urls['trust']['url']}}";
+
+        function refresh_values() {
+
+            function removeRows(tableElement) {
+                var i, L = tableElement.rows.length - 1;
+                for (i = L; i >= 1; i--) {
+                    tableElement.deleteRow(-1);
+                }
+            }
+
+            function removeOptions(selectElement) {
+                var i, L = selectElement.options.length - 1;
+                for (i = L; i >= 0; i--) {
+                    selectElement.remove(i);
+                }
+            }
+
+
+            fetch(authority_url + "number_certificates")
+                .then((response) => response.json())
+                .then((number_certificates) => {
+                    let thirdparty_list = document.getElementById("thirdparty_list");
+                    let RevokedId = document.getElementById("RevokedId");
+
+                    removeOptions(RevokedId);
+                    removeRows(thirdparty_list);
+                    for (let i = 1; i < number_certificates.number + 1; i++) {
+                        let option = document.createElement("option");
+                        option.value = i;
+                        option.text = i;
+                        RevokedId.add(option);
+
+                        let newRow = thirdparty_list.insertRow(-1);
+                        let newCellid = newRow.insertCell(0);
+                        let newTextCelldid = document.createTextNode(i);
+                        newCellid.appendChild(newTextCelldid);
+                    }
+                }
+                );
+        }
+
+        refresh_values();
+
+        // Prints the number of authorities
+        function count_authorities() {
+            fetch(authority_url + "number_certificates")
+                .then((response) => response.json())
+                .then((number_certificates) =>
+                    alert(
+                        "There are " +
+                        number_certificates.number +
+                        " trusted parties available."
+                    )
+                );
+        }
+
+        // Revokes the certificate of given number
+        function revoke() {
+            let revoked_id = parseInt(document.getElementById("RevokedId").value);
+            console.log("Retrieves the number of certificates.");
+            fetch(authority_url + "number_certificates")
+                .then((response) => response.json())
+                .then((number_certificates) => {
+                    console.log("Checking whether the certificate exists.");
+                    if (
+                        revoked_id < number_certificates.number + 1 &&
+                        revoked_id > 0 &&
+                        Number.isInteger(revoked_id)
+                    ) {
+                        console.log("Revoking the certificate.");
+                        fetch(authority_url + "revoke?untrusted=" + revoked_id);
+                        alert("Certificate has been revoked.");
+                    } else {
+                        alert("Certificate doesn't exist.");
+                    }
+                });
+        }
+
+        // Generate a new trusted party
+        function new_trusted() {
+            console.log("Generating new trusted party.");
+            fetch(authority_url + "new_certificate")
+                .then((new_keys) => new_keys.json())
+                .then((new_keys) => {
+                    fetch(age_verification_url + "new_certificate", {
+                        method: "POST",
+                        headers: {
+                            "Content-Type": "application/json",
+                        },
+                        body: JSON.stringify(new_keys),
+                    })
+                        .then(() => {
+                            alert(
+                                "New trusted party has been created, keys have been forwarded to trusted party."
+                            );
+                            refresh_values();
+                        });
+                });
+        }
+    </script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/index_site.html b/index_site.html
new file mode 100644
index 0000000000000000000000000000000000000000..75352664ea85d33c3fa48f2024ecd099dcc19ab4
--- /dev/null
+++ b/index_site.html
@@ -0,0 +1,235 @@
+<!doctype html>
+<html lang="en" data-fr-scheme="light">
+    <head>
+        <meta charset="utf-8">
+        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+        <link rel="stylesheet" href="static/dsfr.min.css">
+
+        <meta name="theme-color" content="#000091">
+
+        <title>Restricted website</title>
+    </head>
+    <body>
+        
+        <h1 style="text-align: center;background-color: green;">Website restricted to person above <input class="fr-input" type="number" id="AgeId" value="18" style="width: 200px;  display: block;margin-right: auto;margin-left: auto;" required /> years old</h1>
+        <div class="fr-container" role="main">
+
+
+            <h2>Verify your age </h2>
+            <label class="fr-label" for="TrustedpartyId">You must prove from a <a href="" id="trusted_party_link">trusted third party website</a> that you have the required age.</label>
+            
+            <p style="max-width: 400px;">
+            <form onsubmit="startVerif_safe(); return false;">
+                <input type="submit" class="fr-btn" value="Download challenge" />
+            </form>
+            </p>
+            <form onsubmit="upload(); return false;">
+                <div class="fr-upload-group">
+                    <p>
+                        <label class="fr-label" for="fileUploaded">Upload and verify the signed challenge
+                        </label>
+                        <input class="fr-upload" type="file" id="fileUploaded" accept=".json" required>
+                    </p>
+                </div>
+                <p>
+                    <input type="submit" class="fr-btn" value="Upload signed challenge"/>
+                </p>
+            </form>
+
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="ValidityId">Validity of the token (in seconds)</label>
+                <input class="fr-input" type="number" id="ValidityId" value="60" required />
+            </p>
+
+
+           
+        </div>
+
+        <!-- Script en version es6 module et nomodule pour les navigateurs le ne supportant pas -->
+        <script type="module" src="static/dsfr.module.min.js"></script>
+        <script type="text/javascript" nomodule src="static/dsfr.nomodule.min.js"></script>
+        <script type="text/javascript">
+            var authority_url = "{{urls['authority']['url']}}";
+            var age_verifier_url =  "{{urls['trust']['url']}}";
+            var site_url =  "{{urls['site']['url']}}";
+
+            trusted_party_link = document.getElementById("trusted_party_link");
+            trusted_party_link.setAttribute("href", age_verifier_url);
+
+            // Print the number of trusted parties
+            function print_trusted() {
+                count_parties().then((number_certificates) =>
+                    alert(
+                        "There are " +
+                        number_certificates.number +
+                        " trusted parties available."
+                    )
+                );
+            }
+
+            // Returns a json {revoked_list : [list of revoked tk]}
+            function get_revoked() {
+                console.log("Retrieving revoked parties");
+                return fetch(authority_url + "revoked_list")
+                    .then((response) => response.json());
+            }
+
+            // Retrieves the crypto parameters
+            function get_params() {
+                console.log("Retrieving crypto parameters");
+                return fetch(authority_url + "crypto_parameters")
+                    .then((response) => response.json());
+            }
+
+            // Retrieves the number of parties
+            function count_parties() {
+                console.log("Counting the trusted parties");
+                return fetch(authority_url + "number_certificates")
+                    .then((response) => response.json());
+            }
+
+            // checks the existence of a given trusted party
+            function checkingExistence(trusted) {
+                console.log("Checking existence of the trusted party");
+                return count_parties().then(
+                    (number_certificates) =>
+                    trusted < number_certificates.number + 1 &&
+                    trusted > 0 &&
+                    Number.isInteger(trusted)
+                );
+            }
+
+            // Retrieves a timestamped nonce and stores it (along with required age and validity)
+            function getNonce(required_age, validity) {
+                console.log("Retrieving nonce.");
+                return fetch(
+                    site_url + "nonce?required_age=" +
+                    required_age +
+                    "&validity=" +
+                    validity
+                )
+                    .then((response) => response.json());
+            }
+
+            // Receives a signature, an age and a revoked list, checks whether it all match
+            // The second part of the function (conditions on "signature.user" and "signature.majeur") can only be used if we use the fast unsafe way.
+            // In regular cases, the trust server will not provide any signature.
+            function verif(signature) {
+                console.log("Verifying signature.");
+                if (signature.user && signature.majeur) {
+                    get_revoked()
+                        .then((revoked_list) => Object.assign(signature, revoked_list))
+                        .then((sig_and_revok) =>
+                            get_params().then((params) => Object.assign(sig_and_revok, params))
+                        )
+                        .then((params) =>
+                            fetch(site_url + "verif", {
+                                method: "POST",
+                                headers: {
+                                    "Content-Type": "application/json",
+                                },
+                                body: JSON.stringify(params),
+                            })
+                            .then((response) => response.json())
+                            .then((validity) => alert(validity.response))
+                        );
+                } else {
+                    if (signature.user) {
+                        alert("User does not match the required age");
+                    } else {
+                        alert("The challenge has not been signed or signed incorrectly.");
+                    }
+                }
+            }
+
+            // Retrieve uploaded file and checks the authenticity of the signature
+            function upload() {
+                let file = document.getElementById("fileUploaded").files[0];
+                if (file) {
+                    var reader = new FileReader();
+                    reader.readAsText(file, "UTF-8");
+                    reader.onload = function (evt) {
+                        signature = JSON.parse(evt.target.result);
+                        console.log("Retrieving crypto parameters");
+                        get_params().then((params) => Object.assign(signature, params));
+                        verif(signature);
+                    };
+                    reader.onerror = function (evt) {
+                        alert("Error reading file");
+                    };
+                } else {
+                    alert("No file selected");
+                }
+            }
+
+            // Get signature from trusted party: only used for fast unsafe tests.
+            function sign(nonce, required_age, trusted) {
+                console.log("Retrieving signature of the third party.");
+                let id = document.getElementById("IdentifierId").valueAsNumber;
+                return get_params()
+                    .then((params) => Object.assign(nonce, params))
+                    .then((data) => {
+                        console.log("Getting signature from trusted party");
+                        return fetch(age_verifier_url + "sign?trusted=" +
+                            trusted +
+                            "&id=" +
+                            id,
+                            {
+                                method: "POST",
+                                headers: {
+                                    "Content-Type": "application/json",
+                                },
+                                body: JSON.stringify(data),
+                            }
+                        ).then((response) => response.json());
+                    });
+            }
+
+            function startVerif_safe() {
+                let required_age = document.getElementById("AgeId").valueAsNumber;
+                let validity = document.getElementById("ValidityId").valueAsNumber;
+                if (isNaN(required_age) || isNaN(validity)) {
+                    alert("Missing age to be checked or validity duration");
+                    return;
+                }
+                getNonce(required_age, validity).then((nonce) => {
+                    var dataStr =
+                        "data:text/json;charset=utf-8," +
+                        encodeURIComponent(JSON.stringify(nonce));
+                    var downloadAnchorNode = document.createElement("a");
+                    downloadAnchorNode.setAttribute("href", dataStr);
+                    downloadAnchorNode.setAttribute("download", "nonce" + ".json");
+                    document.body.appendChild(downloadAnchorNode); // required for firefox
+                    downloadAnchorNode.click();
+                    downloadAnchorNode.remove();
+                });
+            }
+
+            function startVerif_fast() {
+                let required_age = document.getElementById("AgeId").valueAsNumber;
+                let trusted = document.getElementById("TrustedId").valueAsNumber;
+                let validity = document.getElementById("ValidityId").valueAsNumber;
+                if (isNaN(required_age) || isNaN(trusted) || isNaN(validity)) {
+                    alert(
+                        "Missing age to be checked, validity duration or trusted party"
+                    );
+                    return;
+                }
+                console.log(
+                    "Checking whether the trusted party exists and sending the nonce"
+                );
+                checkingExistence(trusted).then((exists) => {
+                    if (exists) {
+                        getNonce(required_age, validity).then((nonce) =>
+                            sign(nonce, required_age, trusted).then((signature) =>
+                                verif(signature)
+                            )
+                        );
+                    } else {
+                        alert("This trusted party doesn't exist");
+                    }
+                });
+            }
+        </script>
+    </body>
+</html>
diff --git a/index_trust.html b/index_trust.html
new file mode 100644
index 0000000000000000000000000000000000000000..8c958a121b287e14f9d7e436b8382f0d1d940fc8
--- /dev/null
+++ b/index_trust.html
@@ -0,0 +1,305 @@
+<!doctype html>
+<html lang="en" data-fr-scheme="light">
+
+<head>
+    <meta charset="utf-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+    <link rel="stylesheet" href="static/dsfr.min.css">
+
+    <meta name="theme-color" content="#000091">
+    <style>
+        table,
+        th,
+        td {
+            border: 1px solid black;
+            border-collapse: collapse;
+            text-align: center;
+        }
+    </style>
+    <title>Trusted third party</title>
+</head>
+
+<body>
+    <div class="fr-container" role="main">
+        <h1 style="text-align: center;background-color: yellow;">Trusted third party website</h1>
+
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p> This page simulates one or many trusted third parties that can be used to verify the actual age of
+                users.</p>
+        </div>
+
+
+        <h2>Ask for the signature of a challenge</h2>
+        <p>
+            Select a user which is already registered on the platform and a trusted third party. The signature can only
+            occured if the selected user has the required age.
+        </p>
+
+        <form onsubmit="upload_and_sign(); return false;">
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="trustedId">Select a trusted party identification number</label>
+                <select class="fr-input" type="number" id="trustedId" required>
+                </select>
+            </p>
+
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="IndividualSignId">Select a registered user</label>
+                <select class="fr-input" id="IndividualSignId" required>
+                </select>
+            </p>
+
+            <div class="fr-upload-group">
+                <p>
+                    <label class="fr-label" for="fileUploaded">Select JSON challenge provided by the website</label>
+                    <input class="fr-upload" type="file" id="fileUploaded" accept=".json" required>
+                </p>
+            </div>
+
+            <p>
+                <input class="fr-btn" type="submit" value="Sign the challenge" />
+            </p>
+        </form>
+
+        <h2>Register users</h2>
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p>This section allows to simulate users registered in trusted third parties.</p>
+        </div>
+
+
+        <form onsubmit="registerAge(); return false;">
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="IndividualId">Name of the user</label>
+                <input class="fr-input" id="IndividualId" value="Eve" required />
+
+                <span class="fr-hint-text">
+                    This name will be used to check the age. It will erase previously registered users
+                    if the same name is used twice.
+                </span>
+            </p>
+
+            <p style="max-width: 400px;">
+                <label class="fr-label" for="AgeId">Age of the user</label>
+                <input class="fr-input" type="number" id="AgeId" required />
+            </p>
+
+            <p>
+                <input class="fr-btn" type="submit" value="Register this user" />
+        </form>
+
+        <h2>List of existing users</h2>
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p>This section list all users that are registered on the platforms.</p>
+        </div>
+
+        <table id="user_list"
+            style="font-family: arial, sans-serif;border-collapse: collapse;width: 20%;border: 1px solid black;">
+            <tr>
+                <th>Name</th>
+                <th>Age</th>
+            </tr>
+        </table>
+
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p>Please note that users are currently registered on all trusted third party (which should not be the case
+                in real-life scenarios), and that registration is currently very basic and declarative.</p>
+        </div>
+
+        <h2>List of existing trusted third parties</h2>
+        <div class="fr-highlight" style="margin-bottom: 2.5rem;">
+            <p>This section list all third parties that has been registered.New trusted third parties can be created
+                from the <a href="" id="authority_link"> certification authority website</a>.</p>
+        </div>
+
+        <table id="thirdparty_list"
+            style="font-family: arial, sans-serif;border-collapse: collapse;width: 20%;border: 1px solid black;">
+            <tr>
+                <th>id</th>
+            </tr>
+        </table>
+        <br>
+        <input class="fr-btn" type="button" value="Refresh list" onclick="refresh_values()" />
+    </div>
+
+
+    <!-- Script en version es6 module et nomodule pour les navigateurs le ne supportant pas -->
+    <script type="module" src="static/dsfr.module.min.js"></script>
+    <script type="text/javascript" nomodule src="static/dsfr.nomodule.min.js"></script>
+    <script type="text/javascript">
+        // Port and hosts of the sites
+        var authority_url = "{{urls['authority']['url']}}";
+        var age_verifier_url = "{{urls['trust']['url']}}";
+
+        authority_link = document.getElementById("authority_link");
+        authority_link.setAttribute("href", authority_url);
+
+
+        function refresh_values() {
+
+            function removeOptions(selectElement) {
+                var i, L = selectElement.options.length - 1;
+                for (i = L; i >= 0; i--) {
+                    selectElement.remove(i);
+                }
+            }
+
+            function removeRows(tableElement) {
+                var i, L = tableElement.rows.length - 1;
+                for (i = L; i >= 1; i--) {
+                    tableElement.deleteRow(-1);
+                }
+            }
+
+
+            fetch(authority_url + "number_certificates")
+                .then((response) => response.json())
+                .then((number_certificates) => {
+                    let trustedId = document.getElementById("trustedId");
+                    let thirdparty_list = document.getElementById("thirdparty_list");
+
+                    removeOptions(trustedId);
+                    removeRows(thirdparty_list);
+                    for (let i = 1; i < number_certificates.number+1; i++) {
+                        let option = document.createElement("option");
+                        option.value = i;
+                        option.text = i;
+                        trustedId.add(option);
+
+                        let newRow = thirdparty_list.insertRow(-1);
+                        let newCellid = newRow.insertCell(0);
+                        let newTextCelldid = document.createTextNode(i);
+                        newCellid.appendChild(newTextCelldid);
+                    }
+                }
+                );
+
+            fetch(age_verifier_url + "list_users")
+                .then((response) => response.json())
+                .then((number_users) => {
+                    let IndividualSignId = document.getElementById("IndividualSignId");
+                    let user_list = document.getElementById("user_list");
+                    removeOptions(IndividualSignId);
+                    removeRows(user_list);
+
+                    for (const [key, value] of Object.entries(number_users)) {
+                        let option = document.createElement("option");
+                        option.value = key;
+                        option.text = key + " (" + value+ " years old)";
+                        IndividualSignId.add(option);
+
+                        let newRow = user_list.insertRow(-1);
+                        let newCellid = newRow.insertCell(0);
+                        let newTextCelldid = document.createTextNode(key);
+                        let newCellage = newRow.insertCell(1);
+                        let newTextCelldage = document.createTextNode(value);
+                        newCellid.appendChild(newTextCelldid);
+                        newCellage.appendChild(newTextCelldage);
+                    }
+                }
+                );
+        }
+
+        refresh_values();
+
+        function sign(data, trusted, id) {
+            fetch(age_verifier_url + "sign?trusted=" + trusted + "&id=" + id, {
+                method: "POST",
+                headers: {
+                    "Content-Type": "application/json",
+                },
+                body: JSON.stringify(data),
+            })
+                .then((response) => response.json())
+                .then((data_from_trust) => {
+                    if (data_from_trust.majeur && data_from_trust.user) {
+                        var dataStr =
+                            "data:text/json;charset=utf-8," +
+                            encodeURIComponent(JSON.stringify(data_from_trust));
+                        var downloadAnchorNode = document.createElement("a");
+                        downloadAnchorNode.setAttribute("href", dataStr);
+                        downloadAnchorNode.setAttribute("download", "signature" + ".json");
+                        document.body.appendChild(downloadAnchorNode); // required for firefox
+                        downloadAnchorNode.click();
+                        downloadAnchorNode.remove();
+                    } else {
+                        if (data_from_trust.user) {
+                            alert("User does not match the required age");
+                        } else {
+                            alert("User doesn't exist");
+                        }
+                    }
+                });
+        }
+
+        // retrieves the crypto parameters
+        function get_params() {
+            console.log("Retrieving crypto parameters");
+            return fetch(authority_url + "crypto_parameters").then(
+                (response) => response.json()
+            );
+        }
+
+        // Retrieves the number of parties
+        function count_parties() {
+            console.log("Counting the trusted parties");
+            return fetch(authority_url + "number_certificates").then(
+                (response) => response.json()
+            );
+        }
+
+        // checks the existence of a given trusted party
+        function checkingExistence(trusted) {
+            console.log("Checking existence of the trusted party");
+            return count_parties().then(
+                (number_certificates) =>
+                    trusted < number_certificates.number + 1 &&
+                    trusted > 0 &&
+                    Number.isInteger(trusted)
+            );
+        }
+
+        function upload_and_sign() {
+            let id = document.getElementById("IndividualSignId").value;
+            let file = document.getElementById("fileUploaded").files[0];
+            let trusted = parseInt(document.getElementById("trustedId").value);
+            if (file) {
+                var reader = new FileReader();
+                reader.readAsText(file, "UTF-8");
+                reader.onload = function (evt) {
+                    challenge = JSON.parse(evt.target.result);
+                    checkingExistence(trusted).then((exists) => {
+                        if (exists) {
+                            get_params().then((crypto_params) =>
+                                sign(Object.assign(challenge, crypto_params), trusted, id)
+                            );
+                        } else {
+                            console.log("This trusted party doesn't exist.");
+                        }
+                    });
+                };
+                reader.onerror = function (evt) {
+                    console.log("Error reading file");
+                };
+            } else {
+                console.log("No file selected");
+            }
+        }
+
+        function registerAge(number_certificates) {
+            let registered_age = document.getElementById("AgeId").valueAsNumber;
+            let id = document.getElementById("IndividualId").value;
+            fetch(age_verifier_url +
+                "registerAge?registered_age=" +
+                registered_age +
+                "&id=" +
+                id,
+                { method: "POST" }
+            );
+            document.getElementById("AgeId").value = "";
+            document.getElementById("IndividualId").value = "";
+            alert(`Registration done: age=${registered_age}, id=${id}.`);
+            refresh_values();
+        }
+    </script>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/initialisation.py b/initialisation.py
new file mode 100644
index 0000000000000000000000000000000000000000..3499bf9d394637d6910590c1b8ce3abed4b81907
--- /dev/null
+++ b/initialisation.py
@@ -0,0 +1,34 @@
+import ctypes
+import signature_c
+from os import mkdir
+
+SECRET_SIZE = 20
+CERT_SIZE = 128
+
+buffer_sizes = [SECRET_SIZE, CERT_SIZE, SECRET_SIZE, CERT_SIZE, CERT_SIZE]
+buffer_names = ["gsk", "gpk", "alpha", "g1", "g2"]
+
+buffers = {
+    buffer_name: ctypes.create_string_buffer(buffer_size)
+    for (buffer_name, buffer_size) in zip(buffer_names, buffer_sizes)
+}
+
+signature_c.pbc.authority_init(*[buffers[key] for key in buffer_names])
+
+
+for directory in [
+    "crypto_buffers",
+    "trusted_from_trusted",
+    "trusted_from_authority",
+    "revoked",
+    "identifiers",
+    "challenges",
+]:
+    try:
+        mkdir(directory)
+    except:
+        ()
+
+for key in buffer_names:
+    with open(f"./crypto_buffers/{key}_buffer", "wb") as f:
+        f.write(buffers[key].raw)
diff --git a/launch.sh b/launch.sh
new file mode 100644
index 0000000000000000000000000000000000000000..abffac16f75137481d055a490257bbce305cbba7
--- /dev/null
+++ b/launch.sh
@@ -0,0 +1,3 @@
+python3 /SigGroup/site.py &
+python3 /SigGroup/authority.py &
+python3 /SigGroup/trust.py
\ No newline at end of file
diff --git a/param.pbc b/param.pbc
new file mode 100644
index 0000000000000000000000000000000000000000..b88489a38642045cd2d5501a025d6b7e593fe89b
--- /dev/null
+++ b/param.pbc
@@ -0,0 +1,8 @@
+type a
+q 4977703825549073782412751872918485351360575902591980683180361914842336067053476169548045653605026676957395296951723226642819053743505404649044571560383403
+h 6811765928562975035342611068633254652229306466385146152409132979152255959491603663201386335286224112096172
+r 730750862221594424981965739670091261094297337857
+exp2 159
+exp1 135
+sign1 1
+sign0 1
diff --git a/parameters.yaml.docker b/parameters.yaml.docker
new file mode 100644
index 0000000000000000000000000000000000000000..8f5637fd074f4ce3aa1153ed55bdf718a5c1849b
--- /dev/null
+++ b/parameters.yaml.docker
@@ -0,0 +1,13 @@
+site:
+  url: "https://localhost:9093/"
+  host_name: "0.0.0.0"
+  port: 9093
+trust:
+  url: "https://localhost:9091/"
+  host_name: "0.0.0.0"
+  port: 9091
+authority:
+  url: "https://localhost:9092/"
+  host_name: "0.0.0.0"
+  port: 9092
+
diff --git a/parameters.yaml.example b/parameters.yaml.example
new file mode 100644
index 0000000000000000000000000000000000000000..813257ab1234af9dd82851159e258d3ab11e0a10
--- /dev/null
+++ b/parameters.yaml.example
@@ -0,0 +1,13 @@
+site:
+  url: "https://0.0.0.0:9093/"
+  host_name: "0.0.0.0"
+  port: 9093
+trust:
+  url: "https://localhost:9091/"
+  host_name: "localhost"
+  port: 9091
+authority:
+  url: "https://localhost:9092/"
+  host_name: "localhost"
+  port: 9092
+
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b81f4cee539a874fa920d67762737bf64b061d5b
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,4 @@
+bottle
+pyyaml
+gunicorn
+bottle_cors_plugin
\ No newline at end of file
diff --git a/signature_c.py b/signature_c.py
new file mode 100644
index 0000000000000000000000000000000000000000..a1576ffbb83011a4da8b6f8b2a5e9c0fcf2f5dca
--- /dev/null
+++ b/signature_c.py
@@ -0,0 +1,61 @@
+import ctypes
+import os
+
+ctypes.CDLL("libpbc.so.1")
+pbc = ctypes.CDLL(os.getcwd() + "/crypto.so")
+
+
+# Signature des fonctions C
+
+"""This function is used to sign a challenge from a trusted third party
+#  @param chal_buffer the received challenge
+#  @param  y_buffer the secret of the trusted third party
+#  @param  cert_buffer the public certificate of the trusted third party
+#  @param  gpk_buffer the public certificate of the certifcate authority
+#  @param  g1_buffer the g1 of the certifcate authority
+#  @param  g2_buffer the g2 of the certifcate authority
+#  @param  signed_chal_buffer the resulting challenge signed
+#  @other params  parameters of the signature
+"""
+pbc.trusted_sign_challenge.argtypes = [ctypes.c_char_p] * 29
+
+"""This function is used to verify a challenge generated by trusted third party for a given website
+#  @param chal_buffer the original challenge
+#  @param  gpk_buffer the public certificate of the certifcate authority
+#  @param  y_buffer the secret of the trusted third party
+#  @param  cert_buffer the public certificate of the trusted third party
+#  @param  g1_buffer the g1 of the certifcate authority
+#  @param  g2_buffer the g2 of the certifcate authority
+#  @param  sig_buffer the signed challenge
+#  @other params  parameters of the signature
+"""
+pbc.site_verify_sign.argtypes = [ctypes.c_char_p] * 27
+
+"""This function is used to verify that the trusted third party has not been revocated
+#  @param chal_buffer the original challenge
+#  @param  g2_buffer the g2 of the certifcate authority
+#  @param  tk_buffer the revocation keys for the given trusted third party
+#  @param  sig_buffer the signed challenge
+"""
+pbc.site_verify_tk.argtypes = [ctypes.c_char_p] * 4
+
+"""This function is used to generate a certificate and a secret key for a new trusted third party by the authority
+#  @param gpk_buffer the public certificate of the authority
+#  @param gsk_buffer the private key of the authority
+#  @param  g1_buffer the g1 of the authority
+#  @param  g2_buffer the g2 of the authority
+#  @param  y_buffer the secret of the trusted third party
+#  @param  cert_buffer the public certificate of the trusted third party
+#  @param  tk_buffer the revocation keys for the given trusted third party
+"""
+pbc.new_certificate.argtypes = [ctypes.c_char_p] * 7
+
+"""This function to initiate the authority with a certificate and a private key
+#  @param gpk_buffer the public certificate of the authority
+#  @param gsk_buffer the private key of the authority
+#  @param h1_buffer the public h1 of the authority
+#  @param  alpha_buffer the private alpha of the authory
+#  @param  g1_buffer the g1 of the authority
+#  @param  g2_buffer the g2 of the authority
+"""
+pbc.authority_init.argtypes = [ctypes.c_char_p] * 5
diff --git a/site.key b/site.key
new file mode 100644
index 0000000000000000000000000000000000000000..d9a8189c07153690722647d82a11dcc905032e14
--- /dev/null
+++ b/site.key
@@ -0,0 +1,28 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvAIBADANBgkqhkiG9w0BAQEFAASCBKYwggSiAgEAAoIBAQDTtLsaJPhK94bM
+M8XJkk/a1MA1SEo4peVq5I6La/62+EcFlFXHaPzBw/O8WI20LKCbf3NSHWLCULub
+yiS4rD/vxRStuP4F6FeVUKOJw9RBVKIGAOVrO07r9Pk8RMSTn4FQKrlCzzaVbg3n
+Lvos8XT9ADnc3IELm3ncGMWfE6In6l0Ojnujqlh9nJhhJddmPdJX2/1HEFOcCSDA
+dUV0B9Z5OA9Ow8QPyYbJx67wl7ohp+MC73bzY2BPh5GuaOdaIUpwciU4WNKXTWo6
+rVgY7JkMR9fktpPg7nmwQwn8IPVYoj2aZeW52gIfJz6/aWBgK7a+t1UPVhfj+teF
+jmNd4vjxAgMBAAECggEAKwWBODDnHCTtCbZDrVDEVY4CeVF1c8mSs4Q6y25o1rnh
+hOq9+8YEB0RQ1aeRNFoVUUQ3JSq/lQle9qu/hp/KZmlAaIU9aenrUnaOpUJcceJH
+Ar1P4ditkxm3RF4dLHqvhqEIAOGnD/rLbH2JbXSr93YCTDWrK7auruGB12/f9gg1
+ue45x8xSB9/BaxWrpDMCXXceYKhaKDKIYpreJudj7GULNdsnrsNgg8g6G2i9pSKX
+TD7YW01diYsCCIz71Ql2tXl6tckAfXsn55DZryLwwGBW/+80WSAKGaB+cplYrooD
+cw8UYYjgXsQhNR3UBzTWGkHwxyqtDMcYPbK2LMwguQKBgQDtbSQSl3KaJiaBmoId
+W6IW2rlheszrFIWjxmC9whGWP8D4NULuop0VqJvLrC3kUaswKQzf195FcNEnkXMi
+Vmea/ir5HmMbw4J1G0/cG668iQzbeft9aj4bGwE8P95PeIVQx0O3cVVnWIHZsPut
+tEZR77SdO9fPmu2mNWeQaj5MEwKBgQDkRH821tEZy/OLyLHSYQ6N7F09MOVvXKKU
+D1qtGxPCl8noGn7rnD9U91Ry0y3Ns/7ELGI2peyoU8PDRhNnGE54JUVI8t4aqFuO
+2NgPE7gxaRsW3Hu57A06JPM45ZeCFglvIUfKPVhRlcYcfPlh14N9WnxCPhI2JnLv
+U9zIbW2/awKBgHKqKii8ccGWuTQQjdRl49NL0QoOB5dk8uHUtfYPGvVIVwbImkmr
+yVejdZKY1hUViCqbOLeGhrdcs/Z7HXKw7hqBs/laPp0y//dUuG3iBLLTMZ1xvQ6l
+19a5ZRBW/CO/XgtUIRUgLBHcQeIDwpjynp+Ft+HT+/csqKeD1T9+wBV3AoGAS1BK
+RNa1oPRIw8sQ2J/LRIpC7SiP2qFOxtkWCt1PNLoOFPWBAM3Jm4gLJeOFTkRf/2vB
+b9Ro89THV0tspWxAn6V0abAwFc2Mf+INz1OrRyotlOpkLCC08IU2doRR68rHjBIH
+9LMuy6RF/CpDwcNwj9BmBRkjuxgOfeZGhx6LwkcCgYATTPT7MLVFIT6WRZH+/jlp
+nl7/L+rg1S8k9QPkm77wNsZhgos17USPW4q0l/PkCdixzl7Or9R6TnWf2HHv9O2g
+IHNYrQIvjfGcQ7J5Kgx6u37TdlXTLpakPivOw/HJ0Hmk5BXgGgP9x2VJouMgaKqE
+farsjmb1XOvMwWA5egD9JA==
+-----END PRIVATE KEY-----
diff --git a/site.pem b/site.pem
new file mode 100644
index 0000000000000000000000000000000000000000..bf85e92b246050fdc0eed8808f2735f4e1a3c983
--- /dev/null
+++ b/site.pem
@@ -0,0 +1,21 @@
+-----BEGIN CERTIFICATE-----
+MIIDYTCCAkmgAwIBAgIUAR8RrZwHHmrpKNOts6ZKIx0vgwUwDQYJKoZIhvcNAQEL
+BQAwQDELMAkGA1UEBhMCRlIxDjAMBgNVBAgMBVBhcmlzMSEwHwYDVQQKDBhJbnRl
+cm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMjIwMzEyMTUxNTIxWhcNMzIwMzA5MTUx
+NTIxWjBAMQswCQYDVQQGEwJGUjEOMAwGA1UECAwFUGFyaXMxITAfBgNVBAoMGElu
+dGVybmV0IFdpZGdpdHMgUHR5IEx0ZDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBANO0uxok+Er3hswzxcmST9rUwDVISjil5Wrkjotr/rb4RwWUVcdo/MHD
+87xYjbQsoJt/c1IdYsJQu5vKJLisP+/FFK24/gXoV5VQo4nD1EFUogYA5Ws7Tuv0
++TxExJOfgVAquULPNpVuDecu+izxdP0AOdzcgQubedwYxZ8ToifqXQ6Oe6OqWH2c
+mGEl12Y90lfb/UcQU5wJIMB1RXQH1nk4D07DxA/JhsnHrvCXuiGn4wLvdvNjYE+H
+ka5o51ohSnByJThY0pdNajqtWBjsmQxH1+S2k+DuebBDCfwg9ViiPZpl5bnaAh8n
+Pr9pYGArtr63VQ9WF+P614WOY13i+PECAwEAAaNTMFEwHQYDVR0OBBYEFEWo88Ta
+ST5aRQAN3eu+wvGevkTRMB8GA1UdIwQYMBaAFEWo88TaST5aRQAN3eu+wvGevkTR
+MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAB7ajMLTlynIWXj1
+hcpUeFMzQL7xS4Hm+SBy1mBElKxgxWGjNCzwVr7BjhieY64+HyE2lEgcp0FqX8vP
+QY4P+5KfHGlcCptchW8WS3q/kWpPcPUrgESSsoi/L0PEpDcSdtoMGqDppguI6x6b
+Hjb2kfE01TPfBZGgY/9y7oBH/bqslepfCHX1sLSJZcscgNSN2B4LCpl2/KtFL6EC
+BH/ZVvzFG4nrR4tZQC/Ujm/VZwoCZOFfGOMgqQh8hF+9TPiel4U9/8rXwIUXWIdJ
+TawFuWC1eUlFfim63bkoGX9lM8WQ/QH/cHlGOZEBQtGC/75rl8juAkVxbfOPb24T
+J0earBk=
+-----END CERTIFICATE-----
diff --git a/site.py b/site.py
new file mode 100644
index 0000000000000000000000000000000000000000..f612afe1a6890c866392b10d1cb62d2a25cdb541
--- /dev/null
+++ b/site.py
@@ -0,0 +1,130 @@
+import json
+import ctypes
+import base64
+import signature_c
+from bottle import run, post, request, get, SimpleTemplate, static_file
+import os
+from datetime import datetime as dt
+from utils import load_urls_from_yaml
+
+ENCODING = "utf-8"
+
+urls = load_urls_from_yaml()
+
+hostName = urls["site"]["host_name"]
+sitePort = urls["site"]["port"]
+
+
+# Print the page
+@get("/")
+def racine():
+    with open("index_site.html", "rb") as index_file:
+        return SimpleTemplate(index_file.read()).render(urls=urls)
+
+
+@get('/static/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static')
+
+
+@get('/fonts/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static/fonts')
+
+
+# Take an age and a validity duration as an input
+# Generate the nonce, store it (with age and validity duration), and send it (only the nonce)
+@get("/nonce")
+def get_nonce():
+    timestamp = dt.timestamp(dt.now())
+    required_age = request.query.required_age
+    validity = request.query.validity
+    stored = {"required_age": required_age, "validity": int(validity)}
+    nonce = str(timestamp)
+    json.dump(stored, open("./challenges/" + nonce, "w"))
+    return bytes(json.dumps({"nonce": nonce, "required_age": required_age}), ENCODING)
+
+
+# Checks the signature sent by a trusted party
+@post("/verif")
+def verif():
+    # First checks whether the challenge is authentic and valid
+    message = request.json
+    nonce = message["nonce"]
+    signed_age = message["signed_age"]
+    try:
+        stored = json.load(open("./challenges/" + nonce, "r"))
+        required_age = int(stored["required_age"])
+        validity = float(stored["validity"])
+    except:
+        return bytes(json.dumps({"response": "CORRUPTED NONCE"}), ENCODING)
+    if int(signed_age) != required_age:
+        return bytes(json.dumps({"response": "CORRUPTED AGE"}), ENCODING)
+    if dt.timestamp(dt.now()) > float(nonce) + validity:
+        return bytes(
+            json.dumps({"response": "THE TOKEN IS NOT VALID ANYMORE"}), ENCODING
+        )
+
+    # Checks whether the party is revokated: site_verify_tk returns 1 if tk is revokated, else 0
+    chal_buffer = ctypes.create_string_buffer(bytes(nonce + str(signed_age), ENCODING))
+    is_revoked = 0
+    revoked_list = message["revoked_list"]
+    for tk in revoked_list:
+        is_revoked += signature_c.pbc.site_verify_tk(
+            chal_buffer,
+            ctypes.create_string_buffer(base64.b64decode(message["sign"])),
+            ctypes.create_string_buffer(base64.b64decode(message["g2"])),
+            ctypes.create_string_buffer(base64.b64decode(tk)),
+        )
+
+    if is_revoked == 1:
+        return bytes(json.dumps({"response": "REVOKED"}), ENCODING)
+
+    # Checks whether the signature matches correctly
+    arguments = [
+        "gpk",
+        "y",
+        "cert",
+        "g1",
+        "g2",
+        "sign",
+        "c1",
+        "c2",
+        "d1",
+        "d2",
+        "p1",
+        "p11",
+        "p12",
+        "p21",
+        "p22",
+        "th11",
+        "th12",
+        "th21",
+        "th22",
+        "g11",
+        "g12",
+        "h11",
+        "h12",
+        "g21",
+        "g22",
+        "h21",
+        "h22",
+    ]
+    sign = signature_c.pbc.site_verify_sign(
+        chal_buffer,
+        *[
+            ctypes.create_string_buffer(base64.b64decode(message[key]))
+            for key in arguments
+        ]
+    )
+    if sign == 1:
+        return bytes(json.dumps({"response": "ACCESS ALLOWED"}), ENCODING)
+    else:
+        return bytes(json.dumps({"response": "ERROR IN CHECKING SIGNATURE"}), ENCODING)
+
+
+# Run the server
+if __name__ == "__main__":
+    print(f'Available on {urls["site"]["url"]} ...')
+    run(host=hostName, port=sitePort, server='gunicorn', keyfile='authority.key',  certfile='authority.pem')
+
diff --git a/static/dsfr.min.css b/static/dsfr.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e4a4980042ac07dee5ec2b1c9fe5174931c27d0e
--- /dev/null
+++ b/static/dsfr.min.css
@@ -0,0 +1,4 @@
+/*
+ * DSFR v1.1.0 | SPDX-License-Identifier: MIT | License-Filename: LICENCE.md | restricted use (see terms and conditions)
+ */
+@charset "UTF-8";@font-face{font-family:dsfr-icons;src:url("data:font/truetype;charset=utf-8;base64,d09GRgABAAAAAB0wAAsAAAAAO+QAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAAFsAAACEI3woak9TLzIAAAFkAAAAQgAAAFZZDkOMY21hcAAAAagAAAI0AAAGxrfIUzRnbHlmAAAD3AAAFE4AACiwie3OemhlYWQAABgsAAAAMAAAADYeGFz1aGhlYQAAGFwAAAAeAAAAJAiYBEhobXR4AAAYfAAAABYAAAF8krwAAGxvY2EAABiUAAAAvQAAAMDas+QAbWF4cAAAGVQAAAAdAAAAIAFzAHBuYW1lAAAZdAAAATEAAAIuRB1J2XBvc3QAABqoAAAChQAABeq9FV3peJxjYGRgYOBiMGCwY2BycfMJYeDLSSzJY5BiYGGAAJA8MpsxJzM9kYEDxgPKsYBpDiA2YmACmiUBFrUG4giGSIYoMM8TKB7BEMMQCyTj4DQjUH04QzQAp+ULKQB4nGNgZLFlnMDAysDA9JPZg4GBYQWEZnJgsGI0BdIMrMwMWEFAmmsKgwOD74NQ5hf/LRhymF8wnAAKM4LkANMFDCwAAHiczdRJT1RhFITh90KDijiiOOGMiorzPI8goqKigAyyISSuWJCQ+HPrn2Cd7lp13LnxkqdDf0Bzz82pAvqAXhu3FvTM0Pg7mimfNu3zXgba561mxO8Psd8nLT4xyxrr/GKDTbY0t73tn3af0j7tvhp/SvcXLLDMCj/4ySKrLPm3etr/qY9+drCTXb6P3Qyyh73s810c4CBD/svDDHOEoxzjOCcY4SSnOM0ZznKO84xygYtcYozLXOGq57nGdW5wk1vc5g53ucd9HvCQRzzmCU95xnNe8JJXvOYNb5lgkndM8Z5pPvDRM87wmS989azf+M4c8x6p/y9z/su1UC/L3af1fPyA6lq0Vfyc/p9rsF5av/PON+dn1VHTzEYNtRYrth6ezHvTUSNuRA26GfWZW+HJRUdtqsJbg6I2W1HbraitV3i7UHjPUHjjUHj3UFQaFN5HFDW9wjuKwtuKwnuLwhuMwruMwluNwvuNojKi8M6j8PajcA5QOBEonA0UTgkK5wWFk4PCGULhNKFwrlA4YSicNRROHQrnD4WTiMKZROF0onBOUTixKJxdFE4xCucZRTWYwhlH4bSjcO5RuAFQuAtQuBVQuB9QuClQuDNQuD1QuEdQuFFQuFtQuGVQuG9QuHlQuINQuI1QuJdQuKFQuKtQuLVQuL9QuMlQuNNQuN1QuOdQuPFQuPtQuAVRuA9RuBlRVOYVbksU7k0UblAU7lIU1REK9ysKNy0Kdy4K5v8AgDfus3ictToLcBtlevvvSis/pcjWau3YUizJ0tpYfmn1iF+KQ2zJeTp2nMQExwnu4gRCaHJJCCHhfAEnhAQHU+7Ua+HgmpTymA6Q3l24lswdNTM93XBwx9Rkegxt05s5SmcoZTgf5HTW0u/7V5JlRwZnOrWs1a9///97/d97xXAM8+XTug3cKcbCVDH1DEN8olW0LjPwBr5K8kieZaFgKMjBlA8GDcTJh3xh4oeBkVjshB08c/jgmq6uNQcPq5+mRxdbNvVd7utdueqZv33m49rumprufrxw4/OXkWU4St4x0NjU3LilddWqi6mFcGH08+gKMmuYDQyjd2YoqspQ6YYBJc1IDFKYtYpwV2ogkscAEzwsczsbiD9MfHZiMRLJF/R7nLzFmkW5Rgglbmzt0I7bhnrkU0883Nwdfv61Fzvbioqc1d8d2T088u2qFSZTB1kVHAoGh+7BS7C2ra2/rU1ZAIRy+HqbpdRqDcsr2fZAz5q1XHdnv3LH0PBpq7W8/OzuoTuUzT9NQYGLgmD62xiGmTuPQuA7AOcRkAVZcAmugCtQmot/CQ8m6Mc7TvxuwTusR4nHlXgiB49n9u/cEQiFAjt2vp8ekClcHFeS7+fiRJm3lg6ALAaJvcx+AnQyxCybHYLD7DI7AoCZeNVpRZ0mU+mBV6F8vaMb5fYxZkZgyhkmn1jhOFwOPJwQgeOxcoIcwDc7Tj7gjWLxbE9xWbGBfGAQK8oGFUXh+md/VlhpNRqtlYVcS6HRmNynKGQ4kUBSdFnwLUwZU5kLA3EQDmRphncuJOoAV6Q+4FNy4Zp9j72Y/J1CphJp3v+Vq2LyGMZNxHwSAgmwZ0lRVD2uHo+SIuWnOD5BTkXU37O7cbm2J8ZuRM0mIdzDDl7vVt9UpyJk2xdRdYqEo5l1H3ECwiYgVGLIJyI5w+5Ofp/CB5hkSlFnouQUORVlWLr+GHsFJJyPJwFnIBpEAyGTCstHr18HyOyV5Dh7IvrF9QgJ43JtzyX2XaAFT09EFA4JSJLY1xIR9Q3SGVGntc8EmUxESCeM4Lv6RiSRoVFg36G80N2sPcUCmfwiQjpIOLKQF4CeTyTiCHC16kyEnEI5FSefBSWZk1qGtvE5fkCzgB2RcFVKMoH8kHBufv6OfSvFj4SY3PRK/oDUA92sJzUgk7+nnKxPpD7TdFal+KH72CcRkToF/FyPqFMwyPCDtFF+kBnQea5K7Y+Sl9VToPlsidoHYzCkuTNP6QmeDAEZG9izmdNj70g+y96h/i6K4ohkdGSQ0mGgiwdT4iRvpQjS+AVd38hdBglVMEypw2zhQc09ASL7rDagyh9sQ7fhCMgK95FNmD0h2NhP4oJttswmxME8QY3VsGCzCVy/TUgkBBtofMr3vAO+5zIjMi5GAhoAnpAGbp6DanCgO4IRuCXRYXZw/XGEhnhSCMDqlRhXFVMSs9e4KkQze40irKLI4gp1T+oBivNhwNnPLAd/5wGcLurFBOrG4BWYc29EdEkheQXBK3slTv1Ym7x786H1JzI+Tf3RvsP79x++j165fpzaf2hk67r2lmrfKxn/pR54RfujfiONX2bWM39CuUbMFiTDJXgk+gr4kYxSeY6aOpIiFKmEsNJIPP5VJIjzvInwlhXETmTHIvNkJp4hef+J9Yc275bbcPyu0hfpqqmtremK9MXpcOC2refreJ7byvNbOZ7fUFDCD/DwX1JA6mF6m16/bf60xjRl8xVfdUv7uq0jhyiuZBeCvZCBv2OyM9ypFujPFVgLzukLCvIfgcEj+QU3zqR1WcezP0HdTPm8GfKLSPITcGCfkV9Ek/9NHRjq5lOgmxi3ly8SsTkwHcmQMwD/AxmJqr+diOYMqcRLRiLqb89HU7qaxlPLNC6CKWdsDEkhETxWLvQ5YmPbdHSCVOQmKEdkjE9Hz5OKyDw5VC0mBwk9W0gEgqTc5ExEJ9L/OQlg27JWMNm5XC3kTDchk9IQBg3JIKFwliqa/ecjE+cjj09EHpuInF+qgMjV85HzsAU2wvaUz/tz8L2FNC5mqMDo+Pn1yB++iHwOLvDq9ch1GMH365HU2W/gxtO5BMGgnnZTroAccGDcwBfXn1BsQrILvE6CzKgHMLRDIClBX8R+Am7qgnqATOI7lUNkw7Vh9uUQ5gMXzQ6zXja7SuFNhslMBn6cHVTD1LUBBiULR7KLvRLT0KR993LAwTFFDBOCCJ+fziBi3PjsCbCqpog6qG7vIY2KTyFnSGNE3U5ejKjvsg3a/qdh/8NMAWMES3QFSNC3AjIdA00W7p5m2021xvMm0+ynCE3B76YJmEruUphMfon7dYyJKUVbloggLgCzmvwxquoP4OYaUwZYHGd1EYRpNAJMU3J3BmZa12nmlVvbMb2DI8lt95h05bT5YcjxJjGHTJ9P2ubrmeabsnqa+JldS7Z7ZTGScih1QgHlmmaYufPtZ0owNhMBc2I5K4bKblAikDlcZhKQMoD23KeFYkV9IEJOf8hegfQhoU5T9Tkr2EB1PqR3lLk89z4Kv5bWRVix2YmIxU4V1j1hAnGKSiDkyYjAQINpaH4lNK+OO3Xk4FOi+NTB+9QvUqMjp/buvH3ValFcver2nb+aG+4N72lv33MCL2Fni9PZ0oUXrr+99e2xsbdb29Ofs9fqvb19d97Z1+utnxs9mNoKFyW1FS603nsQ+LrIFDN2xg2ctYNu8jqNISkE6RAWeHY2GJKMpAE+RIm3syG9BKUfZ5CCdlbkDQQ+DNw3D6v/88eXypdtW/10lPu36HPJl+Ruk3jmzfd2jnpHd69zFFZ+fMFoCqx1ksd65FJh/7Ov7dj0jc//ZdJq3aS2NN3e5eRca4V7rz6y/emOp6Ozzuhz7LbGo2v2Pret0D9aWehYt3vU+/EF19qAyXgw2rNtR2y4rLy3ftnRnx978C7yM9bZdXsTjZdfXqC6Wgdf0ikNnBP1T6AGYG0Cpjo2IhtcZjy0ANXYlH6uDL1xdGxsdLvzlupVdULJOeuRo2+EVqISamX0meP37H2slAxP3rtzVK8/XmZxDk+qF0of23vPcbo/rYuavTQx3SBNVIlgRieMhOZXGj1UXeAlAk1GjtLE5TIt9uyeLX1eb/HK4OCOX90+GFxZXF/XN7BHUfS6QovbFiqXyp3OkkLuwXLFl8POuOJwG+jS9oFm2de8dTsoVXtHMalVtjQut1rclmUcy+/S5VuWO7Yo6oFctpfiqQJ4KgYvANVHtmkRmpCGuKpEOt+EUikWj3PjCXTRYGTjgk0tisNfti8cZ3jwxWitskGSA3IIUlqzyw0AHQDeoMFnzwKgGESMIkg9ky+AbQ4mTMVWREMmEeLsNZgRbIDJYjLZBGbOV4+DrQqYp/uCAbMjk1JDUmkOCTHiBQgzNH++Zi02gU8Asr1aNm0yCuwVWuCm+R4HvsFrlxJHVmpOvYwZILEeDQ5AHE6wV9jBNCD0L4nk+1CKZPz1cipDkVlxgxQ1x1BHzJDuWi18HckW6CRtfwQhzNW2tdUq80Sb7KLdDIh1Xuxm6DJnlQ8RVQSrhnhlljX3A+EAWzGu0nnCTsl6MB6naP6SIolly1wjJI50ACrijQMm4s0Svp3KPjsX+oqYBBFBwpbDTcUk1oPxKE5rJt28nOsmY1IpNnb+v2IS1JmKFpM0GjeC7jQxHUyE2UJjBkQNTrQKEPItBiMHWs47JafUwIFaevwhfyjMhYJyUNTig6YSbq115gvqtTPUwgk7OFJtvyUyulHiWEJYTto4GqmzeaZyTe7uOrRmzaEzeCHELbvhX309u0UIS2s2LL4/azKRggOX4nIE5N6e1T/U4mQFtwXO3g0n00ZzJSp/zetiF0iGI9GKPcHt9PiDqO2lcIM4nDwYl1WmFgtK2sx95xSnNy6raiw1nvoWWWavru90O4xFyZ9X1dd3NjS4Tp9mQ0mmQpIq2C8rJalyy7vOkkpTqXO57z3ycputxFpR1lzTOdvQicvVMvIy6fNUzKoVHk8Fx1ZA2avP0ItZWSXUDD7qMebV3zT3TBNqwAQ0CAcBvATwYChPcaywU8YaZa8k/3GF1xv2evsgiypt2tNbr8hrZWxvzSvIMUON47Kw16c+SkYafNv80+9Vy7J7mhzVfM93dZu5M4yDuRW9BRw+lrKg1dhnBcWG7AMi8yoSJp5GSGUhZDewsMJIrCsgcIOWwD2MLhD/rBBEJqLNgUBzyZqhwduGTpeJYtmaaJPLtevkQ40lTU5nUzRKNi+YWLiB3RJtPnnuJEzht9NDtw0OrYk2PnRyl8vVVNL0rZNN0Yg6nZ4wN9OJyMIdc74QfZSNkWisvrHnQaOjpiaGgJYy2YiI6exlX0bYgq+pobf/J/29DU0KVco45IQ2QS2iXhP8u28X3sNFu3w+agZdPi0Q6bJocIC2Nn4dFXpagwgukqFmEUrwYLHoIV5K0qIE0fJEAaeaJiyVx2JfxJSKXfPoyce2pBRDp58KMOR99Y3V5CQ5sXq+cqmbyLIN6o9Jz4ZUf2kj1XELxIMboOrzidmRz2aD5faoh9V7uKrZBDlGDs8HPa1+jyjJHwCLPyAbtbMEYS6HIMcxBqwnS6GWSb9occUOJl/AT6jQEvBa0p7MO3vPEuqddAma+0HDbxYNLmcxuNCC5/9U73CpGnWpsaWWlq5LDi4ejcpUjqPFP+diUdZDvaloBSfgz93peLtA4HWFBTP5+bmF8gJfWKS+zhewPH+RF3hmQa+j9aairmi1gPcCt4Q6B15pqSKqAfJmCgr0PJK6ZEl1XTQI+os8z+bzpJtywGTlDdgHECH3xNwINM4dcEAGruVhaeMg6Gkc6c4u9hwgHxpMdinptAttIuZDk4YcKQZKmtAMXDN2MoMVtE2IxQQbk3muNs64QJ8CTAtkBBAZ57wMxWtL+586Imjm2cFm7oDzKRUckHTCG52QN4aoYhrO9HjOzSiz1+JaiyX5fizm0yZpvziuLaN8xKn/8uFCyLRjyftiMSj9F+ZxTYv3FjpImG3goEQUw8QOkceFAVFeJLGr6agsbOzZut6fN6JvbvXo6uzYll6s/9Bf1LppoKuWc62utdicefXtNTZhfY7cL3Kz/YiQ4KKlIIRLiKZSmLUjAzeVDdoEe53O09qsH8nzr9/a01hY2V679K7F5ar1gq2mvT7PabPUrq7marsHNrUUMQvyZxcjL8JZCCjnDCJU3YKrVOIb2IAM1bmdC+Xk4a5wSNj15PMbmlu+eXd7rLm5FT8mUpM5if689ZnnJnr56u3lhZE/XaW+ObicfqZm0zXuY7rt3JP0DJisLMPAyf4Gjjdk5ymlLoudC4aIefjYkSPHfnzLLSZT9Pux9nv/7HtPtrBDw8fuO3L/39fVmkw96UmusK+iwrbib44cvP/4ncTe+8TBMNuyMjnaX1lptz8PsydG1d9sfuLAKtISyur9YP+QwSidsWWRGhM+KxlPvqBovR3Q/zjaBdV6LaTFsRmEvS4uAyuPsWIn3Q3QoFhxmDlHdrVGrRBcgjKRfNdHQdL4SEzE60MHzTZOJLu4qniqyVSFPgKTDuxPTOiG4HzLALZokNBi8ISz0gwLz52+GrnaMbnxgbtG2zs62kfvmsGB/CLMNsmZ7zh4YMMTqbPQYDZ+BVRDmAQWWAPUgiFAFr3afgOybzfJmXyGJitdY80vwsrGBQRsnBSbx7oyOQ1dLzfNPYe7TKZQqhjfoTROdpEpjOUFQPPKlB/G+I/ZN/rjFYwfPSNJPS7GzjS+S4Engm+wXHwI5p5jIes5FRRFshmKI3S9UIQ9Grkrwgbgood38p/gwv0yBi6b9WQe9mSeyqj/qdXX3Diu4GDr+uRbuKMf9+IIEjX4S8zbRQfqdBBr7+BQiucvP9Nt5VowayAo8hBvwN9IiGAK9KGVRxKgsBN5iTYP4ao928I+VCCoG2hZ5WgsCkebJh5sXfbN/9hc6auTvXUbmhubhH1rVv/Vlp6LW88d2de7rtYTZt8uz7O0V7uNfnHNyW7+GyPNK4NDlaSca97WXlCU37mZ+OsLGpqCvh0D+/beXWSqT9vtp7pmbjVkvJuwQ2YkWC80Eo/Ei1Z8RmYi1jQ9KFR9mIVpnMJ2Jn04p9k1rkk9o/OEtGeGbFK6VSKEWIo3/cXj1rrafYPFpLh37cr7t9/W1GwutbvVfycDZyf9ZlvpCo+xoKg8Ej5451ivMnzREWwZ9ht8Va2OOtIx9pBLKBbYf5ZWS73FJWyhcPT4jsGuUF5VfpuusOzWrrvvfdxUVlkiTqx7IGj3E6IziN0V1a4fPXp8U7R8WUFeyKUrtko6hy2wemDP8Se/EzDyHJfuC3EfcZfpbzwYMcs4yAJroXzGs55b9ndrR9791+mBMvcgkUzNu0MHaV9O8YmMFyL+PIyuOUvMjX1en3iOFCWjd8R7I1H9cz+SyaJv7tlmLkqVud/DaDL6L6iJQuD93NkZihvDO6QmRtAUt15CV+KRQjAFxJIrU+jlpkg+byzOyys28up18lnUXSvX9bR22irj2FkTbL/WsXxR3uyHeUU8q/u1vadyS2NgR0VP3VhPV0drSl4abj1k91gTGlyCLEpLooE9+9IPf/jSO19NCDt2Ln5OWgo1mhxepnJwLiaHepJ5dhcSiedG3OzVS9FLlyKvvhq5dCmaUwrx9F34ZzIyeDklg5qvlsF8/DOLCGAeEYtLYD4lGh1jKT3wL1UT3AsUI5dMLkZ7erdvig6NNjWqia9Rkl9GO1/dfedrndFNHxw7um+vcoPO6DJ0ajrTenNas5DeRWW4CNGLi/NrKKe/nYH4VwW5NWR5xIrOlzpXI/1wUdeK6RP4V+qP8VFFKChTR2snpJ7oAgW8Dpt0Or4g318deHFg3ead0RFPtT8fHF6O6WScZiYXpR65w+/vkKM17mCBSVtaWBB0rzzU0gjTPdK8abX8lVeY/wV+OLQRAAB4nGNgZGBgAOItptt64/ltvjJws2wAijDcVe3RRdD/LVjWMW8DcjkYmECiADckCq94nGNgZGBgfvHfgoGBZQMDELCsY2BkQAXxAGA7A+oAAHicY2BgYGDZMIqJwj6kqScEAFLgPBUAAHicY2AAAh+GE4wyjCaMKYyzGLcwnmB8wPiLSYpJj8mDKYmpiWka0zqmY0y3mNmYHZgbWERYNFhiWNawPGN1YI1ibWPdwXqD9QebElsY2wq2G+wu7GvY33FEcNRxrOO4wvGLU48zh3MB5yeuHK4j3ELcDdyHeHh4zHjSeBp4ZvGc41XgjeHdw/uDL4BvHj8PfwL/Mv4z/H8E1ASKBBoE3gjaCO4S/CTkI9QldEGYRzhAeIkIg0gEOgQAbkYyQwAAAHicY2BkYGCIZ0hh4GIAASYg5gKz/4P5DAAc+QHkAAAAeJxtkT1OwzAYht/0D9FKCARiYfECC2r6M3ZkaPcO3dPESVMlceS4Fb0DJ+AQHIKBM3AIDsFb80mVUG3Jfr7H7xcrCYBrfCHAcQTo+/U4Wrhg9cdt0o1wh/wg3MUAj8I9+rFwH8+YCQ9wC80nBJ1Lmju8CrdwhTfhNv27cIf8IdzFPT6Fe/Tfwn2s8CM8wFPwkjSpHeaxqZqlznZFZE/iRCttm9xUahKOT3KhK20jpxO1Pqhmn02dS1VqTanmpnK6KIyqrdnq2IUb5+rZaJSKD2NTIkGDFBZD5IhhULFe8n0z7FAg4sm5xDm3YpflnvtaYYKQ3/NccsFk5dMRHPeE6TUOXBvsefOU1rFL+U6DkjT3vcd0wWloan+2pYnpQ2x8V83/NuJM/+VDf3v5C7A1ZCwAAAB4nG1U53+bMBD1S1eGs9Mm6d6bjnTPdO+9dypjEfOLkBwBcfLfF92BDU759N7T3enuHlAbqPFTr/3/WcIAtmArtmE7dmAQQxjGCOoYxRjGMYFJTGEaM9iJXZjFHOaxG3uwF/uwHwdwEIdwGEdwFMdwHCdwEqdwGmdwFh7O4Twu4CIWcAmXcQVXcQ3XcQM3cQu3cQd3sYh7uI8HeIhHeIwneIpneI4XeIlXeI03eIt3eI8P+IhP+Iwv+Ipv+I4f+Ilf+I0/WMLfWl34vkl14gWhUl2iQi3HRbPp+aH1lSQ+6LgDw0JJywk55HBrTcdrmo4mPlnicTlCyYAzZks8zsrZmPW5iu6UrEraUEXJ0sEEKzZcblVqspDFiLzmfJ/eKzq1+WS6LKVt0kZZy9l4l3HGqJ8tQjeFpa30GMX6LZF4q6lJJJ2WOa3Tb0l/heAMwYZZL/bu4jeJtF1fmViWw6oKFybFwZGmVDK/v8DUt7NHGcHGDslmyL4yctqUzCa1XkdYHeplOuyTOGo9kVYL5RjPMig3+I66AyYIeMJA+LJhzEplwn6RSmYn0uv2RxdXJWqZJGqZEA1FqN0M2Iwuoxcm1IGxkUhCo+m4IriIsVDHiVi2IuK1uoGybWjPObBZoUU7JeYulMm87CHqMRKhYo0QGRJJnXoLueowlW6LtM/VikLV2kpscB4hWnHbhjozgD/igtAuVlMZd4ftMcqyMrAybnFWQeiOWKzlWyVEHcdSWJ+DC0w3xGkjscLn12U4acmIU+tJJ0y6TRWEymcjscyIjFkzKo3YXTamLJQjojR/kSsCWZcL2WfpzkuUxt0waZI2ODf7P0popNnf0UcLtlb7B9UZ6LQAAAA=") format("truetype")}[class*=" fr-fi-"]:before,[class^=fr-fi-]:before{font:normal normal normal 1.5rem/1 dsfr-icons}.fr-fi--sm:after,.fr-fi--sm:before{font-size:1rem!important}.fr-fi--md:after,.fr-fi--md:before{font-size:1.5rem!important}.fr-fi--lg:after,.fr-fi--lg:before{font-size:2rem!important}.fr-fi-account-fill:before{content:""}.fr-fi-account-line:before{content:""}.fr-fi-add-circle-line:before{content:""}.fr-fi-add-line:before{content:""}.fr-fi-alert-fill:before{content:""}.fr-fi-alert-line:before{content:""}.fr-fi-arrow-down-line:before{content:""}.fr-fi-arrow-down-s-line:before{content:""}.fr-fi-arrow-left-line:before{content:""}.fr-fi-arrow-left-s-first-line:before{content:""}.fr-fi-arrow-left-s-line-double:before{content:""}.fr-fi-arrow-left-s-line:before{content:""}.fr-fi-arrow-right-line:before{content:""}.fr-fi-arrow-right-s-last-line:before{content:""}.fr-fi-arrow-right-s-line-double:before{content:""}.fr-fi-arrow-right-s-line:before{content:""}.fr-fi-arrow-right-up-line:before{content:""}.fr-fi-arrow-up-line:before{content:""}.fr-fi-arrow-up-s-line:before{content:""}.fr-fi-calendar-fill:before{content:""}.fr-fi-calendar-line:before{content:""}.fr-fi-chat-quote-fill:before{content:""}.fr-fi-chat-quote-line:before{content:""}.fr-fi-check-line:before{content:""}.fr-fi-checkbox-circle-fill:before{content:""}.fr-fi-checkbox-circle-line:before{content:""}.fr-fi-close-circle-fill:before{content:""}.fr-fi-close-circle-line:before{content:""}.fr-fi-close-line:before{content:""}.fr-fi-delete-fill:before{content:""}.fr-fi-delete-line:before{content:""}.fr-fi-download-line:before{content:""}.fr-fi-edit-fill:before{content:""}.fr-fi-edit-line:before{content:""}.fr-fi-error-warning-fill:before{content:""}.fr-fi-error-warning-line:before{content:""}.fr-fi-external-link-line:before{content:""}.fr-fi-eye-line:before{content:""}.fr-fi-eye-off-line:before{content:""}.fr-fi-facebook-circle-fill:before{content:""}.fr-fi-facebook-circle-line:before{content:""}.fr-fi-file-download-fill:before{content:""}.fr-fi-file-download-line:before{content:""}.fr-fi-file-fill:before{content:""}.fr-fi-file-line:before{content:""}.fr-fi-file-pdf-fill:before{content:""}.fr-fi-file-pdf-line:before{content:""}.fr-fi-information-fill:before{content:""}.fr-fi-information-line:before{content:""}.fr-fi-instagram-fill:before{content:""}.fr-fi-linkedin-box-fill:before{content:""}.fr-fi-linkedin-box-line:before{content:""}.fr-fi-links-fill:before{content:""}.fr-fi-lock-fill:before{content:""}.fr-fi-lock-line:before{content:""}.fr-fi-mail-fill:before{content:""}.fr-fi-mail-line:before{content:""}.fr-fi-menu-2-fill:before{content:""}.fr-fi-menu-fill:before{content:""}.fr-fi-pause-circle-fill:before{content:""}.fr-fi-pause-circle-line:before{content:""}.fr-fi-play-fill:before{content:""}.fr-fi-play-line:before{content:""}.fr-fi-printer-fill:before{content:""}.fr-fi-printer-line:before{content:""}.fr-fi-question-fill:before{content:""}.fr-fi-question-line:before{content:""}.fr-fi-refresh-fill:before{content:""}.fr-fi-refresh-line:before{content:""}.fr-fi-save-fill:before{content:""}.fr-fi-save-line:before{content:""}.fr-fi-search-fill:before{content:""}.fr-fi-search-line:before{content:""}.fr-fi-subtract-line:before{content:""}.fr-fi-theme-fill:before{content:""}.fr-fi-twitter-fill:before{content:""}.fr-fi-twitter-line:before{content:""}.fr-fi-user-fill:before{content:""}.fr-fi-user-line:before{content:""}.fr-fi-volume-down-fill:before{content:""}.fr-fi-volume-down-line:before{content:""}.fr-fi-volume-mute-fill:before{content:""}.fr-fi-volume-mute-line:before{content:""}.fr-fi-volume-up-fill:before{content:""}.fr-fi-volume-up-line:before{content:""}.fr-fi-youtube-fill:before{content:""}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Light.woff2) format("woff2"),url(../fonts/Marianne-Light.woff) format("woff");font-weight:300;font-style:normal}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Light_Italic.woff2) format("woff2"),url(../fonts/Marianne-Light_Italic.woff) format("woff");font-weight:300;font-style:italic}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Regular.woff2) format("woff2"),url(../fonts/Marianne-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Regular_Italic.woff2) format("woff2"),url(../fonts/Marianne-Regular_Italic.woff) format("woff");font-weight:400;font-style:italic}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Bold.woff2) format("woff2"),url(../fonts/Marianne-Bold.woff) format("woff");font-weight:700;font-style:normal}@font-face{font-family:Marianne;src:url(../fonts/Marianne-Bold_Italic.woff2) format("woff2"),url(../fonts/Marianne-Bold_Italic.woff) format("woff");font-weight:700;font-style:italic}@font-face{font-family:Spectral;src:url(../fonts/Spectral-Regular.woff2) format("woff2"),url(../fonts/Spectral-Regular.woff) format("woff");font-weight:400;font-style:normal}@font-face{font-family:Spectral;src:url(../fonts/Spectral-ExtraBold.woff2) format("woff2"),url(../fonts/Spectral-ExtraBold.woff) format("woff");font-weight:900;font-style:normal}*,:after,:before{box-sizing:inherit}:root{box-sizing:border-box}body{font-family:Marianne,arial,sans-serif;text-rendering:optimizeSpeed;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-text-size-adjust:100%;margin:0;padding:0;font-size:1rem;line-height:1.5rem}button,input[type=button],input[type=submit]{-webkit-appearance:none;-moz-appearance:none;appearance:none;font-family:inherit;border:none}h6{font-weight:700;font-size:1.125rem;line-height:1.5rem;margin:0 0 1rem}h5{font-size:1.25rem}h4,h5{font-weight:700;line-height:1.75rem;margin:0 0 1rem}h4{font-size:1.375rem}h3{font-size:1.5rem;line-height:2rem}h2,h3{font-weight:700;margin:0 0 1rem}h2{font-size:1.75rem;line-height:2.25rem}h1{font-weight:700;font-size:2rem;line-height:2.5rem;margin:0 0 1rem}p{font-size:1rem;line-height:1.5rem;margin:0 0 2.5rem}:root{--link-underline:0 1px 0 0 currentColor;--link-blank-font:normal normal normal 1rem/1 dsfr-icons;--link-blank-content:"\00a0"}a{text-decoration:none;color:inherit}[href]{box-shadow:var(--link-underline)}[target=_blank]:after{content:var(--link-blank-content);font:var(--link-blank-font)}.fr-enlarge-link{position:relative}.fr-enlarge-link a{outline-width:0!important}.fr-enlarge-link a:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;outline-offset:2px;outline-style:inherit;outline-color:inherit;outline-width:2px;z-index:1}.fr-raw-link,.fr-reset-link{--link-underline:none;--link-blank-font:none;--link-blank-content:none}.fr-reset-link{text-decoration:underline;text-underline-offset:2px}:root{--ul-type:"●\00a0\00a0";--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".\00a0\00a0"}ol,ul{margin:0;padding:0;margin-block-start:var(--xl-block);margin-block-end:var(--xl-block);--xl-size:var(--xl-base)}ul{list-style-type:var(--ul-type);padding-inline-start:var(--ul-start)}ul>li::marker{font-size:calc(var(--xl-size)*0.9)}ol{list-style-type:var(--ol-type);padding-inline-start:var(--ol-start);counter-reset:li-counter}ol>li{counter-increment:li-counter}ol>li::marker{content:var(--ol-content);font-size:var(--xl-size);font-weight:700}li{--xl-base:calc(var(--xl-size)*0.9);padding-bottom:var(--li-bottom)}.fr-raw-list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-list{--ul-type:"●\00a0\00a0";--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".\00a0\00a0"}:focus,:focus-visible{z-index:2000}a{outline-offset:2px;outline-width:2px}a:focus{outline-style:solid}a:focus:not(:focus-visible){outline-style:none}a:focus-visible{outline-style:solid}a{cursor:pointer}a:not([href]){outline-style:none;cursor:not-allowed}button{outline-offset:2px;outline-width:2px}button:focus{outline-style:solid}button:focus:not(:focus-visible){outline-style:none}button:focus-visible{outline-style:solid}button:enabled{cursor:pointer}button:disabled{outline-style:none;cursor:not-allowed}input{outline-offset:2px;outline-width:2px}input:focus{outline-style:solid}input:focus:not(:focus-visible){outline-style:none}input:focus-visible{outline-style:solid}input:disabled{outline-style:none;cursor:not-allowed}input[type=checkbox]+label:before,input[type=radio]+label:before{outline-offset:2px;outline-width:2px}input[type=checkbox]:focus+label:before,input[type=radio]:focus+label:before{outline-style:solid}input[type=checkbox]:focus:not(:focus-visible)+label:before,input[type=radio]:focus:not(:focus-visible)+label:before{outline-style:none}input[type=checkbox]:focus-visible+label:before,input[type=radio]:focus-visible+label:before{outline-style:solid}input[type=checkbox]:enabled,input[type=checkbox]:enabled+label,input[type=radio]:enabled,input[type=radio]:enabled+label{cursor:pointer}input[type=checkbox]:disabled+label:before,input[type=radio]:disabled+label:before{outline-style:none}input[type=checkbox]:disabled,input[type=checkbox]:disabled+label,input[type=radio]:disabled,input[type=radio]:disabled+label{cursor:not-allowed}input[type=button]:enabled,input[type=color]:enabled,input[type=date]:enabled,input[type=datetime-local]:enabled,input[type=file]:enabled,input[type=image]:enabled,input[type=month]:enabled,input[type=range]:enabled,input[type=reset]:enabled,input[type=submit]:enabled,input[type=time]:enabled,input[type=week]:enabled{cursor:pointer}select{outline-offset:2px;outline-width:2px}select:focus{outline-style:solid}select:focus:not(:focus-visible){outline-style:none}select:focus-visible{outline-style:solid}select:enabled{cursor:pointer}select:disabled{outline-style:none;cursor:not-allowed}textarea{outline-offset:2px;outline-width:2px}textarea:focus{outline-style:solid}textarea:focus:not(:focus-visible){outline-style:none}textarea:focus-visible{outline-style:solid}textarea:disabled{outline-style:none;cursor:not-allowed}[tabindex]{outline-offset:2px;outline-width:2px}[tabindex]:focus{outline-style:solid}[tabindex]:focus:not(:focus-visible){outline-style:none}[tabindex]:focus-visible{outline-style:solid}[tabindex][tabindex="-1"]{outline-style:none}audio[controls],video[controls]{outline-offset:2px;outline-width:2px}audio:focus[controls],video:focus[controls]{outline-style:solid}audio:focus:not(:focus-visible)[controls],video:focus:not(:focus-visible)[controls]{outline-style:none}audio:focus-visible[controls],video:focus-visible[controls]{outline-style:solid}audio,video{cursor:pointer}audio:not([href])[controls],video:not([href])[controls]{outline-style:none}audio:not([href]),video:not([href]){cursor:not-allowed}[contenteditable]:not([contenteditable=false]){outline-offset:2px;outline-width:2px}[contenteditable]:not([contenteditable=false]):focus{outline-style:solid}[contenteditable]:not([contenteditable=false]):focus:not(:focus-visible){outline-style:none}[contenteditable]:not([contenteditable=false]):focus-visible{outline-style:solid}details,details>summary:first-of-type{outline-offset:2px;outline-width:2px}details:focus,details>summary:first-of-type:focus{outline-style:solid}details:focus:not(:focus-visible),details>summary:first-of-type:focus:not(:focus-visible){outline-style:none}details:focus-visible,details>summary:first-of-type:focus-visible{outline-style:solid}details,details>summary:first-of-type{cursor:pointer}input,select,textarea{font-family:Marianne,arial,sans-serif;text-rendering:optimizeSpeed}.fr-displayed-lg,.fr-displayed-md,.fr-displayed-sm,.fr-displayed-xl,.fr-displayed-xs,.fr-hidden{display:none!important}:root.fr-no-scroll body{overflow:hidden;bottom:0;left:0;position:fixed;right:0;top:0}.fr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-no-after:after,.fr-no-before:before{content:none}.fr-text--light{font-weight:300!important}.fr-text--regular{font-weight:400!important}.fr-text--bold{font-weight:700!important}.fr-text--xx-bold{font-weight:900!important}.fr-h6{font-weight:700!important;font-size:1.125rem!important;line-height:1.5rem!important;margin:0 0 1rem}.fr-h5{font-size:1.25rem!important}.fr-h4,.fr-h5{font-weight:700!important;line-height:1.75rem!important;margin:0 0 1rem}.fr-h4{font-size:1.375rem!important}.fr-h3{font-size:1.5rem!important;line-height:2rem!important}.fr-h2,.fr-h3{font-weight:700!important;margin:0 0 1rem}.fr-h2{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h1{font-weight:700!important;font-size:2rem!important;line-height:2.5rem!important;margin:0 0 1rem}.fr-display-xs{font-size:2.5rem!important;line-height:3rem!important}.fr-display-sm,.fr-display-xs{font-weight:700!important;margin:0 0 2rem}.fr-display-sm{font-size:3rem!important;line-height:3.5rem!important}.fr-display-md{font-size:3.5rem!important;line-height:4rem!important}.fr-display-lg,.fr-display-md{font-weight:700!important;margin:0 0 2rem}.fr-display-lg{font-size:4rem!important;line-height:4.5rem!important}.fr-display-xl{font-weight:700!important;font-size:4.5rem!important;line-height:5rem!important;margin:0 0 2rem}.fr-text--xs{font-size:.75rem!important;line-height:1.25rem!important;margin:0 0 2.5rem}.fr-text--sm{font-size:.875rem!important}.fr-text,.fr-text--sm{line-height:1.5rem!important;margin:0 0 2.5rem}.fr-text{font-size:1rem!important}.fr-text--lg{font-size:1.125rem!important;line-height:1.75rem!important;margin:0 0 2.5rem}.fr-text--lead,.fr-text--xl{font-size:1.25rem!important;line-height:2rem!important;margin:0 0 3rem}.fr-text--alt{font-family:Spectral,georgia,serif!important}.fr-grid-row{display:flex;flex-wrap:wrap;margin:0;padding:0}.fr-grid-row--top{align-items:flex-start}.fr-grid-row--bottom{align-items:flex-end}.fr-grid-row--middle{align-items:center}.fr-grid-row--left{justify-content:flex-start}.fr-grid-row--right{justify-content:flex-end}.fr-grid-row--center{justify-content:center}.fr-col--top{align-self:flex-start}.fr-col--bottom{align-self:flex-end}.fr-col--middle{align-self:center}.fr-container{width:100%;margin-left:auto;margin-right:auto;padding-left:1rem;padding-right:1rem}.fr-container--fluid{padding-left:0;padding-right:0;max-width:none}.fr-grid-row--gutters{margin:-.5rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row--no-gutters{margin:0}.fr-grid-row--no-gutters>.fr-col,.fr-grid-row--no-gutters>[class*=" fr-col-"],.fr-grid-row--no-gutters>[class^=fr-col-]{padding:0}.fr-col{flex:1}.fr-col-1{flex:0 0 8.33333%;width:8.33333%;max-width:8.33333%}.fr-col-offset-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-1--right{margin-right:8.33333%}.fr-col-2{flex:0 0 16.66667%;width:16.66667%;max-width:16.66667%}.fr-col-offset-2:not(.fr-col-offset-1--right){margin-left:16.66667%}.fr-col-offset-2--right{margin-right:16.66667%}.fr-col-3{flex:0 0 25%;width:25%;max-width:25%}.fr-col-offset-3:not(.fr-col-offset-1--right){margin-left:25%}.fr-col-offset-3--right{margin-right:25%}.fr-col-4{flex:0 0 33.33333%;width:33.33333%;max-width:33.33333%}.fr-col-offset-4:not(.fr-col-offset-1--right){margin-left:33.33333%}.fr-col-offset-4--right{margin-right:33.33333%}.fr-col-5{flex:0 0 41.66667%;width:41.66667%;max-width:41.66667%}.fr-col-offset-5:not(.fr-col-offset-1--right){margin-left:41.66667%}.fr-col-offset-5--right{margin-right:41.66667%}.fr-col-6{flex:0 0 50%;width:50%;max-width:50%}.fr-col-offset-6:not(.fr-col-offset-1--right){margin-left:50%}.fr-col-offset-6--right{margin-right:50%}.fr-col-7{flex:0 0 58.33333%;width:58.33333%;max-width:58.33333%}.fr-col-offset-7:not(.fr-col-offset-1--right){margin-left:58.33333%}.fr-col-offset-7--right{margin-right:58.33333%}.fr-col-8{flex:0 0 66.66667%;width:66.66667%;max-width:66.66667%}.fr-col-offset-8:not(.fr-col-offset-1--right){margin-left:66.66667%}.fr-col-offset-8--right{margin-right:66.66667%}.fr-col-9{flex:0 0 75%;width:75%;max-width:75%}.fr-col-offset-9:not(.fr-col-offset-1--right){margin-left:75%}.fr-col-offset-9--right{margin-right:75%}.fr-col-10{flex:0 0 83.33333%;width:83.33333%;max-width:83.33333%}.fr-col-offset-10:not(.fr-col-offset-1--right){margin-left:83.33333%}.fr-col-offset-10--right{margin-right:83.33333%}.fr-col-11{flex:0 0 91.66667%;width:91.66667%;max-width:91.66667%}.fr-col-offset-11:not(.fr-col-offset-1--right){margin-left:91.66667%}.fr-col-offset-11--right{margin-right:91.66667%}.fr-col-12{flex:0 0 100%;width:100%;max-width:100%}.fr-col-offset-12:not(.fr-col-offset-1--right){margin-left:100%}.fr-col-offset-12--right{margin-right:100%}.fr-responsive-img{width:100%;height:auto}.fr-responsive-vid{position:relative;width:100%}.fr-responsive-vid:before{content:"";display:block;width:100%;padding-bottom:56.25%}.fr-responsive-vid--4x3:before{content:"";display:block;padding-bottom:75%}.fr-responsive-vid--1x1:before{content:"";display:block;padding-bottom:100%}.fr-responsive-vid>.fr-consent-placeholder,.fr-responsive-vid__player{object-fit:cover;object-position:50% 50%;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;border:0}.fr-collapse{overflow:hidden;transition:visibility .3s;max-height:0;--collapse:-99999px;--collapser:""}.fr-collapse:before{display:block;content:"";content:var(--collapser);transition:margin-top .3s;margin-top:0}.fr-collapse:not(.fr-collapse--expanded){visibility:hidden}.fr-collapse:not(.fr-collapse--expanded):before{margin-top:-99999px;margin-top:var(--collapse)}body{background-color:var(--w);--block-color-hover:hsla(0,0%,87.8%,0.5);--block-color-active:hsla(0,0%,76.1%,0.5);color:var(--g700)}:root[data-fr-theme=dark] body{--block-color-hover:rgba(65,65,65,0.5);--block-color-active:rgba(99,99,99,0.5)}:root[data-fr-transition] body{transition:background-color .3s}[contenteditable]:not([contenteditable=false]),[tabindex],a,audio[controls],button,details,details>summary:first-of-type,input,input[type=checkbox]+label:before,input[type=radio]+label:before,select,textarea,video[controls]{outline-color:var(--focus)}.fr-breadcrumb{margin:1rem 0 2rem;font-size:.75rem;line-height:1.25rem;position:relative}.fr-breadcrumb__button{box-shadow:var(--link-underline);font-size:.75rem;line-height:1.25rem;margin:0;padding:0;color:inherit}.fr-breadcrumb__button[aria-expanded=true]{display:none}.fr-breadcrumb .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px;transform:translateY(-4px)}.fr-breadcrumb__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:inline-flex;flex-direction:row;flex-wrap:wrap;transform:translateY(4px)}.fr-breadcrumb__link{position:relative;display:inline-flex;font-size:.75rem;line-height:1.25rem;margin-bottom:.5rem}.fr-breadcrumb__link:not([aria-current]){margin-right:1.5rem}.fr-breadcrumb__link:not([aria-current]):after{font:normal normal normal 1rem/1 dsfr-icons;content:"";position:absolute;top:.125rem;right:-1.25rem;pointer-events:none}.fr-breadcrumb__link[aria-current]{--link-underline:none;--link-blank-font:none;--link-blank-content:none;pointer-events:none;cursor:default}.fr-breadcrumb{color:var(--g600)}.fr-breadcrumb__button{background-color:var(--t-plain)}.fr-breadcrumb__link[aria-current]{color:var(--g800)}.fr-card{display:flex;flex-direction:column-reverse;position:relative}.fr-grid-row .fr-card{height:100%}.fr-card:not(.fr-card--no-arrow) .fr-card__body:after{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";width:1.5rem;height:1.5rem;margin-top:auto;margin-left:auto}.fr-card__img{position:relative;width:100%}.fr-card__img:before{content:"";display:block;width:100%;padding-bottom:56.25%}.fr-card__img img{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;object-fit:cover;object-position:50% 50%}.fr-card__body{display:flex;flex-direction:column;flex:1 1 auto;padding:1.5rem}.fr-card__detail{margin-top:0;margin-bottom:1rem;font-size:.75rem;line-height:1.25rem;order:-1}.fr-card__title{font-size:1.125rem;font-weight:700;margin-bottom:.5rem}.fr-card__desc,.fr-card__title{line-height:1.5rem;margin-top:0}.fr-card__desc{margin-bottom:1rem;font-size:.875rem}.fr-card__link{--link-underline:none;--link-blank-font:none;--link-blank-content:none;display:inline-flex;width:100%;margin-top:auto}.fr-card,.fr-card.fr-enlarge-link{background-color:var(--beige)}:root:not([data-fr-theme=dark]) .fr-card.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-card.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-card.fr-enlarge-link{--color-hover:rgba(224,219,208,0.5);--color-active:rgba(199,189,170,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-card.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-card.fr-enlarge-link,:root[data-fr-theme=dark] .fr-card.fr-enlarge-link{--color-hover:rgba(79,79,79,0.5);--color-active:hsla(0,0%,45.1%,0.5)}.fr-card:not(.fr-card--no-arrow) .fr-card__body:after{color:var(--bf500)}.fr-card__detail{color:var(--g600)}.fr-card__title{color:var(--g800)}.fr-input-group:not(:last-child),.fr-select-group:not(:last-child){margin-bottom:1.5rem}.fr-input-group .fr-label .fr-hint-text,.fr-select-group .fr-label .fr-hint-text{margin-top:.25rem;margin-bottom:.5rem}.fr-label{display:block;font-size:1rem;line-height:1.5rem}.fr-label+.fr-input,.fr-label+.fr-input-wrap,.fr-label+.fr-select{margin-top:.5rem}.fr-hint-text{display:block;font-size:.75rem;line-height:1.25rem;margin-top:0;margin-bottom:0}.fr-hint-text+.fr-input,.fr-hint-text+.fr-input-wrap,.fr-hint-text+.fr-select{margin-top:.5rem}.fr-error-text{display:flex;flex-direction:row;align-items:center;font-size:.75rem;line-height:1.25rem;margin-top:1rem;margin-bottom:0}.fr-error-text:before{font:normal normal normal 1rem/1 dsfr-icons;content:"";display:inline-block;margin-right:.25rem}.fr-valid-text{display:flex;flex-direction:row;align-items:center;font-size:.75rem;line-height:1.25rem;margin-top:1rem;margin-bottom:0}.fr-valid-text:before{font:normal normal normal 1rem/1 dsfr-icons;content:"";display:inline-block;margin-right:.25rem}.fr-form-group{margin-bottom:2rem}.fr-fieldset{position:relative;margin:0;padding:0;border:0}.fr-fieldset .fr-hint-text{margin-bottom:1rem}.fr-fieldset__legend{margin-bottom:1rem;font-size:1rem;line-height:1.5rem;font-weight:700}.fr-fieldset__legend .fr-hint-text{margin-top:.5rem;margin-bottom:0;font-weight:400}.fr-fieldset__content{position:relative}.fr-fieldset--inline .fr-fieldset__content{display:flex;align-items:baseline;justify-content:flex-start;flex-wrap:wrap;margin:-.75rem 0}.fr-fieldset--inline .fr-checkbox-group{display:inline-flex;margin-bottom:0}.fr-fieldset--inline .fr-checkbox-group:first-child{margin-top:0}.fr-fieldset--inline .fr-checkbox-group:not(:last-child){margin-right:1.25rem}.fr-fieldset--inline .fr-checkbox-group:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-group{display:inline-flex}.fr-fieldset--inline .fr-radio-group:not(:last-child) input[type=radio]+label{margin-right:1.75rem}.fr-fieldset--inline .fr-radio-group:first-child,.fr-fieldset--inline .fr-radio-group:first-child input[type=radio]+label{margin-top:0}.fr-fieldset--inline .fr-radio-group:last-child,.fr-fieldset--inline .fr-radio-group:last-child input[type=radio]+label{margin-bottom:0}.fr-fieldset--error .fr-fieldset__content:before,.fr-fieldset--valid .fr-fieldset__content:before{content:"";position:absolute;top:.75rem;bottom:.75rem;left:-.5rem;width:2px}.fr-fieldset:disabled .fr-label,.fr-fieldset[disabled] .fr-label{color:var(--g600-g400)}.fr-input-group--valid .fr-label,.fr-select-group--valid .fr-label{color:var(--success)}.fr-input-group--error .fr-label,.fr-select-group--error .fr-label{color:var(--error)}.fr-input-group--disabled .fr-label,.fr-select-group--disabled .fr-label{color:var(--g600-g400)}.fr-label{color:var(--g800)}.fr-label--error{color:var(--error)}.fr-hint-text{color:var(--g600)}.fr-error-text{color:var(--error)}.fr-valid-text{color:var(--success)}.fr-fieldset{color:var(--g800)}.fr-fieldset--error .fr-fieldset__content:before{background-color:var(--error)}.fr-fieldset--error .fr-label{color:var(--error)}.fr-fieldset--valid .fr-fieldset__content:before{background-color:var(--success)}.fr-fieldset--valid .fr-label{color:var(--success)}.fr-highlight{padding-left:1rem;font-size:1rem;line-height:1.5rem}.fr-highlight p{margin-bottom:0}.fr-highlight{border-left:.25rem solid var(--bf500)}.fr-link{--link-underline:none;--link-blank-font:none;--link-blank-content:none;margin:0;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem}.fr-link--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-link:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link:not([class*=fr-link--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding-left:.25rem;padding-right:.25rem}.fr-link:not([class*=fr-link--icon-])[class*=" fr-fi-"]:before,.fr-link:not([class*=fr-link--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-link--align-on-content:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link--align-on-content:not([class*=fr-link--icon-])[class^=fr-fi-]{margin-left:-.25rem;margin-right:-.25rem}.fr-link--icon-left[class*=" fr-fi-"],.fr-link--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-link--align-on-content.fr-link--icon-left[class*=" fr-fi-"],.fr-link--align-on-content.fr-link--icon-left[class^=fr-fi-]{margin-left:-.5rem;margin-right:-.75rem}.fr-link--icon-right[class*=" fr-fi-"],.fr-link--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-link--align-on-content.fr-link--icon-right[class*=" fr-fi-"],.fr-link--align-on-content.fr-link--icon-right[class^=fr-fi-]{margin-left:-.75rem;margin-right:-.5rem}.fr-link--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem}.fr-link--sm.fr-link--align-on-content{margin-left:-.75rem;margin-right:-.75rem}.fr-link--sm:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link--sm:not([class*=fr-link--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding-left:.5rem;padding-right:.5rem}.fr-link--sm:not([class*=fr-link--icon-])[class*=" fr-fi-"]:before,.fr-link--sm:not([class*=fr-link--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.5rem;font-size:1rem}.fr-link--sm.fr-link--align-on-content:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link--sm.fr-link--align-on-content:not([class*=fr-link--icon-])[class^=fr-fi-]{margin-left:-.5rem;margin-right:-.5rem}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-link--sm.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-link--sm.fr-link--align-on-content.fr-link--icon-left[class*=" fr-fi-"],.fr-link--sm.fr-link--align-on-content.fr-link--icon-left[class^=fr-fi-]{margin-left:-.5rem;margin-right:-.75rem}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-link--sm.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--sm.fr-link--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-link--sm.fr-link--align-on-content.fr-link--icon-right[class*=" fr-fi-"],.fr-link--sm.fr-link--align-on-content.fr-link--icon-right[class^=fr-fi-]{margin-left:-.75rem;margin-right:-.5rem}.fr-link--lg{font-size:1.25rem;line-height:2rem;min-height:3rem;padding:.5rem 1rem;border-radius:1.5rem}.fr-link--lg.fr-link--align-on-content{margin-left:-1rem;margin-right:-1rem}.fr-link--lg:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link--lg:not([class*=fr-link--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding-left:.5rem;padding-right:.5rem}.fr-link--lg:not([class*=fr-link--icon-])[class*=" fr-fi-"]:before,.fr-link--lg:not([class*=fr-link--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.5rem;font-size:2rem}.fr-link--lg.fr-link--align-on-content:not([class*=fr-link--icon-])[class*=" fr-fi-"],.fr-link--lg.fr-link--align-on-content:not([class*=fr-link--icon-])[class^=fr-fi-]{margin-left:-.5rem;margin-right:-.5rem}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-link--lg.fr-link--icon-left[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-left[class^=fr-fi-]:before{margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-link--lg.fr-link--align-on-content.fr-link--icon-left[class*=" fr-fi-"],.fr-link--lg.fr-link--align-on-content.fr-link--icon-left[class^=fr-fi-]{margin-left:-.625rem;margin-right:-1rem}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-link--lg.fr-link--icon-right[class*=" fr-fi-"]:before,.fr-link--lg.fr-link--icon-right[class^=fr-fi-]:before{margin-right:-.375rem;margin-left:.5rem;font-size:1.5rem}.fr-link--lg.fr-link--align-on-content.fr-link--icon-right[class*=" fr-fi-"],.fr-link--lg.fr-link--align-on-content.fr-link--icon-right[class^=fr-fi-]{margin-left:-1rem;margin-right:-.625rem}.fr-link--close{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none;margin-right:-.5rem;display:flex;margin-left:auto}.fr-link--close:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-link{color:var(--bf500);background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-link,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-link,:root[data-fr-theme=dark] .fr-link{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}a.fr-link:not([href]),button.fr-link[disabled]{color:var(--g600-g400)}.fr-logo{--link-underline:none;--link-blank-font:none;--link-blank-content:none;display:inline-block;padding:1em;font-weight:700;line-height:1.03175em;letter-spacing:-.01em;text-transform:uppercase;vertical-align:middle;text-indent:-.1em;color:var(--g800);font-size:1.05rem;margin-bottom:0}.fr-logo:before{width:2.75rem;height:1rem;margin-bottom:.33333rem;background-size:2.75rem 1.125rem,2.75rem 1rem,0;background-position:0 -.0625rem,0 0,0 0}:root[data-fr-mourning] .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-logo:after{min-width:2.625rem;background-size:5.25rem 3.75rem;background-position:0 calc(100% + 1.875rem);padding-top:2.20833rem}:root[data-fr-theme=dark] .fr-logo:after{background-position:-2.625rem 100%}.fr-logo:before{content:"";display:block;background-repeat:no-repeat,no-repeat,no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 18'%3E%3Cpath fill='%23fff' d='M11.3 10.2c-.9.6-1.7 1.3-2.3 2.1v-.1c.4-.5.7-1 1-1.5.4-.2.7-.5 1-.8.5-.5 1-1 1.7-1.3.3-.1.5-.1.8 0-.1.1-.2.1-.4.2H13v-.1c-.3.3-.7.5-1 .9-.1.2-.2.6-.7.6 0 .1.1 0 0 0zm1.6 4.6c0-.1-.1 0-.2 0l-.1.1-.1.1-.2.2s.1.1.2 0l.1-.1c.1 0 .2-.1.2-.2.1 0 .1 0 .1-.1 0 .1 0 0 0 0zm-1.6-4.3c.1 0 .2 0 .2-.1s.1-.1.1-.1v-.1c-.2.1-.3.2-.3.3zm2.4 1.9s0-.1 0 0c.1-.1.2-.1.3-.1.7-.1 1.4-.3 2.1-.6-.8-.5-1.7-.9-2.6-1h.1c-.1-.1-.3-.1-.5-.2h.1c-.2-.1-.5-.1-.7-.2.1 0 .2-.2.2-.3h-.1c-.4.2-.6.5-.8.9.2.1.5 0 .7.1h-.3c-.1 0-.2.1-.2.2h.1c-.1 0-.1.1-.2.1.1.1.2 0 .4 0 0 .1.1.1.1.1-.1 0-.2.1-.3.3-.1.2-.2.2-.3.3v.1c-.3.2-.6.5-.9.8v.1c-.1.1-.2.1-.2.2v.1c.4-.1.6-.4 1-.5l.6-.3c.2 0 .3-.1.5-.1v.1h.2c0 .1-.2 0-.1.1s.3.1.4 0c.2-.2.3-.2.4-.2zM12.4 14c-.4.2-.9.2-1.2.4 0 0 0 .1-.1.1 0 0-.1 0-.1.1-.1 0-.1.1-.2.2l-.1.1s0 .1.1 0l.1-.1s-.1.1-.1.2v.3l-.1.1s0 .1-.1.1l-.1.1.2-.2.1-.1h.2s0-.1.1-.1c.1-.1.2-.2.3-.2h.1c.1-.1.3-.1.4-.2.1-.1.2-.2.3-.2.2-.2.5-.3.8-.5-.1 0-.2-.1-.3-.1 0 .1-.2 0-.3 0zM30 9.7c-.1.2-.4.2-.6.3-.2.2 0 .4.1.5.1.3-.2.5-.4.5.1.1.2.1.2.1 0 .2.2.2.1.4s-.5.3-.3.5c.1.2.1.5 0 .7-.1.2-.3.4-.5.5-.2.1-.4.1-.6 0-.1 0-.1-.1-.2-.1-.5-.1-1-.2-1.5-.2-.1 0-.3.1-.4.1-.1.1-.3.2-.4.3l-.1.1c-.1.1-.2.2-.2.3-.1.2-.2.4-.2.6-.2.5-.2 1 0 1.4 0 0 1 .3 1.7.6.2.1.5.2.7.4l1.7 1H13.2l1.6-1c.6-.4 1.3-.7 2-1 .5-.2 1.1-.5 1.5-.9.2-.2.3-.4.5-.5.3-.4.6-.7 1-1l.3-.3s0-.1.1-.1c-.2.1-.2.2-.4.2 0 0-.1 0 0-.1s.2-.2.3-.2v-.1c-.4 0-.7.2-1 .5h-.2c-.5.2-.8.5-1.2.7v-.1c-.2.1-.4.2-.5.2-.2 0-.5.1-.8 0-.4 0-.7.1-1.1.2-.2.1-.4.1-.6.2v.1l-.2.2c-.2.1-.3.2-.5.4l-.5.5h-.1l.1-.1.1-.1c0-.1.1-.1.1-.2.2-.1.3-.3.5-.4 0 0-.1 0 0 0 0 0 0-.1.1-.1l-.1.1c-.1.1-.1.2-.2.2v-.2l.2-.2c.1-.1.2-.1.3-.2h.1c-.2.1-.3.1-.5.2h-.2c0-.1.1-.1.2-.2h.1c1-.8 2.3-.6 3.4-1 .1-.1.2-.1.3-.2.1-.1.3-.2.5-.3.2-.2.4-.4.5-.7v-.1c-.4.4-.8.7-1.3 1-.6.2-1.3.4-2 .4 0-.1.1-.1.1-.1 0-.1.1-.1.1-.2h.1s0-.1.1-.1h.1c-.1-.1-.3.1-.4 0 .1-.1 0-.2.1-.2h.1s0-.1.1-.1c.5-.3.9-.5 1.3-.7-.1 0-.1.1-.2 0 .1 0 0-.1.1-.1.3-.1.6-.3.9-.4-.1 0-.2.1-.3 0 .1 0 .1-.1.2-.1v-.1c0-.1.1 0 .2-.1h-.1c.1-.1.2-.2.4-.2 0-.1-.1 0-.1-.1h.1-.5c-.1 0 0-.1 0-.1.1-.2.2-.5.3-.7h-.1c-.3.3-.8.5-1.2.6h-.2c-.2.1-.4.1-.5 0-.1-.1-.2-.2-.3-.2-.2-.1-.5-.3-.8-.4-.7-.2-1.5-.4-2.3-.3.3-.1.7-.2 1.1-.3.5-.2 1-.3 1.5-.3h-.3c-.4 0-.9.1-1.3.2-.3.1-.6.2-.9.2-.2.1-.3.2-.5.2v-.1c.3-.4.7-.7 1.1-.8.5-.1 1.1 0 1.6.1.4 0 .8.1 1.1.2.1 0 .2.2.3.3.2.1.4 0 .5.1v-.2c.1-.1.3 0 .4 0 .2-.2-.2-.4-.3-.6v-.1c.2.2.5.4.7.6.1.1.5.2.5 0-.2-.3-.4-.6-.7-.9v-.2c-.1 0-.1 0-.1-.1-.1-.1-.1-.2-.1-.3-.1-.2 0-.4-.1-.5-.1-.2-.1-.3-.1-.5-.1-.5-.2-1-.3-1.4-.1-.6.3-1 .6-1.5.2-.4.5-.7.8-1 .1-.4.3-.7.6-1 .3-.3.6-.5.9-.6.3-.1.5-.2.8-.3l2.5-.4H25l1.8.3c.1 0 .2 0 .2.1.1.1.3.2.4.2.2.1.4.3.6.5.1.1.2.3.1.4-.1.1-.1.4-.2.4-.2.1-.4.1-.6.1-.1 0-.2 0-.4-.1.5.2.9.4 1.2.8 0 .1.2.1.3.1v.1c-.1.1-.1.1-.1.2h.1c.1-.1.1-.4.3-.3.2.1.2.3.1.4-.1.1-.2.2-.4.3v.2c.1.1.1.2.2.4s.1.5.2.7c.1.5.2.9.2 1.4 0 .2-.1.5 0 .7l.3.6c.1.2.2.3.3.5.2.3.6.6.4 1zm-15.6 5.2c-.1 0-.1.1-.1.1s.1 0 .1-.1zm5.8-1.8c-.1.1 0 0 0 0zm-6.7-.2c0 .1.1 0 .1 0 .2-.1.5 0 .6-.2-.1-.1-.2 0-.2-.1-.1 0-.2 0-.2.1-.1.1-.3.1-.3.2z'/%3E%3Cpath fill='gray' d='M27.9 6.8c.1 0 .3 0 .3.1-.1.2-.4.3-.6.5h-.1c-.1.1-.1.2-.1.2h-.3c.1.1.3.2.5.2l.1.1h.2V8c-.1.1-.2.1-.4.1.2.1.5.1.7 0 .2-.1 0-.4.1-.5-.1 0 0-.1-.1-.1.1-.1.1-.2.2-.2s.1 0 .2-.1c0-.1-.1-.1-.1-.2.2-.1.3-.3.3-.5 0-.1-.3-.1-.4-.2h-.5c-.2 0-.3.1-.5.1l-.6.3c.2-.1.4-.1.7-.2 0 .3.2.3.4.3'/%3E%3C/svg%3E"),linear-gradient(90deg,#000091,#000091 50%,#e1000f 0,#e1000f),linear-gradient(90deg,#000,#000)}:root[data-fr-mourning] .fr-logo:before{box-shadow:0 0 0 1px var(--t-w)}.fr-logo:after{content:"";display:block;background-repeat:no-repeat;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 252 180'%3E%3Cdefs%3E%3Csymbol id='a' viewBox='0 0 11 15.5'%3E%3Cpath d='M10.4 5.3C11.9 1.5 10.1 0 7.9 0 4.2 0 0 6.5 0 11.7c0 2.5 1.2 3.8 3 3.8 2.1 0 4.3-2 6.2-5.5h-1c-1.2 1.5-2.6 2.6-3.9 2.6-1.3 0-2-.8-2-2.6a10.7 10.7 0 01.3-2.2zm-4-3.1c1.1 0 2 .8 1.5 2.6L3.1 6.1c.8-2.2 2.2-4 3.4-4z'/%3E%3C/symbol%3E%3Csymbol id='b' viewBox='0 0 12.4 21.8'%3E%3Cuse width='11' height='15.5' y='6.4' href='%23a'/%3E%3Cpath d='M7.9 4.7L12.4.6V0h-3L6.7 4.7H8z'/%3E%3C/symbol%3E%3Csymbol id='c' viewBox='0 0 11.5 19'%3E%3Cpath d='M1.7 5.7h2.6L.1 17.1a1.3 1.3 0 001.2 2c3 0 6.4-2.6 7.8-6.2h-.7a9.4 9.4 0 01-5.1 3.5L7 5.7h4l.5-1.6H7.7L9 0H7.6L4.9 4.1l-3.2.4v1.2z'/%3E%3C/symbol%3E%3Csymbol id='d' viewBox='0 0 9.8 21.9'%3E%3Cpath d='M7.6 8c.3-1-.4-1.6-1-1.6-2.2 0-5 2.1-6 5h.7A5.6 5.6 0 014.4 9L.1 20.3a1.1 1.1 0 001 1.6c2.2 0 4.7-2 5.8-5H6a5.6 5.6 0 01-3 2.6zM8 3.7a1.8 1.8 0 001.8-1.8A1.8 1.8 0 008 0a1.8 1.8 0 00-1.8 1.8A1.8 1.8 0 008 3.6'/%3E%3C/symbol%3E%3Csymbol id='e' viewBox='0 0 14.8 15.5'%3E%3Cpath d='M3.3 3.1c.7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.2 1.2 2.2a1.3 1.3 0 001.5-1l3-8C7.4 4.8 10 3 11 3s.8.6.3 1.6l-4.6 9a1.3 1.3 0 001.1 1.9c2.3 0 5-2 6-5h-.6A5.6 5.6 0 0110 13l4-8a6.1 6.1 0 00.8-2.8A2 2 0 0012.6 0c-2 0-3.6 2.2-6 5V2.8C6.6 1.4 6.1 0 4.8 0 3.2 0 1.8 2.5.7 4.9h.7c.7-1.1 1.3-1.8 2-1.8'/%3E%3C/symbol%3E%3Csymbol id='f' viewBox='0 0 12 15.5'%3E%3Cpath d='M11.8 3.5c.5-1.9.2-3.5-1.2-3.5-1.8 0-2.3 1.2-4 5V2.8C6.5 1.3 6 0 4.6 0 3.1 0 1.7 2.5.5 5h.8c.7-1.3 1.5-2 2-2 .7 0 1 1 0 3.4l-3 6.8c-.7 1.3 0 2.1 1.2 2.1a1.3 1.3 0 001.5-1l3-8a50.3 50.3 0 012.6-3h3.2z'/%3E%3C/symbol%3E%3Csymbol id='g' viewBox='0 0 14.7 16.2'%3E%3Cpath d='M10.5 13.1c-.6 0-1-1 0-3.4L14.6.1 13.4 0l-1.3 1.3h-.3C6.1 1.3 0 8.6 0 14.2a2 2 0 002.1 2.1c1.7 0 3.3-2.4 5.2-5l-.1 1c-.3 2.6.6 4 2 4 1.5 0 3-2.4 4-4.9h-.7c-.7 1.1-1.5 1.8-2 1.8zM7.9 9.8c-1.3 1.6-3.4 3.5-4.3 3.5-.5 0-.9-.5-.9-1.6 0-3.5 4-8.2 6-8.2a4.2 4.2 0 011.4.2z'/%3E%3C/symbol%3E%3Csymbol id='h' viewBox='0 0 21.9 19.8'%3E%3Cpath d='M11.2 19.8l.3-.9c-3.8-.7-4.3-.7-2.7-4.8l1.4-3.9h3c1.9 0 1.9.9 1.6 3h1l2.6-6.9h-1c-1 1.6-1.8 2.9-3.8 2.9h-3l2-5.6c.8-2 1.1-2.4 3.7-2.4h.7c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3L7 .9c3 .6 3.3.9 2 4.8L5.7 14c-1.5 3.9-2 4.2-5.5 4.8l-.3.9z'/%3E%3C/symbol%3E%3Csymbol id='i' viewBox='0 0 10.1 21.9'%3E%3Cpath d='M2.9 19.4L10.1.3 9.8 0l-5 .6v.6l1 .7c.9.7.6 1.3-.2 3.4L.2 19.9a1.3 1.3 0 001.1 2c2.3 0 4.7-2.1 5.8-5h-.7a6.5 6.5 0 01-3.5 2.5'/%3E%3C/symbol%3E%3Csymbol id='j' viewBox='0 0 18 22'%3E%3Cpath d='M18 .6h-4.3a3.8 3.8 0 00-2.1-.6A6.6 6.6 0 005 6.5a3.3 3.3 0 003 3.6c-1.9.8-3 1.8-3 2.9a1.7 1.7 0 00.9 1.5c-4.3 1.3-6 2.8-6 4.7 0 2 2.6 2.8 5.6 2.8 5.3 0 9.6-2.7 9.6-5.1 0-1.8-1.6-2.5-4.3-3.3-2.2-.7-3.2-.8-3.2-1.6A2.4 2.4 0 019 10.2a6.6 6.6 0 006.1-6.5 4.5 4.5 0 00-.2-1.5h2.5zM9.8 16.2c2.1.7 3 1 3 1.6 0 1.4-2 2.5-5.6 2.5-2.7 0-4-.6-4-2 0-1.5 1.4-2.5 3.5-3.3a21.5 21.5 0 003 1.2zM9 9c-1 0-1.3-.8-1.3-1.7 0-2.8 1.4-6.2 3.5-6.2 1 0 1.3.8 1.3 1.6C12.5 5.6 11.1 9 9 9z'/%3E%3C/symbol%3E%3Csymbol id='k' viewBox='0 0 23 25.1'%3E%3Cpath d='M14.3 15.6c1.9 0 2 .8 1.6 2.8H17l2.5-6.8h-1c-1 1.6-1.7 2.9-3.8 2.9h-4.1l2-5.6c.7-2 1-2.4 3.7-2.4H18c2.6 0 3 .7 3 3.5h1l.9-4.7H7.3l-.3.9c3 .6 3.3.9 2 4.8l-3.2 8.4c-1.5 3.9-2 4.2-5.6 4.8l-.2 1h17.4l3.2-5h-1.2c-2 2-4 3.8-8 3.8-4.7 0-4.3-.3-2.7-4.6l1.4-3.8h4.2zm2.3-11.8L21 .6V0h-3l-2.6 3.9h1.2v-.1z'/%3E%3C/symbol%3E%3Csymbol id='l' viewBox='0 0 13.6 21.8'%3E%3Cpath d='M11.4 6.4c-2 0-4 2.2-5.8 4.8L9.6.3 9.4 0l-5 .6V1l1 .8c.9.7.6 1.3-.2 3.4L.8 16.8A13.9 13.9 0 000 19c0 1.4 1.8 2.7 3.5 2.7 3.8 0 10-6.9 10-12.2 0-2.3-.5-3.2-2.1-3.2zM4.8 19.5c-.8 0-1.9-.7-1.9-1.3a15.5 15.5 0 01.8-2.2L5 12.7C6.3 11 8.4 9.3 9.6 9.3c.7 0 1.2.4 1.2 1.5 0 3.1-2.9 8.7-6 8.7z'/%3E%3C/symbol%3E%3Csymbol id='m' viewBox='0 0 19.2 19.9'%3E%3Cpath d='M17.6 0H7.3L7 .9c3 .6 3.3.9 2 4.8l-3.2 8.5c-1.5 3.9-2 4.2-5.5 4.8L0 20h15.7l3.5-6H18c-2 2-4.2 4.8-7.7 4.8-2.7 0-3-.5-1.6-4.5l3.1-8.5c1.4-3.9 2-4.2 5.5-4.8z'/%3E%3C/symbol%3E%3Csymbol id='n' viewBox='0 0 126 90'%3E%3Cuse width='12.4' height='21.8' x='112.7' y='66.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='102.2' y='69' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='93.6' y='66.1' href='%23d'/%3E%3Cuse width='14.8' height='15.5' x='77.2' y='72.5' href='%23e'/%3E%3Cuse width='12' height='15.5' x='65.7' y='72.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='54.3' y='72.5' href='%23a'/%3E%3Cuse width='11.5' height='19' x='43.7' y='69' href='%23c'/%3E%3Cuse width='14.7' height='16.2' x='28.9' y='71.8' href='%23g'/%3E%3Cuse width='12' height='15.5' x='19.6' y='72.5' href='%23f'/%3E%3Cuse width='21.9' height='19.8' y='67.6' href='%23h'/%3E%3Cuse width='12.4' height='21.8' x='77.3' y='33.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.8' y='36' href='%23c'/%3E%3Cuse width='9.8' height='21.9' x='58.2' y='33' href='%23d'/%3E%3Cuse width='10.1' height='21.9' x='49.4' y='33.1' href='%23i'/%3E%3Cuse width='14.7' height='16.2' x='34.9' y='38.8' href='%23g'/%3E%3Cuse width='18' height='22' x='18.6' y='39.4' href='%23j'/%3E%3Cuse width='23' height='25.1' y='29.3' href='%23k'/%3E%3Cuse width='12.4' height='21.8' x='76.8' y='.1' href='%23b'/%3E%3Cuse width='11.5' height='19' x='66.2' y='2.9' href='%23c'/%3E%3Cuse width='12' height='15.5' x='54.8' y='6.5' href='%23f'/%3E%3Cuse width='11' height='15.5' x='43.4' y='6.4' href='%23a'/%3E%3Cuse width='13.6' height='21.8' x='29.4' y='.1' href='%23l'/%3E%3Cuse width='9.8' height='21.9' x='20.6' href='%23d'/%3E%3Cuse width='19.2' height='19.9' y='1.4' href='%23m'/%3E%3C/symbol%3E%3C/defs%3E%3Cuse fill='%231e1e1e' width='126' height='90' href='%23n'/%3E%3Cuse fill='%23fff' width='126' height='90' x='126' y='90' href='%23n'/%3E%3C/svg%3E")}.fr-logo--sm{font-size:.7875rem}.fr-logo--sm:before{width:2.0625rem;height:.75rem;margin-bottom:.25rem;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;background-position:0 -.04688rem,0 0,0 0}:root[data-fr-mourning] .fr-logo--sm:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-logo--sm:after{min-width:1.96875rem;background-size:3.9375rem 2.8125rem;background-position:0 calc(100% + 1.40625rem);padding-top:1.65625rem}:root[data-fr-theme=dark] .fr-logo--sm:after{background-position:-1.96875rem 100%}.fr-logo--lg{font-size:1.3125rem}.fr-logo--lg:before{width:3.4375rem;height:1.25rem;margin-bottom:.41667rem;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;background-position:0 -.07812rem,0 0,0 0}:root[data-fr-mourning] .fr-logo--lg:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-logo--lg:after{min-width:3.28125rem;background-size:6.5625rem 4.6875rem;background-position:0 calc(100% + 2.34375rem);padding-top:2.76042rem}:root[data-fr-theme=dark] .fr-logo--lg:after{background-position:-3.28125rem 100%}.fr-quote{position:relative;margin:0;padding:0 .5rem 2rem}.fr-quote:before{font:normal normal normal 2rem/1 dsfr-icons;content:"";display:block;padding-bottom:.5rem}.fr-quote:after{content:"";display:block;position:absolute;top:0;left:.5rem;width:calc(50% - 1rem);height:100%;pointer-events:none}.fr-quote--column{display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:5.25rem}.fr-quote--column figcaption{min-height:4.25rem;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.fr-quote blockquote{margin:0}.fr-quote blockquote p{margin-bottom:1rem;font-size:1.25rem;line-height:2rem;font-weight:700}.fr-quote__author{font-weight:700;font-size:.875rem;line-height:1.5rem;margin-bottom:.25rem}.fr-quote__image{width:4.25rem;background-size:cover;border-radius:50%;overflow:hidden;position:absolute;display:flex;flex-direction:row}.fr-quote__image img{width:100%;height:100%}.fr-quote cite{font-size:.75rem;line-height:1.25rem;font-style:italic}.fr-quote figcaption{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-quote figcaption li{font-size:.75rem;line-height:1.25rem}.fr-quote figcaption .fr-quote__source{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:wrap}.fr-quote figcaption .fr-quote__source li{display:inline-block}.fr-quote figcaption .fr-quote__source li:not(:last-child):after{content:"·";display:inline-block;padding-left:.25rem;padding-right:.25rem}.fr-quote:before{color:var(--bf500)}.fr-quote:after{box-shadow:inset 0 -1px 0 0 var(--g300)}:root{--block-color-hover:hsla(0,0%,87.8%,0.5);--block-color-active:hsla(0,0%,76.1%,0.5)}:root[data-fr-theme=dark]{--bf500:#9a9aff;--bf500-plain:#000091;--w-bf500:#000091;--bf200-bf300:#9a9aff;--bf100-g750:#2a2a2a;--t-w:#fff;--g800:#fff;--g700:#f0f0f0;--g600:#e7e7e7;--g500:#cecece;--g400:#9c9c9c;--g300:#6a6a6a;--g200:#383838;--g100:#2a2a2a;--w:#1e1e1e;--beige:#2a2a2a;--g800-plain:#1e1e1e;--g600-g400:#cecece;--g400-t:transparent;--g100-g800:#1e1e1e;--w-g750:#2a2a2a;--focus:#5398ff;--info:#2b8bf7;--success:#00eb5e;--error:#f33;--rm300:#383838;--rm500:#f7bfc3;--scroll-shadow:#1e1e1e;--overlay:hsla(0,0%,80.8%,0.32)}:root,:root[data-fr-theme=dark]{--bf300-plain:#9a9aff;--t-plain:transparent}:root{--bf500:#000091;--bf500-plain:#000091;--w-bf500:#fff;--bf200-bf300:#ececff;--bf100-g750:#f5f5ff;--t-w:transparent;--g800:#1e1e1e;--g700:#383838;--g600:#6a6a6a;--g500:#9c9c9c;--g400:#cecece;--g300:#e7e7e7;--g200:#f0f0f0;--g100:#f8f8f8;--w:#fff;--beige:#f9f8f6;--g800-plain:#1e1e1e;--g600-g400:#6a6a6a;--g400-t:#cecece;--g100-g800:#f8f8f8;--w-g750:#fff;--focus:#2a7ffe;--info:#0762c8;--success:#008941;--error:#e10600;--rm300:#f7bfc3;--rm500:#e1000f;--scroll-shadow:rgba(30,30,30,0.16);--overlay:hsla(0,0%,61.2%,0.32)}:root:not([data-fr-theme=dark]) [class*="--scheme-light-"],:root:not([data-fr-theme=dark]) [class*=fr-scheme-light]{--bf500:#000091;--bf500-plain:#000091;--w-bf500:#fff;--bf300-plain:#9a9aff;--bf200-bf300:#ececff;--bf100-g750:#f5f5ff;--t-plain:transparent;--t-w:transparent;--g800:#1e1e1e;--g700:#383838;--g600:#6a6a6a;--g500:#9c9c9c;--g400:#cecece;--g300:#e7e7e7;--g200:#f0f0f0;--g100:#f8f8f8;--w:#fff;--beige:#f9f8f6;--g800-plain:#1e1e1e;--g600-g400:#6a6a6a;--g400-t:#cecece;--g100-g800:#f8f8f8;--w-g750:#fff;--focus:#2a7ffe;--info:#0762c8;--success:#008941;--error:#e10600;--rm300:#f7bfc3;--rm500:#e1000f;--scroll-shadow:rgba(30,30,30,0.16);--overlay:hsla(0,0%,61.2%,0.32)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"],:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark]{--bf500:#9a9aff;--w-bf500:#000091;--bf200-bf300:#9a9aff;--bf100-g750:#2a2a2a;--t-w:#fff;--g800:#fff;--g700:#f0f0f0;--g600:#e7e7e7;--g500:#cecece;--g400:#9c9c9c;--g300:#6a6a6a;--g200:#383838;--g100:#2a2a2a;--w:#1e1e1e;--beige:#2a2a2a;--g600-g400:#cecece;--g400-t:transparent;--g100-g800:#1e1e1e;--w-g750:#2a2a2a;--focus:#5398ff;--info:#2b8bf7;--success:#00eb5e;--error:#f33;--rm300:#383838;--rm500:#f7bfc3;--scroll-shadow:#1e1e1e;--overlay:hsla(0,0%,80.8%,0.32)}:root .fr-scheme-light-white{background-color:var(--w);--scheme-border:var(--bf500);--block-color-hover:hsla(0,0%,87.8%,0.5);--block-color-active:hsla(0,0%,76.1%,0.5)}:root[data-fr-theme=dark] :root .fr-scheme-light-white{--block-color-hover:rgba(65,65,65,0.5);--block-color-active:rgba(99,99,99,0.5)}:root .fr-scheme-light-grey-100{background-color:var(--g100-g800);--scheme-border:var(--bf500);--block-color-hover:hsla(0,0%,85.1%,0.5);--block-color-active:hsla(0,0%,72.5%,0.5)}:root[data-fr-theme=dark] :root .fr-scheme-light-grey-100{--block-color-hover:rgba(65,65,65,0.5);--block-color-active:rgba(99,99,99,0.5)}:root .fr-scheme-light-grey-200{background-color:var(--g200);--scheme-border:var(--bf500);--block-color-hover:hsla(0,0%,81.2%,0.5);--block-color-active:hsla(0,0%,68.6%,0.5)}:root[data-fr-theme=dark] :root .fr-scheme-light-grey-200{--block-color-hover:rgba(95,95,95,0.5);--block-color-active:hsla(0,0%,52.5%,0.5)}:root .fr-scheme-light-beige{background-color:var(--beige);--scheme-border:var(--bf500);--block-color-hover:rgba(224,219,208,0.5);--block-color-active:rgba(199,189,170,0.5)}:root[data-fr-theme=dark] :root .fr-scheme-light-beige{--block-color-hover:rgba(79,79,79,0.5);--block-color-active:hsla(0,0%,45.1%,0.5)}:root[data-fr-transition] [class*=fr-scheme-light]{transition:background-color .3s,box-shadow .3s}:root .fr-scheme-dark-grey-800{background-color:var(--g800-plain);--scheme-border:var(--bf300-plain)}:root .fr-scheme-dark-grey-800,:root[data-fr-theme=dark] :root .fr-scheme-dark-grey-800{--block-color-hover:rgba(65,65,65,0.5);--block-color-active:rgba(99,99,99,0.5)}:root[data-fr-transition] [class*=fr-scheme-dark]{transition:background-color .3s,box-shadow .3s}:root .fr-switch-theme .fr-fieldset .fr-radio-group:last-child input[type=radio]+label{margin-bottom:0}:root .fr-switch-theme .fr-fieldset .fr-radio-group:first-child input[type=radio]+label{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h80v80H0z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Ccircle stroke='%23000091' stroke-width='2' mask='url(%23b)' cx='40' cy='40' r='16'/%3E%3Cpath d='M40 29a1 1 0 010 2 9 9 0 00-9 9 1 1 0 01-2 0c0-6.075 4.925-11 11-11z' fill='%23E1000F' fill-rule='nonzero' mask='url(%23b)'/%3E%3Cpath d='M39.912 64a1 1 0 011 1v6a1 1 0 11-2 0v-6a1 1 0 011-1zm18.947-7.262l4.243 4.242a1 1 0 01-1.415 1.414l-4.242-4.242a1 1 0 111.414-1.414zm-35.48 0a1 1 0 010 1.414l-4.243 4.242a1 1 0 01-1.414-1.414l4.242-4.242a1 1 0 011.415 0zM71 38.912a1 1 0 010 2h-6a1 1 0 110-2h6zm-56 0a1 1 0 010 2H9a1 1 0 110-2h6zm4.26-21.772l4.244 4.242a1 1 0 01-1.415 1.414l-4.242-4.242a1 1 0 011.414-1.414zm43.717 0a1 1 0 010 1.414l-4.243 4.242a1 1 0 01-1.414-1.414l4.242-4.242a1 1 0 011.415 0zM39.912 8a1 1 0 011 1v6a1 1 0 11-2 0V9a1 1 0 011-1z' fill='%23000091' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E")}:root .fr-switch-theme .fr-fieldset .fr-radio-group:nth-child(2) input[type=radio]+label{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Cpath d='M38 26c0 11.046 8.954 20 20 20 2.23 0 4.376-.365 6.38-1.039C62.174 53.607 54.333 60 45 60c-11.046 0-20-8.954-20-20 0-8.815 5.703-16.298 13.62-18.961A20.024 20.024 0 0038 26z' stroke='%23000091' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath fill='%23E1000F' d='M14.647 20.822l-4.151-.848 4.151-.849.849-4.151.848 4.151 4.152.849-4.152.848-.848 4.152zm43 11l-4.151-.848 4.151-.849.849-4.151.848 4.151 4.152.849-4.152.848-.848 4.152zm-39 29l-4.151-.848 4.151-.849.849-4.151.848 4.151 4.152.849-4.152.848-.848 4.152z'/%3E%3C/g%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-switch-theme .fr-fieldset .fr-radio-group:first-child input[type=radio]+label{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='80' height='80'%3E%3Cdefs%3E%3Cpath id='a' d='M0 0h80v80H0z'/%3E%3C/defs%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cmask id='b' fill='%23fff'%3E%3Cuse xlink:href='%23a'/%3E%3C/mask%3E%3Ccircle cx='40' cy='40' r='16' stroke='%239a9aff' stroke-width='2' mask='url(%23b)'/%3E%3Cpath fill='%23F7BFC3' fill-rule='nonzero' d='M40 29a1 1 0 010 2 9 9 0 00-9 9 1 1 0 01-2 0c0-6.075 4.925-11 11-11z' mask='url(%23b)'/%3E%3Cpath fill='%239a9aff' d='M39.912 64a1 1 0 011 1v6a1 1 0 01-2 0v-6a1 1 0 011-1zm18.947-7.262l4.243 4.242a1 1 0 01-1.415 1.414l-4.242-4.242a1 1 0 011.414-1.414zm-35.48 0a1 1 0 010 1.414l-4.243 4.242a.999.999 0 11-1.414-1.414l4.242-4.242a1.002 1.002 0 011.415 0zM71 38.912a1 1 0 110 2h-6a1 1 0 010-2h6zm-56 0a1 1 0 110 2H9a1 1 0 010-2h6zm4.26-21.772l4.244 4.242a1 1 0 01-1.415 1.414l-4.242-4.242a1 1 0 011.414-1.414zm43.717 0a1 1 0 010 1.414l-4.243 4.242a.999.999 0 11-1.414-1.414l4.242-4.242a1.002 1.002 0 011.415 0zM39.912 8a1 1 0 011 1v6a1 1 0 01-2 0V9a1 1 0 011-1z' mask='url(%23b)'/%3E%3C/g%3E%3C/svg%3E")}:root[data-fr-theme=dark] .fr-switch-theme .fr-fieldset .fr-radio-group:nth-child(2) input[type=radio]+label{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cpath d='M0 0h80v80H0z'/%3E%3Cpath stroke='%239a9aff' stroke-linejoin='round' stroke-width='2' d='M38 26c0 11.046 8.954 20 20 20 2.23 0 4.376-.365 6.38-1.039C62.174 53.607 54.333 60 45 60c-11.046 0-20-8.954-20-20 0-8.815 5.703-16.298 13.62-18.961A20.039 20.039 0 0038 26z'/%3E%3Cpath fill='%23F7BFC3' d='M14.647 20.823l-4.151-.85 4.151-.848.849-4.152.849 4.152 4.151.848-4.151.85-.849 4.15zm43 11l-4.151-.85 4.151-.848.849-4.152.849 4.152 4.151.848-4.151.85-.849 4.15zm-39 29l-4.151-.85 4.151-.848.849-4.152.849 4.152 4.151.848-4.151.85-.849 4.15z'/%3E%3C/g%3E%3C/svg%3E")}.fr-sidemenu{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--link-underline:none;--link-blank-font:none;--link-blank-content:none;position:relative;box-shadow:0 8px 8px 0 rgba(0,0,0,.1),0 8px 16px -16px rgba(0,0,0,.32);margin-left:-1rem;margin-right:-1rem}.fr-sidemenu a:not([href]){cursor:default}.fr-sidemenu__title{margin:0;padding:1rem 0;font-size:1.125rem;line-height:1.75rem;font-weight:700}.fr-sidemenu__list{font-weight:700}.fr-sidemenu__list .fr-sidemenu__list{margin:0 .5rem 1.5rem;font-weight:400}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:1rem;line-height:1.5rem;font-weight:400}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{font-size:.875rem;line-height:1.5rem}.fr-sidemenu__item{position:relative}.fr-sidemenu__item:before{content:none}.fr-sidemenu__item:last-child{border:0}.fr-sidemenu__item--active>.fr-sidemenu__btn:after,.fr-sidemenu__item--active>.fr-sidemenu__link:after{content:"";position:absolute;top:.75rem;bottom:.75rem;left:0;width:2px}.fr-sidemenu__item .fr-sidemenu__item .fr-sidemenu__item{border:0}.fr-sidemenu__inner>.fr-collapse{margin:0 1rem}.fr-sidemenu__btn{position:relative;display:flex;flex-direction:row-reverse;align-items:center;width:100%;height:100%;padding:.75rem .5rem;margin:0 auto;font-size:1rem;line-height:1.5rem;text-align:left;font-weight:700;background:0;border:0}.fr-sidemenu__btn:before{font:normal normal normal 1rem/1 dsfr-icons;content:"";margin-left:auto;margin-right:0;transition:transform .3s}.fr-sidemenu__btn[aria-expanded=true]{border:0}.fr-sidemenu__btn[aria-expanded=true]:before{transform:rotate(-180deg)}.fr-sidemenu__inner>.fr-sidemenu__btn{width:100%;font-weight:400}.fr-sidemenu__inner>.fr-sidemenu__btn:before{margin-right:1rem}.fr-sidemenu__inner>.fr-sidemenu__btn:after{font:normal normal normal 1rem/1 dsfr-icons;content:"";margin-left:.5rem;margin-right:.5rem}.fr-sidemenu__link{display:flex;flex-direction:row;width:calc(100% - 1rem);margin:0 .5rem;padding:.75rem 0;font-size:1rem;line-height:1.5rem;text-align:left}.fr-sidemenu{background-color:var(--w-g750)}.fr-sidemenu__title{color:var(--g800);background-color:var(--t-plain)}.fr-sidemenu__item,.fr-sidemenu__title{border-bottom:1px solid var(--g300)}.fr-sidemenu__item:last-child .fr-sidemenu__btn{border-bottom:1px solid var(--t-plain)}.fr-sidemenu__item--active>.fr-sidemenu__btn,.fr-sidemenu__item--active>.fr-sidemenu__link{color:var(--bf500)}.fr-sidemenu__item--active>.fr-sidemenu__btn:after,.fr-sidemenu__item--active>.fr-sidemenu__link:after{background-color:currentColor}.fr-sidemenu__btn{color:var(--g800)}.fr-sidemenu__inner>.fr-sidemenu__btn{background-color:var(--w-g750)}.fr-sidemenu__link{color:var(--g800);background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-sidemenu__link,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-sidemenu__link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-sidemenu__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-sidemenu__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-sidemenu__link,:root[data-fr-theme=dark] .fr-sidemenu__link{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-summary{--link-underline:none;--link-blank-font:none;--link-blank-content:none;padding:1.5rem;font-size:.75rem;line-height:1.25rem;--summary-offset:0.54}.fr-summary ol{--summary-base:calc(var(--summary-offset) + 0.87);list-style-type:none}.fr-summary li{--summary-offset:var(--summary-base)}.fr-summary li::marker{content:none}.fr-summary li:nth-of-type(1n+10){--summary-offset:calc(var(--summary-base) + 0.4)}.fr-summary__title{margin:0 0 .5rem;font-weight:700;text-transform:uppercase}.fr-summary__link{display:inline-block;position:relative;padding:.5rem .5rem .5rem calc(var(--summary-offset)*var(--xl-size) + .5rem);margin:0 -.5rem -.25rem calc(var(--summary-offset)*var(--xl-size)*-1 - .5rem)}.fr-summary__link:before{content:var(--ol-content);position:absolute;left:.5rem;font-size:var(--xl-size);font-weight:700}.fr-summary{background-color:var(--beige)}.fr-summary__title,.fr-summary li>a{color:var(--g800)}.fr-summary li>a{background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-summary li>a,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-summary li>a,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-summary li>a,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-summary li>a,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-summary li>a,:root[data-fr-theme=dark] .fr-summary li>a{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-table{position:relative;margin-bottom:2.5rem;padding-top:calc(var(--table-offset) + 1rem)}.fr-table:before{content:"";display:block;width:100%;height:0}.fr-table:not(.fr-table--no-scroll) table{width:100%}.fr-table table{width:100%;display:block;overflow:auto;border-spacing:0}.fr-table[data-fr-js-table=true] caption{position:absolute;top:0}.fr-table caption{position:static;font-size:1.375rem;line-height:1.75rem;margin:0 0 1rem;font-weight:700;text-align:left}.fr-table td,.fr-table th{text-align:left;vertical-align:middle;display:table-cell;border:0;padding:.75rem;font-size:.875rem;line-height:1.5rem}.fr-table th,.fr-table thead td,.fr-table thead th{font-weight:700}.fr-table--bordered tbody td,.fr-table--bordered tbody th{border:0}.fr-table--no-caption{padding-top:0}.fr-table--no-caption caption{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;height:0}.fr-table--caption-bottom{padding-top:0;margin-bottom:0;margin-top:1rem}.fr-table--caption-bottom table{margin-bottom:calc(var(--table-offset) + 3.75rem)}.fr-table--caption-bottom[data-fr-js-table=true] caption{position:absolute;top:100%;right:0;bottom:0;left:0;margin-top:1rem}.fr-table--caption-bottom caption{margin-top:1rem;height:min-content;caption-side:bottom}.fr-table--no-scroll{min-width:auto}.fr-table--no-scroll table{overflow-x:hidden}.fr-table--no-scroll caption{max-width:calc(100vw - 2rem)}.fr-table--layout-fixed table{display:table;table-layout:fixed}.fr-table--shadow table:before{content:"";display:block;position:absolute;top:calc(var(--table-offset) + 1rem);right:0;bottom:0;left:0;z-index:1;opacity:1;pointer-events:none}.fr-table--caption-bottom table:before,.fr-table--no-caption table:before{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0}.fr-table caption{color:var(--g800)}.fr-table thead td,.fr-table thead th{border-bottom:.125rem solid var(--g600);background-color:var(--beige);color:var(--g700)}.fr-table tbody tr:nth-child(2n){background-color:var(--beige)}.fr-table tbody tr:nth-child(odd){background-color:var(--white)}.fr-table--bordered tbody td,.fr-table--bordered tbody th{border-bottom:1px solid var(--g400)}.fr-table--bordered tbody tr:nth-child(2n),.fr-table--bordered tbody tr:nth-child(odd){background-color:var(--t-plain)}.fr-table--shadow table:before{box-shadow:inset 0 0 0 transparent,inset 0 0 0 transparent}.fr-table--shadow-left table:before{content:"";display:block;box-shadow:inset 2rem 0 1rem -1.5rem var(--scroll-shadow),inset 0 0 0 transparent}.fr-table--shadow-right table:before{content:"";display:block;box-shadow:inset 0 0 0 transparent,inset -2rem 0 1rem -2rem var(--scroll-shadow)}.fr-table--shadow-left.fr-table--shadow-right table:before{content:"";display:block;box-shadow:inset 2rem 0 1rem -1.5rem var(--scroll-shadow),inset -2rem 0 1rem -1.5rem var(--scroll-shadow)}.fr-tile{position:relative;display:flex;flex-direction:column-reverse}.fr-grid-row .fr-tile{height:100%}.fr-tile__link{display:inline-flex;--link-underline:none;--link-blank-font:none;--link-blank-content:none;width:100%}.fr-tile__img{display:flex;align-items:center;justify-content:center;flex-shrink:0;width:5rem;height:5rem;margin:2rem auto 0;overflow:hidden}.fr-tile__img>svg{width:100%}.fr-tile__body{display:flex;flex-direction:column;align-items:center;justify-content:center;flex-grow:1;padding:1rem;text-align:center}.fr-tile__title{font-weight:700;margin:0}.fr-tile__desc,.fr-tile__title,.fr-tile__title+.fr-tile__desc{font-size:1rem;line-height:1.5rem}.fr-tile__desc{margin:.5rem 0 0}.fr-tile--horizontal{flex-direction:row-reverse;align-items:center}.fr-tile--horizontal .fr-tile__img{width:3rem;height:3rem;margin:1.5rem 0 1.5rem 1.5rem}.fr-tile--horizontal .fr-tile__body{align-items:flex-start;padding:0;margin:1.5rem;text-align:left}.fr-tile--vertical-md{flex-direction:row-reverse;align-items:center}.fr-tile--vertical-md .fr-tile__img{width:3rem;height:3rem;margin:1.5rem 0 1.5rem 1.5rem}.fr-tile--vertical-md .fr-tile__body{align-items:flex-start;padding:0;margin:1.5rem;text-align:left}.fr-tile--horizontal-md{flex-direction:column-reverse}.fr-tile--horizontal-md .fr-tile__img{width:5rem;height:5rem;margin:2rem auto 0}.fr-tile--horizontal-md .fr-tile__img+.fr-tile__body{min-height:0}.fr-tile--horizontal-md .fr-tile__body{align-items:center;padding:1rem;margin:0;text-align:center}.fr-tile{box-shadow:inset 0 -.25rem 0 0 var(--bf500)}.fr-tile,.fr-tile.fr-enlarge-link{background-color:var(--beige)}:root:not([data-fr-theme=dark]) .fr-tile.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-tile.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-tile.fr-enlarge-link{--color-hover:rgba(224,219,208,0.5);--color-active:rgba(199,189,170,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-tile.fr-enlarge-link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-tile.fr-enlarge-link,:root[data-fr-theme=dark] .fr-tile.fr-enlarge-link{--color-hover:rgba(79,79,79,0.5);--color-active:hsla(0,0%,45.1%,0.5)}.fr-m-n4w,.fr-m-n8v{margin:-2rem!important}.fr-ml-n4w,.fr-ml-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-left:-2rem!important}.fr-mr-n4w,.fr-mr-n8v,.fr-mx-n4w,.fr-mx-n8v{margin-right:-2rem!important}.fr-mt-n4w,.fr-mt-n8v,.fr-my-n4w,.fr-my-n8v{margin-top:-2rem!important}.fr-mb-n4w,.fr-mb-n8v,.fr-my-n4w,.fr-my-n8v{margin-bottom:-2rem!important}.fr-m-n7v{margin:-1.75rem!important}.fr-ml-n7v,.fr-mx-n7v{margin-left:-1.75rem!important}.fr-mr-n7v,.fr-mx-n7v{margin-right:-1.75rem!important}.fr-mt-n7v,.fr-my-n7v{margin-top:-1.75rem!important}.fr-mb-n7v,.fr-my-n7v{margin-bottom:-1.75rem!important}.fr-m-n3w,.fr-m-n6v{margin:-1.5rem!important}.fr-ml-n3w,.fr-ml-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-left:-1.5rem!important}.fr-mr-n3w,.fr-mr-n6v,.fr-mx-n3w,.fr-mx-n6v{margin-right:-1.5rem!important}.fr-mt-n3w,.fr-mt-n6v,.fr-my-n3w,.fr-my-n6v{margin-top:-1.5rem!important}.fr-mb-n3w,.fr-mb-n6v,.fr-my-n3w,.fr-my-n6v{margin-bottom:-1.5rem!important}.fr-m-n5v{margin:-1.25rem!important}.fr-ml-n5v,.fr-mx-n5v{margin-left:-1.25rem!important}.fr-mr-n5v,.fr-mx-n5v{margin-right:-1.25rem!important}.fr-mt-n5v,.fr-my-n5v{margin-top:-1.25rem!important}.fr-mb-n5v,.fr-my-n5v{margin-bottom:-1.25rem!important}.fr-m-n2w,.fr-m-n4v{margin:-1rem!important}.fr-ml-n2w,.fr-ml-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-left:-1rem!important}.fr-mr-n2w,.fr-mr-n4v,.fr-mx-n2w,.fr-mx-n4v{margin-right:-1rem!important}.fr-mt-n2w,.fr-mt-n4v,.fr-my-n2w,.fr-my-n4v{margin-top:-1rem!important}.fr-mb-n2w,.fr-mb-n4v,.fr-my-n2w,.fr-my-n4v{margin-bottom:-1rem!important}.fr-m-n3v{margin:-.75rem!important}.fr-ml-n3v,.fr-mx-n3v{margin-left:-.75rem!important}.fr-mr-n3v,.fr-mx-n3v{margin-right:-.75rem!important}.fr-mt-n3v,.fr-my-n3v{margin-top:-.75rem!important}.fr-mb-n3v,.fr-my-n3v{margin-bottom:-.75rem!important}.fr-m-n1w,.fr-m-n2v{margin:-.5rem!important}.fr-ml-n1w,.fr-ml-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-left:-.5rem!important}.fr-mr-n1w,.fr-mr-n2v,.fr-mx-n1w,.fr-mx-n2v{margin-right:-.5rem!important}.fr-mt-n1w,.fr-mt-n2v,.fr-my-n1w,.fr-my-n2v{margin-top:-.5rem!important}.fr-mb-n1w,.fr-mb-n2v,.fr-my-n1w,.fr-my-n2v{margin-bottom:-.5rem!important}.fr-m-n1v{margin:-.25rem!important}.fr-ml-n1v,.fr-mx-n1v{margin-left:-.25rem!important}.fr-mr-n1v,.fr-mx-n1v{margin-right:-.25rem!important}.fr-mt-n1v,.fr-my-n1v{margin-top:-.25rem!important}.fr-mb-n1v,.fr-my-n1v{margin-bottom:-.25rem!important}.fr-m-0{margin:0!important}.fr-ml-0,.fr-mx-0{margin-left:0!important}.fr-mr-0,.fr-mx-0{margin-right:0!important}.fr-mt-0,.fr-my-0{margin-top:0!important}.fr-mb-0,.fr-my-0{margin-bottom:0!important}.fr-m-1v{margin:.25rem!important}.fr-ml-1v,.fr-mx-1v{margin-left:.25rem!important}.fr-mr-1v,.fr-mx-1v{margin-right:.25rem!important}.fr-mt-1v,.fr-my-1v{margin-top:.25rem!important}.fr-mb-1v,.fr-my-1v{margin-bottom:.25rem!important}.fr-m-1w,.fr-m-2v{margin:.5rem!important}.fr-ml-1w,.fr-ml-2v,.fr-mx-1w,.fr-mx-2v{margin-left:.5rem!important}.fr-mr-1w,.fr-mr-2v,.fr-mx-1w,.fr-mx-2v{margin-right:.5rem!important}.fr-mt-1w,.fr-mt-2v,.fr-my-1w,.fr-my-2v{margin-top:.5rem!important}.fr-mb-1w,.fr-mb-2v,.fr-my-1w,.fr-my-2v{margin-bottom:.5rem!important}.fr-m-3v{margin:.75rem!important}.fr-ml-3v,.fr-mx-3v{margin-left:.75rem!important}.fr-mr-3v,.fr-mx-3v{margin-right:.75rem!important}.fr-mt-3v,.fr-my-3v{margin-top:.75rem!important}.fr-mb-3v,.fr-my-3v{margin-bottom:.75rem!important}.fr-m-2w,.fr-m-4v{margin:1rem!important}.fr-ml-2w,.fr-ml-4v,.fr-mx-2w,.fr-mx-4v{margin-left:1rem!important}.fr-mr-2w,.fr-mr-4v,.fr-mx-2w,.fr-mx-4v{margin-right:1rem!important}.fr-mt-2w,.fr-mt-4v,.fr-my-2w,.fr-my-4v{margin-top:1rem!important}.fr-mb-2w,.fr-mb-4v,.fr-my-2w,.fr-my-4v{margin-bottom:1rem!important}.fr-m-5v{margin:1.25rem!important}.fr-ml-5v,.fr-mx-5v{margin-left:1.25rem!important}.fr-mr-5v,.fr-mx-5v{margin-right:1.25rem!important}.fr-mt-5v,.fr-my-5v{margin-top:1.25rem!important}.fr-mb-5v,.fr-my-5v{margin-bottom:1.25rem!important}.fr-m-3w,.fr-m-6v{margin:1.5rem!important}.fr-ml-3w,.fr-ml-6v,.fr-mx-3w,.fr-mx-6v{margin-left:1.5rem!important}.fr-mr-3w,.fr-mr-6v,.fr-mx-3w,.fr-mx-6v{margin-right:1.5rem!important}.fr-mt-3w,.fr-mt-6v,.fr-my-3w,.fr-my-6v{margin-top:1.5rem!important}.fr-mb-3w,.fr-mb-6v,.fr-my-3w,.fr-my-6v{margin-bottom:1.5rem!important}.fr-m-7v{margin:1.75rem!important}.fr-ml-7v,.fr-mx-7v{margin-left:1.75rem!important}.fr-mr-7v,.fr-mx-7v{margin-right:1.75rem!important}.fr-mt-7v,.fr-my-7v{margin-top:1.75rem!important}.fr-mb-7v,.fr-my-7v{margin-bottom:1.75rem!important}.fr-m-4w,.fr-m-8v{margin:2rem!important}.fr-ml-4w,.fr-ml-8v,.fr-mx-4w,.fr-mx-8v{margin-left:2rem!important}.fr-mr-4w,.fr-mr-8v,.fr-mx-4w,.fr-mx-8v{margin-right:2rem!important}.fr-mt-4w,.fr-mt-8v,.fr-my-4w,.fr-my-8v{margin-top:2rem!important}.fr-mb-4w,.fr-mb-8v,.fr-my-4w,.fr-my-8v{margin-bottom:2rem!important}.fr-m-9v{margin:2.25rem!important}.fr-ml-9v,.fr-mx-9v{margin-left:2.25rem!important}.fr-mr-9v,.fr-mx-9v{margin-right:2.25rem!important}.fr-mt-9v,.fr-my-9v{margin-top:2.25rem!important}.fr-mb-9v,.fr-my-9v{margin-bottom:2.25rem!important}.fr-m-5w,.fr-m-10v{margin:2.5rem!important}.fr-ml-5w,.fr-ml-10v,.fr-mx-5w,.fr-mx-10v{margin-left:2.5rem!important}.fr-mr-5w,.fr-mr-10v,.fr-mx-5w,.fr-mx-10v{margin-right:2.5rem!important}.fr-mt-5w,.fr-mt-10v,.fr-my-5w,.fr-my-10v{margin-top:2.5rem!important}.fr-mb-5w,.fr-mb-10v,.fr-my-5w,.fr-my-10v{margin-bottom:2.5rem!important}.fr-m-11v{margin:2.75rem!important}.fr-ml-11v,.fr-mx-11v{margin-left:2.75rem!important}.fr-mr-11v,.fr-mx-11v{margin-right:2.75rem!important}.fr-mt-11v,.fr-my-11v{margin-top:2.75rem!important}.fr-mb-11v,.fr-my-11v{margin-bottom:2.75rem!important}.fr-m-6w,.fr-m-12v{margin:3rem!important}.fr-ml-6w,.fr-ml-12v,.fr-mx-6w,.fr-mx-12v{margin-left:3rem!important}.fr-mr-6w,.fr-mr-12v,.fr-mx-6w,.fr-mx-12v{margin-right:3rem!important}.fr-mt-6w,.fr-mt-12v,.fr-my-6w,.fr-my-12v{margin-top:3rem!important}.fr-mb-6w,.fr-mb-12v,.fr-my-6w,.fr-my-12v{margin-bottom:3rem!important}.fr-m-13v{margin:3.25rem!important}.fr-ml-13v,.fr-mx-13v{margin-left:3.25rem!important}.fr-mr-13v,.fr-mx-13v{margin-right:3.25rem!important}.fr-mt-13v,.fr-my-13v{margin-top:3.25rem!important}.fr-mb-13v,.fr-my-13v{margin-bottom:3.25rem!important}.fr-m-7w,.fr-m-14v{margin:3.5rem!important}.fr-ml-7w,.fr-ml-14v,.fr-mx-7w,.fr-mx-14v{margin-left:3.5rem!important}.fr-mr-7w,.fr-mr-14v,.fr-mx-7w,.fr-mx-14v{margin-right:3.5rem!important}.fr-mt-7w,.fr-mt-14v,.fr-my-7w,.fr-my-14v{margin-top:3.5rem!important}.fr-mb-7w,.fr-mb-14v,.fr-my-7w,.fr-my-14v{margin-bottom:3.5rem!important}.fr-m-15v{margin:3.75rem!important}.fr-ml-15v,.fr-mx-15v{margin-left:3.75rem!important}.fr-mr-15v,.fr-mx-15v{margin-right:3.75rem!important}.fr-mt-15v,.fr-my-15v{margin-top:3.75rem!important}.fr-mb-15v,.fr-my-15v{margin-bottom:3.75rem!important}.fr-m-8w,.fr-m-16v{margin:4rem!important}.fr-ml-8w,.fr-ml-16v,.fr-mx-8w,.fr-mx-16v{margin-left:4rem!important}.fr-mr-8w,.fr-mr-16v,.fr-mx-8w,.fr-mx-16v{margin-right:4rem!important}.fr-mt-8w,.fr-mt-16v,.fr-my-8w,.fr-my-16v{margin-top:4rem!important}.fr-mb-8w,.fr-mb-16v,.fr-my-8w,.fr-my-16v{margin-bottom:4rem!important}.fr-m-17v{margin:4.25rem!important}.fr-ml-17v,.fr-mx-17v{margin-left:4.25rem!important}.fr-mr-17v,.fr-mx-17v{margin-right:4.25rem!important}.fr-mt-17v,.fr-my-17v{margin-top:4.25rem!important}.fr-mb-17v,.fr-my-17v{margin-bottom:4.25rem!important}.fr-m-9w,.fr-m-18v{margin:4.5rem!important}.fr-ml-9w,.fr-ml-18v,.fr-mx-9w,.fr-mx-18v{margin-left:4.5rem!important}.fr-mr-9w,.fr-mr-18v,.fr-mx-9w,.fr-mx-18v{margin-right:4.5rem!important}.fr-mt-9w,.fr-mt-18v,.fr-my-9w,.fr-my-18v{margin-top:4.5rem!important}.fr-mb-9w,.fr-mb-18v,.fr-my-9w,.fr-my-18v{margin-bottom:4.5rem!important}.fr-m-19v{margin:4.75rem!important}.fr-ml-19v,.fr-mx-19v{margin-left:4.75rem!important}.fr-mr-19v,.fr-mx-19v{margin-right:4.75rem!important}.fr-mt-19v,.fr-my-19v{margin-top:4.75rem!important}.fr-mb-19v,.fr-my-19v{margin-bottom:4.75rem!important}.fr-m-10w,.fr-m-20v{margin:5rem!important}.fr-ml-10w,.fr-ml-20v,.fr-mx-10w,.fr-mx-20v{margin-left:5rem!important}.fr-mr-10w,.fr-mr-20v,.fr-mx-10w,.fr-mx-20v{margin-right:5rem!important}.fr-mt-10w,.fr-mt-20v,.fr-my-10w,.fr-my-20v{margin-top:5rem!important}.fr-mb-10w,.fr-mb-20v,.fr-my-10w,.fr-my-20v{margin-bottom:5rem!important}.fr-m-21v{margin:5.25rem!important}.fr-ml-21v,.fr-mx-21v{margin-left:5.25rem!important}.fr-mr-21v,.fr-mx-21v{margin-right:5.25rem!important}.fr-mt-21v,.fr-my-21v{margin-top:5.25rem!important}.fr-mb-21v,.fr-my-21v{margin-bottom:5.25rem!important}.fr-m-11w,.fr-m-22v{margin:5.5rem!important}.fr-ml-11w,.fr-ml-22v,.fr-mx-11w,.fr-mx-22v{margin-left:5.5rem!important}.fr-mr-11w,.fr-mr-22v,.fr-mx-11w,.fr-mx-22v{margin-right:5.5rem!important}.fr-mt-11w,.fr-mt-22v,.fr-my-11w,.fr-my-22v{margin-top:5.5rem!important}.fr-mb-11w,.fr-mb-22v,.fr-my-11w,.fr-my-22v{margin-bottom:5.5rem!important}.fr-m-23v{margin:5.75rem!important}.fr-ml-23v,.fr-mx-23v{margin-left:5.75rem!important}.fr-mr-23v,.fr-mx-23v{margin-right:5.75rem!important}.fr-mt-23v,.fr-my-23v{margin-top:5.75rem!important}.fr-mb-23v,.fr-my-23v{margin-bottom:5.75rem!important}.fr-m-12w,.fr-m-24v{margin:6rem!important}.fr-ml-12w,.fr-ml-24v,.fr-mx-12w,.fr-mx-24v{margin-left:6rem!important}.fr-mr-12w,.fr-mr-24v,.fr-mx-12w,.fr-mx-24v{margin-right:6rem!important}.fr-mt-12w,.fr-mt-24v,.fr-my-12w,.fr-my-24v{margin-top:6rem!important}.fr-mb-12w,.fr-mb-24v,.fr-my-12w,.fr-my-24v{margin-bottom:6rem!important}.fr-m-25v{margin:6.25rem!important}.fr-ml-25v,.fr-mx-25v{margin-left:6.25rem!important}.fr-mr-25v,.fr-mx-25v{margin-right:6.25rem!important}.fr-mt-25v,.fr-my-25v{margin-top:6.25rem!important}.fr-mb-25v,.fr-my-25v{margin-bottom:6.25rem!important}.fr-m-13w,.fr-m-26v{margin:6.5rem!important}.fr-ml-13w,.fr-ml-26v,.fr-mx-13w,.fr-mx-26v{margin-left:6.5rem!important}.fr-mr-13w,.fr-mr-26v,.fr-mx-13w,.fr-mx-26v{margin-right:6.5rem!important}.fr-mt-13w,.fr-mt-26v,.fr-my-13w,.fr-my-26v{margin-top:6.5rem!important}.fr-mb-13w,.fr-mb-26v,.fr-my-13w,.fr-my-26v{margin-bottom:6.5rem!important}.fr-m-27v{margin:6.75rem!important}.fr-ml-27v,.fr-mx-27v{margin-left:6.75rem!important}.fr-mr-27v,.fr-mx-27v{margin-right:6.75rem!important}.fr-mt-27v,.fr-my-27v{margin-top:6.75rem!important}.fr-mb-27v,.fr-my-27v{margin-bottom:6.75rem!important}.fr-m-14w,.fr-m-28v{margin:7rem!important}.fr-ml-14w,.fr-ml-28v,.fr-mx-14w,.fr-mx-28v{margin-left:7rem!important}.fr-mr-14w,.fr-mr-28v,.fr-mx-14w,.fr-mx-28v{margin-right:7rem!important}.fr-mt-14w,.fr-mt-28v,.fr-my-14w,.fr-my-28v{margin-top:7rem!important}.fr-mb-14w,.fr-mb-28v,.fr-my-14w,.fr-my-28v{margin-bottom:7rem!important}.fr-m-29v{margin:7.25rem!important}.fr-ml-29v,.fr-mx-29v{margin-left:7.25rem!important}.fr-mr-29v,.fr-mx-29v{margin-right:7.25rem!important}.fr-mt-29v,.fr-my-29v{margin-top:7.25rem!important}.fr-mb-29v,.fr-my-29v{margin-bottom:7.25rem!important}.fr-m-15w,.fr-m-30v{margin:7.5rem!important}.fr-ml-15w,.fr-ml-30v,.fr-mx-15w,.fr-mx-30v{margin-left:7.5rem!important}.fr-mr-15w,.fr-mr-30v,.fr-mx-15w,.fr-mx-30v{margin-right:7.5rem!important}.fr-mt-15w,.fr-mt-30v,.fr-my-15w,.fr-my-30v{margin-top:7.5rem!important}.fr-mb-15w,.fr-mb-30v,.fr-my-15w,.fr-my-30v{margin-bottom:7.5rem!important}.fr-m-31v{margin:7.75rem!important}.fr-ml-31v,.fr-mx-31v{margin-left:7.75rem!important}.fr-mr-31v,.fr-mx-31v{margin-right:7.75rem!important}.fr-mt-31v,.fr-my-31v{margin-top:7.75rem!important}.fr-mb-31v,.fr-my-31v{margin-bottom:7.75rem!important}.fr-m-16w,.fr-m-32v{margin:8rem!important}.fr-ml-16w,.fr-ml-32v,.fr-mx-16w,.fr-mx-32v{margin-left:8rem!important}.fr-mr-16w,.fr-mr-32v,.fr-mx-16w,.fr-mx-32v{margin-right:8rem!important}.fr-mt-16w,.fr-mt-32v,.fr-my-16w,.fr-my-32v{margin-top:8rem!important}.fr-mb-16w,.fr-mb-32v,.fr-my-16w,.fr-my-32v{margin-bottom:8rem!important}.fr-m-auto{margin:auto}.fr-ml-auto,.fr-mx-auto{margin-left:auto}.fr-mr-auto,.fr-mx-auto{margin-right:auto}.fr-mt-auto,.fr-my-auto{margin-top:auto}.fr-mb-auto,.fr-my-auto{margin-bottom:auto}.fr-p-0{padding:0!important}.fr-pl-0,.fr-px-0{padding-left:0!important}.fr-pr-0,.fr-px-0{padding-right:0!important}.fr-pt-0,.fr-py-0{padding-top:0!important}.fr-pb-0,.fr-py-0{padding-bottom:0!important}.fr-p-1v{padding:.25rem!important}.fr-pl-1v,.fr-px-1v{padding-left:.25rem!important}.fr-pr-1v,.fr-px-1v{padding-right:.25rem!important}.fr-pt-1v,.fr-py-1v{padding-top:.25rem!important}.fr-pb-1v,.fr-py-1v{padding-bottom:.25rem!important}.fr-p-1w,.fr-p-2v{padding:.5rem!important}.fr-pl-1w,.fr-pl-2v,.fr-px-1w,.fr-px-2v{padding-left:.5rem!important}.fr-pr-1w,.fr-pr-2v,.fr-px-1w,.fr-px-2v{padding-right:.5rem!important}.fr-pt-1w,.fr-pt-2v,.fr-py-1w,.fr-py-2v{padding-top:.5rem!important}.fr-pb-1w,.fr-pb-2v,.fr-py-1w,.fr-py-2v{padding-bottom:.5rem!important}.fr-p-3v{padding:.75rem!important}.fr-pl-3v,.fr-px-3v{padding-left:.75rem!important}.fr-pr-3v,.fr-px-3v{padding-right:.75rem!important}.fr-pt-3v,.fr-py-3v{padding-top:.75rem!important}.fr-pb-3v,.fr-py-3v{padding-bottom:.75rem!important}.fr-p-2w,.fr-p-4v{padding:1rem!important}.fr-pl-2w,.fr-pl-4v,.fr-px-2w,.fr-px-4v{padding-left:1rem!important}.fr-pr-2w,.fr-pr-4v,.fr-px-2w,.fr-px-4v{padding-right:1rem!important}.fr-pt-2w,.fr-pt-4v,.fr-py-2w,.fr-py-4v{padding-top:1rem!important}.fr-pb-2w,.fr-pb-4v,.fr-py-2w,.fr-py-4v{padding-bottom:1rem!important}.fr-p-5v{padding:1.25rem!important}.fr-pl-5v,.fr-px-5v{padding-left:1.25rem!important}.fr-pr-5v,.fr-px-5v{padding-right:1.25rem!important}.fr-pt-5v,.fr-py-5v{padding-top:1.25rem!important}.fr-pb-5v,.fr-py-5v{padding-bottom:1.25rem!important}.fr-p-3w,.fr-p-6v{padding:1.5rem!important}.fr-pl-3w,.fr-pl-6v,.fr-px-3w,.fr-px-6v{padding-left:1.5rem!important}.fr-pr-3w,.fr-pr-6v,.fr-px-3w,.fr-px-6v{padding-right:1.5rem!important}.fr-pt-3w,.fr-pt-6v,.fr-py-3w,.fr-py-6v{padding-top:1.5rem!important}.fr-pb-3w,.fr-pb-6v,.fr-py-3w,.fr-py-6v{padding-bottom:1.5rem!important}.fr-p-7v{padding:1.75rem!important}.fr-pl-7v,.fr-px-7v{padding-left:1.75rem!important}.fr-pr-7v,.fr-px-7v{padding-right:1.75rem!important}.fr-pt-7v,.fr-py-7v{padding-top:1.75rem!important}.fr-pb-7v,.fr-py-7v{padding-bottom:1.75rem!important}.fr-p-4w,.fr-p-8v{padding:2rem!important}.fr-pl-4w,.fr-pl-8v,.fr-px-4w,.fr-px-8v{padding-left:2rem!important}.fr-pr-4w,.fr-pr-8v,.fr-px-4w,.fr-px-8v{padding-right:2rem!important}.fr-pt-4w,.fr-pt-8v,.fr-py-4w,.fr-py-8v{padding-top:2rem!important}.fr-pb-4w,.fr-pb-8v,.fr-py-4w,.fr-py-8v{padding-bottom:2rem!important}.fr-p-9v{padding:2.25rem!important}.fr-pl-9v,.fr-px-9v{padding-left:2.25rem!important}.fr-pr-9v,.fr-px-9v{padding-right:2.25rem!important}.fr-pt-9v,.fr-py-9v{padding-top:2.25rem!important}.fr-pb-9v,.fr-py-9v{padding-bottom:2.25rem!important}.fr-p-5w,.fr-p-10v{padding:2.5rem!important}.fr-pl-5w,.fr-pl-10v,.fr-px-5w,.fr-px-10v{padding-left:2.5rem!important}.fr-pr-5w,.fr-pr-10v,.fr-px-5w,.fr-px-10v{padding-right:2.5rem!important}.fr-pt-5w,.fr-pt-10v,.fr-py-5w,.fr-py-10v{padding-top:2.5rem!important}.fr-pb-5w,.fr-pb-10v,.fr-py-5w,.fr-py-10v{padding-bottom:2.5rem!important}.fr-p-11v{padding:2.75rem!important}.fr-pl-11v,.fr-px-11v{padding-left:2.75rem!important}.fr-pr-11v,.fr-px-11v{padding-right:2.75rem!important}.fr-pt-11v,.fr-py-11v{padding-top:2.75rem!important}.fr-pb-11v,.fr-py-11v{padding-bottom:2.75rem!important}.fr-p-6w,.fr-p-12v{padding:3rem!important}.fr-pl-6w,.fr-pl-12v,.fr-px-6w,.fr-px-12v{padding-left:3rem!important}.fr-pr-6w,.fr-pr-12v,.fr-px-6w,.fr-px-12v{padding-right:3rem!important}.fr-pt-6w,.fr-pt-12v,.fr-py-6w,.fr-py-12v{padding-top:3rem!important}.fr-pb-6w,.fr-pb-12v,.fr-py-6w,.fr-py-12v{padding-bottom:3rem!important}.fr-p-13v{padding:3.25rem!important}.fr-pl-13v,.fr-px-13v{padding-left:3.25rem!important}.fr-pr-13v,.fr-px-13v{padding-right:3.25rem!important}.fr-pt-13v,.fr-py-13v{padding-top:3.25rem!important}.fr-pb-13v,.fr-py-13v{padding-bottom:3.25rem!important}.fr-p-7w,.fr-p-14v{padding:3.5rem!important}.fr-pl-7w,.fr-pl-14v,.fr-px-7w,.fr-px-14v{padding-left:3.5rem!important}.fr-pr-7w,.fr-pr-14v,.fr-px-7w,.fr-px-14v{padding-right:3.5rem!important}.fr-pt-7w,.fr-pt-14v,.fr-py-7w,.fr-py-14v{padding-top:3.5rem!important}.fr-pb-7w,.fr-pb-14v,.fr-py-7w,.fr-py-14v{padding-bottom:3.5rem!important}.fr-p-15v{padding:3.75rem!important}.fr-pl-15v,.fr-px-15v{padding-left:3.75rem!important}.fr-pr-15v,.fr-px-15v{padding-right:3.75rem!important}.fr-pt-15v,.fr-py-15v{padding-top:3.75rem!important}.fr-pb-15v,.fr-py-15v{padding-bottom:3.75rem!important}.fr-p-8w,.fr-p-16v{padding:4rem!important}.fr-pl-8w,.fr-pl-16v,.fr-px-8w,.fr-px-16v{padding-left:4rem!important}.fr-pr-8w,.fr-pr-16v,.fr-px-8w,.fr-px-16v{padding-right:4rem!important}.fr-pt-8w,.fr-pt-16v,.fr-py-8w,.fr-py-16v{padding-top:4rem!important}.fr-pb-8w,.fr-pb-16v,.fr-py-8w,.fr-py-16v{padding-bottom:4rem!important}.fr-p-17v{padding:4.25rem!important}.fr-pl-17v,.fr-px-17v{padding-left:4.25rem!important}.fr-pr-17v,.fr-px-17v{padding-right:4.25rem!important}.fr-pt-17v,.fr-py-17v{padding-top:4.25rem!important}.fr-pb-17v,.fr-py-17v{padding-bottom:4.25rem!important}.fr-p-9w,.fr-p-18v{padding:4.5rem!important}.fr-pl-9w,.fr-pl-18v,.fr-px-9w,.fr-px-18v{padding-left:4.5rem!important}.fr-pr-9w,.fr-pr-18v,.fr-px-9w,.fr-px-18v{padding-right:4.5rem!important}.fr-pt-9w,.fr-pt-18v,.fr-py-9w,.fr-py-18v{padding-top:4.5rem!important}.fr-pb-9w,.fr-pb-18v,.fr-py-9w,.fr-py-18v{padding-bottom:4.5rem!important}.fr-p-19v{padding:4.75rem!important}.fr-pl-19v,.fr-px-19v{padding-left:4.75rem!important}.fr-pr-19v,.fr-px-19v{padding-right:4.75rem!important}.fr-pt-19v,.fr-py-19v{padding-top:4.75rem!important}.fr-pb-19v,.fr-py-19v{padding-bottom:4.75rem!important}.fr-p-10w,.fr-p-20v{padding:5rem!important}.fr-pl-10w,.fr-pl-20v,.fr-px-10w,.fr-px-20v{padding-left:5rem!important}.fr-pr-10w,.fr-pr-20v,.fr-px-10w,.fr-px-20v{padding-right:5rem!important}.fr-pt-10w,.fr-pt-20v,.fr-py-10w,.fr-py-20v{padding-top:5rem!important}.fr-pb-10w,.fr-pb-20v,.fr-py-10w,.fr-py-20v{padding-bottom:5rem!important}.fr-p-21v{padding:5.25rem!important}.fr-pl-21v,.fr-px-21v{padding-left:5.25rem!important}.fr-pr-21v,.fr-px-21v{padding-right:5.25rem!important}.fr-pt-21v,.fr-py-21v{padding-top:5.25rem!important}.fr-pb-21v,.fr-py-21v{padding-bottom:5.25rem!important}.fr-p-11w,.fr-p-22v{padding:5.5rem!important}.fr-pl-11w,.fr-pl-22v,.fr-px-11w,.fr-px-22v{padding-left:5.5rem!important}.fr-pr-11w,.fr-pr-22v,.fr-px-11w,.fr-px-22v{padding-right:5.5rem!important}.fr-pt-11w,.fr-pt-22v,.fr-py-11w,.fr-py-22v{padding-top:5.5rem!important}.fr-pb-11w,.fr-pb-22v,.fr-py-11w,.fr-py-22v{padding-bottom:5.5rem!important}.fr-p-23v{padding:5.75rem!important}.fr-pl-23v,.fr-px-23v{padding-left:5.75rem!important}.fr-pr-23v,.fr-px-23v{padding-right:5.75rem!important}.fr-pt-23v,.fr-py-23v{padding-top:5.75rem!important}.fr-pb-23v,.fr-py-23v{padding-bottom:5.75rem!important}.fr-p-12w,.fr-p-24v{padding:6rem!important}.fr-pl-12w,.fr-pl-24v,.fr-px-12w,.fr-px-24v{padding-left:6rem!important}.fr-pr-12w,.fr-pr-24v,.fr-px-12w,.fr-px-24v{padding-right:6rem!important}.fr-pt-12w,.fr-pt-24v,.fr-py-12w,.fr-py-24v{padding-top:6rem!important}.fr-pb-12w,.fr-pb-24v,.fr-py-12w,.fr-py-24v{padding-bottom:6rem!important}.fr-p-25v{padding:6.25rem!important}.fr-pl-25v,.fr-px-25v{padding-left:6.25rem!important}.fr-pr-25v,.fr-px-25v{padding-right:6.25rem!important}.fr-pt-25v,.fr-py-25v{padding-top:6.25rem!important}.fr-pb-25v,.fr-py-25v{padding-bottom:6.25rem!important}.fr-p-13w,.fr-p-26v{padding:6.5rem!important}.fr-pl-13w,.fr-pl-26v,.fr-px-13w,.fr-px-26v{padding-left:6.5rem!important}.fr-pr-13w,.fr-pr-26v,.fr-px-13w,.fr-px-26v{padding-right:6.5rem!important}.fr-pt-13w,.fr-pt-26v,.fr-py-13w,.fr-py-26v{padding-top:6.5rem!important}.fr-pb-13w,.fr-pb-26v,.fr-py-13w,.fr-py-26v{padding-bottom:6.5rem!important}.fr-p-27v{padding:6.75rem!important}.fr-pl-27v,.fr-px-27v{padding-left:6.75rem!important}.fr-pr-27v,.fr-px-27v{padding-right:6.75rem!important}.fr-pt-27v,.fr-py-27v{padding-top:6.75rem!important}.fr-pb-27v,.fr-py-27v{padding-bottom:6.75rem!important}.fr-p-14w,.fr-p-28v{padding:7rem!important}.fr-pl-14w,.fr-pl-28v,.fr-px-14w,.fr-px-28v{padding-left:7rem!important}.fr-pr-14w,.fr-pr-28v,.fr-px-14w,.fr-px-28v{padding-right:7rem!important}.fr-pt-14w,.fr-pt-28v,.fr-py-14w,.fr-py-28v{padding-top:7rem!important}.fr-pb-14w,.fr-pb-28v,.fr-py-14w,.fr-py-28v{padding-bottom:7rem!important}.fr-p-29v{padding:7.25rem!important}.fr-pl-29v,.fr-px-29v{padding-left:7.25rem!important}.fr-pr-29v,.fr-px-29v{padding-right:7.25rem!important}.fr-pt-29v,.fr-py-29v{padding-top:7.25rem!important}.fr-pb-29v,.fr-py-29v{padding-bottom:7.25rem!important}.fr-p-15w,.fr-p-30v{padding:7.5rem!important}.fr-pl-15w,.fr-pl-30v,.fr-px-15w,.fr-px-30v{padding-left:7.5rem!important}.fr-pr-15w,.fr-pr-30v,.fr-px-15w,.fr-px-30v{padding-right:7.5rem!important}.fr-pt-15w,.fr-pt-30v,.fr-py-15w,.fr-py-30v{padding-top:7.5rem!important}.fr-pb-15w,.fr-pb-30v,.fr-py-15w,.fr-py-30v{padding-bottom:7.5rem!important}.fr-p-31v{padding:7.75rem!important}.fr-pl-31v,.fr-px-31v{padding-left:7.75rem!important}.fr-pr-31v,.fr-px-31v{padding-right:7.75rem!important}.fr-pt-31v,.fr-py-31v{padding-top:7.75rem!important}.fr-pb-31v,.fr-py-31v{padding-bottom:7.75rem!important}.fr-p-16w,.fr-p-32v{padding:8rem!important}.fr-pl-16w,.fr-pl-32v,.fr-px-16w,.fr-px-32v{padding-left:8rem!important}.fr-pr-16w,.fr-pr-32v,.fr-px-16w,.fr-px-32v{padding-right:8rem!important}.fr-pt-16w,.fr-pt-32v,.fr-py-16w,.fr-py-32v{padding-top:8rem!important}.fr-pb-16w,.fr-pb-32v,.fr-py-16w,.fr-py-32v{padding-bottom:8rem!important}.fr-accordion{position:relative}.fr-accordion__title{margin:0;display:block;font-size:unset;line-height:unset}.fr-accordion__btn{--link-underline:none;--link-blank-font:none;--link-blank-content:none;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:1rem;line-height:1.5rem;min-height:3rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none;width:100%;text-align:left;margin:0;padding:.75rem 0}.fr-accordion__btn:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-right:-.25rem;margin-left:.25rem;font-size:1rem;margin-right:0;margin-left:auto}.fr-accordion__btn[aria-expanded=true]{font-weight:700}.fr-accordion__btn[aria-expanded=true]:before{content:""}.fr-accordion .fr-collapse{--ul-type:"●\00a0\00a0";--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".\00a0\00a0";transition:visibility .3s,padding .3s}.fr-accordion .fr-collapse--expanded{padding-top:1rem;padding-bottom:1.5rem}.fr-accordions-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-accordions-group>*>.fr-accordion,.fr-accordions-group>.fr-accordion{margin-top:1px}.fr-accordion{box-shadow:0 1px 0 0 var(--g300),0 -1px 0 0 var(--g300)}.fr-accordion .fr-accordion__btn{color:var(--g700);background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-accordion .fr-accordion__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-accordion .fr-accordion__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-accordion .fr-accordion__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-accordion .fr-accordion__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-accordion .fr-accordion__btn,:root[data-fr-theme=dark] .fr-accordion .fr-accordion__btn{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-alert{position:relative;padding:1rem 2.25rem .75rem 3.5rem}.fr-alert:before{font:normal normal normal 1.5rem/1 dsfr-icons;position:absolute;top:0;left:0;height:100%;padding:1rem .5rem}.fr-alert h1,.fr-alert h2,.fr-alert h3,.fr-alert h4,.fr-alert h5,.fr-alert h6,.fr-alert p{margin-bottom:.25rem}.fr-alert__title{font-weight:700;font-size:1.125rem;line-height:1.5rem}.fr-alert .fr-link--close{position:absolute;top:.25rem;right:.75rem;font-size:.875rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem .5rem}.fr-alert .fr-link--close:before{font:normal normal normal 1rem/1 dsfr-icons;margin-left:0;margin-right:.5rem;font-size:1rem}.fr-alert+.fr-alert{margin-top:1rem}.fr-alert--info:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-alert--success:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-alert--error:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-alert--warning:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-alert--sm{padding:.5rem 2.25rem .25rem 3rem}.fr-alert--sm:before{padding:.5rem}.fr-alert{box-shadow:inset 0 0 0 1px var(--g500),inset 2.5rem 0 0 0 var(--g500)}.fr-alert:before{color:var(--w)}.fr-alert--info{box-shadow:inset 0 0 0 1px var(--info),inset 2.5rem 0 0 0 var(--info)}.fr-alert--error{box-shadow:inset 0 0 0 1px var(--error),inset 2.5rem 0 0 0 var(--error)}.fr-alert--success{box-shadow:inset 0 0 0 1px var(--success),inset 2.5rem 0 0 0 var(--success)}.fr-alert--warning{box-shadow:inset 0 0 0 1px var(--warning),inset 2.5rem 0 0 0 var(--warning)}.fr-btn{--link-underline:none;--link-blank-font:none;--link-blank-content:none;margin:0;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1.5rem}.fr-btn:not([class*=fr-btn--icon-])[class*=" fr-fi-"],.fr-btn:not([class*=fr-btn--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:2.5rem;max-height:2.5rem;padding-left:.5rem;padding-right:.5rem}.fr-btn:not([class*=fr-btn--icon-])[class*=" fr-fi-"]:before,.fr-btn:not([class*=fr-btn--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.5rem;font-size:1.5rem}.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-btn--sm{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem 1rem}.fr-btn--sm:not([class*=fr-btn--icon-])[class*=" fr-fi-"],.fr-btn--sm:not([class*=fr-btn--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding-left:.5rem;padding-right:.5rem}.fr-btn--sm:not([class*=fr-btn--icon-])[class*=" fr-fi-"]:before,.fr-btn--sm:not([class*=fr-btn--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.5rem;font-size:1rem}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btn--sm.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btn--sm.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--sm.fr-btn--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-btn--lg{font-size:1.25rem;line-height:2rem;min-height:3.5rem;padding:.75rem 2rem}.fr-btn--lg:not([class*=fr-btn--icon-])[class*=" fr-fi-"],.fr-btn--lg:not([class*=fr-btn--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:3.5rem;max-height:3.5rem;padding-left:.75rem;padding-right:.75rem}.fr-btn--lg:not([class*=fr-btn--icon-])[class*=" fr-fi-"]:before,.fr-btn--lg:not([class*=fr-btn--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.75rem;font-size:2rem}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btn--lg.fr-btn--icon-left[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-left[class^=fr-fi-]:before{margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"],.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btn--lg.fr-btn--icon-right[class*=" fr-fi-"]:before,.fr-btn--lg.fr-btn--icon-right[class^=fr-fi-]:before{margin-right:-.375rem;margin-left:.5rem;font-size:1.5rem}.fr-btns-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;align-items:stretch;flex-wrap:wrap;margin-right:0;margin-left:0}.fr-btns-group>li{width:100%;max-width:100%}.fr-btns-group .fr-btn{width:100%;margin-right:0;margin-left:0;margin-bottom:1rem;justify-content:center}.fr-btns-group--inline{width:calc(100% + 1rem)}.fr-btns-group--inline .fr-btn{width:auto;margin-right:1rem;max-width:100%}.fr-btns-group--inline>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline>li:before{content:none}.fr-btns-group--inline.fr-btns-group--right{margin-left:-1rem}.fr-btns-group--inline.fr-btns-group--right .fr-btn{margin-right:0;margin-left:1rem}.fr-btns-group--inline.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--inline.fr-btns-group--center,.fr-btns-group--inline.fr-btns-group--left{margin-right:-1rem}.fr-btns-group--inline.fr-btns-group--center .fr-btn,.fr-btns-group--inline.fr-btns-group--left .fr-btn{margin-right:1rem;margin-left:0}.fr-btns-group--left,.fr-btns-group--left li{justify-content:flex-start;text-align:left}.fr-btns-group--right,.fr-btns-group--right li{justify-content:flex-end;text-align:right}.fr-btns-group--center,.fr-btns-group--center li{justify-content:center;text-align:center}.fr-btns-group--equisized .fr-btn{justify-content:center}.fr-btns-group--sm .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem 1rem}.fr-btns-group--sm .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{font:normal normal normal 1rem/1 dsfr-icons;content:none}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]{font-size:.875rem;line-height:1.5rem;min-height:2rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem .5rem;justify-content:flex-start}.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1rem/1 dsfr-icons;margin-left:0;margin-right:.5rem;font-size:1rem}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem 1rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1rem/1 dsfr-icons;margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem 1rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--sm.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1rem/1 dsfr-icons;margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg) .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{font:normal normal normal 1.5rem/1 dsfr-icons;content:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]{font-size:1rem;line-height:1.5rem;min-height:2.5rem;flex-direction:row;overflow:hidden;max-width:2.5rem;max-height:2.5rem;padding:.5rem;justify-content:flex-start}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg):not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:0;margin-right:.5rem;font-size:1.5rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]{font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1.5rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]{font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1.5rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group:not(.fr-btns-group--sm):not(.fr-btns-group--lg).fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-btns-group--lg .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]){font-size:1.25rem;line-height:2rem;min-height:3.5rem;padding:.75rem 2rem}.fr-btns-group--lg .fr-btn:not([class^=fr-fi-]):not([class*=" fr-fi-"]):before{font:normal normal normal 2rem/1 dsfr-icons;content:none}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]{font-size:1.25rem;line-height:2rem;min-height:3.5rem;flex-direction:row;overflow:hidden;max-width:3.5rem;max-height:3.5rem;padding:.75rem;justify-content:flex-start}.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg:not([class^=fr-btns-group--icon-]):not([class*=" fr-btns-group--icon-"]) .fr-btn[class^=fr-fi-]:before{font:normal normal normal 2rem/1 dsfr-icons;margin-left:0;margin-right:.75rem;font-size:2rem}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]{font-size:1.25rem;line-height:2rem;min-height:3.5rem;padding:.75rem 2rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-left .fr-btn[class^=fr-fi-]:before{font:normal normal normal 2rem/1 dsfr-icons;margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"],.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]{font-size:1.25rem;line-height:2rem;min-height:3.5rem;padding:.75rem 2rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class*=" fr-fi-"]:before,.fr-btns-group--lg.fr-btns-group--icon-right .fr-btn[class^=fr-fi-]:before{font:normal normal normal 2rem/1 dsfr-icons;margin-right:-.375rem;margin-left:.5rem;font-size:1.5rem}.fr-btn{background-color:var(--bf500);color:var(--w-bf500)}:root:not([data-fr-theme=dark]) .fr-btn,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-btn{--color-hover:rgba(0,0,221,0.5);--color-active:rgba(41,41,255,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-btn,:root[data-fr-theme=dark] .fr-btn{--color-hover:rgba(71,71,255,0.5);--color-active:rgba(0,0,243,0.5)}a.fr-btn:not([href]),button.fr-btn[disabled]{color:var(--g600-g400);background-color:var(--g200)}.fr-btn--secondary{background-color:var(--t-plain);color:var(--bf500);box-shadow:inset 0 0 0 1px var(--bf500)}:root:not([data-fr-theme=dark]) .fr-btn--secondary,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-btn--secondary,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-btn--secondary,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-btn--secondary,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-btn--secondary,:root[data-fr-theme=dark] .fr-btn--secondary{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}a.fr-btn--secondary:not([href]),button.fr-btn--secondary[disabled]{color:var(--g600-g400);box-shadow:inset 0 0 0 1px var(--g400);background-color:var(--t-plain)}.fr-checkbox-group{position:relative}.fr-checkbox-group input[type=checkbox]{position:absolute;opacity:0}.fr-checkbox-group input[type=checkbox]+label{position:relative;padding:.75rem 0;-webkit-tap-highlight-color:transparent;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;flex-wrap:wrap;margin-left:2rem}.fr-checkbox-group input[type=checkbox]+label .fr-hint-text{margin:0;width:100%}.fr-checkbox-group input[type=checkbox]+label:before{font:normal normal normal 1rem/1 dsfr-icons;content:"";display:flex;flex-direction:row;align-items:center;justify-content:center;position:absolute;top:0;left:-2rem;margin-top:.75rem;width:1.5rem;height:1.5rem;margin-right:.5rem;border-radius:.25rem;transition:background-color .1s,color .1s}.fr-checkbox-group:first-child{margin-top:-.75rem}.fr-checkbox-group:last-child{margin-bottom:-.75rem}.fr-checkbox-group .fr-error-text,.fr-checkbox-group .fr-valid-text{margin-top:.25rem}.fr-checkbox-group--sm input[type=checkbox]+label:before{width:1rem;height:1rem;margin-top:1rem;left:-1.75rem}.fr-checkbox-group--error:before,.fr-checkbox-group--valid:before{content:"";position:absolute;top:.75rem;left:-.5rem;width:2px;height:1.5rem}.fr-checkbox-group input[type=checkbox]+label:before{border:1px solid var(--g800);color:var(--t-plain)}.fr-checkbox-group input[type=checkbox]:active+label:before,.fr-checkbox-group input[type=checkbox]:checked+label:before{background-color:var(--bf500);color:var(--g100)}.fr-checkbox-group input[type=checkbox]:disabled+label,.fr-checkbox-group input[type=checkbox][disabled]+label{color:var(--g600-g400)}.fr-checkbox-group input[type=checkbox]:disabled+label:before,.fr-checkbox-group input[type=checkbox][disabled]+label:before{background-color:var(--g200);border:1px solid var(--g400)}.fr-checkbox-group--error input[type=checkbox]+label{color:var(--error)}.fr-checkbox-group--error:before{background-color:var(--error)}.fr-checkbox-group--valid input[type=checkbox]+label{color:var(--success)}.fr-checkbox-group--valid:before{background-color:var(--success)}.fr-content-media{width:100%;margin:2.5rem 0;display:flex;flex-direction:column;align-items:center}.fr-content-media__img{width:100%;position:relative}.fr-content-media__img:before{content:"";display:block;width:100%;padding-bottom:56.25%}.fr-content-media__img img{object-fit:cover;object-position:50% 50%;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.fr-content-media__caption,.fr-content-media__transcription{width:100%;margin-top:.5rem;text-align:right}.fr-content-media__caption{font-size:.75rem;line-height:1.25rem}.fr-content-media__transcription .fr-link{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-content-media__transcription .fr-link:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-right:-.25rem;margin-left:.5rem;font-size:1rem}.fr-content-media--sm .fr-content-media__caption,.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-content-media__transcription,.fr-content-media--sm .fr-responsive-vid{width:83.33333%}.fr-content-media--lg .fr-content-media__caption,.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-content-media__transcription,.fr-content-media--lg .fr-responsive-vid{width:116.66667%}.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-responsive-vid{max-width:100vw}.fr-content-media--lg .fr-content-media__caption,.fr-content-media--lg .fr-content-media__transcription{max-width:calc(100vw - 2rem)}.fr-footer{--link-underline:none;--link-blank-font:none;--link-blank-content:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;width:100%;padding-top:2.5rem}.fr-footer__body{display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;margin-bottom:1rem}.fr-footer__body+.fr-footer__bottom{margin-top:1rem}.fr-footer__brand{display:flex;flex-direction:row;align-items:center;flex-basis:100%}.fr-footer__brand .fr-logo{font-size:1.05rem;margin:-1em}.fr-footer__brand .fr-logo:before{width:2.75rem;height:1rem;margin-bottom:.33333rem;background-size:2.75rem 1.125rem,2.75rem 1rem,0;background-position:0 -.0625rem,0 0,0 0}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:2.75rem 1.125rem,0,2.75rem 1rem}.fr-footer__brand .fr-logo:after{min-width:2.625rem;background-size:5.25rem 3.75rem;background-position:0 calc(100% + 1.875rem);padding-top:2.20833rem}:root[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-2.625rem 100%}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:1.5rem}.fr-footer__body--operator .fr-footer__brand .fr-footer__brand-link+.fr-footer__brand-link .fr-footer__logo{width:auto;min-width:0;max-height:100px}.fr-footer__body--operator .fr-footer__brand .fr-footer__logo{min-width:0;max-width:100%}.fr-footer__logo{width:200px;height:auto;max-height:100%}.fr-footer__content{display:flex;flex-wrap:wrap;flex-basis:100%;margin-top:1.5rem}.fr-footer__body--operator .fr-footer__content{margin-top:1.5rem}.fr-footer__content-desc{--link-underline:0 1px 0 0 currentColor;--link-blank-font:normal normal normal 1rem/1 dsfr-icons;--link-blank-content:"\00a0";margin:0 0 .5rem;width:100%;font-size:.875rem;line-height:1.5rem}.fr-footer__content-list{display:flex;flex-direction:row;align-self:center;flex-wrap:wrap}.fr-footer__content-list>li{margin-right:1rem;margin-top:.5rem;margin-bottom:.5rem}.fr-footer__content-list>li:before{content:none}.fr-footer__content-list>li:last-child{margin-right:0}.fr-footer__content-link{display:inline-flex;font-weight:700;font-size:.875rem;line-height:1.5rem}.fr-footer__top{display:flex;margin:-2.5rem 0 1rem;padding:2rem 0 1rem}.fr-footer__top-cat{margin:0 0 .75rem;font-size:.75rem;line-height:1.25rem;font-weight:700;text-align:left}.fr-footer__top-list{margin:0}.fr-footer__top-link{display:block;font-size:.75rem;line-height:1.25rem;margin-bottom:.75rem}.fr-footer__bottom{display:flex;flex-direction:row;align-items:center;flex-wrap:wrap;margin-top:2.5rem}.fr-footer__bottom-list{flex-wrap:wrap;align-items:center;padding:.5rem 0 1rem;width:100%;margin:0}.fr-footer__bottom-item{position:relative;margin:.5rem 0 0 .25rem;display:inline}.fr-footer__bottom-item:before{content:"";display:inline-block;vertical-align:middle;position:relative;width:1px;height:1rem;margin-right:.25rem;margin-bottom:.5rem;margin-top:.5rem}.fr-footer__bottom-item:first-child{margin:.5rem 0 0}.fr-footer__bottom-item:first-child:before{content:none}.fr-footer__bottom-copy *,.fr-footer__bottom-link{font-size:.75rem;line-height:1.25rem}.fr-footer__bottom-copy *{--link-underline:0 1px 0 0 currentColor;--link-blank-font:normal normal normal 1rem/1 dsfr-icons;--link-blank-content:"\00a0";margin-bottom:1rem;margin-top:.5rem}.fr-footer__partners a{display:flex;align-items:center;justify-content:center;width:160px;height:90px;box-shadow:none}.fr-footer__partners .fr-footer__logo{width:auto;height:auto;max-width:100%}.fr-footer__partners+.fr-footer__bottom{margin-top:.5rem}.fr-footer__partners-title{font-size:.875rem;line-height:1.5rem;margin:0;flex-basis:100%;text-align:center}.fr-footer__partners-logos{display:flex;flex-wrap:wrap}.fr-footer__partners-main{flex-basis:100%;padding-top:.5rem;display:flex;flex-direction:row;justify-content:center}.fr-footer__partners-main+.fr-footer__partners-sub{padding-top:1rem}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{flex-basis:100%;display:flex;flex-direction:column;align-items:center;flex-wrap:wrap}.fr-footer__partners-sub .fr-footer__partners-link{box-shadow:none;margin:0 0 .5rem}.fr-footer{border-top:2px solid var(--bf500);border-bottom:1px solid var(--g400)}.fr-footer__content-link{color:var(--g800)}.fr-footer__top{background-color:var(--beige)}.fr-footer__top-link{color:var(--g600)}.fr-footer__bottom{border-top:1px solid var(--g400)}.fr-footer__bottom-item:before{background-color:var(--g400)}.fr-footer__bottom-link{color:var(--g600);background-color:var(--t-plain)}.fr-footer__bottom-copy{color:var(--g600)}.fr-footer__partners{margin-top:1rem;padding-top:1rem;border-top:1px solid var(--g400)}.fr-footer__partners a{background:#fff}.fr-pagination__link{margin:0;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem}.fr-pagination,.fr-pagination__link{--link-underline:none;--link-blank-font:none;--link-blank-content:none}.fr-pagination{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-pagination__list{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;flex-wrap:wrap}.fr-pagination__list>:first-child,.fr-pagination__list>:first-child *{margin-left:0}.fr-pagination__list>:last-child,.fr-pagination__list>:last-child *{margin-right:0}.fr-pagination__link{min-width:2rem;margin-left:.125rem;margin-right:.125rem;margin-bottom:1rem}.fr-pagination__link[aria-current]{cursor:default!important}.fr-pagination__link--first{font-size:1rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem}.fr-pagination__link--first:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-pagination__link--prev{font-size:1rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem}.fr-pagination__link--prev:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-pagination__link--next{font-size:1rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem}.fr-pagination__link--next:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-pagination__link--last{font-size:1rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem}.fr-pagination__link--last:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-pagination__link--first,.fr-pagination__link--prev{margin-right:.875rem;margin-left:-.625rem}.fr-pagination__link--first.fr-pagination__link--label,.fr-pagination__link--prev.fr-pagination__link--label{font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-pagination__link--first.fr-pagination__link--label:before,.fr-pagination__link--prev.fr-pagination__link--label:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-pagination__link--last,.fr-pagination__link--next{margin-right:-.625rem;margin-left:.875rem}.fr-pagination__link--last.fr-pagination__link--label,.fr-pagination__link--next.fr-pagination__link--label{font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-pagination__link--last.fr-pagination__link--label:before,.fr-pagination__link--next.fr-pagination__link--label:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-right:-.375rem;margin-left:.5rem;font-size:1.5rem}.fr-pagination{color:var(--g800)}.fr-pagination__link{background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-pagination__link,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-pagination__link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-pagination__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-pagination__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-pagination__link,:root[data-fr-theme=dark] .fr-pagination__link{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-pagination__link[aria-current]{background-color:var(--bf500);color:var(--w-bf500)}:root:not([data-fr-theme=dark]) .fr-pagination__link[aria-current],:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-pagination__link[aria-current],:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-pagination__link[aria-current]{--color-hover:rgba(0,0,221,0.5);--color-active:rgba(41,41,255,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-pagination__link[aria-current],:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-pagination__link[aria-current],:root[data-fr-theme=dark] .fr-pagination__link[aria-current]{--color-hover:rgba(71,71,255,0.5);--color-active:rgba(0,0,243,0.5)}a.fr-pagination__link:not([aria-current]):not([href]),button.fr-pagination__link:not([aria-current])[disabled]{color:var(--g600-g400)}.fr-radio-group:first-child{margin-top:-.75rem}.fr-radio-group:first-child input[type=radio]+label{margin-top:0}.fr-radio-group:last-child{margin-bottom:-.75rem}.fr-radio-group:last-child input[type=radio]+label[class*=" fr-ifi-"],.fr-radio-group:last-child input[type=radio]+label[class^=fr-ifi-],.fr-radio-group:last-child input[type=radio]+label[style*="background-image:"]{margin-bottom:1.5rem}.fr-radio-group input[type=radio]{position:absolute;opacity:0}.fr-radio-group input[type=radio]+label{position:relative;padding:.75rem 0;font-size:1rem;line-height:1.5rem;-webkit-tap-highlight-color:transparent;display:flex;flex-direction:row;align-items:center;justify-content:flex-start;flex-wrap:wrap;margin-left:2rem}.fr-radio-group input[type=radio]+label .fr-hint-text{margin:0;width:100%}.fr-radio-group input[type=radio]+label:before{content:"";display:inline-block;position:absolute;top:0;left:-2rem;width:1.5rem;height:1.5rem;margin-top:.75rem;margin-right:.5rem;border:1px solid;border-radius:50%;transform-origin:center}.fr-radio-group input[type=radio]:checked+label[class*=" fr-ifi-"],.fr-radio-group input[type=radio]:checked+label[class^=fr-ifi-],.fr-radio-group input[type=radio]:checked+label[style*="background-image:"]{width:100%}.fr-radio-group--sm input[type=radio]+label:before{width:1rem;height:1rem;margin-top:1rem}.fr-radio-rich input[type=radio]+.fr-label{margin-left:0;min-height:5.5rem;width:100%;padding:.5rem 6.5rem .5rem 3.5rem;background-position:calc(100% - .25rem) 50%;background-size:5rem 5rem;background-repeat:no-repeat;display:flex;flex-direction:column;align-items:flex-start;justify-content:center}.fr-radio-rich input[type=radio]+.fr-label:before{width:1rem;height:1rem;position:absolute;top:50%;left:1.75rem;margin-top:-.5rem}.fr-radio-rich input[type=radio]+.fr-label:after{content:"";position:absolute;top:50%;right:0;margin:-2.5rem .25rem .25rem;padding-left:.25rem;display:flex;align-items:center;justify-content:center;width:5.25rem;height:5rem;vertical-align:middle}.fr-radio-rich input[type=radio]+.fr-label .fr-hint-text{margin-left:0}.fr-radio-rich__icon{width:5rem;height:5rem;position:absolute;right:.25rem;object-fit:cover;border-left:1px solid var(--g300)}.fr-fieldset .fr-radio-rich:first-child input[type=radio]+label{margin-top:.75rem}.fr-fieldset .fr-radio-rich input[type=radio]+label{margin-top:.5rem;margin-bottom:1rem}.fr-fieldset .fr-radio-rich:last-child input[type=radio]+label{margin-bottom:1.75rem}.fr-fieldset--inline .fr-radio-rich:not(:last-child) input[type=radio]+label{margin-right:.75rem;margin-bottom:.5rem}.fr-fieldset--inline .fr-radio-rich:last-child{margin-bottom:0}.fr-fieldset--inline .fr-radio-rich:last-child input[type=radio]+label{margin-bottom:.75rem}.fr-fieldset--inline .fr-hint-text+.fr-fieldset__content .fr-radio-rich:first-child input[type=radio]+label{margin-top:1.5rem}.fr-radio-group input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 5px var(--w);background-color:var(--bf500);border:1px solid var(--bf500)}.fr-radio-group input[type=radio]:disabled+label,.fr-radio-group input[type=radio][disabled]+label{color:var(--g600-g400)}.fr-radio-group input[type=radio]:disabled+label:before,.fr-radio-group input[type=radio][disabled]+label:before{background-color:var(--g200);border:1px solid var(--g400)}.fr-radio-group--sm input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 3px var(--w)}.fr-radio-rich input[type=radio]+.fr-label:after{border-left:1px solid var(--g300)}.fr-radio-rich input[type=radio]:not(:checked)+label{box-shadow:inset 0 0 0 1px var(--g300);background-color:var(--w)}.fr-radio-rich input[type=radio]:checked+label{background-color:var(--w);box-shadow:inset 0 0 0 1px var(--bf500)}.fr-radio-rich input[type=radio]:checked+label:before{box-shadow:inset 0 0 0 3px var(--w)}.fr-radio-rich input[type=radio]:disabled+label,.fr-radio-rich input[type=radio][disabled]+label{color:var(--g600-g400);filter:grayscale(1)}.fr-radio-rich input[type=radio]:disabled+label:before,.fr-radio-rich input[type=radio][disabled]+label:before{background-color:var(--g200);border:1px solid var(--g400)}.fr-radio-rich input[type=radio]:disabled+label:after,.fr-radio-rich input[type=radio][disabled]+label:after{background-color:transparent}.fr-select{display:block;appearance:none;-moz-appearance:none;-webkit-appearance:none;width:100%;border:0;border-radius:.25rem .25rem 0 0;font-size:1rem;line-height:1.5rem;padding:.5rem 2.5rem .5rem 1rem;background-repeat:no-repeat;background-position:calc(100% - .5rem) 50%;background-size:1.5rem 1.5rem;color:var(--g800);background-color:var(--g200);box-shadow:inset 0 -2px 0 0 var(--g600);--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%231e1e1e' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] .fr-select{--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%23fff' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>")}[class*=fr-scheme-dark] .fr-select :root:not([data-fr-theme=dark]),[class*=fr-scheme-light] .fr-select :root:not([data-fr-theme=dark]){--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%231e1e1e' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>")}.fr-select--error{box-shadow:inset 0 -2px 0 0 var(--error)}.fr-select--valid{box-shadow:inset 0 -2px 0 0 var(--success)}select.fr-select:disabled,select.fr-select[disabled]{color:var(--g600-g400);box-shadow:inset 0 -2px 0 0 var(--g400);opacity:1;--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%236a6a6a' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>");background-image:var(--data-uri-svg)}:root[data-fr-theme=dark] select.fr-select:disabled,:root[data-fr-theme=dark] select.fr-select[disabled]{--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%23cecece' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>")}[class*=fr-scheme-dark] select.fr-select:disabled :root:not([data-fr-theme=dark]),[class*=fr-scheme-dark] select.fr-select[disabled] :root:not([data-fr-theme=dark]),[class*=fr-scheme-light] select.fr-select:disabled :root:not([data-fr-theme=dark]),[class*=fr-scheme-light] select.fr-select[disabled] :root:not([data-fr-theme=dark]){--data-uri-svg:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' viewBox='0 0 24 24' ><path fill='%236a6a6a' d='M12,13.1l5-4.9l1.4,1.4L12,15.9L5.6,9.5l1.4-1.4L12,13.1z'/></svg>")}.fr-select:-webkit-autofill,.fr-select:-webkit-autofill:focus,.fr-select:-webkit-autofill:hover{box-shadow:inset 0 0 0 100px var(--g200);-webkit-text-fill-color:var(--g800)}.fr-share__link{--link-underline:none;--link-blank-font:none;--link-blank-content:none;margin:0;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:.875rem;line-height:1.5rem;min-height:3rem;padding:.75rem 1rem;border-radius:1.5rem}.fr-share__link:not([class*=fr-share__link--icon-])[class*=" fr-fi-"],.fr-share__link:not([class*=fr-share__link--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding-left:.75rem;padding-right:.75rem}.fr-share__link:not([class*=fr-share__link--icon-])[class*=" fr-fi-"]:before,.fr-share__link:not([class*=fr-share__link--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__title{margin-bottom:.5rem}.fr-share__text{font-size:.75rem;line-height:1.25rem}.fr-share__group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-left:-.5rem;margin-right:-.5rem;margin-bottom:0}.fr-share__group>li{display:inline-flex;margin:.5rem}.fr-share__link--facebook{font-size:.875rem;line-height:1.5rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.75rem}.fr-share__link--facebook:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__link--twitter{font-size:.875rem;line-height:1.5rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.75rem}.fr-share__link--twitter:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__link--linkedin{font-size:.875rem;line-height:1.5rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.75rem}.fr-share__link--linkedin:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__link--mail{font-size:.875rem;line-height:1.5rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.75rem}.fr-share__link--mail:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__link--copy{font-size:.875rem;line-height:1.5rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.75rem}.fr-share__link--copy:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.75rem;font-size:1.5rem}.fr-share__link{color:var(--bf500);background-color:var(--t-plain);box-shadow:inset 0 0 0 1px var(--g300)}:root:not([data-fr-theme=dark]) .fr-share__link,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-share__link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-share__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-share__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-share__link,:root[data-fr-theme=dark] .fr-share__link{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}a.fr-share__link:not([href]),button.fr-share__link[disabled]{color:var(--g600-g400);box-shadow:inset 0 0 0 1px var(--g400)}.fr-skiplinks{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;position:absolute;padding:1rem 0;transform:translateY(-100%)}.fr-skiplinks:focus-within{position:relative;transform:translateY(0)}.fr-skiplinks__list{display:flex;flex-direction:column;margin:0 -1rem -1.5rem}.fr-skiplinks__list>li{margin:0 1rem 1.5rem}.fr-skiplinks__list>li:before{content:none}.fr-skiplinks__list>li .fr-link{font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem}.fr-skiplinks__list>li .fr-link:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:none}.fr-skiplinks__list:focus-within{position:relative;transform:translateY(0)}.fr-skiplinks{background-color:var(--g200)}.fr-tabs__tab{--link-underline:none;--link-blank-font:none;--link-blank-content:none;margin:0;display:inline-flex;flex-direction:row;align-items:center;font-size:1rem;line-height:1.5rem;min-height:2.5rem;padding:.5rem 1rem}.fr-tabs__tab:not([class*=fr-tabs__tab--icon-])[class*=" fr-fi-"],.fr-tabs__tab:not([class*=fr-tabs__tab--icon-])[class^=fr-fi-]{flex-direction:row;overflow:hidden;max-width:2.5rem;max-height:2.5rem;padding-left:.75rem;padding-right:.75rem}.fr-tabs__tab:not([class*=fr-tabs__tab--icon-])[class*=" fr-fi-"]:before,.fr-tabs__tab:not([class*=fr-tabs__tab--icon-])[class^=fr-fi-]:before{margin-left:0;margin-right:.75rem;font-size:1rem}.fr-tabs__tab--icon-left[class*=" fr-fi-"],.fr-tabs__tab--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-tabs__tab--icon-left[class*=" fr-fi-"]:before,.fr-tabs__tab--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-tabs{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;--link-underline:none;--link-blank-font:none;--link-blank-content:none;position:relative;overflow:hidden;margin-top:-4px;padding-top:4px;display:flex;flex-direction:row;align-items:flex-start;transition:height .3s;margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}.fr-tabs .fr-tabs{margin-left:0;margin-right:0}.fr-tabs:after{content:"";display:block;position:absolute;top:2.75rem;right:0;bottom:0;left:0;pointer-events:none}.fr-tabs__list{display:flex;align-items:flex-end;overflow-x:auto;width:100%;height:3rem;position:absolute;margin:-4px 0;padding:4px .5rem}.fr-tabs__list:after{content:"";display:block;flex:1 1 auto;height:1px;margin-left:-.5rem;margin-right:-.5rem}.fr-tabs__list>li{display:block;flex:0 0 auto;margin:0 .5rem}.fr-tabs__list>li:not(:first-child){margin-left:0}.fr-tabs__list>li:not(:first-child):before{content:"";display:block;position:sticky;top:100%;width:.5rem;height:1px;margin-left:-.5rem}.fr-tabs__list>li:last-child{padding-right:1rem}.fr-tabs__list>li:last-child:after{content:"";display:block;min-width:1rem;margin-left:100%;flex:1 1 auto;position:sticky;top:100%;width:auto;height:1px;margin-top:-1px}.fr-tabs__list>li:first-child:before{content:"";display:block;top:100%;width:100%;height:1px;position:sticky;margin-left:-100%}.fr-tabs__tab{position:relative;overflow:visible;font-weight:700;z-index:1}.fr-tabs__tab[aria-selected=true]{cursor:default;background:transparent}.fr-tabs__tab[aria-selected=true]:after{content:"";display:block;position:absolute;top:2px;right:1px;bottom:0;left:1px;width:auto;height:calc(100% - 1px);z-index:1}.fr-tabs__panel{--link-underline:0 1px 0 0 currentColor;--link-blank-font:normal normal normal 1rem/1 dsfr-icons;--link-blank-content:"\00a0";--ul-type:"●\00a0\00a0";--ol-type:decimal;--ul-start:1rem;--ol-start:1.5rem;--xl-block:0.5rem;--li-bottom:0.25rem;--xl-base:1em;--ol-content:counters(li-counter,".") ".\00a0\00a0";display:block;position:relative;left:0;width:100%;height:auto;padding:1rem;margin-top:2.5rem;margin-right:-100%;flex:0 0 100%;transition:visibility .3s,transform .3s}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-1rem + 2px)}.fr-tabs__panel:not(.fr-tabs__panel--selected){visibility:hidden}.fr-tabs:after{box-shadow:inset 1px -1px 0 0 var(--g300),inset -1px 0 0 var(--g300)}.fr-tabs__list:after,.fr-tabs__list>li:first-child:before,.fr-tabs__list>li:last-child:after,.fr-tabs__list>li:not(:first-child):before{box-shadow:0 1px 0 0 var(--g300)}.fr-tabs__tab:not([aria-selected=true]){background-color:var(--bf100-g750);color:var(--g700);box-shadow:0 1px 0 0 var(--g300)}:root:not([data-fr-theme=dark]) .fr-tabs__tab:not([aria-selected=true]),:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-tabs__tab:not([aria-selected=true]),:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-tabs__tab:not([aria-selected=true]){--color-hover:rgba(182,182,255,0.5);--color-active:rgba(119,119,255,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-tabs__tab:not([aria-selected=true]),:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-tabs__tab:not([aria-selected=true]),:root[data-fr-theme=dark] .fr-tabs__tab:not([aria-selected=true]){--color-hover:rgba(79,79,79,0.5);--color-active:hsla(0,0%,45.1%,0.5)}.fr-tabs__tab:not([aria-selected=true]):disabled,.fr-tabs__tab:not([aria-selected=true])[disabled]{color:var(--g600-g400);background-color:var(--g200)}.fr-tabs__tab[aria-selected=true]{box-shadow:inset 0 .125rem 0 0 var(--bf500);background-color:var(--t-plain);color:var(--bf500)}.fr-tabs__tab[aria-selected=true]:active:not(:disabled),.fr-tabs__tab[aria-selected=true]:active:not([disabled]),.fr-tabs__tab[aria-selected=true]:hover:not(:disabled),.fr-tabs__tab[aria-selected=true]:hover:not([disabled]){background-image:none}.fr-tabs__tab[aria-selected=true]:after{box-shadow:-1px 0 0 0 var(--g300),1px 0 0 0 var(--g300)}.fr-tag{--link-underline:none;--link-blank-font:none;--link-blank-content:none;margin:0;display:inline-flex;flex-direction:row;align-items:center;z-index:1;font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem 1rem;border-radius:1rem}.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.25rem;font-size:1rem}.fr-tag--icon-right[class*=" fr-fi-"],.fr-tag--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-tag--icon-right[class*=" fr-fi-"]:before,.fr-tag--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.25rem;font-size:1rem}.fr-tag--sm{font-size:.75rem;line-height:1.25rem;min-height:1.5rem;padding:.125rem .5rem;border-radius:.75rem}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]{flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-tag--sm.fr-tag--icon-left[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-left[class^=fr-fi-]:before{margin-left:-.25rem;margin-right:.25rem;font-size:1rem}.fr-tag--sm.fr-tag--icon-right[class*=" fr-fi-"],.fr-tag--sm.fr-tag--icon-right[class^=fr-fi-]{flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-tag--sm.fr-tag--icon-right[class*=" fr-fi-"]:before,.fr-tag--sm.fr-tag--icon-right[class^=fr-fi-]:before{margin-right:-.25rem;margin-left:.25rem;font-size:1rem}.fr-tags-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;display:flex;flex-wrap:wrap;margin-bottom:0}.fr-tags-group>li{display:inline-flex}.fr-tags-group .fr-tag{margin-right:.5rem;margin-bottom:.5rem}.fr-tags-group a.fr-tag,.fr-tags-group button.fr-tag{margin-right:.75rem;margin-bottom:.75rem}.fr-tags-group a.fr-tag--sm,.fr-tags-group button.fr-tag--sm{margin-right:1.5rem;margin-bottom:1.5rem}.fr-tag{color:var(--g-800);background-color:var(--g200)}a.fr-tag,button.fr-tag{color:var(--bf500-plain);background-color:var(--bf200-bf300)}:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] a.fr-tag,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] button.fr-tag,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] a.fr-tag,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] button.fr-tag,:root:not([data-fr-theme=dark]) a.fr-tag,:root:not([data-fr-theme=dark]) button.fr-tag{--color-hover:rgba(172,172,255,0.5);--color-active:rgba(107,107,255,0.5)}:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] a.fr-tag,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] button.fr-tag,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] a.fr-tag,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] button.fr-tag,:root[data-fr-theme=dark] a.fr-tag,button.fr-tag{--color-hover:rgba(71,71,255,0.5);--color-active:rgba(0,0,243,0.5)}a.fr-tag:not([href]),button.fr-tag[disabled]{color:var(--g600-g400);background-color:var(--g200)}.fr-toggle{display:flex;flex-wrap:wrap;position:relative;padding:1rem 0}.fr-toggle__input{flex-shrink:0;width:2.5rem;height:1.5rem;border:0;border-radius:2.5rem;margin:0;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fr-toggle__input:checked~.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-checked-label) "\a" attr(data-fr-unchecked-label)}.fr-toggle__input:checked~.fr-toggle__label:after{transform:translateX(1rem);text-indent:0;z-index:2000}.fr-toggle__input::-ms-check{display:none}.fr-toggle__label{display:inline-flex;flex-basis:calc(100% - 2.5rem);min-height:1.5rem;padding-left:2rem;font-size:1rem;line-height:1.5rem}.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]{padding-left:0}.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]:before{content:attr(data-fr-unchecked-label) "\a" attr(data-fr-checked-label)}.fr-toggle__label[data-fr-unchecked-label][data-fr-checked-label]+.fr-hint-text{margin-top:.5rem}.fr-toggle__label:before{flex-shrink:0;min-width:2.5rem;height:calc(1.25rem + 1px);margin-top:1.5rem;margin-left:-2.5rem;margin-right:1rem;font-size:.75rem;line-height:1.25rem;white-space:pre-wrap;overflow:hidden;outline:none!important}.fr-toggle__label:after{font:normal normal normal 1rem/1 dsfr-icons;content:"";display:flex;align-items:center;justify-content:center;position:absolute;top:1rem;left:0;width:1.5rem;height:1.5rem;border-radius:50%;text-indent:-9999px;z-index:1}.fr-toggle .fr-hint-text{display:block;margin-top:1rem;margin-bottom:0;font-size:.75rem;line-height:1.25rem;flex-basis:100%}.fr-toggle--label-left .fr-toggle__input{order:1;margin:0 0 0 auto}.fr-toggle--label-left .fr-toggle__input[data-fr-checked-label]~.fr-toggle__label{padding-left:0;padding-right:1rem}.fr-toggle--label-left .fr-toggle__label{justify-content:space-between;padding-left:0;width:calc(100% - 2.5rem)}.fr-toggle--label-left .fr-toggle__label:before{flex-shrink:0;order:1;margin-right:-2.5rem;margin-left:1rem;text-align:right}.fr-toggle--label-left .fr-toggle__label:after{left:auto;right:1rem}.fr-toggle--label-left .fr-hint-text{order:2}.fr-toggle__list{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-toggle__input{box-shadow:inset 0 0 0 1px var(--bf500)}input.fr-toggle__input:disabled,input.fr-toggle__input[disabled]{color:var(--g600-g400);background-color:var(--g200);box-shadow:inset 0 0 0 1px var(--g400)}input.fr-toggle__input:disabled+label,input.fr-toggle__input:disabled+label:before,input.fr-toggle__input[disabled]+label,input.fr-toggle__input[disabled]+label:before{color:var(--g600-g400)}input.fr-toggle__input:disabled+label:before:before,input.fr-toggle__input[disabled]+label:before:before{background-color:var(--g200)}input.fr-toggle__input:disabled+label:after,input.fr-toggle__input[disabled]+label:after{color:var(--g600-g400);background-color:var(--g200);border:1px solid var(--g400)}.fr-toggle__input:checked{background-color:var(--bf500)}.fr-toggle__label:before{color:var(--bf500)}.fr-toggle__label:after{color:var(--bf500);border:1px solid var(--bf500);background-color:var(--w)}.fr-toggle .fr-hint-text{color:var(--g600)}.fr-toggle--border-bottom{box-shadow:inset 0 -1px 0 0 var(--g300)}.fr-callout{position:relative;padding:1.5rem}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class^=fr-fi-]:before{display:block;margin:-.5rem 0 .5rem}.fr-callout__title{font-weight:700;font-size:1.375rem;line-height:1.75rem;margin:0 0 .5rem}.fr-callout__text{font-size:1.125rem;line-height:1.75rem;margin:0}.fr-callout .fr-btn{margin-top:1rem}.fr-callout{background-color:var(--g200);--scheme-border:var(--bf500);box-shadow:inset .25rem 0 0 0 var(--scheme-border)}.fr-callout__title{color:var(--g800)}.fr-input{display:block;width:100%;border:0;border-radius:.25rem .25rem 0 0;font-size:1rem;line-height:1.5rem;padding:.5rem 1rem;-webkit-appearance:none;-moz-appearance:none;appearance:none}.fr-input::-webkit-input-placeholder{opacity:1;font-style:italic}.fr-input:-moz-placeholder,.fr-input::-moz-placeholder{opacity:1;font-style:italic}.fr-input:-ms-input-placeholder{opacity:1;font-style:italic}.fr-input:not(textarea){max-height:2.5rem}.fr-input[type=date]{min-height:2.5rem}.fr-input[type=date]::-webkit-calendar-picker-indicator{display:none}.fr-input-wrap{position:relative;display:block}.fr-input-wrap[class*=" fr-fi-"]:before,.fr-input-wrap[class^=fr-fi-]:before{font-size:1rem!important;position:absolute;top:.75rem;right:.75rem;bottom:.75rem;margin:auto}.fr-input-wrap--addon{display:flex;flex-direction:row;width:100%}.fr-input-wrap.fr-fi-calendar-line>.fr-input[type=date]::-webkit-calendar-picker-indicator{display:block;margin-right:-2rem;z-index:1;opacity:0}.fr-input-wrap .fr-input{padding-right:2.5rem}.fr-input-wrap>:first-child:not(:last-child).fr-input{padding-right:1rem}.fr-input-wrap+.fr-hint-text{margin-top:.5rem}textarea.fr-input{box-shadow:0 2px 0 0 var(--g600);min-height:3.75rem}.fr-input{color:var(--g800);background-color:var(--g200);box-shadow:inset 0 -2px 0 0 var(--g600)}.fr-input::-webkit-input-placeholder{color:var(--g600-g400)}.fr-input:-moz-placeholder,.fr-input::-moz-placeholder{color:var(--g600-g400)}.fr-input:-ms-input-placeholder{color:var(--g600-g400)}input.fr-input:disabled,input.fr-input[disabled]{color:var(--g600-g400);box-shadow:inset 0 -2px 0 0 var(--g400);opacity:1}.fr-input--valid{box-shadow:inset 0 -2px 0 0 var(--success)}.fr-input--error{box-shadow:inset 0 -2px 0 0 var(--error)}.fr-input:-webkit-autofill,.fr-input:-webkit-autofill:focus,.fr-input:-webkit-autofill:hover{box-shadow:inset 0 0 0 100px var(--g200);-webkit-text-fill-color:var(--g800)}.fr-input-wrap>:not(:last-child).fr-input:not(.fr-input--valid):not(.fr-input--error){box-shadow:inset 0 -2px 0 0 var(--bf500)}.fr-modal{border:none;color:inherit;visibility:hidden;opacity:0;padding:0;margin:0;display:flex;flex-direction:column;align-items:stretch;justify-content:space-between;position:fixed;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:5500;transition:opacity .3s,visibility .3s}.fr-modal:focus{outline:none}.fr-modal:before{content:""}.fr-modal:after,.fr-modal:before{display:block;width:0;height:2rem;flex:1 0 2rem}.fr-modal--top:before,.fr-modal:after{content:none}.fr-modal--top:after{content:""}.fr-modal--opened{visibility:inherit;opacity:1;width:100%;height:100%;transition:opacity .3s,visibility .3s}.fr-modal__body{overflow-y:auto;flex:1 1 auto;max-height:calc(100vh - 2rem);box-shadow:0 8px 8px 0 rgba(0,0,0,.1),0 8px 16px -16px rgba(0,0,0,.32)}.fr-modal__header{flex:auto 0 0;display:flex;align-items:center;padding:1rem 1rem .5rem}.fr-modal__content{padding-left:1rem;padding-right:1rem;margin-bottom:3.5rem}.fr-modal__footer{flex:auto 0 0;display:flex;padding:1rem;margin-top:-2.5rem;position:sticky;bottom:0;transition:box-shadow .3s}.fr-modal__footer .fr-btns-group{margin-bottom:-1rem;width:calc(100% + 1rem)}.fr-modal__title{font-size:1.375rem;line-height:1.75rem;font-weight:700;margin-top:0;margin-bottom:1rem}.fr-modal__title[class*=" fr-fi-"],.fr-modal__title[class^=fr-fi-]{margin-right:.5rem}.fr-modal{background-color:var(--overlay)}.fr-modal__body{background-color:var(--w)}.fr-modal__body.fr-scroll-shadow .fr-modal__footer{box-shadow:0 -8px 8px 0 rgba(0,0,0,.1),0 -8px 16px -16px rgba(0,0,0,.32);background-color:var(--w-g750)}.fr-modal__title{color:var(--g800)}.fr-modal__footer{background-color:var(--w)}.fr-nav{--link-underline:none;--link-blank-font:none;--link-blank-content:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;z-index:3500}.fr-nav :focus,.fr-nav :focus-visible{z-index:4000}.fr-nav__list{display:flex;flex-direction:column;margin:0;padding:0}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{font-weight:700}.fr-nav__item{display:flex;flex-direction:column;align-items:stretch;flex:0 1 auto}.fr-nav__btn,.fr-nav__link{width:100%;padding:.75rem 0;font-size:1rem;line-height:1.5rem;text-align:left}.fr-nav__btn[aria-current],.fr-nav__link[aria-current]{position:relative}.fr-nav__btn[aria-current]:before,.fr-nav__link[aria-current]:before{content:"";display:block;position:absolute;top:50%;left:-1rem;width:2px;height:1.5rem;margin-top:-.75rem}.fr-nav__link{display:block}.fr-nav__btn{display:flex;align-items:center;justify-content:space-between;flex-direction:row}.fr-nav__btn:after{font:normal normal normal 1rem/1 dsfr-icons;content:"";margin-left:.5rem;margin-right:0;transition:transform .3s}.fr-nav__btn[aria-expanded=true]:after{transform:rotate(-180deg)}.fr-menu{z-index:2500;margin:0 -1rem;padding:0 1rem;width:auto}.fr-menu :focus,.fr-menu :focus-visible{z-index:3000}.fr-menu__list{margin:0;padding:.5rem 0 1.5rem}.fr-menu__list>:first-child,.fr-menu__list>:first-child>.fr-nav__link,.fr-menu__list>:hover,.fr-menu__list>:hover+*,.fr-menu__list>:hover+*>.fr-nav__link,.fr-menu__list>:hover>.fr-nav__link{box-shadow:none}.fr-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{z-index:2500;margin:0 -1rem 1px;padding:0 1rem}.fr-mega-menu :focus,.fr-mega-menu :focus-visible{z-index:3000}.fr-mega-menu:focus{outline:none}.fr-mega-menu .fr-link--close{display:none}.fr-mega-menu .fr-nav__link{padding-left:1rem;padding-right:1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{padding-left:1rem;padding-right:1rem}.fr-mega-menu__category{margin-bottom:0}.fr-mega-menu__list{padding-bottom:.75rem}.fr-nav__btn,.fr-nav__link{color:var(--g800);background-color:var(--t-plain)}.fr-nav__btn,:root:not([data-fr-theme=dark]) .fr-nav__btn,:root:not([data-fr-theme=dark]) .fr-nav__link,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-nav__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-nav__link,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-nav__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-nav__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-nav__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-nav__link,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-nav__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-nav__link,:root[data-fr-theme=dark] .fr-nav__link{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-nav__btn[aria-current],.fr-nav__link[aria-current]{color:var(--bf500)}.fr-nav__btn[aria-current]:before,.fr-nav__link[aria-current]:before{background-color:var(--bf500)}.fr-nav__item{box-shadow:inset 0 -1px 0 0 var(--g300)}.fr-mega-menu{background-color:var(--w-g750)}.fr-mega-menu__list{box-shadow:0 1px 0 0 var(--g300)}.fr-consent-placeholder{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:5rem 2rem;text-align:center}.fr-consent-banner{position:fixed;bottom:0;left:0;width:100%;max-height:calc(100% - 8rem);padding:1rem;z-index:4500;overflow:auto}.fr-consent-banner__content p{margin-bottom:1rem}.fr-consent-banner__title{font-weight:700;font-size:1.125rem;line-height:1.5rem;margin-bottom:1rem}.fr-consent-banner__buttons{margin-top:1.5rem;margin-bottom:-1rem}.fr-consent-service{position:relative}.fr-consent-service>.fr-fieldset{padding:0 0 1.25rem;display:flex;flex-direction:column;width:100%;position:static}.fr-consent-service:last-child>.fr-fieldset{padding:2rem 0 1rem}.fr-consent-service:last-child>.fr-fieldset .fr-consent-service>.fr-fieldset:last-child{margin-bottom:0}.fr-consent-service__title{font-weight:700;font-size:1.125rem;line-height:1.5rem;padding:2rem 0 .75rem;margin:0}.fr-consent-service__desc{font-size:.875rem;line-height:1.5rem;margin-bottom:.75rem;margin-top:.75rem}.fr-consent-service__collapse{margin-top:-.25rem;margin-bottom:.75rem;width:100%}.fr-consent-service__collapse .fr-consent-service__collapse-btn{font-size:.875rem;line-height:1.5rem;min-height:0;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none;background:transparent;padding:0;color:inherit}.fr-consent-service__collapse .fr-consent-service__collapse-btn:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-right:-.25rem;margin-left:.25rem;font-size:1rem}.fr-consent-service__collapse .fr-consent-service__collapse-btn[aria-expanded=true]:before{font:normal normal normal 1rem/1 dsfr-icons;content:""}.fr-consent-service__collapse-btn{display:inline-flex;flex-direction:row;align-items:center;position:relative}.fr-consent-service__collapse-btn:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;width:calc(100% - 1rem);height:calc(100% - .25rem);box-shadow:var(--link-underline)}.fr-consent-service__radios{display:flex;flex-direction:row;flex-wrap:wrap}.fr-consent-service .fr-radio-group{position:relative}.fr-consent-service .fr-radio-group:not(:last-child) input[type=radio]+label{margin-right:3rem}.fr-consent-service .fr-radio-group:not(:first-child):before{content:"";display:block;width:1px;height:1.5rem;position:absolute;left:calc(-1.5rem - 1px);top:.75rem}.fr-consent-services{margin-top:.5rem;margin-bottom:-.5rem;width:100%}.fr-consent-services .fr-consent-service,.fr-consent-services .fr-consent-service:last-child{box-shadow:none}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset,.fr-consent-services .fr-consent-service>.fr-fieldset{padding:0}.fr-consent-services .fr-consent-service:last-child>.fr-fieldset{margin-bottom:1.25rem}.fr-consent-services .fr-consent-service__title{padding-top:.75rem}.fr-consent-services .fr-consent-service__radios{top:0}.fr-consent-services .fr-consent-service__desc{margin-bottom:.75rem;margin-top:.25rem}.fr-consent-manager__header{padding-top:0}.fr-consent-manager__header .fr-consent-service__title{width:100%;padding:0 0 .75rem;font-size:1rem;line-height:1.5rem;font-weight:400}.fr-consent-manager__header .fr-consent-service__radios{width:100%;justify-content:flex-start;top:0;position:static}.fr-consent-manager__buttons{margin-bottom:-3rem;margin-top:1rem}.fr-consent-manager .fr-consent-service:last-of-type{box-shadow:none}.fr-consent-banner,.fr-consent-placeholder{background-color:var(--g200)}.fr-consent-banner{box-shadow:inset 0 0 0 1px var(--g400)}.fr-consent-manager__header,.fr-consent-service{box-shadow:inset 0 -1px 0 0 var(--g400);color:var(--g700)}.fr-consent-manager__header .fr-radio-group+.fr-radio-group:before,.fr-consent-service .fr-radio-group+.fr-radio-group:before{background-color:var(--g300)}.fr-follow{padding:1.5rem 0}.fr-follow__title{font-weight:700;font-size:1.25rem;line-height:1.75rem}.fr-follow__title+.fr-follow__desc{margin-top:-.5rem}.fr-follow__desc{margin-bottom:1rem}.fr-follow__newsletter .fr-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-follow__newsletter .fr-input-wrap{display:flex;flex-direction:column;max-width:37.5rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-input{margin-bottom:1rem;margin-top:0}.fr-follow__newsletter .fr-input-wrap .fr-btn{justify-content:center}.fr-follow__newsletter .fr-hint-text{margin-top:1.5rem;margin-bottom:0}.fr-follow__newsletter .fr-error-text,.fr-follow__newsletter .fr-error-text+.fr-hint-text,.fr-follow__newsletter .fr-valid-text,.fr-follow__newsletter .fr-valid-text+.fr-hint-text{margin-top:1rem}.fr-follow__social .fr-link{font-size:1rem;line-height:1.5rem;min-height:2rem;border-radius:1rem;flex-direction:row;overflow:hidden;max-width:2rem;max-height:2rem;padding:.25rem;margin-left:-.25rem;margin-right:-.25rem}.fr-follow__social .fr-link:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:0;margin-right:.25rem;font-size:1.5rem}.fr-follow__social .fr-follow__title{margin-bottom:.75rem}.fr-follow__social .fr-links-group{--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none}.fr-follow__social .fr-links-group--lg .fr-link{font-size:1.25rem;line-height:2rem;min-height:3rem;border-radius:1.5rem;flex-direction:row;overflow:hidden;max-width:3rem;max-height:3rem;padding:.5rem}.fr-follow__social .fr-links-group--lg .fr-link:before{font:normal normal normal 2rem/1 dsfr-icons;margin-left:0;margin-right:.5rem;font-size:2rem}.fr-follow__social .fr-links-group>li{margin-right:1rem;display:inline-flex}.fr-follow__social .fr-links-group>li:last-child{margin-right:0}.fr-follow .fr-grid-row>:not(:first-child){margin-top:1.5rem;padding-top:1.5rem}.fr-follow .fr-link--facebook:before{content:""}.fr-follow .fr-link--twitter:before{content:""}.fr-follow .fr-link--instagram:before{content:""}.fr-follow .fr-link--linkedin:before{content:""}.fr-follow .fr-link--youtube:before{content:""}.fr-follow{background-color:var(--bf100-g750)}.fr-follow .fr-input{background-color:var(--w)}.fr-follow__newsletter-legal{color:var(--g600)}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:0 -1px 0 0 var(--bf300-plain)}.fr-search-bar{display:flex;flex-direction:row}.fr-search-bar .fr-label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-search-bar .fr-input{margin:0;border-radius:.25rem 0 0;max-height:none}.fr-search-bar .fr-input::placeholder{font-style:italic}.fr-search-bar .fr-btn{font-size:1rem;line-height:1.5rem;min-height:2.5rem;flex-direction:row;overflow:hidden;max-width:2.5rem;max-height:2.5rem;padding:.5rem;flex:1 0 auto;border-radius:0 .25rem 0 0}.fr-search-bar .fr-btn:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:"";margin-left:0;margin-right:.5rem;font-size:1.5rem}.fr-search-bar .fr-input{box-shadow:inset 0 -2px 0 0 var(--bf500)}.fr-header{--link-underline:none;--link-blank-font:none;--link-blank-content:none;--ul-type:none;--ol-type:none;--ul-start:0;--ol-start:0;--xl-block:0;--li-bottom:0;--ol-content:none;width:100%;box-shadow:0 8px 8px 0 rgba(0,0,0,.1),0 8px 16px -16px rgba(0,0,0,.32);position:relative}.fr-header__body-row{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;margin:0 -1rem}.fr-header__brand{flex-wrap:wrap}.fr-header__brand,.fr-header__brand-top{display:flex;flex-direction:row;align-items:center;justify-content:flex-start;width:100%}.fr-header__logo{order:1;flex:0 0 auto;padding:.75rem}.fr-header__logo .fr-logo{font-size:.7875rem;margin:-1em}.fr-header__logo .fr-logo:before{width:2.0625rem;height:.75rem;margin-bottom:.25rem;background-size:2.0625rem .84375rem,2.0625rem .75rem,0;background-position:0 -.04688rem,0 0,0 0}:root[data-fr-mourning] .fr-header__logo .fr-logo:before{background-size:2.0625rem .84375rem,0,2.0625rem .75rem}.fr-header__logo .fr-logo:after{min-width:1.96875rem;background-size:3.9375rem 2.8125rem;background-position:0 calc(100% + 1.40625rem);padding-top:1.65625rem}:root[data-fr-theme=dark] .fr-header__logo .fr-logo:after{background-position:-1.96875rem 100%}.fr-header__operator{padding:.75rem;order:2;flex:0 1 auto}.fr-header__operator img{display:block}.fr-header__service{padding-top:.75rem;padding-bottom:.75rem;margin-left:.75rem;margin-right:.75rem;width:100%}.fr-header__service-title{font-weight:700;font-size:1.125rem;line-height:1.5rem}.fr-header__service-tagline,.fr-header__service-title{margin-bottom:0}.fr-header .fr-modal{overflow:auto;justify-content:normal;padding-top:1rem;padding-bottom:4.5rem}.fr-header .fr-modal:not([role=dialog]){transition:none}.fr-header .fr-modal:after,.fr-header .fr-modal:before{content:none}.fr-header .fr-modal>*>.fr-link--close{margin-bottom:1.5rem}.fr-header__navbar{display:flex;flex-direction:row;align-items:flex-end;padding:.25rem;margin-left:auto;order:3;flex:0 0 auto;align-self:flex-start;z-index:2500}.fr-header__navbar .fr-btn{font-size:1rem;line-height:1.5rem;min-height:2.5rem;flex-direction:row;overflow:hidden;max-width:2.5rem;max-height:2.5rem;padding:.5rem;flex:0 0 auto;white-space:nowrap}.fr-header__navbar .fr-btn:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:0;margin-right:.5rem;font-size:1.5rem}.fr-header__navbar .fr-btn--menu:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-header__navbar .fr-btn--search:before{font:normal normal normal 1.5rem/1 dsfr-icons;content:""}.fr-header .fr-links-group .fr-link{font-size:.875rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-header .fr-links-group .fr-link:before{font:normal normal normal 1rem/1 dsfr-icons;margin-left:-.25rem;margin-right:.5rem;font-size:1rem}.fr-header__tools-links{display:none}.fr-header__tools-links .fr-links-group{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;flex-wrap:wrap;margin-left:-1rem;margin-right:-1rem}.fr-header__tools-links .fr-links-group>.fr-link:not(last-child):after,.fr-header__tools-links .fr-links-group>:not(:last-child)>.fr-link:after{content:"";display:block;position:relative;right:-1rem;width:1px;height:1rem}.fr-header__tools-links .fr-link{overflow:initial;margin-left:.25rem;margin-right:.25rem}.fr-header .fr-header__menu-links .fr-links-group{display:flex;flex-direction:column}.fr-header .fr-header__menu-links .fr-links-group .fr-link{border-radius:0;width:100%;min-height:3rem}.fr-header{background-color:var(--w-g750)}.fr-header__service{box-shadow:inset 0 1px 0 0 var(--g300)}.fr-header__menu-links .fr-link{box-shadow:inset 0 -1px 0 0 var(--g300)}.fr-header__tools-links .fr-link:after{background-color:var(--g400)}.fr-header__navbar .fr-service__title{color:var(--g800)}.fr-header__navbar .fr-btn{background-color:var(--t-plain);color:var(--bf500)}:root:not([data-fr-theme=dark]) .fr-header__navbar .fr-btn,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-header__navbar .fr-btn,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-header__navbar .fr-btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-header__navbar .fr-btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-header__navbar .fr-btn,:root[data-fr-theme=dark] .fr-header__navbar .fr-btn{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-header__navbar .fr-btn--menu{color:var(--g700)}.fr-header .fr-modal{background-color:var(--w-g750)}@media (min-width:0){.fr-hidden-xs{display:none!important}.fr-displayed-xs{display:inherit!important}.fr-sr-only-xs{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}}@media (min-width:36em){.fr-hidden-sm{display:none!important}.fr-displayed-sm{display:inherit!important}.fr-sr-only-sm{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-container-sm{padding-left:1rem;padding-right:1rem}.fr-container-sm--fluid{padding-left:0;padding-right:0;max-width:none}.fr-grid-row-sm--gutters{margin:-.5rem}.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-sm--no-gutters{margin:0}.fr-grid-row-sm--no-gutters>.fr-col,.fr-grid-row-sm--no-gutters>[class*=" fr-col-"],.fr-grid-row-sm--no-gutters>[class^=fr-col-]{padding:0}.fr-col-sm{flex:1}.fr-col-sm-1{flex:0 0 8.33333%;width:8.33333%;max-width:8.33333%}.fr-col-offset-sm-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-sm-1--right{margin-right:8.33333%}.fr-col-sm-2{flex:0 0 16.66667%;width:16.66667%;max-width:16.66667%}.fr-col-offset-sm-2:not(.fr-col-offset-1--right){margin-left:16.66667%}.fr-col-offset-sm-2--right{margin-right:16.66667%}.fr-col-sm-3{flex:0 0 25%;width:25%;max-width:25%}.fr-col-offset-sm-3:not(.fr-col-offset-1--right){margin-left:25%}.fr-col-offset-sm-3--right{margin-right:25%}.fr-col-sm-4{flex:0 0 33.33333%;width:33.33333%;max-width:33.33333%}.fr-col-offset-sm-4:not(.fr-col-offset-1--right){margin-left:33.33333%}.fr-col-offset-sm-4--right{margin-right:33.33333%}.fr-col-sm-5{flex:0 0 41.66667%;width:41.66667%;max-width:41.66667%}.fr-col-offset-sm-5:not(.fr-col-offset-1--right){margin-left:41.66667%}.fr-col-offset-sm-5--right{margin-right:41.66667%}.fr-col-sm-6{flex:0 0 50%;width:50%;max-width:50%}.fr-col-offset-sm-6:not(.fr-col-offset-1--right){margin-left:50%}.fr-col-offset-sm-6--right{margin-right:50%}.fr-col-sm-7{flex:0 0 58.33333%;width:58.33333%;max-width:58.33333%}.fr-col-offset-sm-7:not(.fr-col-offset-1--right){margin-left:58.33333%}.fr-col-offset-sm-7--right{margin-right:58.33333%}.fr-col-sm-8{flex:0 0 66.66667%;width:66.66667%;max-width:66.66667%}.fr-col-offset-sm-8:not(.fr-col-offset-1--right){margin-left:66.66667%}.fr-col-offset-sm-8--right{margin-right:66.66667%}.fr-col-sm-9{flex:0 0 75%;width:75%;max-width:75%}.fr-col-offset-sm-9:not(.fr-col-offset-1--right){margin-left:75%}.fr-col-offset-sm-9--right{margin-right:75%}.fr-col-sm-10{flex:0 0 83.33333%;width:83.33333%;max-width:83.33333%}.fr-col-offset-sm-10:not(.fr-col-offset-1--right){margin-left:83.33333%}.fr-col-offset-sm-10--right{margin-right:83.33333%}.fr-col-sm-11{flex:0 0 91.66667%;width:91.66667%;max-width:91.66667%}.fr-col-offset-sm-11:not(.fr-col-offset-1--right){margin-left:91.66667%}.fr-col-offset-sm-11--right{margin-right:91.66667%}.fr-col-sm-12{flex:0 0 100%;width:100%;max-width:100%}.fr-col-offset-sm-12:not(.fr-col-offset-1--right){margin-left:100%}.fr-col-offset-sm-12--right{margin-right:100%}.fr-btns-group--inline-sm{width:calc(100% + 1rem)}.fr-btns-group--inline-sm .fr-btn{width:auto;margin-right:1rem;max-width:100%}.fr-btns-group--inline-sm>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-sm>li:before{content:none}.fr-btns-group--inline-sm.fr-btns-group--right{margin-left:-1rem}.fr-btns-group--inline-sm.fr-btns-group--right .fr-btn{margin-right:0;margin-left:1rem}.fr-btns-group--inline-sm.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--inline-sm.fr-btns-group--center,.fr-btns-group--inline-sm.fr-btns-group--left{margin-right:-1rem}.fr-btns-group--inline-sm.fr-btns-group--center .fr-btn,.fr-btns-group--inline-sm.fr-btns-group--left .fr-btn{margin-right:1rem;margin-left:0}.fr-footer__body--operator .fr-footer__brand .fr-footer__logo{max-width:200px}.fr-footer__content-list>li{margin-right:1.5rem}.fr-footer__partners-title{text-align:left}.fr-footer__partners-main{flex-basis:auto;padding-top:0;margin-top:.5rem}.fr-footer__partners-sub{margin:1rem -1rem 0}.fr-footer__partners-sub,.fr-footer__partners-sub>ul{flex-direction:row}.fr-footer__partners-sub .fr-footer__partners-link{margin:0 0 .5rem 1rem}.fr-follow__newsletter .fr-input-wrap{flex-direction:row}.fr-follow__newsletter .fr-input-wrap .fr-btn{border-radius:0 .25rem 0 0}.fr-follow__newsletter .fr-input-wrap .fr-input{margin-bottom:0;border-radius:.25rem 0 0 0}.fr-follow__newsletter .fr-hint-text{margin-top:.5rem}.fr-follow__newsletter .fr-error-text,.fr-follow__newsletter .fr-valid-text{margin-top:1rem}}@media (min-width:48em){h6{font-size:1.25rem}h5,h6{line-height:1.75rem}h5{font-size:1.375rem}h4{font-size:1.5rem;line-height:2rem}h3{font-size:1.75rem;line-height:2.25rem}h2{font-size:2rem;line-height:2.5rem}h1{font-size:2.5rem;line-height:3rem}.fr-hidden-md{display:none!important}.fr-displayed-md{display:inherit!important}.fr-sr-only-md{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-h6{font-size:1.25rem!important}.fr-h5,.fr-h6{line-height:1.75rem!important}.fr-h5{font-size:1.375rem!important}.fr-h4{font-size:1.5rem!important;line-height:2rem!important}.fr-h3{font-size:1.75rem!important;line-height:2.25rem!important}.fr-h2{font-size:2rem!important;line-height:2.5rem!important}.fr-h1{font-size:2.5rem!important;line-height:3rem!important}.fr-display-xs{font-size:3rem!important;line-height:3.5rem!important}.fr-display-sm{font-size:3.5rem!important;line-height:4rem!important}.fr-display-md{font-size:4rem!important;line-height:4.5rem!important}.fr-display-lg{font-size:4.5rem!important;line-height:5rem!important}.fr-display-xl{font-size:5rem!important;line-height:5.5rem!important}.fr-text--lg{font-size:1.25rem!important;line-height:2rem!important}.fr-text--lead,.fr-text--xl{font-size:1.375rem!important;line-height:2.25rem!important}.fr-container-md{padding-left:1rem;padding-right:1rem}.fr-container-md--fluid{padding-left:0;padding-right:0;max-width:none}.fr-grid-row-md--gutters{margin:-.5rem}.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-]{padding:.5rem}.fr-grid-row-md--no-gutters{margin:0}.fr-grid-row-md--no-gutters>.fr-col,.fr-grid-row-md--no-gutters>[class*=" fr-col-"],.fr-grid-row-md--no-gutters>[class^=fr-col-]{padding:0}.fr-col-md{flex:1}.fr-col-md-1{flex:0 0 8.33333%;width:8.33333%;max-width:8.33333%}.fr-col-offset-md-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-md-1--right{margin-right:8.33333%}.fr-col-md-2{flex:0 0 16.66667%;width:16.66667%;max-width:16.66667%}.fr-col-offset-md-2:not(.fr-col-offset-1--right){margin-left:16.66667%}.fr-col-offset-md-2--right{margin-right:16.66667%}.fr-col-md-3{flex:0 0 25%;width:25%;max-width:25%}.fr-col-offset-md-3:not(.fr-col-offset-1--right){margin-left:25%}.fr-col-offset-md-3--right{margin-right:25%}.fr-col-md-4{flex:0 0 33.33333%;width:33.33333%;max-width:33.33333%}.fr-col-offset-md-4:not(.fr-col-offset-1--right){margin-left:33.33333%}.fr-col-offset-md-4--right{margin-right:33.33333%}.fr-col-md-5{flex:0 0 41.66667%;width:41.66667%;max-width:41.66667%}.fr-col-offset-md-5:not(.fr-col-offset-1--right){margin-left:41.66667%}.fr-col-offset-md-5--right{margin-right:41.66667%}.fr-col-md-6{flex:0 0 50%;width:50%;max-width:50%}.fr-col-offset-md-6:not(.fr-col-offset-1--right){margin-left:50%}.fr-col-offset-md-6--right{margin-right:50%}.fr-col-md-7{flex:0 0 58.33333%;width:58.33333%;max-width:58.33333%}.fr-col-offset-md-7:not(.fr-col-offset-1--right){margin-left:58.33333%}.fr-col-offset-md-7--right{margin-right:58.33333%}.fr-col-md-8{flex:0 0 66.66667%;width:66.66667%;max-width:66.66667%}.fr-col-offset-md-8:not(.fr-col-offset-1--right){margin-left:66.66667%}.fr-col-offset-md-8--right{margin-right:66.66667%}.fr-col-md-9{flex:0 0 75%;width:75%;max-width:75%}.fr-col-offset-md-9:not(.fr-col-offset-1--right){margin-left:75%}.fr-col-offset-md-9--right{margin-right:75%}.fr-col-md-10{flex:0 0 83.33333%;width:83.33333%;max-width:83.33333%}.fr-col-offset-md-10:not(.fr-col-offset-1--right){margin-left:83.33333%}.fr-col-offset-md-10--right{margin-right:83.33333%}.fr-col-md-11{flex:0 0 91.66667%;width:91.66667%;max-width:91.66667%}.fr-col-offset-md-11:not(.fr-col-offset-1--right){margin-left:91.66667%}.fr-col-offset-md-11--right{margin-right:91.66667%}.fr-col-md-12{flex:0 0 100%;width:100%;max-width:100%}.fr-col-offset-md-12:not(.fr-col-offset-1--right){margin-left:100%}.fr-col-offset-md-12--right{margin-right:100%}.fr-breadcrumb{margin-bottom:2.5rem}.fr-breadcrumb__button{display:none}.fr-breadcrumb .fr-collapse{margin-left:0;margin-right:0;padding-left:0;padding-right:0;transform:none;visibility:inherit;overflow:visible;max-height:none}.fr-breadcrumb .fr-collapse:before{content:none}.fr-breadcrumb__list{transform:none}.fr-card__title{font-size:1.25rem;line-height:1.75rem}.fr-card--horizontal{flex-direction:row-reverse}.fr-card--horizontal .fr-card__img{width:40.78%;flex:1 0 auto}.fr-highlight{padding-left:2rem;margin-left:2rem}.fr-quote{padding:0 0 0 2rem}.fr-quote:after{left:0}.fr-quote--column{margin-left:13rem;min-height:13rem}.fr-quote--column .fr-quote__author,.fr-quote--column .fr-quote__source{margin-left:0}.fr-quote--column figcaption{min-height:auto}.fr-quote blockquote p{font-size:1.375rem;line-height:2.25rem}.fr-quote__image{position:absolute;top:50%;left:-13rem;width:11.5rem;height:11.5rem;margin-top:-5.75rem}.fr-quote:after{box-shadow:inset 1px 0 0 0 var(--g300)}.fr-sidemenu{margin-left:0;margin-right:0;padding-right:2rem;box-shadow:none}.fr-sidemenu:before{content:none}.fr-sidemenu .fr-collapse{margin-left:-4px;margin-right:-4px;padding-left:4px;padding-right:4px}.fr-sidemenu__title{font-size:1.25rem;line-height:2rem;margin:0 0 1.5rem;padding:0;border:0}.fr-sidemenu__list .fr-sidemenu__list{margin:0 1rem}.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__btn,.fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__list .fr-sidemenu__link{padding:.75rem .5rem}.fr-sidemenu__list{margin:0}.fr-sidemenu__item{border:0}.fr-sidemenu__inner{padding:0 2rem 0 .25rem}.fr-sidemenu__inner>.fr-collapse{margin:0;overflow:initial;max-height:none}.fr-sidemenu__inner>.fr-collapse:before{display:none}.fr-sidemenu__inner>.fr-collapse:not(.fr-collapse--expanded){visibility:inherit}.fr-sidemenu--right{padding-left:2rem;padding-right:0}.fr-sidemenu--right .fr-sidemenu__inner{padding:0 1rem 0 2rem;border-right:0}.fr-sidemenu--sticky,.fr-sidemenu--sticky-full-height{position:sticky;top:0;height:100vh;overflow:auto}.fr-sidemenu--sticky-full-height .fr-sidemenu__inner{overflow:auto;height:100vh}.fr-sidemenu--full-border .fr-sidemenu__title{margin-top:.5rem}.fr-sidemenu__inner>.fr-sidemenu__btn{display:none}.fr-sidemenu__btn{border:0}.fr-sidemenu__btn,.fr-sidemenu__link{width:100%;padding:.75rem 2rem .75rem .5rem}.fr-sidemenu__link{margin:0}.fr-sidemenu{background-color:var(--t-plain)}.fr-sidemenu__inner{border-right:1px solid var(--g300)}.fr-sidemenu--right .fr-sidemenu__inner{border-left:1px solid var(--g300)}.fr-sidemenu--full-border .fr-sidemenu__inner{border:1px solid var(--g300)}.fr-sidemenu__btn{background-color:var(--t-plain)}:root:not([data-fr-theme=dark]) .fr-sidemenu__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-dark-"] .fr-sidemenu__btn,:root:not([data-fr-theme=dark]) [class*="--scheme-light-"] .fr-sidemenu__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-dark] .fr-sidemenu__btn,:root:not([data-fr-theme=dark]) [class*=fr-scheme-light] .fr-sidemenu__btn,:root[data-fr-theme=dark] .fr-sidemenu__btn{--color-hover:var(--block-color-hover);--color-active:var(--block-color-active)}.fr-summary{padding:2rem}.fr-table caption{font-size:1.5rem;line-height:2rem}.fr-table td,.fr-table th{padding:1rem}.fr-tile__body{padding:1.5rem}.fr-tile--horizontal .fr-tile__img{width:5rem;height:5rem;margin:2rem 0 2rem 2rem}.fr-tile--horizontal .fr-tile__body{margin:2rem}.fr-tile--vertical-md .fr-tile__img{width:5rem;height:5rem;margin:2rem auto 0}.fr-tile--vertical-md .fr-tile__body{align-items:center;padding:1.5rem;margin:0;text-align:center}.fr-tile--vertical-md{flex-direction:column-reverse;align-items:normal}.fr-tile--horizontal-md .fr-tile__img+.fr-tile__body{padding:0;margin:2rem;min-height:5rem}.fr-tile--horizontal-md .fr-tile__img{margin:2rem 0 2rem 2rem}.fr-tile--horizontal-md .fr-tile__body{align-items:flex-start;padding:0;margin:2rem;text-align:left}.fr-tile--horizontal-md{flex-direction:row-reverse;align-items:center}.fr-m-md-n4w,.fr-m-md-n8v{margin:-2rem!important}.fr-ml-md-n4w,.fr-ml-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-left:-2rem!important}.fr-mr-md-n4w,.fr-mr-md-n8v,.fr-mx-md-n4w,.fr-mx-md-n8v{margin-right:-2rem!important}.fr-mt-md-n4w,.fr-mt-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-top:-2rem!important}.fr-mb-md-n4w,.fr-mb-md-n8v,.fr-my-md-n4w,.fr-my-md-n8v{margin-bottom:-2rem!important}.fr-m-md-n7v{margin:-1.75rem!important}.fr-ml-md-n7v,.fr-mx-md-n7v{margin-left:-1.75rem!important}.fr-mr-md-n7v,.fr-mx-md-n7v{margin-right:-1.75rem!important}.fr-mt-md-n7v,.fr-my-md-n7v{margin-top:-1.75rem!important}.fr-mb-md-n7v,.fr-my-md-n7v{margin-bottom:-1.75rem!important}.fr-m-md-n3w,.fr-m-md-n6v{margin:-1.5rem!important}.fr-ml-md-n3w,.fr-ml-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-left:-1.5rem!important}.fr-mr-md-n3w,.fr-mr-md-n6v,.fr-mx-md-n3w,.fr-mx-md-n6v{margin-right:-1.5rem!important}.fr-mt-md-n3w,.fr-mt-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-top:-1.5rem!important}.fr-mb-md-n3w,.fr-mb-md-n6v,.fr-my-md-n3w,.fr-my-md-n6v{margin-bottom:-1.5rem!important}.fr-m-md-n5v{margin:-1.25rem!important}.fr-ml-md-n5v,.fr-mx-md-n5v{margin-left:-1.25rem!important}.fr-mr-md-n5v,.fr-mx-md-n5v{margin-right:-1.25rem!important}.fr-mt-md-n5v,.fr-my-md-n5v{margin-top:-1.25rem!important}.fr-mb-md-n5v,.fr-my-md-n5v{margin-bottom:-1.25rem!important}.fr-m-md-n2w,.fr-m-md-n4v{margin:-1rem!important}.fr-ml-md-n2w,.fr-ml-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-left:-1rem!important}.fr-mr-md-n2w,.fr-mr-md-n4v,.fr-mx-md-n2w,.fr-mx-md-n4v{margin-right:-1rem!important}.fr-mt-md-n2w,.fr-mt-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-top:-1rem!important}.fr-mb-md-n2w,.fr-mb-md-n4v,.fr-my-md-n2w,.fr-my-md-n4v{margin-bottom:-1rem!important}.fr-m-md-n3v{margin:-.75rem!important}.fr-ml-md-n3v,.fr-mx-md-n3v{margin-left:-.75rem!important}.fr-mr-md-n3v,.fr-mx-md-n3v{margin-right:-.75rem!important}.fr-mt-md-n3v,.fr-my-md-n3v{margin-top:-.75rem!important}.fr-mb-md-n3v,.fr-my-md-n3v{margin-bottom:-.75rem!important}.fr-m-md-n1w,.fr-m-md-n2v{margin:-.5rem!important}.fr-ml-md-n1w,.fr-ml-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-left:-.5rem!important}.fr-mr-md-n1w,.fr-mr-md-n2v,.fr-mx-md-n1w,.fr-mx-md-n2v{margin-right:-.5rem!important}.fr-mt-md-n1w,.fr-mt-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-top:-.5rem!important}.fr-mb-md-n1w,.fr-mb-md-n2v,.fr-my-md-n1w,.fr-my-md-n2v{margin-bottom:-.5rem!important}.fr-m-md-n1v{margin:-.25rem!important}.fr-ml-md-n1v,.fr-mx-md-n1v{margin-left:-.25rem!important}.fr-mr-md-n1v,.fr-mx-md-n1v{margin-right:-.25rem!important}.fr-mt-md-n1v,.fr-my-md-n1v{margin-top:-.25rem!important}.fr-mb-md-n1v,.fr-my-md-n1v{margin-bottom:-.25rem!important}.fr-m-md-0{margin:0!important}.fr-ml-md-0,.fr-mx-md-0{margin-left:0!important}.fr-mr-md-0,.fr-mx-md-0{margin-right:0!important}.fr-mt-md-0,.fr-my-md-0{margin-top:0!important}.fr-mb-md-0,.fr-my-md-0{margin-bottom:0!important}.fr-m-md-1v{margin:.25rem!important}.fr-ml-md-1v,.fr-mx-md-1v{margin-left:.25rem!important}.fr-mr-md-1v,.fr-mx-md-1v{margin-right:.25rem!important}.fr-mt-md-1v,.fr-my-md-1v{margin-top:.25rem!important}.fr-mb-md-1v,.fr-my-md-1v{margin-bottom:.25rem!important}.fr-m-md-1w,.fr-m-md-2v{margin:.5rem!important}.fr-ml-md-1w,.fr-ml-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-left:.5rem!important}.fr-mr-md-1w,.fr-mr-md-2v,.fr-mx-md-1w,.fr-mx-md-2v{margin-right:.5rem!important}.fr-mt-md-1w,.fr-mt-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-top:.5rem!important}.fr-mb-md-1w,.fr-mb-md-2v,.fr-my-md-1w,.fr-my-md-2v{margin-bottom:.5rem!important}.fr-m-md-3v{margin:.75rem!important}.fr-ml-md-3v,.fr-mx-md-3v{margin-left:.75rem!important}.fr-mr-md-3v,.fr-mx-md-3v{margin-right:.75rem!important}.fr-mt-md-3v,.fr-my-md-3v{margin-top:.75rem!important}.fr-mb-md-3v,.fr-my-md-3v{margin-bottom:.75rem!important}.fr-m-md-2w,.fr-m-md-4v{margin:1rem!important}.fr-ml-md-2w,.fr-ml-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-left:1rem!important}.fr-mr-md-2w,.fr-mr-md-4v,.fr-mx-md-2w,.fr-mx-md-4v{margin-right:1rem!important}.fr-mt-md-2w,.fr-mt-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-top:1rem!important}.fr-mb-md-2w,.fr-mb-md-4v,.fr-my-md-2w,.fr-my-md-4v{margin-bottom:1rem!important}.fr-m-md-5v{margin:1.25rem!important}.fr-ml-md-5v,.fr-mx-md-5v{margin-left:1.25rem!important}.fr-mr-md-5v,.fr-mx-md-5v{margin-right:1.25rem!important}.fr-mt-md-5v,.fr-my-md-5v{margin-top:1.25rem!important}.fr-mb-md-5v,.fr-my-md-5v{margin-bottom:1.25rem!important}.fr-m-md-3w,.fr-m-md-6v{margin:1.5rem!important}.fr-ml-md-3w,.fr-ml-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-left:1.5rem!important}.fr-mr-md-3w,.fr-mr-md-6v,.fr-mx-md-3w,.fr-mx-md-6v{margin-right:1.5rem!important}.fr-mt-md-3w,.fr-mt-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-top:1.5rem!important}.fr-mb-md-3w,.fr-mb-md-6v,.fr-my-md-3w,.fr-my-md-6v{margin-bottom:1.5rem!important}.fr-m-md-7v{margin:1.75rem!important}.fr-ml-md-7v,.fr-mx-md-7v{margin-left:1.75rem!important}.fr-mr-md-7v,.fr-mx-md-7v{margin-right:1.75rem!important}.fr-mt-md-7v,.fr-my-md-7v{margin-top:1.75rem!important}.fr-mb-md-7v,.fr-my-md-7v{margin-bottom:1.75rem!important}.fr-m-md-4w,.fr-m-md-8v{margin:2rem!important}.fr-ml-md-4w,.fr-ml-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-left:2rem!important}.fr-mr-md-4w,.fr-mr-md-8v,.fr-mx-md-4w,.fr-mx-md-8v{margin-right:2rem!important}.fr-mt-md-4w,.fr-mt-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-top:2rem!important}.fr-mb-md-4w,.fr-mb-md-8v,.fr-my-md-4w,.fr-my-md-8v{margin-bottom:2rem!important}.fr-m-md-9v{margin:2.25rem!important}.fr-ml-md-9v,.fr-mx-md-9v{margin-left:2.25rem!important}.fr-mr-md-9v,.fr-mx-md-9v{margin-right:2.25rem!important}.fr-mt-md-9v,.fr-my-md-9v{margin-top:2.25rem!important}.fr-mb-md-9v,.fr-my-md-9v{margin-bottom:2.25rem!important}.fr-m-md-5w,.fr-m-md-10v{margin:2.5rem!important}.fr-ml-md-5w,.fr-ml-md-10v,.fr-mx-md-5w,.fr-mx-md-10v{margin-left:2.5rem!important}.fr-mr-md-5w,.fr-mr-md-10v,.fr-mx-md-5w,.fr-mx-md-10v{margin-right:2.5rem!important}.fr-mt-md-5w,.fr-mt-md-10v,.fr-my-md-5w,.fr-my-md-10v{margin-top:2.5rem!important}.fr-mb-md-5w,.fr-mb-md-10v,.fr-my-md-5w,.fr-my-md-10v{margin-bottom:2.5rem!important}.fr-m-md-11v{margin:2.75rem!important}.fr-ml-md-11v,.fr-mx-md-11v{margin-left:2.75rem!important}.fr-mr-md-11v,.fr-mx-md-11v{margin-right:2.75rem!important}.fr-mt-md-11v,.fr-my-md-11v{margin-top:2.75rem!important}.fr-mb-md-11v,.fr-my-md-11v{margin-bottom:2.75rem!important}.fr-m-md-6w,.fr-m-md-12v{margin:3rem!important}.fr-ml-md-6w,.fr-ml-md-12v,.fr-mx-md-6w,.fr-mx-md-12v{margin-left:3rem!important}.fr-mr-md-6w,.fr-mr-md-12v,.fr-mx-md-6w,.fr-mx-md-12v{margin-right:3rem!important}.fr-mt-md-6w,.fr-mt-md-12v,.fr-my-md-6w,.fr-my-md-12v{margin-top:3rem!important}.fr-mb-md-6w,.fr-mb-md-12v,.fr-my-md-6w,.fr-my-md-12v{margin-bottom:3rem!important}.fr-m-md-13v{margin:3.25rem!important}.fr-ml-md-13v,.fr-mx-md-13v{margin-left:3.25rem!important}.fr-mr-md-13v,.fr-mx-md-13v{margin-right:3.25rem!important}.fr-mt-md-13v,.fr-my-md-13v{margin-top:3.25rem!important}.fr-mb-md-13v,.fr-my-md-13v{margin-bottom:3.25rem!important}.fr-m-md-7w,.fr-m-md-14v{margin:3.5rem!important}.fr-ml-md-7w,.fr-ml-md-14v,.fr-mx-md-7w,.fr-mx-md-14v{margin-left:3.5rem!important}.fr-mr-md-7w,.fr-mr-md-14v,.fr-mx-md-7w,.fr-mx-md-14v{margin-right:3.5rem!important}.fr-mt-md-7w,.fr-mt-md-14v,.fr-my-md-7w,.fr-my-md-14v{margin-top:3.5rem!important}.fr-mb-md-7w,.fr-mb-md-14v,.fr-my-md-7w,.fr-my-md-14v{margin-bottom:3.5rem!important}.fr-m-md-15v{margin:3.75rem!important}.fr-ml-md-15v,.fr-mx-md-15v{margin-left:3.75rem!important}.fr-mr-md-15v,.fr-mx-md-15v{margin-right:3.75rem!important}.fr-mt-md-15v,.fr-my-md-15v{margin-top:3.75rem!important}.fr-mb-md-15v,.fr-my-md-15v{margin-bottom:3.75rem!important}.fr-m-md-8w,.fr-m-md-16v{margin:4rem!important}.fr-ml-md-8w,.fr-ml-md-16v,.fr-mx-md-8w,.fr-mx-md-16v{margin-left:4rem!important}.fr-mr-md-8w,.fr-mr-md-16v,.fr-mx-md-8w,.fr-mx-md-16v{margin-right:4rem!important}.fr-mt-md-8w,.fr-mt-md-16v,.fr-my-md-8w,.fr-my-md-16v{margin-top:4rem!important}.fr-mb-md-8w,.fr-mb-md-16v,.fr-my-md-8w,.fr-my-md-16v{margin-bottom:4rem!important}.fr-m-md-17v{margin:4.25rem!important}.fr-ml-md-17v,.fr-mx-md-17v{margin-left:4.25rem!important}.fr-mr-md-17v,.fr-mx-md-17v{margin-right:4.25rem!important}.fr-mt-md-17v,.fr-my-md-17v{margin-top:4.25rem!important}.fr-mb-md-17v,.fr-my-md-17v{margin-bottom:4.25rem!important}.fr-m-md-9w,.fr-m-md-18v{margin:4.5rem!important}.fr-ml-md-9w,.fr-ml-md-18v,.fr-mx-md-9w,.fr-mx-md-18v{margin-left:4.5rem!important}.fr-mr-md-9w,.fr-mr-md-18v,.fr-mx-md-9w,.fr-mx-md-18v{margin-right:4.5rem!important}.fr-mt-md-9w,.fr-mt-md-18v,.fr-my-md-9w,.fr-my-md-18v{margin-top:4.5rem!important}.fr-mb-md-9w,.fr-mb-md-18v,.fr-my-md-9w,.fr-my-md-18v{margin-bottom:4.5rem!important}.fr-m-md-19v{margin:4.75rem!important}.fr-ml-md-19v,.fr-mx-md-19v{margin-left:4.75rem!important}.fr-mr-md-19v,.fr-mx-md-19v{margin-right:4.75rem!important}.fr-mt-md-19v,.fr-my-md-19v{margin-top:4.75rem!important}.fr-mb-md-19v,.fr-my-md-19v{margin-bottom:4.75rem!important}.fr-m-md-10w,.fr-m-md-20v{margin:5rem!important}.fr-ml-md-10w,.fr-ml-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-left:5rem!important}.fr-mr-md-10w,.fr-mr-md-20v,.fr-mx-md-10w,.fr-mx-md-20v{margin-right:5rem!important}.fr-mt-md-10w,.fr-mt-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-top:5rem!important}.fr-mb-md-10w,.fr-mb-md-20v,.fr-my-md-10w,.fr-my-md-20v{margin-bottom:5rem!important}.fr-m-md-21v{margin:5.25rem!important}.fr-ml-md-21v,.fr-mx-md-21v{margin-left:5.25rem!important}.fr-mr-md-21v,.fr-mx-md-21v{margin-right:5.25rem!important}.fr-mt-md-21v,.fr-my-md-21v{margin-top:5.25rem!important}.fr-mb-md-21v,.fr-my-md-21v{margin-bottom:5.25rem!important}.fr-m-md-11w,.fr-m-md-22v{margin:5.5rem!important}.fr-ml-md-11w,.fr-ml-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-left:5.5rem!important}.fr-mr-md-11w,.fr-mr-md-22v,.fr-mx-md-11w,.fr-mx-md-22v{margin-right:5.5rem!important}.fr-mt-md-11w,.fr-mt-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-top:5.5rem!important}.fr-mb-md-11w,.fr-mb-md-22v,.fr-my-md-11w,.fr-my-md-22v{margin-bottom:5.5rem!important}.fr-m-md-23v{margin:5.75rem!important}.fr-ml-md-23v,.fr-mx-md-23v{margin-left:5.75rem!important}.fr-mr-md-23v,.fr-mx-md-23v{margin-right:5.75rem!important}.fr-mt-md-23v,.fr-my-md-23v{margin-top:5.75rem!important}.fr-mb-md-23v,.fr-my-md-23v{margin-bottom:5.75rem!important}.fr-m-md-12w,.fr-m-md-24v{margin:6rem!important}.fr-ml-md-12w,.fr-ml-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-left:6rem!important}.fr-mr-md-12w,.fr-mr-md-24v,.fr-mx-md-12w,.fr-mx-md-24v{margin-right:6rem!important}.fr-mt-md-12w,.fr-mt-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-top:6rem!important}.fr-mb-md-12w,.fr-mb-md-24v,.fr-my-md-12w,.fr-my-md-24v{margin-bottom:6rem!important}.fr-m-md-25v{margin:6.25rem!important}.fr-ml-md-25v,.fr-mx-md-25v{margin-left:6.25rem!important}.fr-mr-md-25v,.fr-mx-md-25v{margin-right:6.25rem!important}.fr-mt-md-25v,.fr-my-md-25v{margin-top:6.25rem!important}.fr-mb-md-25v,.fr-my-md-25v{margin-bottom:6.25rem!important}.fr-m-md-13w,.fr-m-md-26v{margin:6.5rem!important}.fr-ml-md-13w,.fr-ml-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-left:6.5rem!important}.fr-mr-md-13w,.fr-mr-md-26v,.fr-mx-md-13w,.fr-mx-md-26v{margin-right:6.5rem!important}.fr-mt-md-13w,.fr-mt-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-top:6.5rem!important}.fr-mb-md-13w,.fr-mb-md-26v,.fr-my-md-13w,.fr-my-md-26v{margin-bottom:6.5rem!important}.fr-m-md-27v{margin:6.75rem!important}.fr-ml-md-27v,.fr-mx-md-27v{margin-left:6.75rem!important}.fr-mr-md-27v,.fr-mx-md-27v{margin-right:6.75rem!important}.fr-mt-md-27v,.fr-my-md-27v{margin-top:6.75rem!important}.fr-mb-md-27v,.fr-my-md-27v{margin-bottom:6.75rem!important}.fr-m-md-14w,.fr-m-md-28v{margin:7rem!important}.fr-ml-md-14w,.fr-ml-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-left:7rem!important}.fr-mr-md-14w,.fr-mr-md-28v,.fr-mx-md-14w,.fr-mx-md-28v{margin-right:7rem!important}.fr-mt-md-14w,.fr-mt-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-top:7rem!important}.fr-mb-md-14w,.fr-mb-md-28v,.fr-my-md-14w,.fr-my-md-28v{margin-bottom:7rem!important}.fr-m-md-29v{margin:7.25rem!important}.fr-ml-md-29v,.fr-mx-md-29v{margin-left:7.25rem!important}.fr-mr-md-29v,.fr-mx-md-29v{margin-right:7.25rem!important}.fr-mt-md-29v,.fr-my-md-29v{margin-top:7.25rem!important}.fr-mb-md-29v,.fr-my-md-29v{margin-bottom:7.25rem!important}.fr-m-md-15w,.fr-m-md-30v{margin:7.5rem!important}.fr-ml-md-15w,.fr-ml-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-left:7.5rem!important}.fr-mr-md-15w,.fr-mr-md-30v,.fr-mx-md-15w,.fr-mx-md-30v{margin-right:7.5rem!important}.fr-mt-md-15w,.fr-mt-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-top:7.5rem!important}.fr-mb-md-15w,.fr-mb-md-30v,.fr-my-md-15w,.fr-my-md-30v{margin-bottom:7.5rem!important}.fr-m-md-31v{margin:7.75rem!important}.fr-ml-md-31v,.fr-mx-md-31v{margin-left:7.75rem!important}.fr-mr-md-31v,.fr-mx-md-31v{margin-right:7.75rem!important}.fr-mt-md-31v,.fr-my-md-31v{margin-top:7.75rem!important}.fr-mb-md-31v,.fr-my-md-31v{margin-bottom:7.75rem!important}.fr-m-md-16w,.fr-m-md-32v{margin:8rem!important}.fr-ml-md-16w,.fr-ml-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-left:8rem!important}.fr-mr-md-16w,.fr-mr-md-32v,.fr-mx-md-16w,.fr-mx-md-32v{margin-right:8rem!important}.fr-mt-md-16w,.fr-mt-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-top:8rem!important}.fr-mb-md-16w,.fr-mb-md-32v,.fr-my-md-16w,.fr-my-md-32v{margin-bottom:8rem!important}.fr-m-md-auto{margin:auto}.fr-ml-md-auto,.fr-mx-md-auto{margin-left:auto}.fr-mr-md-auto,.fr-mx-md-auto{margin-right:auto}.fr-mt-md-auto,.fr-my-md-auto{margin-top:auto}.fr-mb-md-auto,.fr-my-md-auto{margin-bottom:auto}.fr-p-md-0{padding:0!important}.fr-pl-md-0,.fr-px-md-0{padding-left:0!important}.fr-pr-md-0,.fr-px-md-0{padding-right:0!important}.fr-pt-md-0,.fr-py-md-0{padding-top:0!important}.fr-pb-md-0,.fr-py-md-0{padding-bottom:0!important}.fr-p-md-1v{padding:.25rem!important}.fr-pl-md-1v,.fr-px-md-1v{padding-left:.25rem!important}.fr-pr-md-1v,.fr-px-md-1v{padding-right:.25rem!important}.fr-pt-md-1v,.fr-py-md-1v{padding-top:.25rem!important}.fr-pb-md-1v,.fr-py-md-1v{padding-bottom:.25rem!important}.fr-p-md-1w,.fr-p-md-2v{padding:.5rem!important}.fr-pl-md-1w,.fr-pl-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-left:.5rem!important}.fr-pr-md-1w,.fr-pr-md-2v,.fr-px-md-1w,.fr-px-md-2v{padding-right:.5rem!important}.fr-pt-md-1w,.fr-pt-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-top:.5rem!important}.fr-pb-md-1w,.fr-pb-md-2v,.fr-py-md-1w,.fr-py-md-2v{padding-bottom:.5rem!important}.fr-p-md-3v{padding:.75rem!important}.fr-pl-md-3v,.fr-px-md-3v{padding-left:.75rem!important}.fr-pr-md-3v,.fr-px-md-3v{padding-right:.75rem!important}.fr-pt-md-3v,.fr-py-md-3v{padding-top:.75rem!important}.fr-pb-md-3v,.fr-py-md-3v{padding-bottom:.75rem!important}.fr-p-md-2w,.fr-p-md-4v{padding:1rem!important}.fr-pl-md-2w,.fr-pl-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-left:1rem!important}.fr-pr-md-2w,.fr-pr-md-4v,.fr-px-md-2w,.fr-px-md-4v{padding-right:1rem!important}.fr-pt-md-2w,.fr-pt-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-top:1rem!important}.fr-pb-md-2w,.fr-pb-md-4v,.fr-py-md-2w,.fr-py-md-4v{padding-bottom:1rem!important}.fr-p-md-5v{padding:1.25rem!important}.fr-pl-md-5v,.fr-px-md-5v{padding-left:1.25rem!important}.fr-pr-md-5v,.fr-px-md-5v{padding-right:1.25rem!important}.fr-pt-md-5v,.fr-py-md-5v{padding-top:1.25rem!important}.fr-pb-md-5v,.fr-py-md-5v{padding-bottom:1.25rem!important}.fr-p-md-3w,.fr-p-md-6v{padding:1.5rem!important}.fr-pl-md-3w,.fr-pl-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-left:1.5rem!important}.fr-pr-md-3w,.fr-pr-md-6v,.fr-px-md-3w,.fr-px-md-6v{padding-right:1.5rem!important}.fr-pt-md-3w,.fr-pt-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-top:1.5rem!important}.fr-pb-md-3w,.fr-pb-md-6v,.fr-py-md-3w,.fr-py-md-6v{padding-bottom:1.5rem!important}.fr-p-md-7v{padding:1.75rem!important}.fr-pl-md-7v,.fr-px-md-7v{padding-left:1.75rem!important}.fr-pr-md-7v,.fr-px-md-7v{padding-right:1.75rem!important}.fr-pt-md-7v,.fr-py-md-7v{padding-top:1.75rem!important}.fr-pb-md-7v,.fr-py-md-7v{padding-bottom:1.75rem!important}.fr-p-md-4w,.fr-p-md-8v{padding:2rem!important}.fr-pl-md-4w,.fr-pl-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-left:2rem!important}.fr-pr-md-4w,.fr-pr-md-8v,.fr-px-md-4w,.fr-px-md-8v{padding-right:2rem!important}.fr-pt-md-4w,.fr-pt-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-top:2rem!important}.fr-pb-md-4w,.fr-pb-md-8v,.fr-py-md-4w,.fr-py-md-8v{padding-bottom:2rem!important}.fr-p-md-9v{padding:2.25rem!important}.fr-pl-md-9v,.fr-px-md-9v{padding-left:2.25rem!important}.fr-pr-md-9v,.fr-px-md-9v{padding-right:2.25rem!important}.fr-pt-md-9v,.fr-py-md-9v{padding-top:2.25rem!important}.fr-pb-md-9v,.fr-py-md-9v{padding-bottom:2.25rem!important}.fr-p-md-5w,.fr-p-md-10v{padding:2.5rem!important}.fr-pl-md-5w,.fr-pl-md-10v,.fr-px-md-5w,.fr-px-md-10v{padding-left:2.5rem!important}.fr-pr-md-5w,.fr-pr-md-10v,.fr-px-md-5w,.fr-px-md-10v{padding-right:2.5rem!important}.fr-pt-md-5w,.fr-pt-md-10v,.fr-py-md-5w,.fr-py-md-10v{padding-top:2.5rem!important}.fr-pb-md-5w,.fr-pb-md-10v,.fr-py-md-5w,.fr-py-md-10v{padding-bottom:2.5rem!important}.fr-p-md-11v{padding:2.75rem!important}.fr-pl-md-11v,.fr-px-md-11v{padding-left:2.75rem!important}.fr-pr-md-11v,.fr-px-md-11v{padding-right:2.75rem!important}.fr-pt-md-11v,.fr-py-md-11v{padding-top:2.75rem!important}.fr-pb-md-11v,.fr-py-md-11v{padding-bottom:2.75rem!important}.fr-p-md-6w,.fr-p-md-12v{padding:3rem!important}.fr-pl-md-6w,.fr-pl-md-12v,.fr-px-md-6w,.fr-px-md-12v{padding-left:3rem!important}.fr-pr-md-6w,.fr-pr-md-12v,.fr-px-md-6w,.fr-px-md-12v{padding-right:3rem!important}.fr-pt-md-6w,.fr-pt-md-12v,.fr-py-md-6w,.fr-py-md-12v{padding-top:3rem!important}.fr-pb-md-6w,.fr-pb-md-12v,.fr-py-md-6w,.fr-py-md-12v{padding-bottom:3rem!important}.fr-p-md-13v{padding:3.25rem!important}.fr-pl-md-13v,.fr-px-md-13v{padding-left:3.25rem!important}.fr-pr-md-13v,.fr-px-md-13v{padding-right:3.25rem!important}.fr-pt-md-13v,.fr-py-md-13v{padding-top:3.25rem!important}.fr-pb-md-13v,.fr-py-md-13v{padding-bottom:3.25rem!important}.fr-p-md-7w,.fr-p-md-14v{padding:3.5rem!important}.fr-pl-md-7w,.fr-pl-md-14v,.fr-px-md-7w,.fr-px-md-14v{padding-left:3.5rem!important}.fr-pr-md-7w,.fr-pr-md-14v,.fr-px-md-7w,.fr-px-md-14v{padding-right:3.5rem!important}.fr-pt-md-7w,.fr-pt-md-14v,.fr-py-md-7w,.fr-py-md-14v{padding-top:3.5rem!important}.fr-pb-md-7w,.fr-pb-md-14v,.fr-py-md-7w,.fr-py-md-14v{padding-bottom:3.5rem!important}.fr-p-md-15v{padding:3.75rem!important}.fr-pl-md-15v,.fr-px-md-15v{padding-left:3.75rem!important}.fr-pr-md-15v,.fr-px-md-15v{padding-right:3.75rem!important}.fr-pt-md-15v,.fr-py-md-15v{padding-top:3.75rem!important}.fr-pb-md-15v,.fr-py-md-15v{padding-bottom:3.75rem!important}.fr-p-md-8w,.fr-p-md-16v{padding:4rem!important}.fr-pl-md-8w,.fr-pl-md-16v,.fr-px-md-8w,.fr-px-md-16v{padding-left:4rem!important}.fr-pr-md-8w,.fr-pr-md-16v,.fr-px-md-8w,.fr-px-md-16v{padding-right:4rem!important}.fr-pt-md-8w,.fr-pt-md-16v,.fr-py-md-8w,.fr-py-md-16v{padding-top:4rem!important}.fr-pb-md-8w,.fr-pb-md-16v,.fr-py-md-8w,.fr-py-md-16v{padding-bottom:4rem!important}.fr-p-md-17v{padding:4.25rem!important}.fr-pl-md-17v,.fr-px-md-17v{padding-left:4.25rem!important}.fr-pr-md-17v,.fr-px-md-17v{padding-right:4.25rem!important}.fr-pt-md-17v,.fr-py-md-17v{padding-top:4.25rem!important}.fr-pb-md-17v,.fr-py-md-17v{padding-bottom:4.25rem!important}.fr-p-md-9w,.fr-p-md-18v{padding:4.5rem!important}.fr-pl-md-9w,.fr-pl-md-18v,.fr-px-md-9w,.fr-px-md-18v{padding-left:4.5rem!important}.fr-pr-md-9w,.fr-pr-md-18v,.fr-px-md-9w,.fr-px-md-18v{padding-right:4.5rem!important}.fr-pt-md-9w,.fr-pt-md-18v,.fr-py-md-9w,.fr-py-md-18v{padding-top:4.5rem!important}.fr-pb-md-9w,.fr-pb-md-18v,.fr-py-md-9w,.fr-py-md-18v{padding-bottom:4.5rem!important}.fr-p-md-19v{padding:4.75rem!important}.fr-pl-md-19v,.fr-px-md-19v{padding-left:4.75rem!important}.fr-pr-md-19v,.fr-px-md-19v{padding-right:4.75rem!important}.fr-pt-md-19v,.fr-py-md-19v{padding-top:4.75rem!important}.fr-pb-md-19v,.fr-py-md-19v{padding-bottom:4.75rem!important}.fr-p-md-10w,.fr-p-md-20v{padding:5rem!important}.fr-pl-md-10w,.fr-pl-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-left:5rem!important}.fr-pr-md-10w,.fr-pr-md-20v,.fr-px-md-10w,.fr-px-md-20v{padding-right:5rem!important}.fr-pt-md-10w,.fr-pt-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-top:5rem!important}.fr-pb-md-10w,.fr-pb-md-20v,.fr-py-md-10w,.fr-py-md-20v{padding-bottom:5rem!important}.fr-p-md-21v{padding:5.25rem!important}.fr-pl-md-21v,.fr-px-md-21v{padding-left:5.25rem!important}.fr-pr-md-21v,.fr-px-md-21v{padding-right:5.25rem!important}.fr-pt-md-21v,.fr-py-md-21v{padding-top:5.25rem!important}.fr-pb-md-21v,.fr-py-md-21v{padding-bottom:5.25rem!important}.fr-p-md-11w,.fr-p-md-22v{padding:5.5rem!important}.fr-pl-md-11w,.fr-pl-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-left:5.5rem!important}.fr-pr-md-11w,.fr-pr-md-22v,.fr-px-md-11w,.fr-px-md-22v{padding-right:5.5rem!important}.fr-pt-md-11w,.fr-pt-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-top:5.5rem!important}.fr-pb-md-11w,.fr-pb-md-22v,.fr-py-md-11w,.fr-py-md-22v{padding-bottom:5.5rem!important}.fr-p-md-23v{padding:5.75rem!important}.fr-pl-md-23v,.fr-px-md-23v{padding-left:5.75rem!important}.fr-pr-md-23v,.fr-px-md-23v{padding-right:5.75rem!important}.fr-pt-md-23v,.fr-py-md-23v{padding-top:5.75rem!important}.fr-pb-md-23v,.fr-py-md-23v{padding-bottom:5.75rem!important}.fr-p-md-12w,.fr-p-md-24v{padding:6rem!important}.fr-pl-md-12w,.fr-pl-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-left:6rem!important}.fr-pr-md-12w,.fr-pr-md-24v,.fr-px-md-12w,.fr-px-md-24v{padding-right:6rem!important}.fr-pt-md-12w,.fr-pt-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-top:6rem!important}.fr-pb-md-12w,.fr-pb-md-24v,.fr-py-md-12w,.fr-py-md-24v{padding-bottom:6rem!important}.fr-p-md-25v{padding:6.25rem!important}.fr-pl-md-25v,.fr-px-md-25v{padding-left:6.25rem!important}.fr-pr-md-25v,.fr-px-md-25v{padding-right:6.25rem!important}.fr-pt-md-25v,.fr-py-md-25v{padding-top:6.25rem!important}.fr-pb-md-25v,.fr-py-md-25v{padding-bottom:6.25rem!important}.fr-p-md-13w,.fr-p-md-26v{padding:6.5rem!important}.fr-pl-md-13w,.fr-pl-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-left:6.5rem!important}.fr-pr-md-13w,.fr-pr-md-26v,.fr-px-md-13w,.fr-px-md-26v{padding-right:6.5rem!important}.fr-pt-md-13w,.fr-pt-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-top:6.5rem!important}.fr-pb-md-13w,.fr-pb-md-26v,.fr-py-md-13w,.fr-py-md-26v{padding-bottom:6.5rem!important}.fr-p-md-27v{padding:6.75rem!important}.fr-pl-md-27v,.fr-px-md-27v{padding-left:6.75rem!important}.fr-pr-md-27v,.fr-px-md-27v{padding-right:6.75rem!important}.fr-pt-md-27v,.fr-py-md-27v{padding-top:6.75rem!important}.fr-pb-md-27v,.fr-py-md-27v{padding-bottom:6.75rem!important}.fr-p-md-14w,.fr-p-md-28v{padding:7rem!important}.fr-pl-md-14w,.fr-pl-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-left:7rem!important}.fr-pr-md-14w,.fr-pr-md-28v,.fr-px-md-14w,.fr-px-md-28v{padding-right:7rem!important}.fr-pt-md-14w,.fr-pt-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-top:7rem!important}.fr-pb-md-14w,.fr-pb-md-28v,.fr-py-md-14w,.fr-py-md-28v{padding-bottom:7rem!important}.fr-p-md-29v{padding:7.25rem!important}.fr-pl-md-29v,.fr-px-md-29v{padding-left:7.25rem!important}.fr-pr-md-29v,.fr-px-md-29v{padding-right:7.25rem!important}.fr-pt-md-29v,.fr-py-md-29v{padding-top:7.25rem!important}.fr-pb-md-29v,.fr-py-md-29v{padding-bottom:7.25rem!important}.fr-p-md-15w,.fr-p-md-30v{padding:7.5rem!important}.fr-pl-md-15w,.fr-pl-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-left:7.5rem!important}.fr-pr-md-15w,.fr-pr-md-30v,.fr-px-md-15w,.fr-px-md-30v{padding-right:7.5rem!important}.fr-pt-md-15w,.fr-pt-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-top:7.5rem!important}.fr-pb-md-15w,.fr-pb-md-30v,.fr-py-md-15w,.fr-py-md-30v{padding-bottom:7.5rem!important}.fr-p-md-31v{padding:7.75rem!important}.fr-pl-md-31v,.fr-px-md-31v{padding-left:7.75rem!important}.fr-pr-md-31v,.fr-px-md-31v{padding-right:7.75rem!important}.fr-pt-md-31v,.fr-py-md-31v{padding-top:7.75rem!important}.fr-pb-md-31v,.fr-py-md-31v{padding-bottom:7.75rem!important}.fr-p-md-16w,.fr-p-md-32v{padding:8rem!important}.fr-pl-md-16w,.fr-pl-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-left:8rem!important}.fr-pr-md-16w,.fr-pr-md-32v,.fr-px-md-16w,.fr-px-md-32v{padding-right:8rem!important}.fr-pt-md-16w,.fr-pt-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-top:8rem!important}.fr-pb-md-16w,.fr-pb-md-32v,.fr-py-md-16w,.fr-py-md-32v{padding-bottom:8rem!important}.fr-accordion__btn{padding:.75rem 1rem}.fr-accordion .fr-collapse{margin:0 -.25rem;padding-left:1rem;padding-right:1rem}.fr-alert__title{font-size:1.25rem;line-height:1.75rem}.fr-btns-group--inline-md{width:calc(100% + 1rem)}.fr-btns-group--inline-md .fr-btn{width:auto;margin-right:1rem;max-width:100%}.fr-btns-group--inline-md>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-md>li:before{content:none}.fr-btns-group--inline-md.fr-btns-group--right{margin-left:-1rem}.fr-btns-group--inline-md.fr-btns-group--right .fr-btn{margin-right:0;margin-left:1rem}.fr-btns-group--inline-md.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--inline-md.fr-btns-group--center,.fr-btns-group--inline-md.fr-btns-group--left{margin-right:-1rem}.fr-btns-group--inline-md.fr-btns-group--center .fr-btn,.fr-btns-group--inline-md.fr-btns-group--left .fr-btn{margin-right:1rem;margin-left:0}.fr-content-media--sm .fr-content-media__caption,.fr-content-media--sm .fr-content-media__img,.fr-content-media--sm .fr-content-media__transcription,.fr-content-media--sm .fr-responsive-vid{width:75%}.fr-content-media--lg .fr-content-media__caption,.fr-content-media--lg .fr-content-media__img,.fr-content-media--lg .fr-content-media__transcription,.fr-content-media--lg .fr-responsive-vid{width:125%}.fr-footer__body{margin-bottom:1.5rem}.fr-footer__brand .fr-logo{font-size:1.3125rem}.fr-footer__brand .fr-logo:before{width:3.4375rem;height:1.25rem;margin-bottom:.41667rem;background-size:3.4375rem 1.40625rem,3.4375rem 1.25rem,0;background-position:0 -.07812rem,0 0,0 0}:root[data-fr-mourning] .fr-footer__brand .fr-logo:before{background-size:3.4375rem 1.40625rem,0,3.4375rem 1.25rem}.fr-footer__brand .fr-logo:after{min-width:3.28125rem;background-size:6.5625rem 4.6875rem;background-position:0 calc(100% + 2.34375rem);padding-top:2.76042rem}:root[data-fr-theme=dark] .fr-footer__brand .fr-logo:after{background-position:-3.28125rem 100%}.fr-footer__brand .fr-logo+.fr-footer__brand-link{margin-left:3rem}.fr-footer__brand{flex-basis:auto;padding-right:1rem}.fr-footer__content{margin-left:auto}.fr-footer__top{margin:-2.5rem 0 2.5rem}.fr-footer__bottom-item{margin:.5rem 0 0 .75rem}.fr-footer__bottom-item:before{margin-right:.75rem;margin-bottom:.25rem;margin-top:.25rem}.fr-footer__partners-logos{flex-wrap:nowrap;margin:0 -1rem}.fr-footer__partners-main a{margin:0 0 0 1rem}.fr-footer__partners-main+.fr-footer__partners-sub{padding-left:2rem;padding-top:0}.fr-footer__partners-main+.fr-footer__partners-sub>ul{justify-content:flex-end}.fr-footer__partners-main+.fr-footer__partners-sub>ul>li{margin:0 1rem 0 0}.fr-footer__partners-main+.fr-footer__partners-sub>ul>li a{margin-left:0}.fr-footer__partners-sub{margin:.5rem 0 0}.fr-share__text{max-width:18rem}.fr-skiplinks__list>li{margin:0 1rem}.fr-skiplinks__list{flex-direction:row;flex-wrap:wrap;margin:0 -1rem}.fr-tabs{margin-left:0;margin-right:0}.fr-tabs__panel{padding:2rem}.fr-tabs__panel:focus,.fr-tabs__panel:focus-visible{outline-offset:calc(-2rem + 2px)}.fr-callout{padding:2rem 3rem}.fr-callout[class*=" fr-fi-"]:before,.fr-callout[class^=fr-fi-]:before{margin:-1rem 0 1rem -2rem}.fr-callout__title{font-size:1.5rem;line-height:2rem}.fr-callout__text{font-size:1.25rem;line-height:2rem}.fr-input-wrap>:first-child:not(:last-child){border-radius:.25rem 0 0 0}.fr-input-wrap>:last-child:not(:first-child){border-radius:0 .25rem 0 0}.fr-modal--top:before{content:""}.fr-modal:after,.fr-modal:before{width:0;height:10vh;flex:1 0 10vh}.fr-modal:after{content:""}.fr-modal__body{max-height:80vh}.fr-modal__header{padding:1rem}.fr-modal__content{padding-left:2rem;padding-right:2rem;margin-bottom:4rem}.fr-modal__footer{padding:2rem;margin-top:-3rem}.fr-modal__title{font-size:1.5rem;line-height:2rem}.fr-consent-banner{padding:2rem;bottom:2.5rem;left:2.5rem;max-width:40rem;max-height:calc(100% - 5rem)}.fr-consent-banner__title{font-size:1.25rem;line-height:1.75rem}.fr-consent-banner__buttons{margin-top:2rem}.fr-consent-service>.fr-fieldset{padding:0 0 1.25rem;display:flex;flex-direction:row;flex-wrap:wrap}.fr-consent-service:last-child>.fr-fieldset{padding:1.25rem 0 1rem}.fr-consent-service__title{font-size:1.25rem;line-height:1.75rem;width:50%}.fr-consent-service__desc{margin-top:.25rem;margin-right:1.5rem;width:60%}.fr-consent-service__radios{display:flex;flex-direction:row;align-items:center;justify-content:flex-end;margin-bottom:0;position:absolute;top:1.25rem;right:0;width:50%}.fr-consent-services .fr-consent-service+.fr-consent-service{margin-top:-.25rem}.fr-consent-services .fr-consent-service__desc{margin-bottom:.25rem}.fr-follow{padding:2rem 0}.fr-follow__title{font-size:1.375rem;line-height:1.75rem}.fr-follow__newsletter .fr-error-text+.fr-hint-text,.fr-follow__newsletter .fr-valid-text+.fr-hint-text{margin-top:.5rem}.fr-follow .fr-grid-row>*>div{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;height:100%}.fr-follow .fr-grid-row>:not(:first-child){padding-left:8.33333%;padding-top:0;margin-top:0}.fr-follow .fr-grid-row>:not(:last-child){padding-right:8.33333%}.fr-follow .fr-grid-row>:first-child:last-child>div{display:flex;flex-direction:row;align-items:center;justify-content:space-between}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>*{max-width:50%;padding-right:.75rem;padding-left:.75rem}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>:first-child{padding-right:.75rem;padding-left:0}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter>:last-child{padding-right:0;padding-left:.75rem}.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__newsletter .fr-follow__desc,.fr-follow .fr-grid-row>:first-child:last-child>.fr-follow__social .fr-follow__title{margin-bottom:0}.fr-follow .fr-grid-row>:not(:first-child){box-shadow:-1px 0 0 0 var(--bf300-plain)}.fr-search-bar--lg .fr-btn{font-size:1.25rem;line-height:2rem;min-height:3.5rem;padding:.75rem 2rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-search-bar--lg .fr-btn:before{font:normal normal normal 2rem/1 dsfr-icons;margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-search-bar--lg .fr-input{padding-top:1rem;padding-bottom:1rem}.fr-header__service-title{font-size:1.25rem;line-height:1.75rem}}@media (min-width:48em) and (min-width:48em){.fr-sidemenu--full-border .fr-sidemenu__inner{padding:0 .25rem}.fr-sidemenu__btn:before{margin-right:-1.5rem}}@media (min-width:48em) and (hover:hover) and (pointer:fine){.fr-sidemenu__btn:not(a):not(:disabled):hover,a.fr-sidemenu__btn[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-sidemenu__btn:not(a):not(:disabled):active,a.fr-sidemenu__btn[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}}@media (min-width:62em){.fr-hidden-lg{display:none!important}.fr-displayed-lg{display:inherit!important}.fr-sr-only-lg{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{padding-left:1.5rem;padding-right:1.5rem}.fr-container-lg--fluid{padding-left:0;padding-right:0;max-width:none}.fr-grid-row--gutters,.fr-grid-row-md--gutters,.fr-grid-row-sm--gutters{margin:-.75rem}.fr-grid-row--gutters>.fr-col,.fr-grid-row--gutters>[class*=" fr-col-"],.fr-grid-row--gutters>[class^=fr-col-],.fr-grid-row-md--gutters>.fr-col,.fr-grid-row-md--gutters>[class*=" fr-col-"],.fr-grid-row-md--gutters>[class^=fr-col-],.fr-grid-row-sm--gutters>.fr-col,.fr-grid-row-sm--gutters>[class*=" fr-col-"],.fr-grid-row-sm--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--gutters{margin:-.75rem}.fr-grid-row-lg--gutters>.fr-col,.fr-grid-row-lg--gutters>[class*=" fr-col-"],.fr-grid-row-lg--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-lg--no-gutters{margin:0}.fr-grid-row-lg--no-gutters>.fr-col,.fr-grid-row-lg--no-gutters>[class*=" fr-col-"],.fr-grid-row-lg--no-gutters>[class^=fr-col-]{padding:0}.fr-col-lg{flex:1}.fr-col-lg-1{flex:0 0 8.33333%;width:8.33333%;max-width:8.33333%}.fr-col-offset-lg-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-lg-1--right{margin-right:8.33333%}.fr-col-lg-2{flex:0 0 16.66667%;width:16.66667%;max-width:16.66667%}.fr-col-offset-lg-2:not(.fr-col-offset-1--right){margin-left:16.66667%}.fr-col-offset-lg-2--right{margin-right:16.66667%}.fr-col-lg-3{flex:0 0 25%;width:25%;max-width:25%}.fr-col-offset-lg-3:not(.fr-col-offset-1--right){margin-left:25%}.fr-col-offset-lg-3--right{margin-right:25%}.fr-col-lg-4{flex:0 0 33.33333%;width:33.33333%;max-width:33.33333%}.fr-col-offset-lg-4:not(.fr-col-offset-1--right){margin-left:33.33333%}.fr-col-offset-lg-4--right{margin-right:33.33333%}.fr-col-lg-5{flex:0 0 41.66667%;width:41.66667%;max-width:41.66667%}.fr-col-offset-lg-5:not(.fr-col-offset-1--right){margin-left:41.66667%}.fr-col-offset-lg-5--right{margin-right:41.66667%}.fr-col-lg-6{flex:0 0 50%;width:50%;max-width:50%}.fr-col-offset-lg-6:not(.fr-col-offset-1--right){margin-left:50%}.fr-col-offset-lg-6--right{margin-right:50%}.fr-col-lg-7{flex:0 0 58.33333%;width:58.33333%;max-width:58.33333%}.fr-col-offset-lg-7:not(.fr-col-offset-1--right){margin-left:58.33333%}.fr-col-offset-lg-7--right{margin-right:58.33333%}.fr-col-lg-8{flex:0 0 66.66667%;width:66.66667%;max-width:66.66667%}.fr-col-offset-lg-8:not(.fr-col-offset-1--right){margin-left:66.66667%}.fr-col-offset-lg-8--right{margin-right:66.66667%}.fr-col-lg-9{flex:0 0 75%;width:75%;max-width:75%}.fr-col-offset-lg-9:not(.fr-col-offset-1--right){margin-left:75%}.fr-col-offset-lg-9--right{margin-right:75%}.fr-col-lg-10{flex:0 0 83.33333%;width:83.33333%;max-width:83.33333%}.fr-col-offset-lg-10:not(.fr-col-offset-1--right){margin-left:83.33333%}.fr-col-offset-lg-10--right{margin-right:83.33333%}.fr-col-lg-11{flex:0 0 91.66667%;width:91.66667%;max-width:91.66667%}.fr-col-offset-lg-11:not(.fr-col-offset-1--right){margin-left:91.66667%}.fr-col-offset-lg-11--right{margin-right:91.66667%}.fr-col-lg-12{flex:0 0 100%;width:100%;max-width:100%}.fr-col-offset-lg-12:not(.fr-col-offset-1--right){margin-left:100%}.fr-col-offset-lg-12--right{margin-right:100%}.fr-btns-group--inline-lg{width:calc(100% + 1rem)}.fr-btns-group--inline-lg .fr-btn{width:auto;margin-right:1rem;max-width:100%}.fr-btns-group--inline-lg>li{display:inline-flex;max-width:100%;width:auto}.fr-btns-group--inline-lg>li:before{content:none}.fr-btns-group--inline-lg.fr-btns-group--right{margin-left:-1rem}.fr-btns-group--inline-lg.fr-btns-group--right .fr-btn{margin-right:0;margin-left:1rem}.fr-btns-group--inline-lg.fr-btns-group--right.fr-btns-group--inline-reverse{flex-direction:row-reverse;justify-content:flex-start}.fr-btns-group--inline-lg.fr-btns-group--center,.fr-btns-group--inline-lg.fr-btns-group--left{margin-right:-1rem}.fr-btns-group--inline-lg.fr-btns-group--center .fr-btn,.fr-btns-group--inline-lg.fr-btns-group--left .fr-btn{margin-right:1rem;margin-left:0}.fr-footer__body--operator .fr-footer__brand .fr-footer__logo{min-width:200px;max-width:100%}.fr-footer__body--operator .fr-footer__content,.fr-footer__content{margin-top:0;flex-basis:50%}.fr-pagination__link--first.fr-pagination__link--lg-label,.fr-pagination__link--prev.fr-pagination__link--lg-label{font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row;overflow:initial;max-width:none;max-height:none}.fr-pagination__link--first.fr-pagination__link--lg-label:before,.fr-pagination__link--prev.fr-pagination__link--lg-label:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-left:-.375rem;margin-right:.5rem;font-size:1.5rem}.fr-pagination__link--last.fr-pagination__link--lg-label,.fr-pagination__link--next.fr-pagination__link--lg-label{font-size:1rem;line-height:1.5rem;min-height:2rem;padding:.25rem .75rem;border-radius:1rem;flex-direction:row-reverse;overflow:initial;max-width:none;max-height:none}.fr-pagination__link--last.fr-pagination__link--lg-label:before,.fr-pagination__link--next.fr-pagination__link--lg-label:before{font:normal normal normal 1.5rem/1 dsfr-icons;margin-right:-.375rem;margin-left:.5rem;font-size:1.5rem}.fr-nav__list{flex-direction:row;flex-wrap:nowrap;margin:0 -1rem}.fr-nav__list>:first-child:nth-last-child(2)~*,.fr-nav__list>:first-child:nth-last-child(3)~*,.fr-nav__list>:first-child:nth-last-child(4)~*{margin-left:1.25rem}.fr-nav__list>*>.fr-nav__btn,.fr-nav__list>*>.fr-nav__link,.fr-nav__list>.fr-nav__btn,.fr-nav__list>.fr-nav__link{padding:1rem;margin:0;width:auto;height:100%;min-height:3.5rem;font-weight:400}.fr-nav__list>*>.fr-nav__btn[aria-current]:before,.fr-nav__list>*>.fr-nav__link[aria-current]:before,.fr-nav__list>.fr-nav__btn[aria-current]:before,.fr-nav__list>.fr-nav__link[aria-current]:before{position:absolute;top:auto;bottom:0;left:0;width:100%;height:2px;margin-top:0}.fr-nav__list>*>.fr-nav__btn[aria-current]:not([aria-expanded=true]),.fr-nav__list>*>.fr-nav__link[aria-current]:not([aria-expanded=true]),.fr-nav__list>.fr-nav__btn[aria-current]:not([aria-expanded=true]),.fr-nav__list>.fr-nav__link[aria-current]:not([aria-expanded=true]){z-index:3500}.fr-nav__item{box-shadow:none;align-items:flex-start}.fr-nav__item--align-right{align-items:flex-end}.fr-nav__btn,.fr-nav__link{font-size:.875rem;line-height:1.5rem}.fr-nav__btn{padding:1rem .75rem 1rem 1rem;justify-content:flex-start}.fr-menu{position:absolute;top:100%;margin-top:-.25rem;padding-top:.25rem}.fr-menu:after{content:"";display:block;position:absolute;top:0;right:0;bottom:0;left:0;margin:.25rem 1rem 2rem;z-index:-1}.fr-menu__list{padding:0 0 2rem;width:20rem}.fr-menu .fr-nav__link{padding:.75rem 1rem}.fr-menu .fr-nav__link:before{left:0}.fr-mega-menu{position:absolute;top:100%;right:0;left:0;margin:-2px 0 0;padding:0 0 2.25rem}.fr-mega-menu>.fr-container:before{content:"";display:block;height:2px;margin-left:-1rem;margin-right:-1rem;margin-bottom:1rem}.fr-mega-menu .fr-link--close{display:flex}.fr-mega-menu .fr-nav__link{padding:.75rem 1rem}.fr-mega-menu .fr-nav__link:before{left:0}.fr-mega-menu__leader{padding-left:0;padding-right:0}.fr-mega-menu__list{box-shadow:none}.fr-nav__btn[aria-expanded=true]{color:var(--bf500-plain);background-color:var(--bf200-bf300)}.fr-menu:after{background-color:var(--w-g750)}.fr-menu .fr-nav__link{box-shadow:0 calc(-1rem - 1px) 0 -1rem var(--g300)}.fr-mega-menu>.fr-container:before{background-color:var(--bf200-bf300)}.fr-mega-menu__category{box-shadow:0 calc(1rem + 1px) 0 -1rem var(--g300)}.fr-consent-manager__header .fr-consent-service__title{width:44%}.fr-consent-manager__header .fr-consent-service__radios{width:56%;position:absolute;justify-content:flex-end}.fr-header__body-row{padding:1.5rem 0}.fr-header__brand{margin-top:-1rem;margin-bottom:-1rem;flex-wrap:nowrap;width:auto}.fr-header__brand-top{width:auto}.fr-header__logo,.fr-header__operator,.fr-header__service{padding:1rem}.fr-header__logo:not(:last-child),.fr-header__operator:not(:last-child),.fr-header__service:not(:last-child){margin-right:.5rem}.fr-header__service{margin-left:0;margin-right:0;box-shadow:none;width:auto}.fr-header .fr-modal{padding:0;margin:0;width:auto;height:auto;visibility:inherit;opacity:1;position:static;background-color:transparent;overflow:initial}.fr-header .fr-modal>*>.fr-link--close,.fr-header__navbar{display:none}.fr-header__tools{flex-direction:column;align-items:flex-end;text-align:right;padding-left:1rem;padding-right:1rem;margin-left:auto;flex:1 0 auto}.fr-header__tools-links+.fr-header__search{margin-top:1rem}.fr-header__tools .fr-header__search{max-width:25rem;margin-left:auto}.fr-header__tools-links{display:initial}.fr-header .fr-nav{justify-content:flex-start}.fr-header .fr-nav__list{max-width:calc(100% + 1rem)}.fr-header .fr-nav .fr-mega-menu,.fr-header .fr-nav .fr-menu:after{box-shadow:0 8px 8px 0 rgba(0,0,0,.1),0 8px 16px -16px rgba(0,0,0,.32)}.fr-header .fr-header__menu{box-shadow:inset 0 1px 0 0 var(--g300)}}@media (-ms-high-contrast:active) and (min-width:62em),(-ms-high-contrast:none) and (min-width:62em){.fr-nav--align-right{transform:translateX(-100%)}}@media (min-width:78em){.fr-hidden-xl{display:none!important}.fr-displayed-xl{display:inherit!important}.fr-sr-only-xl{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.fr-container,.fr-container-lg,.fr-container-md,.fr-container-sm{max-width:78rem}.fr-container-xl{padding-left:1.5rem;padding-right:1.5rem;max-width:78rem}.fr-container-xl--fluid{padding-left:0;padding-right:0;max-width:none}.fr-grid-row-xl--gutters{margin:-.75rem}.fr-grid-row-xl--gutters>.fr-col,.fr-grid-row-xl--gutters>[class*=" fr-col-"],.fr-grid-row-xl--gutters>[class^=fr-col-]{padding:.75rem}.fr-grid-row-xl--no-gutters{margin:0}.fr-grid-row-xl--no-gutters>.fr-col,.fr-grid-row-xl--no-gutters>[class*=" fr-col-"],.fr-grid-row-xl--no-gutters>[class^=fr-col-]{padding:0}.fr-col-xl{flex:1}.fr-col-xl-1{flex:0 0 8.33333%;width:8.33333%;max-width:8.33333%}.fr-col-offset-xl-1:not(.fr-col-offset-1--right){margin-left:8.33333%}.fr-col-offset-xl-1--right{margin-right:8.33333%}.fr-col-xl-2{flex:0 0 16.66667%;width:16.66667%;max-width:16.66667%}.fr-col-offset-xl-2:not(.fr-col-offset-1--right){margin-left:16.66667%}.fr-col-offset-xl-2--right{margin-right:16.66667%}.fr-col-xl-3{flex:0 0 25%;width:25%;max-width:25%}.fr-col-offset-xl-3:not(.fr-col-offset-1--right){margin-left:25%}.fr-col-offset-xl-3--right{margin-right:25%}.fr-col-xl-4{flex:0 0 33.33333%;width:33.33333%;max-width:33.33333%}.fr-col-offset-xl-4:not(.fr-col-offset-1--right){margin-left:33.33333%}.fr-col-offset-xl-4--right{margin-right:33.33333%}.fr-col-xl-5{flex:0 0 41.66667%;width:41.66667%;max-width:41.66667%}.fr-col-offset-xl-5:not(.fr-col-offset-1--right){margin-left:41.66667%}.fr-col-offset-xl-5--right{margin-right:41.66667%}.fr-col-xl-6{flex:0 0 50%;width:50%;max-width:50%}.fr-col-offset-xl-6:not(.fr-col-offset-1--right){margin-left:50%}.fr-col-offset-xl-6--right{margin-right:50%}.fr-col-xl-7{flex:0 0 58.33333%;width:58.33333%;max-width:58.33333%}.fr-col-offset-xl-7:not(.fr-col-offset-1--right){margin-left:58.33333%}.fr-col-offset-xl-7--right{margin-right:58.33333%}.fr-col-xl-8{flex:0 0 66.66667%;width:66.66667%;max-width:66.66667%}.fr-col-offset-xl-8:not(.fr-col-offset-1--right){margin-left:66.66667%}.fr-col-offset-xl-8--right{margin-right:66.66667%}.fr-col-xl-9{flex:0 0 75%;width:75%;max-width:75%}.fr-col-offset-xl-9:not(.fr-col-offset-1--right){margin-left:75%}.fr-col-offset-xl-9--right{margin-right:75%}.fr-col-xl-10{flex:0 0 83.33333%;width:83.33333%;max-width:83.33333%}.fr-col-offset-xl-10:not(.fr-col-offset-1--right){margin-left:83.33333%}.fr-col-offset-xl-10--right{margin-right:83.33333%}.fr-col-xl-11{flex:0 0 91.66667%;width:91.66667%;max-width:91.66667%}.fr-col-offset-xl-11:not(.fr-col-offset-1--right){margin-left:91.66667%}.fr-col-offset-xl-11--right{margin-right:91.66667%}.fr-col-xl-12{flex:0 0 100%;width:100%;max-width:100%}.fr-col-offset-xl-12:not(.fr-col-offset-1--right){margin-left:100%}.fr-col-offset-xl-12--right{margin-right:100%}.fr-consent-manager__header .fr-consent-service__radios,.fr-consent-manager__header .fr-consent-service__title{width:50%}}@media (hover:hover) and (pointer:fine){.fr-card.fr-enlarge-link:not(a):not(:disabled):hover,a.fr-card.fr-enlarge-link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-card.fr-enlarge-link:not(a):not(:disabled):active,a.fr-card.fr-enlarge-link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-link:not(a):not(:disabled):hover,a.fr-link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-link:not(a):not(:disabled):active,a.fr-link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-sidemenu__link:not(a):not(:disabled):hover,a.fr-sidemenu__link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-sidemenu__link:not(a):not(:disabled):active,a.fr-sidemenu__link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-summary li>a:not(a):not(:disabled):hover,.fr-summary li>a[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-summary li>a:not(a):not(:disabled):active,.fr-summary li>a[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-tile.fr-enlarge-link:not(a):not(:disabled):hover,a.fr-tile.fr-enlarge-link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-tile.fr-enlarge-link:not(a):not(:disabled):active,a.fr-tile.fr-enlarge-link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-accordion .fr-accordion__btn:not(a):not(:disabled):hover,.fr-accordion a.fr-accordion__btn[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-accordion .fr-accordion__btn:not(a):not(:disabled):active,.fr-accordion a.fr-accordion__btn[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-btn:not(a):not(:disabled):hover,a.fr-btn[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-btn:not(a):not(:disabled):active,a.fr-btn[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-pagination__link:not(a):not(:disabled):hover,a.fr-pagination__link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-pagination__link:not(a):not(:disabled):active,a.fr-pagination__link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-pagination__link[aria-current]:not(a):not(:disabled):hover,a.fr-pagination__link[aria-current][href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-pagination__link[aria-current]:not(a):not(:disabled):active,a.fr-pagination__link[aria-current][href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-share__link:not(a):not(:disabled):hover,a.fr-share__link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-share__link:not(a):not(:disabled):active,a.fr-share__link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-tabs__tab:not([aria-selected=true]):not(a):not(:disabled):hover,a.fr-tabs__tab:not([aria-selected=true])[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-tabs__tab:not([aria-selected=true]):not(a):not(:disabled):active,a.fr-tabs__tab:not([aria-selected=true])[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}a.fr-tag:not(a):not(:disabled):hover,a.fr-tag[href]:hover,button.fr-tag:not(a):not(:disabled):hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}a.fr-tag:not(a):not(:disabled):active,a.fr-tag[href]:active,button.fr-tag:not(a):not(:disabled):active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}.fr-nav__btn:not(a):not(:disabled):hover,.fr-nav__link:not(a):not(:disabled):hover,a.fr-nav__btn[href]:hover,a.fr-nav__link[href]:hover{background-image:linear-gradient(0deg,var(--color-hover),var(--color-hover))}.fr-nav__btn:not(a):not(:disabled):active,.fr-nav__link:not(a):not(:disabled):active,a.fr-nav__btn[href]:active,a.fr-nav__link[href]:active{background-image:linear-gradient(0deg,var(--color-active),var(--color-active))}}@media (-ms-high-contrast:active),(-ms-high-contrast:none){.fr-fieldset--inline .fr-radio-group:last-child input[type=radio]+label[class*=" fr-ifi-"],.fr-fieldset--inline .fr-radio-group:last-child input[type=radio]+label[class^=fr-ifi-],.fr-fieldset--inline .fr-radio-group:last-child input[type=radio]+label[style*="background-image:"]{margin-bottom:.5rem!important}.fr-radio-rich input[type=radio]+.fr-label{height:1px}.fr-sidenav{height:auto}.fr-skiplinks.focus-within{position:relative;transform:translateY(0)}}
\ No newline at end of file
diff --git a/static/dsfr.module.min.js b/static/dsfr.module.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..71403e4cb3524f419ab6f695e08b60eaba2fa8fd
--- /dev/null
+++ b/static/dsfr.module.min.js
@@ -0,0 +1,3 @@
+/*! DSFR v1.1.0 | SPDX-License-Identifier: MIT | License-Filename: LICENCE.md | restricted use (see terms and conditions) */
+const t=window.dsfr||{core:{}};window.dsfr=t;const e=t=>`fr-${t}`;e.selector=(t,s)=>(void 0===s&&(s="."),`${s}${e(t)}`),(e.attr=(t,s,i)=>`data-${e(t)}`).selector=(t,s)=>{let i=e.attr(t);return void 0!==s&&(i+=`="${s}"`),`[${i}]`},e.event=t=>`dsfr.${t}`;const s=(t,e,s)=>{"."===e.charAt(0)&&(e=e.substr(1));const i=t.className.split(" "),n=i.indexOf(e);!0===s?n>-1&&i.splice(n,1):-1===n&&i.push(e),t.className=i.join(" ")},i=(t,e)=>s(t,e),n=(t,e)=>s(t,e,!0);class r{constructor(){this.closures=[],this.nexts=[],this.rendering=this.render.bind(this),this.render()}add(t){this.closures.push(t);return()=>{const e=this.closures.indexOf(t);-1!==e&&this.closures.splice(e,1)}}next(t,e){e=void 0===e?0:e-1,void 0===this.nexts[e]&&(this.nexts[e]=[]),this.nexts[e].push(t)}render(){window.requestAnimationFrame(this.rendering);for(const t of this.closures)t.call();const t=this.nexts.shift();if(t)for(const e of t)e.call()}}const o=new class{constructor(){this.renderer=new r}register(t,e){}start(){}stop(){}};class h{constructor(t,e){this.selector=t,this.builders=e,this.instances=[],"loading"!==document.readyState?window.requestAnimationFrame(this.start.bind(this)):document.addEventListener("DOMContentLoaded",this.start.bind(this))}start(){if(!(this.instances.length>0)&&document.querySelectorAll(this.selector).length>0)for(let t=0;t<this.builders.length;t++)this.instances.push(this.builders[t]())}}const l={},c={};let a=0;const d=t=>{for(const e in c)if(c[e]===t)return e;a++;const e=a;return c[e]=t,e};class u{constructor(t,e,s){const i=d(t);l[i]||(l[i]=[]),l[i].push(this),this.element=t,this.id=t.id,this._isRendering=!1,this._isResizing=!1,this.listeners={},this.isResizing=e,this.isRendering=s}dispatch(t,e){const s=new CustomEvent(t,e);this.element.dispatchEvent(s)}listen(t,e){this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].indexOf(e)>-1||(this.listeners[t].push(e),this.element.addEventListener(t,e))}unlisten(t,e){if(t)if(e){if(!this.listeners[t])return;const s=this.listeners[t].indexOf(e);s>-1&&this.listeners[t].splice(s,1),this.element.removeEventListener(e)}else{if(!this.listeners[t])return;for(const e of this.listeners[t])this.element.removeEventListener(e);this.listeners[t].length=0}else for(const t in this.listeners)this.unlisten(t)}get isRendering(){return this._isRendering}set isRendering(t){this._isRendering!==t&&(this._isRendering=t)}render(){}get isResizing(){return this._isResizing}set isResizing(t){this._isResizing!==t&&(this._isResizing=t)}resize(){}destroy(){}static getInstances(t,e){const s=d(t);return l[s]?e?l[s].filter((t=>t instanceof e)):l[s]:null}}const m=e.attr("group"),p=[];class b{constructor(t,e){this.id=t,this.element=e,this.members=[],this._index=-1,this._current=null,p.push(this)}static getGroupById(t){for(const e of p)if(e.constructor===this&&e.id===t)return e;return new this(t)}static getGroupByElement(t){for(const e of p)if(e.element===t)return e;return new this(!1,t)}static groupById(t,e){const s=t.element.getAttribute(m);if(null===s)return;e.getGroupById(s).add(t)}static groupByParent(t,e,s){if(void 0===s&&(s=e.selector),""===s)return;let i=t.element.parentElement;for(;i;){if(i.classList.contains(t.constructor.selector))return;if(i.classList.contains(s)){return void e.getGroupByElement(i).add(t)}i=i.parentElement}}static get selector(){return""}add(t){if(-1===this.members.indexOf(t))switch(this.members.push(t),t.setGroup(this),!0){case null!==this.current:case!(t.disclosed||t.primary&&t.primary.disclosed):t.disclosed=!1;break;default:this._current=t,this._index=this.members.indexOf(t),t.disclosed=!0}}get length(){return this.members.length}get index(){return this._index}set index(t){t<-1||t>=this.length||this._index===t||(null!==this.current&&this.current.conceal(!0,!0),this._index=t,this._current=this._index>-1?this.members[this._index]:null,null!==this.current&&this.current.disclose(!0),this.apply())}get current(){return this._current}set current(t){this.index=this.members.indexOf(t)}get hasFocus(){return void 0===this.current?null:this.current.hasFocus}apply(){}}class g{constructor(t,e){this.element=t,this.disclosure=e,this.hasAttribute=this.element.hasAttribute(this.disclosure.attributeName),this.element.addEventListener("click",this.click.bind(this)),this.observer=new MutationObserver(this.mutate.bind(this)),this.observe()}observe(){this.observer.observe(this.element,{attributes:!0})}click(t){this.disclosure.change(this.hasAttribute)}mutate(t){t.forEach((t=>{"attributes"===t.type&&t.attributeName===this.disclosure.attributeName&&this.disclosure.change(this.disclosed)}))}apply(t){this.hasAttribute&&(this.observer&&this.observer.disconnect(),this.element.setAttribute(this.disclosure.attributeName,t),this.observer&&this.observe())}get disclosed(){return"true"===this.element.getAttribute(this.disclosure.attributeName)}get hasFocus(){return this.element===document.activeElement}}const f=e.event("DISCLOSE"),y=e.event("CONCEAL"),w=[];class v extends u{constructor(t){super(t),this.buttons=[],this._selector=this.constructor.selector,this.modifier=this._selector+"--"+this.type.id,this.attributeName=this.type.ariaState?"aria-"+this.type.id:e.attr(this.type.id),this.pristine=!0;const s=document.querySelectorAll(this.type.ariaControls?`[aria-controls="${this.id}"]`:e.attr.selector("controls",this.id));if(s.length>0)for(let t=0;t<s.length;t++)this.addButton(s[t]);this.disclosed=this.primary&&this.primary.disclosed,this.gather()}gather(){this.group||(b.groupById(this,this.GroupConstructor),b.groupByParent(this,this.GroupConstructor))}static build(t){const e=Array.prototype.slice.call(t.querySelectorAll(`.${this.selector}`));for(const t of e)w.push(new this(t))}get type(){return this.constructor.type}static get type(){return null}static get selector(){return""}addButton(t){const e=this.buttonFactory(t);e.hasAttribute&&(void 0===this.primary?this.primary=e:e.apply(this.primary.disclosed)),this.buttons.push(e)}get GroupConstructor(){return b}buttonFactory(t){return new g(t,this)}disclose(t){return!this.disclosed&&(this.pristine=!1,this.disclosed=!0,t||void 0===this.group||(this.group.current=this),!0)}conceal(t,e){if(!this.disclosed)return!1;this.pristine=!1,this.disclosed=!1,e||this.focus(),t||void 0===this.group||(this.group.current=null);for(const t of w)t!==this&&this.element.contains(t.element)&&t.reset();return!0}get disclosed(){return this._disclosed}set disclosed(t){if(this._disclosed!==t){this.dispatch(t?f:y,this.type),this._disclosed=t,t?i(this.element,this.modifier):n(this.element,this.modifier);for(let e=0;e<this.buttons.length;e++)this.buttons[e].apply(t)}}reset(){}change(t){if(this.constructor.type.canConceal)switch(!0){case!t:case this.disclosed:this.conceal();break;default:this.disclose()}else this.disclose()}setGroup(t){this.group=t}get buttonHasFocus(){return!!this.buttons.some((t=>t.hasFocus))}get hasFocus(){return this.element===document.activeElement||(this.element.querySelectorAll(":focus").length>0||this.buttonHasFocus)}focus(){for(let t=0;t<this.buttons.length;t++){const e=this.buttons[t];if(e.hasAttribute)return void e.element.focus()}}}v.DISCLOSE_EVENT=f,v.CONCEAL_EVENT=y;const E={expand:{id:"expanded",ariaState:!0,ariaControls:!0,canConceal:!0},select:{id:"selected",ariaState:!0,ariaControls:!0,canConceal:!1},opened:{id:"opened",ariaState:!1,ariaControls:!0,canConceal:!0}};class x{constructor(t){this.element=t,this.collections={}}_add(t,e){void 0===this.collections[t]&&(this.collections[t]=new L(t,this.element)),this.collections[t].add(e)}down(t,e,s,i){this._add("down",new A(t,e,s,i))}up(t,e,s,i){this._add("up",new A(t,e,s,i))}dispose(){for(const t of this.collections)t.dispose();this.types=null}}class L{constructor(t,e){this.type=t,this.element=e,this.actions=[],this.binding=this.handle.bind(this),this.element.addEventListener("key"+t,this.binding)}add(t){this.actions.push(t)}handle(t){for(const e of this.actions)e.handle(t)}dispose(){this.element.removeEventListener("key"+this.type,this.binding),this.actions=null}}class A{constructor(t,e,s,i){this.key=t,this.closure=e,this.preventDefault=!0===s,this.stopPropagation=!0===i}handle(t){t.keyCode===this.key&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())}}x.TAB=9,x.ESCAPE=27,x.END=35,x.HOME=36,x.LEFT=37,x.UP=38,x.RIGHT=39,x.DOWN=40;const S=e("collapse"),C=[],_={};class k extends v{constructor(t){super(t),C.push(this),this.requesting=this.request.bind(this),t.addEventListener("transitionend",this.transitionend.bind(this)),this.disclosed&&this.unbound()}gatherByAscendants(){if(!this.group)for(const t in _){let e=this.element.parentElement;for(;e;){if(e.classList.contains(t))return void("string"==typeof _[t]?b.groupByParent(this,b,_[t]):b.groupByParent(this,_[t]));e=e.parentElement}}}gather(){this.gatherByAscendants(),super.gather()}static get type(){return E.expand}static get selector(){return S}static register(t,e){_[t]=e;for(const t of C)t.gatherByAscendants()}transitionend(t){this.disclosed||(this.element.style.maxHeight="")}unbound(){this.element.style.maxHeight="none"}disclose(t){this.disclosed||(this.unbound(),this.adjust(),this.requested=()=>{super.disclose(t)},window.requestAnimationFrame(this.requesting))}conceal(t,e){this.disclosed&&(this.adjust(),this.requested=()=>{super.conceal(t,e)},window.requestAnimationFrame(this.requesting))}request(){this.requested&&this.requested(),this.requested=null}adjust(){this.element.style.setProperty("--collapser","none");const t=this.element.offsetHeight;this.element.style.setProperty("--collapse",-t+"px"),this.element.style.setProperty("--collapser","")}reset(){this.pristine||(this.disclosed=!1)}}t.core.ns=e,t.core.addClass=i,t.core.removeClass=n,t.core.engine=o,t.core.Instance=u,t.core.Initializer=h,t.core.Disclosure=v,t.core.DisclosureButton=g,t.core.DisclosuresGroup=b,t.core.DISCLOSURE_TYPES=E,t.KeyListener=x,t.Collapse=k,t.Equisized=class{constructor(t,e){this.selector=t,this.group=e,this.elements=this.group.querySelectorAll(this.selector),this.maxWidth=0,this.changing=this.change.bind(this),window.addEventListener("resize",this.changing),window.addEventListener("load",this.changing)}change(){this.reset();for(let t=0;t<this.elements.length;t++){const e=this._getWidth(this.elements[t]);e>this.maxWidth&&(this.maxWidth=e)}this.apply()}apply(){for(let t=0;t<this.elements.length;t++)this.elements[t].style.width=this.maxWidth+1+"px"}reset(){for(let t=0;t<this.elements.length;t++)this.elements[t].style.width="auto";this.maxWidth=0}_getWidth(t){let e=t.offsetWidth;const s=getComputedStyle(t);return e+=parseInt(s.marginLeft)+parseInt(s.marginRight),e}};new h(`.${S}`,[()=>{k.build(document)}]);const q=t.core.ns("accordions-group"),z=t.core.ns("accordion");class I extends t.core.DisclosuresGroup{static get selector(){return q}}t.AccordionsGroup=I,t.Collapse.register(z,I);const D=`${t.core.ns.selector("breadcrumb")} ${t.core.ns.selector("collapse")}`;class P extends t.core.Instance{constructor(e){super(e),this.collapse=t.core.Instance.getInstances(e,t.Collapse)[0],this.links=[...this.element.querySelectorAll("a[href]")],this.count=0,this.links.length&&(this.listen(t.core.Disclosure.DISCLOSE_EVENT,this.focus.bind(this)),this.resizing=this.resize.bind(this),window.addEventListener("resize",this.resizing))}focus(){this.links[0].focus(),t.core.engine.renderer.next((()=>{this.verify()}))}verify(){this.count++,this.count>100||document.activeElement!==this.links[0]&&this.focus()}resize(){window.matchMedia("(min-width: 48em)").matches?this.collapse.buttons[0]===document.activeElement&&this.links.focus():this.links.indexOf(document.activeElement)>-1&&this.collapse.focus()}}new t.core.Initializer(D,[()=>{const t=[],e=document.querySelectorAll(D);for(let s=0;s<e.length;s++)t.push(new P(e[s]))}]);const O=t.core.ns.selector("btn"),R=t.core.ns.selector("btns-group"),T=t.core.ns.selector("btns-group--equisized");new t.core.Initializer(R,[()=>{const e=document.querySelectorAll(T),s=[];for(let i=0;i<e.length;i++)s.push(new t.Equisized(O,e[i]))}]);const G=t.core.ns.selector("modal"),N=t.core.ns("modal"),B=t.core.ns("no-scroll"),H=t.core.ns("scroll-shadow"),F=t.core.ns.selector("modal__body"),$=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false" i])',"details>summary:first-of-type","details"].join(),M=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),W=(t,e)=>{if("hidden"===window.getComputedStyle(t).visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===window.getComputedStyle(t).display)return!1;t=t.parentElement}return!0};class K{constructor(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.current=null}get trapped(){return null!==this.element}trap(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()}wait(){W(this.element)?this.trapping():t.core.engine.renderer.next(this.waiting)}trapping(){if(!this.isTrapping)return;this.isTrapping=!1;const t=this.focusables;t.length&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),this.stunneds=[]}stun(t){for(const e of t.children)e!==this.element&&(e.contains(this.element)?this.stun(e):this.stunneds.push(new V(e)))}handle(t){if(9!==t.keyCode)return;const e=this.focusables;if(0===e.length)return;const s=e[0],i=e[e.length-1],n=e.indexOf(document.activeElement);t.shiftKey?!this.element.contains(document.activeElement)||n<1?(t.preventDefault(),i.focus()):(document.activeElement.tabIndex>0||e[n-1].tabIndex>0)&&(t.preventDefault(),e[n-1].focus()):this.element.contains(document.activeElement)&&n!==e.length-1&&-1!==n?document.activeElement.tabIndex>0&&(t.preventDefault(),e[n+1].focus()):(t.preventDefault(),s.focus())}get focusables(){let t=[...this.element.querySelectorAll($)];const e=[...document.documentElement.querySelectorAll('input[type="radio"]')];if(e.length){const s={};for(const t of e){const e=t.getAttribute("name");void 0===s[e]&&(s[e]=new j(e)),s[e].push(t)}t=t.filter((t=>{if("input"!==t.tagName.toLowerCase()||"radio"!==t.getAttribute("type").toLowerCase())return!0;const e=t.getAttribute("name");return s[e].keep(t)}))}const s=[...this.element.querySelectorAll(M)];s.sort(((t,e)=>t.tabIndex-e.tabIndex));const i=t.filter((t=>-1===s.indexOf(t)));return s.concat(i).filter((t=>"-1"!==t.tabIndex&&W(t,this.element)))}untrap(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),this.element=null,this.onUntrap&&this.onUntrap())}}class V{constructor(t){this.element=t,this.hidden=t.getAttribute("aria-hidden"),this.inert=t.getAttribute("inert"),this.element.setAttribute("aria-hidden",!0),this.element.setAttribute("inert","")}unstun(){null===this.hidden?this.element.removeAttribute("aria-hidden"):this.element.setAttribute("aria-hidden",this.hidden),null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)}}class j{constructor(t){this.name=t,this.buttons=[]}push(t){this.buttons.push(t),(t===document.activeElement||t.checked||void 0===this.selected)&&(this.selected=t)}keep(t){return this.selected===t}}class U extends t.core.DisclosuresGroup{constructor(){super(),this.trap=new K}apply(t,e){super.apply(t,e),null===this.current?this.trap.untrap():this.trap.trap(this.current.element)}}const Y=new U;class J extends t.core.Disclosure{constructor(t){super(t),this.body=this.element.querySelector(F),this.scrollDistance=0,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0),this.init(),this.resize(!0)}init(){this.element.addEventListener("click",this.click.bind(this)),this.keyListener=new t.KeyListener(this.element),this.keyListener.down(t.KeyListener.ESCAPE,this.conceal.bind(this),!0,!0),this.body&&(this.body.addEventListener("scroll",this.scrolling),window.addEventListener("resize",this.resizing))}click(t){this.body&&this.body!==t.target&&!this.body.contains(t.target)&&this.conceal()}gather(){Y.add(this)}disclose(t){return!!super.disclose(t)&&(this.resize(!0),this.handleScroll(!1),!0)}conceal(t,e){return!!super.conceal(t,e)&&(this.handleScroll(!0),!0)}handleScroll(e){e?(t.core.removeClass(document.documentElement,B),document.body.style.top="",window.scroll(0,this.scrollDistance)):(document.documentElement.classList.contains(B)||(this.scrollDistance=window.scrollY),document.body.style.top=-1*this.scrollDistance+"px",t.core.addClass(document.documentElement,B))}resize(e,s){this.body&&(this.body.scrollHeight>this.body.clientHeight?this.body.offsetHeight+this.body.scrollTop>=this.body.scrollHeight?t.core.removeClass(this.body,H):t.core.addClass(this.body,H):t.core.removeClass(this.body,H),this.isMedium=window.matchMedia("(min-width: 48em)").matches,e&&(this.isMedium?this.body.style.removeProperty("max-height"):(this.body.style.maxHeight=window.innerHeight-32+"px",t.core.engine.renderer.next((()=>{this.body.style.maxHeight=window.innerHeight-32+"px"})))))}static get type(){return t.core.DISCLOSURE_TYPES.opened}static get selector(){return N}get GroupConstructor(){return U}}t.Modal=J,t.ModalsGroup=U,t.FocusTrap=K;new t.core.Initializer(G,[()=>{J.build(document)}]);const Q=t.core.ns("nav"),X=t.core.ns("nav__list"),Z=t.core.ns("nav__item"),tt=t.core.ns("nav__item--align-right"),et=t.core.ns("menu");class st extends t.core.DisclosuresGroup{constructor(t,e){super(t,e),this.menus=[],this.navList=e.querySelector(`.${X}`),document.addEventListener("focusout",this.focusOut.bind(this)),window.addEventListener("resize",this.resize.bind(this)),window.addEventListener("orientationchange",this.resize.bind(this)),this.resize()}static get selector(){return Q}add(t){super.add(t),t.element.classList.contains(et)&&this.menus.push(new it(t,this.navList.getBoundingClientRect().right))}focusOut(t){requestAnimationFrame((()=>{null===this.current||this.current.hasFocus||(this.index=-1)}))}get index(){return super.index}set index(t){-1===t&&null!==this.current&&this.current.hasFocus&&this.current.focus(),super.index=t}resize(){const t=this.navList.getBoundingClientRect().right;for(const e of this.menus)e.place(t)}}class it{constructor(t,e){this.initialize(t),this.place(e)}initialize(t){this.element=t.element;for(const e of t.buttons)if(e.hasAttribute){this.button=e.element;break}let e=this.element.parentElement;for(;e;){if(e.classList.contains(Z)){this.item=e;break}e=e.parentElement}}place(e){const s=getComputedStyle(this.element),i=parseFloat(s.width);this.button.getBoundingClientRect().left+i>e?t.core.addClass(this.item,tt):t.core.removeClass(this.item,tt)}}t.Navigation=st,t.Collapse.register(Q,st);const nt=t.core.ns.attr("theme"),rt=t.core.ns.attr("transition");class ot{constructor(){this.init()}init(){if(this.root=document.documentElement,this.scheme=localStorage.getItem("scheme")?localStorage.getItem("scheme"):null,null===this.scheme){const t=this.root.getAttribute(nt);"dark"===t||"light"===t?this.scheme=t:window.matchMedia("(prefers-color-scheme: dark)").matches?(this.scheme="dark",localStorage.setItem("scheme","dark")):this.scheme="light"}"dark"===this.scheme?this.root.hasAttribute(rt)?(this.root.removeAttribute(rt),this.root.setAttribute(nt,"dark"),setTimeout((()=>{this.root.setAttribute(rt,"")}),300)):this.root.setAttribute(nt,"dark"):this.root.setAttribute(nt,"light"),this.observer=new MutationObserver(this.mutate.bind(this)),this.observer.observe(this.root,{attributes:!0})}mutate(t){t.forEach((t=>{if("attributes"===t.type&&t.attributeName===nt){const t=this.root.getAttribute(nt);"dark"===t?localStorage.setItem("scheme","dark"):"light"===t&&localStorage.setItem("scheme","light")}}))}}t.Scheme=ot;const ht=`input[name="${t.core.ns.selector("radios-theme","")}"]`,lt=t.core.ns.selector("switch-theme","#"),ct=t.core.ns.attr("theme");class at{constructor(){this.attributeName=ct,this.theme=null,this.radios=document.querySelectorAll(ht);for(var t=0;t<this.radios.length;t++)this.radios[t].addEventListener("change",this.change.bind(this));this.observer=new MutationObserver(this.mutate.bind(this)),this.observe(),this.apply()}observe(){this.observer.observe(document.documentElement,{attributes:!0})}mutate(t){t.forEach((t=>{"attributes"===t.type&&t.attributeName===this.attributeName&&this.apply()}))}apply(){const t=document.documentElement.getAttribute(this.attributeName);this.isApplying=!0;for(var e=0;e<this.radios.length;e++)this.radios[e].checked=this.radios[e].value===t;this.isApplying=!1}change(){this.isApplying||(this.observer&&this.observer.disconnect(),this.theme=document.querySelector(ht+":checked"),this.theme?document.documentElement.setAttribute(this.attributeName,this.theme.value):document.documentElement.removeAttribute(this.attributeName),this.observer&&this.observe())}}new t.core.Initializer(`:root[${nt}]`,[()=>{new ot}]),new t.core.Initializer(`${lt}`,[()=>{new at}]);const dt=t.core.ns("sidemenu"),ut=t.core.ns("sidemenu__list");t.Collapse.register(dt,ut);const mt=t.core.ns.selector("table"),pt=t.core.ns("table--no-scroll"),bt=t.core.ns("table--shadow"),gt=t.core.ns("table--shadow-left"),ft=t.core.ns("table--shadow-right");class yt{constructor(t){this.init(t)}init(e){this.table=e,this.table.setAttribute(t.core.ns.attr("js-table"),"true"),this.tableElem=this.table.querySelector("table"),this.tableContent=this.tableElem.querySelector("tbody"),this.isScrollable=this.tableContent.offsetWidth>this.tableElem.offsetWidth,this.caption=this.tableElem.querySelector("caption"),this.captionHeight=0;const s=this.change.bind(this);this.tableElem.addEventListener("scroll",s)}change(){const t=this.tableContent.offsetWidth>this.tableElem.offsetWidth;let e=this.tableElem.offsetWidth>this.table.offsetWidth;t||e?this.table.classList.contains(pt)||this.scroll():t!==this.isScrollable&&this.delete(),this.isScrollable=t,e=!1;const s=this.caption.getBoundingClientRect();this.table.style.setProperty("--table-offset",s.height+"px")}delete(){t.core.removeClass(this.table,ft),t.core.removeClass(this.table,gt),t.core.removeClass(this.table,bt),this.caption&&(this.tableElem.style.marginTop="",this.caption.style.top="",this.tableElem.style.marginBottom="",this.caption.style.bottom="")}scroll(){t.core.addClass(this.table,bt),this.setShadowPosition()}setShadowPosition(){const t=this.getScrollPosition("left"),e=this.getScrollPosition("right");"rtl"===document.documentElement.getAttribute("dir")?(this.setShadowVisibility("right",t),this.setShadowVisibility("left",e)):(this.setShadowVisibility("left",t),this.setShadowVisibility("right",e))}getScrollPosition(t){let e=1;switch("rtl"===document.documentElement.getAttribute("dir")&&(e=-1),t){case"left":return this.tableElem.scrollLeft*e;case"right":return this.tableContent.offsetWidth-this.tableElem.offsetWidth-this.tableElem.scrollLeft*e;default:return!1}}setShadowVisibility(e,s){s<=1?"left"===e?t.core.removeClass(this.table,gt):"right"===e&&t.core.removeClass(this.table,ft):"left"===e?t.core.addClass(this.table,gt):"right"===e&&t.core.addClass(this.table,ft)}}t.Table=yt;const wt=[],vt=()=>{for(let t=0;t<wt.length;t++)wt[t].change()};new t.core.Initializer(mt,[()=>{const t=document.querySelectorAll(mt);for(let e=0;e<t.length;e++)wt.push(new yt(t[e]));window.addEventListener("resize",vt),window.addEventListener("orientationchange",vt),vt()}]);class Et extends t.core.DisclosureButton{apply(t){super.apply(t),this.hasAttribute&&this.element.setAttribute("tabindex",t?"0":"-1")}}const xt=t.core.ns.selector("tabs"),Lt=t.core.ns("tabs"),At=t.core.ns("tabs__tab"),St=t.core.ns("tabs__panel"),Ct=t.core.ns("tabs__list");class _t extends t.core.DisclosuresGroup{constructor(e,s){super(e,s),this.list=s.querySelector(`.${Ct}`),s.addEventListener("transitionend",this.transitionend.bind(this)),this.init(),t.core.engine.renderer.add(this.render.bind(this))}static get selector(){return Lt}transitionend(t){this.element.style.transition="none"}init(){this.keyListener=new t.KeyListener(this.element),this.keyListener.down(t.KeyListener.RIGHT,this.arrowRightPress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.LEFT,this.arrowLeftPress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.HOME,this.homePress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.END,this.endPress.bind(this),!0,!0)}arrowRightPress(){document.activeElement.classList.contains(At)&&(this.index<this.length-1?this.index++:this.index=0,this.focus())}arrowLeftPress(){document.activeElement.classList.contains(At)&&(this.index>0?this.index--:this.index=this.length-1,this.focus())}homePress(){document.activeElement.classList.contains(At)&&(this.index=0,this.focus())}endPress(){document.activeElement.classList.contains(At)&&(this.index=this.length-1,this.focus())}focus(){this.current&&this.current.focus()}apply(){for(let t=0;t<this._index;t++)this.members[t].translate(-1);this.current.element.style.transition="",this.current.element.style.transform="";for(let t=this._index+1;t<this.length;t++)this.members[t].translate(1);this.element.style.transition=""}add(t){if(super.add(t),1===this.length||t.disclosed)this.current=t;else{const e=this.members.indexOf(t);this._index>-1&&this._index!==e&&t.translate(e<this._index?-1:1,!0)}}render(){if(null===this.current)return;const t=Math.round(this.current.element.offsetHeight);this.panelHeight!==t&&(this.panelHeight=t,this.element.style.height=this.panelHeight+this.list.offsetHeight+"px")}}class kt extends t.core.Disclosure{static get type(){return t.core.DISCLOSURE_TYPES.select}static get selector(){return St}get GroupConstructor(){return _t}buttonFactory(t){return new Et(t,this)}translate(t,e){this.element.style.transition=e?"none":"",this.element.style.transform=`translate(${100*t}%)`}reset(){this.group.index=0}}t.Tab=kt,t.TabButton=Et,t.TabsGroup=_t;new t.core.Initializer(xt,[()=>{kt.build(document)}]);const qt=t.core.ns.selector("header"),zt=t.core.ns.selector("header__search"),It=t.core.ns.selector("header__menu"),Dt=t.core.ns.selector("header__tools-links"),Pt=t.core.ns.selector("header__menu-links"),Ot=`${Dt} ${t.core.ns.selector("links-group")}`;class Rt{constructor(t){this.header=t||document.querySelector(qt),this.modals=[],this.init()}getModal(e){const s=this.header.querySelector(e);if(!s)return;const i=t.core.Instance.getInstances(s,t.Modal);i&&i.length&&this.modals.push(new Tt(i[0]))}init(){this.getModal(zt),this.getModal(It),this.linksGroup=this.header.querySelector(Ot),this.toolsLinks=this.header.querySelector(Dt),this.menuLinks=this.header.querySelector(Pt),this.changing=this.change.bind(this),window.addEventListener("resize",this.changing),this.change()}change(){this.isLarge=window.matchMedia("(min-width: 62em)").matches,this.isLarge?this.modals.forEach((t=>t.disable())):this.modals.forEach((t=>t.enable())),null!==this.linksGroup&&(this.isLarge?this.toolsLinks.appendChild(this.linksGroup):this.menuLinks.appendChild(this.linksGroup))}}class Tt{constructor(t){this.modal=t}enable(){this.modal.element.setAttribute("role","dialog"),this.modal.element.setAttribute("aria-labelledby",this.modal.primary.element.id)}disable(){this.modal.conceal(),this.modal.element.removeAttribute("role"),this.modal.element.removeAttribute("aria-labelledby")}}t.Header=Rt;new t.core.Initializer(qt,[()=>{const t=Array.prototype.slice.call(document.querySelectorAll(qt)),e=[];for(const s of t)e.push(new Rt(s))}]);
+//# sourceMappingURL=dsfr.module.min.js.map
diff --git a/static/dsfr.nomodule.min.js b/static/dsfr.nomodule.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..502279d085758ecb4ca746d3b719d16a5755a24b
--- /dev/null
+++ b/static/dsfr.nomodule.min.js
@@ -0,0 +1,3 @@
+/*! DSFR v1.1.0 | SPDX-License-Identifier: MIT | License-Filename: LICENCE.md | restricted use (see terms and conditions) */
+!function(){"use strict";var t=window.dsfr||{core:{}};window.dsfr=t;var e=function(t){return"fr-"+t};e.selector=function(t,i){return void 0===i&&(i="."),""+i+e(t)},(e.attr=function(t,i,n){return"data-"+e(t)}).selector=function(t,i){var n=e.attr(t);return void 0!==i&&(n+='="'+i+'"'),"["+n+"]"},e.event=function(t){return"dsfr."+t};var i=function(t,e,i){"."===e.charAt(0)&&(e=e.substr(1));var n=t.className.split(" "),s=n.indexOf(e);!0===i?s>-1&&n.splice(s,1):-1===s&&n.push(e),t.className=n.join(" ")},n=function(t,e){return i(t,e)},s=function(t,e){return i(t,e,!0)},o=function(){this.closures=[],this.nexts=[],this.rendering=this.render.bind(this),this.render()};o.prototype.add=function(t){var e=this;this.closures.push(t);return function(){var i=e.closures.indexOf(t);-1!==i&&e.closures.splice(i,1)}},o.prototype.next=function(t,e){e=void 0===e?0:e-1,void 0===this.nexts[e]&&(this.nexts[e]=[]),this.nexts[e].push(t)},o.prototype.render=function(){window.requestAnimationFrame(this.rendering);for(var t=0,e=this.closures;t<e.length;t+=1){e[t].call()}var i=this.nexts.shift();if(i)for(var n=0,s=i;n<s.length;n+=1){s[n].call()}};var r=function(){this.renderer=new o};r.prototype.register=function(t,e){},r.prototype.start=function(){},r.prototype.stop=function(){};var c=new r,h=function(t,e){this.selector=t,this.builders=e,this.instances=[],"loading"!==document.readyState?window.requestAnimationFrame(this.start.bind(this)):document.addEventListener("DOMContentLoaded",this.start.bind(this))};h.prototype.start=function(){if(!(this.instances.length>0)&&document.querySelectorAll(this.selector).length>0)for(var t=0;t<this.builders.length;t++)this.instances.push(this.builders[t]())};var a={},l={},u=0,d=function(t){for(var e in l)if(l[e]===t)return e;var i=++u;return l[i]=t,i},p=function(t,e,i){var n=d(t);a[n]||(a[n]=[]),a[n].push(this),this.element=t,this.id=t.id,this._isRendering=!1,this._isResizing=!1,this.listeners={},this.isResizing=e,this.isRendering=i},f={isRendering:{configurable:!0},isResizing:{configurable:!0}};p.prototype.dispatch=function(t,e){var i=new CustomEvent(t,e);this.element.dispatchEvent(i)},p.prototype.listen=function(t,e){this.listeners[t]||(this.listeners[t]=[]),this.listeners[t].indexOf(e)>-1||(this.listeners[t].push(e),this.element.addEventListener(t,e))},p.prototype.unlisten=function(t,e){if(t)if(e){if(!this.listeners[t])return;var i=this.listeners[t].indexOf(e);i>-1&&this.listeners[t].splice(i,1),this.element.removeEventListener(e)}else{if(!this.listeners[t])return;for(var n=0,s=this.listeners[t];n<s.length;n+=1){var o=s[n];this.element.removeEventListener(o)}this.listeners[t].length=0}else for(var r in this.listeners)this.unlisten(r)},f.isRendering.get=function(){return this._isRendering},f.isRendering.set=function(t){this._isRendering!==t&&(this._isRendering=t)},p.prototype.render=function(){},f.isResizing.get=function(){return this._isResizing},f.isResizing.set=function(t){this._isResizing!==t&&(this._isResizing=t)},p.prototype.resize=function(){},p.prototype.destroy=function(){},p.getInstances=function(t,e){var i=d(t);return a[i]?e?a[i].filter((function(t){return t instanceof e})):a[i]:null},Object.defineProperties(p.prototype,f);var m=e.attr("group"),y=[],b=function(t,e){this.id=t,this.element=e,this.members=[],this._index=-1,this._current=null,y.push(this)},g={length:{configurable:!0},index:{configurable:!0},current:{configurable:!0},hasFocus:{configurable:!0}},v={selector:{configurable:!0}};b.getGroupById=function(t){for(var e=0,i=y;e<i.length;e+=1){var n=i[e];if(n.constructor===this&&n.id===t)return n}return new this(t)},b.getGroupByElement=function(t){for(var e=0,i=y;e<i.length;e+=1){var n=i[e];if(n.element===t)return n}return new this(!1,t)},b.groupById=function(t,e){var i=t.element.getAttribute(m);null!==i&&e.getGroupById(i).add(t)},b.groupByParent=function(t,e,i){if(void 0===i&&(i=e.selector),""!==i)for(var n=t.element.parentElement;n;){if(n.classList.contains(t.constructor.selector))return;if(n.classList.contains(i))return void e.getGroupByElement(n).add(t);n=n.parentElement}},v.selector.get=function(){return""},b.prototype.add=function(t){if(-1===this.members.indexOf(t))switch(this.members.push(t),t.setGroup(this),!0){case null!==this.current:case!(t.disclosed||t.primary&&t.primary.disclosed):t.disclosed=!1;break;default:this._current=t,this._index=this.members.indexOf(t),t.disclosed=!0}},g.length.get=function(){return this.members.length},g.index.get=function(){return this._index},g.index.set=function(t){t<-1||t>=this.length||this._index===t||(null!==this.current&&this.current.conceal(!0,!0),this._index=t,this._current=this._index>-1?this.members[this._index]:null,null!==this.current&&this.current.disclose(!0),this.apply())},g.current.get=function(){return this._current},g.current.set=function(t){this.index=this.members.indexOf(t)},g.hasFocus.get=function(){return void 0===this.current?null:this.current.hasFocus},b.prototype.apply=function(){},Object.defineProperties(b.prototype,g),Object.defineProperties(b,v);var w=function(t,e){this.element=t,this.disclosure=e,this.hasAttribute=this.element.hasAttribute(this.disclosure.attributeName),this.element.addEventListener("click",this.click.bind(this)),this.observer=new MutationObserver(this.mutate.bind(this)),this.observe()},E={disclosed:{configurable:!0},hasFocus:{configurable:!0}};w.prototype.observe=function(){this.observer.observe(this.element,{attributes:!0})},w.prototype.click=function(t){this.disclosure.change(this.hasAttribute)},w.prototype.mutate=function(t){var e=this;t.forEach((function(t){"attributes"===t.type&&t.attributeName===e.disclosure.attributeName&&e.disclosure.change(e.disclosed)}))},w.prototype.apply=function(t){this.hasAttribute&&(this.observer&&this.observer.disconnect(),this.element.setAttribute(this.disclosure.attributeName,t),this.observer&&this.observe())},E.disclosed.get=function(){return"true"===this.element.getAttribute(this.disclosure.attributeName)},E.hasFocus.get=function(){return this.element===document.activeElement},Object.defineProperties(w.prototype,E);var _=e.event("DISCLOSE"),x=e.event("CONCEAL"),L=[],A=function(t){function i(i){t.call(this,i),this.buttons=[],this._selector=this.constructor.selector,this.modifier=this._selector+"--"+this.type.id,this.attributeName=this.type.ariaState?"aria-"+this.type.id:e.attr(this.type.id),this.pristine=!0;var n=document.querySelectorAll(this.type.ariaControls?'[aria-controls="'+this.id+'"]':e.attr.selector("controls",this.id));if(n.length>0)for(var s=0;s<n.length;s++)this.addButton(n[s]);this.disclosed=this.primary&&this.primary.disclosed,this.gather()}t&&(i.__proto__=t),i.prototype=Object.create(t&&t.prototype),i.prototype.constructor=i;var o={type:{configurable:!0},GroupConstructor:{configurable:!0},disclosed:{configurable:!0},buttonHasFocus:{configurable:!0},hasFocus:{configurable:!0}},r={type:{configurable:!0},selector:{configurable:!0}};return i.prototype.gather=function(){this.group||(b.groupById(this,this.GroupConstructor),b.groupByParent(this,this.GroupConstructor))},i.build=function(t){for(var e=0,i=Array.prototype.slice.call(t.querySelectorAll("."+this.selector));e<i.length;e+=1){var n=i[e];L.push(new this(n))}},o.type.get=function(){return this.constructor.type},r.type.get=function(){return null},r.selector.get=function(){return""},i.prototype.addButton=function(t){var e=this.buttonFactory(t);e.hasAttribute&&(void 0===this.primary?this.primary=e:e.apply(this.primary.disclosed)),this.buttons.push(e)},o.GroupConstructor.get=function(){return b},i.prototype.buttonFactory=function(t){return new w(t,this)},i.prototype.disclose=function(t){return!this.disclosed&&(this.pristine=!1,this.disclosed=!0,t||void 0===this.group||(this.group.current=this),!0)},i.prototype.conceal=function(t,e){if(!this.disclosed)return!1;this.pristine=!1,this.disclosed=!1,e||this.focus(),t||void 0===this.group||(this.group.current=null);for(var i=0,n=L;i<n.length;i+=1){var s=n[i];s!==this&&this.element.contains(s.element)&&s.reset()}return!0},o.disclosed.get=function(){return this._disclosed},o.disclosed.set=function(t){if(this._disclosed!==t){this.dispatch(t?_:x,this.type),this._disclosed=t,t?n(this.element,this.modifier):s(this.element,this.modifier);for(var e=0;e<this.buttons.length;e++)this.buttons[e].apply(t)}},i.prototype.reset=function(){},i.prototype.change=function(t){if(this.constructor.type.canConceal)switch(!0){case!t:case this.disclosed:this.conceal();break;default:this.disclose()}else this.disclose()},i.prototype.setGroup=function(t){this.group=t},o.buttonHasFocus.get=function(){return!!this.buttons.some((function(t){return t.hasFocus}))},o.hasFocus.get=function(){return this.element===document.activeElement||(this.element.querySelectorAll(":focus").length>0||this.buttonHasFocus)},i.prototype.focus=function(){for(var t=0;t<this.buttons.length;t++){var e=this.buttons[t];if(e.hasAttribute)return void e.element.focus()}},Object.defineProperties(i.prototype,o),Object.defineProperties(i,r),i}(p);A.DISCLOSE_EVENT=_,A.CONCEAL_EVENT=x;var S={expand:{id:"expanded",ariaState:!0,ariaControls:!0,canConceal:!0},select:{id:"selected",ariaState:!0,ariaControls:!0,canConceal:!1},opened:{id:"opened",ariaState:!1,ariaControls:!0,canConceal:!0}},C=function(t){this.element=t,this.collections={}};C.prototype._add=function(t,e){void 0===this.collections[t]&&(this.collections[t]=new k(t,this.element)),this.collections[t].add(e)},C.prototype.down=function(t,e,i,n){this._add("down",new O(t,e,i,n))},C.prototype.up=function(t,e,i,n){this._add("up",new O(t,e,i,n))},C.prototype.dispose=function(){for(var t=0,e=this.collections;t<e.length;t+=1){e[t].dispose()}this.types=null};var k=function(t,e){this.type=t,this.element=e,this.actions=[],this.binding=this.handle.bind(this),this.element.addEventListener("key"+t,this.binding)};k.prototype.add=function(t){this.actions.push(t)},k.prototype.handle=function(t){for(var e=0,i=this.actions;e<i.length;e+=1){i[e].handle(t)}},k.prototype.dispose=function(){this.element.removeEventListener("key"+this.type,this.binding),this.actions=null};var O=function(t,e,i,n){this.key=t,this.closure=e,this.preventDefault=!0===i,this.stopPropagation=!0===n};O.prototype.handle=function(t){t.keyCode===this.key&&(this.closure(t),this.preventDefault&&t.preventDefault(),this.stopPropagation&&t.stopPropagation())},C.TAB=9,C.ESCAPE=27,C.END=35,C.HOME=36,C.LEFT=37,C.UP=38,C.RIGHT=39,C.DOWN=40;var P=e("collapse"),q=[],z={},I=function(t){function e(e){t.call(this,e),q.push(this),this.requesting=this.request.bind(this),e.addEventListener("transitionend",this.transitionend.bind(this)),this.disclosed&&this.unbound()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={type:{configurable:!0},selector:{configurable:!0}};return e.prototype.gatherByAscendants=function(){if(!this.group)for(var t in z)for(var e=this.element.parentElement;e;){if(e.classList.contains(t))return void("string"==typeof z[t]?b.groupByParent(this,b,z[t]):b.groupByParent(this,z[t]));e=e.parentElement}},e.prototype.gather=function(){this.gatherByAscendants(),t.prototype.gather.call(this)},i.type.get=function(){return S.expand},i.selector.get=function(){return P},e.register=function(t,e){z[t]=e;for(var i=0,n=q;i<n.length;i+=1){n[i].gatherByAscendants()}},e.prototype.transitionend=function(t){this.disclosed||(this.element.style.maxHeight="")},e.prototype.unbound=function(){this.element.style.maxHeight="none"},e.prototype.disclose=function(e){var i=this;this.disclosed||(this.unbound(),this.adjust(),this.requested=function(){t.prototype.disclose.call(i,e)},window.requestAnimationFrame(this.requesting))},e.prototype.conceal=function(e,i){var n=this;this.disclosed&&(this.adjust(),this.requested=function(){t.prototype.conceal.call(n,e,i)},window.requestAnimationFrame(this.requesting))},e.prototype.request=function(){this.requested&&this.requested(),this.requested=null},e.prototype.adjust=function(){this.element.style.setProperty("--collapser","none");var t=this.element.offsetHeight;this.element.style.setProperty("--collapse",-t+"px"),this.element.style.setProperty("--collapser","")},e.prototype.reset=function(){this.pristine||(this.disclosed=!1)},Object.defineProperties(e,i),e}(A),j=function(t,e){this.selector=t,this.group=e,this.elements=this.group.querySelectorAll(this.selector),this.maxWidth=0,this.changing=this.change.bind(this),window.addEventListener("resize",this.changing),window.addEventListener("load",this.changing)};j.prototype.change=function(){this.reset();for(var t=0;t<this.elements.length;t++){var e=this._getWidth(this.elements[t]);e>this.maxWidth&&(this.maxWidth=e)}this.apply()},j.prototype.apply=function(){for(var t=0;t<this.elements.length;t++)this.elements[t].style.width=this.maxWidth+1+"px"},j.prototype.reset=function(){for(var t=0;t<this.elements.length;t++)this.elements[t].style.width="auto";this.maxWidth=0},j.prototype._getWidth=function(t){var e=t.offsetWidth,i=getComputedStyle(t);return e+=parseInt(i.marginLeft)+parseInt(i.marginRight)},t.core.ns=e,t.core.addClass=n,t.core.removeClass=s,t.core.engine=c,t.core.Instance=p,t.core.Initializer=h,t.core.Disclosure=A,t.core.DisclosureButton=w,t.core.DisclosuresGroup=b,t.core.DISCLOSURE_TYPES=S,t.KeyListener=C,t.Collapse=I,t.Equisized=j;new h("."+P,[function(){I.build(document)}]);var D=t.core.ns("accordions-group"),G=t.core.ns("accordion"),R=function(t){function e(){t.apply(this,arguments)}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={selector:{configurable:!0}};return i.selector.get=function(){return D},Object.defineProperties(e,i),e}(t.core.DisclosuresGroup);t.AccordionsGroup=R,t.Collapse.register(G,R);var T=t.core.ns.selector("breadcrumb")+" "+t.core.ns.selector("collapse"),F=function(e){function i(i){e.call(this,i),this.collapse=t.core.Instance.getInstances(i,t.Collapse)[0],this.links=[].concat(this.element.querySelectorAll("a[href]")),this.count=0,this.links.length&&(this.listen(t.core.Disclosure.DISCLOSE_EVENT,this.focus.bind(this)),this.resizing=this.resize.bind(this),window.addEventListener("resize",this.resizing))}return e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i,i.prototype.focus=function(){var e=this;this.links[0].focus(),t.core.engine.renderer.next((function(){e.verify()}))},i.prototype.verify=function(){this.count++,this.count>100||document.activeElement!==this.links[0]&&this.focus()},i.prototype.resize=function(){window.matchMedia("(min-width: 48em)").matches?this.collapse.buttons[0]===document.activeElement&&this.links.focus():this.links.indexOf(document.activeElement)>-1&&this.collapse.focus()},i}(t.core.Instance);new t.core.Initializer(T,[function(){for(var t=[],e=document.querySelectorAll(T),i=0;i<e.length;i++)t.push(new F(e[i]))}]);var H=t.core.ns.selector("btn"),N=t.core.ns.selector("btns-group"),B=t.core.ns.selector("btns-group--equisized");new t.core.Initializer(N,[function(){for(var e=document.querySelectorAll(B),i=[],n=0;n<e.length;n++)i.push(new t.Equisized(H,e[n]))}]);var M=t.core.ns.selector("modal"),W=t.core.ns("modal"),K=t.core.ns("no-scroll"),V=t.core.ns("scroll-shadow"),U=t.core.ns.selector("modal__body"),Y=['[tabindex="0"]',"a[href]","button:not([disabled])","input:not([disabled])","select:not([disabled])","textarea:not([disabled])","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false" i])',"details>summary:first-of-type","details"].join(),J=['[tabindex]:not([tabindex="-1"]):not([tabindex="0"])'].join(),Q=function(t,e){if("hidden"===window.getComputedStyle(t).visibility)return!1;for(void 0===e&&(e=t);e.contains(t);){if("none"===window.getComputedStyle(t).display)return!1;t=t.parentElement}return!0},X=function(t,e){this.element=null,this.activeElement=null,this.onTrap=t,this.onUntrap=e,this.waiting=this.wait.bind(this),this.handling=this.handle.bind(this),this.current=null},Z={trapped:{configurable:!0},focusables:{configurable:!0}};Z.trapped.get=function(){return null!==this.element},X.prototype.trap=function(t){this.trapped&&this.untrap(),this.element=t,this.isTrapping=!0,this.wait(),this.onTrap&&this.onTrap()},X.prototype.wait=function(){Q(this.element)?this.trapping():t.core.engine.renderer.next(this.waiting)},X.prototype.trapping=function(){if(this.isTrapping){this.isTrapping=!1;var t=this.focusables;t.length&&t[0].focus(),this.element.setAttribute("aria-modal",!0),window.addEventListener("keydown",this.handling),this.stunneds=[]}},X.prototype.stun=function(t){for(var e=0,i=t.children;e<i.length;e+=1){var n=i[e];n!==this.element&&(n.contains(this.element)?this.stun(n):this.stunneds.push(new $(n)))}},X.prototype.handle=function(t){if(9===t.keyCode){var e=this.focusables;if(0!==e.length){var i=e[0],n=e[e.length-1],s=e.indexOf(document.activeElement);t.shiftKey?!this.element.contains(document.activeElement)||s<1?(t.preventDefault(),n.focus()):(document.activeElement.tabIndex>0||e[s-1].tabIndex>0)&&(t.preventDefault(),e[s-1].focus()):this.element.contains(document.activeElement)&&s!==e.length-1&&-1!==s?document.activeElement.tabIndex>0&&(t.preventDefault(),e[s+1].focus()):(t.preventDefault(),i.focus())}}},Z.focusables.get=function(){var t=this,e=[].concat(this.element.querySelectorAll(Y)),i=[].concat(document.documentElement.querySelectorAll('input[type="radio"]'));if(i.length){for(var n={},s=0,o=i;s<o.length;s+=1){var r=o[s],c=r.getAttribute("name");void 0===n[c]&&(n[c]=new tt(c)),n[c].push(r)}e=e.filter((function(t){if("input"!==t.tagName.toLowerCase()||"radio"!==t.getAttribute("type").toLowerCase())return!0;var e=t.getAttribute("name");return n[e].keep(t)}))}var h=[].concat(this.element.querySelectorAll(J));h.sort((function(t,e){return t.tabIndex-e.tabIndex}));var a=e.filter((function(t){return-1===h.indexOf(t)}));return h.concat(a).filter((function(e){return"-1"!==e.tabIndex&&Q(e,t.element)}))},X.prototype.untrap=function(){this.trapped&&(this.isTrapping=!1,this.element.removeAttribute("aria-modal"),window.removeEventListener("keydown",this.handling),this.element=null,this.onUntrap&&this.onUntrap())},Object.defineProperties(X.prototype,Z);var $=function(t){this.element=t,this.hidden=t.getAttribute("aria-hidden"),this.inert=t.getAttribute("inert"),this.element.setAttribute("aria-hidden",!0),this.element.setAttribute("inert","")};$.prototype.unstun=function(){null===this.hidden?this.element.removeAttribute("aria-hidden"):this.element.setAttribute("aria-hidden",this.hidden),null===this.inert?this.element.removeAttribute("inert"):this.element.setAttribute("inert",this.inert)};var tt=function(t){this.name=t,this.buttons=[]};tt.prototype.push=function(t){this.buttons.push(t),(t===document.activeElement||t.checked||void 0===this.selected)&&(this.selected=t)},tt.prototype.keep=function(t){return this.selected===t};var et=function(t){function e(){t.call(this),this.trap=new X}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.apply=function(e,i){t.prototype.apply.call(this,e,i),null===this.current?this.trap.untrap():this.trap.trap(this.current.element)},e}(t.core.DisclosuresGroup),it=new et,nt=function(e){function i(t){e.call(this,t),this.body=this.element.querySelector(U),this.scrollDistance=0,this.scrolling=this.resize.bind(this,!1),this.resizing=this.resize.bind(this,!0),this.init(),this.resize(!0)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var n={GroupConstructor:{configurable:!0}},s={type:{configurable:!0},selector:{configurable:!0}};return i.prototype.init=function(){this.element.addEventListener("click",this.click.bind(this)),this.keyListener=new t.KeyListener(this.element),this.keyListener.down(t.KeyListener.ESCAPE,this.conceal.bind(this),!0,!0),this.body&&(this.body.addEventListener("scroll",this.scrolling),window.addEventListener("resize",this.resizing))},i.prototype.click=function(t){this.body&&this.body!==t.target&&!this.body.contains(t.target)&&this.conceal()},i.prototype.gather=function(){it.add(this)},i.prototype.disclose=function(t){return!!e.prototype.disclose.call(this,t)&&(this.resize(!0),this.handleScroll(!1),!0)},i.prototype.conceal=function(t,i){return!!e.prototype.conceal.call(this,t,i)&&(this.handleScroll(!0),!0)},i.prototype.handleScroll=function(e){e?(t.core.removeClass(document.documentElement,K),document.body.style.top="",window.scroll(0,this.scrollDistance)):(document.documentElement.classList.contains(K)||(this.scrollDistance=window.scrollY),document.body.style.top=-1*this.scrollDistance+"px",t.core.addClass(document.documentElement,K))},i.prototype.resize=function(e,i){var n=this;this.body&&(this.body.scrollHeight>this.body.clientHeight?this.body.offsetHeight+this.body.scrollTop>=this.body.scrollHeight?t.core.removeClass(this.body,V):t.core.addClass(this.body,V):t.core.removeClass(this.body,V),this.isMedium=window.matchMedia("(min-width: 48em)").matches,e&&(this.isMedium?this.body.style.removeProperty("max-height"):(this.body.style.maxHeight=window.innerHeight-32+"px",t.core.engine.renderer.next((function(){n.body.style.maxHeight=window.innerHeight-32+"px"})))))},s.type.get=function(){return t.core.DISCLOSURE_TYPES.opened},s.selector.get=function(){return W},n.GroupConstructor.get=function(){return et},Object.defineProperties(i.prototype,n),Object.defineProperties(i,s),i}(t.core.Disclosure);t.Modal=nt,t.ModalsGroup=et,t.FocusTrap=X;new t.core.Initializer(M,[function(){nt.build(document)}]);var st=t.core.ns("nav"),ot=t.core.ns("nav__list"),rt=t.core.ns("nav__item"),ct=t.core.ns("nav__item--align-right"),ht=t.core.ns("menu"),at=function(t){function e(e,i){t.call(this,e,i),this.menus=[],this.navList=i.querySelector("."+ot),document.addEventListener("focusout",this.focusOut.bind(this)),window.addEventListener("resize",this.resize.bind(this)),window.addEventListener("orientationchange",this.resize.bind(this)),this.resize()}t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e;var i={index:{configurable:!0}},n={selector:{configurable:!0}};return n.selector.get=function(){return st},e.prototype.add=function(e){t.prototype.add.call(this,e),e.element.classList.contains(ht)&&this.menus.push(new lt(e,this.navList.getBoundingClientRect().right))},e.prototype.focusOut=function(t){var e=this;requestAnimationFrame((function(){null===e.current||e.current.hasFocus||(e.index=-1)}))},i.index.get=function(){return t.prototype.index},i.index.set=function(e){-1===e&&null!==this.current&&this.current.hasFocus&&this.current.focus(),t.prototype.index=e},e.prototype.resize=function(){for(var t=this.navList.getBoundingClientRect().right,e=0,i=this.menus;e<i.length;e+=1){i[e].place(t)}},Object.defineProperties(e.prototype,i),Object.defineProperties(e,n),e}(t.core.DisclosuresGroup),lt=function(t,e){this.initialize(t),this.place(e)};lt.prototype.initialize=function(t){this.element=t.element;for(var e=0,i=t.buttons;e<i.length;e+=1){var n=i[e];if(n.hasAttribute){this.button=n.element;break}}for(var s=this.element.parentElement;s;){if(s.classList.contains(rt)){this.item=s;break}s=s.parentElement}},lt.prototype.place=function(e){var i=getComputedStyle(this.element),n=parseFloat(i.width);this.button.getBoundingClientRect().left+n>e?t.core.addClass(this.item,ct):t.core.removeClass(this.item,ct)},t.Navigation=at,t.Collapse.register(st,at);var ut=t.core.ns.attr("theme"),dt=t.core.ns.attr("transition"),pt=function(){this.init()};pt.prototype.init=function(){var t=this;if(this.root=document.documentElement,this.scheme=localStorage.getItem("scheme")?localStorage.getItem("scheme"):null,null===this.scheme){var e=this.root.getAttribute(ut);"dark"===e||"light"===e?this.scheme=e:window.matchMedia("(prefers-color-scheme: dark)").matches?(this.scheme="dark",localStorage.setItem("scheme","dark")):this.scheme="light"}"dark"===this.scheme?this.root.hasAttribute(dt)?(this.root.removeAttribute(dt),this.root.setAttribute(ut,"dark"),setTimeout((function(){t.root.setAttribute(dt,"")}),300)):this.root.setAttribute(ut,"dark"):this.root.setAttribute(ut,"light"),this.observer=new MutationObserver(this.mutate.bind(this)),this.observer.observe(this.root,{attributes:!0})},pt.prototype.mutate=function(t){var e=this;t.forEach((function(t){if("attributes"===t.type&&t.attributeName===ut){var i=e.root.getAttribute(ut);"dark"===i?localStorage.setItem("scheme","dark"):"light"===i&&localStorage.setItem("scheme","light")}}))},t.Scheme=pt;var ft='input[name="'+t.core.ns.selector("radios-theme","")+'"]',mt=t.core.ns.selector("switch-theme","#"),yt=t.core.ns.attr("theme"),bt=function(){this.attributeName=yt,this.theme=null,this.radios=document.querySelectorAll(ft);for(var t=0;t<this.radios.length;t++)this.radios[t].addEventListener("change",this.change.bind(this));this.observer=new MutationObserver(this.mutate.bind(this)),this.observe(),this.apply()};bt.prototype.observe=function(){this.observer.observe(document.documentElement,{attributes:!0})},bt.prototype.mutate=function(t){var e=this;t.forEach((function(t){"attributes"===t.type&&t.attributeName===e.attributeName&&e.apply()}))},bt.prototype.apply=function(){var t=document.documentElement.getAttribute(this.attributeName);this.isApplying=!0;for(var e=0;e<this.radios.length;e++)this.radios[e].checked=this.radios[e].value===t;this.isApplying=!1},bt.prototype.change=function(){this.isApplying||(this.observer&&this.observer.disconnect(),this.theme=document.querySelector(ft+":checked"),this.theme?document.documentElement.setAttribute(this.attributeName,this.theme.value):document.documentElement.removeAttribute(this.attributeName),this.observer&&this.observe())};new t.core.Initializer(":root["+ut+"]",[function(){new pt}]),new t.core.Initializer(""+mt,[function(){new bt}]);var gt=t.core.ns("sidemenu"),vt=t.core.ns("sidemenu__list");t.Collapse.register(gt,vt);var wt=t.core.ns.selector("table"),Et=t.core.ns("table--no-scroll"),_t="left",xt="right",Lt=t.core.ns("table--shadow"),At=t.core.ns("table--shadow-left"),St=t.core.ns("table--shadow-right"),Ct=function(t){this.init(t)};Ct.prototype.init=function(e){this.table=e,this.table.setAttribute(t.core.ns.attr("js-table"),"true"),this.tableElem=this.table.querySelector("table"),this.tableContent=this.tableElem.querySelector("tbody"),this.isScrollable=this.tableContent.offsetWidth>this.tableElem.offsetWidth,this.caption=this.tableElem.querySelector("caption"),this.captionHeight=0;var i=this.change.bind(this);this.tableElem.addEventListener("scroll",i)},Ct.prototype.change=function(){var t=this.tableContent.offsetWidth>this.tableElem.offsetWidth,e=this.tableElem.offsetWidth>this.table.offsetWidth;t||e?this.table.classList.contains(Et)||this.scroll():t!==this.isScrollable&&this.delete(),this.isScrollable=t,e=!1;var i=this.caption.getBoundingClientRect();this.table.style.setProperty("--table-offset",i.height+"px")},Ct.prototype.delete=function(){t.core.removeClass(this.table,St),t.core.removeClass(this.table,At),t.core.removeClass(this.table,Lt),this.caption&&(this.tableElem.style.marginTop="",this.caption.style.top="",this.tableElem.style.marginBottom="",this.caption.style.bottom="")},Ct.prototype.scroll=function(){t.core.addClass(this.table,Lt),this.setShadowPosition()},Ct.prototype.setShadowPosition=function(){var t=this.getScrollPosition(_t),e=this.getScrollPosition(xt);"rtl"===document.documentElement.getAttribute("dir")?(this.setShadowVisibility(xt,t),this.setShadowVisibility(_t,e)):(this.setShadowVisibility(_t,t),this.setShadowVisibility(xt,e))},Ct.prototype.getScrollPosition=function(t){var e=1;switch("rtl"===document.documentElement.getAttribute("dir")&&(e=-1),t){case _t:return this.tableElem.scrollLeft*e;case xt:return this.tableContent.offsetWidth-this.tableElem.offsetWidth-this.tableElem.scrollLeft*e;default:return!1}},Ct.prototype.setShadowVisibility=function(e,i){i<=1?e===_t?t.core.removeClass(this.table,At):e===xt&&t.core.removeClass(this.table,St):e===_t?t.core.addClass(this.table,At):e===xt&&t.core.addClass(this.table,St)},t.Table=Ct;var kt=[],Ot=function(){for(var t=0;t<kt.length;t++)kt[t].change()};new t.core.Initializer(wt,[function(){for(var t=document.querySelectorAll(wt),e=0;e<t.length;e++)kt.push(new Ct(t[e]));window.addEventListener("resize",Ot),window.addEventListener("orientationchange",Ot),Ot()}]);var Pt=function(t){function e(){t.apply(this,arguments)}return t&&(e.__proto__=t),e.prototype=Object.create(t&&t.prototype),e.prototype.constructor=e,e.prototype.apply=function(e){t.prototype.apply.call(this,e),this.hasAttribute&&this.element.setAttribute("tabindex",e?"0":"-1")},e}(t.core.DisclosureButton),qt=t.core.ns.selector("tabs"),zt=t.core.ns("tabs"),It=t.core.ns("tabs__tab"),jt=t.core.ns("tabs__panel"),Dt=t.core.ns("tabs__list"),Gt=function(e){function i(i,n){e.call(this,i,n),this.list=n.querySelector("."+Dt),n.addEventListener("transitionend",this.transitionend.bind(this)),this.init(),t.core.engine.renderer.add(this.render.bind(this))}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var n={selector:{configurable:!0}};return n.selector.get=function(){return zt},i.prototype.transitionend=function(t){this.element.style.transition="none"},i.prototype.init=function(){this.keyListener=new t.KeyListener(this.element),this.keyListener.down(t.KeyListener.RIGHT,this.arrowRightPress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.LEFT,this.arrowLeftPress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.HOME,this.homePress.bind(this),!0,!0),this.keyListener.down(t.KeyListener.END,this.endPress.bind(this),!0,!0)},i.prototype.arrowRightPress=function(){document.activeElement.classList.contains(It)&&(this.index<this.length-1?this.index++:this.index=0,this.focus())},i.prototype.arrowLeftPress=function(){document.activeElement.classList.contains(It)&&(this.index>0?this.index--:this.index=this.length-1,this.focus())},i.prototype.homePress=function(){document.activeElement.classList.contains(It)&&(this.index=0,this.focus())},i.prototype.endPress=function(){document.activeElement.classList.contains(It)&&(this.index=this.length-1,this.focus())},i.prototype.focus=function(){this.current&&this.current.focus()},i.prototype.apply=function(){for(var t=0;t<this._index;t++)this.members[t].translate(-1);this.current.element.style.transition="",this.current.element.style.transform="";for(var e=this._index+1;e<this.length;e++)this.members[e].translate(1);this.element.style.transition=""},i.prototype.add=function(t){if(e.prototype.add.call(this,t),1===this.length||t.disclosed)this.current=t;else{var i=this.members.indexOf(t);this._index>-1&&this._index!==i&&t.translate(i<this._index?-1:1,!0)}},i.prototype.render=function(){if(null!==this.current){var t=Math.round(this.current.element.offsetHeight);this.panelHeight!==t&&(this.panelHeight=t,this.element.style.height=this.panelHeight+this.list.offsetHeight+"px")}},Object.defineProperties(i,n),i}(t.core.DisclosuresGroup),Rt=function(e){function i(){e.apply(this,arguments)}e&&(i.__proto__=e),i.prototype=Object.create(e&&e.prototype),i.prototype.constructor=i;var n={GroupConstructor:{configurable:!0}},s={type:{configurable:!0},selector:{configurable:!0}};return s.type.get=function(){return t.core.DISCLOSURE_TYPES.select},s.selector.get=function(){return jt},n.GroupConstructor.get=function(){return Gt},i.prototype.buttonFactory=function(t){return new Pt(t,this)},i.prototype.translate=function(t,e){this.element.style.transition=e?"none":"",this.element.style.transform="translate("+100*t+"%)"},i.prototype.reset=function(){this.group.index=0},Object.defineProperties(i.prototype,n),Object.defineProperties(i,s),i}(t.core.Disclosure);t.Tab=Rt,t.TabButton=Pt,t.TabsGroup=Gt;new t.core.Initializer(qt,[function(){Rt.build(document)}]);var Tt=t.core.ns.selector("header"),Ft=t.core.ns.selector("header__search"),Ht=t.core.ns.selector("header__menu"),Nt=t.core.ns.selector("header__tools-links"),Bt=t.core.ns.selector("header__menu-links"),Mt=Nt+" "+t.core.ns.selector("links-group"),Wt=function(t){this.header=t||document.querySelector(Tt),this.modals=[],this.init()};Wt.prototype.getModal=function(e){var i=this.header.querySelector(e);if(i){var n=t.core.Instance.getInstances(i,t.Modal);n&&n.length&&this.modals.push(new Kt(n[0]))}},Wt.prototype.init=function(){this.getModal(Ft),this.getModal(Ht),this.linksGroup=this.header.querySelector(Mt),this.toolsLinks=this.header.querySelector(Nt),this.menuLinks=this.header.querySelector(Bt),this.changing=this.change.bind(this),window.addEventListener("resize",this.changing),this.change()},Wt.prototype.change=function(){this.isLarge=window.matchMedia("(min-width: 62em)").matches,this.isLarge?this.modals.forEach((function(t){return t.disable()})):this.modals.forEach((function(t){return t.enable()})),null!==this.linksGroup&&(this.isLarge?this.toolsLinks.appendChild(this.linksGroup):this.menuLinks.appendChild(this.linksGroup))};var Kt=function(t){this.modal=t};Kt.prototype.enable=function(){this.modal.element.setAttribute("role","dialog"),this.modal.element.setAttribute("aria-labelledby",this.modal.primary.element.id)},Kt.prototype.disable=function(){this.modal.conceal(),this.modal.element.removeAttribute("role"),this.modal.element.removeAttribute("aria-labelledby")},t.Header=Wt;new t.core.Initializer(Tt,[function(){for(var t=[],e=0,i=Array.prototype.slice.call(document.querySelectorAll(Tt));e<i.length;e+=1){var n=i[e];t.push(new Wt(n))}}])}();
+//# sourceMappingURL=dsfr.nomodule.min.js.map
diff --git a/static/fonts/Marianne-Bold.woff b/static/fonts/Marianne-Bold.woff
new file mode 100644
index 0000000000000000000000000000000000000000..335e3488139cb364abbd7dccff400fb45bbcf5fa
Binary files /dev/null and b/static/fonts/Marianne-Bold.woff differ
diff --git a/static/fonts/Marianne-Bold.woff2 b/static/fonts/Marianne-Bold.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..4a5b7b2914a91b24955d3649084efd1d3eb96eea
Binary files /dev/null and b/static/fonts/Marianne-Bold.woff2 differ
diff --git a/static/fonts/Marianne-Bold_Italic.woff b/static/fonts/Marianne-Bold_Italic.woff
new file mode 100644
index 0000000000000000000000000000000000000000..72878fca60510132edaac010982a8e5899b2b4aa
Binary files /dev/null and b/static/fonts/Marianne-Bold_Italic.woff differ
diff --git a/static/fonts/Marianne-Bold_Italic.woff2 b/static/fonts/Marianne-Bold_Italic.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..31494ac009d77aed2545f96331558fd96ee48808
Binary files /dev/null and b/static/fonts/Marianne-Bold_Italic.woff2 differ
diff --git a/static/fonts/Marianne-Light.woff b/static/fonts/Marianne-Light.woff
new file mode 100644
index 0000000000000000000000000000000000000000..9ef49df3ad4d9786d374adfd50a8296bdac014fb
Binary files /dev/null and b/static/fonts/Marianne-Light.woff differ
diff --git a/static/fonts/Marianne-Light.woff2 b/static/fonts/Marianne-Light.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..b29a01ffb5380b2bbb52d1ee27968a2c708d4a6a
Binary files /dev/null and b/static/fonts/Marianne-Light.woff2 differ
diff --git a/static/fonts/Marianne-Light_Italic.woff b/static/fonts/Marianne-Light_Italic.woff
new file mode 100644
index 0000000000000000000000000000000000000000..5ae0dbea14dc79ea46d1a8e05ddaa9d5ab3d6564
Binary files /dev/null and b/static/fonts/Marianne-Light_Italic.woff differ
diff --git a/static/fonts/Marianne-Light_Italic.woff2 b/static/fonts/Marianne-Light_Italic.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..ccf9c8e5bf60605fb37c81d7a83c85b166d23090
Binary files /dev/null and b/static/fonts/Marianne-Light_Italic.woff2 differ
diff --git a/static/fonts/Marianne-Regular.woff b/static/fonts/Marianne-Regular.woff
new file mode 100644
index 0000000000000000000000000000000000000000..a95a2d0407b512b0e37cca55a001425560ae7f41
Binary files /dev/null and b/static/fonts/Marianne-Regular.woff differ
diff --git a/static/fonts/Marianne-Regular.woff2 b/static/fonts/Marianne-Regular.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..5d6517c8043c9f365b6d37ac136f153d52ca1df3
Binary files /dev/null and b/static/fonts/Marianne-Regular.woff2 differ
diff --git a/static/fonts/Marianne-Regular_Italic.woff b/static/fonts/Marianne-Regular_Italic.woff
new file mode 100644
index 0000000000000000000000000000000000000000..1880c5d75b8a8e8e0fd250ffe0a524aa5282b9a3
Binary files /dev/null and b/static/fonts/Marianne-Regular_Italic.woff differ
diff --git a/static/fonts/Marianne-Regular_Italic.woff2 b/static/fonts/Marianne-Regular_Italic.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..30e8934ea8ca865a9e164da2e790386245cbcfb5
Binary files /dev/null and b/static/fonts/Marianne-Regular_Italic.woff2 differ
diff --git a/static/fonts/Spectral-ExtraBold.woff b/static/fonts/Spectral-ExtraBold.woff
new file mode 100644
index 0000000000000000000000000000000000000000..e2d53263c71afdd0a94f4aa48d66e2f348eceda9
Binary files /dev/null and b/static/fonts/Spectral-ExtraBold.woff differ
diff --git a/static/fonts/Spectral-ExtraBold.woff2 b/static/fonts/Spectral-ExtraBold.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..0b96ef1878f6a51914a26a053d0d75bd9158e6a1
Binary files /dev/null and b/static/fonts/Spectral-ExtraBold.woff2 differ
diff --git a/static/fonts/Spectral-Regular.woff b/static/fonts/Spectral-Regular.woff
new file mode 100644
index 0000000000000000000000000000000000000000..111c31212e6f37b095ab29cfa36804c509b0cebf
Binary files /dev/null and b/static/fonts/Spectral-Regular.woff differ
diff --git a/static/fonts/Spectral-Regular.woff2 b/static/fonts/Spectral-Regular.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..717905cb009312e56cae8012363c7e48dedea976
Binary files /dev/null and b/static/fonts/Spectral-Regular.woff2 differ
diff --git a/trust.key b/trust.key
new file mode 100644
index 0000000000000000000000000000000000000000..9495a2325b70ad5a3e3d610d549d01ece6702711
--- /dev/null
+++ b/trust.key
@@ -0,0 +1,28 @@
+-----BEGIN PRIVATE KEY-----
+MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDCQWDrUltUTBXj
+/hEYknou79UYS7yhTF6S9hthz1R13Y4h6FU3Hxyaz2zYd/u77p/FPef5npJuh7GB
+EFt2t+Jasgv7GWBgJOOPvWz5vuh/QniMqy0/qwHYjUGLSaqTct98vpOwqmd1fIgO
+m/ur4hJBjQhmyr7e6d6sO37JWp+4by8moqPrbwQmdeEXDORRy+6t2/aN+Hpy9HCO
+xwhr4HyKxo0ZhkVJA+etMys9aCgUdY/yjbgd5Ox/0bOMxkV5kOqC+8n6fRYmUDNu
+2yMwY8iPrl3RAwOeLZIrPu575+bP4dF//u/OjG1AL92oqTS2se/0De64dsN79ltl
+Rs5WgbxXAgMBAAECggEBAMACNZWE60dQiZa5TBa4ulLotv5z5jidLyIeZ4RvlfGH
+FHWJm6mHdBPFkbYKKuZhAMXK4h/HUMA2GgsTqwSW0AOL1/HT7II8FD7BIxVdUZxw
+jI2mqWw0UPfG8BGIuDVUp3k7Ouq2FNt5Q1cFcWc9Z4QprjNElhPqoTInALRwgk2e
+xgpE0gCQWVLED9UN2kdfVHv6dSpaXizIKXShKK/2VUCYNHglZ1G5nAr7jcWbRXVS
+/hc52n0rQ/KiFehTSGsY6v8vEz24HK9QRv8bxM42gH2eiHQReTeUONi4RpqzPRqr
+E/CQAMp0/ImZSdgorIiEBV+A4HkFdobGSBqMGe7qCqkCgYEA9Hs9DUwVL98kCgIw
+XqG4TgxqWMVsn181plQi9HTeD4RJEGRzmFNNtXuWb5wr/3vgXPALEK4JBO+N1PYx
+H7QAlSfIxpa4DjwsNJwC76VsMR0uq3oM1DW4+AdOmf0kZEKAOdnkNtdqc0iR3IEt
+lSwqUwCYytm1EUcjva2nwGIkO6MCgYEAy2hZd4H1kOj+iCNOjYwXnI4VbQeRrseb
+TxKsRuR7nzDncvnydz/COgAavXuNsJ84YBypCTf66iT/pU7Kq0sCmiiMKZTo/NX0
+V5n6R2WyEitFC9YA7OGuolEs+X+1djT3+Ld/NcGvJm2AxUPxQrTTIFuBkKJ6hC16
+Fg2hLcFix70CgYAwUf9CFoyFdqvv0nju6zW7L1cBjpumcDHxWuXBvSt6k6HBPKlg
+LO7J9NBJ5OsJRtmUZNk7BbrAn/w/YB1bb79Bu6hCH93m6luuVjt6VA6rMmJb//Zz
+Jt8VHpSZeN/tdPtU88zYTgE7Ide6Zkm1FxKSbybDyP2xmYbl4WGrc3pH0wKBgHNj
+vO04wk/0fQBJ1zQhNvvO9oSleJWIEqjm1OhakW6bVZE6DbxsZQh2KrU3NAfwKxEK
+8TGTmjndx1DFw98sbEt7mRe1q/5SeYyAgyShokUAWuj9/ARleqYGGtdnBVALeGiV
+4Apk17GbCSPfCSxoXCTNBFFCevIkwk9kZ/0G6byZAoGBALb8YygVivT5pLC+398a
+/5IN23zUXDdU/VUdK71Fd1/C6RtIWmmgSoEsffJRr8ORhAEOZnM4NLiCLnzfSQjH
+eKK5VpNCVa9bv4rT64x/Kid4oE4Nn7m+ZO32j3yKm8DAJy+KcgWBEqU3W3nxCbiM
+PcNc6n1DiZnoYCNuXm81Db2q
+-----END PRIVATE KEY-----
diff --git a/trust.pem b/trust.pem
new file mode 100644
index 0000000000000000000000000000000000000000..10b844e7b8a6f59e66143c505703a4bd79ae66ef
--- /dev/null
+++ b/trust.pem
@@ -0,0 +1,21 @@
+-----BEGIN CERTIFICATE-----
+MIIDYTCCAkmgAwIBAgIUXRvNDC2I75zpNmUXeOUJqj3TTlYwDQYJKoZIhvcNAQEL
+BQAwQDELMAkGA1UEBhMCRlIxDjAMBgNVBAgMBVBhcmlzMSEwHwYDVQQKDBhJbnRl
+cm5ldCBXaWRnaXRzIFB0eSBMdGQwHhcNMjIwMzEyMTUxNTAyWhcNMzIwMzA5MTUx
+NTAyWjBAMQswCQYDVQQGEwJGUjEOMAwGA1UECAwFUGFyaXMxITAfBgNVBAoMGElu
+dGVybmV0IFdpZGdpdHMgUHR5IEx0ZDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC
+AQoCggEBAMJBYOtSW1RMFeP+ERiSei7v1RhLvKFMXpL2G2HPVHXdjiHoVTcfHJrP
+bNh3+7vun8U95/mekm6HsYEQW3a34lqyC/sZYGAk44+9bPm+6H9CeIyrLT+rAdiN
+QYtJqpNy33y+k7CqZ3V8iA6b+6viEkGNCGbKvt7p3qw7fslan7hvLyaio+tvBCZ1
+4RcM5FHL7q3b9o34enL0cI7HCGvgfIrGjRmGRUkD560zKz1oKBR1j/KNuB3k7H/R
+s4zGRXmQ6oL7yfp9FiZQM27bIzBjyI+uXdEDA54tkis+7nvn5s/h0X/+786MbUAv
+3aipNLax7/QN7rh2w3v2W2VGzlaBvFcCAwEAAaNTMFEwHQYDVR0OBBYEFGUueFGq
+oBTsomNqO0wzECvsdim+MB8GA1UdIwQYMBaAFGUueFGqoBTsomNqO0wzECvsdim+
+MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBACa0KRKbehcnsshO
+844uSxd2yPawy4HcEwj7YZi8HLefXvhFNCjmGDNRQyF+xnYN71j7MYt+2bBouVyX
+0ysEoGl/1AmwzEpPdxjrDV599dzTDyGliVQIDKE9zfdCd0FV4xmGcNfhQPjW2NaS
+TZO+D1sJnwdT5y28eRpPc5fxTxMJI6wLtDxPJLMlbEjJw2rKYl710VbsRwN2vW5a
+WYqvgv7Yw+4Zn/oJ0N4/l6kjtD4hvH4iOevrRMabsPp+whwmljw0FogGqoOyB860
+4Ao/t52RArkENax53y1vM78i86QAyt/N0DKtGEr1WaFU1oiUORMdMTOfvXnMJv6X
+f7iT0lc=
+-----END CERTIFICATE-----
diff --git a/trust.py b/trust.py
new file mode 100644
index 0000000000000000000000000000000000000000..82b7566e902cf73abeb4972c14a825c83fea29e5
--- /dev/null
+++ b/trust.py
@@ -0,0 +1,182 @@
+import json
+import ctypes
+import base64
+import signature_c
+from bottle import run, get, post, request, SimpleTemplate, static_file, app
+from bottle_cors_plugin import cors_plugin
+import os
+from utils import load_urls_from_yaml
+
+ENCODING = "utf-8"
+
+urls = load_urls_from_yaml()
+
+hostName = urls["trust"]["host_name"]
+trustPort = urls["trust"]["port"]
+
+CHALLENGE_SIZE = 128
+CERT_SIZE = 128
+
+app = app()
+
+
+
+app.install(cors_plugin('*'))
+
+#Create two test users of age 16 and 25
+with open(f"./identifiers/Alice", "w") as f:
+    f.write("25")
+
+with open(f"./identifiers/Bob", "w") as f:
+    f.write("16")
+
+# Print the page
+@app.get("/")
+def racine():
+    with open("index_trust.html", "rb") as index_file:
+        return SimpleTemplate(index_file.read()).render(urls=urls)
+
+
+@app.get('/static/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static')
+
+
+@app.get('/fonts/<filename>')
+def server_static(filename):
+    return static_file(filename, root='./static/fonts')
+
+
+# Generate a new user and store their age
+# As of yet, no deletion or revokation is possible
+# Registering an already created user will delete the previous one
+@app.post("/registerAge")
+def register_age():
+    registered_age = request.query.registered_age
+    identifier = request.query.id
+    with open(f"./identifiers/{identifier}", "w") as f:
+        f.write(registered_age)
+
+
+# New certificate from authority (the id of the certificate is the number of previous certificates +1)
+@app.post("/new_certificate")
+def new_certificate():
+    # Create buffers for C code
+    cert_buffers = request.json
+    numero_certificat = cert_buffers["numero"]
+    os.mkdir(f"./trusted_from_trusted/{numero_certificat}")
+    for buff in ["y", "tk", "cert"]:
+        key: ctypes.create_string_buffer(base64.b64decode(cert_buffers[key]))
+        with open(
+            f"./trusted_from_trusted/{numero_certificat}/{buff}_buffer", "wb"
+        ) as f:
+            f.write(ctypes.create_string_buffer(base64.b64decode(cert_buffers[buff])))
+
+# Return the number of certificates (trusted parties) previously emitted
+@app.get("/list_users")
+def list_users():
+    user_list = {}
+    for filename in os.listdir("./identifiers/"):
+        with open(f"./identifiers/{filename}", "r") as f:
+            registered_age = int(f.read())
+            user_list[filename] = registered_age
+
+    return bytes(json.dumps(user_list), ENCODING)
+
+# Sign a received challenge if the user is registered and of age
+@app.post("/sign")
+def sign():
+    # First checks whether the user exists. If not, say it.
+    identifier = request.query.id
+    try:
+        with open(f"./identifiers/{identifier}", "r") as f:
+            registered_age = int(f.read())
+    except:
+        return bytes(json.dumps({"user": 0}), ENCODING)
+
+    # Then checks whether the registered age is above the required age. If not, say it.
+    message = request.json
+    required_age = int(message["required_age"])
+    nonce = message["nonce"]
+    if registered_age < required_age:
+        return bytes(json.dumps({"user": 1, "majeur": 0}), ENCODING)
+
+    # Loads the parameters of the required trusted pary
+    trusted = request.query.trusted
+    trusted_buffers = {}
+    for buffer_type in ["tk", "y", "cert"]:
+        with open(f"./trusted_from_trusted/{trusted}/{buffer_type}_buffer", "rb") as f:
+            trusted_buffers[buffer_type] = ctypes.create_string_buffer(f.read())
+
+    # Loads the nonce and crypto parameters
+    chal_buffer = ctypes.create_string_buffer(
+        bytes(nonce + str(required_age), ENCODING)
+    )
+    crypto_buffers = {
+        key: ctypes.create_string_buffer(base64.b64decode(message[key]))
+        for key in ["gpk", "g1", "g2"]
+    }
+
+    # Create empty buffers for C code
+    key_list = [
+        "c1",
+        "c2",
+        "d1",
+        "d2",
+        "p1",
+        "p11",
+        "p12",
+        "p21",
+        "p22",
+        "th11",
+        "th12",
+        "th21",
+        "th22",
+        "g11",
+        "g12",
+        "h11",
+        "h12",
+        "g21",
+        "g22",
+        "h21",
+        "h22",
+    ]
+    empty_buffers = {key: ctypes.create_string_buffer(CERT_SIZE) for key in key_list}
+
+    signed_chal_buffer = ctypes.create_string_buffer(CHALLENGE_SIZE)
+
+    # Sign the challenge
+    signature_c.pbc.trusted_sign_challenge(
+        chal_buffer,
+        trusted_buffers["y"],
+        trusted_buffers["cert"],
+        *[crypto_buffers[key] for key in ["gpk", "g1", "g2"]],
+        trusted_buffers["tk"],
+        signed_chal_buffer,
+        *[empty_buffers[key] for key in key_list],
+    )
+
+    # Create the returned dictionnary
+    return_dict = {
+        "sign": base64.b64encode(signed_chal_buffer.raw).decode(ENCODING),
+        "user": 1,
+        "majeur": 1,
+        "signed_age": required_age,
+        "nonce": nonce,
+        "cert": base64.b64encode(trusted_buffers["cert"].raw).decode(ENCODING),
+        "y": base64.b64encode(trusted_buffers["y"].raw).decode(ENCODING),
+    }
+    return_dict.update(
+        {
+            key: base64.b64encode(empty_buffers[key].raw).decode(ENCODING)
+            for key in key_list
+        }
+    )
+    return bytes(json.dumps(return_dict), ENCODING)
+
+
+# Run the server
+if __name__ == "__main__":
+    print(f'Available on {urls["trust"]["url"]} ...')
+    app.run(host=hostName, port=trustPort, server='gunicorn', keyfile='authority.key',  certfile='authority.pem')
+
diff --git a/utils.py b/utils.py
new file mode 100644
index 0000000000000000000000000000000000000000..9e974b5431b5e8c0a8fd69310aec4f1cc6e12ea4
--- /dev/null
+++ b/utils.py
@@ -0,0 +1,7 @@
+import yaml
+
+def load_urls_from_yaml():
+    with open("parameters.yaml") as file:
+        urls = yaml.load(file, Loader=yaml.FullLoader)
+
+    return urls
\ No newline at end of file