From d58a12059be8f738538df1ab65f5a6af30af1e79 Mon Sep 17 00:00:00 2001 From: Lucas Date: Fri, 7 Nov 2025 17:39:30 +0000 Subject: [PATCH] Initial commit --- .gitignore | 0 Caddyfile | 4 + README.md | 45 + docker-compose.yml | 14 + html/.htaccess | 2 + html/css/.htaccess | 10 + html/css/index.css | 1 + html/css/master_a-gabarit.css | 1 + html/css/site_global.css | 1 + html/ibe_log.xml | 15 + html/images/.htaccess | 10 + html/images/hachures.svg | 405 +++ html/images/logo_bes_blanc-02-02.svg | 243 ++ html/images/logo_bes_blanc-02-02_poster_.png | Bin 0 -> 13658 bytes html/index.html | 145 + html/muse_manifest.xml | 2360 ++++++++++++++++ html/scripts/.htaccess | 10 + html/scripts/html5shiv.js | 8 + html/scripts/jquery-1.8.3.min.js | 2 + html/scripts/jquery.musemenu.js | 15 + html/scripts/jquery.museoverlay.js | 20 + html/scripts/jquery.musepolyfill.bgsize.js | 13 + html/scripts/jquery.scrolleffects.js | 61 + html/scripts/jquery.watch.js | 35 + html/scripts/museconfig.js | 5 + html/scripts/museutils.js | 121 + html/scripts/musewpslideshow.js | 70 + html/scripts/require.js | 37 + html/scripts/touchswipe.js | 34 + html/scripts/webpro.js | 106 + html/scripts/whatinput.js | 4 + html/sitemap.xml | 2556 ++++++++++++++++++ 32 files changed, 6353 insertions(+) create mode 100644 .gitignore create mode 100644 Caddyfile create mode 100644 README.md create mode 100644 docker-compose.yml create mode 100644 html/.htaccess create mode 100644 html/css/.htaccess create mode 100644 html/css/index.css create mode 100644 html/css/master_a-gabarit.css create mode 100644 html/css/site_global.css create mode 100644 html/ibe_log.xml create mode 100644 html/images/.htaccess create mode 100644 html/images/hachures.svg create mode 100644 html/images/logo_bes_blanc-02-02.svg create mode 100644 html/images/logo_bes_blanc-02-02_poster_.png create mode 100644 html/index.html create mode 100644 html/muse_manifest.xml create mode 100644 html/scripts/.htaccess create mode 100644 html/scripts/html5shiv.js create mode 100644 html/scripts/jquery-1.8.3.min.js create mode 100644 html/scripts/jquery.musemenu.js create mode 100644 html/scripts/jquery.museoverlay.js create mode 100644 html/scripts/jquery.musepolyfill.bgsize.js create mode 100644 html/scripts/jquery.scrolleffects.js create mode 100644 html/scripts/jquery.watch.js create mode 100644 html/scripts/museconfig.js create mode 100644 html/scripts/museutils.js create mode 100644 html/scripts/musewpslideshow.js create mode 100644 html/scripts/require.js create mode 100644 html/scripts/touchswipe.js create mode 100644 html/scripts/webpro.js create mode 100644 html/scripts/whatinput.js create mode 100644 html/sitemap.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/Caddyfile b/Caddyfile new file mode 100644 index 0000000..461faec --- /dev/null +++ b/Caddyfile @@ -0,0 +1,4 @@ +:80 { + root * /srv + file_server +} \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..798f9c3 --- /dev/null +++ b/README.md @@ -0,0 +1,45 @@ +## Site web Caddy avec Docker Compose + +Un site web est un ensemble de pages web accessibles via Internet, généralement regroupées sous un même domaine. Ces pages peuvent contenir des informations sous forme de texte, images, vidéos, ou autres médias. https://caddyserver.com/ + +## Prérequis + +- Git, Docker & Docker Compose installés + +- Cette installation est faite pour fonctionner derrière un reverse-proxy. Exemple ici : https://gitea.lucasroyer.fr/server/reverse-proxy + +## Installation + +1. Clonez ce dépôt : +```bash +git clone https://gitea.lucasroyer.fr/server/gitea.git +cd gitea +``` +2. Modifiez app.env pour ajouter un mot de passe en remplaçant `mypassword` : +```bash +cp app.public.env app.env +nano app.env +``` + +```ini +GITEA__database__DB_TYPE=postgres +GITEA__database__HOST=db:5432 +GITEA__database__NAME=gitea +GITEA__database__USER=gitea +GITEA__database__PASSWD=mypassword #replace +``` +2. Modifiez db.env avec le même mot de passe : +```bash +cp db.public.env db.env +nano db.env +``` +```ini +POSTGRES_USER=gitea +POSTGRES_PASSWORD=mypassword #replace +POSTGRES_DB=gitea +``` +4. Lancez et surveillez les conteneurs : +```bash +sudo docker compose up -d +sudo docker compose logs -f +``` diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..ade5b53 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,14 @@ +services: + web: + image: caddy:latest + container_name: site-spationautes + restart: always + volumes: + - /home/lucas/site-spationautes/html:/srv # Dossier contenant les fichiers statiques + - /home/lucas/site-spationautes/Caddyfile:/etc/caddy/Caddyfile # Fichier de configuration de Caddy + networks: + - reverse-proxy + +networks: + reverse-proxy: + external: true diff --git a/html/.htaccess b/html/.htaccess new file mode 100644 index 0000000..cd4cd92 --- /dev/null +++ b/html/.htaccess @@ -0,0 +1,2 @@ +# Begin Muse Generated redirects +# End Muse Generated redirects diff --git a/html/css/.htaccess b/html/css/.htaccess new file mode 100644 index 0000000..6c31402 --- /dev/null +++ b/html/css/.htaccess @@ -0,0 +1,10 @@ +# Auto-generated Muse file. Edits made to this file will be overwritten. + + + Header set Cache-Control "max-age=2592000, public" + + + ExpiresActive On + ExpiresDefault "access plus 30 days" + + \ No newline at end of file diff --git a/html/css/index.css b/html/css/index.css new file mode 100644 index 0000000..1e15bce --- /dev/null +++ b/html/css/index.css @@ -0,0 +1 @@ +.version.index{color:#00000A;background-color:#D254E7;}#page{z-index:1;width:1000px;min-height:699px;background-image:none;border-width:0px;border-color:#000000;background-color:transparent;padding-bottom:112px;}#pu4549{z-index:2;width:0.01px;height:0px;padding-bottom:930px;margin-right:-10000px;margin-top:-3px;}#u4549{z-index:2;height:930px;}.js body{visibility:hidden;}.js body.initialized{visibility:visible;}#u4549-bw{z-index:2;position:fixed;left:0px;right:0px;top:-3px;}#u4529{z-index:3;height:930px;}#u4529-bw{z-index:3;position:fixed;left:0px;right:0px;top:-3px;}#u499{z-index:4;width:117px;position:fixed;top:17px;left:140px;}#u495{z-index:5;}#u585-6{z-index:6;width:138px;min-height:30px;position:fixed;top:150px;left:130px;}#u592{z-index:12;width:111px;height:1px;position:fixed;top:202px;left:143px;}#menuu595{z-index:13;width:123px;height:210px;position:fixed;top:216px;left:143px;}#u596{width:123px;position:relative;}#u597{width:122px;padding-bottom:14px;position:relative;margin-right:-10000px;}#u597:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u597:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u599-4{width:122px;min-height:17px;position:relative;margin-right:-10000px;top:7px;}#u597:hover #u599-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u597:active #u599-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u604{width:122px;padding-bottom:14px;position:relative;margin-right:-10000px;}#u597.MuseMenuActive,#u604:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u604:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u607-4{width:122px;min-height:17px;position:relative;margin-right:-10000px;top:7px;}#u597.MuseMenuActive #u599-4,#u604:hover #u607-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u604:active #u607-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u608{width:118px;left:122px;}#u609{width:118px;position:relative;}#u609:hover{width:118px;min-height:0px;margin:0px;}#u727{width:118px;padding-bottom:9px;position:relative;margin-right:-10000px;}#u727:hover{width:118px;min-height:0px;margin:0px -10000px 0px 0px;}#u731-4{width:114px;min-height:17px;padding-top:4px;position:relative;margin-right:-10000px;top:4px;left:2px;}#u727:hover #u731-4{padding-top:4px;padding-bottom:0px;min-height:16px;width:114px;margin:0px -10000px -1px 0px;}#u725,#u59209{width:118px;position:relative;}#u59219{width:118px;padding-bottom:21px;position:relative;margin-right:-10000px;}#u727.MuseMenuActive,#u59219:hover{width:118px;min-height:0px;margin:0px -10000px 0px 0px;}#u59222-4{width:114px;min-height:17px;padding-top:4px;position:relative;margin-right:-10000px;top:10px;left:2px;}#u59219:hover #u59222-4{padding-top:4px;padding-bottom:0px;min-height:16px;width:114px;margin:0px -10000px -1px 0px;}#u727.MuseMenuActive #u731-4,#u59219.MuseMenuActive #u59222-4{padding-top:4px;padding-bottom:0px;min-height:17px;width:114px;margin:0px -10000px 0px 0px;}#u59210{width:120px;left:118px;}#u65630{width:118px;padding-bottom:30px;position:relative;margin-right:-10000px;}#u59219.MuseMenuActive,#u65630:hover{width:118px;min-height:0px;margin:0px -10000px 0px 0px;}#u65630.MuseMenuActive{width:118px;min-height:0px;margin:0px -10000px 0px 0px;}#u65634-4{width:114px;min-height:13px;padding-top:4px;position:relative;margin-right:-10000px;top:15px;left:2px;}#u65630:hover #u65634-4{padding-top:4px;padding-bottom:0px;min-height:13px;width:114px;margin:0px -10000px 0px 0px;}#u65630.MuseMenuActive #u65634-4{padding-top:4px;padding-bottom:0px;min-height:13px;width:114px;margin:0px -10000px 0px 0px;}#u643{width:122px;padding-bottom:14px;position:relative;margin-right:-10000px;}#u604.MuseMenuActive,#u643:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u643:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u646-4{width:122px;min-height:17px;position:relative;margin-right:-10000px;top:7px;}#u604.MuseMenuActive #u607-4,#u643:hover #u646-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u643:active #u646-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u641{width:120px;left:122px;}#u59211,#u65628,#u642{width:120px;position:relative;}#u642:hover{width:120px;min-height:0px;margin:0px;}#u50378{width:120px;padding-bottom:7px;position:relative;margin-right:-10000px;}#u50378:hover{width:120px;min-height:0px;margin:0px -10000px 0px 0px;}#u50381-4{width:116px;min-height:21px;padding-top:4px;position:relative;margin-right:-10000px;top:3px;left:2px;}#u50378:hover #u50381-4{padding-top:4px;padding-bottom:0px;min-height:22px;width:116px;margin:0px -10000px -1px 0px;}#u50377,#u746{width:120px;position:relative;}#u748{width:120px;padding-bottom:7px;position:relative;margin-right:-10000px;}#u50378.MuseMenuActive,#u748:hover{width:120px;min-height:0px;margin:0px -10000px 0px 0px;}#u748.MuseMenuActive{width:120px;min-height:0px;margin:0px -10000px 0px 0px;}#u752-4{width:116px;min-height:21px;padding-top:4px;position:relative;margin-right:-10000px;top:3px;left:2px;}#u748:hover #u752-4{padding-top:4px;padding-bottom:0px;min-height:22px;width:116px;margin:0px -10000px -1px 0px;}#u50378.MuseMenuActive #u50381-4,#u748.MuseMenuActive #u752-4{padding-top:4px;padding-bottom:0px;min-height:21px;width:116px;margin:0px -10000px 0px 0px;}#u670{width:122px;padding-bottom:13px;position:relative;margin-right:-10000px;}#u643.MuseMenuActive,#u670:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u670:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u673-4{width:122px;min-height:34px;position:relative;margin-right:-10000px;top:6px;}#u670:hover #u673-4{padding-top:0px;padding-bottom:0px;min-height:33px;width:122px;margin:0px -10000px -1px 0px;}#u670:active #u673-4{padding-top:0px;padding-bottom:0px;min-height:33px;width:122px;margin:0px -10000px -1px 0px;}#u670.MuseMenuActive #u673-4{padding-top:0px;padding-bottom:0px;min-height:33px;width:122px;margin:0px -10000px -1px 0px;}#u60846{width:122px;padding-bottom:13px;position:relative;margin-right:-10000px;}#u670.MuseMenuActive,#u60846:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u60846:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u60848-4{width:122px;min-height:17px;position:relative;margin-right:-10000px;top:6px;}#u643.MuseMenuActive #u646-4,#u60846:hover #u60848-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u60846:active #u60848-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u60850{width:108px;left:122px;}#u60851{width:108px;position:relative;}#u60851:hover{width:108px;min-height:0px;margin:0px;}#u60851:active{width:108px;min-height:0px;margin:0px;}#u64979{width:108px;padding-bottom:26px;position:relative;margin-right:-10000px;}#u64979:hover{width:108px;min-height:0px;margin:0px -10000px 0px 0px;}#u64981-4{width:104px;min-height:21px;padding-top:4px;position:relative;margin-right:-10000px;top:13px;left:2px;}#u64979:hover #u64981-4{padding-top:4px;padding-bottom:0px;min-height:22px;width:104px;margin:0px -10000px -1px 0px;}#u64979.MuseMenuActive #u64981-4{padding-top:4px;padding-bottom:0px;min-height:21px;width:104px;margin:0px -10000px 0px 0px;}#u64976,#u63900{width:108px;position:relative;}#u63902{width:108px;padding-bottom:26px;position:relative;margin-right:-10000px;}#u64979.MuseMenuActive,#u63902:hover{width:108px;min-height:0px;margin:0px -10000px 0px 0px;}#u63902.MuseMenuActive{width:108px;min-height:0px;margin:0px -10000px 0px 0px;}#u63906-4{width:104px;min-height:17px;padding-top:4px;position:relative;margin-right:-10000px;top:13px;left:2px;}#u63902:hover #u63906-4{padding-top:4px;padding-bottom:0px;min-height:17px;width:104px;margin:0px -10000px -1px 0px;}#u63902.MuseMenuActive #u63906-4{padding-top:4px;padding-bottom:0px;min-height:17px;width:104px;margin:0px -10000px 0px 0px;}#u731-3,#u59222-3,#u65634-3,#u50381-3,#u752-3,#u64981-3,#u63906-3{margin-left:2px;margin-right:2px;}#u603,#u640,#u669,#u60845,#u697{width:123px;margin-top:2px;position:relative;}#u700{width:122px;padding-bottom:13px;position:relative;margin-right:-10000px;}#u60846.MuseMenuActive,#u700:hover{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u700:active{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u700.MuseMenuActive{width:122px;min-height:0px;margin:0px -10000px 0px 0px;}#u703-4{width:122px;min-height:17px;position:relative;margin-right:-10000px;top:6px;}#u60846.MuseMenuActive #u60848-4,#u700:hover #u703-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u700:active #u703-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u700.MuseMenuActive #u703-4{padding-top:0px;padding-bottom:0px;min-height:16px;width:122px;margin:0px -10000px -1px 0px;}#u14819{z-index:100;width:2px;height:810px;position:fixed;top:0px;left:318px;}#axes{position:relative;margin-right:-10000px;width:22px;margin-top:571px;left:312px;}#pu25542{z-index:189;width:0.01px;margin-right:-10000px;margin-top:29px;margin-left:334px;}#u25542{z-index:189;width:450px;border-width:0px;border-color:transparent;background-color:transparent;margin-left:40px;position:relative;}#u25545{z-index:199;width:10px;height:10px;background-color:#DE3C21;border-radius:50%;position:relative;margin-right:-10000px;margin-top:27px;}#u25543-9{z-index:190;width:418px;min-height:55px;background-color:transparent;font-size:34px;color:#DE3C21;line-height:41px;font-family:dosis, sans-serif;font-weight:400;position:relative;margin-right:-10000px;left:17px;}#u25543-7{line-height:0px;}#u25543,#u25543-3,#u25543-5{font-size:46px;line-height:55px;}#u25543-2,#u25543-4,#u25543-6{line-height:41px;}#u25544{z-index:200;width:10px;height:10px;background-color:#DE3C21;border-radius:50%;position:relative;margin-right:-10000px;margin-top:27px;left:440px;}#u28828{z-index:215;vertical-align:top;width:450px;height:2px;margin-left:40px;margin-top:2px;position:relative;background:url("../images/u28828.png?crc=3938980371") no-repeat 0px 0px;}#pslideshowu22166{z-index:121;width:0.01px;margin-left:39px;margin-top:9px;}#slideshowu22166{z-index:121;width:0.01px;height:343px;position:relative;margin-right:-10000px;margin-top:141px;left:1px;}#u22178{position:absolute;width:728px;height:343px;background-color:transparent;}#u22178popup{z-index:122;}#u37199{z-index:123;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u37199_img{padding:4px 103px 4px 104px;}#u53498{z-index:125;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u53523{z-index:127;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u53523_img{padding:4px 109px 4px 110px;}#u60748{z-index:129;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u60748_img{padding:4px 140px 4px 141px;}#u61674{z-index:131;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42618{z-index:133;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42618_img{padding:4px 106px;}#u44172{z-index:135;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u44172_img{padding:4px 113px;}#u42638{z-index:137;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u48635{z-index:139;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u48655{z-index:141;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u53498_img,#u61674_img,#u48635_img,#u48655_img{padding:4px 112px 4px 113px;}#u48675{z-index:143;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u48675_img{padding-left:107px;padding-right:106px;}#u42658{z-index:145;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42678{z-index:147;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42678_img{padding-left:109px;padding-right:108px;padding-bottom:4px;}#u42698{z-index:149;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42718{z-index:151;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42738{z-index:153;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42778{z-index:155;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42638_img,#u42658_img,#u42698_img,#u42738_img,#u42778_img{margin:-3px 107px 4px 108px;}#u42798{z-index:157;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42818{z-index:159;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42838{z-index:161;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42838_img{padding:4px 108px;}#u42858{z-index:163;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42878{z-index:165;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42878_img{margin:-43px 108px 4px 109px;}#u42898{z-index:167;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42898_img{margin:5px 108px -46px;}#u42918{z-index:169;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42918_img{margin:-15px 108px 4px;}#u42938{z-index:171;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42958{z-index:173;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42978{z-index:175;width:728px;height:343px;border-width:0px;border-color:transparent;background-color:#000000;margin-right:-10000px;position:relative;}#u42718_img,#u42798_img,#u42818_img,#u42858_img,#u42938_img,#u42958_img,#u42978_img{margin:-2px 108px 4px;}#u22177-4{position:absolute;width:27px;height:84px;border-color:#FFFFFF;background-color:transparent;padding:10px;line-height:84px;font-size:60px;text-align:center;color:#FFFFFF;font-family:dosis, sans-serif;font-weight:300;top:100px;}#u22177-4popup{z-index:177;}#u22175-4{position:absolute;width:26px;height:84px;border-color:#FFFFFF;background-color:transparent;padding:10px;line-height:84px;font-size:60px;text-align:center;color:#FFFFFF;font-family:dosis, sans-serif;font-weight:300;top:100px;left:675px;}#u22175-4popup{z-index:181;}.SSSlideLoading{background:url("../images/loading.gif?crc=3815509949") no-repeat center center;}#u44122{z-index:217;width:68px;border-width:0px;border-color:transparent;background-color:transparent;position:relative;margin-right:-10000px;margin-top:53px;left:655px;}#u44116-4{z-index:222;width:62px;min-height:14px;background-color:transparent;font-size:12px;line-height:14px;font-family:dosis, sans-serif;font-weight:400;margin-left:6px;position:relative;}#u44113-4{z-index:218;width:18px;min-height:51px;background-color:transparent;line-height:63px;font-size:45px;text-align:center;color:#000000;font-family:dosis, sans-serif;font-weight:200;-webkit-transform:matrix(0,-1,1,0,-22,41);-ms-transform:matrix(0,-1,1,0,-22,41);transform:matrix(0,-1,1,0,-22,41);margin-left:23px;top:-22px;margin-bottom:-40px;position:relative;}#pamphletu45364{z-index:226;width:0.01px;height:80px;padding-bottom:98px;position:relative;margin-right:-10000px;}#u45367{position:absolute;width:525px;height:178px;background-color:transparent;left:104px;}#u45367popup{z-index:227;}#u45368{z-index:228;width:525px;height:113px;border-width:0px;border-color:transparent;background-color:transparent;padding-bottom:65px;margin-right:-10000px;position:relative;}#u66951{z-index:233;width:103px;background-color:transparent;position:relative;margin-right:-10000px;margin-top:7px;left:55px;}#u66951_img{margin-bottom:-1px;}#u65417{z-index:229;width:97px;background-color:transparent;position:relative;margin-right:-10000px;left:194px;}#u65498{z-index:231;width:197px;background-color:transparent;position:relative;margin-right:-10000px;margin-top:2px;left:326px;}#u45372{z-index:235;width:124px;height:28px;position:relative;margin-right:-10000px;margin-top:52px;}#u45373{position:absolute;width:124px;height:26px;border-width:0px;border-color:transparent;background-color:#FFFFFF;padding-bottom:2px;}#u45373.PamphletThumbSelected{background-color:transparent;width:124px;height:26px;min-height:0px;margin:0px;}#u45375{z-index:237;width:122px;border-width:0px;border-color:transparent;background-color:transparent;position:relative;margin-right:-10000px;}#u45376{z-index:238;width:119px;border-style:solid;border-color:#DE3C21;background-color:transparent;position:relative;margin-right:-10000px;margin-top:15px;left:1px;border-width:1px 0px 0px;}#u45377-4{z-index:239;width:122px;min-height:26px;background-color:transparent;font-size:14px;text-align:justify;font-family:dosis, sans-serif;font-weight:300;font-style:normal;position:relative;margin-right:-10000px;}.SSFirstButton,.SSPreviousButton,.SSNextButton,.SSLastButton,.SSSlideLink,.SSCloseButton,.PamphletWidget .ThumbGroup .Thumb,.PamphletNextButton,.PamphletPrevButton,.PamphletCloseButton{cursor:pointer;}#u27786-12{z-index:203;width:700px;min-height:177px;background-color:transparent;line-height:20px;font-size:17px;text-align:justify;color:#000000;font-family:dosis, sans-serif;font-weight:400;margin-left:50px;margin-top:27px;position:relative;}#u27755{z-index:201;width:110px;background-color:transparent;margin-left:344px;margin-top:45px;position:relative;}#u27755_img{padding-right:1px;}#u24805-4{z-index:185;width:109px;min-height:20px;border-width:0px;border-color:transparent;background-color:transparent;line-height:22px;font-size:18px;text-align:center;font-family:dosis, sans-serif;font-weight:400;margin-left:344px;margin-top:20px;position:relative;}#u24805{font-size:18px;}#u37288{z-index:216;width:49px;height:1px;border-style:solid;border-color:#DE3C21;background-color:transparent;margin-left:374px;top:-2px;margin-bottom:-2px;position:relative;border-width:1px 0px 0px;}#ppamphletu24889{z-index:243;width:0.01px;margin-top:21px;}#pamphletu24889{z-index:243;width:0.01px;height:176px;padding-bottom:203px;position:relative;margin-right:-10000px;}#u24892{position:absolute;width:257px;height:200px;background-color:transparent;top:179px;}#u24892popup{z-index:244;}#u24903{z-index:245;width:257px;height:180px;border-width:0px;border-color:transparent;background-color:transparent;padding-bottom:20px;margin-right:-10000px;position:relative;}#u24904-9{z-index:246;width:256px;min-height:150px;border-width:0px;border-color:transparent;background-color:transparent;text-align:justify;color:#000000;line-height:20px;font-family:dosis, sans-serif;font-weight:400;position:relative;margin-right:-10000px;}#u24912{z-index:255;width:175px;height:176px;position:relative;margin-right:-10000px;left:41px;}#u24917{position:absolute;width:175px;height:175px;-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;border-width:0px;border-color:transparent;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);border-radius:400px;padding-bottom:1px;background:#A96863 url("../images/greve06_01-u24917-fr.png?crc=122233012") no-repeat left top;background-color:rgba(123,23,15,0.65);background-size:cover;}#u24917:hover{-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);width:175px;height:175px;min-height:0px;margin:0px;background:#81221B url("../images/greve06_01-u24917-r-fr.png?crc=371486109") no-repeat left top;background-color:rgba(123,23,15,0.95);background-size:cover;}#u24918-5{z-index:257;width:174px;min-height:175px;background-color:transparent;line-height:34px;font-size:24px;text-align:center;color:#FFFFFF;font-family:dosis, sans-serif;font-weight:700;position:relative;margin-right:-10000px;}#u24917:hover #u24918-5{padding-top:0px;padding-bottom:0px;min-height:175px;width:174px;margin:0px -10000px 0px 0px;}#pamphletu25386{z-index:262;width:0.01px;height:176px;padding-bottom:244px;position:relative;margin-right:-10000px;left:262px;}#u25396{position:absolute;width:268px;height:240px;background-color:transparent;top:180px;}#u25396popup{z-index:263;}#u25397{z-index:264;width:268px;height:240px;border-width:0px;border-color:transparent;background-color:transparent;margin-right:-10000px;position:relative;}#u25397:hover{width:268px;height:240px;min-height:0px;margin:0px -10000px 0px 0px;}#u25398-9{z-index:265;width:268px;min-height:150px;border-width:0px;border-color:transparent;background-color:transparent;text-align:justify;color:#000000;line-height:20px;font-family:dosis, sans-serif;font-weight:400;position:relative;margin-right:-10000px;}#u25391{z-index:274;width:175px;height:176px;position:relative;margin-right:-10000px;left:49px;}#u25392{position:absolute;width:175px;height:175px;-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;border-width:0px;border-color:transparent;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);border-radius:400px;padding-bottom:1px;background:#5997BD url("../images/img_1740-u25392-fr.png?crc=4097477169") no-repeat center center;background-color:rgba(0,95,154,0.65);background-size:cover;}#u25392:hover{-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);width:175px;height:175px;min-height:0px;margin:0px;background:#0C679F url("../images/img_1740-u25392-r-fr.png?crc=4212980946") no-repeat center center;background-color:rgba(0,95,154,0.95);background-size:cover;}#u25393-5{z-index:276;width:174px;min-height:175px;background-color:transparent;line-height:34px;font-size:24px;text-align:center;color:#FFFFFF;font-family:dosis, sans-serif;font-weight:700;position:relative;margin-right:-10000px;}#u24917.PamphletThumbSelected #u24918-5,#u25392:hover #u25393-5{padding-top:0px;padding-bottom:0px;min-height:175px;width:174px;margin:0px -10000px 0px 0px;}#pamphletu25425{z-index:281;width:0.01px;height:176px;padding-bottom:224px;position:relative;margin-right:-10000px;left:535px;}#u25435{position:absolute;width:269px;height:220px;background-color:transparent;top:180px;}#u25435popup{z-index:282;}#u25436{z-index:283;width:269px;height:220px;border-width:0px;border-color:transparent;background-color:transparent;margin-right:-10000px;position:relative;}#u25437-10{z-index:284;width:269px;min-height:150px;border-width:0px;border-color:transparent;background-color:transparent;text-align:justify;color:#000000;line-height:20px;font-family:dosis, sans-serif;font-weight:400;position:relative;margin-right:-10000px;}#u25432{z-index:294;width:175px;height:176px;position:relative;margin-right:-10000px;left:47px;}#u25433{position:absolute;width:175px;height:175px;-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;border-width:0px;border-color:transparent;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);border-radius:400px;padding-bottom:1px;background:#F9C289 url("../images/_mg_2382_02-u25433-fr.png?crc=3919569701") no-repeat center center;background-color:rgba(246,162,74,0.65);background-size:cover;}#u25433:hover{-webkit-transition-duration:1.5s;-webkit-transition-delay:0.1s;-webkit-transition-timing-function:ease;transition-duration:1.5s;transition-delay:0.1s;transition-timing-function:ease;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);width:175px;height:175px;min-height:0px;margin:0px;background:#F6A653 url("../images/_mg_2382_02-u25433-r-fr.png?crc=4063708610") no-repeat center center;background-color:rgba(246,162,74,0.95);background-size:cover;}#u25434-5{z-index:296;width:174px;min-height:175px;background-color:transparent;line-height:34px;font-size:24px;text-align:center;color:#FFFFFF;font-family:dosis, sans-serif;font-weight:700;position:relative;margin-right:-10000px;}#u25392.PamphletThumbSelected #u25393-5,#u25433:hover #u25434-5{padding-top:0px;padding-bottom:0px;min-height:175px;width:174px;margin:0px -10000px 0px 0px;}#u25433.PamphletThumbSelected #u25434-5{padding-top:0px;padding-bottom:0px;min-height:175px;width:174px;margin:0px -10000px 0px 0px;}#u24918-3,#u25393-3,#u25434-3{padding-top:15px;}.css_verticalspacer .verticalspacer{height:calc(100vh - 1559px);}#ppu14875{z-index:0;width:0.01px;padding-bottom:0px;margin-right:-10000px;margin-top:-96px;margin-left:90px;}#pu14875{z-index:117;width:0.01px;}#u14875{z-index:117;width:83px;height:1px;position:relative;margin-right:-10000px;margin-top:4px;}#u14950{z-index:118;width:11px;height:11px;position:relative;margin-right:-10000px;left:87px;}#u14955{z-index:119;width:11px;height:11px;position:relative;margin-right:-10000px;left:103px;}#u14962{z-index:120;width:11px;height:11px;position:relative;margin-right:-10000px;left:118px;}#u14847{z-index:116;width:83px;height:1px;position:relative;margin-right:-10000px;margin-top:4px;left:134px;}#u14837-10{z-index:101;width:153px;min-height:22px;margin-left:31px;margin-top:9px;position:relative;}#u14842-5{z-index:111;width:131px;min-height:13px;margin-left:43px;position:relative;}#muse_css_mq,.html{background-color:#FFFFFF;}body{position:relative;min-width:1000px;}.verticalspacer{min-height:1px;} \ No newline at end of file diff --git a/html/css/master_a-gabarit.css b/html/css/master_a-gabarit.css new file mode 100644 index 0000000..da1fc15 --- /dev/null +++ b/html/css/master_a-gabarit.css @@ -0,0 +1 @@ +#u4549{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);background:transparent url("../images/hachures.svg?crc=3923324409") no-repeat right center;background-size:79px 1208px;}#u4529{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);background:transparent url("../images/hachures.svg?crc=3923324409") no-repeat left top;background-size:79px 1208px;}#u495{display:block;}#u585-6{background-color:transparent;line-height:14px;font-size:12px;text-align:center;font-family:dosis, sans-serif;font-weight:200;font-style:normal;}#u592{border-style:solid;border-color:#DD3C21;background-color:transparent;border-width:0px 0px 1px;}#u499,#u596,#u597{background-color:transparent;}#u597:hover{border-width:0px;border-color:transparent;}#menuu595,#u597:active{border-width:0px;border-color:transparent;background-color:transparent;}#u599-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u597:hover #u599-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u597:active #u599-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u603,#u604{background-color:transparent;}#u597.MuseMenuActive,#u604:hover{border-width:0px;border-color:transparent;}#u604:active{border-width:0px;border-color:transparent;background-color:transparent;}#u607-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u597.MuseMenuActive #u599-4,#u604:hover #u607-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u604:active #u607-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u609{background-color:#FFFFFF;}#u727{border-width:0px;border-color:transparent;background-color:#FFFFFF;}#u608,#u725,#u727:hover{background-color:transparent;}#u727.MuseMenuActive,#u731-4{background-color:transparent;}#u727:hover #u731-4{border-style:solid;border-color:#7B170F;border-width:0px 0px 1px;}#u59219{border-width:0px;border-color:transparent;background-color:#FFFFFF;}#u59209,#u59219:hover{background-color:transparent;}#u59219.MuseMenuActive,#u59222-4{background-color:transparent;}#u59219:hover #u59222-4{border-style:solid;border-color:#7B170F;border-width:0px 0px 1px;}#u731-3,#u59222-3{text-align:left;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u65630{border-style:solid;border-width:1px;border-color:#777777;background-color:#FFFFFF;}#u65630:hover{background-color:#AAAAAA;}#u65630.MuseMenuActive{background-color:#666666;}#u59210,#u59211,#u65628,#u65634-4{background-color:transparent;}#u65634-3{font-size:11px;text-align:center;line-height:13px;}#u640,#u643{background-color:transparent;}#u604.MuseMenuActive,#u609:hover,#u643:hover{border-width:0px;border-color:transparent;}#u643:active{border-width:0px;border-color:transparent;background-color:transparent;}#u646-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u604.MuseMenuActive #u607-4,#u643:hover #u646-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u643:active #u646-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u642{background-color:#FFFFFF;}#u50378{border-width:0px;border-color:transparent;background-color:transparent;}#u641,#u50377,#u50378:hover{background-color:transparent;}#u50381-4{border-width:0px;border-color:transparent;background-color:transparent;}#u50378:hover #u50381-4{border-style:solid;border-color:#005F9A;border-width:0px 0px 1px;}#u748{border-width:0px;border-color:transparent;background-color:transparent;}#u746,#u748:hover{background-color:transparent;}#u752-4{border-width:0px;border-color:transparent;background-color:transparent;}#u748:hover #u752-4{border-style:solid;border-color:#005F9A;border-width:0px 0px 1px;}#u50381-3,#u752-3{text-align:left;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u669,#u670{background-color:transparent;}#u643.MuseMenuActive,#u50378.MuseMenuActive #u50381-4,#u748.MuseMenuActive #u752-4,#u670:hover{border-width:0px;border-color:transparent;}#u670:active{border-width:0px;border-color:transparent;background-color:transparent;}#u673-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u643.MuseMenuActive #u646-4,#u670:hover #u673-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u670:active #u673-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u60845,#u60846{background-color:transparent;}#u670.MuseMenuActive,#u60846:hover{border-width:0px;border-color:transparent;}#u60846:active{border-width:0px;border-color:transparent;background-color:transparent;}#u60848-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u670.MuseMenuActive #u673-4,#u60846:hover #u60848-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u60846:active #u60848-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u60851{border-width:0px;background-color:#FFFFFF;}#u60846.MuseMenuActive,#u60851:hover{border-width:0px;border-color:transparent;}#u64979{border-width:0px;border-color:transparent;background-color:#FFFFFF;border-radius:0px;}#u64979:hover{background-color:#FFFFFF;}#u64981-4{border-width:0px;border-color:transparent;background-color:transparent;}#u60846.MuseMenuActive #u60848-4,#u64979:hover #u64981-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u64981-3{text-align:left;line-height:17px;font-family:dosis, sans-serif;font-weight:400;}#u642:hover,#u63902{border-width:0px;border-color:transparent;background-color:#FFFFFF;}#u60850,#u64976,#u64979.MuseMenuActive,#u63900,#u63902:hover{background-color:transparent;}#u63902.MuseMenuActive,#u63906-4{background-color:transparent;}#u63902:hover #u63906-4{border-style:solid;border-color:#005F9A;border-width:0px 0px 1px;}#u727.MuseMenuActive #u731-4,#u59219.MuseMenuActive #u59222-4,#u63902.MuseMenuActive #u63906-4{border-width:0px;border-color:#000000;}#u63906-3{text-align:left;font-family:dosis, sans-serif;font-weight:400;}#u697,#u700{background-color:transparent;}#u60851:active,#u64979.MuseMenuActive #u64981-4,#u700:hover{border-width:0px;border-color:transparent;}#u700:active{border-width:0px;border-color:transparent;background-color:transparent;}#u700.MuseMenuActive{border-width:0px;border-color:transparent;}#u703-4{border-width:0px;border-color:transparent;background-color:transparent;text-align:left;color:#000000;line-height:17px;font-family:dosis, sans-serif;font-weight:400;font-style:normal;}#u700:hover #u703-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u700:active #u703-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}#u700.MuseMenuActive #u703-4{border-style:solid;border-color:#DE3C21;border-width:0px 0px 1px;}.MenuItem{cursor:pointer;}#u14819{opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";filter:alpha(opacity=100);background:transparent url("../images/hachures.svg?crc=3923324409") no-repeat left top;background-size:cover;}.nosvg #u4549,.nosvg #u4529,.nosvg #u14819{background-image:url('../images/hachures_poster_u4554.png?crc=4087564688');}#u14950{background-color:#005F9A;border-radius:50%;}#u14955{background-color:#F6A24A;border-radius:50%;}#u14962{background-color:#7B170F;border-radius:50%;}#u14875,#u14847{border-style:solid;border-color:#000000;background-color:transparent;border-width:0px 0px 1px;}#u14837-10{background-color:transparent;color:#DE3C21;font-family:dosis, sans-serif;font-weight:400;}#u14837-5{line-height:17px;}#u14837,#u14837-3,#u14837-6{font-size:17px;line-height:20px;}#u14837-2,#u14837-4,#u14837-7{font-size:12px;line-height:14px;}#u14842-5{background-color:transparent;line-height:12px;font-size:10px;text-align:center;font-family:dosis, sans-serif;font-weight:400;}#u14837-8,#u14842-3{line-height:0px;}#u14842{font-size:11px;line-height:13px;} \ No newline at end of file diff --git a/html/css/site_global.css b/html/css/site_global.css new file mode 100644 index 0000000..7b31c53 --- /dev/null +++ b/html/css/site_global.css @@ -0,0 +1 @@ +html{min-height:100%;min-width:100%;-ms-text-size-adjust:none;}body,div,dl,dt,dd,ul,ol,li,nav,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td,a{margin:0px;padding:0px;border-width:0px;border-style:solid;border-color:transparent;-webkit-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top;background-repeat:no-repeat;}button.submit-btn{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}.transition{-webkit-transition-property:background-image,background-position,background-color,border-color,border-radius,color,font-size,font-style,font-weight,letter-spacing,line-height,text-align,box-shadow,text-shadow,opacity;transition-property:background-image,background-position,background-color,border-color,border-radius,color,font-size,font-style,font-weight,letter-spacing,line-height,text-align,box-shadow,text-shadow,opacity;}.transition *{-webkit-transition:inherit;transition:inherit;}table{border-collapse:collapse;border-spacing:0px;}fieldset,img{border:0px;border-style:solid;-webkit-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:inherit;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}.form-grp input,.form-grp textarea{-webkit-appearance:none;-webkit-border-radius:0;}body{font-family:Arial, Helvetica Neue, Helvetica, sans-serif;text-align:left;font-size:14px;line-height:17px;word-wrap:break-word;text-rendering:optimizeLegibility;-moz-font-feature-settings:'liga';-ms-font-feature-settings:'liga';-webkit-font-feature-settings:'liga';font-feature-settings:'liga';}a:link{color:#0000FF;text-decoration:underline;}a:visited{color:#800080;text-decoration:underline;}a:hover{color:#0000FF;text-decoration:underline;}a:active{color:#EE0000;text-decoration:underline;}a.nontext{color:black;text-decoration:none;font-style:normal;font-weight:normal;}.normal_text{color:#000000;direction:ltr;font-family:Arial, Helvetica Neue, Helvetica, sans-serif;font-size:14px;font-style:normal;font-weight:normal;letter-spacing:0px;line-height:17px;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;vertical-align:0px;padding:0px;}.list0 li:before{position:absolute;right:100%;letter-spacing:0px;text-decoration:none;font-weight:normal;font-style:normal;}.rtl-list li:before{right:auto;left:100%;}.nls-None > li:before,.nls-None .list3 > li:before,.nls-None .list6 > li:before{margin-right:6px;content:'•';}.nls-None .list1 > li:before,.nls-None .list4 > li:before,.nls-None .list7 > li:before{margin-right:6px;content:'○';}.nls-None,.nls-None .list1,.nls-None .list2,.nls-None .list3,.nls-None .list4,.nls-None .list5,.nls-None .list6,.nls-None .list7,.nls-None .list8{padding-left:34px;}.nls-None.rtl-list,.nls-None .list1.rtl-list,.nls-None .list2.rtl-list,.nls-None .list3.rtl-list,.nls-None .list4.rtl-list,.nls-None .list5.rtl-list,.nls-None .list6.rtl-list,.nls-None .list7.rtl-list,.nls-None .list8.rtl-list{padding-left:0px;padding-right:34px;}.nls-None .list2 > li:before,.nls-None .list5 > li:before,.nls-None .list8 > li:before{margin-right:6px;content:'-';}.nls-None.rtl-list > li:before,.nls-None .list1.rtl-list > li:before,.nls-None .list2.rtl-list > li:before,.nls-None .list3.rtl-list > li:before,.nls-None .list4.rtl-list > li:before,.nls-None .list5.rtl-list > li:before,.nls-None .list6.rtl-list > li:before,.nls-None .list7.rtl-list > li:before,.nls-None .list8.rtl-list > li:before{margin-right:0px;margin-left:6px;}.TabbedPanelsTab{white-space:nowrap;}.MenuBar .MenuBarView,.MenuBar .SubMenuView{display:block;list-style:none;}.MenuBar .SubMenu{display:none;position:absolute;}.NoWrap{white-space:nowrap;word-wrap:normal;}.rootelem{margin-left:auto;margin-right:auto;}.colelem{display:inline;float:left;clear:both;}.clearfix:after{content:"\0020";visibility:hidden;display:block;height:0px;clear:both;}*:first-child+html .clearfix{zoom:1;}.clip_frame{overflow:hidden;}.popup_anchor{position:relative;width:0px;height:0px;}.allow_click_through *{pointer-events:auto;}.popup_element{z-index:100000;}.svg{display:block;vertical-align:top;}span.wrap{content:'';clear:left;display:block;}span.actAsInlineDiv{display:inline-block;}.position_content,.excludeFromNormalFlow{float:left;}.preload_images{position:absolute;overflow:hidden;left:-9999px;top:-9999px;height:1px;width:1px;}.preload{height:1px;width:1px;}.animateStates{-webkit-transition:0.3s ease-in-out;-moz-transition:0.3s ease-in-out;-o-transition:0.3s ease-in-out;transition:0.3s ease-in-out;}[data-whatinput="mouse"] *:focus,[data-whatinput="touch"] *:focus,input:focus,textarea:focus{outline:none;}textarea{resize:none;overflow:auto;}.allow_click_through,.fld-prompt{pointer-events:none;}.wrapped-input{position:absolute;top:0px;left:0px;background:transparent;border:none;}.submit-btn{z-index:50000;cursor:pointer;}.anchor_item{width:22px;height:18px;}.MenuBar .SubMenuVisible,.MenuBarVertical .SubMenuVisible,.MenuBar .SubMenu .SubMenuVisible,.popup_element.Active,span.actAsPara,.actAsDiv,a.nonblock.nontext,img.block{display:block;}.widget_invisible,.js .invi,.js .mse_pre_init{visibility:hidden;}.ose_ei{visibility:hidden;z-index:0;}.no_vert_scroll{overflow-y:hidden;}.always_vert_scroll{overflow-y:scroll;}.always_horz_scroll{overflow-x:scroll;}.fullscreen{overflow:hidden;left:0px;top:0px;position:fixed;height:100%;width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.fullwidth{position:absolute;}.borderbox{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;}.scroll_wrapper{position:absolute;overflow:auto;left:0px;right:0px;top:0px;bottom:0px;padding-top:0px;padding-bottom:0px;margin-top:0px;margin-bottom:0px;}.browser_width > *{position:absolute;left:0px;right:0px;}.grpelem,.accordion_wrapper{display:inline;float:left;}.fld-checkbox input[type=checkbox],.fld-radiobutton input[type=radio]{position:absolute;overflow:hidden;clip:rect(0px, 0px, 0px, 0px);height:1px;width:1px;margin:-1px;padding:0px;border:0px;}.fld-checkbox input[type=checkbox] + label,.fld-radiobutton input[type=radio] + label{display:inline-block;background-repeat:no-repeat;cursor:pointer;float:left;width:100%;height:100%;}.pointer_cursor,.fld-recaptcha-mode,.fld-recaptcha-refresh,.fld-recaptcha-help{cursor:pointer;}p,h1,h2,h3,h4,h5,h6,ol,ul,span.actAsPara{max-height:1000000px;}.superscript{vertical-align:super;font-size:66%;line-height:0px;}.subscript{vertical-align:sub;font-size:66%;line-height:0px;}.horizontalSlideShow{-ms-touch-action:pan-y;touch-action:pan-y;}.verticalSlideShow{-ms-touch-action:pan-x;touch-action:pan-x;}.colelem100,.verticalspacer{clear:both;}.list0 li,.MenuBar .MenuItemContainer,.SlideShowContentPanel .fullscreen img,.css_verticalspacer .verticalspacer{position:relative;}.popup_element.Inactive,.js .disn,.js .an_invi,.hidden,.breakpoint{display:none;}#muse_css_mq{position:absolute;display:none;background-color:#FFFFFE;}.fluid_height_spacer{width:0.01px;}.muse_check_css{display:none;position:fixed;}@media screen and (-webkit-min-device-pixel-ratio:0){body{text-rendering:auto;}} \ No newline at end of file diff --git a/html/ibe_log.xml b/html/ibe_log.xml new file mode 100644 index 0000000..0cc7c0c --- /dev/null +++ b/html/ibe_log.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/images/.htaccess b/html/images/.htaccess new file mode 100644 index 0000000..f763635 --- /dev/null +++ b/html/images/.htaccess @@ -0,0 +1,10 @@ +# Auto-generated Muse file. Edits made to this file will be overwritten. + + + Header set Cache-Control "max-age=2592000, public" + + + ExpiresActive On + ExpiresDefault "access plus 30 days" + + \ No newline at end of file diff --git a/html/images/hachures.svg b/html/images/hachures.svg new file mode 100644 index 0000000..6850716 --- /dev/null +++ b/html/images/hachures.svg @@ -0,0 +1,405 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/html/images/logo_bes_blanc-02-02.svg b/html/images/logo_bes_blanc-02-02.svg new file mode 100644 index 0000000..becfaf8 --- /dev/null +++ b/html/images/logo_bes_blanc-02-02.svg @@ -0,0 +1,243 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/html/images/logo_bes_blanc-02-02_poster_.png b/html/images/logo_bes_blanc-02-02_poster_.png new file mode 100644 index 0000000000000000000000000000000000000000..6c33abf7842e5ebbab8bcc10e45711714aaa54d3 GIT binary patch literal 13658 zcmZ8|Q+Qonw06=oZmhHOk7w%$#vx{!%aJ9b7k8LrK&y)jjEQKWzJU?Sk?{m^z})j^Oo|(*;IksoeWA9 zmh18{UTDNG1VgXyA>yzHM*ab$F_Sl!JVyKJ@u|b?@u@BwZqVNi`a)1hL?ga3{_j7e zl-gK-r+$V-5vz!}Ra1}o8k;kYm5%7^=n#*yS5$nGT>9%;HPnZW@yG(5V< z;c4cs(x>$fLdYd)SeCf5qYfgtG{yb~1d762j-_<{eRQMxyTk#u{p4wILkrCYsb1}# z1fSMJo01IYq)kipi^r734qtB2Q4oI;vSEUt*u{?V{vX|8LL?Ci1NRB6)irbXgk&-| z%akgqP}0o#oBa7ETAj({c|w-4BbPD+>Dj6z&*VFl%)*W{nk_^!#m!26>!*Gl)DrlEMN+}`3qD~HaBQ@EDY7)xS5aIpH4TxHl0P^M!*S7_<7&wpSXSgwQ5Gov^Nort zOzpt5hnyWBv>t9r5Fx_U$sIh^SYbK@{=+n?zm_IjIPojvtWj#F{`dnQSMqqyn_&iP zh_Z2K#gq;SCtCOG6md)Zod|999@W$%imnwv75I7g5*@z471F8O$lWPn z_*W@y`+nVaIzdgZ%8++6ATwIc-7OGs-SGNWNT;cPX$|&DXZ4bxSxrk7=R*`87*V4yc4`1N=d)hDA`3IvZ)g~PRi<;OJJub+>FN=B) zy9|M4vHc9uzS$3Qa=C?w)0((OkWuGR-!e_TA-O4}j~eC)yeW^Km?YZnPMqpq0-Du& zJX|57niz)Pdf4sUDB(R}BNy;so)Op&*_fLBvYwrBulR8CoV2vIHX$H;$$$MxZD*RW z`Uv3A<)>KWp{m~pqs6=y3)CBf&cZfI!};k)3aLCH66bA@A&% z&^unpOn3w+*Q4W$br*r-{y%I)fA6?a}z8ZsQ3402xXGaJKV9dZ`}PE**mPqZk0)m z+7KZdc5m0KK-I|lG{@7r^R^dplzoeqkx7&&8&;~KPJceT%E|meHhUoF`|LyCMbo;2 zv<-q50h17BQ!Ds~+5?n+GLL_@C1HeSleq11MHMOVP!GE#4j$&Qp;Qj!I?ne~cR#0M{&9gdtnKjjHAzTVj0<>LR+2-%HZM1Bco-$kSmHrXG- z=SIt8_g>z2c(1v_-%j#GXFc!y7ZPB`!YK0m*WSIY-s`pKB6K$LrrO6-bL*Ehrb_Yc zxnFIzHzmBQIE~?Q{vqYI7Yh`d8+HVKR40svDI`aSBh8iU5{V0V{=zZ@wxaHA3W?lI zXGi|QR#tbdi?FgZ!fD6blp6JqPJiei@B7FJei&opCaR%N6eN&qW9TiomVs89=nwdn ziN;5u?cC%*(ixFfgM%}Fdj59k>~jN@{I=@_wblm*`Jy-NA@i3OLlcYko?6&PLsPQhe z3ipmQrq136eCYm2p{K5gJxBM&T;$a&R0aq^i%0kIUV3_vz;(WVMUW(zijeH)tkoG zchc+M6btYV$ocX0?&=tRJhFL4pNjEh$+En?lkh+N8A*Sp7A7xbI?BXCwRc`MiR{Xv zu1`xr+cpTjsR(ztX`nNLMO!E@Djk*3H?TxnY~uSJVi-Jkq8j_A@%ABr&HOWs<-VZutA2R18q#yZEDU77o9 zvEat=7&3I{BmY{%EmBdH6_I`T9VDWispqo^sF6!l)%bYg0&TVu!=4ci=l9E= zA;;U@!5R6XGfLf}IbR-~x@z4fHn5m}Izllo?@ZNJZkKD%Xs4zON&AlE0X?0i=;AN; zIKmg@R?KCe7t4z3RiNB>>n~#8I9j=LwO8a%3_4%mB@8|e$?14q#-uX-*o%5L2f82Q z2b3?G3Z&d6B-!H6!P75J9G1FLJKBtj_2qY}6j&~Enrob7fSU-^1t46$c`?N0=GD`i zRfIjQB}IqO^iKYo{yWXZyvbrZwi2l{Qk**UY)3ZYy$(Gy_jzV6z?AzVa%Fec&b(ag zn&RZP(M1NBcIU}+b)C(xZW?9Aa5{GciOlwuQh$uaQ9eDQ{0s@7x6rhZ9xHOOA>*Sk zFh5G%(2n8vEM+^%#{|YiQ|=#5kqFg3jajUTbh~cn;n=A5_ zvwB1CsY9)zJuR_T*&X&xx2e+BlwK-}qyQ06dy5txW+G#Q#66+5+d6;la(zdI_UBaZ zY~(>0VJ?QjJNsN()6XG_w>bx1?|c(7ArzL!MYQ|kNV@~=c6vy=@94QjWu3;BsZu=1 z3qv3g`aVv4r;vZHbXaD`KnB2P-eULDcnUyG52bW|&VkpRry*jeaC#S{He9pf;U|cG zPVm@m(dXNRqrzpN^Eh$V z!vl@&n!%t(Zq9|Hl=n?vULJ0B(1+2R+*sQ^&-I^~Qk$#!*&-8wie^}!ak2U1fIIT& zREzFhluQR}tGD?ze^2rG{1#*=_vr19TpJ*%$xrNE5O}%NsriSzv_fElyNYPFibB-p zQHkQN<;wl5d_B9u26<3;+5#$YBqAoX0XS$Rqg&db=26tSF8XPk#5gDe7@>@(WiXMQ zSpz}Xz&^mnQM-wV7{+JOI^ zpAW}?YpK`d&!_dyvS*(dlI<+aoX`NTJ|t`bRS@F&%pYFYof===37c|!eQCMAGzSVNpb-BCpZvyuwgw2y6 zrMcC;#&Z)B6Mnf{|7$fxro!$ZUi&dGHGn4!Gu5TZ{^w@Rc9*V7ZjdAGS-t)zI9^DR zAy21`;}IKnErzDVM$-oV=uF>qsHAY&q202|eTy4K|H!1K{I%{)wj=!hRa<7jqCd2V zb0i?0^G-SOfMl`_N$)fRJe#FBYk{vyz0OooJsvB2xJTm8zSCQ}s1L%5)+GQ1NzE?U z{^Yp^+9E%T5;Ch1u^-GF5F&pJXf)eC2PLUqOOjqQqzfMRxoJE>Dv%n*rgAa~ew5rV zRB^+Tqslm!N@;kw(Ph3EkX&)1(s^m`Y=Q#pACdW zcV%Z{VP?NBRn_xs_+i))vI@}fI$a0(P@!MXs?%sR1T%V!2m+*`plVfe=(nptLH!HZ zk>!bL3kLupaLk+7LO~1CxAmS?f4iNGU^gBqZ3N4?V>;@Yiuds>L^5gJkb;KP zhaBw)TYn2hk2DDtZ9Ca$j%5-so|hSw8n}j}n~cpb`HxNwe9_!->g?g8L49hNu!`vX z01f*lU;&ROaa}KI>F89$7Bu1K!r0*c!*O{!@oN(mdTC8;3{u z$7a6!QaUYRBM3OZdl(j&_gBX?H%tU*P#y3mv1Ktk@)$j;=?!loyY3M0+6PCsv4~@r za27;0$o6|Zh(m95Z-265bPC|}X-o}8H!Ad#6;MW-I{%49xy|vnfYnHi$(r!06Y5{2 z!Q)f6Sg)3DTQqr?Qwd$ZTfzP#-I6E$j2_F$^jQS@LE?>F!+_nEGo4~Q;3HL6*?WK4 zIxY02pLC$z0*OC=Lf3lAM21`tlddrAB|4$grVJus#Q?++E(zAN3taldvv~enA*uA} zSLw1TC516p1lwr|jwk4U&q3^o_iUz3*5sXH_sr+9<@cApz!q~^Ep2SSljL{QN$WrX z*gJo|qi)5(`TYd7VmghsT#iLAp>nlAJGIdYGV$q}W7q4J{HG$?4lDhIH{9YgwbsgW z>>AR~*qG7QThZfmb_C)n7faZTF1bP%o6!aOhQ4&W!*4Y{KQ}+!wI7V)Hy+6KEj@fl zV_dJv-HwwFc#iaaKG*d2Gd;#n2iSo0)JQ;ibm!(ucJl|!kqS*&E>Akl=5*?;dC+ z6W@$}tZ^sbex>v}%m3CHMm&dF*SlU;U+?gdnPE~+8-2^jEN^Ex@m*?lwm zk$W->0ixo-qrk6LRZ_W`SKs=y6+LJ+FzXmI60YM5q~NuOzaT9B;yz3V&Fn$61EPzU zNqLtCs2x@lK5#qT56IS!PApNP+0@$s3yD@55mLY24*q%Xpb>+8Mq159E|0I1s~!S} zJ*p*xin>A@$+%yIu)uyRf8^MyUt>xw;c4iYV%7%Kns`9DQL)c=>XI=MhQpYqKVo|r ztAlnwGa}7D9Z7YBb-9LO63TSJ;K-TwFQpM|0q?u>4<-hT;to|gGDb%x!dadj;4maW z-Yx!myNjY4RaGz-q98fQSo~I6s@Fc?y^Nz4{pa(@$N=T8iIiq-dg=XTe5Z<27%iGa zKWOW=jQDd3;Ga8Z^u4~XNL-da6yNfZ#Jp^viWZTA*?IcF)4C%G=lO?MhL@?rxFaRL zPma5nFLX%sTV-U0CPl63)yU0wgjAkXET*WaW>fJ(iV&9TX({DMN&RbO6~r^zFO$6^ z4)EoZ+h{-{{jUa54e!g=*d+SLZqJIZFE8x8Km8#lqEA|L<&AL7;DMQ&&pF@HMz_@& zccnA70iUe8|9i2qr^0~l#9}g*D#`2NR({)%`|p-co^t;`T0McG;T|Z} z=fr!NF~&HY-w4;xM4w0c>Nwz`W<}4_wGmG5gJ;uZmijCMG~R#(gK#7YZt1-j^swdJ zQ_d7(DV5Ki`6tiE_y?U!KU)VpdtFiEi*xZ32fany>Z&2f8Gkth4kp1I<%U(BT5i zsJvXdBx}WAF1j;I4f?&y0#^4&0&fGYM8Sg+ojF-x48vQXwX$dfdGa7W?Snmy(aKg* z!X2^4pVKz?AHVLXHd*~C`)8XEt;ovYyn2GpADiZU3C0ISWlqsrjH8;Jm6s=#C+^3P zp^Pu$$wF;^(SLT30gQbp^SfC4DSqu|x2z5tm&6!eZ!Rr=Ar#l=n98zZMM11i34mvZ zt&*|}6?p81Ex)LJp_4W;phin9taEU33E=o)lzA;`Q|%&bGGtIfV>*=EKNl|!AKSL| zF{P$8x4ZX!D;*?L4B8KKBV1-F1=R}@xWEJ0mJTyruF{NmZ35gmlLF} z-5~Koh21|kEMr`6kO1vuLo)y{^qAj|KU)T0NB$ZRk=$lEP>cd2Cy&V;QD7qoBcdz- zKz?g{PXw8P*c_YUSjraK9et*FVZzk-f_;=GC$F>v;WVDy7rPhR11_PPTV8N>G8Jh0AAp9N%H_30-W+E%?XF1C1Q;R1+r4vx#T+n#6TBM(ZCP$l@$?o(L&a+4C0 z@~=B81D;1RiOj)V8QGHVVG#Y_$G0>D(U>WAPiX;x3gIY_Js?nqtv;JlZp z(JHz)*+~4ixZKD;$>1y990i37N2^T2W9W#XF*CCIhgR#5S417GQQ=(yyi)vM)rY*~ zkhBULP9!*1tr=q?mpA?O`x`@xX4UDz2O%Cr+x9@~BDcte)_YG)MW^~#Epjsh%+!>g z{6-D(ip<3;k3E3IqaqW+I!7JT2NN?p=38zhkPqidOsx2fte0$GpBLGoENlai%*jjZCYH;AIW(!M)RavI$-9>cj&6tfZ{PL;~0x(0vzz|pr zKNq?o-^vWVV~Bp%c|II9wLD%;2BWTpKOg?0zO*w@6 z4p8)agyQ7EuhThS-=CV!xUdPD9g*%%?|-F2u%#KEZ(>xIu@hh3<{+Lx(;2N&cLdSz z!$C1RCh!kUabTj*vo|;KI1w4amH?CS!w8jn0?%Zu$;}uKFF4x&g6!_th>}HviV%OQ z0-FJ96+acEnmE2<4J68l>ZJcJr6GdY7D=2FhnK77|J2Y_`CVtH*$P3cIUUh_%j_R@ zR?~E!l}d%5N1pFare}ct4i$+-=I>Hz5b#l;7!%ou@)=!s-@CtBy!3RJJ)2T_mdRtq z1(YecsvL$tDXB-TYZ`lM!W{PPj_M8Jx-f31&*NNJwE;0A;Ux)FRm2yg2*o}>9&mHU z=>A$@*dla0fzZfPu;|3aNK>b}aFxF5lwj+@1hl~8tEFWJ$g}4Oa@UVvupre! zXDV(Qe0KRes+mC{PGBp2lL{3clYskJg_UHr+?)?-CavdSw(}e%Dogly;LVKk<@-)b zWq1h+DuAjl@)#YgkC?J70I6o|xK!Dr)|bg2e9*ijgu7Ajtqfl>!LtpIZZ^>Mh-5!$0Y`qM3EO6*xB>EPxJ%s;FS{ixZBDrGHReMaBa=i?M%-!q zHL3Y1ImKZX(& z3hEY9nvjd(#jjWtthPs*B?Ek4Ypp)%_Hh%-!uBt#Q3{*<99J`=j$|G4=<3AygyLBY zI!VRBW#&%<#RUHudM~p^g9A;hE!PXU+CuuCM;CsULrCOb)ix+}Ka5Q17f~X}_d#p? z^6^zbgRigj8?I=5_~fwK(yno~J)75!iTp<_Tb)F>{NhRy)Yu0z4IYuow_+ zkZz+`WG@`vJBUhEnZGCbTQA727CJs@(BHmJiCL%2--vrGaMSZH)MAdI}0moZe zF7cu?Y;;`SfYZ~1%0?M6?Fpcz8cMW5O`F!j}0i>k24z z?OPWX%M^9Jr~l-kz^zy+u5&3=2i0##yFdA8>wO|04ag}R9{n9!P4Me}0`T+XX(rg) z`eW)Rrj@sbKRfhm9jzuhX9l~KfCWDYqgtQFl8}?nKz;7plJqC$FVJ=Yj1|&DAKjn2 z-0SUNgI(`2qW4YoV^G4xuQlfg*CY2?lwg27kDF=g6F=~j=%%Z<%t18h^PKrO=;{9& zOH^;EU6n4#+e@$i056VAy-c~fH$@L9SH3BKy6YR^lKceM;Bh5qiWrn}kOZ*-XQe=_ zRsFy;ccWY6`0c0Kw)36rl0VuO_s`MDR^P67=;fUQFl3*t*B$Se%pOY}WvCkka2tkH z8Q>hm!A-NO^E~LUFlrwhB7*&AkTiL~Q_7p79pJG6@?`f? zCdhIMeMJYZFKM}cMeL(fmN$9>HEw#_%+-nprxkd@>D1Hc%Yx_V605# z4OQRF#D1;onwMNXO=rnRdLW7G%8bqGc{4x_dqx}_nsm01;s9*Hlo3ur0RmY2n!dts z@MImq+1*J+&R`C|N}3$y&JGRm6>U$l7i>t9ss;Aqt@fs8mgJ5WwU4j_b5cgz?sEVW z!0f0$9}%QULI;a~T#E%|_jEzyU1-lA+CyO)e`3*4FZ+eW&J4*aa}J|kpHg~#1Sf-g zTq17MP9RF^gT-Dk??K39#ikDihJgXf0;F<@smkS&YXM4WJ-Ln($R;utQj2w zWFk6kaR{SecJ}0P16po&5=acbb+8bMzW}vzM={a==d(>YoJDUa%szNG0&DI;?$aK$ zAZoa1Td0s!DW;yhamn*W<1TEi$T?PN4Uc9Q=!2Bl2_r$$nb6LX;vHWNu7!cPuM&*y zxUT@9&x(~?<%I%v0{Raaq-1Zf99HQ5x1doNY~=7+eop^u*@ z{Odu=w~&3_A6q+{L|gRNU|L4X_#i*0dqe)*5mXYNJA#Vmxhe3telBsEgA50A$IX~` z-pnQ(@*a1*k0XyyV0Vo?c3;_4S9Xo-k6k&_UL%~jhs!o5z)vxaK@-p(x~E!MrZGJ= z!bC&lY}ly3ntn_)z9Dk$r8$-Adl_}IxMF`8kpLN^EFgXY)GV*yhCoa8rI@}{KBSlb zf;_Hkhu=#!j$ca}$ZZ4x5+rulJ~fih5`Qz%Sq4a-ZKH6J+dHqi~^f__hT!lu}d^b9yuzvIJobY`ae! zR5e(o8-n>yXU-*kq<5Y?w_P9LaGH4n2gwK{*F>zc)&v?wD=%`wx+3T>W;Q= zrrTQI&dXWoT-NxJ?d-60RvJ)1=IRnk+O%1($ignYkxpiGcL;QVSxE7y;4X0+S+>_SYihB`{J@Ptay5R{(tZMqR0R*OM>-~ z<6u!MNSOc)1()~FJr>3Ocjt7)zwUp$7bEM*^6cE9c7@$;d5`HzV8T;XbuiF~qV2zz zm`$nKF)2^C_6CQRM zHM}>X(qfEh;b7jMTR$Eg*L0XN)OZf@&ZhSzuZ05I(7e~7#fW!NMFU_q@ z8U3Uq2;?E?SW3D04>-{dX2`*a9VO>hxk4(Cy3!Md(`r4*5?#LqEfuc&s~dAlcpwV9 z=`o}-Dqa1SXAn#u7+%x-ZU8q%Jqms)ztB*%#x&36mc1}6gg1O7_B`Vt9_-L-=$rfU z%ehvlvK%0RXWJre&VYTV1YqaW%ncA0F&21}J6abRAh884{62wefUzGGx0wCgpQmbc z#H@(pFS-LvthFtmMjv)?6Keeop_afaRv@dYt-ra%sed12cEhTy^t$Eg*lH_gA&ilOU* z;*&JH$0Z@nINzsPvG}xQ*JKHV%^$!i&o&5&(G;r#5dQHtBL;i;l(tihhnU!RIQTWL zP#iLsOSg?{9xOv#H9i8BNVmQ>BHn=-@=`#8e2W_;u=PUqn<2hv+*)3A*KvE$HpFoa zsWy}r^Rt(ZfTf3VHiAKBwF&Pp({AAzCc#+1h2xp{sGJ>$i>bF|U<7auhW9%5jV2sO z6Z>hP{5=reOlI^@1~wQG)osw2B~_hr-FH37OdbH-<7VO(daJ{=f#)z*`)c>}25?bFQ2=pFtl-#7d%Ie?A=BElK>?lWGNbR&a(fG4~? z1vOsj#Z$wMa_a>-2{lZ>>kLvVmm1{By@Pi$M)fr0KK&-Asc{@{VPHeGS%Ij(Es}{? zmUS1k>gkuZ90pv>q+!W-R|Lii%0zCe)@F0MD?oXQoOj1yIqMqkMF*xRHT~@t| zA*5iagwM_`2?K_qB7)YMF~Q3A~*Tns{=ca_@HoaYB<9$r&MjY|+H)Cp%}|TQiqb z1U-}povo^V znQR@phkh?lalG7yT7fe-p$=UxB z#q|yfNQmeg$M1HGczSL&gr zXSTf{{?_H7&4=+8eTfXg1_Lr|iBa;#8$Xu7F3{{NTyssZn{3eLnfX#j0Gt4%%k0`6 zv2}``BrbMLc#}d)28KPa9}sP_D*qL`ie~U|q(&D+y(RK#ucF5b6FiX!{R7fKpqWwJ zmQh{-!k_l-8B&r}&Nse5yNm2h9_Zr%G}%N>FDf8%Q_tfpgHzerCdGgkJ5aGI%&XN- z0N9^)%^wspua5|ZEr7-p1Ih_(yji+#lux%T%jVt{ z6$8u}$Q2%K^wU_XPMzZeNhIpMh6e#wI26}IinR=WUy%QCH@PGHh`8T-vN<8IEw3rqqOXoL_S4y>B$@kPqyCJfb_HbjTt`wI}e zBRb?&TJcYRyuzI^G9k*SR&smn1xTiti&%ZB4yevDlHZ9hBbtSZop0n{;1%|^7$TAH z+FyPQSc3GcyGTCKf^j#9gko52#IuGwZ^lk9u3qAz(t#vqM5xwBKG70XbrL|-MnGQI_u(=~WrYnW z<;TIdA8D81+w07KBB++|BEvyNA|0fxkNEbA8Vj=_X83jI^U3GfkgIY#H@n&_Fk%#d z`jDSZ(}vw>;FHFrUBMJ0{9>A99+eE17D!UTZv;tcl@;!ZDan{kZ~AmVdWWp@6=vn0 z>qk3B9IG4nWu3E12rJiE%y-LsD{3Goun()RNCFDGJQu0sgL0gJrkQ%>B@=M*4G8(p zQE^-raDsBZz%yk&5cpBc@*nA%%lXuVR$^?8G%w4_tyE;4-n2eIGqT2GznekSjX3;O zs`F9@27h}rp&o4;pyoxSj?N=mmmz8#rGj4}9_4#^h%X-6nw9C0-!;Je6RYR^nac#^ zkheTfh^k|w`UA*)Fs-TN{}G>|6<)W0j2W#Gc3?)0A&@GI(- z>2;KR%Q5!)EQ7jIhtGIx^ZPqX=<*yaUjgQD$#X-aFnIUvS5&1QEUq3#0|IeaV7mB? z(neGdu-w}LDEW*IY|LT97cI%s?7c!I&a1;ocG9+ zngIi>mYm^tjMpbtgf%}9&4c%N7=nkro0RDvzfwjua1VVz}{XKO8JHYnj4rH`NwsSnb zebKFK_(Y2d2QB+!>))08;=8-@SJ?lNh6u9*Z7pOf>Y!^Wf~F^4m}j^^gZdmRP7g2| z*DQe;f|0EHlFjJsac*+pr#@fFcA1;K%J1OYXY4?H^wR3EPo@8cl{m^_*Xa#Ut1?UZ zFu5YSH!SJUx|x4;!l|$Fw5P9 zI_cO&buRvGV_uHOj^(pg5Vps$Nip>{@XiGKm#j|$RYXwpR9~e8$bJsG0-g^JjWqBA z!qwkt*NvM!XC&lehM!TAjzE6@Nre^@9!PP@efJC#m=O3<`4?3w)k_ljKUECt^P89x z4(=~NA*$)}!H;sOn%V|ql0VxD1`=5aD_lm^kjWq${EFuRS3~qFSu7)uMnVTCVy4o| z38zR6x9{dDAnomQyN6HD`H@$m;1k?(;}9VRaox#)9OEP0PY#q$e~z^-ay~hoKqM68 z2hlxkcij4FfJ_@G#z1cPpHzFeXD#PN`a*e#q2J;A#%&03jkV_rDdlp4Mj4Q4m!Ko0 zD*+g4fhkz2XIsulukHo!9l(QNF3y!XHac?c>_ba3MHr$5%#-<`SX&eW5tUQ-@xoy! zWSRiX=OFo(y+Vsws@*Pkw(qaOZmY!Y(eM=F*Z7~D@B02FX%b#vIUNZIYXXCfdQlR{ zrpFOL$gddc1!polErp54$OI6)mdxcBg#Zf=;<)9SgaA3r9v=Io;`fPV=^99nTi?k3 z0(5W#6?Md$Ql=E;#NJ#fu<$qowFDl2V{!SiO!b{@SWu_Joa^fSLWVxQMYEI+vMWvr zH-5jxb5lptDHjZnKnda^0$|y!ek<44k|BN)bpb#FqU7V{wdla>GT*CcEq{eDEVJw9 z4D`eA`7-3>zkvB?K-VY9D67MQD2L1d$tA%?0KhF1DI%W30ANzE4*g^50mGlIq9IX6 z(;j5g!2oKAN#b5L^#n8pw=!8<`GkHAXl<_PJNm-~p_+$s%(=WEzS}#we75J$f^pVq zHSvC5{S+R^#Vs}mV$aO(eFV;RR~t=w?8C7;8Jh|C8EvNdRE`n*%5es0RCQkj4c zKL&pLn}eenc=!P0Peg;5ztx5YG8g{u`$-1*%vT>v-3w4cyBs6HJ5yldA~M32f_i@c E4=FR(S^xk5 literal 0 HcmV?d00001 diff --git a/html/index.html b/html/index.html new file mode 100644 index 0000000..af86e04 --- /dev/null +++ b/html/index.html @@ -0,0 +1,145 @@ + + + + + + + + + + + Accueil + + + + + + + + + + + + + +
+
+
+
+
+
+
+
+ +
+

Atelier Scénographique

+

Interventions en espace public

+
+
+ +
+
+
+
+
+
+

BUREAU D’ÉTUDES SPATIALES

+
+
+
+
+

Fondé en 2015, le + Bureau d’Études Spatiales (B.E.S) était un collectif + à géométrie variable ayant pour dénominateur commun + la volonté de matérialiser des espaces + scénographiques et d’initier des actions ou des + expériences pour le mieux vivre ensemble et en + société. Mêlant des projets artistiques, des + incubations de projets ou encore des prestations + techniques, l’association a développé de nombreux + projets comme l’Atelier du Pignon, le KinoScop, le + festival Nuit Filante ou encore les Ateliers Magellan. Après 5 années d’existence, l’équipe + fondatrice du B.E.S a + décidé de dissoudre l’association afin de scinder les activités + en trois structures, permettant une plus grande lisibilité + et autonomie des différents projets.

+

- InterStices

+

- Espèces d'Espaces

+

- Atelier du Pignon

+

 

+
+ + + + + + + \ No newline at end of file diff --git a/html/muse_manifest.xml b/html/muse_manifest.xml new file mode 100644 index 0000000..c5463ad --- /dev/null +++ b/html/muse_manifest.xml @@ -0,0 +1,2360 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/html/scripts/.htaccess b/html/scripts/.htaccess new file mode 100644 index 0000000..7c6311d --- /dev/null +++ b/html/scripts/.htaccess @@ -0,0 +1,10 @@ +# Auto-generated Muse file. Edits made to this file will be overwritten. + + + Header set Cache-Control "max-age=2592000, public" + + + ExpiresActive On + ExpiresDefault "access plus 30 days" + + \ No newline at end of file diff --git a/html/scripts/html5shiv.js b/html/scripts/html5shiv.js new file mode 100644 index 0000000..dcf351c --- /dev/null +++ b/html/scripts/html5shiv.js @@ -0,0 +1,8 @@ +/* + HTML5 Shiv v3.6.2 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); +a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/\w+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; +c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| +"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup main mark meter nav output progress section summary time video",version:"3.6.2",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f);if(g)return a.createDocumentFragment(); +for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d=0===n})}function lt(e){var t=ct.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}function Lt(e,t){return e.getElementsByTagName(t)[0]||e.appendChild(e.ownerDocument.createElement(t))}function At(e,t){if(t.nodeType!==1||!v.hasData(e))return;var n,r,i,s=v._data(e),o=v._data(t,s),u=s.events;if(u){delete o.handle,o.events={};for(n in u)for(r=0,i=u[n].length;r").appendTo(i.body),n=t.css("display");t.remove();if(n==="none"||n===""){Pt=i.body.appendChild(Pt||v.extend(i.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!Ht||!Pt.createElement)Ht=(Pt.contentWindow||Pt.contentDocument).document,Ht.write(""),Ht.close();t=Ht.body.appendChild(Ht.createElement(e)),n=Dt(t,"display"),i.body.removeChild(Pt)}return Wt[e]=n,n}function fn(e,t,n,r){var i;if(v.isArray(t))v.each(t,function(t,i){n||sn.test(e)?r(e,i):fn(e+"["+(typeof i=="object"?t:"")+"]",i,n,r)});else if(!n&&v.type(t)==="object")for(i in t)fn(e+"["+i+"]",t[i],n,r);else r(e,t)}function Cn(e){return function(t,n){typeof t!="string"&&(n=t,t="*");var r,i,s,o=t.toLowerCase().split(y),u=0,a=o.length;if(v.isFunction(n))for(;u)[^>]*$|#([\w\-]*)$)/,E=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,S=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,T=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,N=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,C=/^-ms-/,k=/-([\da-z])/gi,L=function(e,t){return(t+"").toUpperCase()},A=function(){i.addEventListener?(i.removeEventListener("DOMContentLoaded",A,!1),v.ready()):i.readyState==="complete"&&(i.detachEvent("onreadystatechange",A),v.ready())},O={};v.fn=v.prototype={constructor:v,init:function(e,n,r){var s,o,u,a;if(!e)return this;if(e.nodeType)return this.context=this[0]=e,this.length=1,this;if(typeof e=="string"){e.charAt(0)==="<"&&e.charAt(e.length-1)===">"&&e.length>=3?s=[null,e,null]:s=w.exec(e);if(s&&(s[1]||!n)){if(s[1])return n=n instanceof v?n[0]:n,a=n&&n.nodeType?n.ownerDocument||n:i,e=v.parseHTML(s[1],a,!0),E.test(s[1])&&v.isPlainObject(n)&&this.attr.call(e,n,!0),v.merge(this,e);o=i.getElementById(s[2]);if(o&&o.parentNode){if(o.id!==s[2])return r.find(e);this.length=1,this[0]=o}return this.context=i,this.selector=e,this}return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e)}return v.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),v.makeArray(e,this))},selector:"",jquery:"1.8.3",length:0,size:function(){return this.length},toArray:function(){return l.call(this)},get:function(e){return e==null?this.toArray():e<0?this[this.length+e]:this[e]},pushStack:function(e,t,n){var r=v.merge(this.constructor(),e);return r.prevObject=this,r.context=this.context,t==="find"?r.selector=this.selector+(this.selector?" ":"")+n:t&&(r.selector=this.selector+"."+t+"("+n+")"),r},each:function(e,t){return v.each(this,e,t)},ready:function(e){return v.ready.promise().done(e),this},eq:function(e){return e=+e,e===-1?this.slice(e):this.slice(e,e+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(l.apply(this,arguments),"slice",l.call(arguments).join(","))},map:function(e){return this.pushStack(v.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:[].sort,splice:[].splice},v.fn.init.prototype=v.fn,v.extend=v.fn.extend=function(){var e,n,r,i,s,o,u=arguments[0]||{},a=1,f=arguments.length,l=!1;typeof u=="boolean"&&(l=u,u=arguments[1]||{},a=2),typeof u!="object"&&!v.isFunction(u)&&(u={}),f===a&&(u=this,--a);for(;a0)return;r.resolveWith(i,[v]),v.fn.trigger&&v(i).trigger("ready").off("ready")},isFunction:function(e){return v.type(e)==="function"},isArray:Array.isArray||function(e){return v.type(e)==="array"},isWindow:function(e){return e!=null&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return e==null?String(e):O[h.call(e)]||"object"},isPlainObject:function(e){if(!e||v.type(e)!=="object"||e.nodeType||v.isWindow(e))return!1;try{if(e.constructor&&!p.call(e,"constructor")&&!p.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(n){return!1}var r;for(r in e);return r===t||p.call(e,r)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw new Error(e)},parseHTML:function(e,t,n){var r;return!e||typeof e!="string"?null:(typeof t=="boolean"&&(n=t,t=0),t=t||i,(r=E.exec(e))?[t.createElement(r[1])]:(r=v.buildFragment([e],t,n?null:[]),v.merge([],(r.cacheable?v.clone(r.fragment):r.fragment).childNodes)))},parseJSON:function(t){if(!t||typeof t!="string")return null;t=v.trim(t);if(e.JSON&&e.JSON.parse)return e.JSON.parse(t);if(S.test(t.replace(T,"@").replace(N,"]").replace(x,"")))return(new Function("return "+t))();v.error("Invalid JSON: "+t)},parseXML:function(n){var r,i;if(!n||typeof n!="string")return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(s){r=t}return(!r||!r.documentElement||r.getElementsByTagName("parsererror").length)&&v.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&g.test(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(C,"ms-").replace(k,L)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,n,r){var i,s=0,o=e.length,u=o===t||v.isFunction(e);if(r){if(u){for(i in e)if(n.apply(e[i],r)===!1)break}else for(;s0&&e[0]&&e[a-1]||a===0||v.isArray(e));if(f)for(;u-1)a.splice(n,1),i&&(n<=o&&o--,n<=u&&u--)}),this},has:function(e){return v.inArray(e,a)>-1},empty:function(){return a=[],this},disable:function(){return a=f=n=t,this},disabled:function(){return!a},lock:function(){return f=t,n||c.disable(),this},locked:function(){return!f},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],a&&(!r||f)&&(i?f.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!r}};return c},v.extend({Deferred:function(e){var t=[["resolve","done",v.Callbacks("once memory"),"resolved"],["reject","fail",v.Callbacks("once memory"),"rejected"],["notify","progress",v.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return v.Deferred(function(n){v.each(t,function(t,r){var s=r[0],o=e[t];i[r[1]](v.isFunction(o)?function(){var e=o.apply(this,arguments);e&&v.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===i?n:this,[e])}:n[s])}),e=null}).promise()},promise:function(e){return e!=null?v.extend(e,r):r}},i={};return r.pipe=r.then,v.each(t,function(e,s){var o=s[2],u=s[3];r[s[1]]=o.add,u&&o.add(function(){n=u},t[e^1][2].disable,t[2][2].lock),i[s[0]]=o.fire,i[s[0]+"With"]=o.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=l.call(arguments),r=n.length,i=r!==1||e&&v.isFunction(e.promise)?r:0,s=i===1?e:v.Deferred(),o=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?l.call(arguments):r,n===u?s.notifyWith(t,n):--i||s.resolveWith(t,n)}},u,a,f;if(r>1){u=new Array(r),a=new Array(r),f=new Array(r);for(;t
a",n=p.getElementsByTagName("*"),r=p.getElementsByTagName("a")[0];if(!n||!r||!n.length)return{};s=i.createElement("select"),o=s.appendChild(i.createElement("option")),u=p.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={leadingWhitespace:p.firstChild.nodeType===3,tbody:!p.getElementsByTagName("tbody").length,htmlSerialize:!!p.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:r.getAttribute("href")==="/a",opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:u.value==="on",optSelected:o.selected,getSetAttribute:p.className!=="t",enctype:!!i.createElement("form").enctype,html5Clone:i.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:i.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},u.checked=!0,t.noCloneChecked=u.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!o.disabled;try{delete p.test}catch(d){t.deleteExpando=!1}!p.addEventListener&&p.attachEvent&&p.fireEvent&&(p.attachEvent("onclick",h=function(){t.noCloneEvent=!1}),p.cloneNode(!0).fireEvent("onclick"),p.detachEvent("onclick",h)),u=i.createElement("input"),u.value="t",u.setAttribute("type","radio"),t.radioValue=u.value==="t",u.setAttribute("checked","checked"),u.setAttribute("name","t"),p.appendChild(u),a=i.createDocumentFragment(),a.appendChild(p.lastChild),t.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,t.appendChecked=u.checked,a.removeChild(u),a.appendChild(p);if(p.attachEvent)for(l in{submit:!0,change:!0,focusin:!0})f="on"+l,c=f in p,c||(p.setAttribute(f,"return;"),c=typeof p[f]=="function"),t[l+"Bubbles"]=c;return v(function(){var n,r,s,o,u="padding:0;margin:0;border:0;display:block;overflow:hidden;",a=i.getElementsByTagName("body")[0];if(!a)return;n=i.createElement("div"),n.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",a.insertBefore(n,a.firstChild),r=i.createElement("div"),n.appendChild(r),r.innerHTML="
t
",s=r.getElementsByTagName("td"),s[0].style.cssText="padding:0;margin:0;border:0;display:none",c=s[0].offsetHeight===0,s[0].style.display="",s[1].style.display="none",t.reliableHiddenOffsets=c&&s[0].offsetHeight===0,r.innerHTML="",r.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=r.offsetWidth===4,t.doesNotIncludeMarginInBodyOffset=a.offsetTop!==1,e.getComputedStyle&&(t.pixelPosition=(e.getComputedStyle(r,null)||{}).top!=="1%",t.boxSizingReliable=(e.getComputedStyle(r,null)||{width:"4px"}).width==="4px",o=i.createElement("div"),o.style.cssText=r.style.cssText=u,o.style.marginRight=o.style.width="0",r.style.width="1px",r.appendChild(o),t.reliableMarginRight=!parseFloat((e.getComputedStyle(o,null)||{}).marginRight)),typeof r.style.zoom!="undefined"&&(r.innerHTML="",r.style.cssText=u+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=r.offsetWidth===3,r.style.display="block",r.style.overflow="visible",r.innerHTML="
",r.firstChild.style.width="5px",t.shrinkWrapBlocks=r.offsetWidth!==3,n.style.zoom=1),a.removeChild(n),n=r=s=o=null}),a.removeChild(p),n=r=s=o=u=a=p=null,t}();var D=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;v.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(v.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?v.cache[e[v.expando]]:e[v.expando],!!e&&!B(e)},data:function(e,n,r,i){if(!v.acceptData(e))return;var s,o,u=v.expando,a=typeof n=="string",f=e.nodeType,l=f?v.cache:e,c=f?e[u]:e[u]&&u;if((!c||!l[c]||!i&&!l[c].data)&&a&&r===t)return;c||(f?e[u]=c=v.deletedIds.pop()||v.guid++:c=u),l[c]||(l[c]={},f||(l[c].toJSON=v.noop));if(typeof n=="object"||typeof n=="function")i?l[c]=v.extend(l[c],n):l[c].data=v.extend(l[c].data,n);return s=l[c],i||(s.data||(s.data={}),s=s.data),r!==t&&(s[v.camelCase(n)]=r),a?(o=s[n],o==null&&(o=s[v.camelCase(n)])):o=s,o},removeData:function(e,t,n){if(!v.acceptData(e))return;var r,i,s,o=e.nodeType,u=o?v.cache:e,a=o?e[v.expando]:v.expando;if(!u[a])return;if(t){r=n?u[a]:u[a].data;if(r){v.isArray(t)||(t in r?t=[t]:(t=v.camelCase(t),t in r?t=[t]:t=t.split(" ")));for(i=0,s=t.length;i1,null,!1))},removeData:function(e){return this.each(function(){v.removeData(this,e)})}}),v.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=v._data(e,t),n&&(!r||v.isArray(n)?r=v._data(e,t,v.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=v.queue(e,t),r=n.length,i=n.shift(),s=v._queueHooks(e,t),o=function(){v.dequeue(e,t)};i==="inprogress"&&(i=n.shift(),r--),i&&(t==="fx"&&n.unshift("inprogress"),delete s.stop,i.call(e,o,s)),!r&&s&&s.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return v._data(e,n)||v._data(e,n,{empty:v.Callbacks("once memory").add(function(){v.removeData(e,t+"queue",!0),v.removeData(e,n,!0)})})}}),v.fn.extend({queue:function(e,n){var r=2;return typeof e!="string"&&(n=e,e="fx",r--),arguments.length1)},removeAttr:function(e){return this.each(function(){v.removeAttr(this,e)})},prop:function(e,t){return v.access(this,v.prop,e,t,arguments.length>1)},removeProp:function(e){return e=v.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,s,o,u;if(v.isFunction(e))return this.each(function(t){v(this).addClass(e.call(this,t,this.className))});if(e&&typeof e=="string"){t=e.split(y);for(n=0,r=this.length;n=0)r=r.replace(" "+n[s]+" "," ");i.className=e?v.trim(r):""}}}return this},toggleClass:function(e,t){var n=typeof e,r=typeof t=="boolean";return v.isFunction(e)?this.each(function(n){v(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if(n==="string"){var i,s=0,o=v(this),u=t,a=e.split(y);while(i=a[s++])u=r?u:!o.hasClass(i),o[u?"addClass":"removeClass"](i)}else if(n==="undefined"||n==="boolean")this.className&&v._data(this,"__className__",this.className),this.className=this.className||e===!1?"":v._data(this,"__className__")||""})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;n=0)return!0;return!1},val:function(e){var n,r,i,s=this[0];if(!arguments.length){if(s)return n=v.valHooks[s.type]||v.valHooks[s.nodeName.toLowerCase()],n&&"get"in n&&(r=n.get(s,"value"))!==t?r:(r=s.value,typeof r=="string"?r.replace(R,""):r==null?"":r);return}return i=v.isFunction(e),this.each(function(r){var s,o=v(this);if(this.nodeType!==1)return;i?s=e.call(this,r,o.val()):s=e,s==null?s="":typeof s=="number"?s+="":v.isArray(s)&&(s=v.map(s,function(e){return e==null?"":e+""})),n=v.valHooks[this.type]||v.valHooks[this.nodeName.toLowerCase()];if(!n||!("set"in n)||n.set(this,s,"value")===t)this.value=s})}}),v.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,s=e.type==="select-one"||i<0,o=s?null:[],u=s?i+1:r.length,a=i<0?u:s?i:0;for(;a=0}),n.length||(e.selectedIndex=-1),n}}},attrFn:{},attr:function(e,n,r,i){var s,o,u,a=e.nodeType;if(!e||a===3||a===8||a===2)return;if(i&&v.isFunction(v.fn[n]))return v(e)[n](r);if(typeof e.getAttribute=="undefined")return v.prop(e,n,r);u=a!==1||!v.isXMLDoc(e),u&&(n=n.toLowerCase(),o=v.attrHooks[n]||(X.test(n)?F:j));if(r!==t){if(r===null){v.removeAttr(e,n);return}return o&&"set"in o&&u&&(s=o.set(e,r,n))!==t?s:(e.setAttribute(n,r+""),r)}return o&&"get"in o&&u&&(s=o.get(e,n))!==null?s:(s=e.getAttribute(n),s===null?t:s)},removeAttr:function(e,t){var n,r,i,s,o=0;if(t&&e.nodeType===1){r=t.split(y);for(;o=0}})});var $=/^(?:textarea|input|select)$/i,J=/^([^\.]*|)(?:\.(.+)|)$/,K=/(?:^|\s)hover(\.\S+|)\b/,Q=/^key/,G=/^(?:mouse|contextmenu)|click/,Y=/^(?:focusinfocus|focusoutblur)$/,Z=function(e){return v.event.special.hover?e:e.replace(K,"mouseenter$1 mouseleave$1")};v.event={add:function(e,n,r,i,s){var o,u,a,f,l,c,h,p,d,m,g;if(e.nodeType===3||e.nodeType===8||!n||!r||!(o=v._data(e)))return;r.handler&&(d=r,r=d.handler,s=d.selector),r.guid||(r.guid=v.guid++),a=o.events,a||(o.events=a={}),u=o.handle,u||(o.handle=u=function(e){return typeof v=="undefined"||!!e&&v.event.triggered===e.type?t:v.event.dispatch.apply(u.elem,arguments)},u.elem=e),n=v.trim(Z(n)).split(" ");for(f=0;f=0&&(y=y.slice(0,-1),a=!0),y.indexOf(".")>=0&&(b=y.split("."),y=b.shift(),b.sort());if((!s||v.event.customEvent[y])&&!v.event.global[y])return;n=typeof n=="object"?n[v.expando]?n:new v.Event(y,n):new v.Event(y),n.type=y,n.isTrigger=!0,n.exclusive=a,n.namespace=b.join("."),n.namespace_re=n.namespace?new RegExp("(^|\\.)"+b.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,h=y.indexOf(":")<0?"on"+y:"";if(!s){u=v.cache;for(f in u)u[f].events&&u[f].events[y]&&v.event.trigger(n,r,u[f].handle.elem,!0);return}n.result=t,n.target||(n.target=s),r=r!=null?v.makeArray(r):[],r.unshift(n),p=v.event.special[y]||{};if(p.trigger&&p.trigger.apply(s,r)===!1)return;m=[[s,p.bindType||y]];if(!o&&!p.noBubble&&!v.isWindow(s)){g=p.delegateType||y,l=Y.test(g+y)?s:s.parentNode;for(c=s;l;l=l.parentNode)m.push([l,g]),c=l;c===(s.ownerDocument||i)&&m.push([c.defaultView||c.parentWindow||e,g])}for(f=0;f=0:v.find(h,this,null,[s]).length),u[h]&&f.push(c);f.length&&w.push({elem:s,matches:f})}d.length>m&&w.push({elem:this,matches:d.slice(m)});for(r=0;r0?this.on(t,null,e,n):this.trigger(t)},Q.test(t)&&(v.event.fixHooks[t]=v.event.keyHooks),G.test(t)&&(v.event.fixHooks[t]=v.event.mouseHooks)}),function(e,t){function nt(e,t,n,r){n=n||[],t=t||g;var i,s,a,f,l=t.nodeType;if(!e||typeof e!="string")return n;if(l!==1&&l!==9)return[];a=o(t);if(!a&&!r)if(i=R.exec(e))if(f=i[1]){if(l===9){s=t.getElementById(f);if(!s||!s.parentNode)return n;if(s.id===f)return n.push(s),n}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(f))&&u(t,s)&&s.id===f)return n.push(s),n}else{if(i[2])return S.apply(n,x.call(t.getElementsByTagName(e),0)),n;if((f=i[3])&&Z&&t.getElementsByClassName)return S.apply(n,x.call(t.getElementsByClassName(f),0)),n}return vt(e.replace(j,"$1"),t,n,r,a)}function rt(e){return function(t){var n=t.nodeName.toLowerCase();return n==="input"&&t.type===e}}function it(e){return function(t){var n=t.nodeName.toLowerCase();return(n==="input"||n==="button")&&t.type===e}}function st(e){return N(function(t){return t=+t,N(function(n,r){var i,s=e([],n.length,t),o=s.length;while(o--)n[i=s[o]]&&(n[i]=!(r[i]=n[i]))})})}function ot(e,t,n){if(e===t)return n;var r=e.nextSibling;while(r){if(r===t)return-1;r=r.nextSibling}return 1}function ut(e,t){var n,r,s,o,u,a,f,l=L[d][e+" "];if(l)return t?0:l.slice(0);u=e,a=[],f=i.preFilter;while(u){if(!n||(r=F.exec(u)))r&&(u=u.slice(r[0].length)||u),a.push(s=[]);n=!1;if(r=I.exec(u))s.push(n=new m(r.shift())),u=u.slice(n.length),n.type=r[0].replace(j," ");for(o in i.filter)(r=J[o].exec(u))&&(!f[o]||(r=f[o](r)))&&(s.push(n=new m(r.shift())),u=u.slice(n.length),n.type=o,n.matches=r);if(!n)break}return t?u.length:u?nt.error(e):L(e,a).slice(0)}function at(e,t,r){var i=t.dir,s=r&&t.dir==="parentNode",o=w++;return t.first?function(t,n,r){while(t=t[i])if(s||t.nodeType===1)return e(t,n,r)}:function(t,r,u){if(!u){var a,f=b+" "+o+" ",l=f+n;while(t=t[i])if(s||t.nodeType===1){if((a=t[d])===l)return t.sizset;if(typeof a=="string"&&a.indexOf(f)===0){if(t.sizset)return t}else{t[d]=l;if(e(t,r,u))return t.sizset=!0,t;t.sizset=!1}}}else while(t=t[i])if(s||t.nodeType===1)if(e(t,r,u))return t}}function ft(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function lt(e,t,n,r,i){var s,o=[],u=0,a=e.length,f=t!=null;for(;u-1&&(s[f]=!(o[f]=c))}}else g=lt(g===o?g.splice(d,g.length):g),i?i(null,o,g,a):S.apply(o,g)})}function ht(e){var t,n,r,s=e.length,o=i.relative[e[0].type],u=o||i.relative[" "],a=o?1:0,f=at(function(e){return e===t},u,!0),l=at(function(e){return T.call(t,e)>-1},u,!0),h=[function(e,n,r){return!o&&(r||n!==c)||((t=n).nodeType?f(e,n,r):l(e,n,r))}];for(;a1&&ft(h),a>1&&e.slice(0,a-1).join("").replace(j,"$1"),n,a0,s=e.length>0,o=function(u,a,f,l,h){var p,d,v,m=[],y=0,w="0",x=u&&[],T=h!=null,N=c,C=u||s&&i.find.TAG("*",h&&a.parentNode||a),k=b+=N==null?1:Math.E;T&&(c=a!==g&&a,n=o.el);for(;(p=C[w])!=null;w++){if(s&&p){for(d=0;v=e[d];d++)if(v(p,a,f)){l.push(p);break}T&&(b=k,n=++o.el)}r&&((p=!v&&p)&&y--,u&&x.push(p))}y+=w;if(r&&w!==y){for(d=0;v=t[d];d++)v(x,m,a,f);if(u){if(y>0)while(w--)!x[w]&&!m[w]&&(m[w]=E.call(l));m=lt(m)}S.apply(l,m),T&&!u&&m.length>0&&y+t.length>1&&nt.uniqueSort(l)}return T&&(b=k,c=N),x};return o.el=0,r?N(o):o}function dt(e,t,n){var r=0,i=t.length;for(;r2&&(f=u[0]).type==="ID"&&t.nodeType===9&&!s&&i.relative[u[1].type]){t=i.find.ID(f.matches[0].replace($,""),t,s)[0];if(!t)return n;e=e.slice(u.shift().length)}for(o=J.POS.test(e)?-1:u.length-1;o>=0;o--){f=u[o];if(i.relative[l=f.type])break;if(c=i.find[l])if(r=c(f.matches[0].replace($,""),z.test(u[0].type)&&t.parentNode||t,s)){u.splice(o,1),e=r.length&&u.join("");if(!e)return S.apply(n,x.call(r,0)),n;break}}}return a(e,h)(r,t,s,n,z.test(e)),n}function mt(){}var n,r,i,s,o,u,a,f,l,c,h=!0,p="undefined",d=("sizcache"+Math.random()).replace(".",""),m=String,g=e.document,y=g.documentElement,b=0,w=0,E=[].pop,S=[].push,x=[].slice,T=[].indexOf||function(e){var t=0,n=this.length;for(;ti.cacheLength&&delete e[t.shift()],e[n+" "]=r},e)},k=C(),L=C(),A=C(),O="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",_=M.replace("w","w#"),D="([*^$|!~]?=)",P="\\["+O+"*("+M+")"+O+"*(?:"+D+O+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+_+")|)|)"+O+"*\\]",H=":("+M+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+P+")|[^:]|\\\\.)*|.*))\\)|)",B=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+O+"*((?:-\\d)?\\d*)"+O+"*\\)|)(?=[^-]|$)",j=new RegExp("^"+O+"+|((?:^|[^\\\\])(?:\\\\.)*)"+O+"+$","g"),F=new RegExp("^"+O+"*,"+O+"*"),I=new RegExp("^"+O+"*([\\x20\\t\\r\\n\\f>+~])"+O+"*"),q=new RegExp(H),R=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,U=/^:not/,z=/[\x20\t\r\n\f]*[+~]/,W=/:not\($/,X=/h\d/i,V=/input|select|textarea|button/i,$=/\\(?!\\)/g,J={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),NAME:new RegExp("^\\[name=['\"]?("+M+")['\"]?\\]"),TAG:new RegExp("^("+M.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+H),POS:new RegExp(B,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+O+"*(even|odd|(([+-]|)(\\d*)n|)"+O+"*(?:([+-]|)"+O+"*(\\d+)|))"+O+"*\\)|)","i"),needsContext:new RegExp("^"+O+"*[>+~]|"+B,"i")},K=function(e){var t=g.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}},Q=K(function(e){return e.appendChild(g.createComment("")),!e.getElementsByTagName("*").length}),G=K(function(e){return e.innerHTML="",e.firstChild&&typeof e.firstChild.getAttribute!==p&&e.firstChild.getAttribute("href")==="#"}),Y=K(function(e){e.innerHTML="";var t=typeof e.lastChild.getAttribute("multiple");return t!=="boolean"&&t!=="string"}),Z=K(function(e){return e.innerHTML="",!e.getElementsByClassName||!e.getElementsByClassName("e").length?!1:(e.lastChild.className="e",e.getElementsByClassName("e").length===2)}),et=K(function(e){e.id=d+0,e.innerHTML="
",y.insertBefore(e,y.firstChild);var t=g.getElementsByName&&g.getElementsByName(d).length===2+g.getElementsByName(d+0).length;return r=!g.getElementById(d),y.removeChild(e),t});try{x.call(y.childNodes,0)[0].nodeType}catch(tt){x=function(e){var t,n=[];for(;t=this[e];e++)n.push(t);return n}}nt.matches=function(e,t){return nt(e,null,null,t)},nt.matchesSelector=function(e,t){return nt(t,null,null,[e]).length>0},s=nt.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(i===1||i===9||i===11){if(typeof e.textContent=="string")return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=s(e)}else if(i===3||i===4)return e.nodeValue}else for(;t=e[r];r++)n+=s(t);return n},o=nt.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?t.nodeName!=="HTML":!1},u=nt.contains=y.contains?function(e,t){var n=e.nodeType===9?e.documentElement:e,r=t&&t.parentNode;return e===r||!!(r&&r.nodeType===1&&n.contains&&n.contains(r))}:y.compareDocumentPosition?function(e,t){return t&&!!(e.compareDocumentPosition(t)&16)}:function(e,t){while(t=t.parentNode)if(t===e)return!0;return!1},nt.attr=function(e,t){var n,r=o(e);return r||(t=t.toLowerCase()),(n=i.attrHandle[t])?n(e):r||Y?e.getAttribute(t):(n=e.getAttributeNode(t),n?typeof e[t]=="boolean"?e[t]?t:null:n.specified?n.value:null:null)},i=nt.selectors={cacheLength:50,createPseudo:N,match:J,attrHandle:G?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},find:{ID:r?function(e,t,n){if(typeof t.getElementById!==p&&!n){var r=t.getElementById(e);return r&&r.parentNode?[r]:[]}}:function(e,n,r){if(typeof n.getElementById!==p&&!r){var i=n.getElementById(e);return i?i.id===e||typeof i.getAttributeNode!==p&&i.getAttributeNode("id").value===e?[i]:t:[]}},TAG:Q?function(e,t){if(typeof t.getElementsByTagName!==p)return t.getElementsByTagName(e)}:function(e,t){var n=t.getElementsByTagName(e);if(e==="*"){var r,i=[],s=0;for(;r=n[s];s++)r.nodeType===1&&i.push(r);return i}return n},NAME:et&&function(e,t){if(typeof t.getElementsByName!==p)return t.getElementsByName(name)},CLASS:Z&&function(e,t,n){if(typeof t.getElementsByClassName!==p&&!n)return t.getElementsByClassName(e)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace($,""),e[3]=(e[4]||e[5]||"").replace($,""),e[2]==="~="&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),e[1]==="nth"?(e[2]||nt.error(e[0]),e[3]=+(e[3]?e[4]+(e[5]||1):2*(e[2]==="even"||e[2]==="odd")),e[4]=+(e[6]+e[7]||e[2]==="odd")):e[2]&&nt.error(e[0]),e},PSEUDO:function(e){var t,n;if(J.CHILD.test(e[0]))return null;if(e[3])e[2]=e[3];else if(t=e[4])q.test(t)&&(n=ut(t,!0))&&(n=t.indexOf(")",t.length-n)-t.length)&&(t=t.slice(0,n),e[0]=e[0].slice(0,n)),e[2]=t;return e.slice(0,3)}},filter:{ID:r?function(e){return e=e.replace($,""),function(t){return t.getAttribute("id")===e}}:function(e){return e=e.replace($,""),function(t){var n=typeof t.getAttributeNode!==p&&t.getAttributeNode("id");return n&&n.value===e}},TAG:function(e){return e==="*"?function(){return!0}:(e=e.replace($,"").toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=k[d][e+" "];return t||(t=new RegExp("(^|"+O+")"+e+"("+O+"|$)"))&&k(e,function(e){return t.test(e.className||typeof e.getAttribute!==p&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r,i){var s=nt.attr(r,e);return s==null?t==="!=":t?(s+="",t==="="?s===n:t==="!="?s!==n:t==="^="?n&&s.indexOf(n)===0:t==="*="?n&&s.indexOf(n)>-1:t==="$="?n&&s.substr(s.length-n.length)===n:t==="~="?(" "+s+" ").indexOf(n)>-1:t==="|="?s===n||s.substr(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r){return e==="nth"?function(e){var t,i,s=e.parentNode;if(n===1&&r===0)return!0;if(s){i=0;for(t=s.firstChild;t;t=t.nextSibling)if(t.nodeType===1){i++;if(e===t)break}}return i-=r,i===n||i%n===0&&i/n>=0}:function(t){var n=t;switch(e){case"only":case"first":while(n=n.previousSibling)if(n.nodeType===1)return!1;if(e==="first")return!0;n=t;case"last":while(n=n.nextSibling)if(n.nodeType===1)return!1;return!0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||nt.error("unsupported pseudo: "+e);return r[d]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?N(function(e,n){var i,s=r(e,t),o=s.length;while(o--)i=T.call(e,s[o]),e[i]=!(n[i]=s[o])}):function(e){return r(e,0,n)}):r}},pseudos:{not:N(function(e){var t=[],n=[],r=a(e.replace(j,"$1"));return r[d]?N(function(e,t,n,i){var s,o=r(e,null,i,[]),u=e.length;while(u--)if(s=o[u])e[u]=!(t[u]=s)}):function(e,i,s){return t[0]=e,r(t,null,s,n),!n.pop()}}),has:N(function(e){return function(t){return nt(e,t).length>0}}),contains:N(function(e){return function(t){return(t.textContent||t.innerText||s(t)).indexOf(e)>-1}}),enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&!!e.checked||t==="option"&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},parent:function(e){return!i.pseudos.empty(e)},empty:function(e){var t;e=e.firstChild;while(e){if(e.nodeName>"@"||(t=e.nodeType)===3||t===4)return!1;e=e.nextSibling}return!0},header:function(e){return X.test(e.nodeName)},text:function(e){var t,n;return e.nodeName.toLowerCase()==="input"&&(t=e.type)==="text"&&((n=e.getAttribute("type"))==null||n.toLowerCase()===t)},radio:rt("radio"),checkbox:rt("checkbox"),file:rt("file"),password:rt("password"),image:rt("image"),submit:it("submit"),reset:it("reset"),button:function(e){var t=e.nodeName.toLowerCase();return t==="input"&&e.type==="button"||t==="button"},input:function(e){return V.test(e.nodeName)},focus:function(e){var t=e.ownerDocument;return e===t.activeElement&&(!t.hasFocus||t.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},active:function(e){return e===e.ownerDocument.activeElement},first:st(function(){return[0]}),last:st(function(e,t){return[t-1]}),eq:st(function(e,t,n){return[n<0?n+t:n]}),even:st(function(e,t){for(var n=0;n=0;)e.push(r);return e}),gt:st(function(e,t,n){for(var r=n<0?n+t:n;++r",e.querySelectorAll("[selected]").length||i.push("\\["+O+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||i.push(":checked")}),K(function(e){e.innerHTML="

",e.querySelectorAll("[test^='']").length&&i.push("[*^$]="+O+"*(?:\"\"|'')"),e.innerHTML="",e.querySelectorAll(":enabled").length||i.push(":enabled",":disabled")}),i=new RegExp(i.join("|")),vt=function(e,r,s,o,u){if(!o&&!u&&!i.test(e)){var a,f,l=!0,c=d,h=r,p=r.nodeType===9&&e;if(r.nodeType===1&&r.nodeName.toLowerCase()!=="object"){a=ut(e),(l=r.getAttribute("id"))?c=l.replace(n,"\\$&"):r.setAttribute("id",c),c="[id='"+c+"'] ",f=a.length;while(f--)a[f]=c+a[f].join("");h=z.test(e)&&r.parentNode||r,p=a.join(",")}if(p)try{return S.apply(s,x.call(h.querySelectorAll(p),0)),s}catch(v){}finally{l||r.removeAttribute("id")}}return t(e,r,s,o,u)},u&&(K(function(t){e=u.call(t,"div");try{u.call(t,"[test!='']:sizzle"),s.push("!=",H)}catch(n){}}),s=new RegExp(s.join("|")),nt.matchesSelector=function(t,n){n=n.replace(r,"='$1']");if(!o(t)&&!s.test(n)&&!i.test(n))try{var a=u.call(t,n);if(a||e||t.document&&t.document.nodeType!==11)return a}catch(f){}return nt(n,null,null,[t]).length>0})}(),i.pseudos.nth=i.pseudos.eq,i.filters=mt.prototype=i.pseudos,i.setFilters=new mt,nt.attr=v.attr,v.find=nt,v.expr=nt.selectors,v.expr[":"]=v.expr.pseudos,v.unique=nt.uniqueSort,v.text=nt.getText,v.isXMLDoc=nt.isXML,v.contains=nt.contains}(e);var nt=/Until$/,rt=/^(?:parents|prev(?:Until|All))/,it=/^.[^:#\[\.,]*$/,st=v.expr.match.needsContext,ot={children:!0,contents:!0,next:!0,prev:!0};v.fn.extend({find:function(e){var t,n,r,i,s,o,u=this;if(typeof e!="string")return v(e).filter(function(){for(t=0,n=u.length;t0)for(i=r;i=0:v.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,s=[],o=st.test(e)||typeof e!="string"?v(e,t||this.context):0;for(;r-1:v.find.matchesSelector(n,e)){s.push(n);break}n=n.parentNode}}return s=s.length>1?v.unique(s):s,this.pushStack(s,"closest",e)},index:function(e){return e?typeof e=="string"?v.inArray(this[0],v(e)):v.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(e,t){var n=typeof e=="string"?v(e,t):v.makeArray(e&&e.nodeType?[e]:e),r=v.merge(this.get(),n);return this.pushStack(ut(n[0])||ut(r[0])?r:v.unique(r))},addBack:function(e){return this.add(e==null?this.prevObject:this.prevObject.filter(e))}}),v.fn.andSelf=v.fn.addBack,v.each({parent:function(e){var t=e.parentNode;return t&&t.nodeType!==11?t:null},parents:function(e){return v.dir(e,"parentNode")},parentsUntil:function(e,t,n){return v.dir(e,"parentNode",n)},next:function(e){return at(e,"nextSibling")},prev:function(e){return at(e,"previousSibling")},nextAll:function(e){return v.dir(e,"nextSibling")},prevAll:function(e){return v.dir(e,"previousSibling")},nextUntil:function(e,t,n){return v.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return v.dir(e,"previousSibling",n)},siblings:function(e){return v.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return v.sibling(e.firstChild)},contents:function(e){return v.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:v.merge([],e.childNodes)}},function(e,t){v.fn[e]=function(n,r){var i=v.map(this,t,n);return nt.test(e)||(r=n),r&&typeof r=="string"&&(i=v.filter(r,i)),i=this.length>1&&!ot[e]?v.unique(i):i,this.length>1&&rt.test(e)&&(i=i.reverse()),this.pushStack(i,e,l.call(arguments).join(","))}}),v.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),t.length===1?v.find.matchesSelector(t[0],e)?[t[0]]:[]:v.find.matches(e,t)},dir:function(e,n,r){var i=[],s=e[n];while(s&&s.nodeType!==9&&(r===t||s.nodeType!==1||!v(s).is(r)))s.nodeType===1&&i.push(s),s=s[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)e.nodeType===1&&e!==t&&n.push(e);return n}});var ct="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",ht=/ jQuery\d+="(?:null|\d+)"/g,pt=/^\s+/,dt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,vt=/<([\w:]+)/,mt=/]","i"),Et=/^(?:checkbox|radio)$/,St=/checked\s*(?:[^=]|=\s*.checked.)/i,xt=/\/(java|ecma)script/i,Tt=/^\s*\s*$/g,Nt={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},Ct=lt(i),kt=Ct.appendChild(i.createElement("div"));Nt.optgroup=Nt.option,Nt.tbody=Nt.tfoot=Nt.colgroup=Nt.caption=Nt.thead,Nt.th=Nt.td,v.support.htmlSerialize||(Nt._default=[1,"X
","
"]),v.fn.extend({text:function(e){return v.access(this,function(e){return e===t?v.text(this):this.empty().append((this[0]&&this[0].ownerDocument||i).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(v.isFunction(e))return this.each(function(t){v(this).wrapAll(e.call(this,t))});if(this[0]){var t=v(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&e.firstChild.nodeType===1)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return v.isFunction(e)?this.each(function(t){v(this).wrapInner(e.call(this,t))}):this.each(function(){var t=v(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=v.isFunction(e);return this.each(function(n){v(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){v.nodeName(this,"body")||v(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(this.nodeType===1||this.nodeType===11)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(e,this.firstChild)})},before:function(){if(!ut(this[0]))return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this)});if(arguments.length){var e=v.clean(arguments);return this.pushStack(v.merge(e,this),"before",this.selector)}},after:function(){if(!ut(this[0]))return this.domManip(arguments,!1,function(e){this.parentNode.insertBefore(e,this.nextSibling)});if(arguments.length){var e=v.clean(arguments);return this.pushStack(v.merge(this,e),"after",this.selector)}},remove:function(e,t){var n,r=0;for(;(n=this[r])!=null;r++)if(!e||v.filter(e,[n]).length)!t&&n.nodeType===1&&(v.cleanData(n.getElementsByTagName("*")),v.cleanData([n])),n.parentNode&&n.parentNode.removeChild(n);return this},empty:function(){var e,t=0;for(;(e=this[t])!=null;t++){e.nodeType===1&&v.cleanData(e.getElementsByTagName("*"));while(e.firstChild)e.removeChild(e.firstChild)}return this},clone:function(e,t){return e=e==null?!1:e,t=t==null?e:t,this.map(function(){return v.clone(this,e,t)})},html:function(e){return v.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return n.nodeType===1?n.innerHTML.replace(ht,""):t;if(typeof e=="string"&&!yt.test(e)&&(v.support.htmlSerialize||!wt.test(e))&&(v.support.leadingWhitespace||!pt.test(e))&&!Nt[(vt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(dt,"<$1>");try{for(;r1&&typeof f=="string"&&St.test(f))return this.each(function(){v(this).domManip(e,n,r)});if(v.isFunction(f))return this.each(function(i){var s=v(this);e[0]=f.call(this,i,n?s.html():t),s.domManip(e,n,r)});if(this[0]){i=v.buildFragment(e,this,l),o=i.fragment,s=o.firstChild,o.childNodes.length===1&&(o=s);if(s){n=n&&v.nodeName(s,"tr");for(u=i.cacheable||c-1;a0?this.clone(!0):this).get(),v(o[i])[t](r),s=s.concat(r);return this.pushStack(s,e,o.selector)}}),v.extend({clone:function(e,t,n){var r,i,s,o;v.support.html5Clone||v.isXMLDoc(e)||!wt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(kt.innerHTML=e.outerHTML,kt.removeChild(o=kt.firstChild));if((!v.support.noCloneEvent||!v.support.noCloneChecked)&&(e.nodeType===1||e.nodeType===11)&&!v.isXMLDoc(e)){Ot(e,o),r=Mt(e),i=Mt(o);for(s=0;r[s];++s)i[s]&&Ot(r[s],i[s])}if(t){At(e,o);if(n){r=Mt(e),i=Mt(o);for(s=0;r[s];++s)At(r[s],i[s])}}return r=i=null,o},clean:function(e,t,n,r){var s,o,u,a,f,l,c,h,p,d,m,g,y=t===i&&Ct,b=[];if(!t||typeof t.createDocumentFragment=="undefined")t=i;for(s=0;(u=e[s])!=null;s++){typeof u=="number"&&(u+="");if(!u)continue;if(typeof u=="string")if(!gt.test(u))u=t.createTextNode(u);else{y=y||lt(t),c=t.createElement("div"),y.appendChild(c),u=u.replace(dt,"<$1>"),a=(vt.exec(u)||["",""])[1].toLowerCase(),f=Nt[a]||Nt._default,l=f[0],c.innerHTML=f[1]+u+f[2];while(l--)c=c.lastChild;if(!v.support.tbody){h=mt.test(u),p=a==="table"&&!h?c.firstChild&&c.firstChild.childNodes:f[1]===""&&!h?c.childNodes:[];for(o=p.length-1;o>=0;--o)v.nodeName(p[o],"tbody")&&!p[o].childNodes.length&&p[o].parentNode.removeChild(p[o])}!v.support.leadingWhitespace&&pt.test(u)&&c.insertBefore(t.createTextNode(pt.exec(u)[0]),c.firstChild),u=c.childNodes,c.parentNode.removeChild(c)}u.nodeType?b.push(u):v.merge(b,u)}c&&(u=c=y=null);if(!v.support.appendChecked)for(s=0;(u=b[s])!=null;s++)v.nodeName(u,"input")?_t(u):typeof u.getElementsByTagName!="undefined"&&v.grep(u.getElementsByTagName("input"),_t);if(n){m=function(e){if(!e.type||xt.test(e.type))return r?r.push(e.parentNode?e.parentNode.removeChild(e):e):n.appendChild(e)};for(s=0;(u=b[s])!=null;s++)if(!v.nodeName(u,"script")||!m(u))n.appendChild(u),typeof u.getElementsByTagName!="undefined"&&(g=v.grep(v.merge([],u.getElementsByTagName("script")),m),b.splice.apply(b,[s+1,0].concat(g)),s+=g.length)}return b},cleanData:function(e,t){var n,r,i,s,o=0,u=v.expando,a=v.cache,f=v.support.deleteExpando,l=v.event.special;for(;(i=e[o])!=null;o++)if(t||v.acceptData(i)){r=i[u],n=r&&a[r];if(n){if(n.events)for(s in n.events)l[s]?v.event.remove(i,s):v.removeEvent(i,s,n.handle);a[r]&&(delete a[r],f?delete i[u]:i.removeAttribute?i.removeAttribute(u):i[u]=null,v.deletedIds.push(r))}}}}),function(){var e,t;v.uaMatch=function(e){e=e.toLowerCase();var t=/(chrome)[ \/]([\w.]+)/.exec(e)||/(webkit)[ \/]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:t[1]||"",version:t[2]||"0"}},e=v.uaMatch(o.userAgent),t={},e.browser&&(t[e.browser]=!0,t.version=e.version),t.chrome?t.webkit=!0:t.webkit&&(t.safari=!0),v.browser=t,v.sub=function(){function e(t,n){return new e.fn.init(t,n)}v.extend(!0,e,this),e.superclass=this,e.fn=e.prototype=this(),e.fn.constructor=e,e.sub=this.sub,e.fn.init=function(r,i){return i&&i instanceof v&&!(i instanceof e)&&(i=e(i)),v.fn.init.call(this,r,i,t)},e.fn.init.prototype=e.fn;var t=e(i);return e}}();var Dt,Pt,Ht,Bt=/alpha\([^)]*\)/i,jt=/opacity=([^)]*)/,Ft=/^(top|right|bottom|left)$/,It=/^(none|table(?!-c[ea]).+)/,qt=/^margin/,Rt=new RegExp("^("+m+")(.*)$","i"),Ut=new RegExp("^("+m+")(?!px)[a-z%]+$","i"),zt=new RegExp("^([-+])=("+m+")","i"),Wt={BODY:"block"},Xt={position:"absolute",visibility:"hidden",display:"block"},Vt={letterSpacing:0,fontWeight:400},$t=["Top","Right","Bottom","Left"],Jt=["Webkit","O","Moz","ms"],Kt=v.fn.toggle;v.fn.extend({css:function(e,n){return v.access(this,function(e,n,r){return r!==t?v.style(e,n,r):v.css(e,n)},e,n,arguments.length>1)},show:function(){return Yt(this,!0)},hide:function(){return Yt(this)},toggle:function(e,t){var n=typeof e=="boolean";return v.isFunction(e)&&v.isFunction(t)?Kt.apply(this,arguments):this.each(function(){(n?e:Gt(this))?v(this).show():v(this).hide()})}}),v.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Dt(e,"opacity");return n===""?"1":n}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":v.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(!e||e.nodeType===3||e.nodeType===8||!e.style)return;var s,o,u,a=v.camelCase(n),f=e.style;n=v.cssProps[a]||(v.cssProps[a]=Qt(f,a)),u=v.cssHooks[n]||v.cssHooks[a];if(r===t)return u&&"get"in u&&(s=u.get(e,!1,i))!==t?s:f[n];o=typeof r,o==="string"&&(s=zt.exec(r))&&(r=(s[1]+1)*s[2]+parseFloat(v.css(e,n)),o="number");if(r==null||o==="number"&&isNaN(r))return;o==="number"&&!v.cssNumber[a]&&(r+="px");if(!u||!("set"in u)||(r=u.set(e,r,i))!==t)try{f[n]=r}catch(l){}},css:function(e,n,r,i){var s,o,u,a=v.camelCase(n);return n=v.cssProps[a]||(v.cssProps[a]=Qt(e.style,a)),u=v.cssHooks[n]||v.cssHooks[a],u&&"get"in u&&(s=u.get(e,!0,i)),s===t&&(s=Dt(e,n)),s==="normal"&&n in Vt&&(s=Vt[n]),r||i!==t?(o=parseFloat(s),r||v.isNumeric(o)?o||0:s):s},swap:function(e,t,n){var r,i,s={};for(i in t)s[i]=e.style[i],e.style[i]=t[i];r=n.call(e);for(i in t)e.style[i]=s[i];return r}}),e.getComputedStyle?Dt=function(t,n){var r,i,s,o,u=e.getComputedStyle(t,null),a=t.style;return u&&(r=u.getPropertyValue(n)||u[n],r===""&&!v.contains(t.ownerDocument,t)&&(r=v.style(t,n)),Ut.test(r)&&qt.test(n)&&(i=a.width,s=a.minWidth,o=a.maxWidth,a.minWidth=a.maxWidth=a.width=r,r=u.width,a.width=i,a.minWidth=s,a.maxWidth=o)),r}:i.documentElement.currentStyle&&(Dt=function(e,t){var n,r,i=e.currentStyle&&e.currentStyle[t],s=e.style;return i==null&&s&&s[t]&&(i=s[t]),Ut.test(i)&&!Ft.test(t)&&(n=s.left,r=e.runtimeStyle&&e.runtimeStyle.left,r&&(e.runtimeStyle.left=e.currentStyle.left),s.left=t==="fontSize"?"1em":i,i=s.pixelLeft+"px",s.left=n,r&&(e.runtimeStyle.left=r)),i===""?"auto":i}),v.each(["height","width"],function(e,t){v.cssHooks[t]={get:function(e,n,r){if(n)return e.offsetWidth===0&&It.test(Dt(e,"display"))?v.swap(e,Xt,function(){return tn(e,t,r)}):tn(e,t,r)},set:function(e,n,r){return Zt(e,n,r?en(e,t,r,v.support.boxSizing&&v.css(e,"boxSizing")==="border-box"):0)}}}),v.support.opacity||(v.cssHooks.opacity={get:function(e,t){return jt.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=v.isNumeric(t)?"alpha(opacity="+t*100+")":"",s=r&&r.filter||n.filter||"";n.zoom=1;if(t>=1&&v.trim(s.replace(Bt,""))===""&&n.removeAttribute){n.removeAttribute("filter");if(r&&!r.filter)return}n.filter=Bt.test(s)?s.replace(Bt,i):s+" "+i}}),v(function(){v.support.reliableMarginRight||(v.cssHooks.marginRight={get:function(e,t){return v.swap(e,{display:"inline-block"},function(){if(t)return Dt(e,"marginRight")})}}),!v.support.pixelPosition&&v.fn.position&&v.each(["top","left"],function(e,t){v.cssHooks[t]={get:function(e,n){if(n){var r=Dt(e,t);return Ut.test(r)?v(e).position()[t]+"px":r}}}})}),v.expr&&v.expr.filters&&(v.expr.filters.hidden=function(e){return e.offsetWidth===0&&e.offsetHeight===0||!v.support.reliableHiddenOffsets&&(e.style&&e.style.display||Dt(e,"display"))==="none"},v.expr.filters.visible=function(e){return!v.expr.filters.hidden(e)}),v.each({margin:"",padding:"",border:"Width"},function(e,t){v.cssHooks[e+t]={expand:function(n){var r,i=typeof n=="string"?n.split(" "):[n],s={};for(r=0;r<4;r++)s[e+$t[r]+t]=i[r]||i[r-2]||i[0];return s}},qt.test(e)||(v.cssHooks[e+t].set=Zt)});var rn=/%20/g,sn=/\[\]$/,on=/\r?\n/g,un=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,an=/^(?:select|textarea)/i;v.fn.extend({serialize:function(){return v.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?v.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||an.test(this.nodeName)||un.test(this.type))}).map(function(e,t){var n=v(this).val();return n==null?null:v.isArray(n)?v.map(n,function(e,n){return{name:t.name,value:e.replace(on,"\r\n")}}):{name:t.name,value:n.replace(on,"\r\n")}}).get()}}),v.param=function(e,n){var r,i=[],s=function(e,t){t=v.isFunction(t)?t():t==null?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};n===t&&(n=v.ajaxSettings&&v.ajaxSettings.traditional);if(v.isArray(e)||e.jquery&&!v.isPlainObject(e))v.each(e,function(){s(this.name,this.value)});else for(r in e)fn(r,e[r],n,s);return i.join("&").replace(rn,"+")};var ln,cn,hn=/#.*$/,pn=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,dn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,vn=/^(?:GET|HEAD)$/,mn=/^\/\//,gn=/\?/,yn=/)<[^<]*)*<\/script>/gi,bn=/([?&])_=[^&]*/,wn=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,En=v.fn.load,Sn={},xn={},Tn=["*/"]+["*"];try{cn=s.href}catch(Nn){cn=i.createElement("a"),cn.href="",cn=cn.href}ln=wn.exec(cn.toLowerCase())||[],v.fn.load=function(e,n,r){if(typeof e!="string"&&En)return En.apply(this,arguments);if(!this.length)return this;var i,s,o,u=this,a=e.indexOf(" ");return a>=0&&(i=e.slice(a,e.length),e=e.slice(0,a)),v.isFunction(n)?(r=n,n=t):n&&typeof n=="object"&&(s="POST"),v.ajax({url:e,type:s,dataType:"html",data:n,complete:function(e,t){r&&u.each(r,o||[e.responseText,t,e])}}).done(function(e){o=arguments,u.html(i?v("
").append(e.replace(yn,"")).find(i):e)}),this},v.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(e,t){v.fn[t]=function(e){return this.on(t,e)}}),v.each(["get","post"],function(e,n){v[n]=function(e,r,i,s){return v.isFunction(r)&&(s=s||i,i=r,r=t),v.ajax({type:n,url:e,data:r,success:i,dataType:s})}}),v.extend({getScript:function(e,n){return v.get(e,t,n,"script")},getJSON:function(e,t,n){return v.get(e,t,n,"json")},ajaxSetup:function(e,t){return t?Ln(e,v.ajaxSettings):(t=e,e=v.ajaxSettings),Ln(e,t),e},ajaxSettings:{url:cn,isLocal:dn.test(ln[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":Tn},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":v.parseJSON,"text xml":v.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:Cn(Sn),ajaxTransport:Cn(xn),ajax:function(e,n){function T(e,n,s,a){var l,y,b,w,S,T=n;if(E===2)return;E=2,u&&clearTimeout(u),o=t,i=a||"",x.readyState=e>0?4:0,s&&(w=An(c,x,s));if(e>=200&&e<300||e===304)c.ifModified&&(S=x.getResponseHeader("Last-Modified"),S&&(v.lastModified[r]=S),S=x.getResponseHeader("Etag"),S&&(v.etag[r]=S)),e===304?(T="notmodified",l=!0):(l=On(c,w),T=l.state,y=l.data,b=l.error,l=!b);else{b=T;if(!T||e)T="error",e<0&&(e=0)}x.status=e,x.statusText=(n||T)+"",l?d.resolveWith(h,[y,T,x]):d.rejectWith(h,[x,T,b]),x.statusCode(g),g=t,f&&p.trigger("ajax"+(l?"Success":"Error"),[x,c,l?y:b]),m.fireWith(h,[x,T]),f&&(p.trigger("ajaxComplete",[x,c]),--v.active||v.event.trigger("ajaxStop"))}typeof e=="object"&&(n=e,e=t),n=n||{};var r,i,s,o,u,a,f,l,c=v.ajaxSetup({},n),h=c.context||c,p=h!==c&&(h.nodeType||h instanceof v)?v(h):v.event,d=v.Deferred(),m=v.Callbacks("once memory"),g=c.statusCode||{},b={},w={},E=0,S="canceled",x={readyState:0,setRequestHeader:function(e,t){if(!E){var n=e.toLowerCase();e=w[n]=w[n]||e,b[e]=t}return this},getAllResponseHeaders:function(){return E===2?i:null},getResponseHeader:function(e){var n;if(E===2){if(!s){s={};while(n=pn.exec(i))s[n[1].toLowerCase()]=n[2]}n=s[e.toLowerCase()]}return n===t?null:n},overrideMimeType:function(e){return E||(c.mimeType=e),this},abort:function(e){return e=e||S,o&&o.abort(e),T(0,e),this}};d.promise(x),x.success=x.done,x.error=x.fail,x.complete=m.add,x.statusCode=function(e){if(e){var t;if(E<2)for(t in e)g[t]=[g[t],e[t]];else t=e[x.status],x.always(t)}return this},c.url=((e||c.url)+"").replace(hn,"").replace(mn,ln[1]+"//"),c.dataTypes=v.trim(c.dataType||"*").toLowerCase().split(y),c.crossDomain==null&&(a=wn.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===ln[1]&&a[2]===ln[2]&&(a[3]||(a[1]==="http:"?80:443))==(ln[3]||(ln[1]==="http:"?80:443)))),c.data&&c.processData&&typeof c.data!="string"&&(c.data=v.param(c.data,c.traditional)),kn(Sn,c,n,x);if(E===2)return x;f=c.global,c.type=c.type.toUpperCase(),c.hasContent=!vn.test(c.type),f&&v.active++===0&&v.event.trigger("ajaxStart");if(!c.hasContent){c.data&&(c.url+=(gn.test(c.url)?"&":"?")+c.data,delete c.data),r=c.url;if(c.cache===!1){var N=v.now(),C=c.url.replace(bn,"$1_="+N);c.url=C+(C===c.url?(gn.test(c.url)?"&":"?")+"_="+N:"")}}(c.data&&c.hasContent&&c.contentType!==!1||n.contentType)&&x.setRequestHeader("Content-Type",c.contentType),c.ifModified&&(r=r||c.url,v.lastModified[r]&&x.setRequestHeader("If-Modified-Since",v.lastModified[r]),v.etag[r]&&x.setRequestHeader("If-None-Match",v.etag[r])),x.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+(c.dataTypes[0]!=="*"?", "+Tn+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)x.setRequestHeader(l,c.headers[l]);if(!c.beforeSend||c.beforeSend.call(h,x,c)!==!1&&E!==2){S="abort";for(l in{success:1,error:1,complete:1})x[l](c[l]);o=kn(xn,c,n,x);if(!o)T(-1,"No Transport");else{x.readyState=1,f&&p.trigger("ajaxSend",[x,c]),c.async&&c.timeout>0&&(u=setTimeout(function(){x.abort("timeout")},c.timeout));try{E=1,o.send(b,T)}catch(k){if(!(E<2))throw k;T(-1,k)}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var Mn=[],_n=/\?/,Dn=/(=)\?(?=&|$)|\?\?/,Pn=v.now();v.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Mn.pop()||v.expando+"_"+Pn++;return this[e]=!0,e}}),v.ajaxPrefilter("json jsonp",function(n,r,i){var s,o,u,a=n.data,f=n.url,l=n.jsonp!==!1,c=l&&Dn.test(f),h=l&&!c&&typeof a=="string"&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Dn.test(a);if(n.dataTypes[0]==="jsonp"||c||h)return s=n.jsonpCallback=v.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,o=e[s],c?n.url=f.replace(Dn,"$1"+s):h?n.data=a.replace(Dn,"$1"+s):l&&(n.url+=(_n.test(f)?"&":"?")+n.jsonp+"="+s),n.converters["script json"]=function(){return u||v.error(s+" was not called"),u[0]},n.dataTypes[0]="json",e[s]=function(){u=arguments},i.always(function(){e[s]=o,n[s]&&(n.jsonpCallback=r.jsonpCallback,Mn.push(s)),u&&v.isFunction(o)&&o(u[0]),u=o=t}),"script"}),v.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(e){return v.globalEval(e),e}}}),v.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),v.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=i.head||i.getElementsByTagName("head")[0]||i.documentElement;return{send:function(s,o){n=i.createElement("script"),n.async="async",e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,i){if(i||!n.readyState||/loaded|complete/.test(n.readyState))n.onload=n.onreadystatechange=null,r&&n.parentNode&&r.removeChild(n),n=t,i||o(200,"success")},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(0,1)}}}});var Hn,Bn=e.ActiveXObject?function(){for(var e in Hn)Hn[e](0,1)}:!1,jn=0;v.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&Fn()||In()}:Fn,function(e){v.extend(v.support,{ajax:!!e,cors:!!e&&"withCredentials"in e})}(v.ajaxSettings.xhr()),v.support.ajax&&v.ajaxTransport(function(n){if(!n.crossDomain||v.support.cors){var r;return{send:function(i,s){var o,u,a=n.xhr();n.username?a.open(n.type,n.url,n.async,n.username,n.password):a.open(n.type,n.url,n.async);if(n.xhrFields)for(u in n.xhrFields)a[u]=n.xhrFields[u];n.mimeType&&a.overrideMimeType&&a.overrideMimeType(n.mimeType),!n.crossDomain&&!i["X-Requested-With"]&&(i["X-Requested-With"]="XMLHttpRequest");try{for(u in i)a.setRequestHeader(u,i[u])}catch(f){}a.send(n.hasContent&&n.data||null),r=function(e,i){var u,f,l,c,h;try{if(r&&(i||a.readyState===4)){r=t,o&&(a.onreadystatechange=v.noop,Bn&&delete Hn[o]);if(i)a.readyState!==4&&a.abort();else{u=a.status,l=a.getAllResponseHeaders(),c={},h=a.responseXML,h&&h.documentElement&&(c.xml=h);try{c.text=a.responseText}catch(p){}try{f=a.statusText}catch(p){f=""}!u&&n.isLocal&&!n.crossDomain?u=c.text?200:404:u===1223&&(u=204)}}}catch(d){i||s(-1,d)}c&&s(u,f,c,l)},n.async?a.readyState===4?setTimeout(r,0):(o=++jn,Bn&&(Hn||(Hn={},v(e).unload(Bn)),Hn[o]=r),a.onreadystatechange=r):r()},abort:function(){r&&r(0,1)}}}});var qn,Rn,Un=/^(?:toggle|show|hide)$/,zn=new RegExp("^(?:([-+])=|)("+m+")([a-z%]*)$","i"),Wn=/queueHooks$/,Xn=[Gn],Vn={"*":[function(e,t){var n,r,i=this.createTween(e,t),s=zn.exec(t),o=i.cur(),u=+o||0,a=1,f=20;if(s){n=+s[2],r=s[3]||(v.cssNumber[e]?"":"px");if(r!=="px"&&u){u=v.css(i.elem,e,!0)||n||1;do a=a||".5",u/=a,v.style(i.elem,e,u+r);while(a!==(a=i.cur()/o)&&a!==1&&--f)}i.unit=r,i.start=u,i.end=s[1]?u+(s[1]+1)*n:n}return i}]};v.Animation=v.extend(Kn,{tweener:function(e,t){v.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;r-1,f={},l={},c,h;a?(l=i.position(),c=l.top,h=l.left):(c=parseFloat(o)||0,h=parseFloat(u)||0),v.isFunction(t)&&(t=t.call(e,n,s)),t.top!=null&&(f.top=t.top-s.top+c),t.left!=null&&(f.left=t.left-s.left+h),"using"in t?t.using.call(e,f):i.css(f)}},v.fn.extend({position:function(){if(!this[0])return;var e=this[0],t=this.offsetParent(),n=this.offset(),r=er.test(t[0].nodeName)?{top:0,left:0}:t.offset();return n.top-=parseFloat(v.css(e,"marginTop"))||0,n.left-=parseFloat(v.css(e,"marginLeft"))||0,r.top+=parseFloat(v.css(t[0],"borderTopWidth"))||0,r.left+=parseFloat(v.css(t[0],"borderLeftWidth"))||0,{top:n.top-r.top,left:n.left-r.left}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||i.body;while(e&&!er.test(e.nodeName)&&v.css(e,"position")==="static")e=e.offsetParent;return e||i.body})}}),v.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);v.fn[e]=function(i){return v.access(this,function(e,i,s){var o=tr(e);if(s===t)return o?n in o?o[n]:o.document.documentElement[i]:e[i];o?o.scrollTo(r?v(o).scrollLeft():s,r?s:v(o).scrollTop()):e[i]=s},e,i,arguments.length,null)}}),v.each({Height:"height",Width:"width"},function(e,n){v.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){v.fn[i]=function(i,s){var o=arguments.length&&(r||typeof i!="boolean"),u=r||(i===!0||s===!0?"margin":"border");return v.access(this,function(n,r,i){var s;return v.isWindow(n)?n.document.documentElement["client"+e]:n.nodeType===9?(s=n.documentElement,Math.max(n.body["scroll"+e],s["scroll"+e],n.body["offset"+e],s["offset"+e],s["client"+e])):i===t?v.css(n,r,i,u):v.style(n,r,i,u)},n,o?i:t,o,null)}})}),e.jQuery=e.$=v,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return v})})(window); \ No newline at end of file diff --git a/html/scripts/jquery.musemenu.js b/html/scripts/jquery.musemenu.js new file mode 100644 index 0000000..237a33d --- /dev/null +++ b/html/scripts/jquery.musemenu.js @@ -0,0 +1,15 @@ +/* + Copyright 2011-2016 Adobe Systems Incorporated. All Rights Reserved. +*/ +(function(c){"function"===typeof define&&define.amd&&define.amd.jQuery?define(["jquery","museutils"],c):c(jQuery)})(function(c){c.fn.museMenu=function(){return this.each(function(){var b=this.id,d=c(this),a=d.closest(".breakpoint"),f="absolute",h,g,j,l,k,i;if(!d.data("initialized")){d.data("initialized",!0);var m=function(a){return a.hasClass("scroll_effect")===!0},n=function(){if(d.css("position")=="fixed"){f="fixed";i=d;var a=Muse.Utils.getStyleSheetRulesById(Muse.Utils.getPageStyleSheets(),b); +h=a?Muse.Utils.getRuleProperty(a,"top"):d.css("top");g=a?Muse.Utils.getRuleProperty(a,"left"):d.css("left");j=a?Muse.Utils.getRuleProperty(a,"right"):d.css("right");l=a?Muse.Utils.getRuleProperty(a,"bottom"):d.css("bottom");k=parseInt(d.css("margin-left"))}else for(a=d.parent();!a.is(document)&&a.length>0&&a.attr("id")!="page";){if(a.css("position")=="fixed"){f="fixed";i=a;var c=a.offset(),m=d.offset(),n=Muse.Utils.getStyleSheetRulesById(Muse.Utils.getPageStyleSheets(),a.attr("id")),o=n?Muse.Utils.getRuleProperty(n, +"top"):a.css("top"),p=n?Muse.Utils.getRuleProperty(n,"left"):a.css("left"),q=n?Muse.Utils.getRuleProperty(n,"right"):a.css("right"),n=n?Muse.Utils.getRuleProperty(n,"bottom"):a.css("bottom");h=o&&o!="auto"?parseInt(o)+(m.top-c.top):o;g=p&&p!="auto"&&p.indexOf("%")==-1?parseInt(p)+(m.left-c.left):p;j=q&&q!="auto"&&q.indexOf("%")==-1?parseInt(q)+(c.left+a.width())-(m.left+d.width()):q;l=n&&n!="auto"?parseInt(n)+(c.top+a.height())-(m.top+d.height()):n;k=parseInt(a.css("margin-left"))+(p&&p.indexOf("%")!= +-1?m.left-c.left:0);break}a=a.parent()}},q=function(b,d){a.is(b)&&t.each(function(){var a=c(this).data("offsetContainerRaw");a&&(d.swapPlaceholderNodesRecursively(a),d.activateIDs(a))})};c("body").on("muse_bp_activate",function(a,b,c,d){q(c,d);n()});n();var p=c(),o=!1,r=d.find(".MenuItemContainer"),t=d.find(".MenuItem"),w=d.find(".SubMenu").add(t),x;w.on("mouseover",function(){o=!0});w.on("mouseleave",function(){o=!1;setTimeout(function(){o===!1&&(r.each(function(){c(this).data("hideSubmenu")()}), +p=c())},300)});r.on("mouseleave",function(a){var b=c(a.target),d=b.closest(".SubMenu");x&&clearTimeout(x);d.length>0&&(x=setTimeout(function(){d.find(".MenuItemContainer").each(function(){c(this).data("hideSubmenu")()});p=b.closest(".MenuItemContainer").data("$parentMenuItemContainer")},300))});r.on("mouseenter",function(){clearTimeout(x)});t.each(function(){var a=c(this),b=a.siblings(".SubMenu"),n=a.closest(".MenuItemContainer"),o=n.parentsUntil(".MenuBar").filter(".MenuItemContainer").length=== +0,q;if(o&&b.length>0)a.data("offsetContainerRaw",c("").hide().appendTo("body")),b.show(),q=b.position().top,b.hide();var t=function(a){a=c(a.target);c(".MenuItem",a.closest(".MenuItemContainer")).length>1||r.each(function(){c(this).data("hideSubmenu")()})};n.data("$parentMenuItemContainer",n.parent().closest(".MenuItemContainer")).data("showSubmenuOnly",function(){if(o&&b.length>0){var p=a.data("offsetContainer"),p=p||a.data("offsetContainerRaw"); +if(!m(p))if(f!="fixed"){var r=n.offset();p.css({left:r.left,top:r.top,width:a.width()})}else{var r=n.position(),D=0,w=0;j&&j!="auto"&&(D=d.outerWidth()-r.left-a.width());l&&l!="auto"&&(w=q);k=parseInt(i.css("margin-left"));if(i!=d){var x=Muse.Utils.getStyleSheetRulesById(Muse.Utils.getPageStyleSheets(),i.attr("id"));(x=x?Muse.Utils.getRuleProperty(x,"left"):i.css("left"))&&x.indexOf("%")!=-1&&(k+=d.offset().left-i.offset().left)}p.css({left:g,top:h,right:j,bottom:l,marginLeft:k+r.left,marginRight:D, +marginTop:r.top,marginBottom:w,width:a.width()})}p.append(b).show();c(".MenuItem",p).on("click",t);a.data("offsetContainer",p);i&&m(i)&&p&&!m(p)&&p.cloneScrollEffectsFrom(i)}b.show();b.find(".SubMenu").hide()}).data("hideSubmenu",function(){var d=a.data("offsetContainer");d&&m(d)&&d.clearScrollEffects();b.hide();d&&c(".MenuItem",d).off("click",t)}).data("isDescendentOf",function(a){for(var b=n.data("$parentMenuItemContainer");b.length>0;){if(a.index(b)>=0)return!0;b=b.data("$parentMenuItemContainer")}return!1}); +var D=function(){var a=p;a.length==0?n.data("showSubmenuOnly")():n.data("$parentMenuItemContainer").index(a)>=0?n.data("showSubmenuOnly")():n.siblings().index(a)>=0?(a.data("hideSubmenu")(),n.data("showSubmenuOnly")()):a.data("isDescendentOf")(n)?n.data("showSubmenuOnly")():a.data("isDescendentOf")(n.siblings(".MenuItemContainer"))?(n.siblings(".MenuItemContainer").each(function(){c(this).data("hideSubmenu")()}),n.data("showSubmenuOnly")()):a.get(0)==n.get(0)&&n.data("showSubmenuOnly")();p=n},w=null; +a.on("mouseenter",function(){a.data("mouseEntered",!0);w=setTimeout(function(){D()},200);a.one("mouseleave",function(){clearTimeout(w);a.data("mouseEntered",!1)})});b.length&&(a.attr("aria-haspopup",!0),Muse.Browser.Features.Touch&&(a.click(function(){return b.is(":visible")}),c(document.documentElement).on(Muse.Browser.Features.Touch.End,Muse.Browser.Features.Touch.Listener(function(d){!b.is(":visible")&&c(d.target).closest(n).length>0?(d.stopPropagation(),Muse.Utils.redirectCancelled=!0,setTimeout(function(){Muse.Utils.redirectCancelled= +!1},16),a.data("mouseEntered")&&setTimeout(function(){n.data("showSubmenuOnly")()},200)):b.is(":visible")&&c(d.target).closest(b).length==0&&c(d.target).closest(n).length==0&&n.data("hideSubmenu")()}))))});t.filter(".MuseMenuActive").each(function(){for(var a=c(this).closest(".MenuItemContainer").data("$parentMenuItemContainer");a&&a.length>0;)a.children(".MenuItem").addClass("MuseMenuActive"),a=a.data("$parentMenuItemContainer")})}})}}); +;(function(){if(!("undefined"==typeof Muse||"undefined"==typeof Muse.assets)){var c=function(a,b){for(var c=0,d=a.length;c").appendTo(h).css({position:"fixed",top:0,left:0,zIndex:100001}).hide(),j=c("
").append(d.$overlaySlice).appendTo(g).css({position:"absolute",top:0,left:0});c(this).css({position:"absolute",left:0,top:0,outline:"none"}).attr({role:"dialog",tabindex:"0"});Muse.Utils.appendChildren(g,c(this));var k=c(this);a&&(Muse.Utils.moveElementsOutsideViewport(d.slideshow.$element.parents()), +k.css({width:d.slideshow.$element.width()+"px"}),Muse.Utils.moveElementsInsideViewport(d.slideshow.$element.parents()));var l=g.siblings("div"),i=c(window),m,n,q=null,a=g.find("a, button, [tabindex], input, textarea, [contenteditable]"),o=a[0],p=a[a.length-1],r=d.$elasticContent,s=r.length?parseInt(r.css("padding-left"))+parseInt(r.css("padding-right"))+parseInt(r.css("border-left-width"))+parseInt(r.css("border-right-width")):0,w=r.length?parseInt(r.css("padding-top"))+parseInt(r.css("padding-bottom"))+ +parseInt(r.css("border-top-width"))+parseInt(r.css("border-bottom-width")):0,y=d.$overlaySlice.outerWidth(),u=d.$overlaySlice.outerHeight(),t={isOpen:!1,reuseAcrossBPs:function(){d.reuseAcrossBPs=!0},handleClose:function(){t.close()},open:function(){if(!t.isOpen){if(!d.reuseAcrossBPs&&d.slideshow.$bp){if(!d.slideshow.$bp.hasClass("active"))return;d.slideshow.breakpoint.swapPlaceholderNodesRecursively(g);d.slideshow.breakpoint.activateIDs(g);c(window).trigger("lightboxresize")}Muse.Utils.showWidgetsWhenReady(g); +m=i.width();n=i.height();t.positionContent(m,n);g.show();j.css({opacity:0}).stop(!0);k.css({opacity:0}).stop(!0);l.attr("aria-hidden","true");window.setTimeout(function(){j.bind("click",t.handleClose)},300);j.animate({opacity:0.99},{queue:!1,duration:d.duration,complete:function(){j.css({opacity:""});k.animate({opacity:1},{queue:!1,duration:d.duration,complete:function(){k.css({opacity:""});t.applyPageDimensions();window.setTimeout(function(){k[0].focus()},void 0)}})}});c(document).bind("keydown", +t.onKeyDown);t.doLayout(m,n);t.isOpen=!0;i.bind("resize",t.onWindowResize);c("body").bind("muse_bp_deactivate",t.onBreakpointChange);t.onWindowResize(null,!0)}},close:function(a){j.unbind("click",t.handleClose);i.unbind("resize",t.onWindowResize);c("body").unbind("muse_bp_deactivate",t.onBreakpointChange);c(document).unbind("keydown",t.onKeyDown);if(d.onClose)d.onClose();j.css({opacity:0.99}).stop(!0);k.css({opacity:0.99}).stop(!0);k.animate({opacity:0},{queue:!1,duration:a?0:d.duration,complete:function(){j.animate({opacity:0}, +{queue:!1,duration:a?0:d.duration,complete:function(){g.hide();k.css({opacity:""});j.css({opacity:""});l.removeAttr("aria-hidden")}})}});t.isOpen=!1},next:function(){if(d.onNext)d.onNext()},previous:function(){if(d.onPrevious)d.onPrevious()},focusTrap:function(a){a.keyCode===9&&(a.shiftKey?a.target===o&&p.focus():a.target===p&&o.focus())},onBreakpointChange:function(){t.close(!0)},onKeyDown:function(a){switch(a.which||a.keyCode){case 37:case 38:k.is(":focus")&&t.previous();break;case 39:case 41:k.is(":focus")&& +t.next();break;case 27:t.close()}t.focusTrap(a)},onWindowResize:function(a,b){var c=i.width(),d=i.height();(b||m!=c||n!=d)&&q==null&&(q=setTimeout(function(){m=i.width();n=i.height();t.doLayout(m,n);t.positionContent(m,n);q=null},10))},doLayout:function(a,b){g.css({width:0,height:0});d.$overlayWedge.css({width:0,height:0});var c=a-s,f=b-w;r.length&&r.hasClass("fullwidth")&&(r.width(c),d.resizeSlidesFn&&d.resizeSlidesFn(c,f));t.applyPageDimensions();Muse.Utils.updateSlideshow_fstpOffsetSize(d.slideshow)}, +applyPageDimensions:function(){function a(){var b=document.createElement("div");b.style.overflow="scroll";b.style.visibility="hidden";b.style.position="absolute";b.style.width="100px";b.style.height="100px";document.body.appendChild(b);var c=b.offsetWidth-b.clientWidth;document.body.removeChild(b);return{width:c}}var b=c(document),h=b.width(),i=b.height(),b=k[0],j=c(b).find("."+d.slideshow.options.viewClassName),j=c(j[0]),l=document.documentElement||document.body;l.clientWidth!=l.offsetWidth&&(h= +l.scrollWidth-1);l.clientHeight!=l.offsetHeight&&ic(window).height()?(i=a(),o=o?(p+i.width)/c(k[0]).width()*100+"%":p+i.width+"px",b.width(o),b.parent().hasClass("wp-slideshow-clip")?b.parent().css({maxHeight:"100vh",overflowY:"auto"}):b.css({maxHeight:"100vh",overflowY:"auto"})):o?b.width(p/c(k[0]).width()*100+"%"):b.width=p+"px";h!=k.css("width")&&(c(window).trigger("lightboxresize"),t.doLayout(m,n),t.positionContent(m,n))},positionContent:function(a,b){var g= +0,h=0;d.slideshow.options.isResponsive?(h=d.$slides.filter(".wp-panel-active"),f&&h!==void 0&&h.length>0?(g=-(d.$slides.outerWidth()/2+(h.offset().left-k.offset().left)),h=-(d.$slides.outerHeight()/2+(h.offset().top-k.offset().top))):(g=-k.outerWidth()/2,h=-k.outerHeight()/2)):(g=-d.$slides.outerWidth()/2,h=-d.$slides.outerHeight()/2);g=Math.max(0,a/2+g);h=Math.max(0,b/2+h);d.$slides.outerHeight()>b&&(h=0);k.css({top:h,left:g});r.length&&r.hasClass("fullwidth")&&r.css("left",-g);g=a-s;h=b-w;if(r.length){r.width(g); +r.hasClass("fullscreen")&&r.height(h);if(d.slideshow.options.contentLayout_runtime==="lightbox"&&d.slideshow.options.elastic==="fullScreen"&&!d.slideshow.options.isResponsive){var i=c(k[0]).find("."+d.slideshow.options.viewClassName),i=c(i[0]);Muse.Utils.adjustTargetAndSlideHeights(i,d.slideshow.options.contentLayout_runtime)}d.resizeSlidesFn&&d.resizeSlidesFn(g,h)}}};k.data("museOverlay",t);d.autoShow&&t.open()})}}); +;(function(){if(!("undefined"==typeof Muse||"undefined"==typeof Muse.assets)){var c=function(a,b){for(var c=0,d=a.length;c0?a.insertBefore(l,a.children[0]):a.appendChild(l);if(a===document.body)d=c("html"),a=d.get(0),g=b(d),j.src=g,d.css("background-attachment")=="fixed"?(l.style.position= +"fixed",n=!1):l.style.position="absolute";else if(d.is("#page"))d.css("marginLeft").toLowerCase()=="auto"&&(m=!0),l.style.top=d.offset().top+parseInt(d.css("borderTopWidth"))+"px",l.style.bottom=parseInt(d.parent().css("paddingBottom"))+parseInt(d.css("borderBottomWidth"))+"px",l.style.left=d.offset().left+parseInt(d.css("borderLeftWidth"))+"px",l.style.right=d.offset().left+parseInt(d.css("borderRightWidth"))+"px",l.style.zIndex=0;else if(d.css("position")=="static")a.style.position="relative";this.reloadImage= +function(){var c=b(d),g=d.css("background-color");if(c!=j.src)j.src=c;a.style.backgroundImage="none";a.style.backgroundColor="transparent";l.style.backgroundColor=g;c=(d.css("background-position-x")+" "+d.css("background-position-y")).replace(/^\s+/,"").replace(/\s+$/,"");"0px 0px"==c&&(c="left top");c=c.split(/\s+/);c.length==1&&c[0].indexOf("center")>=0&&c.push("center");if(d.data("hasBackgroundPositionScrollEffect")!=!0)for(var g=0,i=c.length;g0&&setInterval(function(){for(var a=0;a0&&a-d0&&b-d .museBgSizePolyfill",this.elem).length)this.polyfillElement=b(b(".museBgSizePolyfill img",this.elem)[0]);this.bgMode=this.getBgMode();this.backgroundOffsetAvailable=!1;this.elem.resize(this,this.onElementResize);this.is100PercentWidth&&c.resize(this,this.onWindowResize);this.backgroundPosition=this.getBackgroundPosition();this.getBackgroundOffset();if(this.elem.hasClass("browser_width"))this.originalWidth=Muse.Utils.tryParse(Muse.Utils.getRuleProperty(this.getCSSRules(),"width"),parseInt)}; +f.prototype.onWindowResize=function(a){a.data.recalculateBackgroundOffset=!0};f.prototype.onElementResize=function(a){var a=a.data,b=a.service.getEffectProgress(),c=a.service.getEffectInterval(a,b);a.update(c,b-c["in"][0])};f.prototype.hasOriginalWidth=function(){return Muse.Utils.isDefined(this.originalWidth)&&-1!=this.originalWidth};f.prototype.getDeltaWidth=function(){if(!this.hasOriginalWidth())return 0;return(this.elem.innerWidth()-this.originalWidth)*this.backgroundPosition.multiplier.x};f.prototype.getBackgroundModeDisplayRatio= +function(){switch(this.bgMode){case f.BG_CONTAIN:return Math.min(this.elem.innerWidth()/this.backgroundSize.width,this.elem.innerHeight()/this.backgroundSize.height);case f.BG_COVER:return Math.max(this.elem.innerWidth()/this.backgroundSize.width,this.elem.innerHeight()/this.backgroundSize.height);default:return 1}};f.prototype.updateFixedBackground=function(a,b){var c=this.getBackgroundModeDisplayRatio(),d=this.elem.offset(),g=d.left,h=d.top-this.referenceOffset;if(this.hasPositionEffect&&0==this.positionEffect.data[this.data.indexOf(a)].speed[1]|| +!this.hasPositionEffect&&"fixed"==this.elem.css("position"))h=d.top-(a["in"][0]+b);d=(f.BG_COVER!==this.bgMode||!this.is100PercentWidth?g:0)+this.backgroundPosition.multiplier.x*(this.elem.width()-c*this.backgroundSize.width)+Muse.Utils.getCSSIntValue(this.elem,"border-left-width");h=h+this.backgroundPosition.multiplier.y*(this.elem.height()-c*this.backgroundSize.height)+Muse.Utils.getCSSIntValue(this.elem,"border-top-width");h={"background-position":d+"px "+h+"px"};1!=c&&(h["background-size"]=c* +this.backgroundSize.width+"px "+c*this.backgroundSize.height+"px");this.cssProxy.setCSSProperties(this.elem,h)};f.prototype.update=function(a,b){if(this.backgroundOffsetAvailable){if(this.recalculateBackgroundOffset)this.recalculateBackgroundOffset=!1,this.getBackgroundOffset();if(this.backgroundFixedMode)this.updateFixedBackground(a,b);else{var c=this.getBackgroundModeDisplayRatio()-1,d=Math.floor(this.bgOffset.x-c*this.backgroundPosition.multiplier.x*this.backgroundSize.width+this.getDeltaWidth())+ +a.startPosition.left+a.speed[0]*b,c=Math.floor(this.bgOffset.y-c*this.backgroundPosition.multiplier.y*this.backgroundSize.height)-(a.startPosition.top+a.speed[1]*b);this.polyfillElement?(d={"margin-left":d+"px","margin-top":c+"px",left:0,top:0},this.cssProxy.setCSSProperties(this.polyfillElement,d)):(d={"background-attachment":"scroll","background-position":d+"px "+c+"px"},this.cssProxy.setCSSProperties(this.elem,d))}}else this.updateRequested=!0};f.prototype.getBackgroundOffset=function(){var a= +Muse.Utils.tryParse(this.backgroundPosition.x,parseFloat,0),b=Muse.Utils.tryParse(this.backgroundPosition.y,parseFloat,0);if(!Muse.Utils.endsWith(this.backgroundPosition.x,"%")&&!Muse.Utils.endsWith(this.backgroundPosition.y,"%"))this.onBackgroundOffsetAvailable(a,b);else if(this.backgroundSize)this.updateBackgroundOffset(a,b);else{var c=this;this.getBackgroundSize(function(d){c.backgroundSize=d;c.updateBackgroundOffset(a,b);if(c.updateRequested){c.updateRequested=!1;var d=c.service.getEffectProgress(), +f=c.service.getEffectInterval(c,d);c.update(f,d-f["in"][0])}})}};f.prototype.updateBackgroundOffset=function(a,b){var c=this.is100PercentWidth&&this.hasPositionEffect&&this.positionEffect.isMarkedAsOOV?this.elem.parent():this.elem;if(Muse.Utils.endsWith(this.backgroundPosition.x,"%"))var d=Muse.Utils.firstDefined(this.originalWidth,c.innerWidth()),a=a/100*(d-Muse.Utils.firstDefined(this.backgroundSize.width,d));Muse.Utils.endsWith(this.backgroundPosition.y,"%")&&(c=c.innerHeight(),b=b/100*(c-Muse.Utils.firstDefined(this.backgroundSize.height, +c)));this.onBackgroundOffsetAvailable(a,b)};f.prototype.onBackgroundOffsetAvailable=function(a,b){this.bgOffset={x:a,y:b};this.backgroundOffsetAvailable=!0};f.prototype.getBgMode=function(){var a=(this.elem.get(0).currentStyle||window.getComputedStyle(this.elem.get(0),null))["background-size"]||this.elem.css("background-size");if(!a||!a.match)return f.BG_NORMAL;if(a.match(/cover/gi))return f.BG_COVER;if(a.match(/contain/))return f.BG_CONTAIN;return f.BG_NORMAL};f.prototype.isValidBackgroundPosition= +function(a){return Muse.Utils.endsWith(a,"%")||Muse.Utils.endsWith(a,"px")};f.prototype.getBackgroundPosition=function(){var a=this.cssBackgroundPosition?this.cssBackgroundPosition:this.elem.css("background-position");switch(a){case "top":case "bottom":a="center "+a;break;case "0%":case "50%":case "100%":a+=" center"}if(!a){var b=this.elem.css("background-position-x"),c=this.elem.css("background-position-y");b&&(a=b+" "+(c||""))}if(!a||!a.split)return{x:"0%",y:"0%"};a=a.replace(/(?:left|top)/gi,"0%").replace(/center/gi, +"50%").replace(/(?:right|bottom)/gi,"100%");a=a.replace(/^\s+|\s+$/gi,"");a=a.split(" ");1==a.length&&a.push("50%");if(!this.isValidBackgroundPosition(a[0])||!this.isValidBackgroundPosition(a[1]))Muse.Assert.fail("Invalid measurement unit for background position. Expecting px or %.");else return{x:a[0],y:a[1],multiplier:{x:Muse.Utils.endsWith(a[0],"%")?Muse.Utils.tryParse(a[0],parseInt,0)/100:0,y:Muse.Utils.endsWith(a[1],"%")?Muse.Utils.tryParse(a[1],parseInt,0)/100:0}}};f.prototype.getBackgroundSize= +function(a){var c=this.polyfillElement?this.polyfillElement.attr("src"):this.elem.css("background-image");if(!c&&!c.replace)a();else{var c=c.replace(/^url\("?|"?\)$/gi,""),d=new Image;b(d).one("load",function(){a({width:d.width,height:d.height})});d.src=c}};var h=function(a,b,c,d){this.service=a;this.$bp=b;this.elem=c;this.data=d};h.prototype.initialize=function(){};h.prototype.update=function(){};var g=function(a,b,c,d){this.service=a;this.$bp=b;this.elem=c;this.data=d;this.cssProxy=this.service.cssProxy; +this.elemToBeMarkedAsInvisible=this.elem.parent().hasClass("browser_width")?this.elem.parent():this.elem;this.hasPreInitClass=this.elem.hasClass(g.PRE_INITIT_CLASS_NAME)};g.PRE_INITIT_CLASS_NAME="ose_pre_init";g.INVISIBLE_CLASS_NAME="ose_ei";g.prototype.initialize=function(){Muse.Assert.assert(3==this.data.length,"Opacity Scroll Effect should have 3 intervals");var b=this.data[0],c=this.data[1],d=this.data[2];0');this.htmlWrapper=b("#"+l.HTML_WRAPPER_ID+"");this.docProps={paddingTop:Muse.Utils.getCSSIntValue(h, +"padding-top")+Muse.Utils.getCSSIntValue(h,"margin-top"),paddingBottom:Muse.Utils.getCSSIntValue(h,"padding-bottom")+Muse.Utils.getCSSIntValue(h,"margin-bottom"),paddingLeft:Muse.Utils.getCSSIntValue(g,"margin-left"),paddingRight:Muse.Utils.getCSSIntValue(g,"margin-right")};this.htmlWrapper.css("padding-top",this.docProps.paddingTop);this.htmlWrapper.css("padding-bottom",this.docProps.paddingBottom);this.htmlWrapper.css("width","100%");this.htmlWrapper.css("min-width",g.outerWidth());this.htmlWrapper.addClass("html"); +f.removeClass("html");h.addClass("scroll_wrapper");d.scroll(this,this.onWindowScroll);d.on("orientationchange",this,this.orientationChange);this.addTouchListeners(a);b("input,textarea").on("touchstart",this,this.onElementTouchStart);b("input,textarea").on("focus",this,this.onElementFocus);b("input,textarea").on("blur",this,this.onElementBlur);var c=this;b(".animationContainer").each(function(){var a=b(this);a.load(function(){var d=a.contents();c.addTouchListeners(d);b("body",d).addClass(l.IFRAME_BODY_CLASS); +b("body",d).data(l.IFRAME_DATA,a)})})};l.prototype.onElementTouchStart=function(a){a.data.inFormFieldEditMode=!0};l.prototype.onElementFocus=function(a){a=a.data;if(a.stopTimeout)clearTimeout(a.stopTimeout),a.stopTimeout=0};l.prototype.onElementBlur=function(a){var b=a.data;b.stopTimeout=setTimeout(function(){b.stopTimeout=0;b.inFormFieldEditMode=!1},200)};l.prototype.addTouchListeners=function(a){a.on("touchstart",this,this.touchStartHandler);a.on("touchmove",this,this.touchMoveHandler);a.on("touchend", +this,this.touchEndHandler);this.touchListeners.push(a)};l.prototype.removeTouchListeners=function(){for(var a=0,b,c=this.touchListeners.length;a=9&&(c=!1);return c};typeof c=="function"&&(a=c,c={});typeof a!="function"&&(a=function(){});c=d.extend({},{throttle:10},c);return this.each(function(){var g= +d(this),i=function(){for(var a=g.data(),b=!1,c,f=0;f0;)b.appendChild(a.childNodes[0])};Muse.Utils.copyChildren=function(a,b){for(var c=0;c=0;c--){var d=Muse.Utils.getRuleProperty(a[c],b);if(d)return d}return""}if(a.style.getPropertyValue)return a.style.getPropertyValue(b);return a.style.getAttribute(b)};Muse.Utils.toCamelCase=function(a){for(var b=Muse.Utils.toCamelCase.exp;b.test(a);a=a.replace(b,RegExp.$1.toUpperCase()));return a};Muse.Utils.toCamelCase.exp= +/-([a-z])/;Muse.Utils.getStyleValue=function(a,b){var c=a.style[Muse.Utils.toCamelCase(b)];c||(document.defaultView?c=document.defaultView.getComputedStyle(a,"").getPropertyValue(b):a.currentStyle&&(c=a.currentStyle[Muse.Utils.toCamelCase(b)]));c&&c.match(/(\d+)px/)&&(c=parseInt(c.substring(0,c.length-2)));return c};Muse.Utils.getCanvasDirection=function(a,b){var c=a.closest("*[data-rotate]"),c=c.length>0?parseFloat(c.data("rotate"))%360:0;return{dir:c>=0&&c<=45||c>=135&&c<=225||c>=315&&c<360?b:b=== +"horizontal"?"vertical":"horizontal",reverse:b==="horizontal"?c>=135&&c<=315:c>=45&&c<=225}};Muse.Utils.updateSlideshow_fstpOffsetSize=function(a){var b=c(window),d=c(document.body),g=a.options,i=a.$clip?a.$clip:a._findWidgetElements("."+g.clipClassName);Muse.Utils.moveElementsOutsideViewport(i.parents());a._fstpOffsetSize=g.transitionStyle==="horizontal"?g.elastic==="fullWidth"?Math.max(b.width(),parseInt(d.css("min-width"))):i.width():i.height();Muse.Utils.moveElementsInsideViewport(i.parents())}; +Muse.Utils.urlParam=function(a,b){var c=RegExp("[\\?&]"+b+"=([^&#]*)").exec(a);return c?c[1]:null};Muse.Utils.processHyperlink=function(a){var f=a.href,d=c(window),a=c(a),g=a.attr("target");if(!g||g=="_self"){var i=f.lastIndexOf("/"),g=f.lastIndexOf("#"),l=a.attr("class").match(/anim_(\w+)/);if(l&&g>i){var a=d.data("scrollWrapper"),k=f.substring(g),j=Muse.Utils.getAnchorWithDestination(k);if(j.length==0)return!1;var g=j.offset(),f=l[1],m=a||window,i=document.documentElement||document.body,l=(a?a.scrollHeight(): +i.scrollHeight)-d.height(),i=(a?a.scrollWidth():i.scrollWidth)-d.width(),n=Math.min(l,g.top+(a&&!a.isStandard()?a.scrollTop():0)),p=Math.min(i,g.left+(a&&!a.isStandard()?a.scrollLeft():0)),o=c(j).parents(".AccordionPanelContentClip").length,q=function(){var a=c(j).closest(".AccordionPanelContent").prev();a&&a.length&&!a.hasClass("AccordionPanelTabOpen")&&(a.trigger("mousedown"),a.trigger("mouseup"))};if(o){var i=c(j).closest(".AccordionPanelContent"),l=d.scrollTop(),r=d.scrollTop()+d.height(),s=d.scrollLeft()+ +d.width(),d=d.scrollLeft(),r=g.top>=l&&g.top+i.height()<=r,g=g.left>=d&&g.left+i.width()<=s;if(r&&g)return q(),!1;n=r?l:Math.min(n,c(j).parents(".AccordionWidget").offset().top);p=g?d:Math.min(p,c(j).parents(".AccordionWidget").offset().left)}d=function(){m.scrollTo(p,n);o&&q();try{history.replaceState({})}catch(a){if(!b.browser.msie||b.browser.version>7)window.location.hash=k}};try{history.pushState({},null,k)}catch(w){}if(window.scrollTo||void 0!==a){var a=a||c(document),y=a.scrollLeft(),u=a.scrollTop(), +t=y,x=u;c({scrollDistance:0}).animate({scrollDistance:1},{duration:1E3,easing:f,step:function(a){a!=0&&(x=a*(n-u),t=a*(p-y),m.scrollTo(y+t,u+x))},complete:d})}else c("html,body").animate({scrollTop:n,scrollLeft:p},1E3,f,d);return!1}}(d=Muse.Utils.urlParam(f,"devicelock"))&&Muse.Utils.createCookie("devicelock",d,0);return!0};Muse.Utils.navigateToAnchor=function(a){var b=function(){var b=Muse.Utils.getAnchorWithDestination(a);if(b.length!==0){var f=b.offset(),d=c(window),l=d.data("scrollWrapper"),b= +l||window,k=document.documentElement||document.body,j=(l?l.scrollHeight():k.scrollHeight)-d.height(),d=(l?l.scrollWidth():k.scrollWidth)-d.width(),j=Math.min(j,f.top+(l&&!l.isStandard()?l.scrollTop():0)),f=Math.min(d,f.left+(l&&!l.isStandard()?l.scrollLeft():0));b.scrollTo(f,j)}};if(c("body").hasClass("awaiting_bp_activate_scroll"))$window.one("scroll",function(){b()});else b()};var d=[];Muse.Utils.redirectCancelled=!1;Muse.Utils.redirectHyperlink=function(a){if(Muse.Utils.redirectCancelled)setTimeout(function(){Muse.Utils.redirectCancelled= +!1},0);else if(d=[],Muse.Utils.processHyperlink(a)&&!Muse.Utils.isIBE()){var b=c(a).attr("target");b||(b="_self");window.open(a.href,b)}};Muse.Utils.redirectHyperlinkInNewTab=function(a,b){if(Muse.Utils.redirectCancelled)setTimeout(function(){Muse.Utils.redirectCancelled=!1},0);else{d=[];thisWindow=window.self;var c=window.open(a);b?c.focus():thisWindow.focus()}};Muse.Utils.isMouseLeftClick=function(a){return a.which==1};Muse.Utils.isMouseMiddleClick=function(a){return a.which==2};Muse.Utils.isRedirectLinkKeyboardAction= +function(a){return a.which==13};Muse.Utils.addHyperlinkAnchor=function(a){a=c(a);a.bind("mousedown",function(a){(Muse.Utils.isMouseLeftClick(a)||Muse.Utils.isMouseMiddleClick(a))&&d.push(this)});a.bind("mouseup keyup",function(a){if(Muse.Utils.isMouseLeftClick(a)&&d.indexOf(this)!=-1)a.ctrlKey||a.metaKey?Muse.Utils.redirectHyperlinkInNewTab(this.href,a.shiftKey):Muse.Utils.redirectHyperlink(this);else if(Muse.Utils.isMouseMiddleClick(a)&&d.indexOf(this)!=-1)if(b.browser.webkit||!a.target.href&&b.browser.msie)Muse.Utils.redirectHyperlinkInNewTab(this.href, +a.shiftKey);else return d=[],!0;else Muse.Utils.isRedirectLinkKeyboardAction(a)&&Muse.Utils.redirectHyperlink(this);return!1});Muse.Utils.isIBE()||a.bind("click",function(){return!1})};Muse.Utils.addHyperlinkBlock=function(a){var b=c(a.parentNode);b.bind("mousedown",function(a){(Muse.Utils.isMouseLeftClick(a)||Muse.Utils.isMouseMiddleClick(a))&&d.push(this);return!1});b.bind("mouseup keyup",function(b){Muse.Utils.isMouseLeftClick(b)&&d.indexOf(this)!=-1?b.ctrlKey||b.metaKey?Muse.Utils.redirectHyperlinkInNewTab(a.href, +b.shiftKey):Muse.Utils.redirectHyperlink(a):Muse.Utils.isMouseMiddleClick(b)&&d.indexOf(this)!=-1?Muse.Utils.redirectHyperlinkInNewTab(a.href,b.shiftKey):Muse.Utils.isRedirectLinkKeyboardAction(b)&&Muse.Utils.redirectHyperlink(a);return!1});Muse.Utils.isIBE()||b.bind("click",function(){return!1})};Muse.Utils.prepHyperlinks=function(a){c("a.block").each(function(){var a=c(this.parentNode);Muse.Utils.addHyperlinkBlock(this);a.find("a.nonblock").each(function(){var a=c(this);if(a.data("registeredNonBlockLink")=== +!0)return!1;Muse.Utils.addHyperlinkAnchor(this);a.data("registeredNonBlockLink",!0)})});c("a.nonblock").each(function(){var a=c(this);a.data("registeredNonBlockLink")!==!0&&(a.parent('[class~="sbg"]').length>0?Muse.Utils.addHyperlinkAnchor(this):(a.attr("class").match(/anim_(\w+)/)||this.href.indexOf("devicelock=")!=-1)&&c(this).bind("click",function(){return Muse.Utils.processHyperlink(this)}))});a&&Muse.Utils.enableAnchorLinksActiveState()};Muse.Utils.pathOnly=function(a){if(!a)return a;return a.replace(/#(?:[^#]+)$/, +"").replace(/\?(?:[^\?]+)$/,"")};Muse.Utils.enableAnchorLinksActiveState=function(){var a=!1,b=[],d=c(window),g=Muse.Utils.getPageStyleSheets(),i=function(a){var b=a.parent('[class~="sbg"]');if(a.hasClass("MenuItem")||b.hasClass("MenuItem"))return"MuseMenuActive";if(a.hasClass("Button")||b.hasClass("Button"))return"ButtonSelected";return"MuseLinkActive"},l=!1,k=function(d){b.splice(0,b.length);c("a.nonblock,a.block",d).each(function(){Muse.Utils.saveHyperlinkInfo(c(this),i(c(this)),g,a,b)});b.sort(function(a, +b){if(a.fromb.from)return 1;return 0});l=!0},j=!1,m=d.data("scrollWrapper"),n=m||d,p=null,o=function(){j=!1;if(!l){var d=c("#page");a=d.outerWidth()/d.outerHeight()>2;k(p)}var d=a?n.scrollLeft():n.scrollTop(),g;a:{var h=0;g=b.length;for(var o;h0||a.hasClass("block")?a.parent():a,o="#"+a.attr("id"),b="."+b;if(null!==Muse.Utils.allStyleSheetRules(d,function(a){return 0<=a.indexOf(o+b)||0<=a.indexOf(b+o)})){m=0;for(n=i.length;m").insertAfter(c(this))})}; +Muse.Utils.addGradientFill=function(){c(".gradient").each(function(){var a=this;Muse.Utils.needPIE(function(){PIE.attach(a)})})};Muse.Utils.addShadows=function(){c(".shadow").each(function(){var a=this,b=c(a);Muse.Utils.needPIE(function(){b.data("mu-ie-matrix")||PIE.attach(a)})})};Muse.Utils.fixImageFramesWithRoundedCorners=function(){Muse.Browser.Features.checkCSSFeature("border-radius")&&Muse.Browser.Features.checkCSSFeature("-webkit-border-radius")&&c(".rounded-corners").each(function(){if(c(this).hasClass("clip_frame")){var a= +Muse.Utils.firstDescendant(this,Muse.Utils.Match.byNodeName("img"));a&&c(a).wrap('
')}})};Muse.Utils.addRoundedCorners=function(){c(".rounded-corners").each(function(){var a=this;Muse.Utils.needPIE(function(){var b=c(a);if(!b.data("mu-ie-matrix")){var d=b.css("filter");if(!d||!(d.toLowerCase().indexOf("opacity")>0&&d.indexOf("=100")<0)){if(a.childNodes.length&&!Muse.Browser.Features.checkCSSFeature("border-radius")&&(d=Muse.Utils.firstChild(a,Muse.Utils.Match.byNodeName("img")))&& +d.nodeName.toLowerCase()=="img"){var d=c(d),g=d.attr("src"),i=b.css("background-color")+" ",l=d.css("margin-left");if(l=="0px"||l=="auto")l=d.css("padding-left");var k=d.css("margin-top");if(k=="0px"||k=="auto")k=d.css("padding-top");if((l=="0px"||l=="auto")&&(k=="0px"||k=="auto"))b.addClass("museBGSize"),b.css("background-size","cover");d.css("visibility","hidden");b.css("background",i+"url("+g+") no-repeat "+l+" "+k)}PIE.attach(a)}}})})};Muse.Utils.addRGBA=function(){c(".rgba-background").each(function(){var a= +this;Muse.Utils.needPIE(function(){PIE.attach(a)})})};Muse.Utils.resizeHeight=function(a){var b={},d=function(d){var h=d.parent().hasClass("sbg")?d.parent():d,d=c(d.children()[0]);h.attr("data-lightbox")!="true"&&"fixed"!=d.css("position")&&h.height(d.outerHeight());h=d.attr("id")||"always_watch";b[h]||(b[h]=!0,d.watch("height",function(){var b=c(this);"fixed"!=b.css("position")&&!b.hasClass("fullscreen")&&b.closest(a).children().length&&b.closest(a).height(c(b.closest(a).children()[0]).outerHeight())}))}; +if(0-1};Muse.Utils.isStackedOrScatteredLayout= +function(a){return a==="stack"||a==="loose"};Muse.Utils.removeEdgeAnimationBorderForIE78=function(){c(".animationContainer").each(function(){c(this).parent().html(function(a,b){return b.replace(/><\/iframe>$/gi,' frameBorder="0">')})})};Muse.Utils.initializeAnimations=function(a){var b=function(b){if(!Muse.Utils.isIBE()&&!0===a){var f=b.contents();c("#report-abuse",f).remove();c("#report-abuse-spacer",f).remove()}b.removeClass("an_invi")};c(".animationContainer").each(function(){var a=c(this); +Muse.Utils.isIBE()||this.contentDocument&&"complete"==this.contentDocument.readyState?b(a):a.load(function(){b(a)})})};Muse.Utils.fixTransformRotations=function(){Muse.Browser.Features.checkCSSFeature("transform")||c("*[data-mu-ie-matrix]").each(function(){var a=c(this),b=a.parent(),d=Math.round(a.data("mu-ie-matrix-dx")),g=Math.round(a.data("mu-ie-matrix-dy")),i=b.innerHeight(),l=b.innerWidth();a.css({filter:function(b,c){if(c)return c+" "+a.data("mu-ie-matrix");return a.data("mu-ie-matrix")},"margin-bottom":"-="+ +g}).removeClass("shadow");b.css({"margin-bottom":"-="+(b.innerHeight()-i),"margin-right":"-="+(b.innerWidth()-l)});a.hasClass("actAsDiv")?(a.wrap(''),a.parent().css("float",a.css("float"))):a.hasClass("actAsInlineDiv")?a.wrap(''):a.wrap('
');a.parent().css({top:g,left:d,position:"relative","margin-bottom":g})})};Muse.Utils.fullPage=function(a){var b=c(window).data("stickyFooter"); +if(0==c(a).closest(".breakpoint").length)Muse.Assert.assert(0==c(".breakpoint").length,"Page is outside a breakpoint node."),b.init(c(a));else{var d=function(d){Muse.Assert.assert(1==d.length,"Cannot initialize sticky footer - invalid breakpoint node.");b.init(c(a,d))};d(c(".breakpoint.active"));c("body").on("muse_bp_activate",function(a,b,c){Muse.Utils.requestAnimationFrame(function(){d(c)})})}};Muse.Utils.widgetInsideLightbox=function(a){for(var b=0;b");b.addClass(a.attr("class"));b.attr("id",a.attr("id"));b.append(a.contents());a.replaceWith(b)};c("ul").each(function(){c(this).find("li").each(a)});c("ul").each(a)};Muse.Utils._initWidgetQueue=null;Muse.Utils._hasBPListener=!1;Muse.Utils.initWidget=function(a, +b,d){if(0==c(".breakpoint").length)c(a).each(function(){d(c(this))});else{for(var g=0;g').parent().html(),a.remove(),i.$parent.children("div #deleteMeWrapper").remove()):(i.$node=a.clone(),a.remove());f.push(i)}});f.length&&a.data("detached",f);d.length&&a.data("paused",d);c("video",a).each(function(){if(b.browser.msie&&b.browser.version==9&&this.pause&&this.getAttribute("autoplay")&&this.readyState!=4)c(this).one("play",function(){this.pause()});else this.pause&&!this.paused&& +this.pause()})};Muse.Utils.setPageToMaxWidth=function(){var a=c("#page");a!==void 0&&a.css("max-width")!=="none"&&(a.css("width",a.css("max-width")),c(window).trigger("pageWidthChanged"))};Muse.Utils.resetPageWidth=function(){var a=c("#page");a!==void 0&&(a.css("width",""),c(window).trigger("pageWidthChanged"))};Muse.Utils.getMinWidthOfElem=function(a){var b=parseFloat(a.css("min-width")?a.css("min-width"):0);b===0&&(b=parseFloat(a.attr("data-min-width")?a.attr("data-min-width"):0));return b};Muse.Utils.dropInOneBucketOfSizeAndPinPolicy= +function(a,b,d,g){if(a!==void 0&&b!==void 0){var i={};if(b==="fixed")i=d.fixed;else if(b==="fluidWidth"||b==="fluidWidthHeight")i=d.responsive;if(!c.isEmptyObject(i))switch(a){case "page_fluidx":i.ChildFluidPin.push(g);break;case "page_fixedLeft":i.ChildFixedLeft.push(g);break;case "page_fixedRight":i.ChildFixedRight.push(g);break;case "page_fixedCenter":i.ChildFixedCenter.push(g)}}};Muse.Utils.removeSizeAndPiningAttributes=function(){};Muse.Utils.getMarginLeft=function(a){if(a&&!c.isEmptyObject(a))return a.attr("data-margin-left")&& +a.attr("data-display-attr-change")===!0?a.attr("data-margin-left"):window.getComputedStyle(a[0])["margin-left"]};Muse.Utils.classifyChildrens=function(a,b,d){function g(a){var c=a.attr("data-pintopage"),d=a.attr("data-sizePolicy"),g=parseFloat(a.css("min-width")),h=parseFloat(a.attr("data-min-width")),n=!0;Muse.Utils.isTopLevelWidget(a)||a.is("form")||Muse.Utils.isMenuWidget(a)||Muse.Utils.isParameterizedHtmlWidget(a)?b.ChildWidgets.push(a):(g>0||h>0)&&!Muse.Utils.isParameterizedHtmlWidget(a)?b.ChildWithMinWidth.push(a): +c!==void 0&&d!==void 0?(Muse.Utils.dropInOneBucketOfSizeAndPinPolicy(c,d,b,a),Muse.Utils.removeSizeAndPiningAttributes(a)):n=!1;return n}d?a&&b&&g(a):a.children().each(function(){var a=c(this);g(a)||Muse.Utils.classifyChildrens(a,b,d)})};Muse.Utils.isElementFixedSize=function(a){return a&&a.attr("data-sizePolicy")==="fixed"};Muse.Utils.isInPercentage=function(a){return a&&a.indexOf("%")===a.length-1};Muse.Utils.isInPixel=function(a){return a&&a.indexOf("px")===a.length-2};Muse.Utils.getPropInPixel= +function(a,b){var c;a&&b&&a.css("display")!=="none"&&(c=b==="margin-left"?Muse.Utils.getMarginLeft(a):window.getComputedStyle(a[0]).getPropertyValue(b),Muse.Utils.isInPercentage(c)&&(b==="left"?(c=a.offsetParent().width()*parseFloat(c)/100,c=c.toString()+"px"):b==="margin-left"?(c=a.parent().width()*parseFloat(c)/100,c=c.toString()+"px"):c=a.css(b)));return c};Muse.Utils.getWidths=function(a){var b={};Muse.Utils.moveElementsOutsideViewport(a);Muse.Utils.moveElementsOutsideViewport(a.parents());b.offsetWidth= +0;b.elemWidth=0;b.offsetWidth=a[0].offsetWidth;b.elemWidth=parseFloat(Muse.Utils.getPropInPixel(a,"width"));Muse.Utils.moveElementsInsideViewport(a);Muse.Utils.moveElementsInsideViewport(a.parents());return b};Muse.Utils.getOffsetWidth=function(a){var b=a[0].offsetWidth;if(b===0)b=Muse.Utils.getWidths(a).offsetWidth;return b};Muse.Utils.getChildWidth=function(a,b,c){return b===!0?(b=parseFloat(a.css("min-width"))?parseFloat(a.css("min-width")):parseFloat(a.attr("data-min-width")),a.css("box-sizing")!== +"border-box"&&(b+=Math.round(a.outerWidth()-a.innerWidth())),b):c?window.getComputedStyle(a[0]).width:Muse.Utils.getOffsetWidth(a)};Muse.Utils.setMinWidthInformation=function(a,b,d){if(!c.isEmptyObject(a)&&a.chosenMinWidth&&a.$element&&d>0&&a.chosenMinWidth0)switch(b){case "page_fixedLeft":a.forEach(function(a){var b=Muse.Utils.getChildWidth(a,c,!0),f=a[0].offsetWidth,j=0,m=window.getComputedStyle(a[0]).left,m=m?parseFloat(m):0,n=0,p=0;Muse.Utils.isInPercentage(b)?(j=parseFloat(b)/100,b=Muse.Utils.getWidths(a),p=b.elemWidth,f=b.offsetWidth):Muse.Utils.isInPixel(b)&&(j=a.offsetParent().width(),p=parseFloat(b),j=j>0?p/j:0);j>0&&(f>Math.round(p)&&(n=f-Math.round(p)),b=Math.abs(Muse.Utils.isValueWithinTolerance(j, +1,1.0E-4)?a.outerWidth():(m+n)/(1-j)),Muse.Utils.setMinWidthInformation(d,a,b))});break;case "page_fixedRight":a.forEach(function(a){var b=Muse.Utils.getChildWidth(a,c,!0),f=0,j=window.getComputedStyle(a[0]).left,j=Math.abs(j?parseFloat(j):0);Muse.Utils.isInPercentage(b)?f=parseFloat(b)/100:Muse.Utils.isInPixel(b)&&(f=a.offsetParent().width(),b=parseFloat(b),f=f>0?b/f:0);if(f>0&&f<1&&!Muse.Utils.isValueWithinTolerance(f,1,1.0E-4))var m=Math.abs(j/(1-f));Muse.Utils.setMinWidthInformation(d,a,m)}); +break;case "page_fixedCenter":a.forEach(function(a){var b=window.getComputedStyle(a[0]).left,b=b?parseFloat(b):0,f=Math.abs(b),j=Muse.Utils.getMarginLeft(a),m=0,n=Muse.Utils.getChildWidth(a,c,!0),p=a[0].offsetWidth,o=0,q=0;if(b!==0)Muse.Utils.isInPercentage(j)?m=parseFloat(j)/100:Muse.Utils.isInPixel(j)&&(m=a.parent().width(),j=parseFloat(j),m=m>0?j/m:0),Muse.Utils.isInPercentage(n)?(n=Muse.Utils.getWidths(a),q=n.elemWidth,p=n.offsetWidth):Muse.Utils.isInPixel(n)&&(q=parseFloat(n)),m>0&&(b>0&&p>Math.round(q)&& +(o=p-Math.round(q)),Muse.Utils.setMinWidthInformation(d,a,Math.abs((f+o)/m)))})}return d};Muse.Utils.computeMinWidthForFixedChilds=function(a,b,d,g){function i(a,b){var d=0,f=0,f=Muse.Utils.getLeft(a),h=f.$element,i=f.left,l=Muse.Utils.isInPixel(i),f=Muse.Utils.isInPercentage(i)||i==="auto";Muse.Utils.moveElementsOutsideViewport(a);Muse.Utils.moveElementsOutsideViewport(a.parents());if(f)f=Muse.Utils.getLeft(a,!0),h=f.$element,i=f.left,l=Muse.Utils.isInPixel(i);var r=h.is(g)||g.closest(h).length, +f=parseFloat(g.width());l&&(d=parseFloat(i),r||(i=h.parents(),c.each(i,function(a,b){var f=c(b);if(f.is(g))return!1;f=Muse.Utils.getMarginLeft(f);Muse.Utils.isInPixel(f)&&f!==Muse.Utils.marginLeftForMovingElementsOutSideViewPort&&(d+=parseFloat(f));return!0})));b&&r&&(f=parseFloat(h.parent().width()));Muse.Utils.moveElementsInsideViewport(a);Muse.Utils.moveElementsInsideViewport(a.parents());return{containerWidth:f,left:d}}var l={$element:{},chosenMinWidth:-1};if(a&&a.length>0)switch(b){case "page_fluidx":a.forEach(function(a){var b= +Muse.Utils.getChildWidth(a,d,!1),c=i(a,!0),f=c.left,c=c.containerWidth,g=0,o=-1;c0?f/c:0;g<1&&!Muse.Utils.isValueWithinTolerance(g,1,1.0E-4)&&(o=Math.abs(b/(1-g)));Muse.Utils.setMinWidthInformation(l,a,o>b?o:b)});break;case "page_fixedLeft":a.forEach(function(a){var b=Muse.Utils.getChildWidth(a,d,!1),c=i(a).left,c=Math.abs(c+b);Muse.Utils.setMinWidthInformation(l,a,c>b?c:b)});break;case "page_fixedRight":a.forEach(function(a){var b=Muse.Utils.getChildWidth(a,d,!1),c=window.getComputedStyle(a[0]).left, +c=Math.abs(c?parseFloat(c):0),f=-1,i=Muse.Utils.getLeftAdjustmentAmountDoneByParents(a,g);i>=0&&(c-=i);c>0&&(f=Muse.Utils.isElementFixedSize(a)?c:c+b);Muse.Utils.setMinWidthInformation(l,a,f>b?f:b)});break;case "page_fixedCenter":a.forEach(function(a){var b=Muse.Utils.getChildWidth(a,d,!1),c=parseFloat(window.getComputedStyle(a[0]).left),f=0,i=0,f=Muse.Utils.getMarginLeft(a),o=0,q=-1;Muse.Utils.isInPercentage(f)?o=parseFloat(f)/100:Muse.Utils.isInPixel(f)&&(o=a.parent().width(),f=parseFloat(f),o= +o>0?f/o:0);o>0&&(q=Muse.Utils.getLeftAdjustmentAmountDoneByParents(a,g),q=q<0?0:q,f=(Math.abs(c)-q)/o,c<0?c+=q:c>0&&(c-=q),Muse.Utils.isValueWithinTolerance(o,1,1.0E-4)||(i=(b+c)/(1-o)),q=Math.max(f,i,b),Muse.Utils.setMinWidthInformation(l,a,q>b?q:b))})}return l};Muse.Utils.computeMinWidthForChildsWithMinWidth=function(a,b){var c={$element:{},chosenMinWidth:-1};a.forEach(function(a){var d=a.attr("data-pintopage")||"page_fluidx",l=-1;Muse.Utils.removeSizeAndPiningAttributes(a);d!==void 0&&(l=Muse.Utils.computeMinWidthForFixedChilds([a], +d,!0,b),Muse.Utils.setMinWidthInformation(c,a,l.chosenMinWidth))});return c};Muse.Utils.isTopLevelWidget=function(a){return a&&(a.hasClass("SlideShowWidget")||a.hasClass("PamphletWidget")||a.hasClass("TabbedPanelsWidget")||a.hasClass("AccordionWidget")||a.hasClass("Button"))};Muse.Utils.isMenuWidget=function(a){return a.is("nav")&&(a.hasClass("MenuBar")||a.hasClass("MenuBarVertical"))};Muse.Utils.computeMinWidthForForms=function(a){function b(a){a.children().each(function(){var a=c(this);if(a.attr("data-sizePolicy")=== +"fixed"){d.push(a);var g=a.innerWidth();a.attr("data-min-width",g)}else b(a)})}var d=[],g={$element:{},chosenMinWidth:-1};b(a);d.forEach(function(b){var d=b.parents(),f=b;c.each(d,function(b,d){var h=c(d),k=f.attr("data-pintopage")||"page_fluidx",i={};Muse.Utils.removeSizeAndPiningAttributes(f);if(f.is(a))return!1;i=Muse.Utils.computeMinWidthForFixedChilds([f],k,!0,h);Muse.Utils.setMinWidthInformation(g,i.$element,i.chosenMinWidth);f.attr("data-min-width")&&f.removeAttr("data-min-width");if(k=parseFloat(h.attr("data-min-width")))i.chosenMinWidth= +Math.max(i.chosenMinWidth,k);h.attr("data-min-width",i.chosenMinWidth);f=h;if(h.is(a))return!1})});var i=parseFloat(a.attr("data-min-width"));i>0&&(a.css("min-width",i),a.removeAttr("data-min-width"))};Muse.Utils.computeMinWidthForWidgetChilds=function(a,b){var d=[],g={$element:{},chosenMinWidth:-1};a.forEach(function(a){var b=Muse.Utils.getMinWidthOfElem(a);if(!a.hasClass("SlideShowWidget")&&!a.hasClass("PamphletWidget")&&Muse.Utils.isElementFixedSize(a))b=(b=window.getComputedStyle(a[0]).width)? +parseFloat(b):0,a.attr("data-min-width",b);else if(a.is("form"))Muse.Utils.computeMinWidthForForms(a);else{var c;a.hasClass("SlideShowWidget")||a.hasClass("PamphletWidget")?c=WebPro.Widget.ContentSlideShow.prototype.defaultPlugins[0]:a.hasClass("TabbedPanelsWidget")?c=WebPro.Widget.TabbedPanels.prototype.defaultPlugins[0]:a.hasClass("AccordionWidget")&&(c=WebPro.Widget.Accordion.prototype.defaultPlugins[0]);c&&c._setMinWidth&&(c._setMinWidth(a,!0),b=Muse.Utils.getMinWidthOfElem(a))}(b>0||a.is("form"))&& +d.push(a)});d.forEach(function(a){var d=a.attr("data-pintopage")||"page_fluidx",h={},h=Muse.Utils.computeMinWidthForFixedChilds([a],d,!0,b);Muse.Utils.setMinWidthInformation(g,h.$element,h.chosenMinWidth);h.$element&&!c.isEmptyObject(h.$element)&&h.$element.attr("data-min-width")&&(h.$element.removeAttr("data-min-width"),Muse.Utils.removeSizeAndPiningAttributes(h.$element))});return g};Muse.Utils.adjustMinWidthRespectToAllParents=function(a,b){var d=[];b.forEach(function(b){if(b&&!c.isEmptyObject(b)&& +b.$element&&!c.isEmptyObject(b.$element)&&b.chosenMinWidth>0){if(!a.is(b.$element)){var f=b.$element.parents();Muse.Utils.moveElementsOutsideViewport(b.$element);Muse.Utils.moveElementsOutsideViewport(f);c.each(f,function(d,f){var h=c(f);if(h.is(a))return!1;h=Math.round(h.outerWidth()-h.innerWidth());h>0&&(b.chosenMinWidth+=h);return!0});Muse.Utils.moveElementsInsideViewport(b.$element);Muse.Utils.moveElementsInsideViewport(f)}d.push(b.chosenMinWidth)}});return d};Muse.Utils.changeElementsDisplay= +function(a){var b;a.each(function(){b=c(this);b.css("display")==="none"&&(b.css("display","block"),b.attr("data-display-attr-change","true"))})};Muse.Utils.resetElementsDisplay=function(a){var b;a.each(function(){b=c(this);b.attr("data-display-attr-change")==="true"&&(b.css("display",""),b.css("display")!=="none"&&b.css("display","none"),b.removeAttr("data-display-attr-change"))})};Muse.Utils.isValueWithinTolerance=function(a,b,c){return a===b?!0:!isNaN(a)&&!isNaN(b)&&Math.abs(a-b)<=c?!0:!1};Muse.Utils.getMinWidthOfParts= +function(a,b,d){function g(a){var b=a.outerWidth()-a.innerWidth(),c=a.innerWidth();b>0&&(c+=parseFloat(a.css("border-left-width")));return c}function i(c){var g=c[0].getBoundingClientRect(),c={left:g.left,right:g.right};if(d&&b.attr("data-contentlayout")==="stack"&&b.attr("data-transitionStyle")==="horizontal"){var n=parseFloat(a.css("left"));if(n>0){var j=g.left-n,g=g.right-n;if(j>0)c.left=j;if(g>0)c.right=g}}return c}var l=-1;if(a&&b&&!c.isEmptyObject(a)&&!c.isEmptyObject(b)&&b[0]&&a[0]){Muse.Utils.changeElementsDisplay(a); +Muse.Utils.changeElementsDisplay(a.parents());var k=a.attr("data-sizePolicy"),j=a.attr("data-pintopage"),m=parseFloat(a.css("min-width"));parseFloat(a.attr("data-min-width"));var n=!1,p=b.width(),o=b[0].getBoundingClientRect(),q=g(a),r=i(a),s=a.outerWidth()-a.innerWidth();m>0&&(k="fixed",q=m+s,n=!0,j===void 0&&(j="page_fluidx"));if(k==="fixed")switch(j){case "page_fluidx":k=-1;o.left<=r.left?(o=r.left-o.left,o>=0&&(k=o/p)):r.left-o.left<2&&(k=0);k>=0&&(Muse.Utils.isValueWithinTolerance(k,1,1.0E-4)? +l=0:k<1&&(l=q/(1-k)));break;case "page_fixedLeft":n||(p=-1,o.left<=r.left?p=r.left-o.left:r.left-o.left<2&&(p=0),p>=0&&(l=q+p));break;case "page_fixedRight":n||(p=-1,o.right>=r.right?p=o.right-r.right:o.right-r.right<2&&(p=0),p>=0&&(l=q+p));break;case "page_fixedCenter":n||(p<=q?l=q:r.left<=o.left||r.right>=o.right?(p=o.left-r.left,k=r.right-o.right,p>=0&&k<=0?l=q+(o.right-r.right):k>=0&&p<=0&&(l=q+(r.left-o.left))):(r=r.left+q/2,o=o.left+p/2,p=-1,p=r===o?0:r=0&&(l=2*(q/2+p))))}Muse.Utils.resetElementsDisplay(a); +Muse.Utils.resetElementsDisplay(a.parents())}return l};Muse.Utils.getMinWidthForElement=function(a,b){var c=a&&a.length>0&&a[0].style.minWidth!==""?parseFloat(a[0].style.minWidth):0,b=b||!1;if(a&&a.length>0&&a[0].style.minWidth===""||b){if(Muse.Utils.isElementFixedSize(a)&&!b)return c;var d={responsive:{},fixed:{}};d.responsive.ChildFluidPin=[];d.responsive.ChildFixedLeft=[];d.responsive.ChildFixedRight=[];d.responsive.ChildFixedCenter=[];d.fixed.ChildFluidPin=[];d.fixed.ChildFixedLeft=[];d.fixed.ChildFixedRight= +[];d.fixed.ChildFixedCenter=[];d.ChildWithMinWidth=[];d.ChildWidgets=[];var i=[];Muse.Utils.classifyChildrens(a,d,b);i.push(Muse.Utils.computeMinWidthForFixedChilds(d.fixed.ChildFluidPin,"page_fluidx",!1,a));i.push(Muse.Utils.computeMinWidthForFixedChilds(d.fixed.ChildFixedLeft,"page_fixedLeft",!1,a));i.push(Muse.Utils.computeMinWidthForFixedChilds(d.fixed.ChildFixedRight,"page_fixedRight",!1,a));i.push(Muse.Utils.computeMinWidthForFixedChilds(d.fixed.ChildFixedCenter,"page_fixedCenter",!1,a));i.push(Muse.Utils.computeMinWidthForChildsWithMinWidth(d.ChildWithMinWidth, +a));i.push(Muse.Utils.computeMinWidthForWidgetChilds(d.ChildWidgets,a));(d=Muse.Utils.adjustMinWidthRespectToAllParents(a,i))&&d.length>0&&(c=Math.max.apply(null,d))}return c};Muse.Utils.buttonsMinWidthHelper=function(){Muse.Utils.setPageToMaxWidth();c(".Button").each(function(){var a=c(this),b=0;!Muse.Utils.isElementFixedSize(a)&&b===0&&(b=Muse.Utils.getMinWidthForElement(a,!1),b>0&&a.css("min-width",b));a.attr("data-visibility")==="changed"?(a.css("visibility",""),a.removeAttr("data-visibility")): +a.children()&&a.children().attr("data-visibility")==="changed"&&(a.children().css("visibility",""),a.children().removeAttr("data-visibility"))});Muse.Utils.resetPageWidth()};Muse.Utils.makeButtonsVisibleAfterSettingMinWidth=function(){if(0==c(".breakpoint").length)Muse.Utils.buttonsMinWidthHelper();else c("body").on("muse_bp_activate",function(){Muse.Utils.buttonsMinWidthHelper()})};Muse.Utils.attachIframesAndObjectsToResumeMedia=function(a){var b=a.data("detached");if(b){for(var d=b.length-1;d>= +0;d--){var g=b[d];!g.$next||g.$next.length==0?g.$parent.append(g.$node?g.$node:g.html):g.$next.before(g.$node?g.$node:g.html);g.$next=g.$parent=g.$node=g.html=void 0}a.data("detached",null)}if(b=a.data("paused"))for(d=0;d0||window.matchMedia&&window.matchMedia("(-moz-touch-enabled)").matches)return{Start:"pointerDown",End:"pointerUp",Move:"pointerMove",Listener:function(a){return function(b){var c= +b.originalEvent||b;if(c.pointerType!=c.POINTER_TYPE_MOUSE)return a.apply(this,arguments)}}};else for(var a=0,b=Muse.Browser.domPrefixes.length;a").css({border:"1px solid #000000;",width:100,height:100,position:"absolute",top:-99999,left:-99999,padding:0,margin:0,overflow:"auto"}).appendTo(document.body)[0];b.scrollHeight!==b.clientHeight&&(a=!0);c(b).remove();return a}();(function(a){var b=a(window),c=a("body"),d=function(){this.$verticalSpacer=null;this.enabled=!1;this.contentBelowSpacer= +this.contentAboveSpacer=this.minHeight=0};d.prototype.init=function(d){this.$verticalSpacer=a(".verticalspacer",d);if(0!=this.$verticalSpacer.length){this.enabled=!0;var g=Muse.Utils.getCSSIntValue(this.$verticalSpacer,"min-height");this.$verticalSpacer.css("min-height","");this.minHeight=Muse.Utils.getCSSIntValue(this.$verticalSpacer,"min-height");this.$verticalSpacer.css("min-height",g);this.pageMinHeight=Muse.Utils.getCSSIntValue(d,"padding-top")+Muse.Utils.getCSSIntValue(d,"min-height")+Muse.Utils.getCSSIntValue(d, +"padding-bottom");this.contentAboveSpacer=parseInt(this.$verticalSpacer.data("content-above-spacer"));this.contentBelowSpacer=parseInt(this.$verticalSpacer.data("content-below-spacer"));var j=this,k=!0,i=[],l=!0;b.resize(function(){if(k){var a=b.width();l?(i.splice(0,i.length),i.push(a),l=!1,setTimeout(function(){l=!0},200)):i[i.length-1]!=a&&(i.push(a),3
');var l=null,l=a(".muse_check_css"), +k=l.css("height","100vh").height(),j=l.css("height","calc(100vh + 300px)").height();0=0&&(h=c+"px");break;case "page_fixedRight":i=b.offset().left-a.offset().left;b=1;a=a.width(); +if(c==="fluidWidth"||c==="fluidWidthHeight")b=1-f;h=b*100+"%";i=i-b*a+"px";break;case "page_fixedCenter":i=b.offset().left-a.offset().left;b=0.5;a=a.width();if(c==="fluidWidth"||c==="fluidWidthHeight")b=0.5-f/2;h=b*100+"%";i=i-b*a+"px"}return{width:f*100+"%",height:g,"margin-left":h,left:i}}var a;if(document.body)a=document.body.scrollTop;var f=b.options,h=f.elastic!=="off",g=b._findWidgetElements("."+f.viewClassName),i=b.slides.$element,k=g,l=b._sslbpSlideOffset,j=i.outerWidth(),m=f.slideClassName== +"Container",n=f.contentLayout_runtime=="lightbox",q=!h&&n&&f.isResponsive;i.parent().outerWidth();f.isResponsive=f.isResponsive&&!h;Muse.Utils.moveElementsOutsideViewport(b.$element.parents());Muse.Utils.moveElementsOutsideViewport(g.children());Muse.Utils.resizeImages(b.$element,b.$element.attr("id"));Muse.Utils.moveElementsInsideViewport(g.children());Muse.Utils.moveElementsInsideViewport(b.$element.parents());var p=i.outerHeight(),o=b._findWidgetElements(f.lightboxPartsSelector);f.isResponsive&& +(o=o.map(function(){var a=c(this).parent();return a.hasClass("popup_anchor")?a[0]:this}));if(0==g.length){if(!b._$sslbpOverlay)b._$sslbpOverlay=c(".LightboxContent"),b._$sslbpOverlay.museOverlay("reuseAcrossBPs")}else{k=c(g[0].parentNode).filter("."+f.clipClassName);k.length===0&&(k=g);o.each(function(a,d){var i=c(d);if(i.css("position")!=="fixed")if(f.isResponsive)q||i.css({top:0});else{var k=b._sslbpShownInitially?i.offset():{top:Muse.Utils.getCSSIntValue(i,"top"),left:Muse.Utils.getCSSIntValue(i, +"left")},j={top:k.top-l.top};h?j.top+=Muse.Utils.getCSSIntValue(g,"padding-top"):j.left=k.left-l.left;i.css(j)}}).addClass("popup_element");var r=c("
").attr("id",g.attr("id")||"").css({left:0,top:0,width:"auto",height:"auto",padding:0,margin:0,zIndex:"auto"}),s;h&&(s=c("
"),f.elastic==="fullScreen"?s.addClass("fullscreen"):f.elastic==="fullWidth"&&s.addClass("fullwidth"),s.css({borderColor:g.css("border-left-color"),borderStyle:g.css("border-left-style"),borderLeftWidth:g.css("border-left-width"), +borderRightWidth:g.css("border-right-width"),borderTopWidth:g.css("border-top-width"),borderBottomWidth:g.css("border-bottom-width")}),f.elastic!=="fullScreen"&&s.css({paddingLeft:g.css("padding-left"),paddingRight:g.css("padding-right"),paddingTop:g.css("padding-top"),paddingBottom:g.css("padding-bottom")}),s.append(Muse.Utils.includeMEditableTags(k)),s.append(Muse.Utils.includeMEditableTags(o)),r.css({border:"none"}));var w=c("
").addClass("overlayWedge").insertBefore(Muse.Utils.includeMEditableTags(i)[0]); +r.append(Muse.Utils.includeMEditableTags(g.children().not("."+f.slideClassName)));Muse.Utils.appendChildren(g,Muse.Utils.includeMEditableTags(i));r.css({visibility:"hidden"}).appendTo(document.body);r.detach().css({visibility:""});Muse.Utils.moveElementsOutsideViewport(k.parents());k.css({position:f.elastic==="fullScreen"?"relative":"absolute",padding:q?k.css("padding"):0,left:f.elastic==="fullWidth"?"":q?k.css("left"):0,top:q?k.css("top"):0,borderWidth:0,background:"none",width:q?k.width()*100/k.parent().width()+ +"%":f.elastic==="fullScreen"?"100%":k.css("width"),height:!q&&f.elastic==="fullScreen"?"100%":k.css("height")});Muse.Utils.moveElementsInsideViewport(k.parents());g.removeAttr("id");!q&&f.elastic!=="fullScreen"&&k.css({width:j+"px",height:p});(!n||!m||!f.isResponsive)&&f.transitionStyle==="fading"&&i.css({position:"absolute",left:0,top:0});var y;if(b._fstpPositionSlides||b._csspResizeFullScreenImages)y=function(a,c){b._fstpPositionSlides&&b._fstpPositionSlides(a,c);b._csspResizeFullScreenImages&& +b._csspResizeFullScreenImages(b,b.slides.$element,f.heroFitting)};j=c("
").addClass("LightboxContent").css({position:"absolute"});if(!q||h)j.append(h?s:k);!q&&!h&&j.append(Muse.Utils.includeMEditableTags(o));if(q){var k=b.$element,o=k.attr("data-sizePolicy"),n=k.attr("data-pintopage"),u;m?(m=b._findWidgetElements("."+f.slideLinksClassName),p=m.attr("data-sizePolicy"),u=m.attr("data-pintopage")):(u=b.$element.find("."+f.slideLinksClassName),m=u.closest(".popup_anchor"),p=u.attr("data-sizePolicy"), +u=u.attr("data-pintopage"));var t;p===void 0&&u===void 0?(p=o,u=n):p==="fixed"&&u==="page_fluidx"&&(u=n);m&&m.length>0&&(Muse.Utils.moveElementsOutsideViewport(m.parents()),t=d(k,m,p,u),Muse.Utils.moveElementsInsideViewport(m.parents()));h?s.append(k.children()):Muse.Utils.appendChildren(j,k.children());m.parent();k.append(m);m&&m.length>0&&m.css(t)}j.museOverlay({autoOpen:!1,$slides:i,$overlaySlice:r,$overlayWedge:w,slideshow:b,onNext:function(){b.next()},onPrevious:function(){b.previous()},onClose:function(){b.stop(); +b.slides.hidePanel(b.slides.activeElement);b.tabs.activeElement&&b.tabs.activeElement.focus()},$elasticContent:s,resizeSlidesFn:y});if(c.browser.msie&&c.browser.version<9){Muse.Assert.assert(!Muse.Utils.isIBE(),"IBE doesn't support ").addClass(f.clipClassName),i=b._findWidgetElements("."+f.slideClassName);d===!0&&f.contentLayout_runtime!=="lightbox"&&f.isResponsive&&(g.css("width",""),h.css("width",""),h.children().each(function(){c(this).css("width","")}));f.contentLayout_runtime==="lightbox"||f.elastic==="fullScreen"||(g.addClass("has_updated_clip_width"), +h.addClass("has_updated_clip_width"),h.children().addClass("has_updated_clip_width"));var k=i.outerWidth(),i=i.outerHeight();if(f.elastic==="fullScreen")g.addClass("fullscreen");else{var l={position:"relative",width:k+"px",height:i+"px",overflow:"hidden"},j=h.css("position");if(j==="absolute")l.position=j,l.left=a(h),l.top=h.css("top");else if(j==="fixed"){var m=Muse.Utils.getStyleSheetRulesById(Muse.Utils.getPageStyleSheets(),h.get(0).id);l.position=j;l.left=Muse.Utils.getRuleProperty(m,"left"); +l.top=Muse.Utils.getRuleProperty(m,"top");l.bottom=Muse.Utils.getRuleProperty(m,"bottom");l.right=Muse.Utils.getRuleProperty(m,"right")}g.css(l);!f.isResponsive&&f.transitionStyle==="fading"&&j!=="fixed"&&(i=k=0);h.css({width:k+"px",height:i+"px"});i=!1;f.isResponsive&&f.contentLayout_runtime==="lightbox"&&h.length>0&&(i=!Muse.Utils.isPropertyInPercent(h.closest(".popup_anchor"),"width"));!i&&f.isResponsive&&h.children().each(function(){if(f.contentLayout_runtime==="lightbox"||f.elastic==="fullWidth")c(this).hasClass("borderbox")|| +c(this).addClass("borderbox"),c(this).css("width","100%");else if(c(this).hasClass("borderbox"))c(this).css("width",k+"px");else{var a=c(this).outerWidth()-c(this).innerWidth();c(this).css("width",k-a+"px")}})}f.isResponsive&&f.contentLayout_runtime!="lightbox"&&f.elastic!="fullScreen"&&(h=h.closest(".popup_anchor"),i=h.children(),l=c(i[0]),(l.css("position")!=="fixed"||i.length>1)&&h.height(l.outerHeight()));b.$element&&g&&b.$element.hasClass("PamphletWidget")&&b.$element.hasClass("allow_click_through")&& +g.css("pointer-events","none");b._fstpPositionSlides&&b._fstpPositionSlides();return g},_syncTargetHeights:function(b){var d=b.options,a=b._findWidgetElements("."+d.viewClassName),f=b._findWidgetElements("."+d.clipClassName),h=b._findWidgetElements("."+d.slideClassName);d.transitionStyle!=="fading"&&d.isResponsive&&(a.css("width",""),f.css("width",""),a.children().css("width",""));d.contentLayout_runtime==="lightbox"||d.elastic==="fullScreen"||(f=b.$element.parents().filter(".has_updated_clip_width"), +f.css("width",""),f.removeClass("has_updated_clip_width"));d.viewClassName==="ContainerGroup"?Muse.Utils.moveElementsOutsideViewport(h):Muse.Utils.moveElementsOutsideViewport(a.children());Muse.Utils.resizeImages(b.$element,b.$element.attr("id"));Muse.Utils.adjustTargetAndSlideHeights(a,d.contentLayout_runtime);if(d.contentLayout_runtime!="lightbox"&&d.elastic!="fullScreen"){var b=a.closest(".popup_anchor"),f=b.children(),g=c(f[0]);(g.css("position")!=="fixed"||f.length>1)&&b.height(g.outerHeight())}d.viewClassName=== +"ContainerGroup"?Muse.Utils.moveElementsInsideViewport(h):Muse.Utils.moveElementsInsideViewport(a.children())},_syncSlideShowTriggerHeights:function(b){var d=b._findWidgetElements("."+b.options.slideLinkClassName),b=b._findWidgetElements("."+b.options.slideLinksClassName),a,f,h;d.each(function(){a=c(this);a.css("height","");a.css("height",parseInt(window.getComputedStyle(this).getPropertyValue("height")))});b.each(function(){a=c(this);a.css("height","");var b=parseInt(window.getComputedStyle(this).getPropertyValue("padding-top")), +d=parseInt(window.getComputedStyle(this).getPropertyValue("padding-bottom")),k=a.innerHeight(),l=a.innerWidth(),j=0;a.attr("data-height-width-ratio")!==void 0&&(j=a.attr("data-height-width-ratio"));a.css("height",Math.max(l*j,k)-(b+d));f=a.closest(".popup_anchor");h=c(f.children()[0]);h.css("position")!="fixed"&&f.height(h.outerHeight())})},_syncCompositionTriggerHeights:function(b){var d=b._findWidgetElements("."+b.options.slideLinkClassName),b=b._findWidgetElements("."+b.options.slideLinksClassName), +a,f,h;d.each(function(){a=c(this);a.css("height","");a.css("height",parseInt(window.getComputedStyle(this).getPropertyValue("height")));f=a.closest(".popup_anchor");a.attr("data-iscompressed")?(h=c("#"+c(this).attr("id").substr(1)))&&f.height(h.innerHeight()):(h=c(f.children()[0]),h.css("position")!=="fixed"&&f.height(h.outerHeight()))});b.each(function(){a=c(this);a.css("height","");a.css("height",parseInt(window.getComputedStyle(this).getPropertyValue("height")))})},_syncLightBoxPartHeights:function(b){var d= +b._findWidgetElements("."+b.options.captionClassName),b=b._findWidgetElements(b.options.lightboxPartsSelector),a=0,f,h;d.length&&(d.each(function(){c(this).css("height","");a=Math.max(a,c(this).outerHeight())}),d.parent().css("height",a+"px"));b.each(function(){f=c(this).closest(".popup_anchor");h=c(f.children()[0]);h.css("position")!="fixed"&&f.height(h.outerHeight())})},_transformMarkup:function(b){var d=b.options,a=b._findWidgetElements("."+d.viewClassName),f=b._findWidgetElements("."+d.slideLinkClassName), +h=b._findWidgetElements(d.lightboxPartsSelector);$element=a;isLightbox=d.contentLayout_runtime==="lightbox";if(b.$element&&b.$element.hasClass("PamphletWidget")&&b.$element.hasClass("allow_click_through")){if(!isLightbox)for(;$element&&$element.length&&!$element.hasClass("PamphletWidget");)$element.css("pointer-events","none"),$element=$element.parent();if(f)for(var g=0;g0&&(q=Math.max(q,a))}function f(a,b){a>0&&b.css("min-width",a)}var h=b.attr("data-contentlayout"),g=h?h==="lightbox":b.attr("data-islightbox")=== +"true",i=g?c(".LightboxContent"):b,k=g?"LightboxContent":"PamphletWidget",l=b.attr("data-showWidgetPartsEnabled")===void 0?!0:!1;this._scopedFind(i,".ContainerGroup",k);this._scopedFind(b,".ThumbGroup","PamphletWidget");var j=this._scopedFind(i,".PamphletPrevButton",k),m=this._scopedFind(i,".PamphletNextButton",k),n=this._scopedFind(i,".PamphletCloseButton",k),q=-1,p=h==="loose";if(!(d&&Muse.Utils.getMinWidthOfElem(b)>0)){this._scopedFind(b,".Thumb","PamphletWidget").forEach(function(c){var g=-1; +d?(g=Muse.Utils.getMinWidthOfParts(c,b),a(g,c)):(g=Muse.Utils.getMinWidthForElement(c,d),f(g,c))});if((!g||!d)&&l){var o=-1,r=-1,s=[];this._scopedFind(i,".Container",k).forEach(function(c){s.push(c);d?(r=Muse.Utils.getMinWidthOfParts(c,b,!0),r>0&&a(r,c)):(r=Muse.Utils.getMinWidthForElement(c,d),p&&r>0?f(r,c):r>0&&(o=Math.max(o,r)))});!d&&!p&&s.forEach(function(a){o>0&&f(o,a)});j&&(h=-1,j=j[0],d?(h=Muse.Utils.getMinWidthOfParts(j,b),a(h,j)):(h=Muse.Utils.getMinWidthForElement(j,d),f(h,j)));m&&(j=-1, +m=m[0],d?(j=Muse.Utils.getMinWidthOfParts(m,b),a(j,m)):(j=Muse.Utils.getMinWidthForElement(m,d),f(j,m)));n&&(m=-1,n=n[0],d?(m=Muse.Utils.getMinWidthOfParts(n,b),a(m,n)):(m=Muse.Utils.getMinWidthForElement(n,d),f(m,n)))}d&&q>0&&b.css("min-width",q)}},_setMinWidthForSlideShow:function(b,d){function a(a){s=Math.max(s,a)}function f(a,b){a>0&&b.css("min-width",a)}var h=b.attr("data-contentlayout")==="lightbox",g=h?c(".LightboxContent"):b,i=h?"LightboxContent":"SlideShowWidget",k=this._scopedFind(g,".SlideShowContentPanel", +i),l=this._scopedFind(b,".SSSlideLinks","SlideShowWidget"),j=".SSSlideLink",m=this._scopedFind(g,".SlideShowCaptionPanel",i),n=this._scopedFind(g,".SSPreviousButton",i),q=this._scopedFind(g,".SSNextButton",i),p=this._scopedFind(g,".SSSlideCount",i),o=this._scopedFind(g,".SSFirstButton",i),r=this._scopedFind(g,".SSLastButton",i),j=".SSSlideLink",s=-1;if(!(d&&Muse.Utils.getMinWidthOfElem(b)>0)){var w=-1;Muse.Utils.isElementFixedSize(l[0])?(l=l[0],d?(w=Muse.Utils.getMinWidthOfParts(l,b),a(w,l)):(w=Muse.Utils.getMinWidthForElement(l, +d),f(w,l))):d&&this._scopedFind(b,j,"SlideShowWidget").forEach(function(c){var d=-1,d=Muse.Utils.getMinWidthOfParts(c,b);a(d,c)});if(!h||!d){var y=0,u=0;this._scopedFind(g,".SSSlide",i).forEach(function(c){d?(y=Muse.Utils.getMinWidthOfParts(c,b,!0),y>0&&a(y,c)):(y=Muse.Utils.getMinWidthForElement(c,d),y>0&&(u=Math.max(u,y)))});d||f(u,k[0]);m&&(h=-1,m=m[0],d?(h=Muse.Utils.getMinWidthOfParts(m,b),a(h,m)):(h=Muse.Utils.getMinWidthForElement(m,d),f(h,m)));n&&(m=-1,n=n[0],d?(m=Muse.Utils.getMinWidthOfParts(n, +b),a(m,n)):(m=Muse.Utils.getMinWidthForElement(n,d),f(m,n)));q&&(n=-1,q=q[0],d?(n=Muse.Utils.getMinWidthOfParts(q,b),a(n,q)):(n=Muse.Utils.getMinWidthForElement(q,d),f(n,q)));p&&(q=-1,p=p[0],d?(q=Muse.Utils.getMinWidthOfParts(p,b),a(q,p)):(q=Muse.Utils.getMinWidthForElement(p,d),f(q,p)));o&&(p=-1,o=o[0],d?(p=Muse.Utils.getMinWidthOfParts(o,b),a(p,o)):(p=Muse.Utils.getMinWidthForElement(o,d),f(p,o)));r&&(o=-1,r=r[0],d?(o=Muse.Utils.getMinWidthOfParts(r,b),a(o,r)):(o=Muse.Utils.getMinWidthForElement(r, +d),f(o,r)))}d&&s>0&&b.css("min-width",s)}},_setMinWidth:function(b,c){var a=b.attr("data-sizePolicy"),f=b.hasClass("SlideShowWidget"),h=b.hasClass("PamphletWidget");if(c||a!=="fixed")h?this._setMinWidthForComposition(b,c):f&&this._setMinWidthForSlideShow(b,c)},_onResize:function(b){function d(a,b){for(var c=1;ca.right)a.right=d.right;if(d.topa.bottom)a.bottom= +d.bottom}}var a=b.data.plugin,f=b.data.slideshow,b=b.data.isLightbox,h=f.options;Muse.Utils.moveElementsOutsideViewport(f.$element.parents());h.isResponsive&&(a._syncTargetHeights(f),f.$element.hasClass("PamphletWidget")?a._syncCompositionTriggerHeights(f):a._syncSlideShowTriggerHeights(f),a._syncLightBoxPartHeights(f));h.transitionStyle!=="fading"&&a._updateClipElement(f,!0);var g=f.tabs,i=f.slides.$element;if(g&&i){g.$element[0].style.display="block";var k=g.$element[0].getBoundingClientRect(), +l={};l.left=k.left;l.right=k.right;l.top=k.top;l.bottom=k.bottom;d(l,g.$element);var j=[];for(index=0;indexl.right||m.bottoml.bottom);for(index=0;index=a.x&&b.pageX<=a.x+a.width&&b.pageY>=a.y&&b.pageY<=a.y+a.height},_layoutThumbs:function(b){var d=b.options,a=Muse.Utils.getStyleValue;b._findWidgetElements("."+d.slideLinksClassName).each(function(){var b=c(this).find("."+d.slideLinkClassName);firstThumb=b[0];tWidth=a(firstThumb,"width");tHeight=a(firstThumb,"height");gapH=a(firstThumb,"margin-right");gapV=a(firstThumb,"margin-bottom");borderL=a(firstThumb, +"border-left-width");borderR=a(firstThumb,"border-right-width");borderT=a(firstThumb,"border-top-width");borderB=a(firstThumb,"border-bottom-width");gWidth=a(this,"width");paddingL=a(this,"padding-left");paddingT=a(this,"padding-top");maxNumThumb=Math.floor((gWidth+gapH)/(tWidth+borderL+borderR+gapH));gStyle=this.runtimeStyle?this.runtimeStyle:this.style;numRow=Math.ceil(b.length/maxNumThumb);firstRowNum=b.lengthfirstRowNum&&(numInRow=1,leftPos=leftMostPos,topPos+=tHeight+borderT+borderB+gapV);numInRow++>1&&(leftPos+=tWidth+borderL+borderR+gapH);var a=this.runtimeStyle?this.runtimeStyle:this.style;a.marginRight="0px";a.marginBottom="0px";a.left=leftPos+"px";a.top=topPos+"px"})})},_resizeFullScreenImages:function(b,d,a){d.each(function(){c(this).find("img").each(function(){this.complete&& +!c(this).hasClass(b.options.imageIncludeClassName)&&b._csspPositionImage(this,a,b.options.elastic)})})},_setupImagePositioning:function(b,d,a,f){var h=this;d.each(function(){c(this).find("img").each(function(){var b=this;b.complete?h._positionImage(b,a,f):c(b).load(function(){h._positionImage(b,a,f)})})})},_positionImage:function(b,d,a,f,h){var g=c(window),i=b.runtimeStyle?b.runtimeStyle:b.style,k=a==="fullWidth"||a==="fullScreen",l=a==="fullHeight"||a==="fullScreen",j=d=="fitContentProportionally"; +$img=c(b);k=k?window.innerWidth?window.innerWidth:g.width():j?$img.data("width"):$img.parent().parent().hasClass("rounded-corners")&&$img.parent().parent().hasClass("SSSlide")&&$img.parent().hasClass("clip_frame")?$img.parent().parent().closest(":not(.bc_ch_wrapper)").width():$img.parent().closest(":not(.bc_ch_wrapper)").width();g=l?window.innerHeight?window.innerHeight:g.height():j?$img.data("height"):$img.parent().parent().hasClass("rounded-corners")&&$img.parent().parent().hasClass("SSSlide")&& +$img.parent().hasClass("clip_frame")?$img.parent().parent().closest(":not(.bc_ch_wrapper)").height():$img.parent().closest(":not(.bc_ch_wrapper)").height();f=f!==void 0?f:Muse.Utils.getNaturalWidth(b);b=h!==void 0?h:Muse.Utils.getNaturalHeight(b);a!=="off"&&(f===0&&(f=$img.data("imageWidth")),b===0&&(b=$img.data("imageHeight")));if(k==f&&g==b)i.marginTop="0px",i.marginLeft="0px";else{l=f;h=b;if(d=="fillFrameProportionally"){if(a!=="off"||f>k&&b>g)d=f/k,a=b/g,dk||b>g))d=f/k,a=b/g,d>a?(h=b/d,l=f/d):(h=b/a,l=f/a);i.width=Muse.Utils.pixelRound(l)+"px";i.height=Muse.Utils.pixelRound(h)+"px";i.marginTop=Muse.Utils.pixelRound((g-h)/2)+"px";i.marginLeft=Muse.Utils.pixelRound((k-l)/2)+"px"}}};c.extend(WebPro.Widget.ContentSlideShow.slideImageIncludePlugin.defaultOptions,{imageIncludeClassName:"ImageInclude",slideLoadingClassName:"SSSlideLoading"});WebPro.Widget.ContentSlideShow.prototype.defaultPlugins=[Muse.Plugins.ContentSlideShow]; +WebPro.Widget.ContentSlideShow.prototype._getAjaxSrcForImage=function(b){for(var d=c(window).data("ResolutionManager").getDataSrcAttrName(),a=d.length,f,h=0;hthis.depCount&&!this.defined){if(K(k)){if(this.events.error&&this.map.isDefine||g.onError!== +ha)try{h=l.execCb(c,k,b,h)}catch(d){a=d}else h=l.execCb(c,k,b,h);this.map.isDefine&&void 0===h&&((b=this.module)?h=b.exports:this.usingExports&&(h=this.exports));if(a)return a.requireMap=this.map,a.requireModules=this.map.isDefine?[this.map.id]:null,a.requireType=this.map.isDefine?"define":"require",A(this.error=a)}else h=k;this.exports=h;if(this.map.isDefine&&!this.ignore&&(v[c]=h,g.onResourceLoad)){var f=[];y(this.depMaps,function(a){f.push(a.normalizedMap||a)});g.onResourceLoad(l,this.map,f)}C(c); +this.defined=!0}this.defining=!1;this.defined&&!this.defineEmitted&&(this.defineEmitted=!0,this.emit("defined",this.exports),this.defineEmitComplete=!0)}}},callPlugin:function(){var a=this.map,b=a.id,d=q(a.prefix);this.depMaps.push(d);w(d,"defined",z(this,function(h){var k,f,d=e(fa,this.map.id),M=this.map.name,r=this.map.parentMap?this.map.parentMap.name:null,m=l.makeRequire(a.parentMap,{enableBuildCallback:!0});if(this.map.unnormalized){if(h.normalize&&(M=h.normalize(M,function(a){return c(a,r,!0)})|| +""),f=q(a.prefix+"!"+M,this.map.parentMap),w(f,"defined",z(this,function(a){this.map.normalizedMap=f;this.init([],function(){return a},null,{enabled:!0,ignore:!0})})),h=e(t,f.id)){this.depMaps.push(f);if(this.events.error)h.on("error",z(this,function(a){this.emit("error",a)}));h.enable()}}else d?(this.map.url=l.nameToUrl(d),this.load()):(k=z(this,function(a){this.init([],function(){return a},null,{enabled:!0})}),k.error=z(this,function(a){this.inited=!0;this.error=a;a.requireModules=[b];D(t,function(a){0=== +a.map.id.indexOf(b+"_unnormalized")&&C(a.map.id)});A(a)}),k.fromText=z(this,function(h,c){var d=a.name,f=q(d),M=S;c&&(h=c);M&&(S=!1);u(f);x(p.config,b)&&(p.config[d]=p.config[b]);try{g.exec(h)}catch(e){return A(F("fromtexteval","fromText eval for "+b+" failed: "+e,e,[b]))}M&&(S=!0);this.depMaps.push(f);l.completeLoad(d);m([d],k)}),h.load(a.name,m,k,p))}));l.enable(d,this);this.pluginMaps[d.id]=d},enable:function(){Z[this.map.id]=this;this.enabling=this.enabled=!0;y(this.depMaps,z(this,function(a, +b){var c,h;if("string"===typeof a){a=q(a,this.map.isDefine?this.map:this.map.parentMap,!1,!this.skipMap);this.depMaps[b]=a;if(c=e(R,a.id)){this.depExports[b]=c(this);return}this.depCount+=1;w(a,"defined",z(this,function(a){this.undefed||(this.defineDep(b,a),this.check())}));this.errback?w(a,"error",z(this,this.errback)):this.events.error&&w(a,"error",z(this,function(a){this.emit("error",a)}))}c=a.id;h=t[c];x(R,c)||!h||h.enabled||l.enable(a,this)}));D(this.pluginMaps,z(this,function(a){var b=e(t,a.id); +b&&!b.enabled&&l.enable(a,this)}));this.enabling=!1;this.check()},on:function(a,b){var c=this.events[a];c||(c=this.events[a]=[]);c.push(b)},emit:function(a,b){y(this.events[a],function(a){a(b)});"error"===a&&delete this.events[a]}};l={config:p,contextName:b,registry:t,defined:v,urlFetched:W,defQueue:G,defQueueMap:{},Module:da,makeModuleMap:q,nextTick:g.nextTick,onError:A,configure:function(a){a.baseUrl&&"/"!==a.baseUrl.charAt(a.baseUrl.length-1)&&(a.baseUrl+="/");if("string"===typeof a.urlArgs){var b= +a.urlArgs;a.urlArgs=function(a,c){return(-1===c.indexOf("?")?"?":"&")+b}}var c=p.shim,h={paths:!0,bundles:!0,config:!0,map:!0};D(a,function(a,b){h[b]?(p[b]||(p[b]={}),Y(p[b],a,!0,!0)):p[b]=a});a.bundles&&D(a.bundles,function(a,b){y(a,function(a){a!==b&&(fa[a]=b)})});a.shim&&(D(a.shim,function(a,b){L(a)&&(a={deps:a});!a.exports&&!a.init||a.exportsFn||(a.exportsFn=l.makeShimExports(a));c[b]=a}),p.shim=c);a.packages&&y(a.packages,function(a){var b;a="string"===typeof a?{name:a}:a;b=a.name;a.location&& +(p.paths[b]=a.location);p.pkgs[b]=a.name+"/"+(a.main||"main").replace(na,"").replace(U,"")});D(t,function(a,b){a.inited||a.map.unnormalized||(a.map=q(b,null,!0))});(a.deps||a.callback)&&l.require(a.deps||[],a.callback)},makeShimExports:function(a){return function(){var b;a.init&&(b=a.init.apply(ga,arguments));return b||a.exports&&ia(a.exports)}},makeRequire:function(a,n){function m(c,d,f){var e,r;n.enableBuildCallback&&d&&K(d)&&(d.__requireJsBuild=!0);if("string"===typeof c){if(K(d))return A(F("requireargs", +"Invalid require call"),f);if(a&&x(R,c))return R[c](t[a.id]);if(g.get)return g.get(l,c,a,m);e=q(c,a,!1,!0);e=e.id;return x(v,e)?v[e]:A(F("notloaded",'Module name "'+e+'" has not been loaded yet for context: '+b+(a?"":". Use require([])")))}P();l.nextTick(function(){P();r=u(q(null,a));r.skipMap=n.skipMap;r.init(c,d,f,{enabled:!0});H()});return m}n=n||{};Y(m,{isBrowser:E,toUrl:function(b){var d,f=b.lastIndexOf("."),g=b.split("/")[0];-1!==f&&("."!==g&&".."!==g||1e.attachEvent.toString().indexOf("[native code")||ca?(e.addEventListener("load",b.onScriptLoad,!1),e.addEventListener("error",b.onScriptError,!1)):(S=!0,e.attachEvent("onreadystatechange",b.onScriptLoad));e.src=d;if(m.onNodeCreated)m.onNodeCreated(e,m,c,d);P=e;H?C.insertBefore(e,H):C.appendChild(e);P=null;return e}if(ja)try{setTimeout(function(){}, +0),importScripts(d),b.completeLoad(c)}catch(q){b.onError(F("importscripts","importScripts failed for "+c+" at "+d,q,[c]))}};E&&!w.skipDataMain&&X(document.getElementsByTagName("script"),function(b){C||(C=b.parentNode);if(O=b.getAttribute("data-main"))return u=O,w.baseUrl||-1!==u.indexOf("!")||(I=u.split("/"),u=I.pop(),T=I.length?I.join("/")+"/":"./",w.baseUrl=T),u=u.replace(U,""),g.jsExtRegExp.test(u)&&(u=O),w.deps=w.deps?w.deps.concat(u):[u],!0});define=function(b,c,d){var e,g;"string"!==typeof b&& +(d=c,c=b,b=null);L(c)||(d=c,c=null);!c&&K(d)&&(c=[],d.length&&(d.toString().replace(qa,ka).replace(ra,function(b,d){c.push(d)}),c=(1===d.length?["require"]:["require","exports","module"]).concat(c)));S&&(e=P||pa())&&(b||(b=e.getAttribute("data-requiremodule")),g=J[e.getAttribute("data-requirecontext")]);g?(g.defQueue.push([b,c,d]),g.defQueueMap[b]=!0):V.push([b,c,d])};define.amd={jQuery:!0};g.exec=function(b){return eval(b)};g(w)}})(this); +;(function(){if(!("undefined"==typeof Muse||"undefined"==typeof Muse.assets)){var c=function(a,b){for(var c=0,d=a.length;c0)){var c=f.originalEvent?f.originalEvent:f,d,g=r?c.touches[0]:c;A=w;r?B=c.touches.length:f.preventDefault();F=0;K=G=null;M=N=E=0;I=1;L=0;x=Ba();Y=Ca();Z=U=0;if(!r||B===b.fingers||b.fingers===y||V()){if(ia(0,g),aa=O(),B==2&&(ia(1,c.touches[1]),N=M=ja(x[0].start,x[1].start)),b.swipeStatus||b.pinchStatus)d=J(c,A)}else d=!1;if(d===!1)return A=z,J(c,A),d;else b.hold&&(ka=setTimeout(a.proxy(function(){v.trigger("hold",[c.target]);b.hold&&(d=b.hold.call(v,c,c.target))},this),b.longTapThreshold)), +ba(!0);return null}}function la(c){var o=c.originalEvent?c.originalEvent:c;if(!(A===D||A===z||ta())){var q,p=ua(r?o.touches[0]:o);W=O();if(r)B=o.touches.length;b.hold&&clearTimeout(ka);A=s;B==2&&(N==0?(ia(1,o.touches[1]),N=M=ja(x[0].start,x[1].start)):(ua(o.touches[1]),M=ja(x[0].end,x[1].end),K=I<1?j:h),I=(M/N*1).toFixed(2),L=Math.abs(N-M));if(B===b.fingers||b.fingers===y||!r||V()){var n;n=p.start;var m=p.end;n=Math.round(Math.atan2(m.y-n.y,n.x-m.x)*180/Math.PI);n<0&&(n=360-Math.abs(n));n=G=n<=45&& +n>=0?d:n<=360&&n>=315?d:n>=135&&n<=225?g:n>45&&n<135?i:f;if(b.allowPageScroll===k||V())c.preventDefault();else switch(m=b.allowPageScroll===l,n){case d:(b.swipeLeft&&m||!m&&b.allowPageScroll!=t)&&c.preventDefault();break;case g:(b.swipeRight&&m||!m&&b.allowPageScroll!=t)&&c.preventDefault();break;case f:(b.swipeUp&&m||!m&&b.allowPageScroll!=u)&&c.preventDefault();break;case i:(b.swipeDown&&m||!m&&b.allowPageScroll!=u)&&c.preventDefault()}F=Math.round(Math.sqrt(Math.pow(p.end.x-p.start.x,2)+Math.pow(p.end.y- +p.start.y,2)));E=W-aa;c=G;n=F;n=Math.max(n,va(c));Y[c].distance=n;if(b.swipeStatus||b.pinchStatus)q=J(o,A);if(!b.triggerOnTouchEnd||b.triggerOnTouchLeave)c=!0,b.triggerOnTouchLeave&&(c=a(this),n=c.offset(),c={left:n.left,right:n.left+c.outerWidth(),top:n.top,bottom:n.top+c.outerHeight()},c=p.end.x>c.left&&p.end.xc.top&&p.end.y0)return U=O(),Z=event.touches.length+1,!0;ta()&&(B=Z);W=O();E=W-aa;oa()||!pa()?(A=z,J(c,A)):b.triggerOnTouchEnd||b.triggerOnTouchEnd==!1&&A===s?(a.preventDefault(),A=D,J(c,A)):!b.triggerOnTouchEnd&&b.tap?(A=D,R(c,A,q)):A===s&&(A=z,J(c,A));ba(!1);return null}function S(){M=N=aa=W=B=0;I=1;Z=U=0;ba(!1)}function qa(a){a=a.originalEvent;b.triggerOnTouchLeave&&(A=ma(D),J(a,A))}function wa(){v.unbind(ca,ha);v.unbind(da,S);v.unbind(ra,la);v.unbind(sa,na);T&&v.unbind(T, +qa);ba(!1)}function ma(a){var c=a,f=b.maxTimeThreshold?E>=b.maxTimeThreshold?!1:!0:!0,d=pa(),g=oa();!f||g?c=z:d&&a==s&&(!b.triggerOnTouchEnd||b.triggerOnTouchLeave)?c=D:!d&&a==D&&b.triggerOnTouchLeave&&(c=z);return c}function J(a,c){var f=void 0;if(xa()&&ya()||ya())f=R(a,c,m);else if((za()&&V()||V())&&f!==!1)f=R(a,c,o);Aa()&&b.doubleTap&&f!==!1?f=R(a,c,p):E>b.longTapThreshold&&F=b.threshold);return a}function oa(){var a=!1;b.cancelThreshold!==null&&G!==null&&(a=va(G)-F>=b.cancelThreshold);return a}function za(){var a=B===b.fingers||b.fingers===y||!r,c=x[0].end.x!==0,f;f=b.pinchThreshold!==null?L>=b.pinchThreshold:!0;return a&&c&&f}function V(){return!(!b.pinchStatus&&!b.pinchIn&& +!b.pinchOut)}function xa(){var a=b.maxTimeThreshold?E>=b.maxTimeThreshold?!1:!0:!0,c=pa(),f=B===b.fingers||b.fingers===y||!r,d=x[0].end.x!==0;return!oa()&&d&&f&&c&&a}function ya(){return!(!b.swipe&&!b.swipeStatus&&!b.swipeLeft&&!b.swipeRight&&!b.swipeUp&&!b.swipeDown)}function Aa(){if(P==null)return!1;var a=O();return!!b.doubleTap&&a-P<=b.doubleTapThreshold}function ta(){var a=!1;U&&O()-U<=b.fingerReleaseThreshold&&(a=!0);return a}function ba(a){a===!0?(v.bind(ra,la),v.bind(sa,na),T&&v.bind(T,qa)): +(v.unbind(ra,la,!1),v.unbind(sa,na,!1),T&&v.unbind(T,qa,!1));v.data(Q+"_intouch",a===!0)}function ia(a,c){x[a].identifier=c.identifier!==void 0?c.identifier:0;x[a].start.x=x[a].end.x=c.pageX||c.clientX;x[a].start.y=x[a].end.y=c.pageY||c.clientY;return x[a]}function ua(a){var c;a:{for(c=0;c0&&(a=f>1||!b.isArray(arguments[0])?b.makeArray(arguments):arguments[0]);return a},hasPointerCapture:function(){return!!c.hasPointerCapture}, +setPointerCapture:function(a,b){if(b.pointerId&&!c.hasPointerCapture)if(a.setPointerCapture)a.setPointerCapture(b.pointerId),c.hasPointerCapture=!0;else if(a.msSetPointerCapture)a.msSetPointerCapture(b.pointerId),c.hasPointerCapture=!0},releasePointerCapture:function(a,b){b.pointerId&&c.hasPointerCapture&&(a.releasePointerCapture?a.releasePointerCapture(b.pointerId):a.msReleasePointerCapture&&a.msReleasePointerCapture(b.pointerId),delete c.hasPointerCapture)},scopedFind:function(a,f,c,d){for(var c= +" "+c+" ",l=[],a=b(a).find(f),f=a.length,d=b(d)[0],j=0;j1&&g[0]||"Widget";a=g[k-1];c[namespace][a]=h}})(c,WebPro,window,document);(function(b,c){c.widget("Widget.Button",c.Widget,{defaultOptions:{hoverClass:"wp-button-hover",activeClass:"wp-button-down",disabledClass:"wp-button-disabled",disabled:!1,clickCallback:null,prevCallback:null,nextCallback:null},_attachBehavior:function(){var a= +this,f=function(c){a.$element.removeClass(a.options.activeClass);!a.options.disabled&&a.options.clickCallback&&a.options.clickCallback.call(this,c);b(a.$element).off("mouseup pointerup",f);a.pointerHandled=!1;if(c.type=="pointerup")a.completelyHandled=!0};this.pointerHandled=this.completelyHandled=!1;this.$element.on("keydown",function(b){if(!a.options.disabled){var f=b.which||b.keyCode;switch(f){case 37:case 38:b.preventDefault();a.options.prevCallback&&a.options.prevCallback.call(this,b);break; +case 39:case 40:b.preventDefault();a.options.nextCallback&&a.options.nextCallback.call(this,b);break;case 32:case 13:f===32&&b.preventDefault(),a.options.clickCallback&&a.options.clickCallback.call(this,b)}}}).on("mouseover",function(){a.options.disabled||a.$element.addClass(a.options.hoverClass+(a.mouseDown?" "+a.options.activeClass:""))}).on("mouseleave",function(){a.$element.removeClass(a.options.hoverClass+" "+a.options.activeClass);b(a.$element).off("mouseup",f)}).on("mousedown",function(){!a.options.disabled&& +!a.pointerHandled&&!a.completelyHandled?(a.$element.addClass(a.options.activeClass),b(a.$element).on("mouseup",f)):a.completelyHandled=!1}).on("pointerdown",function(){if(!a.options.disabled)a.pointerHandled=!0,a.completelyHandled=!1,a.$element.addClass(a.options.activeClass),b(a.$element).on("pointerup",f)});this.disabled(this.options.disabled)},disabled:function(a){if(typeof a==="boolean")this.options.disabled=a,this.$element[a?"addClass":"removeClass"](this.options.disabledClass);return this.options.disabled}}); +b.fn.wpButton=function(a){this.each(function(){new c.Widget.Button(this,a)});return this}})(c,WebPro,window,document);(function(b,c){c.widget("Widget.RadioGroup",c.Widget,{_widgetName:"radio-group",defaultOptions:{defaultIndex:0,hoverClass:"wp-radio-hover",downClass:"wp-radio-down",disabledClass:"wp-radio-disabled",checkedClass:"wp-radio-checked",disabled:!1,toggleStateEnabled:!1},_attachBehavior:function(){var a=this;this.buttons=[];this.activeElement=null;this.activeIndex=-1;this.$element.each(function(){a.buttons.push(a._addButtonBehavior(this))}); +this.disabled(this.options.disabled)},_bpActivate:function(){if(-1!=this.activeIndex){var a=this._getElement(this.activeIndex);a&&b(a).addClass(this.options.checkedClass)}},_bpDeactivate:function(){if(-1!=this.activeIndex){var a=this._getElement(this.activeIndex);a&&b(a).removeClass(this.options.checkedClass)}},_addButtonBehavior:function(a){var b=this,h=new c.Widget.Button(a,{hoverClass:this.options.hoverClass,downClass:this.options.downClass,disabledClass:this.options.disabledClass,clickCallback:function(g){return b._handleClick(g, +h,a)},prevCallback:function(g){return b._handlePrev(g,h,a)},nextCallback:function(g){return b._handleNext(g,h,a)}});return h},_handlePrev:function(){if(!this.options.disabled){if(this.activeIndex>this._getElementIndex(this.firstButton.$element[0]))this.activeIndex--;else if(this.activeIndex===this._getElementIndex(this.firstButton.$element[0])||this.activeIndex===-1)this.activeIndex=this._getElementIndex(this.lastButton.$element[0]);this._getElementByIndex(this.activeIndex).focus();this.checkButton(this.activeIndex)}}, +_handleNext:function(){if(!this.options.disabled){if(this.activeIndex=0?this.$element.eq(a)[0]: +null},_getElement:function(a){return typeof a==="number"?this._getElementByIndex(a):a},checkButton:function(a){var a=this._getElement(a),f=this.activeElement,c=this.options.checkedClass;a!==f?(f&&this.uncheckButton(f),a&&b(a).addClass(c)):this.options.toggleStateEnabled&&a&&(this.uncheckButton(a,c),a=null);this.activeElement=a;this.activeIndex=this._getElementIndex(a)},uncheckButton:function(a){b(a).removeClass(this.options.checkedClass)},disabled:function(a){if(typeof a==="boolean")this.disabled= +a,b.each(this.buttons,function(){this.disabled(a)});return this.options.disabled}});b.fn.wpRadioGroup=function(a){new c.Widget.RadioGroup(this,a);return this}})(c,WebPro,window,document);(function(b,c){c.widget("Widget.TabGroup",c.Widget.RadioGroup,{defaultOptions:{defaultIndex:0,hoverClass:"wp-tab-hover",downClass:"wp-tab-down",disabledClass:"wp-tab-disabled",checkedClass:"wp-tab-active",disabled:!1,toggleStateEnabled:!1,isPopupButtonWidget:!1,parentSelectors:[".ThumbGroup",".AccordionWidget",".TabbedPanelsWidget"]}, +_attachBehavior:function(){this._super.prototype._attachBehavior.apply(this,arguments);this.isPopupButtonWidget=this.options.isPopupButtonWidget;this.numButtons=this.buttons.length;this.firstButton=this.buttons[0];this.lastButton=this.buttons[this.numButtons-1];this.configureAria()},selectTab:function(a){this.checkButton(a)},configureAria:function(){var a=this;if(this.options.isPopupButtonWidget===!0||this.numButtons===1)b.each(this.buttons,function(){this.$element.attr({role:"button",tabindex:"0", +"aria-haspopup":"true"})}),this.isPopupButtonWidget=!0;else if(this.numButtons>1)this.parentElement=this.buttons[0].$element.parents(this.options.parentSelectors.join()),this.parentElement.attr("role","tablist"),b.each(this.buttons,function(b){this.$element.attr({role:"tab",tabindex:"0"});b>0&&a.uncheckButton(this.$element)})},checkButton:function(a){var f=this._getElement(a),c=this._getElementIndex(f),c={tab:f,tabIndex:c};this.trigger("wp-tab-before-select",c);this._super.prototype.checkButton.apply(this, +arguments);b(f).attr({tabindex:"0"});this.options.contentLayout_runtime!=="lightbox"&&b(f).attr({"aria-selected":"true"});this.trigger("wp-tab-select",c)},uncheckButton:function(a){this._super.prototype.uncheckButton.apply(this,arguments);this.isPopupButtonWidget||(b(a).attr({tabindex:"-1"}),this.options.contentLayout_runtime!=="lightbox"&&b(a).attr({"aria-selected":"false"}))}});b.fn.wpTabGroup=function(a){new c.Widget.TabGroup(this,a);return this}})(c,WebPro,window,document);(function(b,c){c.widget("Widget.PanelGroup", +c.Widget,{_widgetName:"panel-group",defaultOptions:{defaultIndex:0,panelClass:"wp-panel",activeClass:"wp-panel-active",toggleStateEnabled:!1,tabGroups:null},_setUp:function(){var a=this;this.tabGroups=[];this._tabCallback=function(b,c){a._handleTabSelect(b,c)};this.showLock=0;this.tabDriver=null;return this._super.prototype._setUp.apply(this,arguments)},_bpActivate:function(){if(-1!=this.activeIndex){var a=this._getElement(this.activeIndex);a&&b(a).addClass(this.options.activeClass)}},_bpDeactivate:function(){if(-1!= +this.activeIndex){var a=this._getElement(this.activeIndex);a&&b(a).removeClass(this.options.activeClass)}},_attachBehavior:function(){this.activeElement=null;this.activeIndex=-1;this.$element.addClass(this.options.panelClass);var a=this.options.defaultIndex;typeof a==="number"&&a>=0&&this.showPanel(a);this.addTabGroup(this.options.tabGroups)},_getElementIndex:function(a){return a?b.inArray(a,this.$element.get()):-1},_getElementByIndex:function(a){return this.$element.eq(a)[0]},_getElement:function(a){return typeof a=== +"number"?this._getElementByIndex(a):a},configureAria:function(a){b.each(this.$element,function(f,c){b(c).attr({role:"tabpanel","aria-labelledby":a.buttons[f].$element.attr("id")});a.buttons[f].$element.attr({"aria-controls":b(c).attr("id")})})},showPanel:function(a){if(!this.showLock){++this.showLock;var f=this._getElement(a),c=this.activeElement,g=this.options.activeClass;if(f)if(f!==c){a={panel:f,panelIndex:this._getElementIndex(f)};this.trigger("wp-panel-before-show",a);c&&this.hidePanel(c);b(f).addClass(g); +this.activeElement=f;this.activeIndex=this._getElementIndex(f);f=this.tabGroups;for(c=0;c0)a.options.marginBottom=Muse.Utils.getCSSIntValue(l,"margin-bottom"),a.options.originalHeight=l[0].scrollHeight;a.options.rotatedAccordion=l;c.bind("wp-panel-show", +function(b,c){f._showPanel(a,c)});c.bind("wp-panel-hide",function(b,c){f._hidePanel(a,c)});g.each(function(a){var a=a===d,f={};f.overflow=a?"":"hidden";if(k==="vertical"||k==="both")f.height=a?"auto":"0";if(k==="horizontal"||k==="both")f.width=a?"auto":"0";b(this).css(f)})},_updateMarginBottomForRotatedAccordion:function(a){a.options.rotatedAccordion.css("margin-bottom",Math.round(a.options.marginBottom-(a.options.rotatedAccordion[0].scrollHeight-a.options.originalHeight))+"px")},_transitionPanel:function(a, +f,c){b("body").trigger("wp-page-height-change",f-a);if((a=c.options.rotatedAccordion)&&a.length>0){if(c.options.originalHeight==0&&"undefined"!==typeof f)c.options.marginBottom=Muse.Utils.getCSSIntValue(a,"margin-bottom"),c.options.originalHeight=a[0].scrollHeight;this._updateMarginBottomForRotatedAccordion(c)}},_showPanel:function(a,f){if(!a.$bp||a.$bp.hasClass("active")){var c=a.options,g=c.transitionDirection,d=b(f.panel),k={},l=c.dispatchTransitionEvents,j=this,m=d.height(),n=function(b){b=parseInt(b.elem.style.height); +j._transitionPanel(m,b,a);m=b};if(g==="vertical"||g==="both")k.height=d[0].scrollHeight+"px";if(g==="horizontal"||g==="both")k.width=d[0].scrollWidth+"px";d.stop(!0,!0).queue("animationFrameFx",b.animationFrameFx).animate(k,{duration:c.transitionDuration,progress:l?n:null,queue:"animationFrameFx",complete:function(){var b={overflow:""};if(g==="vertical"||g==="both")b.height="auto";if(g==="horizontal"||g==="both")b.width="auto";d.css(b);(b=a.options.rotatedAccordion)&&b.length>0&&j._updateMarginBottomForRotatedAccordion(a)}}).dequeue("animationFrameFx")}}, +_hidePanel:function(a,f){if(!a.$bp||a.$bp.hasClass("active")){var c=a.options,g=c.transitionDirection,d=b(f.panel),k={},l=c.dispatchTransitionEvents,j=this,m=d.height(),n=function(b){b=parseInt(b.elem.style.height);j._transitionPanel(m,b,a);m=b};if(g==="vertical"||g==="both")k.height="0";if(g==="horizontal"||g==="both")k.width="0";d.stop(!0,!0).queue("animationFrameFx",b.animationFrameFx).animate(k,{duration:c.transitionDuration,queue:"animationFrameFx",progress:l?n:null,complete:function(){d.css("overflow", +"hidden");var b=a.options.rotatedAccordion;b&&b.length>0&&j._updateMarginBottomForRotatedAccordion(a)}}).dequeue("animationFrameFx")}}}})(c,WebPro,window,document);(function(b,c){c.widget("Widget.SlideShowBase",c.Widget,{_widgetName:"slideshow-base",defaultOptions:{displayInterval:6E3,autoPlay:!1,loop:!0,playOnce:!1},_setUp:function(){var a=this;this._ssTimer=0;this._ssTimerTriggered=!1;this._ssTimerCallback=function(){a._ssTimerTriggered=!0;a.next();a._ssTimerTriggered=!1};return c.Widget.prototype._setUp.apply(this, +arguments)},_ready:function(){this.options.autoPlay&&this.play()},play:function(a){e=this.trigger("wp-slideshow-before-play");e.isDefaultPrevented()||(this._startTimer(!1,a),this.trigger("wp-slideshow-play"))},stop:function(){e=this.trigger("wp-slideshow-before-stop");e.isDefaultPrevented()||(this._stopTimer(),this.trigger("wp-slideshow-stop"))},isPlaying:function(){return this._ssTimer!==0},_startTimer:function(a,b){this._stopTimer();var c=b?0:this.options.displayInterval;a&&(c+=this.options.transitionDuration); +this._ssTimer=setTimeout(this._ssTimerCallback,c)},_stopTimer:function(){this._ssTimer&&clearTimeout(this._ssTimer);this._ssTimer=0},_executeCall:function(a,b){e=this.trigger("wp-slideshow-before-"+a);if((!this._$sslbpOverlay||!(this._$sslbpOverlay.hasClass("LightboxContent")&&this._$sslbpOverlay.css("opacity")==0))&&!e.isDefaultPrevented())this["_"+a].apply(this,b)&&this.stop(),this.isPlaying()&&this._startTimer(!0),this.trigger("wp-slideshow-"+a)},first:function(){return this._executeCall("first", +arguments)},last:function(){return this._executeCall("last",arguments)},previous:function(){return this._executeCall("previous",arguments)},next:function(){return this._executeCall("next",arguments)},goTo:function(){return this._executeCall("goTo",arguments)},close:function(){return this._executeCall("close",arguments)},_first:function(){},_last:function(){},_previous:function(){},_next:function(){},_goTo:function(){},_close:function(){}})})(c,WebPro,window,document);(function(b,c){c.widget("Widget.ContentSlideShow", +c.Widget.SlideShowBase,{_widgetName:"content-slideshow",defaultOptions:{slideshowClassName:"wp-slideshow",clipClassName:"wp-slideshow-clip",viewClassName:"wp-slideshow-view",slideClassName:"wp-slideshow-slide",slideLinkClassName:"wp-slideshow-slide-link",firstBtnClassName:"wp-slideshow-first-btn",lastBtnClassName:"wp-slideshow-last-btn",prevBtnClassName:"wp-slideshow-prev-btn",nextBtnClassName:"wp-slideshow-next-btn",playBtnClassName:"wp-slideshow-play-btn",stopBtnClassName:"wp-slideshow-stop-btn", +closeBtnClassName:"wp-slideshow-close-btn",playingClassName:"wp-slideshow-playing"},_findWidgetElements:function(a){for(var f=this.$element[0],a=c.scopedFind(f,a,this.options.slideshowClassName,f),f=!0,h=0;hd)return 1;return 0});return a},_attachBtnHandler:function(a,b){var c=this;this["$"+ +b+"Btn"]=this._findWidgetElements("."+a).attr({tabindex:"0",role:"button","aria-label":b}).unbind("keydown").bind("keydown",function(a){var d=a.keyCode||a.which;if(d===32||d===13)c[b](),a.preventDefault()}).unbind("click").bind("click",function(a){c[b]();a.preventDefault()})},_getAjaxSrcForImage:function(a){return a.data("src")},_reprioritizeImageLoadingIfRequired:function(a){!this._isLoaded(a)&&this._cssilLoader&&!this._cssilLoader.isQueueEmpty()&&(a=b(this.slides.$element[a]),this._cssilLoader.reprioritize(this._getAjaxSrcForImage(a.is("img")? +a:a.find("img")),this.isPlaying()))},_bpActivate:function(){this.slides.bind("wp-panel-show",this._panelShowCallback)},_bpDeactivate:function(){this.slides.unbind("wp-panel-show").unbind("wp-panel-before-show").unbind("wp-panel-hide").unbind("wp-panel-before-hide");this.unbind("wp-slideshow-play").unbind("wp-slideshow-stop");this.tabs&&this.tabs.trigger("wp-panel-hide",{panelIndex:this.slides.activeIndex})},_attachBehavior:function(){var a=this,b=this.options;this._super.prototype._attachBehavior.call(this); +this._panelShowCallback=function(){a._ssTimerTriggered||a.isPlaying()&&a._startTimer(!1)};this.$element.addClass(b.slideshowClassName);var h=this.slides?this.slides.$element:this._findWidgetElements("."+b.slideClassName),g=this.tabs?this.tabs.$element:this._findWidgetElements("."+b.slideLinkClassName),i=b.event==="click"&&b.deactivationEvent==="mouseout_click";if(!this.slides&&(this.slides=new c.Widget.PanelGroup(h,{defaultIndex:this.slides&&this.slides.activeIndex||b.defaultIndex||0,toggleStateEnabled:i}), +this.slides.bind("wp-panel-show",this._panelShowCallback),this.tabs=null,g.length))this.tabs=new c.Widget.TabGroup(g,{defaultIndex:this.tabs&&this.tabs.activeIndex||b.defaultIndex||0,toggleStateEnabled:i,contentLayout_runtime:b.contentLayout_runtime}),this.slides.addTabGroup(this.tabs);this.slides.bind("wp-panel-before-show",function(b,f){a._reprioritizeImageLoadingIfRequired(f.panelIndex)});this._attachBtnHandler(b.firstBtnClassName,"first");this._attachBtnHandler(b.lastBtnClassName,"last");this._attachBtnHandler(b.prevBtnClassName, +"previous");this._attachBtnHandler(b.nextBtnClassName,"next");this._attachBtnHandler(b.playBtnClassName,"play");this._attachBtnHandler(b.stopBtnClassName,"stop");this._attachBtnHandler(b.closeBtnClassName,"close");this.bind("wp-slideshow-play",function(){this.$element.addClass(b.playingClassName)});this.bind("wp-slideshow-stop",function(){this.$element.removeClass(b.playingClassName)})},_first:function(){this.slides.showPanel(0)},_last:function(){var a=this.slides;a.showPanel(a.$element.length-1)}, +_previous:function(){var a=this.slides,b=a.$element.length,c=a.activeIndex,b=(c<1?b:c)-1;!this.options.loop&&0==c?this.isPlaying()&&this.stop():a.showPanel(b)},_next:function(){var a=this.slides,b=a.activeIndex,c=(b+1)%a.$element.length;!this.options.loop&&0==c?this.isPlaying()&&this.stop():a.activeIndex!=-1&&this.options.playOnce&&0==c&&this.isPlaying()?this.stop():(!this.isPlaying()||this._isLoaded(b)&&this._isLoaded(c))&&a.showPanel(c)},_goTo:function(){var a=this.slides;a.showPanel.apply(a,arguments)}, +_close:function(){var a=this.slides;a.hidePanel(a.activeElement)},_isLoaded:function(a){if(this._csspIsImageSlideShow&&(a=b(this.slides.$element[a]),a=a.is("img")?a:a.find("img"),a.length>0&&(a.hasClass(this.options.imageIncludeClassName)||!a[0].complete)))return!1;return!0}})})(c,WebPro,window,document);(function(b,c,a,f,h){c.Widget.ContentSlideShow.fadingTransitionPlugin={defaultOptions:{transitionDuration:500},initialize:function(a,f){var c=this;b.extend(f,b.extend({},c.defaultOptions,f));a.bind("attach-behavior", +function(){c.attachBehavior(a)})},attachBehavior:function(g){var i=this,k=g.slides,l=k.$element,j=k.activeIndex,m=g._findWidgetElements("."+g.options.viewClassName);0==m.length&&g._$sslbpOverlay&&(m=b("."+g.options.viewClassName,g._$sslbpOverlay));k.bind("wp-panel-show",function(a,f){i._showElement(g,b(f.panel));Muse.Utils.isStackedOrScatteredLayout(g.options.contentLayout_runtime)&&i._showElement(g,g.$closeBtn)}).bind("wp-panel-hide",function(a,f){i._hideElement(g,b(f.panel));Muse.Utils.isStackedOrScatteredLayout(g.options.contentLayout_runtime)&& +i._hideElement(g,g.$closeBtn)});Muse.Utils.isStackedOrScatteredLayout(g.options.contentLayout_runtime)&&g.bind("wp-slideshow-close",function(){i._hideElement(g,g.$closeBtn)});for(var n=0;n +1&&c.setPointerCapture(a[0],b),i._scrollTo(g,-1,m*(!j&&(n=="left"||n=="up")||j&&(n=="right"||n=="down")?1:-1),0);else if(f=="cancel")i._scrollTo(g,g.slides.activeIndex,0,s),c.releasePointerCapture(a[0],b),g.trigger("wp-swiped");else if(f=="end"){f=g.slides.activeIndex;m=-1;if(h&&(n=="right"&&!j||n=="left"&&j)||!h&&(n=="down"&&!j||n=="up"&&j))m=f-1<0?l.length-1:f-1;else if(h&&(n=="left"&&!j||n=="right"&&j)||!h&&(n=="up"&&!j||n=="down"&&j))m=f+1>l.length-1?0:f+1;m!=-1&&i._scrollTo(g,m,0,s);c.releasePointerCapture(a[0], +b);g.trigger("wp-swiped")}}})})}},_showElement:function(a,b){var f=!1,c=function(){f||(f=!0,b.show().css("opacity",""))},d=setTimeout(c,a.options.transitionDuration+10);b.stop(!1,!0).fadeIn(a.options.transitionDuration,function(){clearTimeout(d);c()})},_hideElement:function(a,b){var f=!1,c=function(){f||(f=!0,b.hide().css("opacity",""))},d=setTimeout(c,a.options.transitionDuration+10);b.stop(!1,!0).fadeOut(a.options.transitionDuration,function(){clearTimeout(d);c()})},_scrollTo:function(a,f,c,d){if(!a._ftpSwipeNoInterrupt){var h= +a.slides.$element,m=a.slides.activeIndex,n=f==-1;f==-1&&(f=c<0?m-1<0?h.length-1:m-1:m+1>h.length-1?0:m+1);var q=b(h[m]),o=b(h[f]);if(!n&&c==0||m==f){a._ftpSwipeNoInterrupt=!0;var p=0,r=!1,s=function(){if(!r&&(r=!0,o.show().css("opacity",""),f!=m&&a.slides.showPanel(f),++p==h.length))a._ftpSwipeNoInterrupt=!1};if(o.css("opacity")!=o.data("opacity")){var w=setTimeout(s,d+10);o.stop(!1,!0).animate({opacity:o.data("opacity")},d,function(){clearTimeout(w);s()})}else s();h.each(function(c){var n=b(this), +m=!1,k=function(){if(!m&&(m=!0,n.hide().css("opacity",""),++p==h.length))a._ftpSwipeNoInterrupt=!1},q;c!=f&&(n.css("display")!="none"&&n.css("opacity")!=0?(q=setTimeout(k,d+10),n.stop(!1,!0).animate({opacity:0},d,function(){clearTimeout(q);k()})):k())})}else c=Math.abs(c),n=q.width(),c>n&&(c=n),c=o.data("opacity")*(c/n),n=q.data("opacity")*(1-c),q.stop(!1,!0).animate({opacity:n},d),o.stop(!1,!0).show().animate({opacity:c},d)}}};c.Widget.ContentSlideShow.filmstripTransitionPlugin={defaultOptions:{transitionDuration:500, +transitionStyle:"horizontal"},initialize:function(a,f){var c=this;b.extend(f,b.extend({},c.defaultOptions,f));a.bind("attach-behavior",function(){c.attachBehavior(a)}).bind("bp_activate",function(){c.bpActivate(a)}).bind("bp-deactivate",function(){c.bpDeactivate(a)})},bpActivate:function(a){plugin._goToSlide(a,a.slides.activeElement,a.options.transitionDuration)},bpDeactivate:function(a){a.slides.unbind("wp-panel-show").unbind("wp-panel-hide");a.unbind("wp-slideshow-before-previous").unbind("wp-slideshow-before-next").unbind("wp-slideshow-previous").unbind("wp-slideshow-next")}, +attachBehavior:function(g){var i=this,k=b(a),l=b(f.body),j=g.options,m=function(){return j.elastic==="fullWidth"?Math.max(k.width(),parseInt(l.css("min-width"))):p.width()},n=j.transitionStyle==="horizontal",q=g.slides,o=q.$element,p=g.$clip?g.$clip:g._findWidgetElements("."+j.clipClassName),r=g.$view?g.$view:g._findWidgetElements("."+j.viewClassName),s=m(),w=p.height(),y={left:1,right:1},u={up:1,down:1},t={top:"0",left:"0"};g.$clip=p;g.$view=r;var x=p.css("position");x!=="absolute"&&x!=="fixed"&& +j.elastic!=="fullScreen"&&p.css("position","relative");r.css("position")!=="absolute"&&(t.position="relative");Muse.Utils.updateSlideshow_fstpOffsetSize(g);g._fstp$Clip=p;g._fstp$View=r;g._fstpStyleProp=n?"left":"top";g._fstpStylePropZero=n?"top":"left";q.bind("wp-panel-show",function(a,b){i._goToSlide(g,b.panel,j.transitionDuration);g.options.contentLayout_runtime==="stack"&&(g.$closeBtn.css("opacity",""),g.$closeBtn.stop(!0).fadeIn(j.transitionDuration))});g.options.contentLayout_runtime==="stack"&& +g.bind("wp-slideshow-close",function(){p.css({opacity:0.99}).stop(!0).animate({opacity:0},{queue:!1,duration:j.transitionDuration,complete:function(){t[g._fstpStyleProp]=(n?p.width():p.height())+"px";t[g._fstpStylePropZero]="0";r.css(t);p.css({opacity:""})}});g.$closeBtn.stop(!0).fadeOut(j.transitionDuration)});g._fstpRequestType=null;g.bind("wp-slideshow-before-previous wp-slideshow-before-next",function(a){g._fstpRequestType=a.type.replace(/.*-/,"");g._fstpOldActiveIndex=g.slides.activeIndex}).bind("wp-slideshow-previous wp-slideshow-next", +function(){g._fstpRequestType=null;g._fstpOldActiveIndex=-1});var z=function(a,f){var c;r.parents().each(function(){c=b(this);c.css("display")=="none"&&(c.attr("data-margin-left",c.css("margin-left")),c.css("margin-left","-10000px"),c.css("display","block"),c.attr("data-display-attr-change","true"))});if(a===h||f===h)a=m(),f=p.height();j.elastic==="fullWidth"&&(f=p.height(),p.width(a),j.contentLayout_runtime!=="lightbox"&&p.css("left",p.position().left-p.offset().left),r.width(a));for(var d=0,l=n? +a:f,k=g._fstpStyleProp,u=g._fstpStylePropZero,v=0;v1&&c.setPointerCapture(r[0],a),i._scrollBy(g,h*l);break;case "cancel":i._goToSlide(g,q.activeElement,0);c.releasePointerCapture(r[0],a);g.trigger("wp-swiped");break;case "end":i._finalizeSwipe(g,g._fstpOffsetSize*g.slides.activeIndex+h*l,l,f),c.releasePointerCapture(r[0], +a)}}}))},_scrollBy:function(a,b){var f=a._fstp$View,c=a.slides.activeIndex*-a._fstpOffsetSize,d=a._fstpStyleProp,h={};f.stop(!1,!0);h[d]=c-b+"px";f.css(h)},_finalizeSwipe:function(a,b,f){var c=a.slides,d=a._fstp$View,h=b/a._fstpOffsetSize,b=a._fstpStyleProp,n={},h=f===1?Math.ceil(h):Math.floor(h),h=Math.max(0,Math.min(h,c.$element.length-1));n[b]=-(h*a._fstpOffsetSize)+"px";d.animate(n,a.options.transitionDuration,function(){c.showPanel(h);a.trigger("wp-swiped")})},_goToSlide:function(a,f,c){if(a){var d= +b(f),h=a._fstp$View,m=a._fstpStyleProp,n=m==="left"?"offsetLeft":"offsetTop",q=m==="left"?"offsetWidth":"offsetHeight",o=f?-f[n]:a._fstp$Clip[0][q],p={};p[m]=o+"px";var r=a._fstpRequestType,s=a._fstpOldActiveIndex;if(r&&s!==-1){var w=a.slides.activeIndex,y=a.slides.$element.length-1;if(w!==s){var u=0;r==="previous"&&s===0&&w===y?u=-f[q]:r==="next"&&s===y&&w===0&&(a=a.slides.$element[s],u=a[n]+a[q]);u&&(p[m]=-u+"px",d.css(m,u+"px"))}}h.stop(!1,!0).animate(p,c,function(){u&&(d.css(m,-o+"px"),h.css(m, +o+"px"))})}}};c.Widget.ContentSlideShow.alignPartsToPagePlugin={defaultOptions:{alignPartToPageClassName:"wp-slideshow-align-part-to-page"},initialize:function(a,f){var c=this;b.extend(f,b.extend({},c.defaultOptions,f));a.bind("attach-behavior",function(){c.attachBehavior(a)})},attachBehavior:function(f){if(!("fullWidth"!==f.options.elastic||!f.$element.hasClass("align_parts_to_page")||"fixed"!==f.$element.css("position")||f.options.contentLayout_runtime==="lightbox")){var c=b(a),d=b("#page"),h=f.options, +j=function(){var a=d.offset().left+"px";b("."+h.alignPartToPageClassName,f.$element).each(function(){b(this).css("margin-left",a)})};f.$element.children().each(function(){var a=b(this);0=a.slides.$element.length&&(this._reshuffle(a),(!a.options.loop|| +a.options.playOnce)&&a.stop()))}else a._realNext()}}})(c,WebPro,window,document);(function(b,d,a){d.widget("Widget.Form",d.Widget,{_widgetName:"form",defaultOptions:{validationEvent:"blur",errorStateSensitivity:"low",ajaxSubmit:!0,fieldWrapperClass:"field",formErrorClass:"form-error",formSubmittedClass:"form-submitted",formDeliveredClass:"form-delivered",focusClass:"focus",notEmptyClass:"not-empty",emptyClass:"empty",validClass:"valid",invalidClass:"invalid",requiredClass:"required"},validationTypes:{"always-valid":/.*/, +email:/^[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i,alpha:/^[A-z\s]+$/,numeric:/^[0-9]+$/,phone:/^([0-9])?(\s)?(\([0-9]{3}\)|[0-9]{3}(\-)?)(\s)?[0-9]{3}(\s|\-)?[0-9]{4}(\s|\sext|\sx)?(\s)?[0-9]*$/,captcha:function(a){return a.data("captchaValid")},recaptcha:function(){if("undefined"==typeof Recaptcha)return!1;var a=Recaptcha.get_response();return a&&024)return!0;if(c<0||c>59)return!0}else return!1;a.val(b);return!0}},_transformMarkup:function(){var a=this;a.hasCAPTCHA=!1;a.hasReCAPTCHA=!1;a.hasReCAPTCHA2=!1;this.$element.find("."+this.options.fieldWrapperClass).each(function(){var c=b(this);switch(c.attr("data-type")){case "captcha":a.hasCAPTCHA=!0;c.find('input[name="CaptchaV2"]').remove();c.find('input[name="muse_CaptchaV2"]').attr("name", +"CaptchaV2");break;case "recaptcha":a.hasReCAPTCHA=!0;break;case "recaptcha2":a.hasReCAPTCHA2=!0}})},_extractData:function(){this.event=this.options.validationEvent;this.errorSensitivity=this.options.errorStateSensitivity;this.classNames={focus:this.options.focusClass,blur:this.options.emptyClass,keydown:this.options.notEmptyClass}},_isEmpty:function(a){var c=a.find('input[type!="hidden"], textarea');switch(a.data("type")){case "checkboxgroup":case "radiogroup":return c=c.attr("name"),b('input[name="'+ +c+'"]:checked').length==0;case "checkbox":case "radio":return typeof c.attr("checked")==="undefined";default:var a=!0,d;for(d=0;d=400||j.responseText&&j.responseText.indexOf("=0)&&alert("Form PHP script is missing from web server, or PHP is not configured correctly on your web hosting provider. Check if the form PHP script has been uploaded correctly, then contact your hosting provider about PHP configuration.");f.$element.removeClass(d);var m=null;if(j&&j.responseText)try{m=c.parseJSON(j.responseText), +m=m.FormProcessV2Response||m.FormResponse||m.MusePHPFormResponse||m}catch(n){}if(m&&m.success){f.$element.addClass(g);if(m.redirect){a.location.href=m.redirect;return}f.$element[0].reset();f.hasCAPTCHA&&f.$element.find("input:not([type=submit]), textarea").each(function(){b(this).attr("disabled","disabled")});f.$element.find("."+f.options.notEmptyClass).each(function(){b(this).removeClass(f.options.notEmptyClass)})}else if(j=f._getFieldsWithError(m))for(m=0;m= +0)))h=d,f.setAttribute("data-whatinput",h),m.indexOf(h)===-1&&m.push(h);d==="keyboard"&&g.indexOf(o[c])===-1&&o[c]&&g.push(o[c])}function d(a){a=g.indexOf(o[a.keyCode?a.keyCode:a.which]);a!==-1&&g.splice(a,1)}var g=[],f=document.body,i=!1,h=null,j=["input","select","textarea"],k=f.hasAttribute("data-whatinput-formtyping"),l={keydown:"keyboard",mousedown:"mouse",mouseenter:"mouse",touchstart:"touch",pointerdown:"pointer",MSPointerDown:"pointer"},m=[],o={9:"tab",13:"enter",16:"shift",27:"esc",32:"space", +37:"left",38:"up",39:"right",40:"down"},q={2:"touch",3:"touch",4:"mouse"},p;(function(){var c="mousedown";window.PointerEvent?c="pointerdown":window.MSPointerEvent&&(c="MSPointerDown");f.addEventListener?(f.addEventListener(c,b),f.addEventListener("mouseenter",b),"ontouchstart"in document.documentElement&&f.addEventListener("touchstart",a),f.addEventListener("keydown",b),f.addEventListener("keyup",d)):(f.attachEvent(c,b),f.attachEvent("mouseenter",b),"ontouchstart"in document.documentElement&&f.attachEvent("touchstart", +a),f.attachEvent("keydown",b),f.attachEvent("keyup",d))})();return{ask:function(){return h},keys:function(){return g},types:function(){return m},set:c}}); diff --git a/html/sitemap.xml b/html/sitemap.xml new file mode 100644 index 0000000..9bd493b --- /dev/null +++ b/html/sitemap.xml @@ -0,0 +1,2556 @@ + + + + http://spationautes.fr/index.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_00.png + + + http://spationautes.fr/images/_mg_2382.jpg + + + http://spationautes.fr/images/sam_4191.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussardw.jpg + + + http://spationautes.fr/images/img_9490_00.jpg + + + http://spationautes.fr/images/28112018-cbll222408.jpg + + + http://spationautes.fr/images/_mg_2385.jpg + + + http://spationautes.fr/images/webdsc05104_dxo.jpg + + + http://spationautes.fr/images/2%20sam_1688.jpg + + + http://spationautes.fr/images/041_00.jpg + + + http://spationautes.fr/images/042_00.jpg + + + http://spationautes.fr/images/45_00.jpg + + + http://spationautes.fr/images/6%20sam_1941.jpg + + + http://spationautes.fr/images/canterville.jpg + + + http://spationautes.fr/images/cavalerie-04.jpg + + + http://spationautes.fr/images/greve06.jpg + + + http://spationautes.fr/images/img_1627.jpg + + + http://spationautes.fr/images/img_1838.jpg + + + http://spationautes.fr/images/img_5327.jpg + + + http://spationautes.fr/images/img_5348.jpg + + + http://spationautes.fr/images/loge-01.jpg + + + http://spationautes.fr/images/loge-03.jpg + + + http://spationautes.fr/images/p1090883.jpg + + + http://spationautes.fr/images/photomaton26.jpg + + + http://spationautes.fr/images/photomaton28.jpg + + + http://spationautes.fr/images/sam_3587.jpg + + + http://spationautes.fr/images/train01.jpg + + + http://spationautes.fr/images/train04.jpg + + + http://spationautes.fr/images/declinaison_bes_3-02.jpg + + + http://spationautes.fr/images/vignette-1.jpg + + + http://spationautes.fr/images/the%20city%20central%20project(6).jpg + + + + http://spationautes.fr/ceci-n-est-pas-un-d%C3%A9chet.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/affiche%20web-crop-u32204.jpg + + + http://spationautes.fr/images/dsc_020484x55.jpg + + + http://spationautes.fr/images/sam_2784-crop-u32410.jpg + + + http://spationautes.fr/images/sam_278583x55.jpg + + + http://spationautes.fr/images/sam_283183x55.jpg + + + http://spationautes.fr/images/sam_283383x55.jpg + + + http://spationautes.fr/images/sam_2836-crop-u32514.jpg + + + http://spationautes.fr/images/sam_283883x55.jpg + + + http://spationautes.fr/images/sam_2840-crop-u32566.jpg + + + http://spationautes.fr/images/sam_2841-crop-u32592.jpg + + + http://spationautes.fr/images/sam_284683x55.jpg + + + http://spationautes.fr/images/sam_284783x55.jpg + + + http://spationautes.fr/images/affiche%20web.jpg + + + http://spationautes.fr/images/dsc_0204.jpg + + + http://spationautes.fr/images/sam_2784.jpg + + + http://spationautes.fr/images/sam_2785.jpg + + + http://spationautes.fr/images/sam_2831.jpg + + + http://spationautes.fr/images/sam_2833.jpg + + + http://spationautes.fr/images/sam_2836.jpg + + + http://spationautes.fr/images/sam_2838.jpg + + + http://spationautes.fr/images/sam_2840.jpg + + + http://spationautes.fr/images/sam_2841.jpg + + + http://spationautes.fr/images/sam_2846.jpg + + + http://spationautes.fr/images/sam_2847.jpg + + + + http://spationautes.fr/gradin-mobile---thouars.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/p623005671x54.jpg + + + http://spationautes.fr/images/sam_204680x53.jpg + + + http://spationautes.fr/images/sam_2051%20retouch%C3%A9e71x59.jpg + + + http://spationautes.fr/images/sam_205780x53.jpg + + + http://spationautes.fr/images/sam_207080x53.jpg + + + http://spationautes.fr/images/sam_2097%20retouch%C3%A9e-crop-u43700.jpg + + + http://spationautes.fr/images/sam_210080x53.jpg + + + http://spationautes.fr/images/sam_210580x53.jpg + + + http://spationautes.fr/images/sam_211880x53.jpg + + + http://spationautes.fr/images/sam_2121retouch%C3%A9e80x53.jpg + + + http://spationautes.fr/images/sam_215380x53.jpg + + + http://spationautes.fr/images/sam_216180x53.jpg + + + http://spationautes.fr/images/sam_217380x53.jpg + + + http://spationautes.fr/images/sam_219880x53.jpg + + + http://spationautes.fr/images/sam_223880x53.jpg + + + http://spationautes.fr/images/sam_224880x53.jpg + + + http://spationautes.fr/images/sam_225080x53.jpg + + + http://spationautes.fr/images/sam_225380x53.jpg + + + http://spationautes.fr/images/p6230056.jpg + + + http://spationautes.fr/images/sam_2046.jpg + + + http://spationautes.fr/images/sam_2051%20retouch%C3%A9e.jpg + + + http://spationautes.fr/images/sam_2057.jpg + + + http://spationautes.fr/images/sam_2070.jpg + + + http://spationautes.fr/images/sam_2097%20retouch%C3%A9e.jpg + + + http://spationautes.fr/images/sam_2100.jpg + + + http://spationautes.fr/images/sam_2105.jpg + + + http://spationautes.fr/images/sam_2118.jpg + + + http://spationautes.fr/images/sam_2121retouch%C3%A9e.jpg + + + http://spationautes.fr/images/sam_2153.jpg + + + http://spationautes.fr/images/sam_2161.jpg + + + http://spationautes.fr/images/sam_2173.jpg + + + http://spationautes.fr/images/sam_2198.jpg + + + http://spationautes.fr/images/sam_2238.jpg + + + http://spationautes.fr/images/sam_2248.jpg + + + http://spationautes.fr/images/sam_2250.jpg + + + http://spationautes.fr/images/sam_2253.jpg + + + + http://spationautes.fr/abricoth%C3%A9que.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/vignette-1.jpg + + + http://spationautes.fr/images/recto%20ok.jpg + + + + http://spationautes.fr/appels-%C3%A0-projets.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/schema%20margellan2.jpg + + + http://spationautes.fr/images/img_20190620_151052-crop-u64102.jpg + + + http://spationautes.fr/images/img_20190620_174348-crop-u64430.jpg + + + http://spationautes.fr/images/img_20190621_085332-crop-u64450.jpg + + + http://spationautes.fr/images/img_20190621_094155-crop-u64470.jpg + + + http://spationautes.fr/images/img_20190621_095835-crop-u64490.jpg + + + http://spationautes.fr/images/img_20190621_095847_1-crop-u64510.jpg + + + http://spationautes.fr/images/img_20190621_115218-crop-u64530.jpg + + + http://spationautes.fr/images/img_20190620_151052.jpg + + + http://spationautes.fr/images/img_20190620_174348.jpg + + + http://spationautes.fr/images/img_20190621_085332.jpg + + + http://spationautes.fr/images/img_20190621_094155.jpg + + + http://spationautes.fr/images/img_20190621_095835.jpg + + + http://spationautes.fr/images/img_20190621_095847_1.jpg + + + http://spationautes.fr/images/img_20190621_115218.jpg + + + + http://spationautes.fr/deuxieme-edition.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_00.png + + + http://spationautes.fr/images/affiche_nuit_filante_2bd.jpg + + + http://spationautes.fr/images/img_004194x62.jpg + + + http://spationautes.fr/images/img_004694x62.jpg + + + http://spationautes.fr/images/img_030483x63.jpg + + + http://spationautes.fr/images/img_044783x63.jpg + + + http://spationautes.fr/images/img_0451-crop-u66742.jpg + + + http://spationautes.fr/images/img_045694x62.jpg + + + http://spationautes.fr/images/img_0556-crop-u66782.jpg + + + http://spationautes.fr/images/img_061296x62.jpg + + + http://spationautes.fr/images/img_068394x62.jpg + + + http://spationautes.fr/images/img_074694x62.jpg + + + http://spationautes.fr/images/img_100094x62.jpg + + + http://spationautes.fr/images/img_112994x62.jpg + + + http://spationautes.fr/images/img_113094x62.jpg + + + http://spationautes.fr/images/qsf-crop-u66922.jpg + + + http://spationautes.fr/images/img_0041.jpg + + + http://spationautes.fr/images/img_0046.jpg + + + http://spationautes.fr/images/img_0304.jpg + + + http://spationautes.fr/images/img_0447.jpg + + + http://spationautes.fr/images/img_0451.jpg + + + http://spationautes.fr/images/img_0456.jpg + + + http://spationautes.fr/images/img_0556.jpg + + + http://spationautes.fr/images/img_0612.jpg + + + http://spationautes.fr/images/img_0683.jpg + + + http://spationautes.fr/images/img_0746.jpg + + + http://spationautes.fr/images/img_1000.jpg + + + http://spationautes.fr/images/img_1129.jpg + + + http://spationautes.fr/images/img_1130.jpg + + + http://spationautes.fr/images/qsf.jpg + + + + http://spationautes.fr/ateliers-fond-vert.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/l1010349.jpg + + + http://spationautes.fr/images/img_494385x62.jpg + + + http://spationautes.fr/images/img_494590x62.jpg + + + http://spationautes.fr/images/l101029283x63.jpg + + + http://spationautes.fr/images/l101029683x63.jpg + + + http://spationautes.fr/images/l101034983x63.jpg + + + http://spationautes.fr/images/l1010367-crop-u61581.jpg + + + http://spationautes.fr/images/l101037683x63.jpg + + + http://spationautes.fr/images/l101037983x63.jpg + + + http://spationautes.fr/images/l101041183x63.jpg + + + http://spationautes.fr/images/img_4943.jpg + + + http://spationautes.fr/images/img_4945.jpg + + + http://spationautes.fr/images/l1010292.jpg + + + http://spationautes.fr/images/l1010296.jpg + + + http://spationautes.fr/images/l1010367.jpg + + + http://spationautes.fr/images/l1010376.jpg + + + http://spationautes.fr/images/l1010379.jpg + + + http://spationautes.fr/images/l1010411.jpg + + + + http://spationautes.fr/ateliers-magellan.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/adobe-pdf-logo.jpg + + + http://spationautes.fr/images/logo01.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon.jpg + + + http://spationautes.fr/images/studio%20cinema%20vivant.jpg + + + http://spationautes.fr/images/atelier%20spatial.jpg + + + http://spationautes.fr/images/untitled_panorama1.jpg + + + http://spationautes.fr/images/untitled_panorama4.jpg + + + http://spationautes.fr/images/portail%20loire.jpg + + + + http://spationautes.fr/films-%C3%A0-roulettes.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/2019-08-26%2015474283x63.jpg + + + http://spationautes.fr/images/2019-08-26%2017475783x63.jpg + + + http://spationautes.fr/images/2019-08-26%2017484783x63.jpg + + + http://spationautes.fr/images/2019-08-27%20102621%20hdr83x63.jpg + + + http://spationautes.fr/images/2019-08-27%2011494883x63.jpg + + + http://spationautes.fr/images/2019-08-27%2011505283x63.jpg + + + http://spationautes.fr/images/2019-08-29%20113010-crop-u63549.jpg + + + http://spationautes.fr/images/2019-08-29%20123931%20hdr-crop-u63569.jpg + + + http://spationautes.fr/images/img_122183x63.jpg + + + http://spationautes.fr/images/img_122883x63.jpg + + + http://spationautes.fr/images/img_123083x63.jpg + + + http://spationautes.fr/images/img_123383x63.jpg + + + http://spationautes.fr/images/img_123483x63.jpg + + + http://spationautes.fr/images/img_123583x63.jpg + + + http://spationautes.fr/images/img_123883x63.jpg + + + http://spationautes.fr/images/img_124183x63.jpg + + + http://spationautes.fr/images/img_124483x63.jpg + + + http://spationautes.fr/images/img_124583x63.jpg + + + http://spationautes.fr/images/2019-08-26%20154742.jpg + + + http://spationautes.fr/images/2019-08-26%20174757.jpg + + + http://spationautes.fr/images/2019-08-26%20174847.jpg + + + http://spationautes.fr/images/2019-08-27%20102621%20hdr.jpg + + + http://spationautes.fr/images/2019-08-27%20114948.jpg + + + http://spationautes.fr/images/2019-08-27%20115052.jpg + + + http://spationautes.fr/images/2019-08-29%20113010.jpg + + + http://spationautes.fr/images/2019-08-29%20123931%20hdr.jpg + + + http://spationautes.fr/images/img_1221.jpg + + + http://spationautes.fr/images/img_1228.jpg + + + http://spationautes.fr/images/img_1230.jpg + + + http://spationautes.fr/images/img_1233.jpg + + + http://spationautes.fr/images/img_1234.jpg + + + http://spationautes.fr/images/img_1235.jpg + + + http://spationautes.fr/images/img_1238.jpg + + + http://spationautes.fr/images/img_1241.jpg + + + http://spationautes.fr/images/img_1244.jpg + + + http://spationautes.fr/images/img_1245.jpg + + + + http://spationautes.fr/carrement-biscuit.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/img_903583x63.jpg + + + http://spationautes.fr/images/img_903983x63.jpg + + + http://spationautes.fr/images/img_20180526_14393983x63.jpg + + + http://spationautes.fr/images/img_20180526_15435883x63.jpg + + + http://spationautes.fr/images/img_20180526_15462483x63.jpg + + + http://spationautes.fr/images/img_20180526_15470183x63.jpg + + + http://spationautes.fr/images/img_20180526_15471183x63.jpg + + + http://spationautes.fr/images/img_20180526_17275883x63.jpg + + + http://spationautes.fr/images/img_9035.jpg + + + http://spationautes.fr/images/img_9039.jpg + + + http://spationautes.fr/images/img_20180526_143939.jpg + + + http://spationautes.fr/images/img_20180526_154358.jpg + + + http://spationautes.fr/images/img_20180526_154624.jpg + + + http://spationautes.fr/images/img_20180526_154701.jpg + + + http://spationautes.fr/images/img_20180526_154711.jpg + + + http://spationautes.fr/images/img_20180526_172758.jpg + + + + http://spationautes.fr/mdd-reze.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/p103011599x74.jpg + + + http://spationautes.fr/images/p103013499x74.jpg + + + http://spationautes.fr/images/p103015499x74.jpg + + + http://spationautes.fr/images/p1030167-crop-u57884.jpg + + + http://spationautes.fr/images/p1030173-crop-u57904.jpg + + + http://spationautes.fr/images/p1030178-crop-u57924.jpg + + + http://spationautes.fr/images/p1030186-crop-u57944.jpg + + + http://spationautes.fr/images/p1030189-crop-u57964.jpg + + + http://spationautes.fr/images/p1030192-crop-u57984.jpg + + + http://spationautes.fr/images/p1030211-crop-u58004.jpg + + + http://spationautes.fr/images/p103022099x74.jpg + + + http://spationautes.fr/images/p103022199x74.jpg + + + http://spationautes.fr/images/p103024199x74.jpg + + + http://spationautes.fr/images/p1030345-crop-u58104.jpg + + + http://spationautes.fr/images/p1030115.jpg + + + http://spationautes.fr/images/p1030134.jpg + + + http://spationautes.fr/images/p1030154.jpg + + + http://spationautes.fr/images/p1030167.jpg + + + http://spationautes.fr/images/p1030173.jpg + + + http://spationautes.fr/images/p1030178.jpg + + + http://spationautes.fr/images/p1030186.jpg + + + http://spationautes.fr/images/p1030189.jpg + + + http://spationautes.fr/images/p1030192.jpg + + + http://spationautes.fr/images/p1030211.jpg + + + http://spationautes.fr/images/p1030220.jpg + + + http://spationautes.fr/images/p1030221.jpg + + + http://spationautes.fr/images/p1030241.jpg + + + http://spationautes.fr/images/p1030345.jpg + + + + http://spationautes.fr/atelier-sc%C3%A9nographique.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussardw.jpg + + + http://spationautes.fr/images/_mg_0307.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(4).jpg + + + http://spationautes.fr/images/p1030221_00.jpg + + + http://spationautes.fr/images/45_01.jpg + + + http://spationautes.fr/images/881_01.jpg + + + http://spationautes.fr/images/dsc04450.jpg + + + http://spationautes.fr/images/_mg_2382_00.jpg + + + http://spationautes.fr/images/11952783_10153625723606506_8387956690870894187_o.jpg + + + http://spationautes.fr/images/fini%20sur%20scene.jpg + + + http://spationautes.fr/images/imag0137.jpg + + + http://spationautes.fr/images/img_5253.jpg + + + http://spationautes.fr/images/sam_3587_00.jpg + + + + http://spationautes.fr/contact.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/site%20in%20boules.jpg + + + http://spationautes.fr/images/logo%20transparent.jpg + + + + http://spationautes.fr/kinoscop.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/schema_fonctionnement.svg + + + http://spationautes.fr/images/adobe-pdf-logo.jpg + + + http://spationautes.fr/images/01_00.jpg + + + http://spationautes.fr/images/planning-crop-u27494.jpg + + + http://spationautes.fr/images/16_01.jpg + + + http://spationautes.fr/images/logo.png + + + http://spationautes.fr/images/schema_projection.png + + + http://spationautes.fr/images/annonce.jpg + + + http://spationautes.fr/images/greve02-crop-u37698.jpg + + + http://spationautes.fr/images/greve06_00.jpg + + + http://spationautes.fr/images/greve07.jpg + + + http://spationautes.fr/images/interview03.jpg + + + http://spationautes.fr/images/interview05.jpg + + + http://spationautes.fr/images/01.jpg + + + http://spationautes.fr/images/02.jpg + + + http://spationautes.fr/images/041.jpg + + + http://spationautes.fr/images/042.jpg + + + http://spationautes.fr/images/43.jpg + + + http://spationautes.fr/images/44.jpg + + + http://spationautes.fr/images/45.jpg + + + http://spationautes.fr/images/47.jpg + + + http://spationautes.fr/images/48.jpg + + + http://spationautes.fr/images/061.jpg + + + http://spationautes.fr/images/l1010349.jpg + + + http://spationautes.fr/images/img_20180526_154358_00.jpg + + + http://spationautes.fr/images/09.jpg + + + http://spationautes.fr/images/15.jpg + + + http://spationautes.fr/images/16%20(2).jpg + + + http://spationautes.fr/images/16.jpg + + + http://spationautes.fr/images/17.jpg + + + http://spationautes.fr/images/19.jpg + + + http://spationautes.fr/images/20.jpg + + + http://spationautes.fr/images/22.jpg + + + http://spationautes.fr/images/23.jpg + + + http://spationautes.fr/images/881.jpg + + + http://spationautes.fr/images/882.jpg + + + http://spationautes.fr/images/interview07.jpg + + + http://spationautes.fr/images/tournage03.jpg + + + http://spationautes.fr/images/train01_00.jpg + + + http://spationautes.fr/images/train03.jpg + + + http://spationautes.fr/images/train04_00.jpg + + + + http://spationautes.fr/atelier-des-400-clous.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + + http://spationautes.fr/la-nina-de-canterville.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/p1020864100x75.jpg + + + http://spationautes.fr/images/_mg_0307_00113x75.jpg + + + http://spationautes.fr/images/_mg_0358113x75.jpg + + + http://spationautes.fr/images/11952783_10153625723606506_8387956690870894187_o_00113x75.jpg + + + http://spationautes.fr/images/image_2100x75.jpg + + + http://spationautes.fr/images/p1020864.jpg + + + http://spationautes.fr/images/_mg_0307_00.jpg + + + http://spationautes.fr/images/_mg_0358.jpg + + + http://spationautes.fr/images/11952783_10153625723606506_8387956690870894187_o_00.jpg + + + http://spationautes.fr/images/image_2.jpg + + + + http://spationautes.fr/la-pluie-d%E2%80%99%C3%A9t%C3%A9.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/img_3464100x75.jpg + + + http://spationautes.fr/images/img_5252-crop-u40875.jpg + + + http://spationautes.fr/images/img_5253_00113x76.jpg + + + http://spationautes.fr/images/img_5254-crop-u40915.jpg + + + http://spationautes.fr/images/img_5273113x76.jpg + + + http://spationautes.fr/images/img_5318113x76.jpg + + + http://spationautes.fr/images/img_5320113x76.jpg + + + http://spationautes.fr/images/img_5326113x76.jpg + + + http://spationautes.fr/images/img_5327_00113x76.jpg + + + http://spationautes.fr/images/img_5348_00113x76.jpg + + + http://spationautes.fr/images/img_5350113x76.jpg + + + http://spationautes.fr/images/fini%20sur%20scene_00113x76.jpg + + + http://spationautes.fr/images/img_3464.jpg + + + http://spationautes.fr/images/img_5252.jpg + + + http://spationautes.fr/images/img_5253_00.jpg + + + http://spationautes.fr/images/img_5254.jpg + + + http://spationautes.fr/images/img_5273.jpg + + + http://spationautes.fr/images/img_5318.jpg + + + http://spationautes.fr/images/img_5320.jpg + + + http://spationautes.fr/images/img_5326.jpg + + + http://spationautes.fr/images/img_5327_00.jpg + + + http://spationautes.fr/images/img_5348_00.jpg + + + http://spationautes.fr/images/img_5350.jpg + + + http://spationautes.fr/images/fini%20sur%20scene_00.jpg + + + + http://spationautes.fr/villeneuvette.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/annonce.jpg + + + http://spationautes.fr/images/greve06_00.jpg + + + http://spationautes.fr/images/greve07.jpg + + + http://spationautes.fr/images/interview03.jpg + + + http://spationautes.fr/images/interview05.jpg + + + http://spationautes.fr/images/interview07.jpg + + + http://spationautes.fr/images/tournage03.jpg + + + http://spationautes.fr/images/train01_00.jpg + + + http://spationautes.fr/images/train03.jpg + + + http://spationautes.fr/images/train04_00.jpg + + + http://spationautes.fr/images/annonce83x63.jpg + + + http://spationautes.fr/images/greve02-crop-u38499.jpg + + + http://spationautes.fr/images/greve06_0094x63.jpg + + + http://spationautes.fr/images/greve0794x63.jpg + + + http://spationautes.fr/images/interview0383x63.jpg + + + http://spationautes.fr/images/interview0583x63.jpg + + + http://spationautes.fr/images/interview0783x63.jpg + + + http://spationautes.fr/images/tournage0383x63.jpg + + + http://spationautes.fr/images/train01_0094x63.jpg + + + http://spationautes.fr/images/train0394x63.jpg + + + http://spationautes.fr/images/train04_0094x63.jpg + + + http://spationautes.fr/images/greve04-crop-u38707.jpg + + + http://spationautes.fr/images/greve02.jpg + + + http://spationautes.fr/images/greve04.jpg + + + + http://spationautes.fr/spot-2016.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/1%20sam_134980x53.jpg + + + http://spationautes.fr/images/1%20sam_135880x53.jpg + + + http://spationautes.fr/images/1%20sam_140880x53.jpg + + + http://spationautes.fr/images/1%20sam_167780x53.jpg + + + http://spationautes.fr/images/2%20imgp9338jpg71x54.jpg + + + http://spationautes.fr/images/2%20sam_168080x53.jpg + + + http://spationautes.fr/images/2%20sam_168380x53.jpg + + + http://spationautes.fr/images/2%20sam_1688_0080x53.jpg + + + http://spationautes.fr/images/2%20sam_182575x53.jpg + + + http://spationautes.fr/images/2%20sam_182680x53.jpg + + + http://spationautes.fr/images/2%20sam_184880x53.jpg + + + http://spationautes.fr/images/2%20sam_187880x53.jpg + + + http://spationautes.fr/images/2%20sam_1883-crop-u33792.jpg + + + http://spationautes.fr/images/2%20sam_190280x53.jpg + + + http://spationautes.fr/images/3%20imgp942571x54.jpg + + + http://spationautes.fr/images/3%20imgp945471x54.jpg + + + http://spationautes.fr/images/5%20imgp%E2%80%A6%E2%80%A6-crop-u34012.jpg + + + http://spationautes.fr/images/6%20imgp944171x54.jpg + + + http://spationautes.fr/images/6%20sam_193380x53.jpg + + + http://spationautes.fr/images/6%20sam_1941_0080x53.jpg + + + http://spationautes.fr/images/6%20sam_194580x53.jpg + + + http://spationautes.fr/images/1%20sam_1349.jpg + + + http://spationautes.fr/images/1%20sam_1358.jpg + + + http://spationautes.fr/images/1%20sam_1408.jpg + + + http://spationautes.fr/images/1%20sam_1677.jpg + + + http://spationautes.fr/images/2%20imgp9338jpg.jpg + + + http://spationautes.fr/images/2%20sam_1680.jpg + + + http://spationautes.fr/images/2%20sam_1683.jpg + + + http://spationautes.fr/images/2%20sam_1688_00.jpg + + + http://spationautes.fr/images/2%20sam_1825.jpg + + + http://spationautes.fr/images/2%20sam_1826.jpg + + + http://spationautes.fr/images/2%20sam_1848.jpg + + + http://spationautes.fr/images/2%20sam_1878.jpg + + + http://spationautes.fr/images/2%20sam_1883.jpg + + + http://spationautes.fr/images/2%20sam_1902.jpg + + + http://spationautes.fr/images/3%20imgp9425.jpg + + + http://spationautes.fr/images/3%20imgp9454.jpg + + + http://spationautes.fr/images/5%20imgp%E2%80%A6%E2%80%A6.jpg + + + http://spationautes.fr/images/6%20imgp9441.jpg + + + http://spationautes.fr/images/6%20sam_1933.jpg + + + http://spationautes.fr/images/6%20sam_1941_00.jpg + + + http://spationautes.fr/images/6%20sam_1945.jpg + + + + http://spationautes.fr/triporteur.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/2015-04-28%2011112082x54.jpg + + + http://spationautes.fr/images/2015-04-28%2011115082x54.jpg + + + http://spationautes.fr/images/2015-04-28%2011133682x54.jpg + + + http://spationautes.fr/images/2015-04-28%2011211382x54.jpg + + + http://spationautes.fr/images/2015-04-28%2011363982x54.jpg + + + http://spationautes.fr/images/2015-04-28%20113650-crop-u43026.jpg + + + http://spationautes.fr/images/2015-04-28%2011372182x54.jpg + + + http://spationautes.fr/images/p102070872x68.jpg + + + http://spationautes.fr/images/p102070972x61.jpg + + + http://spationautes.fr/images/p102073572x55.jpg + + + http://spationautes.fr/images/p102073672x57.jpg + + + http://spationautes.fr/images/p102073772x59.jpg + + + http://spationautes.fr/images/p1020739-crop-u43050.jpg + + + http://spationautes.fr/images/p102074379x54.jpg + + + http://spationautes.fr/images/p102074572x55.jpg + + + http://spationautes.fr/images/p102075372x59.jpg + + + http://spationautes.fr/images/p102076872x55.jpg + + + http://spationautes.fr/images/p102078372x55.jpg + + + http://spationautes.fr/images/2015-04-28%20111120.jpg + + + http://spationautes.fr/images/2015-04-28%20111150.jpg + + + http://spationautes.fr/images/2015-04-28%20111336.jpg + + + http://spationautes.fr/images/2015-04-28%20112113.jpg + + + http://spationautes.fr/images/2015-04-28%20113639.jpg + + + http://spationautes.fr/images/2015-04-28%20113650.jpg + + + http://spationautes.fr/images/2015-04-28%20113721.jpg + + + http://spationautes.fr/images/p1020708.jpg + + + http://spationautes.fr/images/p1020709.jpg + + + http://spationautes.fr/images/p1020735.jpg + + + http://spationautes.fr/images/p1020736.jpg + + + http://spationautes.fr/images/p1020737.jpg + + + http://spationautes.fr/images/p1020739.jpg + + + http://spationautes.fr/images/p1020743.jpg + + + http://spationautes.fr/images/p1020745.jpg + + + http://spationautes.fr/images/p1020753.jpg + + + http://spationautes.fr/images/p1020768.jpg + + + http://spationautes.fr/images/p1020783.jpg + + + + http://spationautes.fr/foin-de-la-rue---2017.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/dsc_013480x53.jpg + + + http://spationautes.fr/images/dsc_013680x53.jpg + + + http://spationautes.fr/images/dsc_014380x53.jpg + + + http://spationautes.fr/images/dsc_016280x53.jpg + + + http://spationautes.fr/images/dsc_016580x53.jpg + + + http://spationautes.fr/images/dsc_016980x53.jpg + + + http://spationautes.fr/images/dsc_018380x53.jpg + + + http://spationautes.fr/images/dsc_024480x53.jpg + + + http://spationautes.fr/images/dsc_025280x53.jpg + + + http://spationautes.fr/images/dsc_027680x53.jpg + + + http://spationautes.fr/images/dsc_028080x53.jpg + + + http://spationautes.fr/images/dsc_028580x53.jpg + + + http://spationautes.fr/images/dsc_030480x53.jpg + + + http://spationautes.fr/images/dsc_034580x53.jpg + + + http://spationautes.fr/images/dsc_034680x53.jpg + + + http://spationautes.fr/images/dsc_035180x53.jpg + + + http://spationautes.fr/images/dsc_035580x53.jpg + + + http://spationautes.fr/images/dsc_037580x53.jpg + + + http://spationautes.fr/images/dsc_038680x53.jpg + + + http://spationautes.fr/images/dsc_0396-crop-u46835.jpg + + + http://spationautes.fr/images/dsc_040480x53.jpg + + + http://spationautes.fr/images/dsc_043080x53.jpg + + + http://spationautes.fr/images/dsc_043680x53.jpg + + + http://spationautes.fr/images/dsc_055080x53.jpg + + + http://spationautes.fr/images/dsc_056380x53.jpg + + + http://spationautes.fr/images/20156166_1661386237205348_2874888208524274396_n80x53.jpg + + + http://spationautes.fr/images/20106476_1661386207205351_6535836027048211664_n80x53.jpg + + + http://spationautes.fr/images/dsc_0134.jpg + + + http://spationautes.fr/images/dsc_0136.jpg + + + http://spationautes.fr/images/dsc_0143.jpg + + + http://spationautes.fr/images/dsc_0162.jpg + + + http://spationautes.fr/images/dsc_0165.jpg + + + http://spationautes.fr/images/dsc_0169.jpg + + + http://spationautes.fr/images/dsc_0183.jpg + + + http://spationautes.fr/images/dsc_0244.jpg + + + http://spationautes.fr/images/dsc_0252.jpg + + + http://spationautes.fr/images/dsc_0276.jpg + + + http://spationautes.fr/images/dsc_0280.jpg + + + http://spationautes.fr/images/dsc_0285.jpg + + + http://spationautes.fr/images/dsc_0304.jpg + + + http://spationautes.fr/images/dsc_0345.jpg + + + http://spationautes.fr/images/dsc_0346.jpg + + + http://spationautes.fr/images/dsc_0351.jpg + + + http://spationautes.fr/images/dsc_0355.jpg + + + http://spationautes.fr/images/dsc_0375.jpg + + + http://spationautes.fr/images/dsc_0386.jpg + + + http://spationautes.fr/images/dsc_0396.jpg + + + http://spationautes.fr/images/dsc_0404.jpg + + + http://spationautes.fr/images/dsc_0430.jpg + + + http://spationautes.fr/images/dsc_0436.jpg + + + http://spationautes.fr/images/dsc_0550.jpg + + + http://spationautes.fr/images/dsc_0563.jpg + + + http://spationautes.fr/images/20156166_1661386237205348_2874888208524274396_n.jpg + + + http://spationautes.fr/images/20106476_1661386207205351_6535836027048211664_n.jpg + + + + http://spationautes.fr/festival-nuit-filante.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/logo_00.png + + + http://spationautes.fr/images/img_179294x62.jpg + + + http://spationautes.fr/images/img_5223%20-%20copie%20-%20copie83x63.jpg + + + http://spationautes.fr/images/img_947783x63.jpg + + + http://spationautes.fr/images/img_949083x63.jpg + + + http://spationautes.fr/images/sam_7819-crop-u59843.jpg + + + http://spationautes.fr/images/sam_783694x62.jpg + + + http://spationautes.fr/images/img_163494x62.jpg + + + http://spationautes.fr/images/img_1803-crop-u59922.jpg + + + http://spationautes.fr/images/img_1792.jpg + + + http://spationautes.fr/images/img_5223%20-%20copie%20-%20copie.jpg + + + http://spationautes.fr/images/img_9477.jpg + + + http://spationautes.fr/images/img_9490.jpg + + + http://spationautes.fr/images/sam_7819.jpg + + + http://spationautes.fr/images/sam_7836.jpg + + + http://spationautes.fr/images/img_1634.jpg + + + http://spationautes.fr/images/img_1803.jpg + + + http://spationautes.fr/images/nuit%20filante-1.jpg + + + http://spationautes.fr/images/nuit%20filante-12.jpg + + + http://spationautes.fr/images/nuit%20filante-13.jpg + + + http://spationautes.fr/images/nuit%20filante-14.jpg + + + http://spationautes.fr/images/nuit%20filante-4.jpg + + + http://spationautes.fr/images/nuit%20filante-5.jpg + + + http://spationautes.fr/images/nuit%20filante-19.jpg + + + http://spationautes.fr/images/nuit%20filante-20.jpg + + + http://spationautes.fr/images/nuit%20filante-21.jpg + + + http://spationautes.fr/images/nuit%20filante-23.jpg + + + http://spationautes.fr/images/nuit%20filante-philippe%20piron%202.jpg + + + http://spationautes.fr/images/nuit%20filante-philippe%20piron1.jpg + + + http://spationautes.fr/images/nuit%20filante-6.jpg + + + http://spationautes.fr/images/nuit%20filante-8.jpg + + + http://spationautes.fr/images/nuit%20filante-9.jpg + + + http://spationautes.fr/images/nuit%20filante-15.jpg + + + http://spationautes.fr/images/nuit%20filante-16.jpg + + + http://spationautes.fr/images/nuit%20filante-10.jpg + + + http://spationautes.fr/images/nuit%20filante-11.jpg + + + http://spationautes.fr/images/nuit%20filante-24.jpg + + + http://spationautes.fr/images/nuit%20filante-194x62.jpg + + + http://spationautes.fr/images/nuit%20filante-1294x62.jpg + + + http://spationautes.fr/images/nuit%20filante-1394x62.jpg + + + http://spationautes.fr/images/nuit%20filante-1494x62.jpg + + + http://spationautes.fr/images/nuit%20filante-4-crop-u60223.jpg + + + http://spationautes.fr/images/nuit%20filante-5-crop-u60243.jpg + + + http://spationautes.fr/images/nuit%20filante-1994x62.jpg + + + http://spationautes.fr/images/nuit%20filante-2094x62.jpg + + + http://spationautes.fr/images/nuit%20filante-2194x62.jpg + + + http://spationautes.fr/images/nuit%20filante-2394x62.jpg + + + http://spationautes.fr/images/nuit%20filante-philippe%20piron%202-crop-u60389.jpg + + + http://spationautes.fr/images/nuit%20filante-philippe%20piron194x62.jpg + + + http://spationautes.fr/images/nuit%20filante-6-crop-u60458.jpg + + + http://spationautes.fr/images/nuit%20filante-894x62.jpg + + + http://spationautes.fr/images/nuit%20filante-994x62.jpg + + + http://spationautes.fr/images/nuit%20filante-1594x62.jpg + + + http://spationautes.fr/images/nuit%20filante-16-crop-u60602.jpg + + + http://spationautes.fr/images/nuit%20filante-1094x62.jpg + + + http://spationautes.fr/images/nuit%20filante-1194x62.jpg + + + http://spationautes.fr/images/nuit%20filante-24-crop-u60548.jpg + + + + http://spationautes.fr/kyogen.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/_mg_2382_01117x75.jpg + + + http://spationautes.fr/images/_mg_2385_00116x75.jpg + + + http://spationautes.fr/images/dscn2242100x75.jpg + + + http://spationautes.fr/images/dscn2244100x75.jpg + + + http://spationautes.fr/images/dscn2245100x75.jpg + + + http://spationautes.fr/images/avec%20acteur-crop-u41890.jpg + + + http://spationautes.fr/images/_mg_2382_01.jpg + + + http://spationautes.fr/images/_mg_2385_00.jpg + + + http://spationautes.fr/images/dscn2242.jpg + + + http://spationautes.fr/images/dscn2244.jpg + + + http://spationautes.fr/images/dscn2245.jpg + + + http://spationautes.fr/images/avec%20acteur.jpg + + + + http://spationautes.fr/la-fabrique-dervalli%C3%A8re.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/sam_2419112x74.jpg + + + http://spationautes.fr/images/sam_2446112x74.jpg + + + http://spationautes.fr/images/imag0305-crop-u42205.jpg + + + http://spationautes.fr/images/imag0096-crop-u42267.jpg + + + http://spationautes.fr/images/imag0098-crop-u42287.jpg + + + http://spationautes.fr/images/imag0102-crop-u42307.jpg + + + http://spationautes.fr/images/imag0117-crop-u42327.jpg + + + http://spationautes.fr/images/imag0118-crop-u42347.jpg + + + http://spationautes.fr/images/imag0124-crop-u42367.jpg + + + http://spationautes.fr/images/sam_3474112x74.jpg + + + http://spationautes.fr/images/sam_3495112x74.jpg + + + http://spationautes.fr/images/sam_3587_01112x74.jpg + + + http://spationautes.fr/images/sam_2419.jpg + + + http://spationautes.fr/images/sam_2446.jpg + + + http://spationautes.fr/images/imag0305.jpg + + + http://spationautes.fr/images/imag0096.jpg + + + http://spationautes.fr/images/imag0098.jpg + + + http://spationautes.fr/images/imag0102.jpg + + + http://spationautes.fr/images/imag0117.jpg + + + http://spationautes.fr/images/imag0118.jpg + + + http://spationautes.fr/images/imag0124.jpg + + + http://spationautes.fr/images/sam_3474.jpg + + + http://spationautes.fr/images/sam_3495.jpg + + + http://spationautes.fr/images/sam_3587_01.jpg + + + + http://spationautes.fr/ombre-de-tom.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/sam_2321113x76.jpg + + + http://spationautes.fr/images/13-crop-u44904.jpg + + + http://spationautes.fr/images/webdsc04711_dxo115x76.jpg + + + http://spationautes.fr/images/webdsc04783_dxo113x76.jpg + + + http://spationautes.fr/images/webdsc05104_dxo_00113x76.jpg + + + http://spationautes.fr/images/webdsc05367_dxo_00113x76.jpg + + + http://spationautes.fr/images/sam_2321.jpg + + + http://spationautes.fr/images/13.jpg + + + http://spationautes.fr/images/webdsc04711_dxo.jpg + + + http://spationautes.fr/images/webdsc04783_dxo.jpg + + + http://spationautes.fr/images/webdsc05104_dxo_00.jpg + + + http://spationautes.fr/images/webdsc05367_dxo_00.jpg + + + + http://spationautes.fr/parasol.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/dsc04450.jpg + + + http://spationautes.fr/images/sam_4225-crop-u51715.jpg + + + http://spationautes.fr/images/sam_4242127x85.jpg + + + http://spationautes.fr/images/sam_4238-crop-u52036.jpg + + + http://spationautes.fr/images/dsc04450-crop-u52092.jpg + + + http://spationautes.fr/images/dsc04458-crop-u52112.jpg + + + http://spationautes.fr/images/dsc04468-crop-u52132.jpg + + + http://spationautes.fr/images/dsc04484-crop-u52152.jpg + + + http://spationautes.fr/images/dsc04503-crop-u52172.jpg + + + http://spationautes.fr/images/sam_4225.jpg + + + http://spationautes.fr/images/sam_4242.jpg + + + http://spationautes.fr/images/sam_4238.jpg + + + http://spationautes.fr/images/dsc04458.jpg + + + http://spationautes.fr/images/dsc04468.jpg + + + http://spationautes.fr/images/dsc04484.jpg + + + http://spationautes.fr/images/dsc04503.jpg + + + + http://spationautes.fr/spot-2017.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/041_00.jpg + + + http://spationautes.fr/images/042_00.jpg + + + http://spationautes.fr/images/45_00.jpg + + + http://spationautes.fr/images/logo_kino-02.svg + + + http://spationautes.fr/images/02_0094x62.jpg + + + http://spationautes.fr/images/03-crop-u49843.jpg + + + http://spationautes.fr/images/041_0094x62.jpg + + + http://spationautes.fr/images/042_0094x62.jpg + + + http://spationautes.fr/images/43_0094x62.jpg + + + http://spationautes.fr/images/45_0094x62.jpg + + + http://spationautes.fr/images/46-crop-u49845.jpg + + + http://spationautes.fr/images/47_0094x62.jpg + + + http://spationautes.fr/images/48_0094x62.jpg + + + http://spationautes.fr/images/061_0094x62.jpg + + + http://spationautes.fr/images/0894x62.jpg + + + http://spationautes.fr/images/15_0094x62.jpg + + + http://spationautes.fr/images/16%20(2)_0094x62.jpg + + + http://spationautes.fr/images/16_0094x62.jpg + + + http://spationautes.fr/images/17_0094x62.jpg + + + http://spationautes.fr/images/19_0094x62.jpg + + + http://spationautes.fr/images/20_0094x62.jpg + + + http://spationautes.fr/images/22_0094x62.jpg + + + http://spationautes.fr/images/23_0094x62.jpg + + + http://spationautes.fr/images/881_0094x62.jpg + + + http://spationautes.fr/images/882_0094x62.jpg + + + http://spationautes.fr/images/02_00.jpg + + + http://spationautes.fr/images/03.jpg + + + http://spationautes.fr/images/43_00.jpg + + + http://spationautes.fr/images/46.jpg + + + http://spationautes.fr/images/47_00.jpg + + + http://spationautes.fr/images/48_00.jpg + + + http://spationautes.fr/images/061_00.jpg + + + http://spationautes.fr/images/08.jpg + + + http://spationautes.fr/images/15_00.jpg + + + http://spationautes.fr/images/16%20(2)_00.jpg + + + http://spationautes.fr/images/16_00.jpg + + + http://spationautes.fr/images/17_00.jpg + + + http://spationautes.fr/images/19_00.jpg + + + http://spationautes.fr/images/20_00.jpg + + + http://spationautes.fr/images/22_00.jpg + + + http://spationautes.fr/images/23_00.jpg + + + http://spationautes.fr/images/881_00.jpg + + + http://spationautes.fr/images/882_00.jpg + + + + http://spationautes.fr/atelier-du-pignon.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/28112018-cbll222408.jpg + + + http://spationautes.fr/images/logo-principal.svg + + + http://spationautes.fr/images/pignon_graphique.svg + + + http://spationautes.fr/images/08112017-cbll317104.jpg + + + http://spationautes.fr/images/08112017-cbll324302.jpg + + + http://spationautes.fr/images/28112018-cbll223107.jpg + + + http://spationautes.fr/images/28112018-cbll224804.jpg + + + http://spationautes.fr/images/28112018-cbll225803.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-2.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-3.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-4.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-5.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-7.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-8.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-9.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-10.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-11.jpg + + + http://spationautes.fr/images/08112017-cbll317104-crop-u61751.jpg + + + http://spationautes.fr/images/08112017-cbll324302-crop-u62123.jpg + + + http://spationautes.fr/images/28112018-cbll22240894x62.jpg + + + http://spationautes.fr/images/28112018-cbll22310794x62.jpg + + + http://spationautes.fr/images/28112018-cbll22480494x62.jpg + + + http://spationautes.fr/images/28112018-cbll22580394x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-293x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-393x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-493x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-593x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-793x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-894x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-994x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-1094x62.jpg + + + http://spationautes.fr/images/atelier%20du%20pignon-1194x62.jpg + + + + http://spationautes.fr/mobilier-cg.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussardw.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(4).jpg + + + http://spationautes.fr/images/imag0795.jpg + + + http://spationautes.fr/images/imag0797.jpg + + + http://spationautes.fr/images/imag0817.jpg + + + http://spationautes.fr/images/imag0792.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(1).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(2).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(3).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(5).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(6).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(7).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(8).jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard.jpg + + + http://spationautes.fr/images/imag0795-crop-u51094.jpg + + + http://spationautes.fr/images/imag0817-crop-u51371.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(1)113x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(3)113x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(5)113x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(7)113x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard113x75.jpg + + + http://spationautes.fr/images/imag0797-crop-u51351.jpg + + + http://spationautes.fr/images/imag0792-crop-u51401.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(2)113x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(4)114x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(6)111x75.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussard(8)-crop-u51632.jpg + + + http://spationautes.fr/images/screenshot-2017-11-24%20cg%20%E2%80%93%20simon%20boussardw114x75.jpg + + + + http://spationautes.fr/l-usine---kinoscop.html + 2019-12-17 + weekly + 0.5 + + http://spationautes.fr/images/logo_bes_blanc-02-02.svg + + + http://spationautes.fr/images/sam_4191.jpg + + + http://spationautes.fr/images/45_01.jpg + + + http://spationautes.fr/images/imag0568-crop-u52582.jpg + + + http://spationautes.fr/images/imag0579-crop-u52842.jpg + + + http://spationautes.fr/images/sam_4148113x76.jpg + + + http://spationautes.fr/images/sam_4141113x76.jpg + + + http://spationautes.fr/images/sam_4168%20(2)113x76.jpg + + + http://spationautes.fr/images/sam_4152113x76.jpg + + + http://spationautes.fr/images/sam_4191113x76.jpg + + + http://spationautes.fr/images/sam_4197113x76.jpg + + + http://spationautes.fr/images/042_01113x76.jpg + + + http://spationautes.fr/images/45_01113x76.jpg + + + http://spationautes.fr/images/15_01113x76.jpg + + + http://spationautes.fr/images/imag0568.jpg + + + http://spationautes.fr/images/imag0579.jpg + + + http://spationautes.fr/images/sam_4148.jpg + + + http://spationautes.fr/images/sam_4141.jpg + + + http://spationautes.fr/images/sam_4168%20(2).jpg + + + http://spationautes.fr/images/sam_4152.jpg + + + http://spationautes.fr/images/sam_4197.jpg + + + http://spationautes.fr/images/042_01.jpg + + + http://spationautes.fr/images/15_01.jpg + + + + http://spationautes.fr/assets/00.dossier-artistique-kinoscop.pdf + 2018-01-10 + weekly + 0.5 + + + http://spationautes.fr/assets/00.appels-%C3%A0-projets-ateliers-magellan.pdf + 2019-04-29 + weekly + 0.5 + + + http://spationautes.fr/assets/appel-%C3%A0-candidature---r%C3%A9sidence-ateliers-magellan.pdf + 2019-12-04 + weekly + 0.5 + + + http://spationautes.fr/assets/fly-a3.pdf + 2019-09-06 + weekly + 0.5 + + + http://spationautes.fr/assets/00.appels-%C3%A0-projets_convivialites.pdf + 2019-04-29 + weekly + 0.5 + + + http://spationautes.fr/assets/00.appels-%C3%A0-projets_-atelier-participatif.pdf + 2019-04-29 + weekly + 0.5 + + + http://spationautes.fr/assets/00.appels-%C3%A0-projets_residence-artistique.pdf + 2019-04-29 + weekly + 0.5 + + + http://spationautes.fr/assets/logo.png + 2017-02-09 + weekly + 0.5 + + + http://spationautes.fr/assets/00.fiche-technique_ateliers-magellan.pdf + 2019-02-04 + weekly + 0.5 + + + http://spationautes.fr/assets/affiche_lancement_a3.pdf + 2017-09-06 + weekly + 0.5 + + \ No newline at end of file