')
+ .append(i.clone())
+ .remove()
+ .html()
+ .replace(/type="password"/i, 'type="text"')
+ .replace(/type=password/i, 'type=text')
+ );
+
+ if (i.attr('id') != '')
+ x.attr('id', i.attr('id') + '-polyfill-field');
+
+ if (i.attr('name') != '')
+ x.attr('name', i.attr('name') + '-polyfill-field');
+
+ x.addClass('polyfill-placeholder')
+ .val(x.attr('placeholder')).insertAfter(i);
+
+ if (i.val() == '')
+ i.hide();
+ else
+ x.hide();
+
+ i
+ .on('blur', function(event) {
+
+ event.preventDefault();
+
+ var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+
+ i.hide();
+ x.show();
+
+ }
+
+ });
+
+ x
+ .on('focus', function(event) {
+
+ event.preventDefault();
+
+ var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
+
+ x.hide();
+
+ i
+ .show()
+ .focus();
+
+ })
+ .on('keypress', function(event) {
+
+ event.preventDefault();
+ x.val('');
+
+ });
+
+ });
+
+ // Events.
+ $this
+ .on('submit', function() {
+
+ $this.find('input[type=text],input[type=password],textarea')
+ .each(function(event) {
+
+ var i = $(this);
+
+ if (i.attr('name').match(/-polyfill-field$/))
+ i.attr('name', '');
+
+ if (i.val() == i.attr('placeholder')) {
+
+ i.removeClass('polyfill-placeholder');
+ i.val('');
+
+ }
+
+ });
+
+ })
+ .on('reset', function(event) {
+
+ event.preventDefault();
+
+ $this.find('select')
+ .val($('option:first').val());
+
+ $this.find('input,textarea')
+ .each(function() {
+
+ var i = $(this),
+ x;
+
+ i.removeClass('polyfill-placeholder');
+
+ switch (this.type) {
+
+ case 'submit':
+ case 'reset':
+ break;
+
+ case 'password':
+ i.val(i.attr('defaultValue'));
+
+ x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
+
+ if (i.val() == '') {
+ i.hide();
+ x.show();
+ }
+ else {
+ i.show();
+ x.hide();
+ }
+
+ break;
+
+ case 'checkbox':
+ case 'radio':
+ i.attr('checked', i.attr('defaultValue'));
+ break;
+
+ case 'text':
+ case 'textarea':
+ i.val(i.attr('defaultValue'));
+
+ if (i.val() == '') {
+ i.addClass('polyfill-placeholder');
+ i.val(i.attr('placeholder'));
+ }
+
+ break;
+
+ default:
+ i.val(i.attr('defaultValue'));
+ break;
+
+ }
+ });
+
+ });
+
+ return $this;
+
+ };
+
+ /**
+ * Moves elements to/from the first positions of their respective parents.
+ * @param {jQuery} $elements Elements (or selector) to move.
+ * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
+ */
+ $.prioritize = function($elements, condition) {
+
+ var key = '__prioritize';
+
+ // Expand $elements if it's not already a jQuery object.
+ if (typeof $elements != 'jQuery')
+ $elements = $($elements);
+
+ // Step through elements.
+ $elements.each(function() {
+
+ var $e = $(this), $p,
+ $parent = $e.parent();
+
+ // No parent? Bail.
+ if ($parent.length == 0)
+ return;
+
+ // Not moved? Move it.
+ if (!$e.data(key)) {
+
+ // Condition is false? Bail.
+ if (!condition)
+ return;
+
+ // Get placeholder (which will serve as our point of reference for when this element needs to move back).
+ $p = $e.prev();
+
+ // Couldn't find anything? Means this element's already at the top, so bail.
+ if ($p.length == 0)
+ return;
+
+ // Move element to top of parent.
+ $e.prependTo($parent);
+
+ // Mark element as moved.
+ $e.data(key, $p);
+
+ }
+
+ // Moved already?
+ else {
+
+ // Condition is true? Bail.
+ if (condition)
+ return;
+
+ $p = $e.data(key);
+
+ // Move element back to its original location (using our placeholder).
+ $e.insertAfter($p);
+
+ // Unmark element as moved.
+ $e.removeData(key);
+
+ }
+
+ });
+
+ };
+
+})(jQuery);
diff --git a/public/news/20240525/index.html b/public/news/20240525/index.html
new file mode 100644
index 0000000..f8efa60
--- /dev/null
+++ b/public/news/20240525/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Fête du vélo de La Riche | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Fête du vélo de La Riche
+
+
+
+
+
+
+ Samedi 25 mai, une petite vélorution au soleil et en musique, et un stand réparation avec les associations copines. Il n’y avait pas grand monde alors on a rangé nos outils, ça fait plaisir.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240601/index.html b/public/news/20240601/index.html
new file mode 100644
index 0000000..5d4a481
--- /dev/null
+++ b/public/news/20240601/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Aucard de Tours | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Aucard de Tours
+
+
+
+
+
+
+ Le dindon aétait à Aucard pour la première fois officiellement, mais pas la dernière tellement c’était bien. Dans un stand d’accueil au parking vélo, on en a vu passer des phénomènes qui n’avait pas sorti (ni regonflé) leur vélo depuis Aucard dernier, il faut passer à l’atelier plus souvent
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240704/index.html b/public/news/20240704/index.html
new file mode 100644
index 0000000..60f08d2
--- /dev/null
+++ b/public/news/20240704/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Vélorution universelle | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Vélorution universelle
+
+
+
+
+
+
+ Quelques billoux ont pédalé jusque Marseille, pour profiter de cette magnifique édition de la vélorution universelle. Merci Marseille ! Et à Marseille on trouve des grands vélos encore plus grands qu’à Tours, c’est fou ! Meh, c’est Marseille bébé
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240815/index.html b/public/news/20240815/index.html
new file mode 100644
index 0000000..61313e7
--- /dev/null
+++ b/public/news/20240815/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Apréro-remontages d'été | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Apréro-remontages d'été
+
+
+
+
+
+
+ Un été riche en apéro-remontage, on en a retapé 18 pour Campus en fête ! De toutes les tailles, de tous les styles
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240910/index.html b/public/news/20240910/index.html
new file mode 100644
index 0000000..f830c8e
--- /dev/null
+++ b/public/news/20240910/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Défi dales | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ La course de La Riche la plus attendue de l’année : trois heures à se relayer pour pédaler autour de trois ronds-points dans une voiture à pédale :p Nous y étions une petite équipe de billoux et on a passé les 100 tours :o (en maillot de bain sous la pluie youpi !)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240914/index.html b/public/news/20240914/index.html
new file mode 100644
index 0000000..425719b
--- /dev/null
+++ b/public/news/20240914/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Projet Glaire Witch | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Projet Glaire Witch
+
+
+
+
+
+
+ Un atelier tenu par des femmes le 14 septembre au château du plessis. On avait un dôme au soleil, trop cool. Pas beaucoup d’affluence, mais c’était trop cool.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240921/index.html b/public/news/20240921/index.html
new file mode 100644
index 0000000..b61e33a
--- /dev/null
+++ b/public/news/20240921/index.html
@@ -0,0 +1,132 @@
+
+
+
+
+
Le 21 septembre c'était les 15 ans de Bill | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Le 21 septembre c'était les 15 ans de Bill
+
+
+
+
+
+
+ Une fête mémorable avec concert, DJ, jeux, sérigraphie, des belles rencontres et de belles retrouvailles <3 on ne peut pas raconter, il fallait y être. Ba-dee-ya, say, do you remember?
+Ba-dee-ya, dancin’ in September
+Ba-dee-ya, never was a cloudy dayyyy
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20240926/index.html b/public/news/20240926/index.html
new file mode 100644
index 0000000..e4678fb
--- /dev/null
+++ b/public/news/20240926/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Campus en fête | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Campus en fête
+
+
+
+
+
+
+ Merci Campus en fête de nous donner l’occasion d’équiper les nouvelleaux étudiant-es en vélos de seconde main, ça fait plaisir de les voir repartir pour une nouvelle vie
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20241001/index.html b/public/news/20241001/index.html
new file mode 100644
index 0000000..7da3896
--- /dev/null
+++ b/public/news/20241001/index.html
@@ -0,0 +1,130 @@
+
+
+
+
+
Perm de l'Oxford Pub | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Perm de l'Oxford Pub
+
+
+
+
+
+
+ Comme tous les premiers mercredi du mois, nous serons à l’Oxford Pub pour réparer vos vélos et trinquer à notre bonne santé ce mercredi 2 octobre de 19h à 21h :p
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/20241019/index.html b/public/news/20241019/index.html
new file mode 100644
index 0000000..97bf071
--- /dev/null
+++ b/public/news/20241019/index.html
@@ -0,0 +1,162 @@
+
+
+
+
+
Hommage à Paul 19 octobre | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Hommage à Paul 19 octobre
+
+
+
+
+
+
+ Voici la prise de parole de Bruno lors du rassemblement du 19 octobre à Tours.
+Paul, tué à Paris cette semaine,
+Marion, décédée à Tours la semaine dernière,
+mais aussi toi Marine, victime en 2021 d’un accident mortel à vélo sur le rond-point Saint Sauveur, toujours à Tours,
+et vous toutes et tous cyclistes, piétonnes et piétons, usagères et usagers vulnérables de l’espace public tués ou meurtris dans vos chairs,
+Je ne vous connais pas, et pourtant, en tant que cycliste qui circule quotidiennement à Tours, je ne peux m’empêcher de m’identifier à vous. De me dire « cela aurait pu être moi ».
+Je suis certains que vous êtes nombreuses et nombreux rassemblés ici aujourd’hui à partager ce sentiment. Ces drames résonnent chez beaucoup d’entre nous.
+Aujourd’hui nous sommes tristes, sous le choc, mais nous sommes aussi en colère.
+En tant que cycliste, mais aussi en tant que piéton, nous avons toutes et tous déjà été victimes de la violence motorisée : coup de klaxon, refus caractérisé de priorité, non respect assumé des infrastructures cyclables ou piétonnes, insultes souvent sexistes ou homophobes, vitesses excessives, intimidation, dépassements dangereux, et j’en passe.
+Cette violence qui augmente comme augmente le volume des véhicules dans nos villes, et donc la vulnérabilité des usagers les plus fragiles, confrontés à ses mastodontes sur roues.
+Il est d’ailleurs ironique de constater que les acheteurs de SUV, souvent motivés par le sentiment de sécurité qu’amène ces véhicules massifs et surélevés, le font au détriment de la sécurité des usagers les plus vulnérables.
+Cette violence qui augmente comme augmente le nombre de livraison Amazon, Uber Eats et autres.
+Les livreurs, sous pression de leur employeur, qui profite de leur vulnérabilité tout en cherchant à satisfaire l’exigence d’immédiateté de leur clients, deviennent parfois les acteurs de cette violence.
+Cette violence qui augmente dans notre société de plus en plus individualiste où l’autre n’est plus vu comme un égal, comme un autre être humain mais comme un obstacle à franchir, une contrainte dans son déplacement.
+Pour lutter contre cette violence grandissante il faut agir, et vite.
+Il faut agir sur les comportements des usagers de la route d’abord.
+Nous rappelons aux automobilistes notre extrême vulnérabilité.
+Contrairement à vous, nous ne sommes pas protégés par une carrosserie. Malheureusement ce n’est pas un simple casque qui nous préservera d’un choc avec un SUV.
+Nous voyons trop souvent des comportements irresponsables et agressifs qui nous mettent en danger pour gagner une poignée de secondes, souvent perdus au feu suivant.
+Il est également cruciale de mettre fin aux discours du type « oui mais les cyclistes ».
+Oui certains comportements de cyclistes sont irrespectueux voir intolérables, notamment envers les piétons. Mais n’en faisons pas une généralité et relativisons leur dangerosité.
+En effet, rappelons que dans les accidents graves impliquant des piétons et des cyclistes, les voitures et les camions sont les principaux responsables.
+Ce genre de discours déresponsabilise les motorisés et ne fait qu’accentuer l’hostilité envers les cyclistes.
+Il faut également interroger la manière dont les villes sont représentées dans les publicités automobiles : des espaces fluides, sans congestion ni usagers, une vision complètement déconnectée de la réalité urbaine.
+Enfin, il faut agir sur les aménagements cyclables.
+Les usagers vulnérables sont encore trop souvent la variable d’ajustement dans l’espace public y compris dans des aménagements récents.
+Nous devons changer de paradigme et prioriser les aménagements en faveur, et dans cet ordre, des piétons puis des cyclistes puis des transports en commun puis enfin des voitures.
+Cette priorisation des modes doit accompagner la mise en place de la « vision zéro », appelée aussi « système sûr », c’est à dire une stratégie globale qui appréhende la sécurité routière de manière systémique et cherche à agir simultanément sur les comportements, les véhicules et l’infrastructure.
+La violence motorisée dans nos villes mais aussi dans nos capagnes n’est pas une fatalité.
+En adaptant les comportements et les infrastructures, nous pouvons créer des espaces publics plus sûrs et plus respectueux pour tous les usagers.
+Il est temps d’agir pour mettre fin à cette insécurité chronique qui pèse sur les cyclistes et les piétons.
+Merci de votre attention.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/hommage_paul/index.html b/public/news/hommage_paul/index.html
new file mode 100644
index 0000000..8c334dd
--- /dev/null
+++ b/public/news/hommage_paul/index.html
@@ -0,0 +1,139 @@
+
+
+
+
+
Hommage à Paul et Marion le 19 octobre | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Hommage à Paul et Marion le 19 octobre
+
+
+
+
+
+
+ Samedi 19 octobre 2024 : rendons hommage à Marion et à Paul
+Hommage à Marion et à Paul, à Tours et partout en France
+En coordination avec les associations franciliennes Paris en Selle, MDB et le Collectif Vélo Île-de-France, la FUB appelle toutes ses associations, toutes et tous les cyclistes de France à se rassembler pour 1 minute de silence en hommage à Paul, cycliste tué en début de semaine à Paris.
+Lors de cet hommage, les associations Roulement à Bill, Rue de l’Avenir, Collectif Cycliste 37 et le collectif Vélorution Tours appellent également à rendre hommage à Marion, décédée à vélo à l’intersection de la rue Marceau et de la rue des Halles, à Tours.
+Date et lieu du rassemblement :
+Samedi 19 octobre à 17h45,
+devant l’Hôtel de Ville de Tours
+ou devant la mairie de votre commune.
+Nous comptons sur vous pour relayer massivement cette invitation.
+Il est temps d’entendre la réalité de notre quotidien et de prendre toutes les mesures pour éviter de nouveaux drames !
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/index.html b/public/news/index.html
new file mode 100644
index 0000000..b2b92eb
--- /dev/null
+++ b/public/news/index.html
@@ -0,0 +1,295 @@
+
+
+
+
+
Les dernières nouvelles de l'asso | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Les dernières nouvelles de l'asso
+
+
+
+
+
+
+

+
+
+
+
+ Voici la prise de parole de Bruno lors du rassemblement du 19 octobre à Tours.
+Paul, tué à Paris cette semaine, Marion, décédée à Tours la semaine dernière, mais aussi toi Marine, victime en 2021 d’un accident mortel à vélo sur le rond-point Saint Sauveur, toujours à Tours, et vous toutes et tous cyclistes, piétonnes et piétons, usagères et usagers vulnérables de l’espace public tués ou meurtris dans vos chairs,
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Samedi 19 octobre 2024 : rendons hommage à Marion et à Paul Hommage à Marion et à Paul, à Tours et partout en France En coordination avec les associations franciliennes Paris en Selle, MDB et le Collectif Vélo Île-de-France, la FUB appelle toutes ses associations, toutes et tous les cyclistes de France à se rassembler pour 1 minute de silence en hommage à Paul, cycliste tué en début de semaine à Paris.
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Comme tous les premiers mercredi du mois, nous serons à l’Oxford Pub pour réparer vos vélos et trinquer à notre bonne santé ce mercredi 2 octobre de 19h à 21h :p
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Merci Campus en fête de nous donner l’occasion d’équiper les nouvelleaux étudiant-es en vélos de seconde main, ça fait plaisir de les voir repartir pour une nouvelle vie
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Une fête mémorable avec concert, DJ, jeux, sérigraphie, des belles rencontres et de belles retrouvailles <3 on ne peut pas raconter, il fallait y être. Ba-dee-ya, say, do you remember? Ba-dee-ya, dancin’ in September Ba-dee-ya, never was a cloudy dayyyy
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Un atelier tenu par des femmes le 14 septembre au château du plessis. On avait un dôme au soleil, trop cool. Pas beaucoup d’affluence, mais c’était trop cool.
+
+
+
+
+
+
+
+
+

+
+
+
+
+ La course de La Riche la plus attendue de l’année : trois heures à se relayer pour pédaler autour de trois ronds-points dans une voiture à pédale :p Nous y étions une petite équipe de billoux et on a passé les 100 tours :o (en maillot de bain sous la pluie youpi !)
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Un été riche en apéro-remontage, on en a retapé 18 pour Campus en fête ! De toutes les tailles, de tous les styles
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Quelques billoux ont pédalé jusque Marseille, pour profiter de cette magnifique édition de la vélorution universelle. Merci Marseille ! Et à Marseille on trouve des grands vélos encore plus grands qu’à Tours, c’est fou ! Meh, c’est Marseille bébé
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Le dindon aétait à Aucard pour la première fois officiellement, mais pas la dernière tellement c’était bien. Dans un stand d’accueil au parking vélo, on en a vu passer des phénomènes qui n’avait pas sorti (ni regonflé) leur vélo depuis Aucard dernier, il faut passer à l’atelier plus souvent
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Samedi 25 mai, une petite vélorution au soleil et en musique, et un stand réparation avec les associations copines. Il n’y avait pas grand monde alors on a rangé nos outils, ça fait plaisir.
+
+
+
+
+
+
+
+
+

+
+
+
+
+ Un tout nouveau site web pour l’association. C’est tout neuf, la peinture sèche encore.
+Forcément, tout n’est pas parfait, mais comme l’ancien site est tombé HS, il a fallu le remplacer avant de tout fignoler.
+Si vous avez des idées d’amélioration, des retours à nous faire concernant de potentiels bugs, n’hésitez-pas à le faire remonter en nous envoyant un mail à l’adresse contact@roulementabill.org
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/news/index.xml b/public/news/index.xml
new file mode 100644
index 0000000..b461fc6
--- /dev/null
+++ b/public/news/index.xml
@@ -0,0 +1,97 @@
+
+
+
+ Les dernières nouvelles de l'asso on Roulement à Bill
+ https://www.roulementabill.org/news/
+ Recent content in Les dernières nouvelles de l'asso on Roulement à Bill
+ Hugo -- gohugo.io
+ fr-fr
+ Roulement à Bill 2024
+ Sun, 20 Oct 2024 00:00:00 +0000
+
+ -
+ Hommage à Paul 19 octobre
+ https://www.roulementabill.org/news/20241019/
+ Sun, 20 Oct 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20241019/
+ Voici la prise de parole de Bruno lors du rassemblement du 19 octobre à Tours.
Paul, tué à Paris cette semaine, Marion, décédée à Tours la semaine dernière, mais aussi toi Marine, victime en 2021 d’un accident mortel à vélo sur le rond-point Saint Sauveur, toujours à Tours, et vous toutes et tous cyclistes, piétonnes et piétons, usagères et usagers vulnérables de l’espace public tués ou meurtris dans vos chairs,
+
+ -
+ Hommage à Paul et Marion le 19 octobre
+ https://www.roulementabill.org/news/hommage_paul/
+ Fri, 18 Oct 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/hommage_paul/
+ Samedi 19 octobre 2024 : rendons hommage à Marion et à Paul Hommage à Marion et à Paul, à Tours et partout en France En coordination avec les associations franciliennes Paris en Selle, MDB et le Collectif Vélo Île-de-France, la FUB appelle toutes ses associations, toutes et tous les cyclistes de France à se rassembler pour 1 minute de silence en hommage à Paul, cycliste tué en début de semaine à Paris.
+
+ -
+ Perm de l'Oxford Pub
+ https://www.roulementabill.org/news/20241001/
+ Tue, 01 Oct 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20241001/
+ Comme tous les premiers mercredi du mois, nous serons à l’Oxford Pub pour réparer vos vélos et trinquer à notre bonne santé ce mercredi 2 octobre de 19h à 21h :p
+
+ -
+ Campus en fête
+ https://www.roulementabill.org/news/20240926/
+ Thu, 26 Sep 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240926/
+ Merci Campus en fête de nous donner l’occasion d’équiper les nouvelleaux étudiant-es en vélos de seconde main, ça fait plaisir de les voir repartir pour une nouvelle vie
+
+ -
+ Le 21 septembre c'était les 15 ans de Bill
+ https://www.roulementabill.org/news/20240921/
+ Sat, 21 Sep 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240921/
+ Une fête mémorable avec concert, DJ, jeux, sérigraphie, des belles rencontres et de belles retrouvailles <3 on ne peut pas raconter, il fallait y être. Ba-dee-ya, say, do you remember? Ba-dee-ya, dancin’ in September Ba-dee-ya, never was a cloudy dayyyy
+
+ -
+ Projet Glaire Witch
+ https://www.roulementabill.org/news/20240914/
+ Sat, 14 Sep 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240914/
+ Un atelier tenu par des femmes le 14 septembre au château du plessis. On avait un dôme au soleil, trop cool. Pas beaucoup d’affluence, mais c’était trop cool.
+
+ -
+ Défi dales
+ https://www.roulementabill.org/news/20240910/
+ Tue, 10 Sep 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240910/
+ La course de La Riche la plus attendue de l’année : trois heures à se relayer pour pédaler autour de trois ronds-points dans une voiture à pédale :p Nous y étions une petite équipe de billoux et on a passé les 100 tours :o (en maillot de bain sous la pluie youpi !)
+
+ -
+ Apréro-remontages d'été
+ https://www.roulementabill.org/news/20240815/
+ Thu, 15 Aug 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240815/
+ Un été riche en apéro-remontage, on en a retapé 18 pour Campus en fête ! De toutes les tailles, de tous les styles
+
+ -
+ Vélorution universelle
+ https://www.roulementabill.org/news/20240704/
+ Thu, 04 Jul 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240704/
+ Quelques billoux ont pédalé jusque Marseille, pour profiter de cette magnifique édition de la vélorution universelle. Merci Marseille ! Et à Marseille on trouve des grands vélos encore plus grands qu’à Tours, c’est fou ! Meh, c’est Marseille bébé
+
+ -
+ Aucard de Tours
+ https://www.roulementabill.org/news/20240601/
+ Sat, 01 Jun 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240601/
+ Le dindon aétait à Aucard pour la première fois officiellement, mais pas la dernière tellement c’était bien. Dans un stand d’accueil au parking vélo, on en a vu passer des phénomènes qui n’avait pas sorti (ni regonflé) leur vélo depuis Aucard dernier, il faut passer à l’atelier plus souvent
+
+ -
+ Fête du vélo de La Riche
+ https://www.roulementabill.org/news/20240525/
+ Sat, 25 May 2024 00:00:00 +0000
+ https://www.roulementabill.org/news/20240525/
+ Samedi 25 mai, une petite vélorution au soleil et en musique, et un stand réparation avec les associations copines. Il n’y avait pas grand monde alors on a rangé nos outils, ça fait plaisir.
+
+ -
+ Nouveau site web !
+ https://www.roulementabill.org/news/nouveau_site/
+ Mon, 27 Nov 2023 00:00:00 +0000
+ https://www.roulementabill.org/news/nouveau_site/
+ Un tout nouveau site web pour l’association. C’est tout neuf, la peinture sèche encore.
Forcément, tout n’est pas parfait, mais comme l’ancien site est tombé HS, il a fallu le remplacer avant de tout fignoler.
Si vous avez des idées d’amélioration, des retours à nous faire concernant de potentiels bugs, n’hésitez-pas à le faire remonter en nous envoyant un mail à l’adresse contact@roulementabill.org
+
+
+
diff --git a/public/news/nouveau_site/index.html b/public/news/nouveau_site/index.html
new file mode 100644
index 0000000..d69bb74
--- /dev/null
+++ b/public/news/nouveau_site/index.html
@@ -0,0 +1,132 @@
+
+
+
+
+
Nouveau site web ! | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Nouveau site web !
+
+
+
+
+ Un tout nouveau site web pour l’association. C’est tout neuf, la peinture sèche encore.
+Forcément, tout n’est pas parfait, mais comme l’ancien site est tombé HS, il a fallu le remplacer avant de tout fignoler.
+Si vous avez des idées d’amélioration, des retours à nous faire concernant de potentiels bugs, n’hésitez-pas à le faire remonter en nous envoyant un mail à l’adresse contact@roulementabill.org
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/prixlibre/index.html b/public/prixlibre/index.html
new file mode 100644
index 0000000..65b50b3
--- /dev/null
+++ b/public/prixlibre/index.html
@@ -0,0 +1,131 @@
+
+
+
+
+
Le prix libre | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Le prix libre
+ Petite explication
+
+
+
+ L’adhésion (ainsi que certains vélos à retaper) à Roulement à Bill est à prix libre. Cela signifie que le montant de l’adhésion est laissé à la libre appréciation de l’adhérent.e. Grâce à ça, nous accueillons tout le monde, à hauteur de leurs moyens (et de ce qu’ielles désirent mettre), sans avoir besoin de pénétrer dans leur vie privée en demandant des justificatifs administratifs…
+Pas de minimum, et pas de plafond. On vous laisse libre de déterminer ce qu’une adhésion à Roulement à Bill représente pour vous. Après tout, vous êtes les mieux placé.e.s.
+Mais, soyons clair.e.s : prix libre, ça ne veut pas dire gratuit. Les services de l’asso ont un coût, porté par l’asso, à travers le loyer et les charges de l’atelier, l’achat des outils, des consommables, etc… Être en mesure de supporter ce coût, c’est ce qui permet à l’association de perdurer dans la temps, et les adhésions représentent quasiment 50% de notre budget.
+Un panneau explicatif du prix libre est à votre disposition à l’entrée de l’atelier, avec une idée des montants imaginables pour une adhésion. N’hésitez pas à venir le consulter.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/quisommesnous/index.html b/public/quisommesnous/index.html
new file mode 100644
index 0000000..bead9e3
--- /dev/null
+++ b/public/quisommesnous/index.html
@@ -0,0 +1,168 @@
+
+
+
+
+
Qui sommes-nous ? | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Qui sommes-nous ?
+
+
+
+
+
+
+ Historique de l’asso
+L’association Roulement à Bill a toujours été portée uniquement par des bénévoles.
+
+
+
+| Dates |
+ |
+
+
+
+
+| 2009 |
+L’association Roulement à Bill voit le jour, et anime un atelier d’auto-réparation de vélos dans le garage d’un de ses adhérents |
+
+
+| 05/2011 |
+L’atelier déménage au Projet 244 |
+
+
+| 04/2012 |
+L’adhésion au réseau national de l’Heureux-Cyclage est actée |
+
+
+| 09/2014 |
+L’atelier déménage dans le quartier Paul Bert |
+
+
+| 03/2017 |
+L’atelier quitte le quartier Paul Bert et stock provisoirement son matériel dans un garage |
+
+
+| 12/2017 |
+Roulement à Bill s’installe au 5 impasse Anatole |
+
+
+
+Bill le dindon est notre mascotte :
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/recup/index.html b/public/recup/index.html
new file mode 100644
index 0000000..226d4bf
--- /dev/null
+++ b/public/recup/index.html
@@ -0,0 +1,138 @@
+
+
+
+
+
Roulement à Bill récupère vos vélos | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Ne balancez pas vos vélos !
+
+One man’s trash is another man’s treasure
+
+Si vous souhaitez vous débarrasser d’un, ou plusieurs, vélos, n’allez pas à la déchetterie !
+Tant de vélos sont encore réparables, ou possèdent encore des pièces récupérables et finissent malgré tout dans les déchets.
+À Roulement à Bill, on récupère vos vélos, vieux ou non, afin de leur donner une nouvelle vie, soit en les retapant et en les mettant à vente à des prix accessibles, soit en récupérant des pièces dessus pour les mettre à disposition de nos adhérent.e.s.
+Nous acceptons tous les dons, de vélos, de pièces, de consommables, de la part de particuliers, de syndics, de structures…
+Amenez-les directement à l’atelier pendant les horaires de permanence ou contactez-nous pour qu’on s’organise pour les récupérer ! Vos anciens vélos feront des heureux.ses.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/sitemap.xml b/public/sitemap.xml
new file mode 100644
index 0000000..f7efafb
--- /dev/null
+++ b/public/sitemap.xml
@@ -0,0 +1,75 @@
+
+
+
+ https://www.roulementabill.org/
+ 2024-10-20T00:00:00+00:00
+
+ https://www.roulementabill.org/apero/
+
+ https://www.roulementabill.org/atelier/
+
+ https://www.roulementabill.org/news/
+ 2024-10-20T00:00:00+00:00
+
+ https://www.roulementabill.org/quisommesnous/
+
+ https://www.roulementabill.org/recup/
+
+ https://www.roulementabill.org/agenda/
+
+ https://www.roulementabill.org/velorution/
+
+ https://www.roulementabill.org/contact/
+
+ https://www.roulementabill.org/news/20241019/
+ 2024-10-20T00:00:00+00:00
+
+ https://www.roulementabill.org/news/hommage_paul/
+ 2024-10-18T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20241001/
+ 2024-10-01T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240926/
+ 2024-09-26T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240921/
+ 2024-09-21T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240914/
+ 2024-09-14T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240910/
+ 2024-09-10T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240815/
+ 2024-08-15T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240704/
+ 2024-07-04T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240601/
+ 2024-06-01T00:00:00+00:00
+
+ https://www.roulementabill.org/news/20240525/
+ 2024-05-25T00:00:00+00:00
+
+ https://www.roulementabill.org/avendre/a_venir/
+ 2023-11-27T17:56:33+01:00
+
+ https://www.roulementabill.org/avendre/
+ 2023-11-27T17:56:33+01:00
+
+ https://www.roulementabill.org/news/nouveau_site/
+ 2023-11-27T00:00:00+00:00
+
+ https://www.roulementabill.org/benevolat/
+
+ https://www.roulementabill.org/prixlibre/
+
+ https://www.roulementabill.org/tags/
+
+ https://www.roulementabill.org/tags/velorution/
+
+
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 0000000..1e9b3b1
--- /dev/null
+++ b/public/style.css
@@ -0,0 +1,3 @@
+@import url("css/fontawesome-all.min.css");@import url("css/font-source-sans-pro.css");html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input,select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#f7f7f7 url("images/bg01.png")}body.is-preload *,body.is-preload *:before,body.is-preload *:after{-moz-animation:none !important;-webkit-animation:none !important;-ms-animation:none !important;animation:none !important;-moz-transition:none !important;-webkit-transition:none !important;-ms-transition:none !important;transition:none !important}body,input,select,textarea{color:#474747;font-family:'Source Sans Pro', sans-serif;font-size:16pt;font-weight:300;line-height:1.65em}a{-moz-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-webkit-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-ms-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;color:#37c0fb;text-decoration:none;border-bottom:dotted 1px}a:hover{color:#37c0fb;border-bottom-color:transparent}strong,b{font-weight:600}em,i{font-style:italic}p,ul,ol,dl,table,blockquote{margin:0 0 2em 0}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:600;line-height:1.75em;margin-bottom:1em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1 em,h2 em,h3 em,h4 em,h5 em,h6 em{font-style:normal;font-weight:300}h2{font-size:1.75em;letter-spacing:-0.025em}h3{font-size:1.2em;letter-spacing:-0.025em}sub{font-size:0.8em;position:relative;top:0.5em}sup{font-size:0.8em;position:relative;top:-0.5em}hr{border-top:solid 1px #e0e0e0;border:0;margin-bottom:1.5em}blockquote{border-left:solid 0.5em #e0e0e0;font-style:italic;padding:1em 0 1em 2em}time{font-size:1rem}.container{margin:0 auto;max-width:100%;width:1400px}@media screen and (max-width: 1680px){.container{width:1200px}}@media screen and (max-width: 1280px){.container{width:960px}}@media screen and (max-width: 980px){.container{width:95%}}@media screen and (max-width: 840px){.container{width:95%}}@media screen and (max-width: 736px){.container{width:90%}}@media screen and (max-width: 480px){.container{width:100%}}.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp{order:-1}.row>.col-1{width:8.33333333%}.row>.off-1{margin-left:8.33333333%}.row>.col-2{width:16.66666667%}.row>.off-2{margin-left:16.66666667%}.row>.col-3{width:25%}.row>.off-3{margin-left:25%}.row>.col-4{width:33.33333333%}.row>.off-4{margin-left:33.33333333%}.row>.col-5{width:41.66666667%}.row>.off-5{margin-left:41.66666667%}.row>.col-6{width:50%}.row>.off-6{margin-left:50%}.row>.col-7{width:58.33333333%}.row>.off-7{margin-left:58.33333333%}.row>.col-8{width:66.66666667%}.row>.off-8{margin-left:66.66666667%}.row>.col-9{width:75%}.row>.off-9{margin-left:75%}.row>.col-10{width:83.33333333%}.row>.off-10{margin-left:83.33333333%}.row>.col-11{width:91.66666667%}.row>.off-11{margin-left:91.66666667%}.row>.col-12{width:100%}.row>.off-12{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-12.5px;margin-left:-12.5px}.row.gtr-25>*{padding:12.5px 0 0 12.5px}.row.gtr-25.gtr-uniform{margin-top:-12.5px}.row.gtr-25.gtr-uniform>*{padding-top:12.5px}.row.gtr-50{margin-top:-25px;margin-left:-25px}.row.gtr-50>*{padding:25px 0 0 25px}.row.gtr-50.gtr-uniform{margin-top:-25px}.row.gtr-50.gtr-uniform>*{padding-top:25px}.row{margin-top:-50px;margin-left:-50px}.row>*{padding:50px 0 0 50px}.row.gtr-uniform{margin-top:-50px}.row.gtr-uniform>*{padding-top:50px}.row.gtr-150{margin-top:-75px;margin-left:-75px}.row.gtr-150>*{padding:75px 0 0 75px}.row.gtr-150.gtr-uniform{margin-top:-75px}.row.gtr-150.gtr-uniform>*{padding-top:75px}.row.gtr-200{margin-top:-100px;margin-left:-100px}.row.gtr-200>*{padding:100px 0 0 100px}.row.gtr-200.gtr-uniform{margin-top:-100px}.row.gtr-200.gtr-uniform>*{padding-top:100px}@media screen and (max-width: 1680px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-wide{order:-1}.row>.col-1-wide{width:8.33333333%}.row>.off-1-wide{margin-left:8.33333333%}.row>.col-2-wide{width:16.66666667%}.row>.off-2-wide{margin-left:16.66666667%}.row>.col-3-wide{width:25%}.row>.off-3-wide{margin-left:25%}.row>.col-4-wide{width:33.33333333%}.row>.off-4-wide{margin-left:33.33333333%}.row>.col-5-wide{width:41.66666667%}.row>.off-5-wide{margin-left:41.66666667%}.row>.col-6-wide{width:50%}.row>.off-6-wide{margin-left:50%}.row>.col-7-wide{width:58.33333333%}.row>.off-7-wide{margin-left:58.33333333%}.row>.col-8-wide{width:66.66666667%}.row>.off-8-wide{margin-left:66.66666667%}.row>.col-9-wide{width:75%}.row>.off-9-wide{margin-left:75%}.row>.col-10-wide{width:83.33333333%}.row>.off-10-wide{margin-left:83.33333333%}.row>.col-11-wide{width:91.66666667%}.row>.off-11-wide{margin-left:91.66666667%}.row>.col-12-wide{width:100%}.row>.off-12-wide{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-10px;margin-left:-10px}.row.gtr-25>*{padding:10px 0 0 10px}.row.gtr-25.gtr-uniform{margin-top:-10px}.row.gtr-25.gtr-uniform>*{padding-top:10px}.row.gtr-50{margin-top:-20px;margin-left:-20px}.row.gtr-50>*{padding:20px 0 0 20px}.row.gtr-50.gtr-uniform{margin-top:-20px}.row.gtr-50.gtr-uniform>*{padding-top:20px}.row{margin-top:-40px;margin-left:-40px}.row>*{padding:40px 0 0 40px}.row.gtr-uniform{margin-top:-40px}.row.gtr-uniform>*{padding-top:40px}.row.gtr-150{margin-top:-60px;margin-left:-60px}.row.gtr-150>*{padding:60px 0 0 60px}.row.gtr-150.gtr-uniform{margin-top:-60px}.row.gtr-150.gtr-uniform>*{padding-top:60px}.row.gtr-200{margin-top:-80px;margin-left:-80px}.row.gtr-200>*{padding:80px 0 0 80px}.row.gtr-200.gtr-uniform{margin-top:-80px}.row.gtr-200.gtr-uniform>*{padding-top:80px}}@media screen and (max-width: 1280px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-normal{order:-1}.row>.col-1-normal{width:8.33333333%}.row>.off-1-normal{margin-left:8.33333333%}.row>.col-2-normal{width:16.66666667%}.row>.off-2-normal{margin-left:16.66666667%}.row>.col-3-normal{width:25%}.row>.off-3-normal{margin-left:25%}.row>.col-4-normal{width:33.33333333%}.row>.off-4-normal{margin-left:33.33333333%}.row>.col-5-normal{width:41.66666667%}.row>.off-5-normal{margin-left:41.66666667%}.row>.col-6-normal{width:50%}.row>.off-6-normal{margin-left:50%}.row>.col-7-normal{width:58.33333333%}.row>.off-7-normal{margin-left:58.33333333%}.row>.col-8-normal{width:66.66666667%}.row>.off-8-normal{margin-left:66.66666667%}.row>.col-9-normal{width:75%}.row>.off-9-normal{margin-left:75%}.row>.col-10-normal{width:83.33333333%}.row>.off-10-normal{margin-left:83.33333333%}.row>.col-11-normal{width:91.66666667%}.row>.off-11-normal{margin-left:91.66666667%}.row>.col-12-normal{width:100%}.row>.off-12-normal{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 980px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrow{order:-1}.row>.col-1-narrow{width:8.33333333%}.row>.off-1-narrow{margin-left:8.33333333%}.row>.col-2-narrow{width:16.66666667%}.row>.off-2-narrow{margin-left:16.66666667%}.row>.col-3-narrow{width:25%}.row>.off-3-narrow{margin-left:25%}.row>.col-4-narrow{width:33.33333333%}.row>.off-4-narrow{margin-left:33.33333333%}.row>.col-5-narrow{width:41.66666667%}.row>.off-5-narrow{margin-left:41.66666667%}.row>.col-6-narrow{width:50%}.row>.off-6-narrow{margin-left:50%}.row>.col-7-narrow{width:58.33333333%}.row>.off-7-narrow{margin-left:58.33333333%}.row>.col-8-narrow{width:66.66666667%}.row>.off-8-narrow{margin-left:66.66666667%}.row>.col-9-narrow{width:75%}.row>.off-9-narrow{margin-left:75%}.row>.col-10-narrow{width:83.33333333%}.row>.off-10-narrow{margin-left:83.33333333%}.row>.col-11-narrow{width:91.66666667%}.row>.off-11-narrow{margin-left:91.66666667%}.row>.col-12-narrow{width:100%}.row>.off-12-narrow{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 840px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrower{order:-1}.row>.col-1-narrower{width:8.33333333%}.row>.off-1-narrower{margin-left:8.33333333%}.row>.col-2-narrower{width:16.66666667%}.row>.off-2-narrower{margin-left:16.66666667%}.row>.col-3-narrower{width:25%}.row>.off-3-narrower{margin-left:25%}.row>.col-4-narrower{width:33.33333333%}.row>.off-4-narrower{margin-left:33.33333333%}.row>.col-5-narrower{width:41.66666667%}.row>.off-5-narrower{margin-left:41.66666667%}.row>.col-6-narrower{width:50%}.row>.off-6-narrower{margin-left:50%}.row>.col-7-narrower{width:58.33333333%}.row>.off-7-narrower{margin-left:58.33333333%}.row>.col-8-narrower{width:66.66666667%}.row>.off-8-narrower{margin-left:66.66666667%}.row>.col-9-narrower{width:75%}.row>.off-9-narrower{margin-left:75%}.row>.col-10-narrower{width:83.33333333%}.row>.off-10-narrower{margin-left:83.33333333%}.row>.col-11-narrower{width:91.66666667%}.row>.off-11-narrower{margin-left:91.66666667%}.row>.col-12-narrower{width:100%}.row>.off-12-narrower{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 736px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobile{order:-1}.row>.col-1-mobile{width:8.33333333%}.row>.off-1-mobile{margin-left:8.33333333%}.row>.col-2-mobile{width:16.66666667%}.row>.off-2-mobile{margin-left:16.66666667%}.row>.col-3-mobile{width:25%}.row>.off-3-mobile{margin-left:25%}.row>.col-4-mobile{width:33.33333333%}.row>.off-4-mobile{margin-left:33.33333333%}.row>.col-5-mobile{width:41.66666667%}.row>.off-5-mobile{margin-left:41.66666667%}.row>.col-6-mobile{width:50%}.row>.off-6-mobile{margin-left:50%}.row>.col-7-mobile{width:58.33333333%}.row>.off-7-mobile{margin-left:58.33333333%}.row>.col-8-mobile{width:66.66666667%}.row>.off-8-mobile{margin-left:66.66666667%}.row>.col-9-mobile{width:75%}.row>.off-9-mobile{margin-left:75%}.row>.col-10-mobile{width:83.33333333%}.row>.off-10-mobile{margin-left:83.33333333%}.row>.col-11-mobile{width:91.66666667%}.row>.off-11-mobile{margin-left:91.66666667%}.row>.col-12-mobile{width:100%}.row>.off-12-mobile{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}@media screen and (max-width: 480px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobilep{order:-1}.row>.col-1-mobilep{width:8.33333333%}.row>.off-1-mobilep{margin-left:8.33333333%}.row>.col-2-mobilep{width:16.66666667%}.row>.off-2-mobilep{margin-left:16.66666667%}.row>.col-3-mobilep{width:25%}.row>.off-3-mobilep{margin-left:25%}.row>.col-4-mobilep{width:33.33333333%}.row>.off-4-mobilep{margin-left:33.33333333%}.row>.col-5-mobilep{width:41.66666667%}.row>.off-5-mobilep{margin-left:41.66666667%}.row>.col-6-mobilep{width:50%}.row>.off-6-mobilep{margin-left:50%}.row>.col-7-mobilep{width:58.33333333%}.row>.off-7-mobilep{margin-left:58.33333333%}.row>.col-8-mobilep{width:66.66666667%}.row>.off-8-mobilep{margin-left:66.66666667%}.row>.col-9-mobilep{width:75%}.row>.off-9-mobilep{margin-left:75%}.row>.col-10-mobilep{width:83.33333333%}.row>.off-10-mobilep{margin-left:83.33333333%}.row>.col-11-mobilep{width:91.66666667%}.row>.off-11-mobilep{margin-left:91.66666667%}.row>.col-12-mobilep{width:100%}.row>.off-12-mobilep{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}section.special,article.special{text-align:center}header p{color:#999;font-size:1.25em;position:relative;margin-top:-1.25em;margin-bottom:0.25em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:2.25em}header.major p{position:relative;border-top:solid 1px #e0e0e0;padding:1em 0 0 0;margin:0;top:-1em;font-size:1.5em;letter-spacing:-0.025em}footer{margin:0 0 3em 0}footer>:last-child{margin-bottom:0}footer.major{padding-top:3em}input[type="text"],input[type="password"],input[type="email"],textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:border-color 0.2s ease-in-out;-webkit-transition:border-color 0.2s ease-in-out;-ms-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out;background:#fff;border:solid 1px #e0e0e0;border-radius:5px;color:inherit;display:block;outline:0;padding:0.75em;text-decoration:none;width:100%}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,textarea:focus{border-color:#37c0fb}input[type="text"],input[type="password"],input[type="email"]{line-height:1em}label{display:block;color:inherit;font-weight:600;line-height:1.75em;margin-bottom:0.5em}::-webkit-input-placeholder{color:#999;position:relative;top:3px}:-moz-placeholder{color:#999}::-moz-placeholder{color:#999}:-ms-input-placeholder{color:#999}.image{border:0;display:inline-block;position:relative;border-radius:5px}.image img{display:block;border-radius:5px}.image.left{display:block;float:left;margin:0 2em 2em 0;position:relative;top:0.25em}.image.left img{display:block;width:100%}.image.fit{display:block}.image.fit img{display:block;width:100%}.image.featured{display:block;margin:0 0 2em 0}.image.featured img{display:block;width:100%}.icon{text-decoration:none;position:relative;text-decoration:none}.icon:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:400}.icon>.label{display:none}.icon:before{line-height:inherit}.icon.solid:before{font-weight:900}.icon.brands:before{font-family:'Font Awesome 5 Brands'}.icon.major{text-align:center;cursor:default;background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff;border-radius:100%;display:inline-block;width:5em;height:5em;line-height:5em;box-shadow:0 0 0 7px white,0 0 0 8px #e0e0e0;margin:0 0 2em 0}.icon.major:before{font-size:36px}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:0.25em}ul{list-style:disc;padding-left:1em}ul li{padding-left:0.5em}ul.tags{list-style:none;font-size:1rem;display:flex;padding-left:0;margin-left:-8px}ul.links{list-style:none;padding-left:0}ul.links li{line-height:2.5em;padding-left:0}ul.icons{cursor:default;list-style:none;padding-left:0}ul.icons li{display:inline-block;line-height:1em;padding-left:1.5em}ul.icons li:first-child{padding-left:0}ul.icons li a,ul.icons li span{font-size:2em;border:0}ul.menu{list-style:none;padding-left:0}ul.menu li{border-left:solid 1px #e0e0e0;display:inline-block;padding:0 0 0 1em;margin:0 0 0 1em}ul.menu li:first-child{border-left:0;margin-left:0;padding-left:0}ul.actions{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;cursor:default;list-style:none;margin-left:-1em;padding-left:0}ul.actions li{padding:0 0 0 1em;vertical-align:middle}ul.actions.special{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}ul.actions.special li:first-child{padding-left:0}ul.actions.stacked{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0}ul.actions.stacked li{padding:1.25em 0 0 0}ul.actions.stacked li:first-child{padding-top:0}ul.actions.fit{width:calc(100% + 1em)}ul.actions.fit li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;width:100%}ul.actions.fit li>*{width:100%}ul.actions.fit.stacked{width:100%}@media screen and (max-width: 736px){ul.actions:not(.fixed){-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0;width:100% !important}ul.actions:not(.fixed) li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;padding:1em 0 0 0;text-align:center;width:100%}ul.actions:not(.fixed) li>*{width:100%}ul.actions:not(.fixed) li:first-child{padding-top:0}ul.actions:not(.fixed) li input[type="submit"],ul.actions:not(.fixed) li input[type="reset"],ul.actions:not(.fixed) li input[type="button"],ul.actions:not(.fixed) li button,ul.actions:not(.fixed) li .button{width:100%}ul.actions:not(.fixed) li input[type="submit"].icon:before,ul.actions:not(.fixed) li input[type="reset"].icon:before,ul.actions:not(.fixed) li input[type="button"].icon:before,ul.actions:not(.fixed) li button.icon:before,ul.actions:not(.fixed) li .button.icon:before{margin-left:-0.5em}}table{width:100%}table.default{width:100%}table.default tbody tr{border-bottom:solid 1px #e0e0e0}table.default td{padding:0.5em 1em 0.5em 1em}table.default th{font-weight:600;padding:0.5em 1em 0.5em 1em;text-align:left}table.default thead{background-color:#555555;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}input[type="submit"],input[type="reset"],input[type="button"],button,.button{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-webkit-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-ms-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-color:#37c0fb;border-radius:5px;border:0;color:#fff;cursor:pointer;display:inline-block;padding:0 1.5em;line-height:2.75em;min-width:9em;text-align:center;text-decoration:none;font-weight:600;letter-spacing:-0.025em}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.button:hover{background-color:#50c8fc;color:#fff !important}input[type="submit"]:active,input[type="reset"]:active,input[type="button"]:active,button:active,.button:active{background-color:#1eb8fb;color:#fff}input[type="submit"].alt,input[type="reset"].alt,input[type="button"].alt,button.alt,.button.alt{background-color:#555555;color:#fff}input[type="submit"].alt:hover,input[type="reset"].alt:hover,input[type="button"].alt:hover,button.alt:hover,.button.alt:hover{background-color:#626262}input[type="submit"].alt:active,input[type="reset"].alt:active,input[type="button"].alt:active,button.alt:active,.button.alt:active{background-color:#484848}input[type="submit"].icon:before,input[type="reset"].icon:before,input[type="button"].icon:before,button.icon:before,.button.icon:before{margin-right:0.5em}input[type="submit"].fit,input[type="reset"].fit,input[type="button"].fit,button.fit,.button.fit{width:100%}input[type="submit"].small,input[type="reset"].small,input[type="button"].small,button.small,.button.small{font-size:0.8em}.box.highlight{text-align:center}.box.post{position:relative;margin:0 0 2em 0}.box.post:after{content:'';display:block;clear:both}.box.post .inner{margin-left:calc(30% + 2em)}.box.post .inner>:last-child{margin-bottom:0}.box.post .image{width:30%;margin:0}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-image:url("images/bg02.png"),url("images/bg02.png"),url("images/bg01.png");background-position:top left, top left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:1.5em;letter-spacing:-0.025em;border:0}#nav{cursor:default;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");padding:0}#nav:after{content:'';display:block;width:100%;height:0.75em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul{margin:0}#nav>ul>li{position:relative;display:inline-block;margin-left:1em}#nav>ul>li a{color:#c0c0c0;text-decoration:none;border:0;display:block;padding:1.5em 0.5em 1.35em 0.5em}#nav>ul>li:first-child{margin-left:0}#nav>ul>li:hover a{color:#fff}#nav>ul>li.current{font-weight:600}#nav>ul>li.current:before{-moz-transform:rotateZ(45deg);-webkit-transform:rotateZ(45deg);-ms-transform:rotateZ(45deg);transform:rotateZ(45deg);width:0.75em;height:0.75em;content:'';display:block;position:absolute;bottom:-0.5em;left:50%;margin-left:-0.375em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul>li.current a{color:#fff}#nav>ul>li.active a{color:#fff}#nav>ul>li.active.current:before{opacity:0}#nav>ul>li>ul{display:none}.dropotron{background-image:-moz-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-color:#333;border-radius:5px;color:#fff;min-width:10em;padding:1em 0;text-align:center;box-shadow:0 1em 1em 0 rgba(0,0,0,0.5);list-style:none}.dropotron>li{line-height:2em;padding:0 1.1em 0 1em}.dropotron>li>a{color:#c0c0c0;text-decoration:none;border:0}.dropotron>li.active>a,.dropotron>li:hover>a{color:#fff}.dropotron.level-0{border-radius:0 0 5px 5px;font-size:0.9em;padding-top:0;margin-top:-1px}#banner{background-image:url(images/accueil.jpg);background-position:center center;background-size:cover;height:28em;text-align:center;position:relative}#banner header{position:absolute;bottom:0;left:0;width:100%;background:#212121;background:rgba(27,27,27,0.75);color:#fff;padding:1.5em 0}#banner header h2{display:inline-block;margin:0;font-size:1.25em;vertical-align:middle}#banner header h2 em{opacity:0.75}#banner header h2 a{border-bottom-color:rgba(255,255,255,0.5)}#banner header h2 a:hover{border-bottom-color:transparent}#banner header .button{vertical-align:middle;margin-left:1em}.wrapper{padding:5em 0 3em 0}.wrapper.style1{background:#fff}.wrapper.style2{background-color:#fff;background-image:url("images/bg02.png"),url("images/bg03.png"),url("images/bg01.png");background-position:top left, bottom left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}.wrapper.style3{background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}.wrapper.style3 .button{background:#fff;color:#474747}.wrapper.style3 .button:hover{color:#37c0fb !important}#cta{text-align:center;padding:3.5em 0}#cta header h2{display:inline-block;vertical-align:middle;margin:0}#cta header .button{vertical-align:middle;margin-left:1em}#footer{padding:4em 0 8em 0}#footer a{color:inherit;border-bottom-color:rgba(71,71,71,0.25)}#footer a:hover{color:#37c0fb;border-bottom-color:transparent}#footer .container{margin-bottom:4em}#footer .icons{text-align:center;margin:0}#footer .icons a{color:#999}#footer .icons a:hover{color:#474747}#footer .copyright{color:#999;margin-top:1.5em;text-align:center;font-size:0.9em}@media screen and (max-width: 1680px){body,input,select,textarea{font-size:14pt;line-height:1.5em}#banner{height:24em}}@media screen and (max-width: 1280px){body,input,select,textarea{font-size:13pt;line-height:1.5em}ol{padding-left:1.25em}ol li{padding-left:0.25em}ul.icons li a,ul.icons li span{font-size:1.5em}#header{padding:2em 0 0 0}#header h1{padding:0 0 1.75em 0}#banner{height:20em}.wrapper{padding:3em 0 1em 0}#cta{padding:2em 0}#footer{padding:3em 0 3em 0}#footer .container{margin-bottom:1em}}@media screen and (max-width: 980px){body,input,select,textarea{font-size:12pt;line-height:1.5em}}#navPanel,#titleBar{display:none}@media screen and (max-width: 840px){html,body{overflow-x:hidden}body,input,select,textarea{font-size:13pt}h1,h2,h3,h4,h5,h6{margin-bottom:0.5em}header p{margin-top:-0.75em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:1.75em}header.major p{top:-0.25em;font-size:1.25em}.box.highlight{text-align:left;position:relative;padding-left:7em}.box.highlight i{position:absolute;margin:0;left:0;top:0.25em}.box.post .inner{margin-left:calc(20% + 2em)}.box.post .image{width:20%}#header{display:none}#banner{height:20em}#banner header h2{display:block}#banner header .button{margin:1em 0 0 0}#cta{padding:1.5em 0}#cta header h2{display:block}#cta header .button{margin:1em 0 0 0}#footer{text-align:center}#footer .container{margin-bottom:4em}#footer form .actions{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}#footer form .actions li:first-child{padding-left:0}#page-wrapper{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;padding-bottom:1px;padding-top:44px}#titleBar{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:44px;left:0;position:fixed;top:0;width:100%;z-index:10001;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");height:44px;line-height:44px;box-shadow:0 4px 0 0 #37c0fb}#titleBar .title{display:block;position:relative;font-weight:600;text-align:center;color:#fff;z-index:1}#titleBar .title em{font-style:normal;font-weight:300}#titleBar .toggle{text-decoration:none;border:0;height:60px;left:0;position:absolute;top:0;width:80px;z-index:2}#titleBar .toggle:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:900}#titleBar .toggle:before{content:'\f0c9';display:block;height:44px;line-height:inherit;text-align:center;width:44px;color:#fff;opacity:0.5}#titleBar .toggle:active:before{opacity:0.75}#navPanel{background-color:#1f1f1f;box-shadow:inset -1px 0 3px 0 rgba(0,0,0,0.5);background-image:-moz-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateX(-275px);-webkit-transform:translateX(-275px);-ms-transform:translateX(-275px);transform:translateX(-275px);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:100%;left:0;overflow-y:auto;position:fixed;top:0;width:275px;z-index:10002}#navPanel .link{border-bottom:0;border-top:solid 1px rgba(255,255,255,0.05);color:#888;display:block;height:48px;line-height:48px;padding:0 1em 0 1em;text-decoration:none}#navPanel .link:first-child{border-top:0}#navPanel .link.depth-0{color:#fff}#navPanel .link .indent-1{display:inline-block;width:1em}#navPanel .link .indent-2{display:inline-block;width:2em}#navPanel .link .indent-3{display:inline-block;width:3em}#navPanel .link .indent-4{display:inline-block;width:4em}#navPanel .link .indent-5{display:inline-block;width:5em}body.navPanel-visible #page-wrapper{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #titleBar{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #navPanel{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}@media screen and (max-width: 736px){body,input,select,textarea{font-size:11pt;line-height:1.35em}h2{font-size:1.25em;letter-spacing:0;line-height:1.35em}h3{font-size:1em;letter-spacing:0;line-height:1.35em}header p{margin-top:-0.5em;font-size:1em}header.major{padding:0 20px}header.major h2{font-size:1.25em}header.major p{top:0;margin-top:1.25em;font-size:1em}ul.menu li{border:0;padding:0;margin:0;display:block;line-height:2em}#banner{height:18em}.wrapper{padding:2em 0 1px 0}}@media screen and (max-width: 480px){.icon.major{width:4em;height:4em;line-height:4em;box-shadow:0 0 0 7px white, 0 0 0 8px #e0e0e0}.icon.major:before{font-size:24px}input[type="submit"],input[type="reset"],input[type="button"],button,.button{width:100%;display:block}.box.highlight{padding-left:calc(4em + 30px)}.box.post .inner{margin-left:calc(30% + 20px)}.box.post .image{width:30%}#banner{height:20em}#banner header{padding:20px}.wrapper{padding:2em 20px 1px 20px}#cta{padding:20px}#footer{padding:2em 20px;text-align:left}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:'FontAwesome';font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-origin:border-box;background-image:url("images/logo.svg");background-position:bottom 85% left 10%;background-size:8em;background-repeat:no-repeat}#header .short_text{display:none}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:2.25em;letter-spacing:-0.05em;line-height:1.2;border:0}table{width:100%;background:transparent;border-collapse:collapse;border-spacing:0;text-align:left}table th{padding:5px 10px;font-weight:bold;border-bottom:2px solid #909ba2}table td{padding:5px 10px}table tr:nth-child(2n){background:#f7f8f8}@media screen and (max-width: 736px){#banner{height:10em}}@media screen and (max-width: 480px){#banner{height:10em}#banner header{display:none}}
+
+/*# sourceMappingURL=style.css.map */
\ No newline at end of file
diff --git a/public/style.css.map b/public/style.css.map
new file mode 100644
index 0000000..fb25122
--- /dev/null
+++ b/public/style.css.map
@@ -0,0 +1,33 @@
+{
+ "version": 3,
+ "file": "style.css",
+ "sourceRoot": "/home/zazou/Documents/web/site-bill",
+ "sources": [
+ "themes/hugo-arcana/assets/sass/main.scss",
+ "themes/hugo-arcana/assets/sass/libs/_vars.scss",
+ "themes/hugo-arcana/assets/sass/libs/_functions.scss",
+ "themes/hugo-arcana/assets/sass/libs/_mixins.scss",
+ "themes/hugo-arcana/assets/sass/libs/_vendor.scss",
+ "themes/hugo-arcana/assets/sass/libs/_breakpoints.scss",
+ "themes/hugo-arcana/assets/sass/libs/_html-grid.scss",
+ "assets/sass/custom.scss",
+ "assets/sass/utils/_variables.scss",
+ "assets/sass/components/_alert.scss",
+ "assets/sass/layouts/_header.scss"
+ ],
+ "sourcesContent": [
+ "@import 'libs/vars';\n@import 'libs/functions';\n@import 'libs/mixins';\n@import 'libs/vendor';\n@import 'libs/breakpoints';\n@import 'libs/html-grid';\n@import url(\"css/fontawesome-all.min.css\");\n@import url(\"css/font-source-sans-pro.css\");\n\n/*\n Arcana by HTML5 UP\n html5up.net | @ajlkn\n Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)\n*/\n\n\n// Breakpoints.\n\n @include breakpoints((\n wide: ( 1281px, 1680px ),\n normal: ( 981px, 1280px ),\n narrow: ( 841px, 980px ),\n narrower: ( 737px, 840px ),\n mobile: ( 481px, 736px ),\n mobilep: ( null, 480px )\n ));\n\n// Reset.\n// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)\n\n html, body, div, span, applet, object,\n iframe, h1, h2, h3, h4, h5, h6, p, blockquote,\n pre, a, abbr, acronym, address, big, cite,\n code, del, dfn, em, img, ins, kbd, q, s, samp,\n small, strike, strong, sub, sup, tt, var, b,\n u, i, center, dl, dt, dd, ol, ul, li, fieldset,\n form, label, legend, table, caption, tbody,\n tfoot, thead, tr, th, td, article, aside,\n canvas, details, embed, figure, figcaption,\n footer, header, hgroup, menu, nav, output, ruby,\n section, summary, time, mark, audio, video {\n margin: 0;\n padding: 0;\n border: 0;\n font-size: 100%;\n font: inherit;\n vertical-align: baseline;\n }\n\n article, aside, details, figcaption, figure,\n footer, header, hgroup, menu, nav, section {\n display: block;\n }\n\n body {\n line-height: 1;\n }\n\n ol, ul {\n list-style:none;\n }\n\n blockquote, q {\n quotes: none;\n\n &:before,\n &:after {\n content: '';\n content: none;\n }\n }\n\n table {\n border-collapse: collapse;\n border-spacing: 0;\n }\n\n body {\n -webkit-text-size-adjust: none;\n }\n\n mark {\n background-color: transparent;\n color: inherit;\n }\n\n input::-moz-focus-inner {\n border: 0;\n padding: 0;\n }\n\n input, select, textarea {\n -moz-appearance: none;\n -webkit-appearance: none;\n -ms-appearance: none;\n appearance: none;\n }\n\n/* Basic */\n\n // Set box model to border-box.\n // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice\n html {\n box-sizing: border-box;\n }\n\n *, *:before, *:after {\n box-sizing: inherit;\n }\n\n body {\n background: _palette(bg) url('images/bg01.png');\n\n // Stops initial animations until page loads.\n &.is-preload {\n *, *:before, *:after {\n @include vendor('animation', 'none !important');\n @include vendor('transition', 'none !important');\n }\n }\n\n }\n\n body, input, select, textarea {\n color: _palette(fg);\n font-family: 'Source Sans Pro', sans-serif;\n font-size: 16pt;\n font-weight: 300;\n line-height: 1.65em;\n }\n\n a {\n @include vendor('transition', 'color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out');\n color: _palette(accent, bg);\n text-decoration: none;\n border-bottom: dotted 1px;\n\n &:hover {\n color: _palette(accent, bg);\n border-bottom-color: transparent;\n }\n }\n\n strong, b {\n font-weight: 600;\n }\n\n em, i {\n font-style: italic;\n }\n\n p, ul, ol, dl, table, blockquote {\n margin: 0 0 2em 0;\n }\n\n h1, h2, h3, h4, h5, h6 {\n color: inherit;\n font-weight: 600;\n line-height: 1.75em;\n margin-bottom: 1em;\n\n a {\n color: inherit;\n text-decoration: none;\n }\n\n em {\n font-style: normal;\n font-weight: 300;\n }\n }\n\n h2 {\n font-size: 1.75em;\n letter-spacing: -0.025em;\n }\n\n h3 {\n font-size: 1.2em;\n letter-spacing: -0.025em;\n }\n\n sub {\n font-size: 0.8em;\n position: relative;\n top: 0.5em;\n }\n\n sup {\n font-size: 0.8em;\n position: relative;\n top: -0.5em;\n }\n\n hr {\n border-top: solid 1px _palette(border);\n border: 0;\n margin-bottom: 1.5em;\n }\n\n blockquote {\n border-left: solid 0.5em _palette(border);\n font-style: italic;\n padding: 1em 0 1em 2em;\n }\n\n time {\n font-size: 1rem;\n }\n\n/* Container */\n\n .container {\n margin: 0 auto;\n max-width: 100%;\n width: 1400px;\n\n @include breakpoint('<=wide') {\n width: 1200px;\n }\n\n @include breakpoint('<=normal') {\n width: 960px;\n }\n\n @include breakpoint('<=narrow') {\n width: 95%;\n }\n\n @include breakpoint('<=narrower') {\n width: 95%;\n }\n\n @include breakpoint('<=mobile') {\n width: 90%;\n }\n\n @include breakpoint('<=mobilep') {\n width: 100%;\n }\n }\n\n/* Row */\n\n .row {\n @include html-grid((50px, 50px));\n\n @include breakpoint('<=wide') {\n @include html-grid((40px, 40px), 'wide');\n }\n\n @include breakpoint('<=normal') {\n @include html-grid((30px, 30px), 'normal');\n }\n\n @include breakpoint('<=narrow') {\n @include html-grid((30px, 30px), 'narrow');\n }\n\n @include breakpoint('<=narrower') {\n @include html-grid((30px, 30px), 'narrower');\n }\n\n @include breakpoint('<=mobile') {\n @include html-grid((20px, 20px), 'mobile');\n }\n\n @include breakpoint('<=mobilep') {\n @include html-grid((20px, 20px), 'mobilep');\n }\n }\n\n/* Section/Article */\n\n section, article {\n &.special {\n text-align: center;\n }\n }\n\n header {\n p {\n color: _palette(fg-light);\n font-size: 1.25em;\n position: relative;\n margin-top: -1.25em;\n margin-bottom: 0.25em;\n }\n\n &.major {\n text-align: center;\n margin: 0 0 2em 0;\n\n h2 {\n font-size: 2.25em;\n }\n\n p {\n position: relative;\n border-top: solid 1px _palette(border);\n padding: 1em 0 0 0;\n margin: 0;\n top: -1em;\n font-size: 1.5em;\n letter-spacing: -0.025em;\n }\n }\n }\n\n footer {\n margin: 0 0 3em 0;\n\n > :last-child {\n margin-bottom: 0;\n }\n\n &.major {\n padding-top: 3em;\n }\n }\n\n/* Form */\n\n input[type=\"text\"],\n input[type=\"password\"],\n input[type=\"email\"],\n textarea {\n @include vendor('appearance', 'none');\n @include vendor('transition', 'border-color 0.2s ease-in-out');\n background: #fff;\n border: solid 1px _palette(border);\n border-radius: _size(radius);\n color: inherit;\n display: block;\n outline: 0;\n padding: 0.75em;\n text-decoration: none;\n width: 100%;\n\n &:focus {\n border-color: _palette(accent, bg);\n }\n }\n\n input[type=\"text\"],\n input[type=\"password\"],\n input[type=\"email\"] {\n line-height: 1em;\n }\n\n label {\n display: block;\n color: inherit;\n font-weight: 600;\n line-height: 1.75em;\n margin-bottom: 0.5em;\n }\n\n ::-webkit-input-placeholder {\n color: _palette(fg-light);\n position: relative;\n top: 3px;\n }\n\n :-moz-placeholder {\n color: _palette(fg-light);\n }\n\n ::-moz-placeholder {\n color: _palette(fg-light);\n }\n\n :-ms-input-placeholder {\n color: _palette(fg-light);\n }\n\n/* Image */\n\n .image {\n border: 0;\n display: inline-block;\n position: relative;\n border-radius: _size(radius);\n\n img {\n display: block;\n border-radius: _size(radius);\n }\n\n &.left {\n display: block;\n float: left;\n margin: 0 2em 2em 0;\n position: relative;\n top: 0.25em;\n\n img {\n display: block;\n width: 100%;\n }\n }\n\n &.fit {\n display: block;\n\n img {\n display: block;\n width: 100%;\n }\n }\n\n &.featured {\n display: block;\n margin: 0 0 2em 0;\n\n img {\n display: block;\n width: 100%;\n }\n }\n }\n\n/* Icon */\n\n .icon {\n @include icon;\n position: relative;\n text-decoration: none;\n\n > .label {\n display: none;\n }\n\n &:before {\n line-height: inherit;\n }\n\n &.solid {\n &:before {\n font-weight: 900;\n }\n }\n\n &.brands {\n &:before {\n font-family: 'Font Awesome 5 Brands';\n }\n }\n\n &.major {\n text-align: center;\n cursor: default;\n background-color: _palette(accent, bg);\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15))', 'url(\"images/bg01.png\")'));\n color: _palette(accent, fg);\n border-radius: 100%;\n display: inline-block;\n width: 5em;\n height: 5em;\n line-height: 5em;\n box-shadow: 0 0 0 7px white, 0 0 0 8px _palette(border);\n margin: 0 0 2em 0;\n\n &:before {\n font-size: 36px;\n }\n }\n }\n\n/* Lists */\n\n ol {\n list-style: decimal;\n padding-left: 1.25em;\n\n li {\n padding-left: 0.25em;\n }\n }\n\n ul {\n list-style: disc;\n padding-left: 1em;\n\n li {\n padding-left: 0.5em;\n }\n }\n\n ul.tags {\n list-style: none;\n font-size: 1rem;\n display: flex;\n padding-left: 0;\n margin-left: -8px;\n }\n\n/* Links */\n\n ul.links {\n list-style: none;\n padding-left: 0;\n\n li {\n line-height: 2.5em;\n padding-left: 0;\n }\n }\n\n/* Icons */\n\n ul.icons {\n cursor: default;\n list-style: none;\n padding-left: 0;\n\n li {\n display: inline-block;\n line-height: 1em;\n padding-left: 1.5em;\n\n &:first-child {\n padding-left: 0;\n }\n\n a, span {\n font-size: 2em;\n border: 0;\n }\n }\n }\n\n/* Menu */\n\n ul.menu {\n list-style: none;\n padding-left: 0;\n\n li {\n border-left: solid 1px _palette(border);\n display: inline-block;\n padding: 0 0 0 1em;\n margin: 0 0 0 1em;\n\n &:first-child\n {\n border-left: 0;\n margin-left: 0;\n padding-left: 0;\n }\n }\n }\n\n/* Actions */\n\n ul.actions {\n @include vendor('display', 'flex');\n cursor: default;\n list-style: none;\n margin-left: -1em;\n padding-left: 0;\n\n li {\n padding: 0 0 0 1em;\n vertical-align: middle;\n }\n\n &.special {\n @include vendor('justify-content', 'center');\n width: 100%;\n margin-left: 0;\n\n li {\n &:first-child {\n padding-left: 0;\n }\n }\n }\n\n &.stacked {\n @include vendor('flex-direction', 'column');\n margin-left: 0;\n\n li {\n padding: 1.25em 0 0 0;\n\n &:first-child {\n padding-top: 0;\n }\n }\n }\n\n &.fit {\n width: calc(100% + 1em);\n\n li {\n @include vendor('flex-grow', '1');\n @include vendor('flex-shrink', '1');\n width: 100%;\n\n > * {\n width: 100%;\n }\n }\n\n &.stacked {\n width: 100%;\n }\n }\n\n @include breakpoint('<=mobile') {\n &:not(.fixed) {\n @include vendor('flex-direction', 'column');\n margin-left: 0;\n width: 100% !important;\n\n li {\n @include vendor('flex-grow', '1');\n @include vendor('flex-shrink', '1');\n padding: 1em 0 0 0;\n text-align: center;\n width: 100%;\n\n > * {\n width: 100%;\n }\n\n &:first-child {\n padding-top: 0;\n }\n\n input[type=\"submit\"],\n input[type=\"reset\"],\n input[type=\"button\"],\n button,\n .button {\n width: 100%;\n\n &.icon {\n &:before {\n margin-left: -0.5em;\n }\n }\n }\n }\n }\n }\n }\n\n/* Tables */\n\n table {\n width: 100%;\n\n &.default {\n width: 100%;\n\n tbody {\n tr {\n border-bottom: solid 1px _palette(border);\n }\n }\n\n td {\n padding: 0.5em 1em 0.5em 1em;\n }\n\n th {\n font-weight: 600;\n padding: 0.5em 1em 0.5em 1em;\n text-align: left;\n }\n\n thead {\n background-color: #555555;\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15))', 'url(\"images/bg01.png\")'));\n color: #fff;\n }\n\n tfoot {\n }\n\n tbody {\n }\n }\n }\n\n/* Button */\n\n input[type=\"submit\"],\n input[type=\"reset\"],\n input[type=\"button\"],\n button,\n .button {\n @include vendor('appearance', 'none');\n @include vendor('transition', 'background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out');\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15))', 'url(\"images/bg01.png\")'));\n background-color: _palette(accent, bg);\n border-radius: _size(radius);\n border: 0;\n color: _palette(accent, fg);\n cursor: pointer;\n display: inline-block;\n padding: 0 1.5em;\n line-height: 2.75em;\n min-width: 9em;\n text-align: center;\n text-decoration: none;\n font-weight: 600;\n letter-spacing: -0.025em;\n\n &:hover {\n background-color: lighten(_palette(accent, bg), 5);\n color: _palette(accent, fg) !important;\n }\n\n &:active {\n background-color: darken(_palette(accent, bg), 5);\n color: _palette(accent, fg);\n }\n\n &.alt {\n background-color: #555555;\n color: #fff;\n\n &:hover {\n background-color: lighten(#555555, 5);\n }\n\n &:active {\n background-color: darken(#555555, 5);\n }\n }\n\n &.icon {\n &:before {\n margin-right: 0.5em;\n }\n }\n\n &.fit {\n width: 100%;\n }\n\n &.small {\n font-size: 0.8em;\n }\n }\n\n/* Box */\n\n .box {\n &.highlight {\n text-align: center;\n }\n\n &.post {\n position: relative;\n margin: 0 0 2em 0;\n\n &:after {\n content: '';\n display: block;\n clear: both;\n }\n\n .inner {\n margin-left: calc(30% + 2em);\n\n > :last-child {\n margin-bottom: 0;\n }\n }\n\n .image {\n width: 30%;\n margin: 0;\n }\n }\n }\n\n/* Header */\n\n #header {\n text-align: center;\n padding: 3em 0 0 0;\n background-color: #fff;\n background-image: url('images/bg02.png'), url('images/bg02.png'), url('images/bg01.png');\n background-position: top left, top left, top left;\n background-size: 100% 6em, 100% 6em, auto;\n background-repeat: no-repeat, no-repeat, repeat;\n\n h1 {\n padding: 0 0 2.75em 0;\n margin: 0;\n\n a {\n font-size: 1.5em;\n letter-spacing: -0.025em;\n border: 0;\n }\n }\n }\n\n #nav {\n cursor: default;\n background-color: #333;\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3))', 'url(\"images/bg01.png\")'));\n padding: 0;\n\n &:after {\n content: '';\n display: block;\n width: 100%;\n height: 0.75em;\n background-color: _palette(accent, bg);\n background-image: url(\"images/bg01.png\");\n }\n\n > ul {\n margin: 0;\n\n > li {\n position: relative;\n display: inline-block;\n margin-left: 1em;\n\n a {\n color: #c0c0c0;\n text-decoration: none;\n border: 0;\n display: block;\n padding: 1.5em 0.5em 1.35em 0.5em;\n }\n\n &:first-child {\n margin-left: 0;\n }\n\n &:hover {\n a {\n color: #fff;\n }\n }\n\n &.current {\n font-weight: 600;\n\n &:before {\n @include vendor('transform', 'rotateZ(45deg)');\n width: 0.75em;\n height: 0.75em;\n content: '';\n display: block;\n position: absolute;\n bottom: -0.5em;\n left: 50%;\n margin-left: -0.375em;\n background-color: _palette(accent, bg);\n background-image: url(\"images/bg01.png\");\n }\n\n a {\n color: #fff;\n }\n }\n\n &.active {\n a {\n color: #fff;\n }\n\n &.current {\n &:before {\n opacity: 0;\n }\n }\n }\n\n > ul {\n display: none;\n }\n }\n }\n }\n\n/* Dropotron */\n\n .dropotron {\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0))', 'url(\"images/bg01.png\")'));\n background-color: #333;\n border-radius: _size(radius);\n color: #fff;\n min-width: 10em;\n padding: 1em 0;\n text-align: center;\n box-shadow: 0 1em 1em 0 rgba(0,0,0,0.5);\n list-style: none;\n\n > li {\n line-height: 2em;\n padding: 0 1.1em 0 1em;\n\n > a {\n color: #c0c0c0;\n text-decoration: none;\n border: 0;\n }\n\n &.active,\n &:hover {\n > a {\n color: #fff;\n }\n }\n }\n\n &.level-0 {\n border-radius: 0 0 _size(radius) _size(radius);\n font-size: 0.9em;\n padding-top: 0;\n margin-top: -1px;\n }\n }\n\n/* Banner */\n\n #banner {\n background-image: url(\n images/accueil.jpg\n );\n background-position: center center;\n background-size: cover;\n height: 28em;\n text-align: center;\n position: relative;\n\n header {\n position: absolute;\n bottom: 0;\n left: 0;\n width: 100%;\n background: #212121;\n background: rgba(27,27,27,0.75);\n color: #fff;\n padding: 1.5em 0;\n\n h2 {\n display: inline-block;\n margin: 0;\n font-size: 1.25em;\n vertical-align: middle;\n\n em {\n opacity: 0.75;\n }\n\n a {\n border-bottom-color: transparentize(#fff, 0.5);\n\n &:hover {\n border-bottom-color: transparent;\n }\n }\n }\n\n .button {\n vertical-align: middle;\n margin-left: 1em;\n }\n }\n }\n\n/* Wrapper */\n\n .wrapper {\n padding: 5em 0 3em 0;\n\n &.style1 {\n background: #fff;\n }\n\n &.style2 {\n background-color: #fff;\n background-image: url('images/bg02.png'), url('images/bg03.png'), url('images/bg01.png');\n background-position: top left, bottom left, top left;\n background-size: 100% 6em, 100% 6em, auto;\n background-repeat: no-repeat, no-repeat, repeat;\n }\n\n &.style3 {\n background-color: _palette(accent, bg);\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15))', 'url(\"images/bg01.png\")'));\n color: _palette(accent, fg);\n\n .button {\n background: _palette(accent, fg);\n color: _palette(fg);\n\n &:hover {\n color: _palette(accent, bg) !important;\n }\n }\n }\n }\n\n/* CTA */\n\n #cta {\n text-align: center;\n padding: 3.5em 0;\n\n header {\n h2 {\n display: inline-block;\n vertical-align: middle;\n margin: 0;\n }\n\n .button {\n vertical-align: middle;\n margin-left: 1em;\n }\n }\n }\n\n/* Footer */\n\n #footer {\n padding: 4em 0 8em 0;\n\n a {\n color: inherit;\n border-bottom-color: transparentize(_palette(fg), 0.75);\n\n &:hover {\n color: _palette(accent, bg);\n border-bottom-color: transparent;\n }\n }\n\n .container {\n margin-bottom: 4em;\n }\n\n .icons {\n text-align: center;\n margin: 0;\n\n a {\n color: _palette(fg-light);\n\n &:hover {\n color: _palette(fg);\n }\n }\n }\n\n .copyright {\n color: _palette(fg-light);\n margin-top: 1.5em;\n text-align: center;\n font-size: 0.9em;\n }\n }\n\n/* Wide */\n\n @include breakpoint('<=wide') {\n\n /* Basic */\n\n body, input, select, textarea {\n font-size: 14pt;\n line-height: 1.5em;\n }\n\n /* Banner */\n\n #banner {\n height: 24em;\n }\n\n }\n\n/* Normal */\n\n @include breakpoint('<=normal') {\n\n /* Basic */\n\n body, input, select, textarea {\n font-size: 13pt;\n line-height: 1.5em;\n }\n\n /* Lists */\n\n ol {\n padding-left: 1.25em;\n\n li {\n padding-left: 0.25em;\n }\n }\n\n /* Icons */\n\n ul.icons {\n li {\n a, span {\n font-size: 1.5em;\n }\n }\n }\n\n /* Header */\n\n #header {\n padding: 2em 0 0 0;\n\n h1 {\n padding: 0 0 1.75em 0;\n }\n }\n\n /* Banner */\n\n #banner {\n height: 20em;\n }\n\n /* Wrapper */\n\n .wrapper {\n padding: 3em 0 1em 0;\n }\n\n /* CTA */\n\n #cta {\n padding: 2em 0;\n }\n\n /* Footer */\n\n #footer {\n padding: 3em 0 3em 0;\n\n .container {\n margin-bottom: 1em;\n }\n }\n\n }\n\n/* Narrow */\n\n @include breakpoint('<=narrow') {\n\n /* Basic */\n\n body, input, select, textarea {\n font-size: 12pt;\n line-height: 1.5em;\n }\n\n }\n\n/* Narrower */\n\n #navPanel, #titleBar {\n display: none;\n }\n\n @include breakpoint('<=narrower') {\n\n /* Basic */\n\n html, body {\n overflow-x: hidden;\n }\n\n body, input, select, textarea {\n font-size: 13pt;\n }\n\n h1, h2, h3, h4, h5, h6 {\n margin-bottom: 0.5em;\n }\n\n header {\n p {\n margin-top: -0.75em;\n }\n\n &.major {\n text-align: center;\n margin: 0 0 2em 0;\n\n h2 {\n font-size: 1.75em;\n }\n\n p {\n top: -0.25em;\n font-size: 1.25em;\n }\n }\n }\n\n /* Box */\n\n .box {\n &.highlight {\n text-align: left;\n position: relative;\n padding-left: 7em;\n\n i {\n position: absolute;\n margin: 0;\n left: 0;\n top: 0.25em;\n }\n }\n\n &.post {\n .inner {\n margin-left: calc(20% + 2em);\n }\n\n .image {\n width: 20%;\n }\n }\n }\n\n /* Header */\n\n #header {\n display: none;\n }\n\n /* Banner */\n\n #banner {\n height: 20em;\n\n header {\n h2 {\n display: block;\n }\n\n .button {\n margin: 1em 0 0 0;\n }\n }\n }\n\n /* CTA */\n\n #cta {\n padding: 1.5em 0;\n\n header {\n h2 {\n display: block;\n }\n\n .button {\n margin: 1em 0 0 0;\n }\n }\n }\n\n /* Footer */\n\n #footer {\n text-align: center;\n\n .container {\n margin-bottom: 4em;\n }\n\n form .actions {\n @include vendor('justify-content', 'center');\n width: 100%;\n margin-left: 0;\n\n li {\n &:first-child {\n padding-left: 0;\n }\n }\n }\n }\n\n /* Nav */\n\n #page-wrapper {\n @include vendor('backface-visibility', 'hidden');\n @include vendor('transition', 'transform #{_duration(navPanel)} ease');\n padding-bottom: 1px;\n padding-top: 44px;\n }\n\n #titleBar {\n @include vendor('backface-visibility', 'hidden');\n @include vendor('transition', 'transform #{_duration(navPanel)} ease');\n display: block;\n height: 44px;\n left: 0;\n position: fixed;\n top: 0;\n width: 100%;\n z-index: _misc(z-index-base) + 1;\n background-color: #333;\n @include vendor('background-image', ('linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3))', 'url(\"images/bg01.png\")'));\n height: 44px;\n line-height: 44px;\n box-shadow: 0 4px 0 0 _palette(accent, bg);\n\n .title {\n display: block;\n position: relative;\n font-weight: 600;\n text-align: center;\n color: #fff;\n z-index: 1;\n\n em {\n font-style: normal;\n font-weight: 300;\n }\n }\n\n .toggle {\n @include icon(false, solid);\n border: 0;\n height: 60px;\n left: 0;\n position: absolute;\n top: 0;\n width: 80px;\n z-index: 2;\n\n &:before {\n content: '\\f0c9';\n display: block;\n height: 44px;\n line-height: inherit;\n text-align: center;\n width: 44px;\n color: #fff;\n opacity: 0.5;\n }\n\n &:active {\n &:before {\n opacity: 0.75;\n }\n }\n }\n }\n\n #navPanel {\n background-color: #1f1f1f;\n box-shadow: inset -1px 0 3px 0 rgba(0,0,0,0.5);\n @include vendor('background-image', ('linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15))', 'url(\"images/bg01.png\")'));\n @include vendor('backface-visibility', 'hidden');\n @include vendor('transform', 'translateX(#{_size(navPanel) * -1})');\n @include vendor('transition', ('transform #{_duration(navPanel)} ease'));\n display: block;\n height: 100%;\n left: 0;\n overflow-y: auto;\n position: fixed;\n top: 0;\n width: _size(navPanel);\n z-index: _misc(z-index-base) + 2;\n\n .link {\n border-bottom: 0;\n border-top: solid 1px rgba(255,255,255,0.05);\n color: #888;\n display: block;\n height: 48px;\n line-height: 48px;\n padding: 0 1em 0 1em;\n text-decoration: none;\n\n &:first-child {\n border-top: 0;\n }\n\n &.depth-0 {\n color: #fff;\n }\n\n .indent-1 { display: inline-block; width: 1em; }\n .indent-2 { display: inline-block; width: 2em; }\n .indent-3 { display: inline-block; width: 3em; }\n .indent-4 { display: inline-block; width: 4em; }\n .indent-5 { display: inline-block; width: 5em; }\n }\n }\n\n body {\n &.navPanel-visible {\n #page-wrapper {\n @include vendor('transform', 'translateX(#{_size(navPanel)})');\n }\n\n #titleBar {\n @include vendor('transform', 'translateX(#{_size(navPanel)})');\n }\n\n #navPanel {\n @include vendor('transform', 'translateX(0)');\n }\n }\n }\n\n }\n\n/* Mobile */\n\n @include breakpoint('<=mobile') {\n\n /* Basic */\n\n body, input, select, textarea {\n font-size: 11pt;\n line-height: 1.35em;\n }\n\n h2 {\n font-size: 1.25em;\n letter-spacing: 0;\n line-height: 1.35em;\n }\n\n h3 {\n font-size: 1em;\n letter-spacing: 0;\n line-height: 1.35em;\n }\n\n header {\n p {\n margin-top: -0.5em;\n font-size: 1em;\n }\n\n &.major {\n padding: 0 20px;\n\n h2 {\n font-size: 1.25em;\n }\n\n p {\n top: 0;\n margin-top: 1.25em;\n font-size: 1em;\n }\n }\n }\n\n /* Menu */\n\n ul.menu {\n li {\n border: 0;\n padding: 0;\n margin: 0;\n display: block;\n line-height: 2em;\n }\n }\n\n /* Banner */\n\n #banner {\n height: 18em;\n }\n\n /* Wrapper */\n\n .wrapper {\n padding: 2em 0 1px 0;\n }\n\n }\n\n/* Mobile (Portrait) */\n\n @include breakpoint('<=mobilep') {\n\n /* Icon */\n\n .icon {\n &.major {\n width: 4em;\n height: 4em;\n line-height: 4em;\n box-shadow: 0 0 0 7px white, 0 0 0 8px _palette(border);\n\n &:before {\n font-size: 24px;\n }\n }\n }\n\n /* Button */\n\n input[type=\"submit\"],\n input[type=\"reset\"],\n input[type=\"button\"],\n button,\n .button {\n width: 100%;\n display: block;\n }\n\n /* Box */\n\n .box {\n &.highlight {\n padding-left: calc(4em + 30px);\n }\n\n &.post {\n .inner {\n margin-left: calc(30% + 20px);\n }\n\n .image {\n width: 30%;\n }\n }\n }\n\n /* Banner */\n\n #banner {\n height: 20em;\n\n header {\n padding: 20px;\n }\n }\n\n /* Wrapper */\n\n .wrapper {\n padding: 2em 20px 1px 20px;\n }\n\n /* CTA */\n\n #cta {\n padding: 20px;\n }\n\n /* Footer */\n\n #footer {\n padding: 2em 20px;\n text-align: left;\n }\n\n }\n\n@import 'custom.scss';\n",
+ "// Misc.\n $misc: (\n z-index-base: 10000\n );\n\n// Duration.\n $duration: (\n navPanel: 0.5s\n );\n\n// Size.\n $size: (\n navPanel: 275px,\n radius: 5px\n );\n\n// Font.\n $font: (\n );\n\n// Palette.\n $palette: (\n bg: #f7f7f7,\n fg: #474747,\n fg-bold: #4c4c4c,\n fg-light: #999,\n border: #e0e0e0,\n\n accent: (\n bg: #37c0fb,\n fg: #fff\n )\n );\n",
+ "/// Removes a specific item from a list.\n/// @author Hugo Giraudel\n/// @param {list} $list List.\n/// @param {integer} $index Index.\n/// @return {list} Updated list.\n@function remove-nth($list, $index) {\n\n $result: null;\n\n @if type-of($index) != number {\n @warn \"$index: #{quote($index)} is not a number for `remove-nth`.\";\n }\n @else if $index == 0 {\n @warn \"List index 0 must be a non-zero integer for `remove-nth`.\";\n }\n @else if abs($index) > length($list) {\n @warn \"List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.\";\n }\n @else {\n\n $result: ();\n $index: if($index < 0, length($list) + $index + 1, $index);\n\n @for $i from 1 through length($list) {\n\n @if $i != $index {\n $result: append($result, nth($list, $i));\n }\n\n }\n\n }\n\n @return $result;\n\n}\n\n/// Gets a value from a map.\n/// @author Hugo Giraudel\n/// @param {map} $map Map.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function val($map, $keys...) {\n\n @if nth($keys, 1) == null {\n $keys: remove-nth($keys, 1);\n }\n\n @each $key in $keys {\n $map: map-get($map, $key);\n }\n\n @return $map;\n\n}\n\n/// Gets a duration value.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function _duration($keys...) {\n @return val($duration, $keys...);\n}\n\n/// Gets a font value.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function _font($keys...) {\n @return val($font, $keys...);\n}\n\n/// Gets a misc value.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function _misc($keys...) {\n @return val($misc, $keys...);\n}\n\n/// Gets a palette value.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function _palette($keys...) {\n @return val($palette, $keys...);\n}\n\n/// Gets a size value.\n/// @param {string} $keys Key(s).\n/// @return {string} Value.\n@function _size($keys...) {\n @return val($size, $keys...);\n}\n",
+ "/// Makes an element's :before pseudoelement a FontAwesome icon.\n/// @param {string} $content Optional content value to use.\n/// @param {string} $category Optional category to use.\n/// @param {string} $where Optional pseudoelement to target (before or after).\n@mixin icon($content: false, $category: regular, $where: before) {\n\n text-decoration: none;\n\n &:#{$where} {\n\n @if $content {\n content: $content;\n }\n\n -moz-osx-font-smoothing: grayscale;\n -webkit-font-smoothing: antialiased;\n display: inline-block;\n font-style: normal;\n font-variant: normal;\n text-rendering: auto;\n line-height: 1;\n text-transform: none !important;\n\n @if ($category == brands) {\n font-family: 'Font Awesome 5 Brands';\n }\n @elseif ($category == solid) {\n font-family: 'Font Awesome 5 Free';\n font-weight: 900;\n }\n @else {\n font-family: 'Font Awesome 5 Free';\n font-weight: 400;\n }\n\n }\n\n}\n\n/// Applies padding to an element, taking the current element-margin value into account.\n/// @param {mixed} $tb Top/bottom padding.\n/// @param {mixed} $lr Left/right padding.\n/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)\n/// @param {bool} $important If true, adds !important.\n@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {\n\n @if $important {\n $important: '!important';\n }\n\n $x: 0.1em;\n\n @if unit(_size(element-margin)) == 'rem' {\n $x: 0.1rem;\n }\n\n padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};\n\n}\n\n/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).\n/// @param {string} $svg SVG data URL.\n/// @return {string} Encoded SVG data URL.\n@function svg-url($svg) {\n\n $svg: str-replace($svg, '\"', '\\'');\n $svg: str-replace($svg, '%', '%25');\n $svg: str-replace($svg, '<', '%3C');\n $svg: str-replace($svg, '>', '%3E');\n $svg: str-replace($svg, '&', '%26');\n $svg: str-replace($svg, '#', '%23');\n $svg: str-replace($svg, '{', '%7B');\n $svg: str-replace($svg, '}', '%7D');\n $svg: str-replace($svg, ';', '%3B');\n\n @return url(\"data:image/svg+xml;charset=utf8,#{$svg}\");\n\n}\n",
+ "// vendor.scss v1.0 | @ajlkn | MIT licensed */\n\n// Vars.\n\n\t/// Vendor prefixes.\n\t/// @var {list}\n\t$vendor-prefixes: (\n\t\t'-moz-',\n\t\t'-webkit-',\n\t\t'-ms-',\n\t\t''\n\t);\n\n\t/// Properties that should be vendorized.\n\t/// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org\n\t/// @var {list}\n\t$vendor-properties: (\n\n\t\t// Animation.\n\t\t\t'animation',\n\t\t\t'animation-delay',\n\t\t\t'animation-direction',\n\t\t\t'animation-duration',\n\t\t\t'animation-fill-mode',\n\t\t\t'animation-iteration-count',\n\t\t\t'animation-name',\n\t\t\t'animation-play-state',\n\t\t\t'animation-timing-function',\n\n\t\t// Appearance.\n\t\t\t'appearance',\n\n\t\t// Backdrop filter.\n\t\t\t'backdrop-filter',\n\n\t\t// Background image options.\n\t\t\t'background-clip',\n\t\t\t'background-origin',\n\t\t\t'background-size',\n\n\t\t// Box sizing.\n\t\t\t'box-sizing',\n\n\t\t// Clip path.\n\t\t\t'clip-path',\n\n\t\t// Filter effects.\n\t\t\t'filter',\n\n\t\t// Flexbox.\n\t\t\t'align-content',\n\t\t\t'align-items',\n\t\t\t'align-self',\n\t\t\t'flex',\n\t\t\t'flex-basis',\n\t\t\t'flex-direction',\n\t\t\t'flex-flow',\n\t\t\t'flex-grow',\n\t\t\t'flex-shrink',\n\t\t\t'flex-wrap',\n\t\t\t'justify-content',\n\t\t\t'order',\n\n\t\t// Font feature.\n\t\t\t'font-feature-settings',\n\t\t\t'font-language-override',\n\t\t\t'font-variant-ligatures',\n\n\t\t// Font kerning.\n\t\t\t'font-kerning',\n\n\t\t// Fragmented borders and backgrounds.\n\t\t\t'box-decoration-break',\n\n\t\t// Grid layout.\n\t\t\t'grid-column',\n\t\t\t'grid-column-align',\n\t\t\t'grid-column-end',\n\t\t\t'grid-column-start',\n\t\t\t'grid-row',\n\t\t\t'grid-row-align',\n\t\t\t'grid-row-end',\n\t\t\t'grid-row-start',\n\t\t\t'grid-template-columns',\n\t\t\t'grid-template-rows',\n\n\t\t// Hyphens.\n\t\t\t'hyphens',\n\t\t\t'word-break',\n\n\t\t// Masks.\n\t\t\t'mask',\n\t\t\t'mask-border',\n\t\t\t'mask-border-outset',\n\t\t\t'mask-border-repeat',\n\t\t\t'mask-border-slice',\n\t\t\t'mask-border-source',\n\t\t\t'mask-border-width',\n\t\t\t'mask-clip',\n\t\t\t'mask-composite',\n\t\t\t'mask-image',\n\t\t\t'mask-origin',\n\t\t\t'mask-position',\n\t\t\t'mask-repeat',\n\t\t\t'mask-size',\n\n\t\t// Multicolumn.\n\t\t\t'break-after',\n\t\t\t'break-before',\n\t\t\t'break-inside',\n\t\t\t'column-count',\n\t\t\t'column-fill',\n\t\t\t'column-gap',\n\t\t\t'column-rule',\n\t\t\t'column-rule-color',\n\t\t\t'column-rule-style',\n\t\t\t'column-rule-width',\n\t\t\t'column-span',\n\t\t\t'column-width',\n\t\t\t'columns',\n\n\t\t// Object fit.\n\t\t\t'object-fit',\n\t\t\t'object-position',\n\n\t\t// Regions.\n\t\t\t'flow-from',\n\t\t\t'flow-into',\n\t\t\t'region-fragment',\n\n\t\t// Scroll snap points.\n\t\t\t'scroll-snap-coordinate',\n\t\t\t'scroll-snap-destination',\n\t\t\t'scroll-snap-points-x',\n\t\t\t'scroll-snap-points-y',\n\t\t\t'scroll-snap-type',\n\n\t\t// Shapes.\n\t\t\t'shape-image-threshold',\n\t\t\t'shape-margin',\n\t\t\t'shape-outside',\n\n\t\t// Tab size.\n\t\t\t'tab-size',\n\n\t\t// Text align last.\n\t\t\t'text-align-last',\n\n\t\t// Text decoration.\n\t\t\t'text-decoration-color',\n\t\t\t'text-decoration-line',\n\t\t\t'text-decoration-skip',\n\t\t\t'text-decoration-style',\n\n\t\t// Text emphasis.\n\t\t\t'text-emphasis',\n\t\t\t'text-emphasis-color',\n\t\t\t'text-emphasis-position',\n\t\t\t'text-emphasis-style',\n\n\t\t// Text size adjust.\n\t\t\t'text-size-adjust',\n\n\t\t// Text spacing.\n\t\t\t'text-spacing',\n\n\t\t// Transform.\n\t\t\t'transform',\n\t\t\t'transform-origin',\n\n\t\t// Transform 3D.\n\t\t\t'backface-visibility',\n\t\t\t'perspective',\n\t\t\t'perspective-origin',\n\t\t\t'transform-style',\n\n\t\t// Transition.\n\t\t\t'transition',\n\t\t\t'transition-delay',\n\t\t\t'transition-duration',\n\t\t\t'transition-property',\n\t\t\t'transition-timing-function',\n\n\t\t// Unicode bidi.\n\t\t\t'unicode-bidi',\n\n\t\t// User select.\n\t\t\t'user-select',\n\n\t\t// Writing mode.\n\t\t\t'writing-mode',\n\n\t);\n\n\t/// Values that should be vendorized.\n\t/// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org\n\t/// @var {list}\n\t$vendor-values: (\n\n\t\t// Cross fade.\n\t\t\t'cross-fade',\n\n\t\t// Element function.\n\t\t\t'element',\n\n\t\t// Filter function.\n\t\t\t'filter',\n\n\t\t// Flexbox.\n\t\t\t'flex',\n\t\t\t'inline-flex',\n\n\t\t// Grab cursors.\n\t\t\t'grab',\n\t\t\t'grabbing',\n\n\t\t// Gradients.\n\t\t\t'linear-gradient',\n\t\t\t'repeating-linear-gradient',\n\t\t\t'radial-gradient',\n\t\t\t'repeating-radial-gradient',\n\n\t\t// Grid layout.\n\t\t\t'grid',\n\t\t\t'inline-grid',\n\n\t\t// Image set.\n\t\t\t'image-set',\n\n\t\t// Intrinsic width.\n\t\t\t'max-content',\n\t\t\t'min-content',\n\t\t\t'fit-content',\n\t\t\t'fill',\n\t\t\t'fill-available',\n\t\t\t'stretch',\n\n\t\t// Sticky position.\n\t\t\t'sticky',\n\n\t\t// Transform.\n\t\t\t'transform',\n\n\t\t// Zoom cursors.\n\t\t\t'zoom-in',\n\t\t\t'zoom-out',\n\n\t);\n\n// Functions.\n\n\t/// Removes a specific item from a list.\n\t/// @author Hugo Giraudel\n\t/// @param {list} $list List.\n\t/// @param {integer} $index Index.\n\t/// @return {list} Updated list.\n\t@function remove-nth($list, $index) {\n\n\t\t$result: null;\n\n\t\t@if type-of($index) != number {\n\t\t\t@warn \"$index: #{quote($index)} is not a number for `remove-nth`.\";\n\t\t}\n\t\t@else if $index == 0 {\n\t\t\t@warn \"List index 0 must be a non-zero integer for `remove-nth`.\";\n\t\t}\n\t\t@else if abs($index) > length($list) {\n\t\t\t@warn \"List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.\";\n\t\t}\n\t\t@else {\n\n\t\t\t$result: ();\n\t\t\t$index: if($index < 0, length($list) + $index + 1, $index);\n\n\t\t\t@for $i from 1 through length($list) {\n\n\t\t\t\t@if $i != $index {\n\t\t\t\t\t$result: append($result, nth($list, $i));\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t@return $result;\n\n\t}\n\n\t/// Replaces a substring within another string.\n\t/// @author Hugo Giraudel\n\t/// @param {string} $string String.\n\t/// @param {string} $search Substring.\n\t/// @param {string} $replace Replacement.\n\t/// @return {string} Updated string.\n\t@function str-replace($string, $search, $replace: '') {\n\n\t\t$index: str-index($string, $search);\n\n\t\t@if $index {\n\t\t\t@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);\n\t\t}\n\n\t\t@return $string;\n\n\t}\n\n\t/// Replaces a substring within each string in a list.\n\t/// @param {list} $strings List of strings.\n\t/// @param {string} $search Substring.\n\t/// @param {string} $replace Replacement.\n\t/// @return {list} Updated list of strings.\n\t@function str-replace-all($strings, $search, $replace: '') {\n\n\t\t@each $string in $strings {\n\t\t\t$strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));\n\t\t}\n\n\t\t@return $strings;\n\n\t}\n\n// Mixins.\n\n\t/// Wraps @content in vendorized keyframe blocks.\n\t/// @param {string} $name Name.\n\t@mixin keyframes($name) {\n\n\t\t@-moz-keyframes #{$name} { @content; }\n\t\t@-webkit-keyframes #{$name} { @content; }\n\t\t@-ms-keyframes #{$name} { @content; }\n\t\t@keyframes #{$name} { @content; }\n\n\t}\n\n\t/// Vendorizes a declaration's property and/or value(s).\n\t/// @param {string} $property Property.\n\t/// @param {mixed} $value String/list of value(s).\n\t@mixin vendor($property, $value) {\n\n\t\t// Determine if property should expand.\n\t\t\t$expandProperty: index($vendor-properties, $property);\n\n\t\t// Determine if value should expand (and if so, add '-prefix-' placeholder).\n\t\t\t$expandValue: false;\n\n\t\t\t@each $x in $value {\n\t\t\t\t@each $y in $vendor-values {\n\t\t\t\t\t@if $y == str-slice($x, 1, str-length($y)) {\n\n\t\t\t\t\t\t$value: set-nth($value, index($value, $x), '-prefix-' + $x);\n\t\t\t\t\t\t$expandValue: true;\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Expand property?\n\t\t\t@if $expandProperty {\n\t\t\t @each $vendor in $vendor-prefixes {\n\t\t\t #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};\n\t\t\t }\n\t\t\t}\n\n\t\t// Expand just the value?\n\t\t\t@elseif $expandValue {\n\t\t\t @each $vendor in $vendor-prefixes {\n\t\t\t #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};\n\t\t\t }\n\t\t\t}\n\n\t\t// Neither? Treat them as a normal declaration.\n\t\t\t@else {\n\t\t #{$property}: #{$value};\n\t\t\t}\n\n\t}",
+ "// breakpoints.scss v1.0 | @ajlkn | MIT licensed */\n\n// Vars.\n\n\t/// Breakpoints.\n\t/// @var {list}\n\t$breakpoints: null;\n\t$breakpoints: () !global;\n\n// Mixins.\n\n\t/// Sets breakpoints.\n\t/// @param {map} $x Breakpoints.\n\t@mixin breakpoints($x: ()) {\n\t\t$breakpoints: $x !global;\n\t}\n\n\t/// Wraps @content in a @media block targeting a specific orientation.\n\t/// @param {string} $orientation Orientation.\n\t@mixin orientation($orientation) {\n\t\t@media screen and (orientation: #{$orientation}) {\n\t\t\t@content;\n\t\t}\n\t}\n\n\t/// Wraps @content in a @media block using a given query.\n\t/// @param {string} $query Query.\n\t@mixin breakpoint($query: null) {\n\n\t\t$breakpoint: null;\n\t\t$op: null;\n\t\t$media: null;\n\n\t\t// Determine operator, breakpoint.\n\n\t\t\t// Greater than or equal.\n\t\t\t\t@if (str-slice($query, 0, 2) == '>=') {\n\n\t\t\t\t\t$op: 'gte';\n\t\t\t\t\t$breakpoint: str-slice($query, 3);\n\n\t\t\t\t}\n\n\t\t\t// Less than or equal.\n\t\t\t\t@elseif (str-slice($query, 0, 2) == '<=') {\n\n\t\t\t\t\t$op: 'lte';\n\t\t\t\t\t$breakpoint: str-slice($query, 3);\n\n\t\t\t\t}\n\n\t\t\t// Greater than.\n\t\t\t\t@elseif (str-slice($query, 0, 1) == '>') {\n\n\t\t\t\t\t$op: 'gt';\n\t\t\t\t\t$breakpoint: str-slice($query, 2);\n\n\t\t\t\t}\n\n\t\t\t// Less than.\n\t\t\t\t@elseif (str-slice($query, 0, 1) == '<') {\n\n\t\t\t\t\t$op: 'lt';\n\t\t\t\t\t$breakpoint: str-slice($query, 2);\n\n\t\t\t\t}\n\n\t\t\t// Not.\n\t\t\t\t@elseif (str-slice($query, 0, 1) == '!') {\n\n\t\t\t\t\t$op: 'not';\n\t\t\t\t\t$breakpoint: str-slice($query, 2);\n\n\t\t\t\t}\n\n\t\t\t// Equal.\n\t\t\t\t@else {\n\n\t\t\t\t\t$op: 'eq';\n\t\t\t\t\t$breakpoint: $query;\n\n\t\t\t\t}\n\n\t\t// Build media.\n\t\t\t@if ($breakpoint and map-has-key($breakpoints, $breakpoint)) {\n\n\t\t\t\t$a: map-get($breakpoints, $breakpoint);\n\n\t\t\t\t// Range.\n\t\t\t\t\t@if (type-of($a) == 'list') {\n\n\t\t\t\t\t\t$x: nth($a, 1);\n\t\t\t\t\t\t$y: nth($a, 2);\n\n\t\t\t\t\t\t// Max only.\n\t\t\t\t\t\t\t@if ($x == null) {\n\n\t\t\t\t\t\t\t\t// Greater than or equal (>= 0 / anything)\n\t\t\t\t\t\t\t\t\t@if ($op == 'gte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than or equal (<= y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + $y + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Greater than (> y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'gt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + ($y + 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than (< 0 / invalid)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: -1px)';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Not (> y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'not') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + ($y + 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Equal (<= y)\n\t\t\t\t\t\t\t\t\t@else {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + $y + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Min only.\n\t\t\t\t\t\t\t@else if ($y == null) {\n\n\t\t\t\t\t\t\t\t// Greater than or equal (>= x)\n\t\t\t\t\t\t\t\t\t@if ($op == 'gte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + $x + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than or equal (<= inf / anything)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Greater than (> inf / invalid)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'gt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: -1px)';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than (< x)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + ($x - 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Not (< x)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'not') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + ($x - 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Equal (>= x)\n\t\t\t\t\t\t\t\t\t@else {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + $x + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Min and max.\n\t\t\t\t\t\t\t@else {\n\n\t\t\t\t\t\t\t\t// Greater than or equal (>= x)\n\t\t\t\t\t\t\t\t\t@if ($op == 'gte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + $x + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than or equal (<= y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lte') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + $y + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Greater than (> y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'gt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + ($y + 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Less than (< x)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'lt') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + ($x - 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Not (< x and > y)\n\t\t\t\t\t\t\t\t\t@elseif ($op == 'not') {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// Equal (>= x and <= y)\n\t\t\t\t\t\t\t\t\t@else {\n\t\t\t\t\t\t\t\t\t\t$media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')';\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t// String.\n\t\t\t\t\t@else {\n\n\t\t\t\t\t\t// Missing a media type? Prefix with \"screen\".\n\t\t\t\t\t\t\t@if (str-slice($a, 0, 1) == '(') {\n\t\t\t\t\t\t\t\t$media: 'screen and ' + $a;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Otherwise, use as-is.\n\t\t\t\t\t\t\t@else {\n\t\t\t\t\t\t\t\t$media: $a;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t}\n\n\t\t// Output.\n\t @media #{$media} {\n\t\t\t\t@content;\n\t\t\t}\n\n\t}\n",
+ "// html-grid.scss v1.0 | @ajlkn | MIT licensed */\n\n// Mixins.\n\n\t/// Initializes the current element as an HTML grid.\n\t/// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).\n\t/// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).\n\t@mixin html-grid($gutters: 1.5em, $suffix: '') {\n\n\t\t// Initialize.\n\t\t\t$cols: 12;\n\t\t\t$multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;\n\t\t\t$unit: 100% / $cols;\n\n\t\t\t// Suffixes.\n\t\t\t\t$suffixes: null;\n\n\t\t\t\t@if (type-of($suffix) == 'list') {\n\t\t\t\t\t$suffixes: $suffix;\n\t\t\t\t}\n\t\t\t\t@else {\n\t\t\t\t\t$suffixes: ($suffix);\n\t\t\t\t}\n\n\t\t\t// Gutters.\n\t\t\t\t$guttersCols: null;\n\t\t\t\t$guttersRows: null;\n\n\t\t\t\t@if (type-of($gutters) == 'list') {\n\n\t\t\t\t\t$guttersCols: nth($gutters, 1);\n\t\t\t\t\t$guttersRows: nth($gutters, 2);\n\n\t\t\t\t}\n\t\t\t\t@else {\n\n\t\t\t\t\t$guttersCols: $gutters;\n\t\t\t\t\t$guttersRows: 0;\n\n\t\t\t\t}\n\n\t\t// Row.\n\t\t\tdisplay: flex;\n\t\t\tflex-wrap: wrap;\n\t\t\tbox-sizing: border-box;\n\t\t\talign-items: stretch;\n\n\t\t\t// Columns.\n\t\t\t\t> * {\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t}\n\n\t\t\t// Gutters.\n\t\t\t\t&.gtr-uniform {\n\t\t\t\t\t> * {\n\t\t\t\t\t\t> :last-child {\n\t\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Alignment.\n\t\t\t\t&.aln-left {\n\t\t\t\t\tjustify-content: flex-start;\n\t\t\t\t}\n\n\t\t\t\t&.aln-center {\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t}\n\n\t\t\t\t&.aln-right {\n\t\t\t\t\tjustify-content: flex-end;\n\t\t\t\t}\n\n\t\t\t\t&.aln-top {\n\t\t\t\t\talign-items: flex-start;\n\t\t\t\t}\n\n\t\t\t\t&.aln-middle {\n\t\t\t\t\talign-items: center;\n\t\t\t\t}\n\n\t\t\t\t&.aln-bottom {\n\t\t\t\t\talign-items: flex-end;\n\t\t\t\t}\n\n\t\t// Step through suffixes.\n\t\t\t@each $suffix in $suffixes {\n\n\t\t\t\t// Suffix.\n\t\t\t\t\t@if ($suffix != '') {\n\t\t\t\t\t\t$suffix: '-' + $suffix;\n\t\t\t\t\t}\n\t\t\t\t\t@else {\n\t\t\t\t\t\t$suffix: '';\n\t\t\t\t\t}\n\n\t\t\t\t// Row.\n\n\t\t\t\t\t// Important.\n\t\t\t\t\t\t> .imp#{$suffix} {\n\t\t\t\t\t\t\torder: -1;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Columns, offsets.\n\t\t\t\t\t\t@for $i from 1 through $cols {\n\t\t\t\t\t\t\t> .col-#{$i}#{$suffix} {\n\t\t\t\t\t\t\t\twidth: $unit * $i;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t> .off-#{$i}#{$suffix} {\n\t\t\t\t\t\t\t\tmargin-left: $unit * $i;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Step through multipliers.\n\t\t\t\t\t\t@each $multiplier in $multipliers {\n\n\t\t\t\t\t\t\t// Gutters.\n\t\t\t\t\t\t\t\t$class: null;\n\n\t\t\t\t\t\t\t\t@if ($multiplier != 1) {\n\t\t\t\t\t\t\t\t\t$class: '.gtr-' + ($multiplier * 100);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t{$class} {\n\t\t\t\t\t\t\t\t\tmargin-top: ($guttersRows * $multiplier * -1);\n\t\t\t\t\t\t\t\t\tmargin-left: ($guttersCols * $multiplier * -1);\n\n\t\t\t\t\t\t\t\t\t> * {\n\t\t\t\t\t\t\t\t\t\tpadding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t// Uniform.\n\t\t\t\t\t\t\t\t\t\t&.gtr-uniform {\n\t\t\t\t\t\t\t\t\t\t\tmargin-top: $guttersCols * $multiplier * -1;\n\n\t\t\t\t\t\t\t\t\t\t\t> * {\n\t\t\t\t\t\t\t\t\t\t\t\tpadding-top: $guttersCols * $multiplier;\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t}\n\n\t\t\t}\n\n\t}",
+ "@import\n \"utils/variables\"; \n\n@import\n \"components/alert\";\n\n@import\n \"layouts/_header\"; \n\ntable {\n width: 100%;\n background: transparent;\n border-collapse: collapse;\n border-spacing: 0;\n text-align: left;\n\n th {\n padding: 5px 10px;\n font-weight: bold;\n border-bottom: 2px solid #909ba2;\n }\n td {\n padding: 5px 10px;\n }\n tr {\n &:nth-child(2n) {\n background: #f7f8f8;\n }\n }\n}\n\n/* Mobile */\n\n@include breakpoint('<=mobile') {\n \n\n /* Banner */\n\n #banner {\n height: 10em;\n \n }\n\n}\n\n/* Mobile (Portrait) */\n\n@include breakpoint('<=mobilep') {\n \n /* Banner */\n\n #banner {\n height: 10em;\n\n header { \n display: none;\n }\n }\n\n\n\n}",
+ "// Global settings\r\n// --------------------------------------------\r\n\r\n// Font families\r\n$open-sans: 'Open Sans';\r\n$open-sans-sans-serif: 'Open Sans', sans-serif;\r\n$merriweather-serif: 'Merriweather', serif;\r\n$menlo: Menlo, Consolas, monospace;\r\n\r\n$font-family-base: $open-sans-sans-serif;\r\n\r\n$font-families: (\r\n // base\r\n 'headings': $open-sans-sans-serif,\r\n // components\r\n 'code': $menlo,\r\n 'caption': $merriweather-serif,\r\n 'image-gallery': $open-sans,\r\n 'post-header-cover': $merriweather-serif,\r\n 'post-meta': $open-sans-sans-serif,\r\n 'post-content': $merriweather-serif,\r\n 'post-excerpt-link': $open-sans-sans-serif,\r\n 'highlight': $menlo,\r\n // layout\r\n 'sidebar': $open-sans-sans-serif\r\n);\r\n\r\n// equal to 15px\r\n$font-size-base: 1.6rem;\r\n$font-color-base: #5d686f;\r\n$line-height-base: 1.9em;\r\n$letter-spacing-base: 0.01em;\r\n\r\n// Reduction of font size base on small screen and down\r\n$font-size-base-sm-screen-reduction-factor: 0.1rem;\r\n\r\n// Font size : (X.Xrem = XXpx, 1.0rem = 10px)\r\n$font-size: (\r\n 'xxlarge': 2rem,\r\n 'xlarge': 1.8rem,\r\n 'large': 1.7rem,\r\n 'base': $font-size-base,\r\n 'medium': 1.5rem,\r\n 'small': 1.3rem,\r\n 'xsmall': 1rem\r\n);\r\n\r\n// Colors\r\n$colors: (\r\n 'success': #4dc657,\r\n 'danger': #f5311d,\r\n 'primary': #349ef3,\r\n 'purple': #cf6ae0,\r\n 'base': $font-color-base,\r\n 'warning': #f5aa0a,\r\n 'light': #9eabb3,\r\n // use for tag `a`\r\n 'link': #349ef3\r\n);\r\n\r\n// Z-indexes\r\n// `l-` prefix for layout\r\n// `c-` prefix for components\r\n$z-indexes: (\r\n // position the cover below the whole blog\r\n 'l-cover': -1,\r\n 'l-main': 10,\r\n 'c-post-header-cover': 15,\r\n 'l-header': 20,\r\n 'l-sidebar': 20,\r\n 'l-about': 30,\r\n 'c-mask': 30,\r\n 'c-post-bottom-bar': 40,\r\n 'c-share-options-bar': 50,\r\n 'c-tooltip': 1000,\r\n 'c-overlay': 1009,\r\n 'c-modal': 1010\r\n);\r\n\r\n// Media Query Ranges\r\n// If you want to change ranges screen size, you can do it easily by changing only `$screen-min` values\r\n$screen-min: (\r\n 'xs-min': 320px,\r\n 'sm-min': 480px,\r\n // If you change value of `md-min`,\r\n // you have to change value of `mediumScreenWidth` too in `source/_js/sidebar.js`\r\n 'md-min': 768px,\r\n 'lg-min': 1024px,\r\n 'xlg-min': 1280px\r\n);\r\n$screen-max: (\r\n 'xs-max': map-get($screen-min, sm-min) - 1,\r\n 'sm-max': map-get($screen-min, md-min) - 1,\r\n 'md-max': map-get($screen-min, lg-min) - 1,\r\n 'lg-max': map-get($screen-min, xlg-min) - 1\r\n);\r\n// Merged screen-* Maps\r\n$screen: map-merge($screen-min, $screen-max);\r\n// Shortcuts for medias\r\n$xsmall-and-down: \"only screen and (max-width : #{map-get($screen, xs-max)})\" !default;\r\n$small-and-down: \"only screen and (max-width : #{map-get($screen, sm-max)})\" !default;\r\n$small-only: \"only screen and (min-width : #{map-get($screen, sm-min)}) and (max-width : #{map-get($screen, sm-max)})\" !default;\r\n$small-and-up: \"only screen and (min-width : #{map-get($screen, sm-min)})\" !default;\r\n$medium-and-down: \"only screen and (max-width : #{map-get($screen, md-max)})\" !default;\r\n$medium-only: \"only screen and (min-width : #{map-get($screen, md-min)}) and (max-width : #{map-get($screen, md-max)})\" !default;\r\n$medium-and-up: \"only screen and (min-width : #{map-get($screen, md-min)})\" !default;\r\n$large-and-down: \"only screen and (max-width : #{map-get($screen, lg-max)})\" !default;\r\n$large-only: \"only screen and (min-width : #{map-get($screen, lg-min)}) and (max-width : #{map-get($screen, lg-max)})\" !default;\r\n$large-and-up: \"only screen and (min-width : #{map-get($screen, lg-min)})\" !default;\r\n$xlarge-and-up: \"only screen and (min-width : #{map-get($screen, xlg-min)})\" !default;\r\n\r\n// Base settings\r\n// Files are located in `base` folder\r\n// --------------------------------------------\r\n\r\n// Headings font-size : (X.Xrem = XXpx, 1.0rem = 10px)\r\n$headings-font-size: (\r\n 'h1': 2.8rem,\r\n 'h2': 2.4rem,\r\n 'h3': 2.0rem,\r\n 'h4': 1.8rem,\r\n 'h5': 1.7rem,\r\n 'h6': 1.6rem\r\n);\r\n// Reduction of headings font size on small screen and down\r\n$headings-font-size-sm-screen-reduction-factor: 0.2rem;\r\n// Reduction of headings font size on medium screen only\r\n$headings-font-size-md-screen-reduction-factor: 0.15rem;\r\n\r\n// Layout settings\r\n// Files are located in `layout` folder\r\n// --------------------------------------------\r\n\r\n// Main\r\n$about: (\r\n 'background': rgba(17, 26, 35, 0),\r\n);\r\n\r\n// Header\r\n$header:(\r\n 'height': 55px,\r\n 'background': #fff,\r\n 'color': #88909a,\r\n 'border': 1px solid #eef2f8\r\n);\r\n\r\n// Sidebar\r\n$sidebar: (\r\n 'md-screen-width': 75px,\r\n 'lg-screen-width': 250px,\r\n 'xlg-screen-width': 500px,\r\n 'background': rgba(17, 26, 35, 0),\r\n 'color': #ebebeb\r\n);\r\n\r\n// Main\r\n$main: (\r\n 'padding-top': 15px,\r\n 'background-color': #fff\r\n);\r\n\r\n// Components settings\r\n// Files are located in `components` folder\r\n// --------------------------------------------\r\n\r\n// Highlight code\r\n$highlight: (\r\n 'background': #f7f8f8,\r\n 'font-size': 1.4rem,\r\n 'border': 1px solid,\r\n 'line-height': 2.3rem\r\n);\r\n\r\n// Highlight colors\r\n// name of colors: http://www.color-blindness.com\r\n$highlight-colors: (\r\n // Background\r\n 'white': #fff,\r\n // General color\r\n 'night-rider': #333,\r\n 'bondi-blue': #0086b3,\r\n 'persimmon': #df5000,\r\n 'asparagus': #63a35c,\r\n // Comment\r\n 'pewter': #969896,\r\n 'cardinal': #a71d5d,\r\n 'scampi': #795da3,\r\n 'bahama-blue': #1d3e81,\r\n 'egyptian-blue': #183691,\r\n // Deletion color for .diff file\r\n 'free-speech-red': #bd2c00,\r\n // Deletion background color for .diff file\r\n 'misty-rose': #ffecec,\r\n // Addition color for .diff file\r\n 'limeade': #55a532,\r\n // Addition background color for .diff file\r\n 'honeydew': #eaffea\r\n);\r\n// Highlight text\r\n$highlight-text-bg-colors: (\r\n 'red': lighten(red, 45%),\r\n 'green': lighten(green, 65%),\r\n 'blue': lighten(blue, 45%),\r\n 'purple': lighten(purple, 70%),\r\n 'orange': lighten(orange, 40%),\r\n 'yellow': lighten(yellow, 40%),\r\n 'cyan': lighten(cyan, 40%),\r\n 'primary': lighten(map-get($colors, 'primary'), 35%),\r\n 'success': lighten(map-get($colors, 'success'),35%),\r\n 'warning': lighten(map-get($colors, 'warning'), 40%),\r\n 'danger': lighten(map-get($colors, 'danger'), 40%),\r\n);\r\n// Image gallery photos\r\n// Space between 2 photos\r\n$image-gallery-photos-margin: 2px;\r\n\r\n// Main content\r\n$main-content: (\r\n 'max-width': 750px,\r\n 'padding-right-left': 20px,\r\n);\r\n$main-width: map-get($main-content, max-width) + map-get($main-content, padding-right-left) * 2;\r\n\r\n// Mardown\r\n// These variables are use to have headings smaller than general headings title\r\n// and use correctly headings in a post instead of use only header below h2\r\n// because they are larger than the post title or something like that\r\n// font-size : (X.Xrem = XXpx, 1.0rem = 10px)\r\n$markdown-headings-font-size: (\r\n 'h1': 3rem,\r\n 'h2': 2.7rem,\r\n 'h3': 2.4rem,\r\n 'h4': 2.1rem,\r\n 'h5': 1.9rem,\r\n 'h6': 1.7rem\r\n);\r\n// Reduction of markdwon headings on small screen and down\r\n$markdown-headings-font-size-sm-screen-reduction-factor: 0.35rem;\r\n// Reduction of markdwon headings on medium screen only\r\n$markdown-headings-font-size-md-screen-reduction-factor: 0.2rem;\r\n\r\n// Pagination\r\n$pagination-height: 60px;\r\n\r\n// Post thumbnail image\r\n// Width and height of post's thumbnail image\r\n$post-thumbnail-image-width: 140px;\r\n\r\n// Tooltip\r\n$tooltip: (\r\n 'min-width': 180px,\r\n 'background': rgba(0, 0, 20, 0.93),\r\n // Don't change this value, used to horizontally center the tooltip content\r\n 'arrow-width': 15px,\r\n // Don't change this value, used to vertically center the tooltip content\r\n 'arrow-height': 12px\r\n);\r\n",
+ ".alert {\r\n position: relative;\r\n text-align: left;\r\n padding: 10px 15px;\r\n min-height: 30px;\r\n margin: 1em 0 0;\r\n border: none;\r\n border-left: 3px solid;\r\n p {\r\n margin: 1.5em 0 0;\r\n\r\n &:first-child {\r\n margin: 0;\r\n }\r\n }\r\n &:not(.no-icon) {\r\n padding-left: 55px;\r\n\r\n &:before {\r\n position: absolute;\r\n top: 10px;\r\n left: 15px;\r\n font-family: 'FontAwesome';\r\n font-size: 2.5rem;\r\n }\r\n }\r\n &.info {\r\n border-color: map-get($colors, 'primary');\r\n background-color: lighten(map-get($colors, 'primary'), 37%);\r\n\r\n &:not(.no-icon) {\r\n &:before {\r\n content: \"\\f05a\";\r\n color: map-get($colors, 'primary');\r\n }\r\n }\r\n }\r\n &.success {\r\n border-color: map-get($colors, 'success');\r\n background-color: lighten(map-get($colors, 'success'), 42%);\r\n content: \"\\f058\";\r\n &:not(.no-icon) {\r\n &:before {\r\n content: \"\\f058\";\r\n color: map-get($colors, 'success');\r\n }\r\n }\r\n }\r\n &.warning {\r\n border-color: map-get($colors, 'warning');\r\n background-color: lighten(map-get($colors, 'warning'), 42%);\r\n &:not(.no-icon) {\r\n &:before {\r\n content: \"\\f071\";\r\n color: map-get($colors, 'warning');\r\n }\r\n }\r\n }\r\n &.danger {\r\n border-color: map-get($colors, 'danger');\r\n background-color: lighten(map-get($colors, 'danger'), 42%);\r\n &:not(.no-icon) {\r\n &:before {\r\n content: \"\\f05e\";\r\n color: map-get($colors, 'danger');\r\n }\r\n }\r\n }\r\n}",
+ "#header {\n text-align: center;\n padding: 3em 0 0 0;\n background-color: #fff;\n background-origin: border-box;\n background-image: url('images/logo.svg');\n background-position: bottom 85% left 10%;\n background-size: 8em;\n background-repeat: no-repeat;\n \n\n .short_text {display: none;}\n\n h1 {\n padding: 0 0 2.75em 0;\n margin: 0;\n\n a {\n font-size: 2.25em;\n letter-spacing: -0.05em;\n line-height : 1.2;\n border: 0;\n }\n }\n}\n"
+ ],
+ "names": [],
+ "mappings": "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"
+}
\ No newline at end of file
diff --git a/public/tags/index.html b/public/tags/index.html
new file mode 100644
index 0000000..dd540c5
--- /dev/null
+++ b/public/tags/index.html
@@ -0,0 +1,137 @@
+
+
+
+
+
Tags | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/tags/index.xml b/public/tags/index.xml
new file mode 100644
index 0000000..cc431c8
--- /dev/null
+++ b/public/tags/index.xml
@@ -0,0 +1,19 @@
+
+
+
+ Tags on Roulement à Bill
+ https://www.roulementabill.org/tags/
+ Recent content in Tags on Roulement à Bill
+ Hugo -- gohugo.io
+ fr-fr
+ Roulement à Bill 2024
+
+ -
+ Velorution
+ https://www.roulementabill.org/tags/velorution/
+ Mon, 01 Jan 0001 00:00:00 +0000
+ https://www.roulementabill.org/tags/velorution/
+
+
+
+
diff --git a/public/tags/velorution/index.html b/public/tags/velorution/index.html
new file mode 100644
index 0000000..1082d03
--- /dev/null
+++ b/public/tags/velorution/index.html
@@ -0,0 +1,137 @@
+
+
+
+
+
Velorution | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+
+
+
+ Toutes les infos sur Vélorution Tours
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/tags/velorution/index.xml b/public/tags/velorution/index.xml
new file mode 100644
index 0000000..1789b73
--- /dev/null
+++ b/public/tags/velorution/index.xml
@@ -0,0 +1,19 @@
+
+
+
+ Velorution on Roulement à Bill
+ https://www.roulementabill.org/tags/velorution/
+ Recent content in Velorution on Roulement à Bill
+ Hugo -- gohugo.io
+ fr-fr
+ Roulement à Bill 2024
+
+ -
+ Vélorution !
+ https://www.roulementabill.org/velorution/
+ Mon, 01 Jan 0001 00:00:00 +0000
+ https://www.roulementabill.org/velorution/
+ Phasellus quam turpis, feugiat sit amet ornare in, hendrerit in lectus. Praesent semper mod quis eget mi. Etiam eu ante risus. Aliquam erat volutpat. Aliquam luctus et mattis lectus sit amet pulvinar. Nam turpis nisi consequat etiam lorem ipsum dolor sit amet nullam.
And Yet Another Subheading Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas ac quam risus, at tempus justo. Sed dictum rutrum massa eu volutpat. Quisque vitae hendrerit sem.
+
+
+
diff --git a/public/velorution/index.html b/public/velorution/index.html
new file mode 100644
index 0000000..f139139
--- /dev/null
+++ b/public/velorution/index.html
@@ -0,0 +1,148 @@
+
+
+
+
+
Vélorution ! | Roulement à Bill
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Phasellus quam turpis, feugiat sit amet ornare in, hendrerit in lectus.
+Praesent semper mod quis eget mi. Etiam eu ante risus. Aliquam erat volutpat.
+Aliquam luctus et mattis lectus sit amet pulvinar. Nam turpis nisi
+consequat etiam lorem ipsum dolor sit amet nullam.
+And Yet Another Subheading
+Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas ac quam risus, at tempus
+justo. Sed dictum rutrum massa eu volutpat. Quisque vitae hendrerit sem. Pellentesque lorem felis,
+ultricies a bibendum id, bibendum sit amet nisl. Mauris et lorem quam. Maecenas rutrum imperdiet
+vulputate. Nulla quis nibh ipsum, sed egestas justo. Morbi ut ante mattis orci convallis tempor.
+Etiam a lacus a lacus pharetra porttitor quis accumsan odio. Sed vel euismod nisi. Etiam convallis
+rhoncus dui quis euismod. Maecenas lorem tellus, congue et condimentum ac, ullamcorper non sapien.
+Donec sagittis massa et leo semper a scelerisque metus faucibus. Morbi congue mattis mi.
+Phasellus sed nisl vitae risus tristique volutpat. Cras rutrum commodo luctus.
+Phasellus odio risus, faucibus et viverra vitae, eleifend ac purus. Praesent mattis, enim
+quis hendrerit porttitor, sapien tortor viverra magna, sit amet rhoncus nisl lacus nec arcu.
+Suspendisse laoreet metus ut metus imperdiet interdum aliquam justo tincidunt. Mauris dolor urna,
+fringilla vel malesuada ac, dignissim eu mi. Praesent mollis massa ac nulla pretium pretium.
+Maecenas tortor mauris, consectetur pellentesque dapibus eget, tincidunt vitae arcu.
+Vestibulum purus augue, tincidunt sit amet iaculis id, porta eu purus.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/webfonts/SourceSansPro-Light.ttf b/public/webfonts/SourceSansPro-Light.ttf
new file mode 100644
index 0000000..9b0e83d
Binary files /dev/null and b/public/webfonts/SourceSansPro-Light.ttf differ
diff --git a/public/webfonts/SourceSansPro-LightItalic.ttf b/public/webfonts/SourceSansPro-LightItalic.ttf
new file mode 100644
index 0000000..5af0659
Binary files /dev/null and b/public/webfonts/SourceSansPro-LightItalic.ttf differ
diff --git a/public/webfonts/SourceSansPro-SemiBold.ttf b/public/webfonts/SourceSansPro-SemiBold.ttf
new file mode 100644
index 0000000..99dcc81
Binary files /dev/null and b/public/webfonts/SourceSansPro-SemiBold.ttf differ
diff --git a/public/webfonts/SourceSansPro-SemiBoldItalic.ttf b/public/webfonts/SourceSansPro-SemiBoldItalic.ttf
new file mode 100644
index 0000000..9c3891b
Binary files /dev/null and b/public/webfonts/SourceSansPro-SemiBoldItalic.ttf differ
diff --git a/public/webfonts/fa-brands-400.eot b/public/webfonts/fa-brands-400.eot
new file mode 100644
index 0000000..e79f40f
Binary files /dev/null and b/public/webfonts/fa-brands-400.eot differ
diff --git a/public/webfonts/fa-brands-400.svg b/public/webfonts/fa-brands-400.svg
new file mode 100644
index 0000000..ba0d850
--- /dev/null
+++ b/public/webfonts/fa-brands-400.svg
@@ -0,0 +1,3442 @@
+
+
+
+
diff --git a/public/webfonts/fa-brands-400.ttf b/public/webfonts/fa-brands-400.ttf
new file mode 100644
index 0000000..217ffe9
Binary files /dev/null and b/public/webfonts/fa-brands-400.ttf differ
diff --git a/public/webfonts/fa-brands-400.woff b/public/webfonts/fa-brands-400.woff
new file mode 100644
index 0000000..a2d8025
Binary files /dev/null and b/public/webfonts/fa-brands-400.woff differ
diff --git a/public/webfonts/fa-brands-400.woff2 b/public/webfonts/fa-brands-400.woff2
new file mode 100644
index 0000000..e27b0bf
Binary files /dev/null and b/public/webfonts/fa-brands-400.woff2 differ
diff --git a/public/webfonts/fa-regular-400.eot b/public/webfonts/fa-regular-400.eot
new file mode 100644
index 0000000..d62be2f
Binary files /dev/null and b/public/webfonts/fa-regular-400.eot differ
diff --git a/public/webfonts/fa-regular-400.svg b/public/webfonts/fa-regular-400.svg
new file mode 100644
index 0000000..751083e
--- /dev/null
+++ b/public/webfonts/fa-regular-400.svg
@@ -0,0 +1,803 @@
+
+
+
+
diff --git a/public/webfonts/fa-regular-400.ttf b/public/webfonts/fa-regular-400.ttf
new file mode 100644
index 0000000..eb3cb5e
Binary files /dev/null and b/public/webfonts/fa-regular-400.ttf differ
diff --git a/public/webfonts/fa-regular-400.woff b/public/webfonts/fa-regular-400.woff
new file mode 100644
index 0000000..43b1a9a
Binary files /dev/null and b/public/webfonts/fa-regular-400.woff differ
diff --git a/public/webfonts/fa-regular-400.woff2 b/public/webfonts/fa-regular-400.woff2
new file mode 100644
index 0000000..b9344a7
Binary files /dev/null and b/public/webfonts/fa-regular-400.woff2 differ
diff --git a/public/webfonts/fa-solid-900.eot b/public/webfonts/fa-solid-900.eot
new file mode 100644
index 0000000..c77baa8
Binary files /dev/null and b/public/webfonts/fa-solid-900.eot differ
diff --git a/public/webfonts/fa-solid-900.svg b/public/webfonts/fa-solid-900.svg
new file mode 100644
index 0000000..627128b
--- /dev/null
+++ b/public/webfonts/fa-solid-900.svg
@@ -0,0 +1,4649 @@
+
+
+
+
diff --git a/public/webfonts/fa-solid-900.ttf b/public/webfonts/fa-solid-900.ttf
new file mode 100644
index 0000000..c6c3dd4
Binary files /dev/null and b/public/webfonts/fa-solid-900.ttf differ
diff --git a/public/webfonts/fa-solid-900.woff b/public/webfonts/fa-solid-900.woff
new file mode 100644
index 0000000..77c1786
Binary files /dev/null and b/public/webfonts/fa-solid-900.woff differ
diff --git a/public/webfonts/fa-solid-900.woff2 b/public/webfonts/fa-solid-900.woff2
new file mode 100644
index 0000000..e30fb67
Binary files /dev/null and b/public/webfonts/fa-solid-900.woff2 differ
diff --git a/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.content b/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.content
new file mode 100644
index 0000000..1e9b3b1
--- /dev/null
+++ b/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.content
@@ -0,0 +1,3 @@
+@import url("css/fontawesome-all.min.css");@import url("css/font-source-sans-pro.css");html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input,select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#f7f7f7 url("images/bg01.png")}body.is-preload *,body.is-preload *:before,body.is-preload *:after{-moz-animation:none !important;-webkit-animation:none !important;-ms-animation:none !important;animation:none !important;-moz-transition:none !important;-webkit-transition:none !important;-ms-transition:none !important;transition:none !important}body,input,select,textarea{color:#474747;font-family:'Source Sans Pro', sans-serif;font-size:16pt;font-weight:300;line-height:1.65em}a{-moz-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-webkit-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-ms-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;color:#37c0fb;text-decoration:none;border-bottom:dotted 1px}a:hover{color:#37c0fb;border-bottom-color:transparent}strong,b{font-weight:600}em,i{font-style:italic}p,ul,ol,dl,table,blockquote{margin:0 0 2em 0}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:600;line-height:1.75em;margin-bottom:1em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1 em,h2 em,h3 em,h4 em,h5 em,h6 em{font-style:normal;font-weight:300}h2{font-size:1.75em;letter-spacing:-0.025em}h3{font-size:1.2em;letter-spacing:-0.025em}sub{font-size:0.8em;position:relative;top:0.5em}sup{font-size:0.8em;position:relative;top:-0.5em}hr{border-top:solid 1px #e0e0e0;border:0;margin-bottom:1.5em}blockquote{border-left:solid 0.5em #e0e0e0;font-style:italic;padding:1em 0 1em 2em}time{font-size:1rem}.container{margin:0 auto;max-width:100%;width:1400px}@media screen and (max-width: 1680px){.container{width:1200px}}@media screen and (max-width: 1280px){.container{width:960px}}@media screen and (max-width: 980px){.container{width:95%}}@media screen and (max-width: 840px){.container{width:95%}}@media screen and (max-width: 736px){.container{width:90%}}@media screen and (max-width: 480px){.container{width:100%}}.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp{order:-1}.row>.col-1{width:8.33333333%}.row>.off-1{margin-left:8.33333333%}.row>.col-2{width:16.66666667%}.row>.off-2{margin-left:16.66666667%}.row>.col-3{width:25%}.row>.off-3{margin-left:25%}.row>.col-4{width:33.33333333%}.row>.off-4{margin-left:33.33333333%}.row>.col-5{width:41.66666667%}.row>.off-5{margin-left:41.66666667%}.row>.col-6{width:50%}.row>.off-6{margin-left:50%}.row>.col-7{width:58.33333333%}.row>.off-7{margin-left:58.33333333%}.row>.col-8{width:66.66666667%}.row>.off-8{margin-left:66.66666667%}.row>.col-9{width:75%}.row>.off-9{margin-left:75%}.row>.col-10{width:83.33333333%}.row>.off-10{margin-left:83.33333333%}.row>.col-11{width:91.66666667%}.row>.off-11{margin-left:91.66666667%}.row>.col-12{width:100%}.row>.off-12{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-12.5px;margin-left:-12.5px}.row.gtr-25>*{padding:12.5px 0 0 12.5px}.row.gtr-25.gtr-uniform{margin-top:-12.5px}.row.gtr-25.gtr-uniform>*{padding-top:12.5px}.row.gtr-50{margin-top:-25px;margin-left:-25px}.row.gtr-50>*{padding:25px 0 0 25px}.row.gtr-50.gtr-uniform{margin-top:-25px}.row.gtr-50.gtr-uniform>*{padding-top:25px}.row{margin-top:-50px;margin-left:-50px}.row>*{padding:50px 0 0 50px}.row.gtr-uniform{margin-top:-50px}.row.gtr-uniform>*{padding-top:50px}.row.gtr-150{margin-top:-75px;margin-left:-75px}.row.gtr-150>*{padding:75px 0 0 75px}.row.gtr-150.gtr-uniform{margin-top:-75px}.row.gtr-150.gtr-uniform>*{padding-top:75px}.row.gtr-200{margin-top:-100px;margin-left:-100px}.row.gtr-200>*{padding:100px 0 0 100px}.row.gtr-200.gtr-uniform{margin-top:-100px}.row.gtr-200.gtr-uniform>*{padding-top:100px}@media screen and (max-width: 1680px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-wide{order:-1}.row>.col-1-wide{width:8.33333333%}.row>.off-1-wide{margin-left:8.33333333%}.row>.col-2-wide{width:16.66666667%}.row>.off-2-wide{margin-left:16.66666667%}.row>.col-3-wide{width:25%}.row>.off-3-wide{margin-left:25%}.row>.col-4-wide{width:33.33333333%}.row>.off-4-wide{margin-left:33.33333333%}.row>.col-5-wide{width:41.66666667%}.row>.off-5-wide{margin-left:41.66666667%}.row>.col-6-wide{width:50%}.row>.off-6-wide{margin-left:50%}.row>.col-7-wide{width:58.33333333%}.row>.off-7-wide{margin-left:58.33333333%}.row>.col-8-wide{width:66.66666667%}.row>.off-8-wide{margin-left:66.66666667%}.row>.col-9-wide{width:75%}.row>.off-9-wide{margin-left:75%}.row>.col-10-wide{width:83.33333333%}.row>.off-10-wide{margin-left:83.33333333%}.row>.col-11-wide{width:91.66666667%}.row>.off-11-wide{margin-left:91.66666667%}.row>.col-12-wide{width:100%}.row>.off-12-wide{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-10px;margin-left:-10px}.row.gtr-25>*{padding:10px 0 0 10px}.row.gtr-25.gtr-uniform{margin-top:-10px}.row.gtr-25.gtr-uniform>*{padding-top:10px}.row.gtr-50{margin-top:-20px;margin-left:-20px}.row.gtr-50>*{padding:20px 0 0 20px}.row.gtr-50.gtr-uniform{margin-top:-20px}.row.gtr-50.gtr-uniform>*{padding-top:20px}.row{margin-top:-40px;margin-left:-40px}.row>*{padding:40px 0 0 40px}.row.gtr-uniform{margin-top:-40px}.row.gtr-uniform>*{padding-top:40px}.row.gtr-150{margin-top:-60px;margin-left:-60px}.row.gtr-150>*{padding:60px 0 0 60px}.row.gtr-150.gtr-uniform{margin-top:-60px}.row.gtr-150.gtr-uniform>*{padding-top:60px}.row.gtr-200{margin-top:-80px;margin-left:-80px}.row.gtr-200>*{padding:80px 0 0 80px}.row.gtr-200.gtr-uniform{margin-top:-80px}.row.gtr-200.gtr-uniform>*{padding-top:80px}}@media screen and (max-width: 1280px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-normal{order:-1}.row>.col-1-normal{width:8.33333333%}.row>.off-1-normal{margin-left:8.33333333%}.row>.col-2-normal{width:16.66666667%}.row>.off-2-normal{margin-left:16.66666667%}.row>.col-3-normal{width:25%}.row>.off-3-normal{margin-left:25%}.row>.col-4-normal{width:33.33333333%}.row>.off-4-normal{margin-left:33.33333333%}.row>.col-5-normal{width:41.66666667%}.row>.off-5-normal{margin-left:41.66666667%}.row>.col-6-normal{width:50%}.row>.off-6-normal{margin-left:50%}.row>.col-7-normal{width:58.33333333%}.row>.off-7-normal{margin-left:58.33333333%}.row>.col-8-normal{width:66.66666667%}.row>.off-8-normal{margin-left:66.66666667%}.row>.col-9-normal{width:75%}.row>.off-9-normal{margin-left:75%}.row>.col-10-normal{width:83.33333333%}.row>.off-10-normal{margin-left:83.33333333%}.row>.col-11-normal{width:91.66666667%}.row>.off-11-normal{margin-left:91.66666667%}.row>.col-12-normal{width:100%}.row>.off-12-normal{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 980px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrow{order:-1}.row>.col-1-narrow{width:8.33333333%}.row>.off-1-narrow{margin-left:8.33333333%}.row>.col-2-narrow{width:16.66666667%}.row>.off-2-narrow{margin-left:16.66666667%}.row>.col-3-narrow{width:25%}.row>.off-3-narrow{margin-left:25%}.row>.col-4-narrow{width:33.33333333%}.row>.off-4-narrow{margin-left:33.33333333%}.row>.col-5-narrow{width:41.66666667%}.row>.off-5-narrow{margin-left:41.66666667%}.row>.col-6-narrow{width:50%}.row>.off-6-narrow{margin-left:50%}.row>.col-7-narrow{width:58.33333333%}.row>.off-7-narrow{margin-left:58.33333333%}.row>.col-8-narrow{width:66.66666667%}.row>.off-8-narrow{margin-left:66.66666667%}.row>.col-9-narrow{width:75%}.row>.off-9-narrow{margin-left:75%}.row>.col-10-narrow{width:83.33333333%}.row>.off-10-narrow{margin-left:83.33333333%}.row>.col-11-narrow{width:91.66666667%}.row>.off-11-narrow{margin-left:91.66666667%}.row>.col-12-narrow{width:100%}.row>.off-12-narrow{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 840px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrower{order:-1}.row>.col-1-narrower{width:8.33333333%}.row>.off-1-narrower{margin-left:8.33333333%}.row>.col-2-narrower{width:16.66666667%}.row>.off-2-narrower{margin-left:16.66666667%}.row>.col-3-narrower{width:25%}.row>.off-3-narrower{margin-left:25%}.row>.col-4-narrower{width:33.33333333%}.row>.off-4-narrower{margin-left:33.33333333%}.row>.col-5-narrower{width:41.66666667%}.row>.off-5-narrower{margin-left:41.66666667%}.row>.col-6-narrower{width:50%}.row>.off-6-narrower{margin-left:50%}.row>.col-7-narrower{width:58.33333333%}.row>.off-7-narrower{margin-left:58.33333333%}.row>.col-8-narrower{width:66.66666667%}.row>.off-8-narrower{margin-left:66.66666667%}.row>.col-9-narrower{width:75%}.row>.off-9-narrower{margin-left:75%}.row>.col-10-narrower{width:83.33333333%}.row>.off-10-narrower{margin-left:83.33333333%}.row>.col-11-narrower{width:91.66666667%}.row>.off-11-narrower{margin-left:91.66666667%}.row>.col-12-narrower{width:100%}.row>.off-12-narrower{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 736px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobile{order:-1}.row>.col-1-mobile{width:8.33333333%}.row>.off-1-mobile{margin-left:8.33333333%}.row>.col-2-mobile{width:16.66666667%}.row>.off-2-mobile{margin-left:16.66666667%}.row>.col-3-mobile{width:25%}.row>.off-3-mobile{margin-left:25%}.row>.col-4-mobile{width:33.33333333%}.row>.off-4-mobile{margin-left:33.33333333%}.row>.col-5-mobile{width:41.66666667%}.row>.off-5-mobile{margin-left:41.66666667%}.row>.col-6-mobile{width:50%}.row>.off-6-mobile{margin-left:50%}.row>.col-7-mobile{width:58.33333333%}.row>.off-7-mobile{margin-left:58.33333333%}.row>.col-8-mobile{width:66.66666667%}.row>.off-8-mobile{margin-left:66.66666667%}.row>.col-9-mobile{width:75%}.row>.off-9-mobile{margin-left:75%}.row>.col-10-mobile{width:83.33333333%}.row>.off-10-mobile{margin-left:83.33333333%}.row>.col-11-mobile{width:91.66666667%}.row>.off-11-mobile{margin-left:91.66666667%}.row>.col-12-mobile{width:100%}.row>.off-12-mobile{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}@media screen and (max-width: 480px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobilep{order:-1}.row>.col-1-mobilep{width:8.33333333%}.row>.off-1-mobilep{margin-left:8.33333333%}.row>.col-2-mobilep{width:16.66666667%}.row>.off-2-mobilep{margin-left:16.66666667%}.row>.col-3-mobilep{width:25%}.row>.off-3-mobilep{margin-left:25%}.row>.col-4-mobilep{width:33.33333333%}.row>.off-4-mobilep{margin-left:33.33333333%}.row>.col-5-mobilep{width:41.66666667%}.row>.off-5-mobilep{margin-left:41.66666667%}.row>.col-6-mobilep{width:50%}.row>.off-6-mobilep{margin-left:50%}.row>.col-7-mobilep{width:58.33333333%}.row>.off-7-mobilep{margin-left:58.33333333%}.row>.col-8-mobilep{width:66.66666667%}.row>.off-8-mobilep{margin-left:66.66666667%}.row>.col-9-mobilep{width:75%}.row>.off-9-mobilep{margin-left:75%}.row>.col-10-mobilep{width:83.33333333%}.row>.off-10-mobilep{margin-left:83.33333333%}.row>.col-11-mobilep{width:91.66666667%}.row>.off-11-mobilep{margin-left:91.66666667%}.row>.col-12-mobilep{width:100%}.row>.off-12-mobilep{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}section.special,article.special{text-align:center}header p{color:#999;font-size:1.25em;position:relative;margin-top:-1.25em;margin-bottom:0.25em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:2.25em}header.major p{position:relative;border-top:solid 1px #e0e0e0;padding:1em 0 0 0;margin:0;top:-1em;font-size:1.5em;letter-spacing:-0.025em}footer{margin:0 0 3em 0}footer>:last-child{margin-bottom:0}footer.major{padding-top:3em}input[type="text"],input[type="password"],input[type="email"],textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:border-color 0.2s ease-in-out;-webkit-transition:border-color 0.2s ease-in-out;-ms-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out;background:#fff;border:solid 1px #e0e0e0;border-radius:5px;color:inherit;display:block;outline:0;padding:0.75em;text-decoration:none;width:100%}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,textarea:focus{border-color:#37c0fb}input[type="text"],input[type="password"],input[type="email"]{line-height:1em}label{display:block;color:inherit;font-weight:600;line-height:1.75em;margin-bottom:0.5em}::-webkit-input-placeholder{color:#999;position:relative;top:3px}:-moz-placeholder{color:#999}::-moz-placeholder{color:#999}:-ms-input-placeholder{color:#999}.image{border:0;display:inline-block;position:relative;border-radius:5px}.image img{display:block;border-radius:5px}.image.left{display:block;float:left;margin:0 2em 2em 0;position:relative;top:0.25em}.image.left img{display:block;width:100%}.image.fit{display:block}.image.fit img{display:block;width:100%}.image.featured{display:block;margin:0 0 2em 0}.image.featured img{display:block;width:100%}.icon{text-decoration:none;position:relative;text-decoration:none}.icon:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:400}.icon>.label{display:none}.icon:before{line-height:inherit}.icon.solid:before{font-weight:900}.icon.brands:before{font-family:'Font Awesome 5 Brands'}.icon.major{text-align:center;cursor:default;background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff;border-radius:100%;display:inline-block;width:5em;height:5em;line-height:5em;box-shadow:0 0 0 7px white,0 0 0 8px #e0e0e0;margin:0 0 2em 0}.icon.major:before{font-size:36px}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:0.25em}ul{list-style:disc;padding-left:1em}ul li{padding-left:0.5em}ul.tags{list-style:none;font-size:1rem;display:flex;padding-left:0;margin-left:-8px}ul.links{list-style:none;padding-left:0}ul.links li{line-height:2.5em;padding-left:0}ul.icons{cursor:default;list-style:none;padding-left:0}ul.icons li{display:inline-block;line-height:1em;padding-left:1.5em}ul.icons li:first-child{padding-left:0}ul.icons li a,ul.icons li span{font-size:2em;border:0}ul.menu{list-style:none;padding-left:0}ul.menu li{border-left:solid 1px #e0e0e0;display:inline-block;padding:0 0 0 1em;margin:0 0 0 1em}ul.menu li:first-child{border-left:0;margin-left:0;padding-left:0}ul.actions{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;cursor:default;list-style:none;margin-left:-1em;padding-left:0}ul.actions li{padding:0 0 0 1em;vertical-align:middle}ul.actions.special{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}ul.actions.special li:first-child{padding-left:0}ul.actions.stacked{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0}ul.actions.stacked li{padding:1.25em 0 0 0}ul.actions.stacked li:first-child{padding-top:0}ul.actions.fit{width:calc(100% + 1em)}ul.actions.fit li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;width:100%}ul.actions.fit li>*{width:100%}ul.actions.fit.stacked{width:100%}@media screen and (max-width: 736px){ul.actions:not(.fixed){-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0;width:100% !important}ul.actions:not(.fixed) li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;padding:1em 0 0 0;text-align:center;width:100%}ul.actions:not(.fixed) li>*{width:100%}ul.actions:not(.fixed) li:first-child{padding-top:0}ul.actions:not(.fixed) li input[type="submit"],ul.actions:not(.fixed) li input[type="reset"],ul.actions:not(.fixed) li input[type="button"],ul.actions:not(.fixed) li button,ul.actions:not(.fixed) li .button{width:100%}ul.actions:not(.fixed) li input[type="submit"].icon:before,ul.actions:not(.fixed) li input[type="reset"].icon:before,ul.actions:not(.fixed) li input[type="button"].icon:before,ul.actions:not(.fixed) li button.icon:before,ul.actions:not(.fixed) li .button.icon:before{margin-left:-0.5em}}table{width:100%}table.default{width:100%}table.default tbody tr{border-bottom:solid 1px #e0e0e0}table.default td{padding:0.5em 1em 0.5em 1em}table.default th{font-weight:600;padding:0.5em 1em 0.5em 1em;text-align:left}table.default thead{background-color:#555555;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}input[type="submit"],input[type="reset"],input[type="button"],button,.button{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-webkit-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-ms-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-color:#37c0fb;border-radius:5px;border:0;color:#fff;cursor:pointer;display:inline-block;padding:0 1.5em;line-height:2.75em;min-width:9em;text-align:center;text-decoration:none;font-weight:600;letter-spacing:-0.025em}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.button:hover{background-color:#50c8fc;color:#fff !important}input[type="submit"]:active,input[type="reset"]:active,input[type="button"]:active,button:active,.button:active{background-color:#1eb8fb;color:#fff}input[type="submit"].alt,input[type="reset"].alt,input[type="button"].alt,button.alt,.button.alt{background-color:#555555;color:#fff}input[type="submit"].alt:hover,input[type="reset"].alt:hover,input[type="button"].alt:hover,button.alt:hover,.button.alt:hover{background-color:#626262}input[type="submit"].alt:active,input[type="reset"].alt:active,input[type="button"].alt:active,button.alt:active,.button.alt:active{background-color:#484848}input[type="submit"].icon:before,input[type="reset"].icon:before,input[type="button"].icon:before,button.icon:before,.button.icon:before{margin-right:0.5em}input[type="submit"].fit,input[type="reset"].fit,input[type="button"].fit,button.fit,.button.fit{width:100%}input[type="submit"].small,input[type="reset"].small,input[type="button"].small,button.small,.button.small{font-size:0.8em}.box.highlight{text-align:center}.box.post{position:relative;margin:0 0 2em 0}.box.post:after{content:'';display:block;clear:both}.box.post .inner{margin-left:calc(30% + 2em)}.box.post .inner>:last-child{margin-bottom:0}.box.post .image{width:30%;margin:0}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-image:url("images/bg02.png"),url("images/bg02.png"),url("images/bg01.png");background-position:top left, top left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:1.5em;letter-spacing:-0.025em;border:0}#nav{cursor:default;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");padding:0}#nav:after{content:'';display:block;width:100%;height:0.75em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul{margin:0}#nav>ul>li{position:relative;display:inline-block;margin-left:1em}#nav>ul>li a{color:#c0c0c0;text-decoration:none;border:0;display:block;padding:1.5em 0.5em 1.35em 0.5em}#nav>ul>li:first-child{margin-left:0}#nav>ul>li:hover a{color:#fff}#nav>ul>li.current{font-weight:600}#nav>ul>li.current:before{-moz-transform:rotateZ(45deg);-webkit-transform:rotateZ(45deg);-ms-transform:rotateZ(45deg);transform:rotateZ(45deg);width:0.75em;height:0.75em;content:'';display:block;position:absolute;bottom:-0.5em;left:50%;margin-left:-0.375em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul>li.current a{color:#fff}#nav>ul>li.active a{color:#fff}#nav>ul>li.active.current:before{opacity:0}#nav>ul>li>ul{display:none}.dropotron{background-image:-moz-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-color:#333;border-radius:5px;color:#fff;min-width:10em;padding:1em 0;text-align:center;box-shadow:0 1em 1em 0 rgba(0,0,0,0.5);list-style:none}.dropotron>li{line-height:2em;padding:0 1.1em 0 1em}.dropotron>li>a{color:#c0c0c0;text-decoration:none;border:0}.dropotron>li.active>a,.dropotron>li:hover>a{color:#fff}.dropotron.level-0{border-radius:0 0 5px 5px;font-size:0.9em;padding-top:0;margin-top:-1px}#banner{background-image:url(images/accueil.jpg);background-position:center center;background-size:cover;height:28em;text-align:center;position:relative}#banner header{position:absolute;bottom:0;left:0;width:100%;background:#212121;background:rgba(27,27,27,0.75);color:#fff;padding:1.5em 0}#banner header h2{display:inline-block;margin:0;font-size:1.25em;vertical-align:middle}#banner header h2 em{opacity:0.75}#banner header h2 a{border-bottom-color:rgba(255,255,255,0.5)}#banner header h2 a:hover{border-bottom-color:transparent}#banner header .button{vertical-align:middle;margin-left:1em}.wrapper{padding:5em 0 3em 0}.wrapper.style1{background:#fff}.wrapper.style2{background-color:#fff;background-image:url("images/bg02.png"),url("images/bg03.png"),url("images/bg01.png");background-position:top left, bottom left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}.wrapper.style3{background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}.wrapper.style3 .button{background:#fff;color:#474747}.wrapper.style3 .button:hover{color:#37c0fb !important}#cta{text-align:center;padding:3.5em 0}#cta header h2{display:inline-block;vertical-align:middle;margin:0}#cta header .button{vertical-align:middle;margin-left:1em}#footer{padding:4em 0 8em 0}#footer a{color:inherit;border-bottom-color:rgba(71,71,71,0.25)}#footer a:hover{color:#37c0fb;border-bottom-color:transparent}#footer .container{margin-bottom:4em}#footer .icons{text-align:center;margin:0}#footer .icons a{color:#999}#footer .icons a:hover{color:#474747}#footer .copyright{color:#999;margin-top:1.5em;text-align:center;font-size:0.9em}@media screen and (max-width: 1680px){body,input,select,textarea{font-size:14pt;line-height:1.5em}#banner{height:24em}}@media screen and (max-width: 1280px){body,input,select,textarea{font-size:13pt;line-height:1.5em}ol{padding-left:1.25em}ol li{padding-left:0.25em}ul.icons li a,ul.icons li span{font-size:1.5em}#header{padding:2em 0 0 0}#header h1{padding:0 0 1.75em 0}#banner{height:20em}.wrapper{padding:3em 0 1em 0}#cta{padding:2em 0}#footer{padding:3em 0 3em 0}#footer .container{margin-bottom:1em}}@media screen and (max-width: 980px){body,input,select,textarea{font-size:12pt;line-height:1.5em}}#navPanel,#titleBar{display:none}@media screen and (max-width: 840px){html,body{overflow-x:hidden}body,input,select,textarea{font-size:13pt}h1,h2,h3,h4,h5,h6{margin-bottom:0.5em}header p{margin-top:-0.75em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:1.75em}header.major p{top:-0.25em;font-size:1.25em}.box.highlight{text-align:left;position:relative;padding-left:7em}.box.highlight i{position:absolute;margin:0;left:0;top:0.25em}.box.post .inner{margin-left:calc(20% + 2em)}.box.post .image{width:20%}#header{display:none}#banner{height:20em}#banner header h2{display:block}#banner header .button{margin:1em 0 0 0}#cta{padding:1.5em 0}#cta header h2{display:block}#cta header .button{margin:1em 0 0 0}#footer{text-align:center}#footer .container{margin-bottom:4em}#footer form .actions{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}#footer form .actions li:first-child{padding-left:0}#page-wrapper{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;padding-bottom:1px;padding-top:44px}#titleBar{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:44px;left:0;position:fixed;top:0;width:100%;z-index:10001;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");height:44px;line-height:44px;box-shadow:0 4px 0 0 #37c0fb}#titleBar .title{display:block;position:relative;font-weight:600;text-align:center;color:#fff;z-index:1}#titleBar .title em{font-style:normal;font-weight:300}#titleBar .toggle{text-decoration:none;border:0;height:60px;left:0;position:absolute;top:0;width:80px;z-index:2}#titleBar .toggle:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:900}#titleBar .toggle:before{content:'\f0c9';display:block;height:44px;line-height:inherit;text-align:center;width:44px;color:#fff;opacity:0.5}#titleBar .toggle:active:before{opacity:0.75}#navPanel{background-color:#1f1f1f;box-shadow:inset -1px 0 3px 0 rgba(0,0,0,0.5);background-image:-moz-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateX(-275px);-webkit-transform:translateX(-275px);-ms-transform:translateX(-275px);transform:translateX(-275px);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:100%;left:0;overflow-y:auto;position:fixed;top:0;width:275px;z-index:10002}#navPanel .link{border-bottom:0;border-top:solid 1px rgba(255,255,255,0.05);color:#888;display:block;height:48px;line-height:48px;padding:0 1em 0 1em;text-decoration:none}#navPanel .link:first-child{border-top:0}#navPanel .link.depth-0{color:#fff}#navPanel .link .indent-1{display:inline-block;width:1em}#navPanel .link .indent-2{display:inline-block;width:2em}#navPanel .link .indent-3{display:inline-block;width:3em}#navPanel .link .indent-4{display:inline-block;width:4em}#navPanel .link .indent-5{display:inline-block;width:5em}body.navPanel-visible #page-wrapper{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #titleBar{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #navPanel{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}@media screen and (max-width: 736px){body,input,select,textarea{font-size:11pt;line-height:1.35em}h2{font-size:1.25em;letter-spacing:0;line-height:1.35em}h3{font-size:1em;letter-spacing:0;line-height:1.35em}header p{margin-top:-0.5em;font-size:1em}header.major{padding:0 20px}header.major h2{font-size:1.25em}header.major p{top:0;margin-top:1.25em;font-size:1em}ul.menu li{border:0;padding:0;margin:0;display:block;line-height:2em}#banner{height:18em}.wrapper{padding:2em 0 1px 0}}@media screen and (max-width: 480px){.icon.major{width:4em;height:4em;line-height:4em;box-shadow:0 0 0 7px white, 0 0 0 8px #e0e0e0}.icon.major:before{font-size:24px}input[type="submit"],input[type="reset"],input[type="button"],button,.button{width:100%;display:block}.box.highlight{padding-left:calc(4em + 30px)}.box.post .inner{margin-left:calc(30% + 20px)}.box.post .image{width:30%}#banner{height:20em}#banner header{padding:20px}.wrapper{padding:2em 20px 1px 20px}#cta{padding:20px}#footer{padding:2em 20px;text-align:left}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:'FontAwesome';font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-origin:border-box;background-image:url("images/logo.svg");background-position:bottom 85% left 10%;background-size:8em;background-repeat:no-repeat}#header .short_text{display:none}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:2.25em;letter-spacing:-0.05em;line-height:1.2;border:0}table{width:100%;background:transparent;border-collapse:collapse;border-spacing:0;text-align:left}table th{padding:5px 10px;font-weight:bold;border-bottom:2px solid #909ba2}table td{padding:5px 10px}table tr:nth-child(2n){background:#f7f8f8}@media screen and (max-width: 736px){#banner{height:10em}}@media screen and (max-width: 480px){#banner{height:10em}#banner header{display:none}}
+
+/*# sourceMappingURL=style.css.map */
\ No newline at end of file
diff --git a/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.json b/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.json
new file mode 100644
index 0000000..8d03ad7
--- /dev/null
+++ b/resources/_gen/assets/sass/main.scss_88528c88a2009b0911739d7978a182fe.json
@@ -0,0 +1 @@
+{"Target":"style.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.content b/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.content
new file mode 100644
index 0000000..1e9b3b1
--- /dev/null
+++ b/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.content
@@ -0,0 +1,3 @@
+@import url("css/fontawesome-all.min.css");@import url("css/font-source-sans-pro.css");html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input,select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#f7f7f7 url("images/bg01.png")}body.is-preload *,body.is-preload *:before,body.is-preload *:after{-moz-animation:none !important;-webkit-animation:none !important;-ms-animation:none !important;animation:none !important;-moz-transition:none !important;-webkit-transition:none !important;-ms-transition:none !important;transition:none !important}body,input,select,textarea{color:#474747;font-family:'Source Sans Pro', sans-serif;font-size:16pt;font-weight:300;line-height:1.65em}a{-moz-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-webkit-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-ms-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;color:#37c0fb;text-decoration:none;border-bottom:dotted 1px}a:hover{color:#37c0fb;border-bottom-color:transparent}strong,b{font-weight:600}em,i{font-style:italic}p,ul,ol,dl,table,blockquote{margin:0 0 2em 0}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:600;line-height:1.75em;margin-bottom:1em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1 em,h2 em,h3 em,h4 em,h5 em,h6 em{font-style:normal;font-weight:300}h2{font-size:1.75em;letter-spacing:-0.025em}h3{font-size:1.2em;letter-spacing:-0.025em}sub{font-size:0.8em;position:relative;top:0.5em}sup{font-size:0.8em;position:relative;top:-0.5em}hr{border-top:solid 1px #e0e0e0;border:0;margin-bottom:1.5em}blockquote{border-left:solid 0.5em #e0e0e0;font-style:italic;padding:1em 0 1em 2em}time{font-size:1rem}.container{margin:0 auto;max-width:100%;width:1400px}@media screen and (max-width: 1680px){.container{width:1200px}}@media screen and (max-width: 1280px){.container{width:960px}}@media screen and (max-width: 980px){.container{width:95%}}@media screen and (max-width: 840px){.container{width:95%}}@media screen and (max-width: 736px){.container{width:90%}}@media screen and (max-width: 480px){.container{width:100%}}.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp{order:-1}.row>.col-1{width:8.33333333%}.row>.off-1{margin-left:8.33333333%}.row>.col-2{width:16.66666667%}.row>.off-2{margin-left:16.66666667%}.row>.col-3{width:25%}.row>.off-3{margin-left:25%}.row>.col-4{width:33.33333333%}.row>.off-4{margin-left:33.33333333%}.row>.col-5{width:41.66666667%}.row>.off-5{margin-left:41.66666667%}.row>.col-6{width:50%}.row>.off-6{margin-left:50%}.row>.col-7{width:58.33333333%}.row>.off-7{margin-left:58.33333333%}.row>.col-8{width:66.66666667%}.row>.off-8{margin-left:66.66666667%}.row>.col-9{width:75%}.row>.off-9{margin-left:75%}.row>.col-10{width:83.33333333%}.row>.off-10{margin-left:83.33333333%}.row>.col-11{width:91.66666667%}.row>.off-11{margin-left:91.66666667%}.row>.col-12{width:100%}.row>.off-12{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-12.5px;margin-left:-12.5px}.row.gtr-25>*{padding:12.5px 0 0 12.5px}.row.gtr-25.gtr-uniform{margin-top:-12.5px}.row.gtr-25.gtr-uniform>*{padding-top:12.5px}.row.gtr-50{margin-top:-25px;margin-left:-25px}.row.gtr-50>*{padding:25px 0 0 25px}.row.gtr-50.gtr-uniform{margin-top:-25px}.row.gtr-50.gtr-uniform>*{padding-top:25px}.row{margin-top:-50px;margin-left:-50px}.row>*{padding:50px 0 0 50px}.row.gtr-uniform{margin-top:-50px}.row.gtr-uniform>*{padding-top:50px}.row.gtr-150{margin-top:-75px;margin-left:-75px}.row.gtr-150>*{padding:75px 0 0 75px}.row.gtr-150.gtr-uniform{margin-top:-75px}.row.gtr-150.gtr-uniform>*{padding-top:75px}.row.gtr-200{margin-top:-100px;margin-left:-100px}.row.gtr-200>*{padding:100px 0 0 100px}.row.gtr-200.gtr-uniform{margin-top:-100px}.row.gtr-200.gtr-uniform>*{padding-top:100px}@media screen and (max-width: 1680px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-wide{order:-1}.row>.col-1-wide{width:8.33333333%}.row>.off-1-wide{margin-left:8.33333333%}.row>.col-2-wide{width:16.66666667%}.row>.off-2-wide{margin-left:16.66666667%}.row>.col-3-wide{width:25%}.row>.off-3-wide{margin-left:25%}.row>.col-4-wide{width:33.33333333%}.row>.off-4-wide{margin-left:33.33333333%}.row>.col-5-wide{width:41.66666667%}.row>.off-5-wide{margin-left:41.66666667%}.row>.col-6-wide{width:50%}.row>.off-6-wide{margin-left:50%}.row>.col-7-wide{width:58.33333333%}.row>.off-7-wide{margin-left:58.33333333%}.row>.col-8-wide{width:66.66666667%}.row>.off-8-wide{margin-left:66.66666667%}.row>.col-9-wide{width:75%}.row>.off-9-wide{margin-left:75%}.row>.col-10-wide{width:83.33333333%}.row>.off-10-wide{margin-left:83.33333333%}.row>.col-11-wide{width:91.66666667%}.row>.off-11-wide{margin-left:91.66666667%}.row>.col-12-wide{width:100%}.row>.off-12-wide{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-10px;margin-left:-10px}.row.gtr-25>*{padding:10px 0 0 10px}.row.gtr-25.gtr-uniform{margin-top:-10px}.row.gtr-25.gtr-uniform>*{padding-top:10px}.row.gtr-50{margin-top:-20px;margin-left:-20px}.row.gtr-50>*{padding:20px 0 0 20px}.row.gtr-50.gtr-uniform{margin-top:-20px}.row.gtr-50.gtr-uniform>*{padding-top:20px}.row{margin-top:-40px;margin-left:-40px}.row>*{padding:40px 0 0 40px}.row.gtr-uniform{margin-top:-40px}.row.gtr-uniform>*{padding-top:40px}.row.gtr-150{margin-top:-60px;margin-left:-60px}.row.gtr-150>*{padding:60px 0 0 60px}.row.gtr-150.gtr-uniform{margin-top:-60px}.row.gtr-150.gtr-uniform>*{padding-top:60px}.row.gtr-200{margin-top:-80px;margin-left:-80px}.row.gtr-200>*{padding:80px 0 0 80px}.row.gtr-200.gtr-uniform{margin-top:-80px}.row.gtr-200.gtr-uniform>*{padding-top:80px}}@media screen and (max-width: 1280px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-normal{order:-1}.row>.col-1-normal{width:8.33333333%}.row>.off-1-normal{margin-left:8.33333333%}.row>.col-2-normal{width:16.66666667%}.row>.off-2-normal{margin-left:16.66666667%}.row>.col-3-normal{width:25%}.row>.off-3-normal{margin-left:25%}.row>.col-4-normal{width:33.33333333%}.row>.off-4-normal{margin-left:33.33333333%}.row>.col-5-normal{width:41.66666667%}.row>.off-5-normal{margin-left:41.66666667%}.row>.col-6-normal{width:50%}.row>.off-6-normal{margin-left:50%}.row>.col-7-normal{width:58.33333333%}.row>.off-7-normal{margin-left:58.33333333%}.row>.col-8-normal{width:66.66666667%}.row>.off-8-normal{margin-left:66.66666667%}.row>.col-9-normal{width:75%}.row>.off-9-normal{margin-left:75%}.row>.col-10-normal{width:83.33333333%}.row>.off-10-normal{margin-left:83.33333333%}.row>.col-11-normal{width:91.66666667%}.row>.off-11-normal{margin-left:91.66666667%}.row>.col-12-normal{width:100%}.row>.off-12-normal{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 980px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrow{order:-1}.row>.col-1-narrow{width:8.33333333%}.row>.off-1-narrow{margin-left:8.33333333%}.row>.col-2-narrow{width:16.66666667%}.row>.off-2-narrow{margin-left:16.66666667%}.row>.col-3-narrow{width:25%}.row>.off-3-narrow{margin-left:25%}.row>.col-4-narrow{width:33.33333333%}.row>.off-4-narrow{margin-left:33.33333333%}.row>.col-5-narrow{width:41.66666667%}.row>.off-5-narrow{margin-left:41.66666667%}.row>.col-6-narrow{width:50%}.row>.off-6-narrow{margin-left:50%}.row>.col-7-narrow{width:58.33333333%}.row>.off-7-narrow{margin-left:58.33333333%}.row>.col-8-narrow{width:66.66666667%}.row>.off-8-narrow{margin-left:66.66666667%}.row>.col-9-narrow{width:75%}.row>.off-9-narrow{margin-left:75%}.row>.col-10-narrow{width:83.33333333%}.row>.off-10-narrow{margin-left:83.33333333%}.row>.col-11-narrow{width:91.66666667%}.row>.off-11-narrow{margin-left:91.66666667%}.row>.col-12-narrow{width:100%}.row>.off-12-narrow{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 840px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrower{order:-1}.row>.col-1-narrower{width:8.33333333%}.row>.off-1-narrower{margin-left:8.33333333%}.row>.col-2-narrower{width:16.66666667%}.row>.off-2-narrower{margin-left:16.66666667%}.row>.col-3-narrower{width:25%}.row>.off-3-narrower{margin-left:25%}.row>.col-4-narrower{width:33.33333333%}.row>.off-4-narrower{margin-left:33.33333333%}.row>.col-5-narrower{width:41.66666667%}.row>.off-5-narrower{margin-left:41.66666667%}.row>.col-6-narrower{width:50%}.row>.off-6-narrower{margin-left:50%}.row>.col-7-narrower{width:58.33333333%}.row>.off-7-narrower{margin-left:58.33333333%}.row>.col-8-narrower{width:66.66666667%}.row>.off-8-narrower{margin-left:66.66666667%}.row>.col-9-narrower{width:75%}.row>.off-9-narrower{margin-left:75%}.row>.col-10-narrower{width:83.33333333%}.row>.off-10-narrower{margin-left:83.33333333%}.row>.col-11-narrower{width:91.66666667%}.row>.off-11-narrower{margin-left:91.66666667%}.row>.col-12-narrower{width:100%}.row>.off-12-narrower{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 736px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobile{order:-1}.row>.col-1-mobile{width:8.33333333%}.row>.off-1-mobile{margin-left:8.33333333%}.row>.col-2-mobile{width:16.66666667%}.row>.off-2-mobile{margin-left:16.66666667%}.row>.col-3-mobile{width:25%}.row>.off-3-mobile{margin-left:25%}.row>.col-4-mobile{width:33.33333333%}.row>.off-4-mobile{margin-left:33.33333333%}.row>.col-5-mobile{width:41.66666667%}.row>.off-5-mobile{margin-left:41.66666667%}.row>.col-6-mobile{width:50%}.row>.off-6-mobile{margin-left:50%}.row>.col-7-mobile{width:58.33333333%}.row>.off-7-mobile{margin-left:58.33333333%}.row>.col-8-mobile{width:66.66666667%}.row>.off-8-mobile{margin-left:66.66666667%}.row>.col-9-mobile{width:75%}.row>.off-9-mobile{margin-left:75%}.row>.col-10-mobile{width:83.33333333%}.row>.off-10-mobile{margin-left:83.33333333%}.row>.col-11-mobile{width:91.66666667%}.row>.off-11-mobile{margin-left:91.66666667%}.row>.col-12-mobile{width:100%}.row>.off-12-mobile{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}@media screen and (max-width: 480px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobilep{order:-1}.row>.col-1-mobilep{width:8.33333333%}.row>.off-1-mobilep{margin-left:8.33333333%}.row>.col-2-mobilep{width:16.66666667%}.row>.off-2-mobilep{margin-left:16.66666667%}.row>.col-3-mobilep{width:25%}.row>.off-3-mobilep{margin-left:25%}.row>.col-4-mobilep{width:33.33333333%}.row>.off-4-mobilep{margin-left:33.33333333%}.row>.col-5-mobilep{width:41.66666667%}.row>.off-5-mobilep{margin-left:41.66666667%}.row>.col-6-mobilep{width:50%}.row>.off-6-mobilep{margin-left:50%}.row>.col-7-mobilep{width:58.33333333%}.row>.off-7-mobilep{margin-left:58.33333333%}.row>.col-8-mobilep{width:66.66666667%}.row>.off-8-mobilep{margin-left:66.66666667%}.row>.col-9-mobilep{width:75%}.row>.off-9-mobilep{margin-left:75%}.row>.col-10-mobilep{width:83.33333333%}.row>.off-10-mobilep{margin-left:83.33333333%}.row>.col-11-mobilep{width:91.66666667%}.row>.off-11-mobilep{margin-left:91.66666667%}.row>.col-12-mobilep{width:100%}.row>.off-12-mobilep{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}section.special,article.special{text-align:center}header p{color:#999;font-size:1.25em;position:relative;margin-top:-1.25em;margin-bottom:0.25em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:2.25em}header.major p{position:relative;border-top:solid 1px #e0e0e0;padding:1em 0 0 0;margin:0;top:-1em;font-size:1.5em;letter-spacing:-0.025em}footer{margin:0 0 3em 0}footer>:last-child{margin-bottom:0}footer.major{padding-top:3em}input[type="text"],input[type="password"],input[type="email"],textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:border-color 0.2s ease-in-out;-webkit-transition:border-color 0.2s ease-in-out;-ms-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out;background:#fff;border:solid 1px #e0e0e0;border-radius:5px;color:inherit;display:block;outline:0;padding:0.75em;text-decoration:none;width:100%}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,textarea:focus{border-color:#37c0fb}input[type="text"],input[type="password"],input[type="email"]{line-height:1em}label{display:block;color:inherit;font-weight:600;line-height:1.75em;margin-bottom:0.5em}::-webkit-input-placeholder{color:#999;position:relative;top:3px}:-moz-placeholder{color:#999}::-moz-placeholder{color:#999}:-ms-input-placeholder{color:#999}.image{border:0;display:inline-block;position:relative;border-radius:5px}.image img{display:block;border-radius:5px}.image.left{display:block;float:left;margin:0 2em 2em 0;position:relative;top:0.25em}.image.left img{display:block;width:100%}.image.fit{display:block}.image.fit img{display:block;width:100%}.image.featured{display:block;margin:0 0 2em 0}.image.featured img{display:block;width:100%}.icon{text-decoration:none;position:relative;text-decoration:none}.icon:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:400}.icon>.label{display:none}.icon:before{line-height:inherit}.icon.solid:before{font-weight:900}.icon.brands:before{font-family:'Font Awesome 5 Brands'}.icon.major{text-align:center;cursor:default;background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff;border-radius:100%;display:inline-block;width:5em;height:5em;line-height:5em;box-shadow:0 0 0 7px white,0 0 0 8px #e0e0e0;margin:0 0 2em 0}.icon.major:before{font-size:36px}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:0.25em}ul{list-style:disc;padding-left:1em}ul li{padding-left:0.5em}ul.tags{list-style:none;font-size:1rem;display:flex;padding-left:0;margin-left:-8px}ul.links{list-style:none;padding-left:0}ul.links li{line-height:2.5em;padding-left:0}ul.icons{cursor:default;list-style:none;padding-left:0}ul.icons li{display:inline-block;line-height:1em;padding-left:1.5em}ul.icons li:first-child{padding-left:0}ul.icons li a,ul.icons li span{font-size:2em;border:0}ul.menu{list-style:none;padding-left:0}ul.menu li{border-left:solid 1px #e0e0e0;display:inline-block;padding:0 0 0 1em;margin:0 0 0 1em}ul.menu li:first-child{border-left:0;margin-left:0;padding-left:0}ul.actions{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;cursor:default;list-style:none;margin-left:-1em;padding-left:0}ul.actions li{padding:0 0 0 1em;vertical-align:middle}ul.actions.special{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}ul.actions.special li:first-child{padding-left:0}ul.actions.stacked{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0}ul.actions.stacked li{padding:1.25em 0 0 0}ul.actions.stacked li:first-child{padding-top:0}ul.actions.fit{width:calc(100% + 1em)}ul.actions.fit li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;width:100%}ul.actions.fit li>*{width:100%}ul.actions.fit.stacked{width:100%}@media screen and (max-width: 736px){ul.actions:not(.fixed){-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0;width:100% !important}ul.actions:not(.fixed) li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;padding:1em 0 0 0;text-align:center;width:100%}ul.actions:not(.fixed) li>*{width:100%}ul.actions:not(.fixed) li:first-child{padding-top:0}ul.actions:not(.fixed) li input[type="submit"],ul.actions:not(.fixed) li input[type="reset"],ul.actions:not(.fixed) li input[type="button"],ul.actions:not(.fixed) li button,ul.actions:not(.fixed) li .button{width:100%}ul.actions:not(.fixed) li input[type="submit"].icon:before,ul.actions:not(.fixed) li input[type="reset"].icon:before,ul.actions:not(.fixed) li input[type="button"].icon:before,ul.actions:not(.fixed) li button.icon:before,ul.actions:not(.fixed) li .button.icon:before{margin-left:-0.5em}}table{width:100%}table.default{width:100%}table.default tbody tr{border-bottom:solid 1px #e0e0e0}table.default td{padding:0.5em 1em 0.5em 1em}table.default th{font-weight:600;padding:0.5em 1em 0.5em 1em;text-align:left}table.default thead{background-color:#555555;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}input[type="submit"],input[type="reset"],input[type="button"],button,.button{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-webkit-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-ms-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-color:#37c0fb;border-radius:5px;border:0;color:#fff;cursor:pointer;display:inline-block;padding:0 1.5em;line-height:2.75em;min-width:9em;text-align:center;text-decoration:none;font-weight:600;letter-spacing:-0.025em}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.button:hover{background-color:#50c8fc;color:#fff !important}input[type="submit"]:active,input[type="reset"]:active,input[type="button"]:active,button:active,.button:active{background-color:#1eb8fb;color:#fff}input[type="submit"].alt,input[type="reset"].alt,input[type="button"].alt,button.alt,.button.alt{background-color:#555555;color:#fff}input[type="submit"].alt:hover,input[type="reset"].alt:hover,input[type="button"].alt:hover,button.alt:hover,.button.alt:hover{background-color:#626262}input[type="submit"].alt:active,input[type="reset"].alt:active,input[type="button"].alt:active,button.alt:active,.button.alt:active{background-color:#484848}input[type="submit"].icon:before,input[type="reset"].icon:before,input[type="button"].icon:before,button.icon:before,.button.icon:before{margin-right:0.5em}input[type="submit"].fit,input[type="reset"].fit,input[type="button"].fit,button.fit,.button.fit{width:100%}input[type="submit"].small,input[type="reset"].small,input[type="button"].small,button.small,.button.small{font-size:0.8em}.box.highlight{text-align:center}.box.post{position:relative;margin:0 0 2em 0}.box.post:after{content:'';display:block;clear:both}.box.post .inner{margin-left:calc(30% + 2em)}.box.post .inner>:last-child{margin-bottom:0}.box.post .image{width:30%;margin:0}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-image:url("images/bg02.png"),url("images/bg02.png"),url("images/bg01.png");background-position:top left, top left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:1.5em;letter-spacing:-0.025em;border:0}#nav{cursor:default;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");padding:0}#nav:after{content:'';display:block;width:100%;height:0.75em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul{margin:0}#nav>ul>li{position:relative;display:inline-block;margin-left:1em}#nav>ul>li a{color:#c0c0c0;text-decoration:none;border:0;display:block;padding:1.5em 0.5em 1.35em 0.5em}#nav>ul>li:first-child{margin-left:0}#nav>ul>li:hover a{color:#fff}#nav>ul>li.current{font-weight:600}#nav>ul>li.current:before{-moz-transform:rotateZ(45deg);-webkit-transform:rotateZ(45deg);-ms-transform:rotateZ(45deg);transform:rotateZ(45deg);width:0.75em;height:0.75em;content:'';display:block;position:absolute;bottom:-0.5em;left:50%;margin-left:-0.375em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul>li.current a{color:#fff}#nav>ul>li.active a{color:#fff}#nav>ul>li.active.current:before{opacity:0}#nav>ul>li>ul{display:none}.dropotron{background-image:-moz-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-color:#333;border-radius:5px;color:#fff;min-width:10em;padding:1em 0;text-align:center;box-shadow:0 1em 1em 0 rgba(0,0,0,0.5);list-style:none}.dropotron>li{line-height:2em;padding:0 1.1em 0 1em}.dropotron>li>a{color:#c0c0c0;text-decoration:none;border:0}.dropotron>li.active>a,.dropotron>li:hover>a{color:#fff}.dropotron.level-0{border-radius:0 0 5px 5px;font-size:0.9em;padding-top:0;margin-top:-1px}#banner{background-image:url(images/accueil.jpg);background-position:center center;background-size:cover;height:28em;text-align:center;position:relative}#banner header{position:absolute;bottom:0;left:0;width:100%;background:#212121;background:rgba(27,27,27,0.75);color:#fff;padding:1.5em 0}#banner header h2{display:inline-block;margin:0;font-size:1.25em;vertical-align:middle}#banner header h2 em{opacity:0.75}#banner header h2 a{border-bottom-color:rgba(255,255,255,0.5)}#banner header h2 a:hover{border-bottom-color:transparent}#banner header .button{vertical-align:middle;margin-left:1em}.wrapper{padding:5em 0 3em 0}.wrapper.style1{background:#fff}.wrapper.style2{background-color:#fff;background-image:url("images/bg02.png"),url("images/bg03.png"),url("images/bg01.png");background-position:top left, bottom left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}.wrapper.style3{background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}.wrapper.style3 .button{background:#fff;color:#474747}.wrapper.style3 .button:hover{color:#37c0fb !important}#cta{text-align:center;padding:3.5em 0}#cta header h2{display:inline-block;vertical-align:middle;margin:0}#cta header .button{vertical-align:middle;margin-left:1em}#footer{padding:4em 0 8em 0}#footer a{color:inherit;border-bottom-color:rgba(71,71,71,0.25)}#footer a:hover{color:#37c0fb;border-bottom-color:transparent}#footer .container{margin-bottom:4em}#footer .icons{text-align:center;margin:0}#footer .icons a{color:#999}#footer .icons a:hover{color:#474747}#footer .copyright{color:#999;margin-top:1.5em;text-align:center;font-size:0.9em}@media screen and (max-width: 1680px){body,input,select,textarea{font-size:14pt;line-height:1.5em}#banner{height:24em}}@media screen and (max-width: 1280px){body,input,select,textarea{font-size:13pt;line-height:1.5em}ol{padding-left:1.25em}ol li{padding-left:0.25em}ul.icons li a,ul.icons li span{font-size:1.5em}#header{padding:2em 0 0 0}#header h1{padding:0 0 1.75em 0}#banner{height:20em}.wrapper{padding:3em 0 1em 0}#cta{padding:2em 0}#footer{padding:3em 0 3em 0}#footer .container{margin-bottom:1em}}@media screen and (max-width: 980px){body,input,select,textarea{font-size:12pt;line-height:1.5em}}#navPanel,#titleBar{display:none}@media screen and (max-width: 840px){html,body{overflow-x:hidden}body,input,select,textarea{font-size:13pt}h1,h2,h3,h4,h5,h6{margin-bottom:0.5em}header p{margin-top:-0.75em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:1.75em}header.major p{top:-0.25em;font-size:1.25em}.box.highlight{text-align:left;position:relative;padding-left:7em}.box.highlight i{position:absolute;margin:0;left:0;top:0.25em}.box.post .inner{margin-left:calc(20% + 2em)}.box.post .image{width:20%}#header{display:none}#banner{height:20em}#banner header h2{display:block}#banner header .button{margin:1em 0 0 0}#cta{padding:1.5em 0}#cta header h2{display:block}#cta header .button{margin:1em 0 0 0}#footer{text-align:center}#footer .container{margin-bottom:4em}#footer form .actions{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}#footer form .actions li:first-child{padding-left:0}#page-wrapper{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;padding-bottom:1px;padding-top:44px}#titleBar{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:44px;left:0;position:fixed;top:0;width:100%;z-index:10001;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");height:44px;line-height:44px;box-shadow:0 4px 0 0 #37c0fb}#titleBar .title{display:block;position:relative;font-weight:600;text-align:center;color:#fff;z-index:1}#titleBar .title em{font-style:normal;font-weight:300}#titleBar .toggle{text-decoration:none;border:0;height:60px;left:0;position:absolute;top:0;width:80px;z-index:2}#titleBar .toggle:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:900}#titleBar .toggle:before{content:'\f0c9';display:block;height:44px;line-height:inherit;text-align:center;width:44px;color:#fff;opacity:0.5}#titleBar .toggle:active:before{opacity:0.75}#navPanel{background-color:#1f1f1f;box-shadow:inset -1px 0 3px 0 rgba(0,0,0,0.5);background-image:-moz-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateX(-275px);-webkit-transform:translateX(-275px);-ms-transform:translateX(-275px);transform:translateX(-275px);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:100%;left:0;overflow-y:auto;position:fixed;top:0;width:275px;z-index:10002}#navPanel .link{border-bottom:0;border-top:solid 1px rgba(255,255,255,0.05);color:#888;display:block;height:48px;line-height:48px;padding:0 1em 0 1em;text-decoration:none}#navPanel .link:first-child{border-top:0}#navPanel .link.depth-0{color:#fff}#navPanel .link .indent-1{display:inline-block;width:1em}#navPanel .link .indent-2{display:inline-block;width:2em}#navPanel .link .indent-3{display:inline-block;width:3em}#navPanel .link .indent-4{display:inline-block;width:4em}#navPanel .link .indent-5{display:inline-block;width:5em}body.navPanel-visible #page-wrapper{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #titleBar{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #navPanel{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}@media screen and (max-width: 736px){body,input,select,textarea{font-size:11pt;line-height:1.35em}h2{font-size:1.25em;letter-spacing:0;line-height:1.35em}h3{font-size:1em;letter-spacing:0;line-height:1.35em}header p{margin-top:-0.5em;font-size:1em}header.major{padding:0 20px}header.major h2{font-size:1.25em}header.major p{top:0;margin-top:1.25em;font-size:1em}ul.menu li{border:0;padding:0;margin:0;display:block;line-height:2em}#banner{height:18em}.wrapper{padding:2em 0 1px 0}}@media screen and (max-width: 480px){.icon.major{width:4em;height:4em;line-height:4em;box-shadow:0 0 0 7px white, 0 0 0 8px #e0e0e0}.icon.major:before{font-size:24px}input[type="submit"],input[type="reset"],input[type="button"],button,.button{width:100%;display:block}.box.highlight{padding-left:calc(4em + 30px)}.box.post .inner{margin-left:calc(30% + 20px)}.box.post .image{width:30%}#banner{height:20em}#banner header{padding:20px}.wrapper{padding:2em 20px 1px 20px}#cta{padding:20px}#footer{padding:2em 20px;text-align:left}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:'FontAwesome';font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-origin:border-box;background-image:url("images/logo.svg");background-position:bottom 85% left 10%;background-size:8em;background-repeat:no-repeat}#header .short_text{display:none}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:2.25em;letter-spacing:-0.05em;line-height:1.2;border:0}table{width:100%;background:transparent;border-collapse:collapse;border-spacing:0;text-align:left}table th{padding:5px 10px;font-weight:bold;border-bottom:2px solid #909ba2}table td{padding:5px 10px}table tr:nth-child(2n){background:#f7f8f8}@media screen and (max-width: 736px){#banner{height:10em}}@media screen and (max-width: 480px){#banner{height:10em}#banner header{display:none}}
+
+/*# sourceMappingURL=style.css.map */
\ No newline at end of file
diff --git a/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.json b/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.json
new file mode 100644
index 0000000..8d03ad7
--- /dev/null
+++ b/resources/_gen/assets/scss/sass/main.scss_88528c88a2009b0911739d7978a182fe.json
@@ -0,0 +1 @@
+{"Target":"style.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.content b/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.content
new file mode 100644
index 0000000..1e9b3b1
--- /dev/null
+++ b/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.content
@@ -0,0 +1,3 @@
+@import url("css/fontawesome-all.min.css");@import url("css/font-source-sans-pro.css");html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}body{-webkit-text-size-adjust:none}mark{background-color:transparent;color:inherit}input::-moz-focus-inner{border:0;padding:0}input,select,textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#f7f7f7 url("images/bg01.png")}body.is-preload *,body.is-preload *:before,body.is-preload *:after{-moz-animation:none !important;-webkit-animation:none !important;-ms-animation:none !important;animation:none !important;-moz-transition:none !important;-webkit-transition:none !important;-ms-transition:none !important;transition:none !important}body,input,select,textarea{color:#474747;font-family:'Source Sans Pro', sans-serif;font-size:16pt;font-weight:300;line-height:1.65em}a{-moz-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-webkit-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;-ms-transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;transition:color 0.2s ease-in-out, border-color 0.2s ease-in-out, opacity 0.2s ease-in-out;color:#37c0fb;text-decoration:none;border-bottom:dotted 1px}a:hover{color:#37c0fb;border-bottom-color:transparent}strong,b{font-weight:600}em,i{font-style:italic}p,ul,ol,dl,table,blockquote{margin:0 0 2em 0}h1,h2,h3,h4,h5,h6{color:inherit;font-weight:600;line-height:1.75em;margin-bottom:1em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}h1 em,h2 em,h3 em,h4 em,h5 em,h6 em{font-style:normal;font-weight:300}h2{font-size:1.75em;letter-spacing:-0.025em}h3{font-size:1.2em;letter-spacing:-0.025em}sub{font-size:0.8em;position:relative;top:0.5em}sup{font-size:0.8em;position:relative;top:-0.5em}hr{border-top:solid 1px #e0e0e0;border:0;margin-bottom:1.5em}blockquote{border-left:solid 0.5em #e0e0e0;font-style:italic;padding:1em 0 1em 2em}time{font-size:1rem}.container{margin:0 auto;max-width:100%;width:1400px}@media screen and (max-width: 1680px){.container{width:1200px}}@media screen and (max-width: 1280px){.container{width:960px}}@media screen and (max-width: 980px){.container{width:95%}}@media screen and (max-width: 840px){.container{width:95%}}@media screen and (max-width: 736px){.container{width:90%}}@media screen and (max-width: 480px){.container{width:100%}}.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp{order:-1}.row>.col-1{width:8.33333333%}.row>.off-1{margin-left:8.33333333%}.row>.col-2{width:16.66666667%}.row>.off-2{margin-left:16.66666667%}.row>.col-3{width:25%}.row>.off-3{margin-left:25%}.row>.col-4{width:33.33333333%}.row>.off-4{margin-left:33.33333333%}.row>.col-5{width:41.66666667%}.row>.off-5{margin-left:41.66666667%}.row>.col-6{width:50%}.row>.off-6{margin-left:50%}.row>.col-7{width:58.33333333%}.row>.off-7{margin-left:58.33333333%}.row>.col-8{width:66.66666667%}.row>.off-8{margin-left:66.66666667%}.row>.col-9{width:75%}.row>.off-9{margin-left:75%}.row>.col-10{width:83.33333333%}.row>.off-10{margin-left:83.33333333%}.row>.col-11{width:91.66666667%}.row>.off-11{margin-left:91.66666667%}.row>.col-12{width:100%}.row>.off-12{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-12.5px;margin-left:-12.5px}.row.gtr-25>*{padding:12.5px 0 0 12.5px}.row.gtr-25.gtr-uniform{margin-top:-12.5px}.row.gtr-25.gtr-uniform>*{padding-top:12.5px}.row.gtr-50{margin-top:-25px;margin-left:-25px}.row.gtr-50>*{padding:25px 0 0 25px}.row.gtr-50.gtr-uniform{margin-top:-25px}.row.gtr-50.gtr-uniform>*{padding-top:25px}.row{margin-top:-50px;margin-left:-50px}.row>*{padding:50px 0 0 50px}.row.gtr-uniform{margin-top:-50px}.row.gtr-uniform>*{padding-top:50px}.row.gtr-150{margin-top:-75px;margin-left:-75px}.row.gtr-150>*{padding:75px 0 0 75px}.row.gtr-150.gtr-uniform{margin-top:-75px}.row.gtr-150.gtr-uniform>*{padding-top:75px}.row.gtr-200{margin-top:-100px;margin-left:-100px}.row.gtr-200>*{padding:100px 0 0 100px}.row.gtr-200.gtr-uniform{margin-top:-100px}.row.gtr-200.gtr-uniform>*{padding-top:100px}@media screen and (max-width: 1680px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-wide{order:-1}.row>.col-1-wide{width:8.33333333%}.row>.off-1-wide{margin-left:8.33333333%}.row>.col-2-wide{width:16.66666667%}.row>.off-2-wide{margin-left:16.66666667%}.row>.col-3-wide{width:25%}.row>.off-3-wide{margin-left:25%}.row>.col-4-wide{width:33.33333333%}.row>.off-4-wide{margin-left:33.33333333%}.row>.col-5-wide{width:41.66666667%}.row>.off-5-wide{margin-left:41.66666667%}.row>.col-6-wide{width:50%}.row>.off-6-wide{margin-left:50%}.row>.col-7-wide{width:58.33333333%}.row>.off-7-wide{margin-left:58.33333333%}.row>.col-8-wide{width:66.66666667%}.row>.off-8-wide{margin-left:66.66666667%}.row>.col-9-wide{width:75%}.row>.off-9-wide{margin-left:75%}.row>.col-10-wide{width:83.33333333%}.row>.off-10-wide{margin-left:83.33333333%}.row>.col-11-wide{width:91.66666667%}.row>.off-11-wide{margin-left:91.66666667%}.row>.col-12-wide{width:100%}.row>.off-12-wide{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-10px;margin-left:-10px}.row.gtr-25>*{padding:10px 0 0 10px}.row.gtr-25.gtr-uniform{margin-top:-10px}.row.gtr-25.gtr-uniform>*{padding-top:10px}.row.gtr-50{margin-top:-20px;margin-left:-20px}.row.gtr-50>*{padding:20px 0 0 20px}.row.gtr-50.gtr-uniform{margin-top:-20px}.row.gtr-50.gtr-uniform>*{padding-top:20px}.row{margin-top:-40px;margin-left:-40px}.row>*{padding:40px 0 0 40px}.row.gtr-uniform{margin-top:-40px}.row.gtr-uniform>*{padding-top:40px}.row.gtr-150{margin-top:-60px;margin-left:-60px}.row.gtr-150>*{padding:60px 0 0 60px}.row.gtr-150.gtr-uniform{margin-top:-60px}.row.gtr-150.gtr-uniform>*{padding-top:60px}.row.gtr-200{margin-top:-80px;margin-left:-80px}.row.gtr-200>*{padding:80px 0 0 80px}.row.gtr-200.gtr-uniform{margin-top:-80px}.row.gtr-200.gtr-uniform>*{padding-top:80px}}@media screen and (max-width: 1280px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-normal{order:-1}.row>.col-1-normal{width:8.33333333%}.row>.off-1-normal{margin-left:8.33333333%}.row>.col-2-normal{width:16.66666667%}.row>.off-2-normal{margin-left:16.66666667%}.row>.col-3-normal{width:25%}.row>.off-3-normal{margin-left:25%}.row>.col-4-normal{width:33.33333333%}.row>.off-4-normal{margin-left:33.33333333%}.row>.col-5-normal{width:41.66666667%}.row>.off-5-normal{margin-left:41.66666667%}.row>.col-6-normal{width:50%}.row>.off-6-normal{margin-left:50%}.row>.col-7-normal{width:58.33333333%}.row>.off-7-normal{margin-left:58.33333333%}.row>.col-8-normal{width:66.66666667%}.row>.off-8-normal{margin-left:66.66666667%}.row>.col-9-normal{width:75%}.row>.off-9-normal{margin-left:75%}.row>.col-10-normal{width:83.33333333%}.row>.off-10-normal{margin-left:83.33333333%}.row>.col-11-normal{width:91.66666667%}.row>.off-11-normal{margin-left:91.66666667%}.row>.col-12-normal{width:100%}.row>.off-12-normal{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 980px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrow{order:-1}.row>.col-1-narrow{width:8.33333333%}.row>.off-1-narrow{margin-left:8.33333333%}.row>.col-2-narrow{width:16.66666667%}.row>.off-2-narrow{margin-left:16.66666667%}.row>.col-3-narrow{width:25%}.row>.off-3-narrow{margin-left:25%}.row>.col-4-narrow{width:33.33333333%}.row>.off-4-narrow{margin-left:33.33333333%}.row>.col-5-narrow{width:41.66666667%}.row>.off-5-narrow{margin-left:41.66666667%}.row>.col-6-narrow{width:50%}.row>.off-6-narrow{margin-left:50%}.row>.col-7-narrow{width:58.33333333%}.row>.off-7-narrow{margin-left:58.33333333%}.row>.col-8-narrow{width:66.66666667%}.row>.off-8-narrow{margin-left:66.66666667%}.row>.col-9-narrow{width:75%}.row>.off-9-narrow{margin-left:75%}.row>.col-10-narrow{width:83.33333333%}.row>.off-10-narrow{margin-left:83.33333333%}.row>.col-11-narrow{width:91.66666667%}.row>.off-11-narrow{margin-left:91.66666667%}.row>.col-12-narrow{width:100%}.row>.off-12-narrow{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 840px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-narrower{order:-1}.row>.col-1-narrower{width:8.33333333%}.row>.off-1-narrower{margin-left:8.33333333%}.row>.col-2-narrower{width:16.66666667%}.row>.off-2-narrower{margin-left:16.66666667%}.row>.col-3-narrower{width:25%}.row>.off-3-narrower{margin-left:25%}.row>.col-4-narrower{width:33.33333333%}.row>.off-4-narrower{margin-left:33.33333333%}.row>.col-5-narrower{width:41.66666667%}.row>.off-5-narrower{margin-left:41.66666667%}.row>.col-6-narrower{width:50%}.row>.off-6-narrower{margin-left:50%}.row>.col-7-narrower{width:58.33333333%}.row>.off-7-narrower{margin-left:58.33333333%}.row>.col-8-narrower{width:66.66666667%}.row>.off-8-narrower{margin-left:66.66666667%}.row>.col-9-narrower{width:75%}.row>.off-9-narrower{margin-left:75%}.row>.col-10-narrower{width:83.33333333%}.row>.off-10-narrower{margin-left:83.33333333%}.row>.col-11-narrower{width:91.66666667%}.row>.off-11-narrower{margin-left:91.66666667%}.row>.col-12-narrower{width:100%}.row>.off-12-narrower{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-7.5px;margin-left:-7.5px}.row.gtr-25>*{padding:7.5px 0 0 7.5px}.row.gtr-25.gtr-uniform{margin-top:-7.5px}.row.gtr-25.gtr-uniform>*{padding-top:7.5px}.row.gtr-50{margin-top:-15px;margin-left:-15px}.row.gtr-50>*{padding:15px 0 0 15px}.row.gtr-50.gtr-uniform{margin-top:-15px}.row.gtr-50.gtr-uniform>*{padding-top:15px}.row{margin-top:-30px;margin-left:-30px}.row>*{padding:30px 0 0 30px}.row.gtr-uniform{margin-top:-30px}.row.gtr-uniform>*{padding-top:30px}.row.gtr-150{margin-top:-45px;margin-left:-45px}.row.gtr-150>*{padding:45px 0 0 45px}.row.gtr-150.gtr-uniform{margin-top:-45px}.row.gtr-150.gtr-uniform>*{padding-top:45px}.row.gtr-200{margin-top:-60px;margin-left:-60px}.row.gtr-200>*{padding:60px 0 0 60px}.row.gtr-200.gtr-uniform{margin-top:-60px}.row.gtr-200.gtr-uniform>*{padding-top:60px}}@media screen and (max-width: 736px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobile{order:-1}.row>.col-1-mobile{width:8.33333333%}.row>.off-1-mobile{margin-left:8.33333333%}.row>.col-2-mobile{width:16.66666667%}.row>.off-2-mobile{margin-left:16.66666667%}.row>.col-3-mobile{width:25%}.row>.off-3-mobile{margin-left:25%}.row>.col-4-mobile{width:33.33333333%}.row>.off-4-mobile{margin-left:33.33333333%}.row>.col-5-mobile{width:41.66666667%}.row>.off-5-mobile{margin-left:41.66666667%}.row>.col-6-mobile{width:50%}.row>.off-6-mobile{margin-left:50%}.row>.col-7-mobile{width:58.33333333%}.row>.off-7-mobile{margin-left:58.33333333%}.row>.col-8-mobile{width:66.66666667%}.row>.off-8-mobile{margin-left:66.66666667%}.row>.col-9-mobile{width:75%}.row>.off-9-mobile{margin-left:75%}.row>.col-10-mobile{width:83.33333333%}.row>.off-10-mobile{margin-left:83.33333333%}.row>.col-11-mobile{width:91.66666667%}.row>.off-11-mobile{margin-left:91.66666667%}.row>.col-12-mobile{width:100%}.row>.off-12-mobile{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}@media screen and (max-width: 480px){.row{display:flex;flex-wrap:wrap;box-sizing:border-box;align-items:stretch}.row>*{box-sizing:border-box}.row.gtr-uniform>*>:last-child{margin-bottom:0}.row.aln-left{justify-content:flex-start}.row.aln-center{justify-content:center}.row.aln-right{justify-content:flex-end}.row.aln-top{align-items:flex-start}.row.aln-middle{align-items:center}.row.aln-bottom{align-items:flex-end}.row>.imp-mobilep{order:-1}.row>.col-1-mobilep{width:8.33333333%}.row>.off-1-mobilep{margin-left:8.33333333%}.row>.col-2-mobilep{width:16.66666667%}.row>.off-2-mobilep{margin-left:16.66666667%}.row>.col-3-mobilep{width:25%}.row>.off-3-mobilep{margin-left:25%}.row>.col-4-mobilep{width:33.33333333%}.row>.off-4-mobilep{margin-left:33.33333333%}.row>.col-5-mobilep{width:41.66666667%}.row>.off-5-mobilep{margin-left:41.66666667%}.row>.col-6-mobilep{width:50%}.row>.off-6-mobilep{margin-left:50%}.row>.col-7-mobilep{width:58.33333333%}.row>.off-7-mobilep{margin-left:58.33333333%}.row>.col-8-mobilep{width:66.66666667%}.row>.off-8-mobilep{margin-left:66.66666667%}.row>.col-9-mobilep{width:75%}.row>.off-9-mobilep{margin-left:75%}.row>.col-10-mobilep{width:83.33333333%}.row>.off-10-mobilep{margin-left:83.33333333%}.row>.col-11-mobilep{width:91.66666667%}.row>.off-11-mobilep{margin-left:91.66666667%}.row>.col-12-mobilep{width:100%}.row>.off-12-mobilep{margin-left:100%}.row.gtr-0{margin-top:0px;margin-left:0px}.row.gtr-0>*{padding:0px 0 0 0px}.row.gtr-0.gtr-uniform{margin-top:0px}.row.gtr-0.gtr-uniform>*{padding-top:0px}.row.gtr-25{margin-top:-5px;margin-left:-5px}.row.gtr-25>*{padding:5px 0 0 5px}.row.gtr-25.gtr-uniform{margin-top:-5px}.row.gtr-25.gtr-uniform>*{padding-top:5px}.row.gtr-50{margin-top:-10px;margin-left:-10px}.row.gtr-50>*{padding:10px 0 0 10px}.row.gtr-50.gtr-uniform{margin-top:-10px}.row.gtr-50.gtr-uniform>*{padding-top:10px}.row{margin-top:-20px;margin-left:-20px}.row>*{padding:20px 0 0 20px}.row.gtr-uniform{margin-top:-20px}.row.gtr-uniform>*{padding-top:20px}.row.gtr-150{margin-top:-30px;margin-left:-30px}.row.gtr-150>*{padding:30px 0 0 30px}.row.gtr-150.gtr-uniform{margin-top:-30px}.row.gtr-150.gtr-uniform>*{padding-top:30px}.row.gtr-200{margin-top:-40px;margin-left:-40px}.row.gtr-200>*{padding:40px 0 0 40px}.row.gtr-200.gtr-uniform{margin-top:-40px}.row.gtr-200.gtr-uniform>*{padding-top:40px}}section.special,article.special{text-align:center}header p{color:#999;font-size:1.25em;position:relative;margin-top:-1.25em;margin-bottom:0.25em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:2.25em}header.major p{position:relative;border-top:solid 1px #e0e0e0;padding:1em 0 0 0;margin:0;top:-1em;font-size:1.5em;letter-spacing:-0.025em}footer{margin:0 0 3em 0}footer>:last-child{margin-bottom:0}footer.major{padding-top:3em}input[type="text"],input[type="password"],input[type="email"],textarea{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:border-color 0.2s ease-in-out;-webkit-transition:border-color 0.2s ease-in-out;-ms-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out;background:#fff;border:solid 1px #e0e0e0;border-radius:5px;color:inherit;display:block;outline:0;padding:0.75em;text-decoration:none;width:100%}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,textarea:focus{border-color:#37c0fb}input[type="text"],input[type="password"],input[type="email"]{line-height:1em}label{display:block;color:inherit;font-weight:600;line-height:1.75em;margin-bottom:0.5em}::-webkit-input-placeholder{color:#999;position:relative;top:3px}:-moz-placeholder{color:#999}::-moz-placeholder{color:#999}:-ms-input-placeholder{color:#999}.image{border:0;display:inline-block;position:relative;border-radius:5px}.image img{display:block;border-radius:5px}.image.left{display:block;float:left;margin:0 2em 2em 0;position:relative;top:0.25em}.image.left img{display:block;width:100%}.image.fit{display:block}.image.fit img{display:block;width:100%}.image.featured{display:block;margin:0 0 2em 0}.image.featured img{display:block;width:100%}.icon{text-decoration:none;position:relative;text-decoration:none}.icon:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:400}.icon>.label{display:none}.icon:before{line-height:inherit}.icon.solid:before{font-weight:900}.icon.brands:before{font-family:'Font Awesome 5 Brands'}.icon.major{text-align:center;cursor:default;background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff;border-radius:100%;display:inline-block;width:5em;height:5em;line-height:5em;box-shadow:0 0 0 7px white,0 0 0 8px #e0e0e0;margin:0 0 2em 0}.icon.major:before{font-size:36px}ol{list-style:decimal;padding-left:1.25em}ol li{padding-left:0.25em}ul{list-style:disc;padding-left:1em}ul li{padding-left:0.5em}ul.tags{list-style:none;font-size:1rem;display:flex;padding-left:0;margin-left:-8px}ul.links{list-style:none;padding-left:0}ul.links li{line-height:2.5em;padding-left:0}ul.icons{cursor:default;list-style:none;padding-left:0}ul.icons li{display:inline-block;line-height:1em;padding-left:1.5em}ul.icons li:first-child{padding-left:0}ul.icons li a,ul.icons li span{font-size:2em;border:0}ul.menu{list-style:none;padding-left:0}ul.menu li{border-left:solid 1px #e0e0e0;display:inline-block;padding:0 0 0 1em;margin:0 0 0 1em}ul.menu li:first-child{border-left:0;margin-left:0;padding-left:0}ul.actions{display:-moz-flex;display:-webkit-flex;display:-ms-flex;display:flex;cursor:default;list-style:none;margin-left:-1em;padding-left:0}ul.actions li{padding:0 0 0 1em;vertical-align:middle}ul.actions.special{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}ul.actions.special li:first-child{padding-left:0}ul.actions.stacked{-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0}ul.actions.stacked li{padding:1.25em 0 0 0}ul.actions.stacked li:first-child{padding-top:0}ul.actions.fit{width:calc(100% + 1em)}ul.actions.fit li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;width:100%}ul.actions.fit li>*{width:100%}ul.actions.fit.stacked{width:100%}@media screen and (max-width: 736px){ul.actions:not(.fixed){-moz-flex-direction:column;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;margin-left:0;width:100% !important}ul.actions:not(.fixed) li{-moz-flex-grow:1;-webkit-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-moz-flex-shrink:1;-webkit-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1;padding:1em 0 0 0;text-align:center;width:100%}ul.actions:not(.fixed) li>*{width:100%}ul.actions:not(.fixed) li:first-child{padding-top:0}ul.actions:not(.fixed) li input[type="submit"],ul.actions:not(.fixed) li input[type="reset"],ul.actions:not(.fixed) li input[type="button"],ul.actions:not(.fixed) li button,ul.actions:not(.fixed) li .button{width:100%}ul.actions:not(.fixed) li input[type="submit"].icon:before,ul.actions:not(.fixed) li input[type="reset"].icon:before,ul.actions:not(.fixed) li input[type="button"].icon:before,ul.actions:not(.fixed) li button.icon:before,ul.actions:not(.fixed) li .button.icon:before{margin-left:-0.5em}}table{width:100%}table.default{width:100%}table.default tbody tr{border-bottom:solid 1px #e0e0e0}table.default td{padding:0.5em 1em 0.5em 1em}table.default th{font-weight:600;padding:0.5em 1em 0.5em 1em;text-align:left}table.default thead{background-color:#555555;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}input[type="submit"],input[type="reset"],input[type="button"],button,.button{-moz-appearance:none;-webkit-appearance:none;-ms-appearance:none;appearance:none;-moz-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-webkit-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;-ms-transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;transition:background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-color:#37c0fb;border-radius:5px;border:0;color:#fff;cursor:pointer;display:inline-block;padding:0 1.5em;line-height:2.75em;min-width:9em;text-align:center;text-decoration:none;font-weight:600;letter-spacing:-0.025em}input[type="submit"]:hover,input[type="reset"]:hover,input[type="button"]:hover,button:hover,.button:hover{background-color:#50c8fc;color:#fff !important}input[type="submit"]:active,input[type="reset"]:active,input[type="button"]:active,button:active,.button:active{background-color:#1eb8fb;color:#fff}input[type="submit"].alt,input[type="reset"].alt,input[type="button"].alt,button.alt,.button.alt{background-color:#555555;color:#fff}input[type="submit"].alt:hover,input[type="reset"].alt:hover,input[type="button"].alt:hover,button.alt:hover,.button.alt:hover{background-color:#626262}input[type="submit"].alt:active,input[type="reset"].alt:active,input[type="button"].alt:active,button.alt:active,.button.alt:active{background-color:#484848}input[type="submit"].icon:before,input[type="reset"].icon:before,input[type="button"].icon:before,button.icon:before,.button.icon:before{margin-right:0.5em}input[type="submit"].fit,input[type="reset"].fit,input[type="button"].fit,button.fit,.button.fit{width:100%}input[type="submit"].small,input[type="reset"].small,input[type="button"].small,button.small,.button.small{font-size:0.8em}.box.highlight{text-align:center}.box.post{position:relative;margin:0 0 2em 0}.box.post:after{content:'';display:block;clear:both}.box.post .inner{margin-left:calc(30% + 2em)}.box.post .inner>:last-child{margin-bottom:0}.box.post .image{width:30%;margin:0}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-image:url("images/bg02.png"),url("images/bg02.png"),url("images/bg01.png");background-position:top left, top left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:1.5em;letter-spacing:-0.025em;border:0}#nav{cursor:default;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");padding:0}#nav:after{content:'';display:block;width:100%;height:0.75em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul{margin:0}#nav>ul>li{position:relative;display:inline-block;margin-left:1em}#nav>ul>li a{color:#c0c0c0;text-decoration:none;border:0;display:block;padding:1.5em 0.5em 1.35em 0.5em}#nav>ul>li:first-child{margin-left:0}#nav>ul>li:hover a{color:#fff}#nav>ul>li.current{font-weight:600}#nav>ul>li.current:before{-moz-transform:rotateZ(45deg);-webkit-transform:rotateZ(45deg);-ms-transform:rotateZ(45deg);transform:rotateZ(45deg);width:0.75em;height:0.75em;content:'';display:block;position:absolute;bottom:-0.5em;left:50%;margin-left:-0.375em;background-color:#37c0fb;background-image:url("images/bg01.png")}#nav>ul>li.current a{color:#fff}#nav>ul>li.active a{color:#fff}#nav>ul>li.active.current:before{opacity:0}#nav>ul>li>ul{display:none}.dropotron{background-image:-moz-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0.3), rgba(0,0,0,0)),url("images/bg01.png");background-color:#333;border-radius:5px;color:#fff;min-width:10em;padding:1em 0;text-align:center;box-shadow:0 1em 1em 0 rgba(0,0,0,0.5);list-style:none}.dropotron>li{line-height:2em;padding:0 1.1em 0 1em}.dropotron>li>a{color:#c0c0c0;text-decoration:none;border:0}.dropotron>li.active>a,.dropotron>li:hover>a{color:#fff}.dropotron.level-0{border-radius:0 0 5px 5px;font-size:0.9em;padding-top:0;margin-top:-1px}#banner{background-image:url(images/accueil.jpg);background-position:center center;background-size:cover;height:28em;text-align:center;position:relative}#banner header{position:absolute;bottom:0;left:0;width:100%;background:#212121;background:rgba(27,27,27,0.75);color:#fff;padding:1.5em 0}#banner header h2{display:inline-block;margin:0;font-size:1.25em;vertical-align:middle}#banner header h2 em{opacity:0.75}#banner header h2 a{border-bottom-color:rgba(255,255,255,0.5)}#banner header h2 a:hover{border-bottom-color:transparent}#banner header .button{vertical-align:middle;margin-left:1em}.wrapper{padding:5em 0 3em 0}.wrapper.style1{background:#fff}.wrapper.style2{background-color:#fff;background-image:url("images/bg02.png"),url("images/bg03.png"),url("images/bg01.png");background-position:top left, bottom left, top left;background-size:100% 6em, 100% 6em, auto;background-repeat:no-repeat, no-repeat, repeat}.wrapper.style3{background-color:#37c0fb;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.15)),url("images/bg01.png");color:#fff}.wrapper.style3 .button{background:#fff;color:#474747}.wrapper.style3 .button:hover{color:#37c0fb !important}#cta{text-align:center;padding:3.5em 0}#cta header h2{display:inline-block;vertical-align:middle;margin:0}#cta header .button{vertical-align:middle;margin-left:1em}#footer{padding:4em 0 8em 0}#footer a{color:inherit;border-bottom-color:rgba(71,71,71,0.25)}#footer a:hover{color:#37c0fb;border-bottom-color:transparent}#footer .container{margin-bottom:4em}#footer .icons{text-align:center;margin:0}#footer .icons a{color:#999}#footer .icons a:hover{color:#474747}#footer .copyright{color:#999;margin-top:1.5em;text-align:center;font-size:0.9em}@media screen and (max-width: 1680px){body,input,select,textarea{font-size:14pt;line-height:1.5em}#banner{height:24em}}@media screen and (max-width: 1280px){body,input,select,textarea{font-size:13pt;line-height:1.5em}ol{padding-left:1.25em}ol li{padding-left:0.25em}ul.icons li a,ul.icons li span{font-size:1.5em}#header{padding:2em 0 0 0}#header h1{padding:0 0 1.75em 0}#banner{height:20em}.wrapper{padding:3em 0 1em 0}#cta{padding:2em 0}#footer{padding:3em 0 3em 0}#footer .container{margin-bottom:1em}}@media screen and (max-width: 980px){body,input,select,textarea{font-size:12pt;line-height:1.5em}}#navPanel,#titleBar{display:none}@media screen and (max-width: 840px){html,body{overflow-x:hidden}body,input,select,textarea{font-size:13pt}h1,h2,h3,h4,h5,h6{margin-bottom:0.5em}header p{margin-top:-0.75em}header.major{text-align:center;margin:0 0 2em 0}header.major h2{font-size:1.75em}header.major p{top:-0.25em;font-size:1.25em}.box.highlight{text-align:left;position:relative;padding-left:7em}.box.highlight i{position:absolute;margin:0;left:0;top:0.25em}.box.post .inner{margin-left:calc(20% + 2em)}.box.post .image{width:20%}#header{display:none}#banner{height:20em}#banner header h2{display:block}#banner header .button{margin:1em 0 0 0}#cta{padding:1.5em 0}#cta header h2{display:block}#cta header .button{margin:1em 0 0 0}#footer{text-align:center}#footer .container{margin-bottom:4em}#footer form .actions{-moz-justify-content:center;-webkit-justify-content:center;-ms-justify-content:center;justify-content:center;width:100%;margin-left:0}#footer form .actions li:first-child{padding-left:0}#page-wrapper{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;padding-bottom:1px;padding-top:44px}#titleBar{-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:44px;left:0;position:fixed;top:0;width:100%;z-index:10001;background-color:#333;background-image:-moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:-ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");background-image:linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.3)),url("images/bg01.png");height:44px;line-height:44px;box-shadow:0 4px 0 0 #37c0fb}#titleBar .title{display:block;position:relative;font-weight:600;text-align:center;color:#fff;z-index:1}#titleBar .title em{font-style:normal;font-weight:300}#titleBar .toggle{text-decoration:none;border:0;height:60px;left:0;position:absolute;top:0;width:80px;z-index:2}#titleBar .toggle:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;text-transform:none !important;font-family:'Font Awesome 5 Free';font-weight:900}#titleBar .toggle:before{content:'\f0c9';display:block;height:44px;line-height:inherit;text-align:center;width:44px;color:#fff;opacity:0.5}#titleBar .toggle:active:before{opacity:0.75}#navPanel{background-color:#1f1f1f;box-shadow:inset -1px 0 3px 0 rgba(0,0,0,0.5);background-image:-moz-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-webkit-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:-ms-linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");background-image:linear-gradient(left, rgba(0,0,0,0) 75%, rgba(0,0,0,0.15)),url("images/bg01.png");-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-moz-transform:translateX(-275px);-webkit-transform:translateX(-275px);-ms-transform:translateX(-275px);transform:translateX(-275px);-moz-transition:-moz-transform .5s ease;-webkit-transition:-webkit-transform .5s ease;-ms-transition:-ms-transform .5s ease;transition:transform .5s ease;display:block;height:100%;left:0;overflow-y:auto;position:fixed;top:0;width:275px;z-index:10002}#navPanel .link{border-bottom:0;border-top:solid 1px rgba(255,255,255,0.05);color:#888;display:block;height:48px;line-height:48px;padding:0 1em 0 1em;text-decoration:none}#navPanel .link:first-child{border-top:0}#navPanel .link.depth-0{color:#fff}#navPanel .link .indent-1{display:inline-block;width:1em}#navPanel .link .indent-2{display:inline-block;width:2em}#navPanel .link .indent-3{display:inline-block;width:3em}#navPanel .link .indent-4{display:inline-block;width:4em}#navPanel .link .indent-5{display:inline-block;width:5em}body.navPanel-visible #page-wrapper{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #titleBar{-moz-transform:translateX(275px);-webkit-transform:translateX(275px);-ms-transform:translateX(275px);transform:translateX(275px)}body.navPanel-visible #navPanel{-moz-transform:translateX(0);-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}}@media screen and (max-width: 736px){body,input,select,textarea{font-size:11pt;line-height:1.35em}h2{font-size:1.25em;letter-spacing:0;line-height:1.35em}h3{font-size:1em;letter-spacing:0;line-height:1.35em}header p{margin-top:-0.5em;font-size:1em}header.major{padding:0 20px}header.major h2{font-size:1.25em}header.major p{top:0;margin-top:1.25em;font-size:1em}ul.menu li{border:0;padding:0;margin:0;display:block;line-height:2em}#banner{height:18em}.wrapper{padding:2em 0 1px 0}}@media screen and (max-width: 480px){.icon.major{width:4em;height:4em;line-height:4em;box-shadow:0 0 0 7px white, 0 0 0 8px #e0e0e0}.icon.major:before{font-size:24px}input[type="submit"],input[type="reset"],input[type="button"],button,.button{width:100%;display:block}.box.highlight{padding-left:calc(4em + 30px)}.box.post .inner{margin-left:calc(30% + 20px)}.box.post .image{width:30%}#banner{height:20em}#banner header{padding:20px}.wrapper{padding:2em 20px 1px 20px}#cta{padding:20px}#footer{padding:2em 20px;text-align:left}}.alert{position:relative;text-align:left;padding:10px 15px;min-height:30px;margin:1em 0 0;border:none;border-left:3px solid}.alert p{margin:1.5em 0 0}.alert p:first-child{margin:0}.alert:not(.no-icon){padding-left:55px}.alert:not(.no-icon):before{position:absolute;top:10px;left:15px;font-family:'FontAwesome';font-size:2.5rem}.alert.info{border-color:#349ef3;background-color:#e6f3fe}.alert.info:not(.no-icon):before{content:"\f05a";color:#349ef3}.alert.success{border-color:#4dc657;background-color:#effaf0;content:"\f058"}.alert.success:not(.no-icon):before{content:"\f058";color:#4dc657}.alert.warning{border-color:#f5aa0a;background-color:#fdf1d8}.alert.warning:not(.no-icon):before{content:"\f071";color:#f5aa0a}.alert.danger{border-color:#f5311d;background-color:#feecea}.alert.danger:not(.no-icon):before{content:"\f05e";color:#f5311d}#header{text-align:center;padding:3em 0 0 0;background-color:#fff;background-origin:border-box;background-image:url("images/logo.svg");background-position:bottom 85% left 10%;background-size:8em;background-repeat:no-repeat}#header .short_text{display:none}#header h1{padding:0 0 2.75em 0;margin:0}#header h1 a{font-size:2.25em;letter-spacing:-0.05em;line-height:1.2;border:0}table{width:100%;background:transparent;border-collapse:collapse;border-spacing:0;text-align:left}table th{padding:5px 10px;font-weight:bold;border-bottom:2px solid #909ba2}table td{padding:5px 10px}table tr:nth-child(2n){background:#f7f8f8}@media screen and (max-width: 736px){#banner{height:10em}}@media screen and (max-width: 480px){#banner{height:10em}#banner header{display:none}}
+
+/*# sourceMappingURL=style.css.map */
\ No newline at end of file
diff --git a/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.json b/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.json
new file mode 100644
index 0000000..8d03ad7
--- /dev/null
+++ b/resources/_gen/assets/scss/sass/main.scss_e95820d474fe7cf9c38afe1151187c97.json
@@ -0,0 +1 @@
+{"Target":"style.css","MediaType":"text/css","Data":{}}
\ No newline at end of file
diff --git a/static/images/1000004912.jpg b/static/images/1000004912.jpg
new file mode 100644
index 0000000..c1b820c
Binary files /dev/null and b/static/images/1000004912.jpg differ
diff --git a/static/images/18 vélos réparés.jpg b/static/images/18 vélos réparés.jpg
new file mode 100644
index 0000000..7095e6d
Binary files /dev/null and b/static/images/18 vélos réparés.jpg differ
diff --git a/static/images/20240922_153621.jpg b/static/images/20240922_153621.jpg
new file mode 100644
index 0000000..b03c713
Binary files /dev/null and b/static/images/20240922_153621.jpg differ
diff --git a/static/images/Aucard de Tours 01 juin.docx b/static/images/Aucard de Tours 01 juin.docx
new file mode 100644
index 0000000..92214b8
Binary files /dev/null and b/static/images/Aucard de Tours 01 juin.docx differ
diff --git a/static/images/Aucard vélo dans un arbre.jpg b/static/images/Aucard vélo dans un arbre.jpg
new file mode 100644
index 0000000..75f4c2a
Binary files /dev/null and b/static/images/Aucard vélo dans un arbre.jpg differ
diff --git a/static/images/Bill anniversaire.jpg b/static/images/Bill anniversaire.jpg
new file mode 100644
index 0000000..af62bad
Binary files /dev/null and b/static/images/Bill anniversaire.jpg differ
diff --git a/static/images/Bill en cours.xcf b/static/images/Bill en cours.xcf
new file mode 100644
index 0000000..91694dd
Binary files /dev/null and b/static/images/Bill en cours.xcf differ
diff --git a/static/images/Bill.png b/static/images/Bill.png
new file mode 100644
index 0000000..6847cac
Binary files /dev/null and b/static/images/Bill.png differ
diff --git a/static/images/Bill.svg b/static/images/Bill.svg
new file mode 100644
index 0000000..eaa1b97
--- /dev/null
+++ b/static/images/Bill.svg
@@ -0,0 +1,4433 @@
+
+
+
+
diff --git a/static/images/Bill.xcf b/static/images/Bill.xcf
new file mode 100644
index 0000000..42b3c7b
Binary files /dev/null and b/static/images/Bill.xcf differ
diff --git a/static/images/Campus en fête.jpg b/static/images/Campus en fête.jpg
new file mode 100644
index 0000000..78d24a7
Binary files /dev/null and b/static/images/Campus en fête.jpg differ
diff --git a/static/images/Discours 18_10.odt b/static/images/Discours 18_10.odt
new file mode 100755
index 0000000..d49fcbb
Binary files /dev/null and b/static/images/Discours 18_10.odt differ
diff --git a/static/images/Défi dales.jpg b/static/images/Défi dales.jpg
new file mode 100644
index 0000000..bfd23d5
Binary files /dev/null and b/static/images/Défi dales.jpg differ
diff --git a/static/images/Fanzine_La_Mécana.pdf b/static/images/Fanzine_La_Mécana.pdf
new file mode 100644
index 0000000..a823994
Binary files /dev/null and b/static/images/Fanzine_La_Mécana.pdf differ
diff --git a/static/images/Fête du vélo à la riche.jpg b/static/images/Fête du vélo à la riche.jpg
new file mode 100644
index 0000000..545fd5e
Binary files /dev/null and b/static/images/Fête du vélo à la riche.jpg differ
diff --git a/static/images/IMG_20240604_195615.jpg b/static/images/IMG_20240604_195615.jpg
new file mode 100644
index 0000000..9cb1516
Binary files /dev/null and b/static/images/IMG_20240604_195615.jpg differ
diff --git a/static/images/Marseille tall bike.jpg b/static/images/Marseille tall bike.jpg
new file mode 100644
index 0000000..5b5e199
Binary files /dev/null and b/static/images/Marseille tall bike.jpg differ
diff --git a/static/images/MessageVélo.jpg b/static/images/MessageVélo.jpg
new file mode 100644
index 0000000..51ba7b0
Binary files /dev/null and b/static/images/MessageVélo.jpg differ
diff --git a/static/images/MessageVélo.svg b/static/images/MessageVélo.svg
new file mode 100644
index 0000000..eda845f
--- /dev/null
+++ b/static/images/MessageVélo.svg
@@ -0,0 +1,191 @@
+
+
+
+
diff --git a/static/images/Oxford.jpeg b/static/images/Oxford.jpeg
new file mode 100644
index 0000000..3f3336e
Binary files /dev/null and b/static/images/Oxford.jpeg differ
diff --git a/static/images/Projet Glaire Witch.jpg b/static/images/Projet Glaire Witch.jpg
new file mode 100644
index 0000000..8c1fb88
Binary files /dev/null and b/static/images/Projet Glaire Witch.jpg differ
diff --git a/static/images/Stand Aucard 2.jpg b/static/images/Stand Aucard 2.jpg
new file mode 100644
index 0000000..4bc1390
Binary files /dev/null and b/static/images/Stand Aucard 2.jpg differ
diff --git a/static/images/Stand Aucard.jpg b/static/images/Stand Aucard.jpg
new file mode 100644
index 0000000..fa946a1
Binary files /dev/null and b/static/images/Stand Aucard.jpg differ
diff --git a/static/images/Stand aucard vide.jpg b/static/images/Stand aucard vide.jpg
new file mode 100644
index 0000000..ab1f00c
Binary files /dev/null and b/static/images/Stand aucard vide.jpg differ
diff --git a/static/images/TallBike.jpg b/static/images/TallBike.jpg
new file mode 100644
index 0000000..8579aef
Binary files /dev/null and b/static/images/TallBike.jpg differ
diff --git a/static/images/accueil.jpg b/static/images/accueil.jpg
new file mode 100644
index 0000000..10607a7
Binary files /dev/null and b/static/images/accueil.jpg differ
diff --git a/static/images/avendre/IMG_20231203_142852.jpg b/static/images/avendre/IMG_20231203_142852.jpg
new file mode 100644
index 0000000..350626c
Binary files /dev/null and b/static/images/avendre/IMG_20231203_142852.jpg differ
diff --git a/static/images/avendre/IMG_20231203_143114.jpg b/static/images/avendre/IMG_20231203_143114.jpg
new file mode 100644
index 0000000..8fb489f
Binary files /dev/null and b/static/images/avendre/IMG_20231203_143114.jpg differ
diff --git a/static/images/avendre/IMG_20231203_143851.jpg b/static/images/avendre/IMG_20231203_143851.jpg
new file mode 100644
index 0000000..bf432d8
Binary files /dev/null and b/static/images/avendre/IMG_20231203_143851.jpg differ
diff --git a/static/images/avendre/IMG_20231203_144233.jpg b/static/images/avendre/IMG_20231203_144233.jpg
new file mode 100644
index 0000000..03073ba
Binary files /dev/null and b/static/images/avendre/IMG_20231203_144233.jpg differ
diff --git a/static/images/avendre/IMG_20231203_144517.jpg b/static/images/avendre/IMG_20231203_144517.jpg
new file mode 100644
index 0000000..230dc5c
Binary files /dev/null and b/static/images/avendre/IMG_20231203_144517.jpg differ
diff --git a/static/images/avendre/IMG_20231203_144828.jpg b/static/images/avendre/IMG_20231203_144828.jpg
new file mode 100644
index 0000000..957d4cc
Binary files /dev/null and b/static/images/avendre/IMG_20231203_144828.jpg differ
diff --git a/static/images/avendre/IMG_20231203_150033.jpg b/static/images/avendre/IMG_20231203_150033.jpg
new file mode 100644
index 0000000..57e242c
Binary files /dev/null and b/static/images/avendre/IMG_20231203_150033.jpg differ
diff --git a/static/images/avendre/IMG_20240114_162730.jpg b/static/images/avendre/IMG_20240114_162730.jpg
new file mode 100644
index 0000000..e7eb39d
Binary files /dev/null and b/static/images/avendre/IMG_20240114_162730.jpg differ
diff --git a/static/images/avendre/IMG_20240114_164249.jpg b/static/images/avendre/IMG_20240114_164249.jpg
new file mode 100644
index 0000000..38ab089
Binary files /dev/null and b/static/images/avendre/IMG_20240114_164249.jpg differ
diff --git a/static/images/avendre/IMG_20240114_164546.jpg b/static/images/avendre/IMG_20240114_164546.jpg
new file mode 100644
index 0000000..dddc1ad
Binary files /dev/null and b/static/images/avendre/IMG_20240114_164546.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_142852.jpg b/static/images/avendre/old/IMG_20231203_142852.jpg
new file mode 100755
index 0000000..b97b69c
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_142852.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_143114.jpg b/static/images/avendre/old/IMG_20231203_143114.jpg
new file mode 100755
index 0000000..8c427e3
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_143114.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_143851.jpg b/static/images/avendre/old/IMG_20231203_143851.jpg
new file mode 100755
index 0000000..d1593d6
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_143851.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_144233.jpg b/static/images/avendre/old/IMG_20231203_144233.jpg
new file mode 100755
index 0000000..0c523dd
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_144233.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_144517.jpg b/static/images/avendre/old/IMG_20231203_144517.jpg
new file mode 100755
index 0000000..a931730
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_144517.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_144828.jpg b/static/images/avendre/old/IMG_20231203_144828.jpg
new file mode 100755
index 0000000..ad498d3
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_144828.jpg differ
diff --git a/static/images/avendre/old/IMG_20231203_150033.jpg b/static/images/avendre/old/IMG_20231203_150033.jpg
new file mode 100755
index 0000000..5e8225a
Binary files /dev/null and b/static/images/avendre/old/IMG_20231203_150033.jpg differ
diff --git a/static/images/bandeau.png b/static/images/bandeau.png
new file mode 100644
index 0000000..b988a2c
Binary files /dev/null and b/static/images/bandeau.png differ
diff --git a/static/images/bandeau.svg b/static/images/bandeau.svg
new file mode 100644
index 0000000..73c1a5d
--- /dev/null
+++ b/static/images/bandeau.svg
@@ -0,0 +1,1325 @@
+
+
+
+
diff --git a/static/images/bill.jpg b/static/images/bill.jpg
new file mode 100644
index 0000000..0752ffc
Binary files /dev/null and b/static/images/bill.jpg differ
diff --git a/static/images/bill_portrait.png b/static/images/bill_portrait.png
new file mode 100644
index 0000000..bcce55a
Binary files /dev/null and b/static/images/bill_portrait.png differ
diff --git a/static/images/demontage-cassette-shimano-10-22.jpg b/static/images/demontage-cassette-shimano-10-22.jpg
new file mode 100644
index 0000000..1ab328d
Binary files /dev/null and b/static/images/demontage-cassette-shimano-10-22.jpg differ
diff --git a/static/images/hommage_1910.png b/static/images/hommage_1910.png
new file mode 100644
index 0000000..69b7f38
Binary files /dev/null and b/static/images/hommage_1910.png differ
diff --git a/static/images/logo.png b/static/images/logo.png
new file mode 100644
index 0000000..e947c4d
Binary files /dev/null and b/static/images/logo.png differ
diff --git a/static/images/logo.svg b/static/images/logo.svg
new file mode 100644
index 0000000..ba131c6
--- /dev/null
+++ b/static/images/logo.svg
@@ -0,0 +1,587 @@
+
+
+
+
diff --git a/static/images/permanence.jpg b/static/images/permanence.jpg
new file mode 100644
index 0000000..a2cb7af
Binary files /dev/null and b/static/images/permanence.jpg differ
diff --git a/static/images/rassemblement.jpg b/static/images/rassemblement.jpg
new file mode 100755
index 0000000..be21347
Binary files /dev/null and b/static/images/rassemblement.jpg differ
diff --git a/static/images/rassemblement2.jpg b/static/images/rassemblement2.jpg
new file mode 100755
index 0000000..a600b90
Binary files /dev/null and b/static/images/rassemblement2.jpg differ
diff --git a/static/images/recup.jpg b/static/images/recup.jpg
new file mode 100644
index 0000000..1115d37
Binary files /dev/null and b/static/images/recup.jpg differ
diff --git a/static/images/sexy_velo.jpg b/static/images/sexy_velo.jpg
new file mode 100644
index 0000000..d930589
Binary files /dev/null and b/static/images/sexy_velo.jpg differ
diff --git a/static/images/thumbnail_IMG_2530.jpg b/static/images/thumbnail_IMG_2530.jpg
new file mode 100644
index 0000000..0dcd059
Binary files /dev/null and b/static/images/thumbnail_IMG_2530.jpg differ
diff --git a/static/images/velorution_banniere.jpg b/static/images/velorution_banniere.jpg
new file mode 100644
index 0000000..287d361
Binary files /dev/null and b/static/images/velorution_banniere.jpg differ