diff --git a/sites/all/modules/figli/edlp_corpus/edlp_corpus.module b/sites/all/modules/figli/edlp_corpus/edlp_corpus.module
index 035af0006..465dd433f 100644
--- a/sites/all/modules/figli/edlp_corpus/edlp_corpus.module
+++ b/sites/all/modules/figli/edlp_corpus/edlp_corpus.module
@@ -56,6 +56,12 @@ function edlp_corpus_entity_extra_field_info(){
'weight' => 99,
// 'visible' => FALSE,
];
+ $extra['taxonomy_term']['entrees']['display']['index-home'] = [
+ 'label' => t('Index Home'),
+ 'description' => 'Display index of all documents tagued with the term (form home mobile)',
+ 'weight' => 99,
+ // 'visible' => FALSE,
+ ];
$extra['node']['enregistrement']['display']['relations'] = [
'label' => t('Relations'),
'description' => 'Display enregistrement relations with other content types',
@@ -70,7 +76,8 @@ function edlp_corpus_entity_extra_field_info(){
*/
function edlp_corpus_taxonomy_term_view(array &$build, EntityInterface $entity, EntityViewDisplayInterface $display, $view_mode) {
$index_display_settings = $display->getComponent('index');
- if (!empty($index_display_settings)) {
+ $index_home_display_settings = $display->getComponent('index-home');
+ if (!empty($index_display_settings) || !empty($index_home_display_settings)) {
// dpm($entity);
// dpm($entity->id());
$view_builder = \Drupal::entityTypeManager()->getViewBuilder('node');
@@ -88,12 +95,18 @@ function edlp_corpus_taxonomy_term_view(array &$build, EntityInterface $entity,
'#theme' => 'item_list',
'#items' => [],
);
+ if(!empty($index_home_display_settings)){
+ $view_mode = 'index_home';
+ }else{
+ $view_mode = 'index';
+ }
foreach($documents as $doc){
// remove masqué
$sid = WorkflowManager::getCurrentStateId($doc, 'field_workflow');
if($sid != 'corpus_documents_publie') continue;
// TODO: instead of workflow, just check access
- $documents_list['#items'][] = $view_builder->view($doc, 'index');
+ // TODO: get the view mode of document nodes from field settings
+ $documents_list['#items'][] = $view_builder->view($doc, $view_mode);
}
// And the last step is to actually build the tree.
@@ -238,7 +251,7 @@ function edlp_corpus_page_attachments(array &$attachments) {
$url = Url::fromRoute('edlp_corpus.corpusjson');
$attachments['#attached']['drupalSettings']['edlp_corpus']['load_corpus_ajax_url'] = $url->getInternalPath();
- // load corpus
+ // load articles
$url = Url::fromRoute('edlp_corpus.articlesindex');
$attachments['#attached']['drupalSettings']['edlp_corpus']['articlesindex_url'] = $url->getInternalPath();
diff --git a/sites/all/modules/figli/edlp_corpus/src/Controller/CorpusController.php b/sites/all/modules/figli/edlp_corpus/src/Controller/CorpusController.php
index 1a575b28a..4311140e8 100644
--- a/sites/all/modules/figli/edlp_corpus/src/Controller/CorpusController.php
+++ b/sites/all/modules/figli/edlp_corpus/src/Controller/CorpusController.php
@@ -256,8 +256,8 @@ class CorpusController extends ControllerBase {
->condition('status', 1)
->condition('type', 'enregistrement')
->condition('body', '', "<>")
- ->sort('created', 'DESC')
- ->range(0,20);
+ ->sort('created', 'DESC');
+ // ->range(0,20);
$nids = $query->execute();
$nodes = entity_load_multiple('node', $nids);
diff --git a/sites/all/modules/figli/edlp_home/includes/edlp_home.inc b/sites/all/modules/figli/edlp_home/includes/edlp_home.inc
index 04345ee4d..e4bd7ece7 100644
--- a/sites/all/modules/figli/edlp_home/includes/edlp_home.inc
+++ b/sites/all/modules/figli/edlp_home/includes/edlp_home.inc
@@ -8,27 +8,30 @@ function template_preprocess_edlp_home(&$vars){
// dpm($vars);
// render the promoted_nodes
- foreach($vars['promoted_nodes'] as $node){
- if($node->hasField('field_view_mode')){
- switch($node->get('field_view_mode')->value){
- case "1":
- $vm = "image_2_columns";
- break;
- case "2":
- $vm = "image_1_columns";
- break;
- case "3":
- $vm = "text_1_column";
- break;
- };
- }else{
- $vm = 'default';
- }
+ $vars['nodes'] = array();
+ if(isset($vars['promoted_nodes'])){
+ foreach($vars['promoted_nodes'] as $node){
+ if($node->hasField('field_view_mode')){
+ switch($node->get('field_view_mode')->value){
+ case "1":
+ $vm = "image_2_columns";
+ break;
+ case "2":
+ $vm = "image_1_columns";
+ break;
+ case "3":
+ $vm = "text_1_column";
+ break;
+ };
+ }else{
+ $vm = 'default';
+ }
- $vars['nodes'][] = array(
- 'vm'=>$vm,
- 'build'=>$node_view_builder->view($node, $vm)
- );
+ $vars['nodes'][] = array(
+ 'vm'=>$vm,
+ 'build'=>$node_view_builder->view($node, $vm)
+ );
+ }
}
// render the presentation column
@@ -95,66 +98,74 @@ function template_preprocess_edlp_home(&$vars){
// render the lasts documents of collection as list
- $lastdocs_url = Url::fromRoute('edlp_corpus.lastdocs');
- $lastdocs = array(
- '#type'=>"container",
- 'title'=>array(
- '#prefix'=> '
',
- '#title' => t("Recently uploaded"),
- '#suffix' => '
',
- '#type' => 'link',
- '#url' => $lastdocs_url,
- '#options'=>array(
- 'attributes' => array(
- 'data-drupal-link-system-path' => $lastdocs_url->getInternalPath(),
- 'class' => array('ajax-link'),
+ if(isset($vars['lastdocs_items'])){
+ $lastdocs_url = Url::fromRoute('edlp_corpus.lastdocs');
+ $lastdocs = array(
+ '#type'=>"container",
+ 'title'=>array(
+ '#prefix'=> '',
+ '#title' => t("Recently uploaded"),
+ '#suffix' => '
',
+ '#type' => 'link',
+ '#url' => $lastdocs_url,
+ '#options'=>array(
+ 'attributes' => array(
+ 'data-drupal-link-system-path' => $lastdocs_url->getInternalPath(),
+ 'class' => array('ajax-link'),
+ )
)
- )
- ),
- 'list'=> array(
- '#theme' => 'item_list',
- '#items' => [],
- ),
- );
- foreach($vars['lastdocs_items'] as $node){
- $lastdocs['list']['#items'][] = $node_view_builder->view($node, 'search_index');
+ ),
+ 'list'=> array(
+ '#theme' => 'item_list',
+ '#items' => [],
+ ),
+ );
+ foreach($vars['lastdocs_items'] as $node){
+ $lastdocs['list']['#items'][] = $node_view_builder->view($node, 'search_index');
+ }
+ $vars['lastdocs'] = render($lastdocs);
}
- $vars['lastdocs'] = render($lastdocs);
// render the next events of agenda as list
- $agenda_url = Url::fromRoute('edlp_agenda.agenda');
- $agenda = array(
- '#type'=>"container",
- 'title'=>array(
- '#prefix'=> '',
- '#title' => t("Agenda"),
- '#suffix' => '
',
- '#type' => 'link',
- '#url' => $agenda_url,
- '#options'=>array(
- 'attributes' => array(
- 'data-drupal-link-system-path' => $agenda_url->getInternalPath(),
- 'class' => array('ajax-link'),
+ if(isset($vars['agenda_items'])){
+ $agenda_url = Url::fromRoute('edlp_agenda.agenda');
+ $agenda = array(
+ '#type'=>"container",
+ 'title'=>array(
+ '#prefix'=> '',
+ '#title' => t("Agenda"),
+ '#suffix' => '
',
+ '#type' => 'link',
+ '#url' => $agenda_url,
+ '#options'=>array(
+ 'attributes' => array(
+ 'data-drupal-link-system-path' => $agenda_url->getInternalPath(),
+ 'class' => array('ajax-link'),
+ )
)
- )
- ),
- 'list'=> array(
- '#theme' => 'item_list',
- '#items' => [],
- ),
- );
+ ),
+ 'list'=> array(
+ '#theme' => 'item_list',
+ '#items' => [],
+ ),
+ );
- foreach($vars['agenda_items'] as $node){
- $agenda['list']['#items'][] = $node_view_builder->view($node, 'teaser');
+ foreach($vars['agenda_items'] as $node){
+ $agenda['list']['#items'][] = $node_view_builder->view($node, 'teaser');
+ }
+ $vars['agenda'] = render($agenda);
}
- $vars['agenda'] = render($agenda);
if(isset($vars['entrees_items'])){
$entrees = array(
'#type'=>"container",
- // 'title'=>array(
- // '#markup'=>"".t("Entries")."
",
+ // '#attributes' => array(
+ // 'id' => array('collection'),
// ),
+ '#prefix' => '',
+ 'title'=>array(
+ '#markup'=>"".t("Collection")."
",
+ ),
'list'=> array(
'#theme' => 'item_list',
'#items' => [],
diff --git a/sites/all/modules/figli/edlp_home/templates/edlp-home.html.twig b/sites/all/modules/figli/edlp_home/templates/edlp-home.html.twig
index 23fbe365c..644a8431f 100644
--- a/sites/all/modules/figli/edlp_home/templates/edlp-home.html.twig
+++ b/sites/all/modules/figli/edlp_home/templates/edlp-home.html.twig
@@ -1,13 +1,20 @@
{# presentation #}
{# last_fil #}
{# last_production #}
-{% for node in nodes %}
+
+{% if nodes %}
+ {% for node in nodes %}
{{ node.build }}
-{% endfor %}
+ {% endfor %}
+{% endif %}
-{{ lastdocs }}
+{% if lastdocs %}
+ {{ lastdocs }}
+{% endif %}
-{{ agenda }}
+{% if agenda %}
+ {{ agenda }}
+{% endif %}
{% if entrees %}
{{ entrees }}
diff --git a/sites/all/modules/figli/package-lock.json b/sites/all/modules/figli/package-lock.json
index 8e8e8eb14..5a7c07e5c 100644
--- a/sites/all/modules/figli/package-lock.json
+++ b/sites/all/modules/figli/package-lock.json
@@ -321,23 +321,23 @@
"dev": true
},
"atob": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.1.tgz",
- "integrity": "sha1-ri1acpR38onWDdf5amMUoi3Wwio=",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz",
+ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==",
"dev": true
},
"autoprefixer": {
- "version": "8.4.1",
- "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-8.4.1.tgz",
- "integrity": "sha512-YqUclCBDXUT9Y7aQ8Xv+ja8yhTZYJoMsOD7WS++gZIJLCpCu+gPcKGDlhk6S3WxhLkTcNVdaMZAWys2nzZCH7g==",
+ "version": "9.3.1",
+ "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.3.1.tgz",
+ "integrity": "sha512-DY9gOh8z3tnCbJ13JIWaeQsoYncTGdsrgCceBaQSIL4nvdrLxgbRSBPevg2XbX7u4QCSfLheSJEEIUUSlkbx6Q==",
"dev": true,
"requires": {
- "browserslist": "^3.2.6",
- "caniuse-lite": "^1.0.30000832",
+ "browserslist": "^4.3.3",
+ "caniuse-lite": "^1.0.30000898",
"normalize-range": "^0.1.2",
"num2fraction": "^1.2.2",
- "postcss": "^6.0.22",
- "postcss-value-parser": "^3.2.3"
+ "postcss": "^7.0.5",
+ "postcss-value-parser": "^3.3.1"
}
},
"aws-sign2": {
@@ -430,9 +430,9 @@
"dev": true
},
"binary-extensions": {
- "version": "1.11.0",
- "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.11.0.tgz",
- "integrity": "sha1-RqoXUftqL5PuXmibsQh9SxTGwgU=",
+ "version": "1.12.0",
+ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.12.0.tgz",
+ "integrity": "sha512-DYWGk01lDcxeS/K9IHPGWfT8PsJmbXRtRd2Sx72Tnb8pcYZQFF1oSDb8hJtS1vhp212q1Rzi5dUf9+nq0o9UIg==",
"dev": true
},
"block-stream": {
@@ -493,13 +493,14 @@
}
},
"browserslist": {
- "version": "3.2.6",
- "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-3.2.6.tgz",
- "integrity": "sha512-XCsMSg9V4S1VRdcp265dJ+8kBRjfuFXcavbisY7G6T9QI0H1Z24PP53vvs0WDYWqm38Mco1ILDtafcS8ZR4xiw==",
+ "version": "4.3.4",
+ "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.3.4.tgz",
+ "integrity": "sha512-u5iz+ijIMUlmV8blX82VGFrB9ecnUg5qEt55CMZ/YJEhha+d8qpBfOFuutJ6F/VKRXjZoD33b6uvarpPxcl3RA==",
"dev": true,
"requires": {
- "caniuse-lite": "^1.0.30000830",
- "electron-to-chromium": "^1.3.42"
+ "caniuse-lite": "^1.0.30000899",
+ "electron-to-chromium": "^1.3.82",
+ "node-releases": "^1.0.1"
}
},
"builtin-modules": {
@@ -542,9 +543,9 @@
}
},
"caniuse-lite": {
- "version": "1.0.30000833",
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000833.tgz",
- "integrity": "sha512-tKNuKu4WLImh4NxoTgntxFpDrRiA0Q6Q1NycNhuMST0Kx+Pt8YnRDW6V8xsyH6AtO2CpAoibatEk5eaEhP3O1g==",
+ "version": "1.0.30000909",
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000909.tgz",
+ "integrity": "sha512-4Ix9ArKpo3s/dLGVn/el9SAk6Vn2kGhg8XeE4eRTsGEsmm9RnTkwnBsVZs7p4wA8gB+nsgP36vZWYbG8a4nYrg==",
"dev": true
},
"caseless": {
@@ -573,23 +574,24 @@
"dev": true
},
"chokidar": {
- "version": "2.0.3",
- "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.3.tgz",
- "integrity": "sha512-zW8iXYZtXMx4kux/nuZVXjkLP+CyIK5Al5FHnj1OgTKGZfp4Oy6/ymtMSKFv3GD8DviEmUPmJg9eFdJ/JzudMg==",
+ "version": "2.0.4",
+ "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz",
+ "integrity": "sha512-z9n7yt9rOvIJrMhvDtDictKrkFHeihkNl6uWMmZlmL6tJtX9Cs+87oK+teBx+JIgzvbX3yZHT3eF8vpbDxHJXQ==",
"dev": true,
"requires": {
"anymatch": "^2.0.0",
"async-each": "^1.0.0",
"braces": "^2.3.0",
- "fsevents": "^1.1.2",
+ "fsevents": "^1.2.2",
"glob-parent": "^3.1.0",
"inherits": "^2.0.1",
"is-binary-path": "^1.0.0",
"is-glob": "^4.0.0",
+ "lodash.debounce": "^4.0.8",
"normalize-path": "^2.1.1",
"path-is-absolute": "^1.0.0",
"readdirp": "^2.0.0",
- "upath": "^1.0.0"
+ "upath": "^1.0.5"
},
"dependencies": {
"anymatch": {
@@ -648,7 +650,7 @@
"dependencies": {
"source-map": {
"version": "0.4.4",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
+ "resolved": "http://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz",
"integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=",
"dev": true,
"requires": {
@@ -705,7 +707,7 @@
},
"readable-stream": {
"version": "2.3.6",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"dev": true,
"requires": {
@@ -777,7 +779,7 @@
},
"commander": {
"version": "2.8.1",
- "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
+ "resolved": "http://registry.npmjs.org/commander/-/commander-2.8.1.tgz",
"integrity": "sha1-Br42f+v9oMMwqh4qBy09yXYkJdQ=",
"dev": true,
"requires": {
@@ -1060,9 +1062,9 @@
}
},
"electron-to-chromium": {
- "version": "1.3.45",
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.45.tgz",
- "integrity": "sha1-RYrBscXHYM6IEaFtK/vZfsMLr7g=",
+ "version": "1.3.84",
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.84.tgz",
+ "integrity": "sha512-IYhbzJYOopiTaNWMBp7RjbecUBsbnbDneOP86f3qvS0G0xfzwNSvMJpTrvi5/Y1gU7tg2NAgeg8a8rCYvW9Whw==",
"dev": true
},
"end-of-stream": {
@@ -1173,14 +1175,14 @@
},
"dependencies": {
"fill-range": {
- "version": "2.2.3",
- "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz",
- "integrity": "sha1-ULd9/X5Gm8dJJHCWNpn+eoSFpyM=",
+ "version": "2.2.4",
+ "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz",
+ "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==",
"dev": true,
"requires": {
"is-number": "^2.1.0",
"isobject": "^2.0.0",
- "randomatic": "^1.1.3",
+ "randomatic": "^3.0.0",
"repeat-element": "^1.1.2",
"repeat-string": "^1.5.2"
}
@@ -1486,14 +1488,14 @@
"dev": true
},
"fsevents": {
- "version": "1.2.3",
- "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.3.tgz",
- "integrity": "sha512-X+57O5YkDTiEQGiw8i7wYc2nQgweIekqkepI8Q3y4wVlurgBt2SuwxTeYUYMZIGpLZH3r/TsMjczCMXE5ZOt7Q==",
+ "version": "1.2.4",
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.4.tgz",
+ "integrity": "sha512-z8H8/diyk76B7q5wg+Ud0+CqzcAF3mBBI/bA5ne5zrRUUIvNkJY//D3BqyH571KuAC4Nr7Rw7CjWX4r0y9DvNg==",
"dev": true,
"optional": true,
"requires": {
"nan": "^2.9.2",
- "node-pre-gyp": "^0.9.0"
+ "node-pre-gyp": "^0.10.0"
},
"dependencies": {
"abbrev": {
@@ -1574,7 +1576,7 @@
}
},
"deep-extend": {
- "version": "0.4.2",
+ "version": "0.5.1",
"bundled": true,
"dev": true,
"optional": true
@@ -1752,7 +1754,7 @@
}
},
"node-pre-gyp": {
- "version": "0.9.1",
+ "version": "0.10.0",
"bundled": true,
"dev": true,
"optional": true,
@@ -1861,12 +1863,12 @@
"optional": true
},
"rc": {
- "version": "1.2.6",
+ "version": "1.2.7",
"bundled": true,
"dev": true,
"optional": true,
"requires": {
- "deep-extend": "~0.4.0",
+ "deep-extend": "^0.5.1",
"ini": "~1.3.0",
"minimist": "^1.2.0",
"strip-json-comments": "~2.0.1"
@@ -2191,7 +2193,7 @@
"dependencies": {
"readable-stream": {
"version": "1.0.34",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
"integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
"dev": true,
"requires": {
@@ -2203,7 +2205,7 @@
},
"through2": {
"version": "0.6.5",
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
+ "resolved": "http://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
"integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=",
"dev": true,
"requires": {
@@ -2215,7 +2217,7 @@
},
"glob-watcher": {
"version": "0.0.6",
- "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz",
+ "resolved": "http://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz",
"integrity": "sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs=",
"dev": true,
"requires": {
@@ -2279,7 +2281,7 @@
},
"graceful-fs": {
"version": "1.2.3",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz",
+ "resolved": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz",
"integrity": "sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q=",
"dev": true
},
@@ -2312,7 +2314,7 @@
},
"graceful-fs": {
"version": "3.0.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz",
+ "resolved": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz",
"integrity": "sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg=",
"dev": true,
"requires": {
@@ -2327,7 +2329,7 @@
},
"gulp": {
"version": "3.9.1",
- "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz",
+ "resolved": "http://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz",
"integrity": "sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ=",
"dev": true,
"requires": {
@@ -2347,15 +2349,15 @@
}
},
"gulp-autoprefixer": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-5.0.0.tgz",
- "integrity": "sha1-gjfCeKaXdScKHK/n1vEBz81YVUQ=",
+ "version": "6.0.0",
+ "resolved": "https://registry.npmjs.org/gulp-autoprefixer/-/gulp-autoprefixer-6.0.0.tgz",
+ "integrity": "sha512-MyLymXKVGTVBx/okQSBqmdhwhyqi3igBmZBwgpZp0GRbY1LY8VctOTLzwkQ18bZKJkSDnOKR5u32TMY9wSYdqQ==",
"dev": true,
"requires": {
- "autoprefixer": "^8.0.0",
+ "autoprefixer": "^9.1.3",
"fancy-log": "^1.3.2",
"plugin-error": "^1.0.1",
- "postcss": "^6.0.1",
+ "postcss": "^7.0.2",
"through2": "^2.0.0",
"vinyl-sourcemaps-apply": "^0.2.0"
}
@@ -2377,7 +2379,7 @@
"dependencies": {
"ansi-regex": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
+ "resolved": "http://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
"integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=",
"dev": true
},
@@ -2389,7 +2391,7 @@
},
"chalk": {
"version": "0.5.1",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
"integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=",
"dev": true,
"requires": {
@@ -2411,9 +2413,9 @@
}
},
"graceful-fs": {
- "version": "4.1.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
- "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
+ "version": "4.1.15",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
+ "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
"dev": true
},
"gulp-rename": {
@@ -2505,13 +2507,13 @@
},
"minimist": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz",
+ "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz",
"integrity": "sha1-Tf/lJdriuGTGbC4jxicdev3s784=",
"dev": true
},
"readable-stream": {
"version": "1.0.34",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
"integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
"dev": true,
"requires": {
@@ -2523,7 +2525,7 @@
},
"strip-ansi": {
"version": "0.3.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
+ "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
"integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=",
"dev": true,
"requires": {
@@ -2538,7 +2540,7 @@
},
"through2": {
"version": "0.5.1",
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
+ "resolved": "http://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
"integrity": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=",
"dev": true,
"requires": {
@@ -2591,7 +2593,7 @@
"dependencies": {
"ansi-regex": {
"version": "0.2.1",
- "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
+ "resolved": "http://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz",
"integrity": "sha1-DY6UaWej2BQ/k+JOKYUl/BsiNfk=",
"dev": true
},
@@ -2603,7 +2605,7 @@
},
"chalk": {
"version": "0.5.1",
- "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
+ "resolved": "http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz",
"integrity": "sha1-Zjs6ZItotV0EaQ1JFnqoN4WPIXQ=",
"dev": true,
"requires": {
@@ -2626,7 +2628,7 @@
},
"graceful-fs": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz",
+ "resolved": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz",
"integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=",
"dev": true
},
@@ -2719,13 +2721,13 @@
},
"minimist": {
"version": "0.2.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz",
+ "resolved": "http://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz",
"integrity": "sha1-Tf/lJdriuGTGbC4jxicdev3s784=",
"dev": true
},
"readable-stream": {
"version": "1.0.34",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
"integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
"dev": true,
"requires": {
@@ -2737,7 +2739,7 @@
},
"strip-ansi": {
"version": "0.3.0",
- "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
+ "resolved": "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz",
"integrity": "sha1-JfSOoiynkYfzF0pNuHWTR7sSYiA=",
"dev": true,
"requires": {
@@ -2752,7 +2754,7 @@
},
"through2": {
"version": "0.5.1",
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
+ "resolved": "http://registry.npmjs.org/through2/-/through2-0.5.1.tgz",
"integrity": "sha1-390BLrnHAOIyP9M084rGIqs3Lac=",
"dev": true,
"requires": {
@@ -2840,9 +2842,9 @@
}
},
"gulp-rename": {
- "version": "1.2.2",
- "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.2.tgz",
- "integrity": "sha1-OtRCh2PwXidk3sHGfYaNsnVoeBc=",
+ "version": "1.4.0",
+ "resolved": "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.4.0.tgz",
+ "integrity": "sha512-swzbIGb/arEoFK89tPY58vg3Ok1bw+d35PfUNwWqdo7KM4jkmuGA78JiDNqR+JeZFaeeHnRg9N7aihX3YPmsyg==",
"dev": true
},
"gulp-sass": {
@@ -2951,17 +2953,19 @@
}
},
"gulp-watch": {
- "version": "5.0.0",
- "resolved": "https://registry.npmjs.org/gulp-watch/-/gulp-watch-5.0.0.tgz",
- "integrity": "sha512-q+HLppxXd11z9ndqql4Z0sd5xOAesJjycl0PRaq6ImK7b1BqBRL37YvxEE8ngUdIfpfHa0O9OCoovoggcFpCaQ==",
+ "version": "5.0.1",
+ "resolved": "https://registry.npmjs.org/gulp-watch/-/gulp-watch-5.0.1.tgz",
+ "integrity": "sha512-HnTSBdzAOFIT4wmXYPDUn783TaYAq9bpaN05vuZNP5eni3z3aRx0NAKbjhhMYtcq76x4R1wf4oORDGdlrEjuog==",
"dev": true,
"requires": {
+ "ansi-colors": "1.1.0",
"anymatch": "^1.3.0",
"chokidar": "^2.0.0",
+ "fancy-log": "1.3.2",
"glob-parent": "^3.0.1",
- "gulp-util": "^3.0.7",
"object-assign": "^4.1.0",
"path-is-absolute": "^1.0.1",
+ "plugin-error": "1.0.1",
"readable-stream": "^2.2.2",
"slash": "^1.0.0",
"vinyl": "^2.1.0",
@@ -2969,9 +2973,9 @@
},
"dependencies": {
"clone": {
- "version": "2.1.1",
- "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz",
- "integrity": "sha1-0hfR6WERjjrJpLi7oyhVU79kfNs=",
+ "version": "2.1.2",
+ "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz",
+ "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=",
"dev": true
},
"clone-stats": {
@@ -2994,7 +2998,7 @@
},
"readable-stream": {
"version": "2.3.6",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"dev": true,
"requires": {
@@ -3023,9 +3027,9 @@
}
},
"vinyl": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.1.0.tgz",
- "integrity": "sha1-Ah+cLPlR1rk5lDyJ617lrdT9kkw=",
+ "version": "2.2.0",
+ "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz",
+ "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==",
"dev": true,
"requires": {
"clone": "^2.1.1",
@@ -3414,23 +3418,6 @@
}
}
},
- "is-odd": {
- "version": "2.0.0",
- "resolved": "https://registry.npmjs.org/is-odd/-/is-odd-2.0.0.tgz",
- "integrity": "sha512-OTiixgpZAT1M4NHgS5IguFp/Vz2VI3U7Goh4/HA1adtwyLtSBrxYlcSYkhpAE07s4fKEcjrFxyvtQBND4vFQyQ==",
- "dev": true,
- "requires": {
- "is-number": "^4.0.0"
- },
- "dependencies": {
- "is-number": {
- "version": "4.0.0",
- "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
- "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==",
- "dev": true
- }
- }
- },
"is-plain-object": {
"version": "2.0.4",
"resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz",
@@ -3665,7 +3652,7 @@
},
"lodash": {
"version": "1.0.2",
- "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz",
+ "resolved": "http://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz",
"integrity": "sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE=",
"dev": true
},
@@ -3800,6 +3787,12 @@
"integrity": "sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=",
"dev": true
},
+ "lodash.debounce": {
+ "version": "4.0.8",
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
+ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
+ "dev": true
+ },
"lodash.defaults": {
"version": "2.4.1",
"resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-2.4.1.tgz",
@@ -3964,7 +3957,7 @@
},
"map-stream": {
"version": "0.0.4",
- "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.0.4.tgz",
+ "resolved": "http://registry.npmjs.org/map-stream/-/map-stream-0.0.4.tgz",
"integrity": "sha1-XsbekCE+9sey65Nn6a3o2k79tos=",
"dev": true
},
@@ -3977,6 +3970,12 @@
"object-visit": "^1.0.0"
}
},
+ "math-random": {
+ "version": "1.0.1",
+ "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.1.tgz",
+ "integrity": "sha1-izqsWIuKZuSXXjzepn97sylgH6w=",
+ "dev": true
+ },
"meow": {
"version": "3.7.0",
"resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz",
@@ -4155,9 +4154,9 @@
"dev": true
},
"nanomatch": {
- "version": "1.2.9",
- "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.9.tgz",
- "integrity": "sha512-n8R9bS8yQ6eSXaV6jHUpKzD8gLsin02w1HSFiegwrs9E098Ylhw5jdyKPaYqvHknHaSCKTPp7C8dGCQ0q9koXA==",
+ "version": "1.2.13",
+ "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz",
+ "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==",
"dev": true,
"requires": {
"arr-diff": "^4.0.0",
@@ -4165,7 +4164,6 @@
"define-property": "^2.0.2",
"extend-shallow": "^3.0.2",
"fragment-cache": "^0.2.1",
- "is-odd": "^2.0.0",
"is-windows": "^1.0.2",
"kind-of": "^6.0.2",
"object.pick": "^1.3.0",
@@ -4175,9 +4173,9 @@
}
},
"natives": {
- "version": "1.1.3",
- "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.3.tgz",
- "integrity": "sha512-BZGSYV4YOLxzoTK73l0/s/0sH9l8SHs2ocReMH1f8JYSh5FUWu4ZrKCpJdRkWXV6HFR/pZDz7bwWOVAY07q77g==",
+ "version": "1.1.6",
+ "resolved": "https://registry.npmjs.org/natives/-/natives-1.1.6.tgz",
+ "integrity": "sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA==",
"dev": true
},
"node-gyp": {
@@ -4238,6 +4236,23 @@
}
}
},
+ "node-releases": {
+ "version": "1.0.4",
+ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.0.4.tgz",
+ "integrity": "sha512-GqRV9GcHw8JCRDaP/JoeNMNzEGzHAknMvIHqMb2VeTOmg1Cf9+ej8bkV12tHfzWHQMCkQ5zUFgwFUkfraynNCw==",
+ "dev": true,
+ "requires": {
+ "semver": "^5.3.0"
+ },
+ "dependencies": {
+ "semver": {
+ "version": "5.6.0",
+ "resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
+ "integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
+ "dev": true
+ }
+ }
+ },
"node-sass": {
"version": "4.9.0",
"resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.9.0.tgz",
@@ -4620,9 +4635,9 @@
"dev": true
},
"path-parse": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz",
- "integrity": "sha1-PBrfhx6pzWyUMbbqK9dKD/BVxME=",
+ "version": "1.0.6",
+ "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
+ "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==",
"dev": true
},
"path-root": {
@@ -4708,14 +4723,14 @@
"dev": true
},
"postcss": {
- "version": "6.0.22",
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.22.tgz",
- "integrity": "sha512-Toc9lLoUASwGqxBSJGTVcOQiDqjK+Z2XlWBg+IgYwQMY9vA2f7iMpXVc1GpPcfTSyM5lkxNo0oDwDRO+wm7XHA==",
+ "version": "7.0.6",
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.6.tgz",
+ "integrity": "sha512-Nq/rNjnHFcKgCDDZYO0lNsl6YWe6U7tTy+ESN+PnLxebL8uBtYX59HZqvrj7YLK5UCyll2hqDsJOo3ndzEW8Ug==",
"dev": true,
"requires": {
"chalk": "^2.4.1",
"source-map": "^0.6.1",
- "supports-color": "^5.4.0"
+ "supports-color": "^5.5.0"
},
"dependencies": {
"ansi-styles": {
@@ -4745,9 +4760,9 @@
"dev": true
},
"supports-color": {
- "version": "5.4.0",
- "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.4.0.tgz",
- "integrity": "sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w==",
+ "version": "5.5.0",
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
+ "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
@@ -4756,9 +4771,9 @@
}
},
"postcss-value-parser": {
- "version": "3.3.0",
- "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.0.tgz",
- "integrity": "sha1-h/OPnxj3dKSrTIojL1xc6IcqnRU=",
+ "version": "3.3.1",
+ "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz",
+ "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==",
"dev": true
},
"preserve": {
@@ -4769,7 +4784,7 @@
},
"pretty-hrtime": {
"version": "1.0.3",
- "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
+ "resolved": "http://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz",
"integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=",
"dev": true
},
@@ -4798,23 +4813,21 @@
"dev": true
},
"randomatic": {
- "version": "1.1.7",
- "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.7.tgz",
- "integrity": "sha512-D5JUjPyJbaJDkuAazpVnSfVkLlpeO3wDlPROTMLGKG1zMFNFRgrciKo1ltz/AzNTkqE0HzDx655QOL51N06how==",
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz",
+ "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==",
"dev": true,
"requires": {
- "is-number": "^3.0.0",
- "kind-of": "^4.0.0"
+ "is-number": "^4.0.0",
+ "kind-of": "^6.0.0",
+ "math-random": "^1.0.1"
},
"dependencies": {
- "kind-of": {
+ "is-number": {
"version": "4.0.0",
- "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz",
- "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=",
- "dev": true,
- "requires": {
- "is-buffer": "^1.1.5"
- }
+ "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz",
+ "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==",
+ "dev": true
}
}
},
@@ -4852,21 +4865,20 @@
}
},
"readdirp": {
- "version": "2.1.0",
- "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.1.0.tgz",
- "integrity": "sha1-TtCtBg3zBzMAxIRANz9y0cxkLXg=",
+ "version": "2.2.1",
+ "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz",
+ "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==",
"dev": true,
"requires": {
- "graceful-fs": "^4.1.2",
- "minimatch": "^3.0.2",
- "readable-stream": "^2.0.2",
- "set-immediate-shim": "^1.0.1"
+ "graceful-fs": "^4.1.11",
+ "micromatch": "^3.1.10",
+ "readable-stream": "^2.0.2"
},
"dependencies": {
"graceful-fs": {
- "version": "4.1.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
- "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
+ "version": "4.1.15",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
+ "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
"dev": true
},
"isarray": {
@@ -4875,18 +4887,9 @@
"integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=",
"dev": true
},
- "minimatch": {
- "version": "3.0.4",
- "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
- "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
- "dev": true,
- "requires": {
- "brace-expansion": "^1.1.7"
- }
- },
"readable-stream": {
"version": "2.3.6",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"dev": true,
"requires": {
@@ -4955,9 +4958,9 @@
"dev": true
},
"repeat-element": {
- "version": "1.1.2",
- "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz",
- "integrity": "sha1-7wiaF40Ug7quTZPrmLT55OEdmQo=",
+ "version": "1.1.3",
+ "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz",
+ "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==",
"dev": true
},
"repeat-string": {
@@ -5030,9 +5033,9 @@
"dev": true
},
"resolve": {
- "version": "1.7.1",
- "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.7.1.tgz",
- "integrity": "sha512-c7rwLofp8g1U+h1KNyHL/jicrKg1Ek4q+Lr33AL65uZTinUZHe30D5HlyN5V9NW0JX1D5dXQ4jqW5l7Sy/kGfw==",
+ "version": "1.8.1",
+ "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz",
+ "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==",
"dev": true,
"requires": {
"path-parse": "^1.0.5"
@@ -5162,7 +5165,7 @@
},
"safe-regex": {
"version": "1.1.0",
- "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
+ "resolved": "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz",
"integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=",
"dev": true,
"requires": {
@@ -5251,12 +5254,6 @@
"integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=",
"dev": true
},
- "set-immediate-shim": {
- "version": "1.0.1",
- "resolved": "https://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz",
- "integrity": "sha1-SysbJ+uAip+NzEgaWOXlb1mfP2E=",
- "dev": true
- },
"set-value": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz",
@@ -5432,7 +5429,7 @@
"dependencies": {
"source-map": {
"version": "0.1.43",
- "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
+ "resolved": "http://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz",
"integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=",
"dev": true,
"requires": {
@@ -5442,12 +5439,12 @@
}
},
"source-map-resolve": {
- "version": "0.5.1",
- "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.1.tgz",
- "integrity": "sha512-0KW2wvzfxm8NCTb30z0LMNyPqWCdDGE2viwzUaucqJdkTRXtZiSY3I+2A6nVAjmdOy0I4gU8DwnVVGsk9jvP2A==",
+ "version": "0.5.2",
+ "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz",
+ "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==",
"dev": true,
"requires": {
- "atob": "^2.0.0",
+ "atob": "^2.1.1",
"decode-uri-component": "^0.2.0",
"resolve-url": "^0.2.1",
"source-map-url": "^0.4.0",
@@ -5692,7 +5689,7 @@
},
"readable-stream": {
"version": "2.3.6",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz",
"integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==",
"dev": true,
"requires": {
@@ -5776,7 +5773,7 @@
"dependencies": {
"graceful-fs": {
"version": "2.0.3",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz",
+ "resolved": "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz",
"integrity": "sha1-fNLNsiiko/Nule+mzBQt59GhNtA=",
"dev": true
}
@@ -6054,9 +6051,9 @@
}
},
"upath": {
- "version": "1.0.5",
- "resolved": "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz",
- "integrity": "sha512-qbKn90aDQ0YEwvXoLqj0oiuUYroLX2lVHZ+b+xwjozFasAOC4GneDq5+OaIG5Zj+jFmbz/uO+f7a9qxjktJQww==",
+ "version": "1.1.0",
+ "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.0.tgz",
+ "integrity": "sha512-bzpH/oBhoS/QI/YtbkqCg6VEiPYjSZtrHQM6/QnJS6OL9pKUFLqb3aFh4Scvwm45+7iAgiMkLhSbaZxUqmrprw==",
"dev": true
},
"urix": {
@@ -6066,13 +6063,10 @@
"dev": true
},
"use": {
- "version": "3.1.0",
- "resolved": "https://registry.npmjs.org/use/-/use-3.1.0.tgz",
- "integrity": "sha512-6UJEQM/L+mzC3ZJNM56Q4DFGLX/evKGRg15UJHGB9X5j5Z3AFbgZvjUh2yq/UJUY4U5dh7Fal++XbNg1uzpRAw==",
- "dev": true,
- "requires": {
- "kind-of": "^6.0.2"
- }
+ "version": "3.1.1",
+ "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz",
+ "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==",
+ "dev": true
},
"user-home": {
"version": "1.1.1",
@@ -6088,7 +6082,7 @@
},
"uuid": {
"version": "1.4.2",
- "resolved": "https://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz",
+ "resolved": "http://registry.npmjs.org/uuid/-/uuid-1.4.2.tgz",
"integrity": "sha1-RTAZ9oaWam34PNxSROfJkOzDMvw=",
"dev": true
},
@@ -6156,9 +6150,9 @@
},
"dependencies": {
"graceful-fs": {
- "version": "4.1.11",
- "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.11.tgz",
- "integrity": "sha1-Dovf5NHduIVNZOBOp8AOKgJuVlg=",
+ "version": "4.1.15",
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
+ "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
"dev": true
},
"strip-bom": {
@@ -6207,7 +6201,7 @@
},
"readable-stream": {
"version": "1.0.34",
- "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
+ "resolved": "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz",
"integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=",
"dev": true,
"requires": {
@@ -6219,7 +6213,7 @@
},
"through2": {
"version": "0.6.5",
- "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
+ "resolved": "http://registry.npmjs.org/through2/-/through2-0.6.5.tgz",
"integrity": "sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg=",
"dev": true,
"requires": {
diff --git a/sites/all/themes/custom/edlptheme/assets/dist/scripts/main.min.js b/sites/all/themes/custom/edlptheme/assets/dist/scripts/main.min.js
index e1c46c292..43578d998 100644
--- a/sites/all/themes/custom/edlptheme/assets/dist/scripts/main.min.js
+++ b/sites/all/themes/custom/edlptheme/assets/dist/scripts/main.min.js
@@ -1,6 +1,6 @@
(function($,Drupal,drupalSettings){EdlpTheme=function(){var _ajax_settings=drupalSettings.edlp_ajax;var _$body=$('body');var _corpus_ready=false;var _$corpus_canvas;var _$row=$('main[role="main"]>.layout-content>.row');var _$ajaxLinks;var _audioPlayer;var _randomPlayer;var _compoPlayer;var _ajax_timing={start:0,end:0};var _corpus_promise;var _is_mobile=edlp_mobile.device_is_mobile;function init(){void 0;if(!_is_mobile){initEvents();_audioPlayer=new AudioPlayer();_compoPlayer=new CompoPlayer();checkLayout();initAjaxLinks();initHistory();initAudioLinksHover();}else{if(drupalSettings.path.isFront){initHomeMobile();}
-_$body.attr('booted','booted');}};function initHomeMobile(){$('.field--name-field-notice, .index','.entrees .taxonomy-term.vocabulary-entrees').addClass('closed');$('.field--name-field-notice>.field__label','.entrees .taxonomy-term.vocabulary-entrees').on('click',onClickHomeMobileNotice);$('.index>.field__label','.entrees .taxonomy-term.vocabulary-entrees').on('click',onClickHomeMobileIndex);};function onClickHomeMobileNotice(e){toggleEntreeOpening($(this).parent(),'notice');};function onClickHomeMobileIndex(e){toggleEntreeOpening($(this).parent(),'index');};function toggleEntreeOpening($e,part){$e.toggleClass('closed').parents('.taxonomy-term.vocabulary-entrees.home_mobile').toggleClass(part+'-opened');}
+_$body.attr('booted','booted');}};function initHomeMobile(){$('.field--name-field-notice, .index','.entrees .taxonomy-term.vocabulary-entrees').addClass('closed');$('[data-drupal-link-system-path=""]','#block-mainnavigation').removeClass('is-active').attr('href','#collection');$('h2#block-mainnavigation-menu, a','#block-mainnavigation').on('click',onclickHomeMobileMenu);$('.field--name-field-notice>.field__label','.entrees .taxonomy-term.vocabulary-entrees').on('click',onClickHomeMobileNotice);$('.index>.field__label','.entrees .taxonomy-term.vocabulary-entrees').on('click',onClickHomeMobileIndex);};function onclickHomeMobileMenu(e){$('#block-mainnavigation').toggleClass('visible');};function onClickHomeMobileNotice(e){toggleEntreeOpening($(this).parent(),'notice');};function onClickHomeMobileIndex(e){toggleEntreeOpening($(this).parent(),'index');};function toggleEntreeOpening($e,part){$e.toggleClass('closed').parents('.taxonomy-term.vocabulary-entrees.home_mobile').toggleClass(part+'-opened');}
function initEvents(){var $corpus_df=$.Deferred();_corpus_promise=$corpus_df.promise();_$body.on('corpus-map-ready',function(e){onCorpusMapReady(e);$corpus_df.resolve();}).on('on-studio-chutier-updated',initAjaxLinks).on('studio-initialized',function(e){_compoPlayer.newCompo();}).on('studio-not-active',function(e){_compoPlayer.deactivate();}).on('on-studio-compo-updated',function(e){initAjaxLinks();_compoPlayer.refresh();}).on('on-studio-compo-opened',function(e){initAjaxLinks();_compoPlayer.newCompo();}).on('search-results-loaded',function(e){initAjaxLinks();initAudioLinksHover();checkVisibleCorpusMapSpace();}).on('open_entree',function(e){void 0;closeAllModals();checkLayout();_$body.removeClass();if(typeof e.url!='undefined'){var state=getSysPathState(e.sys_path);history.pushState(state,null,e.url);if(typeof _paq!=='undefined'){_paq.push(['setCustomUrl',e.url]);_paq.push(['setDocumentTitle',e.title]);_paq.push(['trackPageView']);}}}).on('close_entree',function(e){backToFrontPage();checkLayout();});window.addEventListener('resize',checkLayout,false);}
function checkLayout(){var $audioplayer=$("#audio-player");if($audioplayer.length){var navpos=$('#block-mainnavigation').position();if(typeof navpos!='undefined'){$audioplayer.css({'width':navpos.left+'px'});}}
checkGridBlockHeight();checkGridBlockVisible();};function initScrollbars(){};function getSysPathState(sys_path,view_mode){var state={'sys_path':sys_path,'ajax_path':sys_path};var node_match=state.ajax_path.match(/^\/?(node\/(\d+))$/i);void 0;var term_match=state.ajax_path.match(/^\/?(taxonomy\/term\/(\d+))$/i);void 0;if(node_match){state.ajax_path=_ajax_settings.entityjson_path+'/'+node_match[1];state.node_nid=node_match[2];if(view_mode){state.ajax_path+='/'+view_mode;state.view_mode=view_mode;}}else if(term_match){state.ajax_path=_ajax_settings.entityjson_path+'/'+term_match[1];state.ajax_path=state.ajax_path.replace(/taxonomy\/term/,'taxonomy_term');state.entree_tid=term_match[2];if(view_mode){state.ajax_path+='/'+view_mode;state.view_mode=view_mode;}else{state.ajax_path=null;}}else{state.ajax_path+='/ajax'}
diff --git a/sites/all/themes/custom/edlptheme/assets/dist/styles/app.min.css b/sites/all/themes/custom/edlptheme/assets/dist/styles/app.min.css
index 24e8b57e5..6cb82907a 100644
--- a/sites/all/themes/custom/edlptheme/assets/dist/styles/app.min.css
+++ b/sites/all/themes/custom/edlptheme/assets/dist/styles/app.min.css
@@ -1 +1 @@
-.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-7,.col-8,.col-9{padding-left:0;margin-left:0}#block-mainnavigation ul li a,.block-language ul li a,a{color:inherit;text-decoration:none}body{background:#fff}a,a:active,a:focus{outline:0}a:focus{-moz-outline-style:none}.col-1,.col-1-offset-1,.col-1-offset-10,.col-1-offset-11,.col-1-offset-2,.col-1-offset-3,.col-1-offset-4,.col-1-offset-5,.col-1-offset-6,.col-1-offset-7,.col-1-offset-8,.col-1-offset-9,.col-10,.col-10-offset-1,.col-10-offset-2,.col-11,.col-11-offset-1,.col-12,.col-2,.col-2-offset-1,.col-2-offset-10,.col-2-offset-2,.col-2-offset-3,.col-2-offset-4,.col-2-offset-5,.col-2-offset-6,.col-2-offset-7,.col-2-offset-8,.col-2-offset-9,.col-3,.col-3-offset-1,.col-3-offset-2,.col-3-offset-3,.col-3-offset-4,.col-3-offset-5,.col-3-offset-6,.col-3-offset-7,.col-3-offset-8,.col-3-offset-9,.col-4,.col-4-offset-1,.col-4-offset-2,.col-4-offset-3,.col-4-offset-4,.col-4-offset-5,.col-4-offset-6,.col-4-offset-7,.col-4-offset-8,.col-5,.col-5-offset-1,.col-5-offset-2,.col-5-offset-3,.col-5-offset-4,.col-5-offset-5,.col-5-offset-6,.col-5-offset-7,.col-6,.col-6-offset-1,.col-6-offset-2,.col-6-offset-3,.col-6-offset-4,.col-6-offset-5,.col-6-offset-6,.col-7,.col-7-offset-1,.col-7-offset-2,.col-7-offset-3,.col-7-offset-4,.col-7-offset-5,.col-8,.col-8-offset-1,.col-8-offset-2,.col-8-offset-3,.col-8-offset-4,.col-9,.col-9-offset-1,.col-9-offset-2,.col-9-offset-3,.large-col-1,.large-col-10,.large-col-11,.large-col-12,.large-col-2,.large-col-3,.large-col-4,.large-col-5,.large-col-6,.large-col-7,.large-col-8,.large-col-9,.med-col-1,.med-col-10,.med-col-11,.med-col-12,.med-col-2,.med-col-3,.med-col-4,.med-col-5,.med-col-6,.med-col-7,.med-col-8,.med-col-9,.small-col-1,.small-col-10,.small-col-11,.small-col-12,.small-col-2,.small-col-3,.small-col-4,.small-col-5,.small-col-6,.small-col-7,.small-col-8,.small-col-9{width:100%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.row{position:relative}.row>*{font-size:16px}.col-1{padding-right:1em;width:8.33333%}.col-1:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.small-col-1:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.med-col-1:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.large-col-1:last-child{padding-right:0}}.col-2{padding-right:1em;width:16.66667%}.col-2:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.small-col-2:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.med-col-2:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.large-col-2:last-child{padding-right:0}}.col-3{padding-right:1em;width:25%}.col-3:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.small-col-3:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.med-col-3:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.large-col-3:last-child{padding-right:0}}.col-4{padding-right:1em;width:33.33333%}.col-4:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.small-col-4:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.med-col-4:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.large-col-4:last-child{padding-right:0}}.col-5{padding-right:1em;width:41.66667%}.col-5:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.small-col-5:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.med-col-5:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.large-col-5:last-child{padding-right:0}}.col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.col-6:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.small-col-6:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.med-col-6:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.large-col-6:last-child{padding-right:0}}.col-7{padding-right:1em;width:58.33333%}.col-7:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.small-col-7:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.med-col-7:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.large-col-7:last-child{padding-right:0}}.col-8{padding-right:1em;width:66.66667%}.col-8:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.small-col-8:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.med-col-8:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.large-col-8:last-child{padding-right:0}}.col-9{padding-right:1em;width:75%}.col-9:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.small-col-9:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.med-col-9:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.large-col-9:last-child{padding-right:0}}.col-10{padding-right:1em;width:83.33333%}.col-10:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.small-col-10:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.med-col-10:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.large-col-10:last-child{padding-right:0}}.col-11{padding-right:1em;width:91.66667%}.col-11:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.small-col-11:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.med-col-11:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.large-col-11:last-child,.large-col-12,.large-col-12:last-child{padding-right:0}.large-col-12{padding-left:0;margin-left:0;width:100%}}.col-12,.col-12:last-child{padding-right:0}.col-12{width:100%}@media only screen and (max-width:768px){.small-col-12,.small-col-12:last-child{padding-right:0}.small-col-12{padding-left:0;margin-left:0;width:100%}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-12,.med-col-12:last-child{padding-right:0}.med-col-12{padding-left:0;margin-left:0;width:100%}}.col-1-offset-1{padding-left:1em;padding-right:1em;margin-left:8.33333%;width:8.33333%}.col-1-offset-1:last-child{padding-right:0}.col-1-offset-2{padding-left:2em;padding-right:1em;margin-left:16.66667%;width:8.33333%}.col-1-offset-2:last-child{padding-right:0}.col-1-offset-3{padding-left:3em;padding-right:1em;margin-left:25%;width:8.33333%}.col-1-offset-3:last-child{padding-right:0}.col-1-offset-4{padding-left:4em;padding-right:1em;margin-left:33.33333%;width:8.33333%}.col-1-offset-4:last-child{padding-right:0}.col-1-offset-5{padding-left:5em;padding-right:1em;margin-left:41.66667%;width:8.33333%}.col-1-offset-5:last-child{padding-right:0}.col-1-offset-6{padding-left:6em;padding-right:1em;margin-left:50%;width:8.33333%}.col-1-offset-6:last-child{padding-right:0}.col-1-offset-7{padding-left:7em;padding-right:1em;margin-left:58.33333%;width:8.33333%}.col-1-offset-7:last-child{padding-right:0}.col-1-offset-8{padding-left:8em;padding-right:1em;margin-left:66.66667%;width:8.33333%}.col-1-offset-8:last-child{padding-right:0}.col-1-offset-9{padding-left:9em;padding-right:1em;margin-left:75%;width:8.33333%}.col-1-offset-9:last-child{padding-right:0}.col-1-offset-10{padding-left:10em;padding-right:1em;margin-left:83.33333%;width:8.33333%}.col-1-offset-10:last-child{padding-right:0}.col-1-offset-11{padding-left:11em;padding-right:1em;margin-left:91.66667%;width:8.33333%}.col-1-offset-11:last-child{padding-right:0}.col-2-offset-1{padding-left:1em;padding-right:1em;margin-left:16.66667%;width:16.66667%}.col-2-offset-1:last-child{padding-right:0}.col-2-offset-2{padding-left:2em;padding-right:1em;margin-left:33.33333%;width:16.66667%}.col-2-offset-2:last-child{padding-right:0}.col-2-offset-3{padding-left:3em;padding-right:1em;margin-left:50%;width:16.66667%}.col-2-offset-3:last-child{padding-right:0}.col-2-offset-4{padding-left:4em;padding-right:1em;margin-left:66.66667%;width:16.66667%}.col-2-offset-4:last-child{padding-right:0}.col-2-offset-5{padding-left:5em;padding-right:1em;margin-left:83.33333%;width:16.66667%}.col-2-offset-5:last-child{padding-right:0}.col-2-offset-6{padding-left:6em;padding-right:1em;margin-left:100%;width:16.66667%}.col-2-offset-6:last-child{padding-right:0}.col-2-offset-7{padding-left:7em;padding-right:1em;margin-left:116.66667%;width:16.66667%}.col-2-offset-7:last-child{padding-right:0}.col-2-offset-8{padding-left:8em;padding-right:1em;margin-left:133.33333%;width:16.66667%}.col-2-offset-8:last-child{padding-right:0}.col-2-offset-9{padding-left:9em;padding-right:1em;margin-left:150%;width:16.66667%}.col-2-offset-9:last-child{padding-right:0}.col-2-offset-10{padding-left:10em;padding-right:1em;margin-left:166.66667%;width:16.66667%}.col-2-offset-10:last-child{padding-right:0}.col-3-offset-1{padding-left:1em;padding-right:1em;margin-left:25%;width:25%}.col-3-offset-1:last-child{padding-right:0}.col-3-offset-2{padding-left:2em;padding-right:1em;margin-left:50%;width:25%}.col-3-offset-2:last-child{padding-right:0}.col-3-offset-3{padding-left:3em;padding-right:1em;margin-left:75%;width:25%}.col-3-offset-3:last-child{padding-right:0}.col-3-offset-4{padding-left:4em;padding-right:1em;margin-left:100%;width:25%}.col-3-offset-4:last-child{padding-right:0}.col-3-offset-5{padding-left:5em;padding-right:1em;margin-left:125%;width:25%}.col-3-offset-5:last-child{padding-right:0}.col-3-offset-6{padding-left:6em;padding-right:1em;margin-left:150%;width:25%}.col-3-offset-6:last-child{padding-right:0}.col-3-offset-7{padding-left:7em;padding-right:1em;margin-left:175%;width:25%}.col-3-offset-7:last-child{padding-right:0}.col-3-offset-8{padding-left:8em;padding-right:1em;margin-left:200%;width:25%}.col-3-offset-8:last-child{padding-right:0}.col-3-offset-9{padding-left:9em;padding-right:1em;margin-left:225%;width:25%}.col-3-offset-9:last-child{padding-right:0}.col-4-offset-1{padding-left:1em;padding-right:1em;margin-left:33.33333%;width:33.33333%}.col-4-offset-1:last-child{padding-right:0}.col-4-offset-2{padding-left:2em;padding-right:1em;margin-left:66.66667%;width:33.33333%}.col-4-offset-2:last-child{padding-right:0}.col-4-offset-3{padding-left:3em;padding-right:1em;margin-left:100%;width:33.33333%}.col-4-offset-3:last-child{padding-right:0}.col-4-offset-4{padding-left:4em;padding-right:1em;margin-left:133.33333%;width:33.33333%}.col-4-offset-4:last-child{padding-right:0}.col-4-offset-5{padding-left:5em;padding-right:1em;margin-left:166.66667%;width:33.33333%}.col-4-offset-5:last-child{padding-right:0}.col-4-offset-6{padding-left:6em;padding-right:1em;margin-left:200%;width:33.33333%}.col-4-offset-6:last-child{padding-right:0}.col-4-offset-7{padding-left:7em;padding-right:1em;margin-left:233.33333%;width:33.33333%}.col-4-offset-7:last-child{padding-right:0}.col-4-offset-8{padding-left:8em;padding-right:1em;margin-left:266.66667%;width:33.33333%}.col-4-offset-8:last-child{padding-right:0}.col-5-offset-1{padding-left:1em;padding-right:1em;margin-left:41.66667%;width:41.66667%}.col-5-offset-1:last-child{padding-right:0}.col-5-offset-2{padding-left:2em;padding-right:1em;margin-left:83.33333%;width:41.66667%}.col-5-offset-2:last-child{padding-right:0}.col-5-offset-3{padding-left:3em;padding-right:1em;margin-left:125%;width:41.66667%}.col-5-offset-3:last-child{padding-right:0}.col-5-offset-4{padding-left:4em;padding-right:1em;margin-left:166.66667%;width:41.66667%}.col-5-offset-4:last-child{padding-right:0}.col-5-offset-5{padding-left:5em;padding-right:1em;margin-left:208.33333%;width:41.66667%}.col-5-offset-5:last-child{padding-right:0}.col-5-offset-6{padding-left:6em;padding-right:1em;margin-left:250%;width:41.66667%}.col-5-offset-6:last-child{padding-right:0}.col-5-offset-7{padding-left:7em;padding-right:1em;margin-left:291.66667%;width:41.66667%}.col-5-offset-7:last-child{padding-right:0}.col-6-offset-1{padding-left:1em;padding-right:1em;margin-left:50%;width:50%}.col-6-offset-1:last-child{padding-right:0}.col-6-offset-2{padding-left:2em;padding-right:1em;margin-left:100%;width:50%}.col-6-offset-2:last-child{padding-right:0}.col-6-offset-3{padding-left:3em;padding-right:1em;margin-left:150%;width:50%}.col-6-offset-3:last-child{padding-right:0}.col-6-offset-4{padding-left:4em;padding-right:1em;margin-left:200%;width:50%}.col-6-offset-4:last-child{padding-right:0}.col-6-offset-5{padding-left:5em;padding-right:1em;margin-left:250%;width:50%}.col-6-offset-5:last-child{padding-right:0}.col-6-offset-6{padding-left:6em;padding-right:1em;margin-left:300%;width:50%}.col-6-offset-6:last-child{padding-right:0}.col-7-offset-1{padding-left:1em;padding-right:1em;margin-left:58.33333%;width:58.33333%}.col-7-offset-1:last-child{padding-right:0}.col-7-offset-2{padding-left:2em;padding-right:1em;margin-left:116.66667%;width:58.33333%}.col-7-offset-2:last-child{padding-right:0}.col-7-offset-3{padding-left:3em;padding-right:1em;margin-left:175%;width:58.33333%}.col-7-offset-3:last-child{padding-right:0}.col-7-offset-4{padding-left:4em;padding-right:1em;margin-left:233.33333%;width:58.33333%}.col-7-offset-4:last-child{padding-right:0}.col-7-offset-5{padding-left:5em;padding-right:1em;margin-left:291.66667%;width:58.33333%}.col-7-offset-5:last-child{padding-right:0}.col-8-offset-1{padding-left:1em;padding-right:1em;margin-left:66.66667%;width:66.66667%}.col-8-offset-1:last-child{padding-right:0}.col-8-offset-2{padding-left:2em;padding-right:1em;margin-left:133.33333%;width:66.66667%}.col-8-offset-2:last-child{padding-right:0}.col-8-offset-3{padding-left:3em;padding-right:1em;margin-left:200%;width:66.66667%}.col-8-offset-3:last-child{padding-right:0}.col-8-offset-4{padding-left:4em;padding-right:1em;margin-left:266.66667%;width:66.66667%}.col-8-offset-4:last-child{padding-right:0}.col-9-offset-1{padding-left:1em;padding-right:1em;margin-left:75%;width:75%}.col-9-offset-1:last-child{padding-right:0}.col-9-offset-2{padding-left:2em;padding-right:1em;margin-left:150%;width:75%}.col-9-offset-2:last-child{padding-right:0}.col-9-offset-3{padding-left:3em;padding-right:1em;margin-left:225%;width:75%}.col-9-offset-3:last-child{padding-right:0}.col-10-offset-1{padding-left:1em;padding-right:1em;margin-left:83.33333%;width:83.33333%}.col-10-offset-1:last-child{padding-right:0}.col-10-offset-2{padding-left:2em;padding-right:1em;margin-left:166.66667%;width:83.33333%}.col-10-offset-2:last-child{padding-right:0}.col-11-offset-1{padding-left:1em;padding-right:1em;margin-left:91.66667%;width:91.66667%}.col-11-offset-1:last-child{padding-right:0}.col.float-right{float:right;padding-right:0;padding-left:1em}body,html{position:relative;width:100%;height:100%;font-family:Georgia,serif;font-style:normal;margin:0;padding:0}body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs{padding-top:24px!important}header[role=banner]{z-index:5;position:relative;padding:0 1em}header[role=banner]>.wrapper{position:relative;padding:.5em 0;height:70px}header[role=banner]>.wrapper>.region{height:100%;position:relative}html.is-mobile header[role=banner]{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;width:100%;background-color:#fff}html.is-mobile header[role=banner]>.wrapper{height:50px}aside.messages{border:none;z-index:99;position:absolute;left:5%;top:100px;width:80%;max-height:600px;background-color:rgba(255,255,255,.8);padding:0;overflow-y:auto}html:not(.is-mobile) main[role=main]{z-index:11;position:absolute;left:0;top:0;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:7em 2em 9em;overflow:hidden;pointer-events:none;height:100%}html:not(.is-mobile) main[role=main] .layout-content{width:100%;height:100%;overflow:hidden}html:not(.is-mobile) main[role=main] .layout-content .row>:not(.col):not(.grid){pointer-events:auto}html.is-mobile main[role=main]{padding:80px 1em 40px}body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs main[role=main]{padding-top:8em}footer[role=contentinfo]{z-index:12;position:fixed;bottom:0;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;padding:.5em 1em}.os-scroll{height:100%}header[role=banner]{pointer-events:all}#block-edlptheme-branding{display:inline-block;opacity:1;-webkit-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out}#corpus-map,.audio-player-visible #block-edlptheme-branding,main[role=main] .row{opacity:0}#block-edlptheme-branding h1{margin:0;display:inline-block}#block-edlptheme-branding h1 a.site-name{display:block;width:260px;height:57.2px;margin-top:.15em;background-image:url(../img/logo.svg);background-repeat:no-repeat;background-size:contain;white-space:nowrap;text-indent:500px;overflow:hidden}html.is-mobile #block-edlptheme-branding h1 a.site-name{width:170px;height:37.4px}#block-mainnavigation{float:right;margin-top:25px;z-index:21;position:relative}#block-mainnavigation ul{margin:0;padding:0;white-space:nowrap}#block-mainnavigation ul li{margin:0;padding:0;display:inline-block}#block-mainnavigation ul li a{font-size:.756em;text-transform:uppercase;margin-left:1em;padding:3px;background-color:#fff;border-radius:3px}#block-mainnavigation ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}#block-mainnavigation ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}#block-mainnavigation ul li a.is-active-trail:before,#block-mainnavigation ul li a.is-active:before,#block-mainnavigation ul li a:hover:before{background-color:red}@media only screen and (max-width:1270px){#block-mainnavigation{margin-top:15px}#block-mainnavigation ul li{display:block}#block-mainnavigation ul li a{font-size:.756em;font-weight:400;line-height:1.4}#block-mainnavigation ul li:first-of-type{display:none}}html.is-mobile #block-mainnavigation{margin-top:4px}html.is-mobile #block-mainnavigation li a{font-size:.68em;padding:0;margin:0}.block-language{float:right;margin-top:24px;margin-left:2em}.block-language ul{margin:0;padding:0}.block-language ul li{display:inline-block;vertical-align:middle;list-style:none}.block-language ul li a{font-size:.69em;text-transform:capitalize;margin-left:.8em;padding:3px;background-color:#fff;border-radius:3px}.block-language ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}.block-language ul li.is-active a:before,.block-language ul li:hover a:before{border-color:red;background-color:red}@media only screen and (max-width:1270px){.block-language{margin-top:15px;margin-left:.5em;border-left:1px solid red}.block-language ul li{display:block}.block-language ul li a{font-size:.756em;font-weight:400;line-height:1.4}}html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad .field__label,html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo .field__label,html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript h3.sur-title,main[role=main] article.node.node--type-enregistrement.node--view-mode-article h3.sur-title,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad:not(.visible),main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo:not(.visible),main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript h3.sur-title{display:none}body[corpus=map-ready] #corpus-map{-webkit-transition:opacity 2s ease-out;transition:opacity 2s ease-out;opacity:1}main[role=main] .row .col{opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out}body[booted=booted] main[role=main] .row{-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out;opacity:1}body.ajax-loading main[role=main] .row .col:not([theme=edlp_search_search_form]){opacity:.2}html.is-mobile main[role=main] *{pointer-events:all!important}main[role=main] .layout-content{pointer-events:none}main[role=main] .layout-content .row{pointer-events:none;height:100%;overflow:hidden}main[role=main] .layout-content .row .col{pointer-events:none;height:100%;position:relative}main[role=main] .layout-content .row .col>.wrapper{pointer-events:all;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-top:1px solid red;border-bottom:1px solid red;background-color:rgba(255,255,255,.95);padding:0 0 1em;max-height:100%;overflow-y:auto}main[role=main] .layout-content .row .col>.wrapper>*{padding:0 1.5em}main[role=main] h3.sur-title{font-size:.9em;font-weight:400;text-transform:uppercase;margin:.9em 0 0}main[role=main] article.node:not(.node--type-enregistrement)>h2,main[role=main] h2.title{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] article.node.node--type-enregistrement{margin:.5em 0}main[role=main] article.node.node--type-enregistrement>h2{font-size:.82em;font-weight:500;text-transform:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-article>h2,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript>h2{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:1em 0 .9em}main[role=main] article.node.node--type-enregistrement.node--view-mode-index{margin:0}main[role=main] article.node.node--type-enregistrement.node--view-mode-index h2.node-title{margin-top:.6em;line-height:1}main[role=main] article.node.node--type-enregistrement.node--view-mode-index p{margin:.1em 0}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad .field__label,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo .field__label{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav{padding:1em 0 0}main[role=main] div.articles,main[role=main] div.taxonomy-term{padding-top:1em!important}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label{font-size:.9em;font-weight:400;text-transform:uppercase;display:inline-block;cursor:pointer;margin-right:1em}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid red;margin-right:.5em}main[role=main] div.articles:not(.home_mobile)>h3,main[role=main] div.taxonomy-term:not(.home_mobile) .field__label,main[role=main] div.taxonomy-term:not(.home_mobile)>h2{display:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label.is-active:before,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label:hover:before{background-color:red}main[role=main] article.node--type-page.node--view-mode-default>h2.node-title{font-size:1.3em;font-weight:500;text-transform:uppercase;margin:.3em 0}main[role=main] article.node--type-page.node--view-mode-default .field--name-field-visuel{margin-bottom:1em}main[role=main] .agenda{text-align:center}main[role=main] .agenda .past-events{border-top:1px solid red;margin-top:1em}main[role=main] .agenda h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] .agenda article.node>h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin-bottom:0}main[role=main] .agenda .field--name-field-date time{font-size:.82em;font-weight:400;line-height:1.4}main[role=main] article.node--type-evenement .field--name-field-page-liee{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] article.node--type-evenement .field--name-field-date,main[role=main] article.node--type-evenement .field--name-title{font-size:.82em;font-weight:400;line-height:1.4}main[role=main] article.node--type-evenement.node--view-mode-aside .field--name-field-date{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] div.taxonomy-term.home_mobile h2{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.taxonomy-term .field--name-field-notice .field__label{margin-bottom:1em}main[role=main] div.taxonomy-term.home_mobile .field__label{margin:0;font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] div.taxonomy-term article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.9em 0 0}main[role=main] div.articles.home_mobile h2{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.articles article.node--type-enregistrement h2.node-title,main[role=main] div.lastdocs article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.9em 0 0}main[role=main] div.lastdocs-home>.wrapper{padding:0 1em!important}main[role=main] div.lastdocs-home h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.lastdocs-home article.node--type-enregistrement h2.node-title{margin:0 0 .3em}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='134']{background-color:var(--e-col-134)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='121']{background-color:var(--e-col-121)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='125']{background-color:var(--e-col-125)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='119']{background-color:var(--e-col-119)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='132']{background-color:var(--e-col-132)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='122']{background-color:var(--e-col-122)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='129']{background-color:var(--e-col-129)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='120']{background-color:var(--e-col-120)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='130']{background-color:var(--e-col-130)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='118']{background-color:var(--e-col-118)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='127']{background-color:var(--e-col-127)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='133']{background-color:var(--e-col-133)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='128']{background-color:var(--e-col-128)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='124']{background-color:var(--e-col-124)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='116']{background-color:var(--e-col-116)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='117']{background-color:var(--e-col-117)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='131']{background-color:var(--e-col-131)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='126']{background-color:var(--e-col-126)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='123']{background-color:var(--e-col-123)}main[role=main] div.lastdocs h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.lastdocs article.node--type-enregistrement .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='134']{background-color:var(--e-col-134)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='121']{background-color:var(--e-col-121)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='125']{background-color:var(--e-col-125)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='119']{background-color:var(--e-col-119)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='132']{background-color:var(--e-col-132)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='122']{background-color:var(--e-col-122)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='129']{background-color:var(--e-col-129)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='120']{background-color:var(--e-col-120)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='130']{background-color:var(--e-col-130)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='118']{background-color:var(--e-col-118)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='127']{background-color:var(--e-col-127)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='133']{background-color:var(--e-col-133)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='128']{background-color:var(--e-col-128)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='124']{background-color:var(--e-col-124)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='116']{background-color:var(--e-col-116)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='117']{background-color:var(--e-col-117)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='131']{background-color:var(--e-col-131)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='126']{background-color:var(--e-col-126)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='123']{background-color:var(--e-col-123)}main[role=main] div.lastdocs article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.3em 0 0}main[role=main] div.lastdocs article.node--type-enregistrement .description p{margin:0 0 .3em}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile{padding-bottom:1em;border-bottom:1px solid red}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice>.field__label,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index>.field__label{cursor:pointer}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice .item-list,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index .item-list{height:auto;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice.closed .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice.closed .item-list,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index.closed .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index.closed .item-list{overflow:hidden;height:1px;-webkit-transition:height 10ms ease-in-out;transition:height 10ms ease-in-out}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile.index-opened .field--name-description,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile.notice-opened .field--name-description{overflow:hidden;height:1px}main[role=main] h4.inter-titre{font-size:.82em;line-height:1.4;font-weight:400;font-style:italic;margin:1.5em 0 .5em}main[role=main] article.node p,main[role=main] div.taxonomy-term p{font-size:.82em;font-weight:400;line-height:1.4;margin:0 0 1em}main[role=main] .field.text-formatted a{display:inline-block;position:relative}main[role=main] .field.text-formatted a:after{content:'';position:absolute;width:100%;left:0;bottom:.2em;border-bottom:1px dotted #1A1A1A}main[role=main] .field.text-formatted a.audio-link:after{border-color:red}main[role=main] .productions-subtree a{font-size:.82em;font-weight:400;text-transform:uppercase}main[role=main] .productions-subtree a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;margin-right:.5em}main[role=main] .productions-subtree a.is-active:before,main[role=main] .productions-subtree a:hover:before{background-color:#000}main[role=main] .productions-subtree a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}main[role=main] .productions-parent{margin-top:1em;margin-bottom:.5em}main[role=main] .productions-parent a{font-size:.82em;font-weight:400;text-transform:uppercase}main[role=main] .productions-parent a:before{content:'\2039';font-size:1.7em;line-height:.95;margin-right:.1em;margin-left:-.4em;display:inline-block;vertical-align:bottom}main[role=main] img{max-width:100%;height:auto}main[role=main] li,main[role=main] ul,main[role=main] ul.inline li:first-child{margin:0;padding:0;list-style:none}main[role=main] span.close-col-btn{pointer-events:all;cursor:pointer;position:-webkit-sticky;position:sticky;top:.5em;padding:0!important;margin:.7em 0 0 .5em;display:block;width:10px;height:10px;float:left;background-image:url(../img/close.svg);background-repeat:no-repeat;background-position:center;background-size:contain}html.is-mobile main[role=main] .node--type-enregistrement.node--view-mode-full h2.node-title{font-size:.9em;font-weight:400;text-transform:uppercase}html.is-mobile main[role=main] .node--type-enregistrement.node--view-mode-full .audiofield label{display:none}#audio-player{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;padding-left:.7em;height:100%;min-width:700px;z-index:20;opacity:0;pointer-events:none;-webkit-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out;white-space:nowrap}#audio-player.visible{opacity:1;pointer-events:all}#audio-player>*{display:inline-block;vertical-align:middle;max-height:100%;white-space:normal;padding:3px;border-radius:3px;background-color:transparent}#audio-player .btns>*{display:inline-block;vertical-align:middle;width:20px;height:30px;background-position:center;background-size:contain}#audio-player .btns .play-pause{background-image:url(../img/audio-player-play.svg);padding:0 .3em;cursor:pointer}#audio-player .btns.is-playing .play-pause{background-image:url(../img/audio-player-pause.svg)}#audio-player .btns .next,#audio-player .btns .previous{opacity:.3;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;cursor:auto}#audio-player .btns .next.is-active,#audio-player .btns .previous.is-active{opacity:1;cursor:pointer}#audio-player .btns .previous{background-image:url(../img/audio-player-previous.svg)}#audio-player .btns .next{background-image:url(../img/audio-player-next.svg)}#audio-player .time-line-container{background:0 0}#audio-player .time-line-container .time-line{position:relative;width:70px;height:1px;background-color:#000;overflow:visible;-webkit-transform:rotateZ(-46deg);transform:rotateZ(-46deg)}#audio-player .time-line-container .time-line .loader{width:0;height:1px;background-color:red;border-top:2px solid #fff;border-bottom:2px solid #fff;position:absolute;top:-2px;left:0;cursor:pointer}#audio-player .time-line-container .time-line .cursor{height:10px;width:0;border-left:2px solid red;position:absolute;left:0;top:-5px;pointer-events:none}#audio-player .time>*{width:70px;text-align:right}#audio-player .time .current-time{font-size:1.4em;font-weight:600}#audio-player .time .duration{font-size:.75em;font-weight:400}#audio-player .favoris{height:100%}#audio-player .cartel{position:relative;width:calc(100% - 260px);margin-left:1em;opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out;white-space:nowrap}#audio-player .cartel.loading{opacity:0}#audio-player .cartel .actions,#audio-player .cartel .cartels{display:inline-block;vertical-align:top;white-space:normal;position:relative}#audio-player .cartel .actions{width:1.5em}#audio-player .cartel .cartels{width:calc(100% - 1.5em)}#audio-player .cartel .cartels .first-cartel{opacity:1;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#audio-player .cartel .cartels .first-cartel .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}#audio-player .cartel .cartels .first-cartel .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}#audio-player .cartel .cartels .first-cartel .entrees span[tid='134']{background-color:var(--e-col-134)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='121']{background-color:var(--e-col-121)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='125']{background-color:var(--e-col-125)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='119']{background-color:var(--e-col-119)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='132']{background-color:var(--e-col-132)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='122']{background-color:var(--e-col-122)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='129']{background-color:var(--e-col-129)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='120']{background-color:var(--e-col-120)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='130']{background-color:var(--e-col-130)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='118']{background-color:var(--e-col-118)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='127']{background-color:var(--e-col-127)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='133']{background-color:var(--e-col-133)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='128']{background-color:var(--e-col-128)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='124']{background-color:var(--e-col-124)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='116']{background-color:var(--e-col-116)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='117']{background-color:var(--e-col-117)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='131']{background-color:var(--e-col-131)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='126']{background-color:var(--e-col-126)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='123']{background-color:var(--e-col-123)}#audio-player .cartel .cartels .first-cartel h2.node-title{margin:.2em 0 0;font-size:.9em;font-weight:600}#audio-player .cartel .cartels .first-cartel p{margin:0;font-size:.756em}#audio-player .cartel .cartels .second-cartel{position:absolute;top:0;left:0;height:100%;min-width:100%;opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;white-space:nowrap}#audio-player .cartel .cartels .second-cartel>*{display:inline-block;vertical-align:top;white-space:normal}#audio-player .cartel .cartels .second-cartel .col-left a.ajax-link{display:block;font-size:.82em;font-weight:600}#audio-player .cartel .cartels .second-cartel .col-left .addtoany_list>a:first-child{padding-left:0;margin-left:-4px}#audio-player .cartel .cartels .second-cartel .col-right{border-left:1px solid #1A1A1A;margin-left:5px;padding-left:5px;max-width:calc(100% - 100px)}#audio-player .cartel .cartels .second-cartel .col-right h3{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:0}#audio-player .cartel .cartels .second-cartel .col-right div.item-list{max-width:100%}#audio-player .cartel .cartels .second-cartel .col-right ul{max-width:100%;padding:0;margin:0}#audio-player .cartel .cartels .second-cartel .col-right ul li{padding:0;margin:0;display:inline-block;list-style:none}#audio-player .cartel .cartels .second-cartel .col-right ul li:not(:last-of-type){margin-right:.4em}#audio-player .cartel .cartels .second-cartel .col-right ul li:not(:last-of-type):after{content:","}#audio-player .cartel .cartels .second-cartel .col-right ul li a{font-size:.82em;font-weight:400;line-height:1.4}#audio-player .cartel.second-visible .first-cartel,#audio-player .cartel:hover .first-cartel{opacity:0}#audio-player .cartel.second-visible .second-cartel,#audio-player .cartel:hover .second-cartel{opacity:1}.chutier-icon{z-index:1;display:block;position:relative;width:1em;height:1em;overflow:hidden;text-indent:50em;background-position:center;background-repeat:no-repeat;background-size:contain;background-image:url(../img/favori-off.svg);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.chutier-icon[action=remove]{background-image:url(../img/favori-on.svg)}.chutier-icon.ajax-loading{opacity:.2}.chutier-icon.not-logedin{overflow:visible}.chutier-icon .popup{display:none;position:absolute;top:0;left:0;width:300px;height:auto;min-height:100px}.chutier-icon .popup .inner{background-color:rgba(255,255,255,.9);border:1px solid red;text-indent:0;padding:.5em;margin:1.2em 0 0 1.2em}.chutier-icon .popup .inner p{font-size:.756em;margin:0}.chutier-icon .popup .inner p:not(:last-of-type){margin:0 0 .4em}.chutier-icon:hover .popup{display:block}#studio-ui,.row .col .studio-ui-wrapper{height:100%}#studio-ui .chutier_ui{height:50%;border-bottom:1px solid red;position:relative}#studio-ui .chutier_ui>h2,#studio-ui .composition_ui>h2{z-index:10;position:absolute;font-weight:500;text-transform:uppercase}#studio-ui .chutier_ui>h2{width:calc(100% - 20px);margin:0;padding:.5em 0;font-size:1em;background-color:#fff}#studio-ui .chutier_ui .documents{padding-top:35px;height:calc(100% - 35px);overflow-y:auto;overflow-x:hidden}#studio-ui .chutier_ui .documents li,#studio-ui .chutier_ui .documents ul{margin:0;padding:0;line-height:1.2}#studio-ui .chutier_ui .documents li{display:inline-block;vertical-align:top;width:49%;margin-bottom:.5em;white-space:nowrap}#studio-ui .chutier_ui .documents li>div{display:inline-block;padding-right:2em}#studio-ui .chutier_ui .documents li>div.ui-draggable{cursor:-webkit-grab;cursor:grab}#studio-ui .chutier_ui .documents li .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}#studio-ui .chutier_ui .documents li .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}#studio-ui .chutier_ui .documents li .entrees span[tid='134']{background-color:var(--e-col-134)}#studio-ui .chutier_ui .documents li .entrees span[tid='121']{background-color:var(--e-col-121)}#studio-ui .chutier_ui .documents li .entrees span[tid='125']{background-color:var(--e-col-125)}#studio-ui .chutier_ui .documents li .entrees span[tid='119']{background-color:var(--e-col-119)}#studio-ui .chutier_ui .documents li .entrees span[tid='132']{background-color:var(--e-col-132)}#studio-ui .chutier_ui .documents li .entrees span[tid='122']{background-color:var(--e-col-122)}#studio-ui .chutier_ui .documents li .entrees span[tid='129']{background-color:var(--e-col-129)}#studio-ui .chutier_ui .documents li .entrees span[tid='120']{background-color:var(--e-col-120)}#studio-ui .chutier_ui .documents li .entrees span[tid='130']{background-color:var(--e-col-130)}#studio-ui .chutier_ui .documents li .entrees span[tid='118']{background-color:var(--e-col-118)}#studio-ui .chutier_ui .documents li .entrees span[tid='127']{background-color:var(--e-col-127)}#studio-ui .chutier_ui .documents li .entrees span[tid='133']{background-color:var(--e-col-133)}#studio-ui .chutier_ui .documents li .entrees span[tid='128']{background-color:var(--e-col-128)}#studio-ui .chutier_ui .documents li .entrees span[tid='124']{background-color:var(--e-col-124)}#studio-ui .chutier_ui .documents li .entrees span[tid='116']{background-color:var(--e-col-116)}#studio-ui .chutier_ui .documents li .entrees span[tid='117']{background-color:var(--e-col-117)}#studio-ui .chutier_ui .documents li .entrees span[tid='131']{background-color:var(--e-col-131)}#studio-ui .chutier_ui .documents li .entrees span[tid='126']{background-color:var(--e-col-126)}#studio-ui .chutier_ui .documents li .entrees span[tid='123']{background-color:var(--e-col-123)}#studio-ui .chutier_ui .documents li a.audio-link{font-size:.756em;margin-right:.5em;white-space:normal}#studio-ui .chutier_ui .documents li .chutier-icon{display:inline-block;width:.7em;height:.7em;opacity:.8}#studio-ui .composition_ui{height:50%}#studio-ui .composition_ui>h2{width:calc(100% - 20px);margin:0;padding:.5em 0;font-size:1em;background-color:#fff}#studio-ui .composition_ui>.wrapper{padding-top:35px;height:calc(100% - 35px);overflow:hidden;white-space:nowrap}#studio-ui .composition_ui>.wrapper section.composer,#studio-ui .composition_ui>.wrapper section.compositions-list{display:inline-block;vertical-align:bottom;height:100%}#studio-ui .composition_ui>.wrapper .compositions-list{width:30%;height:100%;overflow-y:auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:.5em;border-right:1px solid #aaa}#studio-ui .composition_ui>.wrapper .compositions-list li{opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list li:hover a.delete-composition-link{opacity:1}#studio-ui .composition_ui>.wrapper .compositions-list li.ajax-loading{opacity:.4}#studio-ui .composition_ui>.wrapper .compositions-list a{font-size:.756em}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:calc(100% - 21px)}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link:before{content:"";width:7px;height:7px;border:1px solid #000;background-color:#fff;display:inline-block;vertical-align:middle;margin-right:5px}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link.is-active:before{background-color:#000}#studio-ui .composition_ui>.wrapper .compositions-list a.delete-composition-link{display:inline-block;vertical-align:middle;width:7px;height:7px;margin-left:5px;text-indent:300px;overflow:hidden;background-image:url(../img/delete.svg);background-repeat:no-repeat;background-size:contain;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link{display:inline-block;vertical-align:top;overflow:hidden;margin-top:.4em;height:1em;-webkit-transition:height .2s ease-in-out;transition:height .2s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link:before{content:"+";margin-right:5px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2,#studio-ui .field__item.ui-draggable-dragging article h2{margin:0;text-transform:none}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link.folded{height:0}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form{opacity:1;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form input[type=text]{font-size:.756em;padding:0 .5em;width:calc(100% - 50px);height:1.7em;border:none;border-top:1px dotted red;border-bottom:1px dotted red}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form button{background:0 0;border:none;font-size:1em;line-height:1;font-weight:700}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form.ajax-loading{opacity:.4}#studio-ui .composition_ui>.wrapper .composer{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:.5em;width:69%;opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .composer.ajax-loading{opacity:.3}#studio-ui .composition_ui>.wrapper .composer>*{-webkit-box-sizing:border-box;box-sizing:border-box}#studio-ui .composition_ui>.wrapper .composer>header{height:25px;padding-bottom:5px;font-size:.756em}#studio-ui .composition_ui>.wrapper .composer>.composition{position:relative;height:calc(100% - 60px);padding-bottom:1em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;width:100%;padding:0 .5em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:after,#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:before{content:"";width:calc(100% - 2px);position:absolute;bottom:0;left:0}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:before{border-top:1px solid #A1A1A1;height:14.5px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:after{border-left:1px solid #A1A1A1;border-right:1px solid #A1A1A1;height:29px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item{display:inline-block;position:relative;white-space:nowrap;pointer-events:none;width:25px;height:100%;opacity:1;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.ui-draggable-dragging{height:100px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.ready-to-remove{opacity:.3;cursor:crosshair}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item>*{pointer-events:all}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article{position:absolute;bottom:0;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2 a{white-space:nowrap!important;font-size:.756em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2 a:before{content:"";display:inline-block;vertical-align:middle;width:12px;height:12px;border:1px solid #fff;background-color:#fff}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item .handler{z-index:99;cursor:-webkit-grab;cursor:grab;position:absolute;bottom:0;left:1px;display:block;width:12px;height:12px;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);border:1px solid red;background-color:#fff}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.is-active .handler{background-color:red}#studio-ui .composition_ui>.wrapper .composer>.composition .remove-drop-zone{position:absolute;top:0;left:0;width:100%;height:45%;z-index:150}#studio-ui .composition_ui>.wrapper .composer>.actions{padding-top:5px;height:25px}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls>*{display:inline-block;vertical-align:middle;width:20px;height:30px;background-position:center;background-size:contain}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .play-pause{background-image:url(../img/audio-player-play.svg);padding:0 .3em;cursor:pointer}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls.is-playing .play-pause{background-image:url(../img/audio-player-pause.svg)}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next,#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous{opacity:.3;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;cursor:auto}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next.is-active,#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous.is-active{opacity:1;cursor:pointer}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous{background-image:url(../img/audio-player-previous.svg)}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next{background-image:url(../img/audio-player-next.svg)}#studio-ui .field__item.ui-draggable-dragging{display:inline-block;position:relative;white-space:nowrap;pointer-events:none;width:25px;height:100%;opacity:1;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}#studio-ui .field__item.ui-draggable-dragging.ui-draggable-dragging{height:100px}#studio-ui .field__item.ui-draggable-dragging.ready-to-remove{opacity:.3;cursor:crosshair}#studio-ui .field__item.ui-draggable-dragging>*{pointer-events:all}#studio-ui .field__item.ui-draggable-dragging article{position:absolute;bottom:0;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}#studio-ui .field__item.ui-draggable-dragging article h2 a{white-space:nowrap!important;font-size:.756em}#studio-ui .field__item.ui-draggable-dragging article h2 a:before{content:"";display:inline-block;vertical-align:middle;width:12px;height:12px;border:1px solid #fff;background-color:#fff}#studio-ui .field__item.ui-draggable-dragging .handler{z-index:99;cursor:-webkit-grab;cursor:grab;position:absolute;bottom:0;left:1px;display:block;width:12px;height:12px;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);border:1px solid red;background-color:#fff}#studio-ui .field__item.ui-draggable-dragging.is-active .handler{background-color:red}.col[theme=edlp_search_search_form],.col[theme=edlp_search_search_form]>.wrapper{position:relative;height:100%}#edlp-search-form{height:100%}#edlp-search-form .fieldgroup{border-bottom:1px solid red;margin-top:1em;margin-bottom:0}#edlp-search-form .fieldgroup legend{font-size:.9em;margin:0;font-weight:500}#edlp-search-form .fieldgroup .fieldset-wrapper{padding-bottom:1em}#edlp-search-form .fieldgroup .form-item{margin:0}#edlp-search-form input[type=text],#edlp-search-form input[type=search]{font-size:.8em;padding:.2em;margin:0;border:1px solid #aaa;border-radius:3px;width:90%}#edlp-search-form #edit-entries--wrapper legend{cursor:pointer;display:block;width:100%}#edlp-search-form #edit-entries--wrapper legend:after{content:'\2304';font-size:2em;font-weight:200;display:inline-block;line-height:0;letter-spacing:0;height:13px;overflow:hidden;float:right;margin-top:.5em 0 0 0}#edlp-search-form #edit-entries--wrapper #edit-entries{overflow:hidden;height:1px;margin:0;-webkit-transition:height .4s ease-in-out;transition:height .4s ease-in-out}#edlp-search-form #edit-entries--wrapper.opened legend:after{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg);-webkit-transform-origin:center;transform-origin:center;margin-top:0 0 .5em 0}#edlp-search-form #edit-entries--wrapper.opened #edit-entries{height:362px}#edlp-search-form #edit-entries .form-item input,#edlp-search-form #edit-entries .form-item label{display:inline-block;vertical-align:middle}#edlp-search-form #edit-entries .form-item label{font-size:.756em}#edlp-search-form #edit-entries .form-item input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:10px;height:10px;border:1px double #000;background-color:#fff}#edlp-search-form #edit-entries .form-item input[type=checkbox]:checked{background-color:#000}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='134']{border-color:var(--e-col-134)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='134']:checked{background-color:var(--e-col-134)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='121']{border-color:var(--e-col-121)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='121']:checked{background-color:var(--e-col-121)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='125']{border-color:var(--e-col-125)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='125']:checked{background-color:var(--e-col-125)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='119']{border-color:var(--e-col-119)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='119']:checked{background-color:var(--e-col-119)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='132']{border-color:var(--e-col-132)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='132']:checked{background-color:var(--e-col-132)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='122']{border-color:var(--e-col-122)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='122']:checked{background-color:var(--e-col-122)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='129']{border-color:var(--e-col-129)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='129']:checked{background-color:var(--e-col-129)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='120']{border-color:var(--e-col-120)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='120']:checked{background-color:var(--e-col-120)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='130']{border-color:var(--e-col-130)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='130']:checked{background-color:var(--e-col-130)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='118']{border-color:var(--e-col-118)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='118']:checked{background-color:var(--e-col-118)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='127']{border-color:var(--e-col-127)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='127']:checked{background-color:var(--e-col-127)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='133']{border-color:var(--e-col-133)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='133']:checked{background-color:var(--e-col-133)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='128']{border-color:var(--e-col-128)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='128']:checked{background-color:var(--e-col-128)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='124']{border-color:var(--e-col-124)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='124']:checked{background-color:var(--e-col-124)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='116']{border-color:var(--e-col-116)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='116']:checked{background-color:var(--e-col-116)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='117']{border-color:var(--e-col-117)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='117']:checked{background-color:var(--e-col-117)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='131']{border-color:var(--e-col-131)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='131']:checked{background-color:var(--e-col-131)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='126']{border-color:var(--e-col-126)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='126']:checked{background-color:var(--e-col-126)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='123']{border-color:var(--e-col-123)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='123']:checked{background-color:var(--e-col-123)}#edlp-search-form input[type=submit]{font-size:.756em;padding:.1em;margin:1em 0 0;float:right;opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#edlp-search-form.ajax-loading input[type=submit]{opacity:.2;pointer-events:none}.col[theme=edlp_search_results]{opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.col[theme=edlp_search_results].ajax-loading{opacity:.2}.col[theme=edlp_search_results] article.node:first-of-type{margin-top:1em!important}.col[theme=edlp_search_results] article.node .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}.col[theme=edlp_search_results] article.node .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}.col[theme=edlp_search_results] article.node .entrees span[tid='134']{background-color:var(--e-col-134)}.col[theme=edlp_search_results] article.node .entrees span[tid='121']{background-color:var(--e-col-121)}.col[theme=edlp_search_results] article.node .entrees span[tid='125']{background-color:var(--e-col-125)}.col[theme=edlp_search_results] article.node .entrees span[tid='119']{background-color:var(--e-col-119)}.col[theme=edlp_search_results] article.node .entrees span[tid='132']{background-color:var(--e-col-132)}.col[theme=edlp_search_results] article.node .entrees span[tid='122']{background-color:var(--e-col-122)}.col[theme=edlp_search_results] article.node .entrees span[tid='129']{background-color:var(--e-col-129)}.col[theme=edlp_search_results] article.node .entrees span[tid='120']{background-color:var(--e-col-120)}.col[theme=edlp_search_results] article.node .entrees span[tid='130']{background-color:var(--e-col-130)}.col[theme=edlp_search_results] article.node .entrees span[tid='118']{background-color:var(--e-col-118)}.col[theme=edlp_search_results] article.node .entrees span[tid='127']{background-color:var(--e-col-127)}.col[theme=edlp_search_results] article.node .entrees span[tid='133']{background-color:var(--e-col-133)}.col[theme=edlp_search_results] article.node .entrees span[tid='128']{background-color:var(--e-col-128)}.col[theme=edlp_search_results] article.node .entrees span[tid='124']{background-color:var(--e-col-124)}.col[theme=edlp_search_results] article.node .entrees span[tid='116']{background-color:var(--e-col-116)}.col[theme=edlp_search_results] article.node .entrees span[tid='117']{background-color:var(--e-col-117)}.col[theme=edlp_search_results] article.node .entrees span[tid='131']{background-color:var(--e-col-131)}.col[theme=edlp_search_results] article.node .entrees span[tid='126']{background-color:var(--e-col-126)}.col[theme=edlp_search_results] article.node .entrees span[tid='123']{background-color:var(--e-col-123)}.col[theme=edlp_search_results] article.node h2.node-title{margin:0 0 .3em}body.path-agenda main .col>.wrapper{height:100%}.agenda li,.agenda ul{margin:0;padding:0;list-style:none}body.path-frontpage .layout-content .row,body.path-productions .layout-content .row{white-space:normal;min-height:100%}body.path-frontpage .layout-content .row .grid,body.path-productions .layout-content .row .grid{position:relative;min-height:100%;max-height:100%}body.path-frontpage .layout-content .row .col,body.path-productions .layout-content .row .col{height:auto;opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out}body.path-frontpage .layout-content .row .col.offfield,body.path-productions .layout-content .row .col.offfield{opacity:0;-webkit-transition:opacity 0s ease-in-out;transition:opacity 0s ease-in-out}body.path-frontpage .layout-content .row .col.col-2:last-child,body.path-productions .layout-content .row .col.col-2:last-child{padding-left:0;padding-right:1em}body.path-frontpage .layout-content .row .col>.wrapper,body.path-productions .layout-content .row .col>.wrapper{margin-bottom:1em;padding:0}body.path-frontpage .layout-content .row .col>.wrapper>*,body.path-productions .layout-content .row .col>.wrapper>*{padding:0}body.path-frontpage .layout-content .row .col>.wrapper article.node .field--name-field-visuel a,body.path-productions .layout-content .row .col>.wrapper article.node .field--name-field-visuel a{display:block;width:100%;padding-bottom:56.25%}body.path-frontpage .layout-content .row .col>.wrapper article.node .field--name-field-visuel img,body.path-productions .layout-content .row .col>.wrapper article.node .field--name-field-visuel img{position:absolute;top:0;bottom:0;left:0;right:0}body.path-frontpage .layout-content .row .col>.wrapper article.node header,body.path-productions .layout-content .row .col>.wrapper article.node header{background-color:rgba(255,255,255,.95);-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:.5em 1em}body.path-frontpage .layout-content .row .col>.wrapper article.node header h2.node-title,body.path-productions .layout-content .row .col>.wrapper article.node header h2.node-title{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header{position:absolute;bottom:0;left:0}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header h2.node-title,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header h2.node-title{font-size:1.3em;font-weight:500;text-transform:uppercase}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns .field--name-field-visuel,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns .field--name-field-visuel{padding-bottom:35px}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns header,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns header{-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;bottom:0;left:0}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-text-1-column,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-text-1-column{padding:0 1em}footer{position:relative;pointer-events:none}footer>.wrapper{white-space:nowrap}footer>.wrapper>.region{display:inline-block;vertical-align:baseline;white-space:normal}footer>.wrapper>.region>*{display:inline-block;vertical-align:bottom}footer>.wrapper .region-footer-left{width:12%;text-align:left}footer>.wrapper .region-footer-center{width:73%;overflow:hidden;text-align:center}footer>.wrapper .region-footer-right{min-width:12%;text-align:right}@media only screen and (max-width:1270px){footer>.wrapper .region-footer-left{width:9%}footer>.wrapper .region-footer-center{width:80%;overflow:hidden;text-align:center}footer>.wrapper .region-footer-right{-webkit-box-sizing:content-box;box-sizing:content-box;min-width:5%}}footer #block-footer{display:inline-block;margin-bottom:1em}footer #block-footer ul{margin:0;padding:0}footer #block-footer ul li{pointer-events:all;display:inline-block;padding:0;white-space:nowrap}footer #block-footer ul li a{font-size:.756em;padding:3px;background-color:#fff;border-radius:3px}footer #block-footer ul li a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;margin-right:.5em}footer #block-footer ul li a.is-active:before,footer #block-footer ul li a:hover:before{background-color:#000}footer #block-footer ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@media only screen and (max-width:1270px){footer #block-footer{margin-top:15px}footer #block-footer ul li{display:block;margin-left:0!important;padding:0;line-height:.6}footer #block-footer ul li a{font-size:.756em;font-weight:400;line-height:1.4;padding:0}}footer nav#block-productions.block-menu ul{margin:0;padding:0}footer nav#block-productions.block-menu ul li{pointer-events:all;display:inline-block;position:relative;list-style:none;margin:0 1.5em 0 0;padding:0;height:200px}footer nav#block-productions.block-menu ul li a{position:absolute;bottom:0;-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);color:#000;text-decoration:none;text-transform:uppercase;font-size:.756em;white-space:nowrap}footer nav#block-productions.block-menu ul li:first-of-type{margin-left:1em}footer nav#block-productions.block-menu{position:relative;pointer-events:none;display:none}body.entity-type-node.bundle-page footer nav#block-productions.block-menu,body.path-productions footer nav#block-productions.block-menu{display:inline-block}footer nav#block-productions.block-menu ul{margin-left:-3em;white-space:nowrap}footer nav#block-productions.block-menu ul li a{padding:3px .4em 3px 3px;background-color:#fff;border-radius:3px;pointer-events:all;background-color:rgba(255,255,255,.6)}footer nav#block-productions.block-menu ul li a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid red;margin-right:.5em}footer nav#block-productions.block-menu ul li a.is-active-trail:before,footer nav#block-productions.block-menu ul li a.is-active:before,footer nav#block-productions.block-menu ul li a:hover:before{background-color:red}footer nav#block-productions.block-menu ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}footer .block-block-edlp-entrees{pointer-events:none;display:inline-block}body.entity-type-node.bundle-page footer .block-block-edlp-entrees,body.path-agenda footer .block-block-edlp-entrees,body.path-productions footer .block-block-edlp-entrees{display:none}footer .block-block-edlp-entrees div.item-list ul{margin:0;white-space:nowrap}footer .block-block-edlp-entrees div.item-list ul li{display:inline-block;position:relative;list-style:none;padding:0;margin:0;white-space:nowrap;pointer-events:none}footer .block-block-edlp-entrees div.item-list ul li a{position:absolute;bottom:0;-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);color:#000;text-decoration:none;text-transform:uppercase;font-size:.756em;white-space:nowrap}footer .block-block-edlp-entrees div.item-list ul li:last-of-type:not(.entree){margin-right:5em}footer .block-block-edlp-entrees div.item-list ul li span.oblique-wrapper{height:120px;display:inline-block;vertical-align:bottom;position:relative;width:1.5em}footer .block-block-edlp-entrees div.item-list ul li a.articles-link,footer .block-block-edlp-entrees div.item-list ul li a.term-link{pointer-events:all;background-color:rgba(255,255,255,.6);padding-right:.4em;color:#000;-webkit-transition:color .3s ease-in-out;transition:color .3s ease-in-out}footer .block-block-edlp-entrees div.item-list ul li a.articles-link:before,footer .block-block-edlp-entrees div.item-list ul li a.term-link:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;background-color:#000;margin-right:.5em;-webkit-transition:background-color .1s ease-in-out;transition:background-color .1s ease-in-out}footer .block-block-edlp-entrees div.item-list ul li a.articles-link.articles-link,footer .block-block-edlp-entrees div.item-list ul li a.term-link.articles-link{margin-left:4em;text-transform:capitalize}footer .block-block-edlp-entrees div.item-list ul li .entree-content{display:inline-block;width:0;overflow:hidden;opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transition-property:width,opacity;transition-property:width,opacity}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper:first-of-type{margin-left:.5em}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a{text-transform:none;pointer-events:auto}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a:before{content:"";display:inline-block;width:5px;height:5px;border:1px solid #000;margin-right:.5em}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}footer .block-block-edlp-entrees div.item-list ul li .entree-content .term-description{display:inline-block;margin-left:1.5em;text-align:left;width:250px;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:normal;background-color:rgba(255,255,255,.95);padding:.5em .5em 0}footer .block-block-edlp-entrees div.item-list ul li .entree-content .term-description p{font-size:.65em;margin:0}footer .block-block-edlp-entrees div.item-list ul li[tid='134'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='134'] a.term-link:before{border-color:var(--e-col-134);background-color:var(--e-col-134)}footer .block-block-edlp-entrees div.item-list ul li[tid='121'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='121'] a.term-link:before{border-color:var(--e-col-121);background-color:var(--e-col-121)}footer .block-block-edlp-entrees div.item-list ul li[tid='125'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='125'] a.term-link:before{border-color:var(--e-col-125);background-color:var(--e-col-125)}footer .block-block-edlp-entrees div.item-list ul li[tid='119'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='119'] a.term-link:before{border-color:var(--e-col-119);background-color:var(--e-col-119)}footer .block-block-edlp-entrees div.item-list ul li[tid='132'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='132'] a.term-link:before{border-color:var(--e-col-132);background-color:var(--e-col-132)}footer .block-block-edlp-entrees div.item-list ul li[tid='122'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='122'] a.term-link:before{border-color:var(--e-col-122);background-color:var(--e-col-122)}footer .block-block-edlp-entrees div.item-list ul li[tid='129'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='129'] a.term-link:before{border-color:var(--e-col-129);background-color:var(--e-col-129)}footer .block-block-edlp-entrees div.item-list ul li[tid='120'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='120'] a.term-link:before{border-color:var(--e-col-120);background-color:var(--e-col-120)}footer .block-block-edlp-entrees div.item-list ul li[tid='130'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='130'] a.term-link:before{border-color:var(--e-col-130);background-color:var(--e-col-130)}footer .block-block-edlp-entrees div.item-list ul li[tid='118'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='118'] a.term-link:before{border-color:var(--e-col-118);background-color:var(--e-col-118)}footer .block-block-edlp-entrees div.item-list ul li[tid='127'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='127'] a.term-link:before{border-color:var(--e-col-127);background-color:var(--e-col-127)}footer .block-block-edlp-entrees div.item-list ul li[tid='133'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='133'] a.term-link:before{border-color:var(--e-col-133);background-color:var(--e-col-133)}footer .block-block-edlp-entrees div.item-list ul li[tid='128'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='128'] a.term-link:before{border-color:var(--e-col-128);background-color:var(--e-col-128)}footer .block-block-edlp-entrees div.item-list ul li[tid='124'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='124'] a.term-link:before{border-color:var(--e-col-124);background-color:var(--e-col-124)}footer .block-block-edlp-entrees div.item-list ul li[tid='116'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='116'] a.term-link:before{border-color:var(--e-col-116);background-color:var(--e-col-116)}footer .block-block-edlp-entrees div.item-list ul li[tid='117'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='117'] a.term-link:before{border-color:var(--e-col-117);background-color:var(--e-col-117)}footer .block-block-edlp-entrees div.item-list ul li[tid='131'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='131'] a.term-link:before{border-color:var(--e-col-131);background-color:var(--e-col-131)}footer .block-block-edlp-entrees div.item-list ul li[tid='126'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='126'] a.term-link:before{border-color:var(--e-col-126);background-color:var(--e-col-126)}footer .block-block-edlp-entrees div.item-list ul li[tid='123'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='123'] a.term-link:before{border-color:var(--e-col-123);background-color:var(--e-col-123)}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a:not(:hover):not(.is-active):before,footer .block-block-edlp-entrees div.item-list ul li a.articles-link:not(:hover):not(.is-active):before,footer .block-block-edlp-entrees div.item-list ul li:not(.opened):not(.highlighted) a.term-link:not(:hover):before{background-color:#fff!important}footer .block-block-edlp-entrees div.item-list ul li.opened a.term-link:after{content:'';position:absolute;left:15px;right:0;bottom:-3px;border-bottom:1px solid grey}footer #block-studiolinkblock a[alt]:hover:after,footer .block.random-player a[alt]:hover:after{bottom:24px;padding:.5em;font-size:.756em;background-color:#fff;z-index:50;content:attr(alt);right:0}footer .block-block-edlp-entrees div.item-list ul li.opened .entree-content{width:350px;opacity:1}footer .block-block-edlp-entrees div.item-list.highlighted li:not(.opened):not(.highlighted):not(:hover) a.term-link,footer .block-block-edlp-entrees div.item-list.opened li:not(.opened):not(.highlighted):not(:hover) a.term-link{color:#a1a1a1}footer .block.random-player{margin-bottom:1em;pointer-events:all;margin-left:.5em;position:relative}footer #block-studiolinkblock a,footer .block.random-player a{margin:0;overflow:hidden;background-size:contain;cursor:pointer;display:block;background-repeat:no-repeat}footer .block.random-player a{-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;height:20px;text-indent:40px;background-image:url(../img/random.svg)}footer .block.random-player a.is-active,footer .block.random-player a:hover{background-image:url(../img/random-active.svg)}footer .block.random-player a[alt]:hover:after{position:absolute;width:170px;border:1px solid red}html.is-mobile footer .block.random-player a{width:15px;height:15px;text-indent:30px}footer #block-studiolinkblock{margin-bottom:1em;pointer-events:all;margin-left:.5em;position:relative}footer #block-studiolinkblock a{-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;height:20px;text-indent:40px;background-image:url(../img/studio.svg)}footer #block-studiolinkblock a.is-active,footer #block-studiolinkblock a:hover{background-image:url(../img/studio-active.svg)}footer #block-studiolinkblock a[alt]:hover:after{position:absolute;width:170px;border:1px solid red}html.is-mobile footer #block-studiolinkblock a{width:15px;height:15px;text-indent:30px}footer #block-edlpsearchlinkblock a,footer #block-userlogin h2{width:20px;text-indent:40px;margin:0;overflow:hidden;cursor:pointer;background-size:contain}footer #block-userlogin{margin-bottom:1em;pointer-events:all;margin-left:.2em;position:relative;width:20px;height:20px}footer #block-userlogin h2{-webkit-box-sizing:content-box;box-sizing:content-box;position:relative;height:20px;background-image:url(../img/studio.svg);z-index:1}footer #block-userlogin .block-content{z-index:0;position:absolute;right:0;bottom:20px;padding:.5em .5em 20px;background-color:rgba(255,255,255,.95);border-top:1px solid red;border-bottom:1px solid red;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;height:0;opacity:0;pointer-events:none;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;-webkit-transition-property:height,opacity;transition-property:height,opacity}footer #block-userlogin .block-content form{font-size:.75em}footer #block-userlogin .block-content .item-list ul{margin:0}footer #block-userlogin .block-content .item-list li{margin:0;list-style:none}footer #block-userlogin .block-content .item-list li a{color:inherit;text-decoration:none;font-size:.75em;white-space:nowrap}footer #block-userlogin:hover .block-content{height:200px;opacity:1;pointer-events:auto}footer #block-edlpsearchlinkblock{margin-bottom:1em;pointer-events:all;position:relative;margin-left:.2em}footer #block-edlpsearchlinkblock a{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;height:20px;background-image:url(../img/search.svg);background-repeat:no-repeat}footer #block-edlpsearchlinkblock a.is-active,footer #block-edlpsearchlinkblock a:hover{background-image:url(../img/search-active.svg)}footer #block-edlpsearchlinkblock a[alt]:hover:after{content:attr(alt);position:absolute;right:0;bottom:24px;width:170px;border:1px solid red;padding:.5em;font-size:.756em;background-color:#fff;z-index:50}html.is-mobile footer #block-edlpsearchlinkblock a{width:15px;height:15px;text-indent:30px}footer .block-language{float:none;margin-top:0;margin-right:2em}footer .block-language ul{margin:0;padding:0}footer .block-language ul li{display:inline-block;vertical-align:middle;list-style:none;pointer-events:all}footer .block-language ul li a{font-size:.69em;color:inherit;text-decoration:none;text-transform:capitalize;margin-left:.8em;padding:3px;background-color:#fff;border-radius:3px}footer .block-language ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}footer .block-language ul li.is-active a:before,footer .block-language ul li:hover a:before{border-color:red;background-color:red}html.is-mobile footer .block-language{border-left:none}html.is-mobile footer .block-language ul{margin-right:.5em}html.is-mobile footer .block-language li{line-height:0}html.is-mobile footer .block-language li a{padding:0;margin:0}html.is-mobile footer .block-language li a.is-active{display:none}html.is-mobile footer{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;bottom:0;left:0;width:100%;background-color:#fff;padding-top:0;padding-bottom:0}html.is-mobile footer .region-footer-left,html.is-mobile footer .region-footer-right{width:50%}html.is-mobile footer .region-footer-left>*,html.is-mobile footer .region-footer-right>*{margin:.4em 0!important}html.is-mobile footer #block-footer li,html.is-mobile footer .block-language li{display:inline-block}html.is-mobile footer #block-footer li a,html.is-mobile footer .block-language li a{font-size:.68em}html.is-mobile footer #block-footer li a:before,html.is-mobile footer .block-language li a:before{width:5px;height:5px}html.is-mobile footer .region-footer-right{text-align:right}.node-popup .inner{position:relative}.node-popup .inner .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}.node-popup .inner .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}.node-popup .inner .entrees span[tid='134']{background-color:var(--e-col-134)}.node-popup .inner .entrees span[tid='121']{background-color:var(--e-col-121)}.node-popup .inner .entrees span[tid='125']{background-color:var(--e-col-125)}.node-popup .inner .entrees span[tid='119']{background-color:var(--e-col-119)}.node-popup .inner .entrees span[tid='132']{background-color:var(--e-col-132)}.node-popup .inner .entrees span[tid='122']{background-color:var(--e-col-122)}.node-popup .inner .entrees span[tid='129']{background-color:var(--e-col-129)}.node-popup .inner .entrees span[tid='120']{background-color:var(--e-col-120)}.node-popup .inner .entrees span[tid='130']{background-color:var(--e-col-130)}.node-popup .inner .entrees span[tid='118']{background-color:var(--e-col-118)}.node-popup .inner .entrees span[tid='127']{background-color:var(--e-col-127)}.node-popup .inner .entrees span[tid='133']{background-color:var(--e-col-133)}.node-popup .inner .entrees span[tid='128']{background-color:var(--e-col-128)}.node-popup .inner .entrees span[tid='124']{background-color:var(--e-col-124)}.node-popup .inner .entrees span[tid='116']{background-color:var(--e-col-116)}.node-popup .inner .entrees span[tid='117']{background-color:var(--e-col-117)}.node-popup .inner .entrees span[tid='131']{background-color:var(--e-col-131)}.node-popup .inner .entrees span[tid='126']{background-color:var(--e-col-126)}.node-popup .inner .entrees span[tid='123']{background-color:var(--e-col-123)}.node-popup .inner .title{margin:.2em 0 0;font-size:.9em;font-weight:600}.node-popup .inner .description p{margin:0;font-size:.756em}.node-popup .inner .chutier-icon{position:absolute;top:.4em;right:.4em}.node-popup .inner .chutier-icon[action=add]{display:none}.url-to-video-container{margin:10px auto}.url-to-video-container.no-js{border:1px solid #000}.url-to-video-container.no-js .url-to-video-player{cursor:auto}.url-to-video-container .loader{top:auto;left:auto;-webkit-transform:none;transform:none}.url-to-video-container span.url-to-video-player{padding-bottom:0;height:auto}.url-to-video-container span.url-to-video-player:before{content:"";display:block;padding-top:56.25%}.url-to-video-container span.url-to-video-player .play-button{z-index:5;top:50%}#user-register-form{width:29em}#user-register-form input{font-size:.82em;font-weight:400;line-height:1.4}#user-register-form label{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;display:inline-block;width:16em;white-space:normal}#user-register-form .form-item{white-space:nowrap}#user-register-form .description{font-size:.756em;font-weight:400;line-height:1.4;max-width:100%;white-space:normal}#better-messages-default.better-messages-overlay .better-messages-footer .better-messages-close,#user-register-form .password-confirm,#user-register-form .password-strength__title{font-size:.82em;font-weight:400;line-height:1.4}#user-register-form input[type=email],#user-register-form input[type=password]{width:17em}#user-register-form .password-strength,#user-register-form .password-strength__meter{width:98%}#better-messages-default.better-messages-overlay{border-radius:0;padding:.8em;-webkit-box-shadow:0 2px 10px #716f6f;box-shadow:0 2px 10px #716f6f}#better-messages-default.better-messages-overlay .better-messages-footer{border-top:none}#better-messages-default.better-messages-overlay .better-messages-footer .better-messages-close span{height:15px;width:15px;background-size:contain}
\ No newline at end of file
+#block-mainnavigation ul li a,.block-language ul li a,a,footer #block-userlogin .block-content .item-list li a,footer .block-language ul li a{color:inherit;text-decoration:none}.col-1,.col-10,.col-11,.col-12,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9{margin-left:0;padding-left:0}body{background:#fff}a,a:active,a:focus{outline:0}a:focus{-moz-outline-style:none}.col-1,.col-1-offset-1,.col-1-offset-10,.col-1-offset-11,.col-1-offset-2,.col-1-offset-3,.col-1-offset-4,.col-1-offset-5,.col-1-offset-6,.col-1-offset-7,.col-1-offset-8,.col-1-offset-9,.col-10,.col-10-offset-1,.col-10-offset-2,.col-11,.col-11-offset-1,.col-12,.col-2,.col-2-offset-1,.col-2-offset-10,.col-2-offset-2,.col-2-offset-3,.col-2-offset-4,.col-2-offset-5,.col-2-offset-6,.col-2-offset-7,.col-2-offset-8,.col-2-offset-9,.col-3,.col-3-offset-1,.col-3-offset-2,.col-3-offset-3,.col-3-offset-4,.col-3-offset-5,.col-3-offset-6,.col-3-offset-7,.col-3-offset-8,.col-3-offset-9,.col-4,.col-4-offset-1,.col-4-offset-2,.col-4-offset-3,.col-4-offset-4,.col-4-offset-5,.col-4-offset-6,.col-4-offset-7,.col-4-offset-8,.col-5,.col-5-offset-1,.col-5-offset-2,.col-5-offset-3,.col-5-offset-4,.col-5-offset-5,.col-5-offset-6,.col-5-offset-7,.col-6,.col-6-offset-1,.col-6-offset-2,.col-6-offset-3,.col-6-offset-4,.col-6-offset-5,.col-6-offset-6,.col-7,.col-7-offset-1,.col-7-offset-2,.col-7-offset-3,.col-7-offset-4,.col-7-offset-5,.col-8,.col-8-offset-1,.col-8-offset-2,.col-8-offset-3,.col-8-offset-4,.col-9,.col-9-offset-1,.col-9-offset-2,.col-9-offset-3,.large-col-1,.large-col-10,.large-col-11,.large-col-12,.large-col-2,.large-col-3,.large-col-4,.large-col-5,.large-col-6,.large-col-7,.large-col-8,.large-col-9,.med-col-1,.med-col-10,.med-col-11,.med-col-12,.med-col-2,.med-col-3,.med-col-4,.med-col-5,.med-col-6,.med-col-7,.med-col-8,.med-col-9,.small-col-1,.small-col-10,.small-col-11,.small-col-12,.small-col-2,.small-col-3,.small-col-4,.small-col-5,.small-col-6,.small-col-7,.small-col-8,.small-col-9{width:100%;float:left;-webkit-box-sizing:border-box;box-sizing:border-box}.row{position:relative}.row>*{font-size:16px}.col-1{padding-right:1em;width:8.33333%}.col-1:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.small-col-1:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.med-col-1:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-1{padding-left:0;padding-right:1em;margin-left:0;width:8.33333%}.large-col-1:last-child{padding-right:0}}.col-2{padding-right:1em;width:16.66667%}.col-2:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.small-col-2:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.med-col-2:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-2{padding-left:0;padding-right:1em;margin-left:0;width:16.66667%}.large-col-2:last-child{padding-right:0}}.col-3{padding-right:1em;width:25%}.col-3:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.small-col-3:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.med-col-3:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-3{padding-left:0;padding-right:1em;margin-left:0;width:25%}.large-col-3:last-child{padding-right:0}}.col-4{padding-right:1em;width:33.33333%}.col-4:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.small-col-4:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.med-col-4:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-4{padding-left:0;padding-right:1em;margin-left:0;width:33.33333%}.large-col-4:last-child{padding-right:0}}.col-5{padding-right:1em;width:41.66667%}.col-5:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.small-col-5:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.med-col-5:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-5{padding-left:0;padding-right:1em;margin-left:0;width:41.66667%}.large-col-5:last-child{padding-right:0}}.col-6{padding-right:1em;width:50%}.col-6:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.small-col-6:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.med-col-6:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-6{padding-left:0;padding-right:1em;margin-left:0;width:50%}.large-col-6:last-child{padding-right:0}}.col-7{padding-right:1em;width:58.33333%}.col-7:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.small-col-7:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.med-col-7:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-7{padding-left:0;padding-right:1em;margin-left:0;width:58.33333%}.large-col-7:last-child{padding-right:0}}.col-8{padding-right:1em;width:66.66667%}.col-8:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.small-col-8:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.med-col-8:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-8{padding-left:0;padding-right:1em;margin-left:0;width:66.66667%}.large-col-8:last-child{padding-right:0}}.col-9{padding-right:1em;width:75%}.col-9:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.small-col-9:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.med-col-9:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-9{padding-left:0;padding-right:1em;margin-left:0;width:75%}.large-col-9:last-child{padding-right:0}}.col-10{padding-right:1em;width:83.33333%}.col-10:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.small-col-10:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.med-col-10:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-10{padding-left:0;padding-right:1em;margin-left:0;width:83.33333%}.large-col-10:last-child{padding-right:0}}.col-11{padding-right:1em;width:91.66667%}.col-11:last-child{padding-right:0}@media only screen and (max-width:768px){.small-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.small-col-11:last-child{padding-right:0}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.med-col-11:last-child{padding-right:0}}@media only screen and (min-width:1081px){.large-col-11{padding-left:0;padding-right:1em;margin-left:0;width:91.66667%}.large-col-11:last-child,.large-col-12,.large-col-12:last-child{padding-right:0}.large-col-12{padding-left:0;margin-left:0;width:100%}}.col-12,.col-12:last-child{padding-right:0}.col-12{width:100%}@media only screen and (max-width:768px){.small-col-12,.small-col-12:last-child{padding-right:0}.small-col-12{padding-left:0;margin-left:0;width:100%}}@media only screen and (min-width:769px) and (max-width:1080px){.med-col-12,.med-col-12:last-child{padding-right:0}.med-col-12{padding-left:0;margin-left:0;width:100%}}.col-1-offset-1{padding-left:1em;padding-right:1em;margin-left:8.33333%;width:8.33333%}.col-1-offset-1:last-child{padding-right:0}.col-1-offset-2{padding-left:2em;padding-right:1em;margin-left:16.66667%;width:8.33333%}.col-1-offset-2:last-child{padding-right:0}.col-1-offset-3{padding-left:3em;padding-right:1em;margin-left:25%;width:8.33333%}.col-1-offset-3:last-child{padding-right:0}.col-1-offset-4{padding-left:4em;padding-right:1em;margin-left:33.33333%;width:8.33333%}.col-1-offset-4:last-child{padding-right:0}.col-1-offset-5{padding-left:5em;padding-right:1em;margin-left:41.66667%;width:8.33333%}.col-1-offset-5:last-child{padding-right:0}.col-1-offset-10,.col-1-offset-11,.col-1-offset-6,.col-1-offset-7,.col-1-offset-8,.col-1-offset-9,.col-2-offset-1,.col-2-offset-2,.col-2-offset-3,.col-2-offset-4,.col-2-offset-5,.col-2-offset-6{padding-right:1em}.col-1-offset-6{padding-left:6em;margin-left:50%;width:8.33333%}.col-1-offset-6:last-child{padding-right:0}.col-1-offset-7{padding-left:7em;margin-left:58.33333%;width:8.33333%}.col-1-offset-7:last-child{padding-right:0}.col-1-offset-8{padding-left:8em;margin-left:66.66667%;width:8.33333%}.col-1-offset-8:last-child{padding-right:0}.col-1-offset-9{padding-left:9em;margin-left:75%;width:8.33333%}.col-1-offset-9:last-child{padding-right:0}.col-1-offset-10{padding-left:10em;margin-left:83.33333%;width:8.33333%}.col-1-offset-10:last-child{padding-right:0}.col-1-offset-11{padding-left:11em;margin-left:91.66667%;width:8.33333%}.col-1-offset-11:last-child{padding-right:0}.col-2-offset-1{padding-left:1em;margin-left:16.66667%;width:16.66667%}.col-2-offset-1:last-child{padding-right:0}.col-2-offset-2{padding-left:2em;margin-left:33.33333%;width:16.66667%}.col-2-offset-2:last-child{padding-right:0}.col-2-offset-3{padding-left:3em;margin-left:50%;width:16.66667%}.col-2-offset-3:last-child{padding-right:0}.col-2-offset-4{padding-left:4em;margin-left:66.66667%;width:16.66667%}.col-2-offset-4:last-child{padding-right:0}.col-2-offset-5{padding-left:5em;margin-left:83.33333%;width:16.66667%}.col-2-offset-5:last-child{padding-right:0}.col-2-offset-6{padding-left:6em;margin-left:100%;width:16.66667%}.col-2-offset-6:last-child{padding-right:0}.col-2-offset-7{padding-left:7em;padding-right:1em;margin-left:116.66667%;width:16.66667%}.col-2-offset-7:last-child{padding-right:0}.col-2-offset-8{padding-left:8em;padding-right:1em;margin-left:133.33333%;width:16.66667%}.col-2-offset-8:last-child{padding-right:0}.col-2-offset-9{padding-left:9em;padding-right:1em;margin-left:150%;width:16.66667%}.col-2-offset-9:last-child{padding-right:0}.col-2-offset-10{padding-left:10em;padding-right:1em;margin-left:166.66667%;width:16.66667%}.col-2-offset-10:last-child{padding-right:0}.col-3-offset-1{padding-left:1em;padding-right:1em;margin-left:25%;width:25%}.col-3-offset-1:last-child{padding-right:0}.col-3-offset-2{padding-left:2em;padding-right:1em;margin-left:50%;width:25%}.col-3-offset-2:last-child{padding-right:0}.col-3-offset-3{padding-left:3em;padding-right:1em;margin-left:75%;width:25%}.col-3-offset-3:last-child{padding-right:0}.col-3-offset-4{padding-left:4em;padding-right:1em;margin-left:100%;width:25%}.col-3-offset-4:last-child{padding-right:0}.col-3-offset-5{padding-left:5em;padding-right:1em;margin-left:125%;width:25%}.col-3-offset-5:last-child{padding-right:0}.col-3-offset-6{padding-left:6em;padding-right:1em;margin-left:150%;width:25%}.col-3-offset-6:last-child{padding-right:0}.col-3-offset-7{padding-left:7em;padding-right:1em;margin-left:175%;width:25%}.col-3-offset-7:last-child{padding-right:0}.col-3-offset-8{padding-left:8em;padding-right:1em;margin-left:200%;width:25%}.col-3-offset-8:last-child{padding-right:0}.col-3-offset-9{padding-left:9em;padding-right:1em;margin-left:225%;width:25%}.col-3-offset-9:last-child{padding-right:0}.col-4-offset-1{padding-left:1em;padding-right:1em;margin-left:33.33333%;width:33.33333%}.col-4-offset-1:last-child{padding-right:0}.col-4-offset-2{padding-left:2em;padding-right:1em;margin-left:66.66667%;width:33.33333%}.col-4-offset-2:last-child{padding-right:0}.col-4-offset-3,.col-4-offset-4,.col-4-offset-5,.col-4-offset-6,.col-4-offset-7,.col-4-offset-8,.col-5-offset-1,.col-5-offset-2,.col-5-offset-3{padding-right:1em}.col-4-offset-3{padding-left:3em;margin-left:100%;width:33.33333%}.col-4-offset-3:last-child{padding-right:0}.col-4-offset-4{padding-left:4em;margin-left:133.33333%;width:33.33333%}.col-4-offset-4:last-child{padding-right:0}.col-4-offset-5{padding-left:5em;margin-left:166.66667%;width:33.33333%}.col-4-offset-5:last-child{padding-right:0}.col-4-offset-6{padding-left:6em;margin-left:200%;width:33.33333%}.col-4-offset-6:last-child{padding-right:0}.col-4-offset-7{padding-left:7em;margin-left:233.33333%;width:33.33333%}.col-4-offset-7:last-child{padding-right:0}.col-4-offset-8{padding-left:8em;margin-left:266.66667%;width:33.33333%}.col-4-offset-8:last-child{padding-right:0}.col-5-offset-1{padding-left:1em;margin-left:41.66667%;width:41.66667%}.col-5-offset-1:last-child{padding-right:0}.col-5-offset-2{padding-left:2em;margin-left:83.33333%;width:41.66667%}.col-5-offset-2:last-child{padding-right:0}.col-5-offset-3{padding-left:3em;margin-left:125%;width:41.66667%}.col-5-offset-3:last-child{padding-right:0}.col-5-offset-4{padding-left:4em;padding-right:1em;margin-left:166.66667%;width:41.66667%}.col-5-offset-4:last-child{padding-right:0}.col-5-offset-5{padding-left:5em;padding-right:1em;margin-left:208.33333%;width:41.66667%}.col-5-offset-5:last-child{padding-right:0}.col-5-offset-6{padding-left:6em;padding-right:1em;margin-left:250%;width:41.66667%}.col-5-offset-6:last-child{padding-right:0}.col-5-offset-7{padding-left:7em;padding-right:1em;margin-left:291.66667%;width:41.66667%}.col-5-offset-7:last-child{padding-right:0}.col-6-offset-1{padding-left:1em;padding-right:1em;margin-left:50%;width:50%}.col-6-offset-1:last-child{padding-right:0}.col-6-offset-2{padding-left:2em;padding-right:1em;margin-left:100%;width:50%}.col-6-offset-2:last-child{padding-right:0}.col-6-offset-3{padding-left:3em;padding-right:1em;margin-left:150%;width:50%}.col-6-offset-3:last-child{padding-right:0}.col-6-offset-4{padding-left:4em;padding-right:1em;margin-left:200%;width:50%}.col-6-offset-4:last-child{padding-right:0}.col-6-offset-5{padding-left:5em;padding-right:1em;margin-left:250%;width:50%}.col-6-offset-5:last-child{padding-right:0}.col-6-offset-6{padding-left:6em;padding-right:1em;margin-left:300%;width:50%}.col-6-offset-6:last-child{padding-right:0}.col-7-offset-1{padding-left:1em;padding-right:1em;margin-left:58.33333%;width:58.33333%}.col-7-offset-1:last-child{padding-right:0}.col-7-offset-2{padding-left:2em;padding-right:1em;margin-left:116.66667%;width:58.33333%}.col-7-offset-2:last-child{padding-right:0}.col-7-offset-3{padding-left:3em;padding-right:1em;margin-left:175%;width:58.33333%}.col-7-offset-3:last-child{padding-right:0}.col-7-offset-4{padding-left:4em;padding-right:1em;margin-left:233.33333%;width:58.33333%}.col-7-offset-4:last-child{padding-right:0}.col-7-offset-5{padding-left:5em;padding-right:1em;margin-left:291.66667%;width:58.33333%}.col-7-offset-5:last-child{padding-right:0}.col-8-offset-1{padding-left:1em;padding-right:1em;margin-left:66.66667%;width:66.66667%}.col-8-offset-1:last-child{padding-right:0}.col-8-offset-2{padding-left:2em;padding-right:1em;margin-left:133.33333%;width:66.66667%}.col-8-offset-2:last-child{padding-right:0}.col-8-offset-3{padding-left:3em;padding-right:1em;margin-left:200%;width:66.66667%}.col-8-offset-3:last-child{padding-right:0}.col-8-offset-4{padding-left:4em;padding-right:1em;margin-left:266.66667%;width:66.66667%}.col-8-offset-4:last-child{padding-right:0}.col-9-offset-1{padding-left:1em;padding-right:1em;margin-left:75%;width:75%}.col-9-offset-1:last-child{padding-right:0}.col-9-offset-2{padding-left:2em;padding-right:1em;margin-left:150%;width:75%}.col-9-offset-2:last-child{padding-right:0}.col-9-offset-3{padding-left:3em;padding-right:1em;margin-left:225%;width:75%}.col-9-offset-3:last-child{padding-right:0}.col-10-offset-1{padding-left:1em;padding-right:1em;margin-left:83.33333%;width:83.33333%}.col-10-offset-1:last-child{padding-right:0}.col-10-offset-2{padding-left:2em;padding-right:1em;margin-left:166.66667%;width:83.33333%}.col-10-offset-2:last-child{padding-right:0}.col-11-offset-1{padding-left:1em;padding-right:1em;margin-left:91.66667%;width:91.66667%}.col-11-offset-1:last-child{padding-right:0}.col.float-right{float:right;padding-right:0;padding-left:1em}body,html{position:relative;width:100%;height:100%;font-family:Georgia,serif;font-style:normal;margin:0;padding:0}body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs{padding-top:24px!important}header[role=banner]{z-index:5;position:relative;padding:0 1em}header[role=banner]>.wrapper{position:relative;padding:.5em 0;height:70px}header[role=banner]>.wrapper>.region{height:100%;position:relative}html.is-mobile header[role=banner]{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;width:100%;background-color:#fff}html.is-mobile header[role=banner]>.wrapper{height:50px}aside.messages{border:none;z-index:99;position:absolute;left:5%;top:100px;width:80%;max-height:600px;background-color:rgba(255,255,255,.8);padding:0;overflow-y:auto}html:not(.is-mobile) main[role=main]{z-index:11;position:absolute;left:0;top:0;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:7em 2em 9em;overflow:hidden;pointer-events:none;height:100%}html:not(.is-mobile) main[role=main] .layout-content{width:100%;height:100%;overflow:hidden}html:not(.is-mobile) main[role=main] .layout-content .row>:not(.col):not(.grid){pointer-events:auto}html.is-mobile main[role=main]{padding:80px 1em 40px}body.toolbar-horizontal.toolbar-themes.toolbar-no-tabs main[role=main]{padding-top:8em}footer[role=contentinfo]{z-index:12;position:fixed;bottom:0;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;padding:.5em 1em}.os-scroll{height:100%}header[role=banner]{pointer-events:all}#block-edlptheme-branding{display:inline-block;opacity:1;-webkit-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out}#audio-player,#corpus-map,.audio-player-visible #block-edlptheme-branding,main[role=main] .row{opacity:0}#block-edlptheme-branding h1{margin:0;display:inline-block}#block-edlptheme-branding h1 a.site-name{display:block;width:260px;height:57.2px;margin-top:.15em;background-image:url(../img/logo.svg);background-repeat:no-repeat;background-size:contain;white-space:nowrap;text-indent:500px;overflow:hidden}html.is-mobile #block-edlptheme-branding h1 a.site-name{width:170px;height:37.4px}#block-mainnavigation{float:right;margin-top:25px;z-index:21;position:relative}#block-mainnavigation ul{margin:0;padding:0;white-space:nowrap}#block-mainnavigation ul li{margin:0;padding:0;display:inline-block}#block-mainnavigation ul li a{font-size:.756em;text-transform:uppercase;margin-left:1em;padding:3px;background-color:#fff;border-radius:3px}#block-mainnavigation ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}#block-mainnavigation ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}#block-mainnavigation ul li a.is-active-trail:before,#block-mainnavigation ul li a.is-active:before,#block-mainnavigation ul li a:hover:before{background-color:red}@media only screen and (max-width:1270px){#block-mainnavigation{margin-top:15px}#block-mainnavigation ul li{display:block}#block-mainnavigation ul li a{font-size:.756em;font-weight:400;line-height:1.4}#block-mainnavigation ul li:first-of-type{display:none}}html.is-mobile #block-mainnavigation{margin-top:4px;width:50px;overflow:visible}html.is-mobile #block-mainnavigation>h2#block-mainnavigation-menu.visually-hidden{right:0;clip:auto;margin:0;text-indent:100px;cursor:pointer;width:30px;height:30px;background-size:15px 15px;background-color:#fff;background-repeat:repeat;background-image:linear-gradient(90deg,#fff 0,#fff 2px,transparent 2px,transparent),linear-gradient(90deg,transparent 0,transparent 13px,#fff 13px,#fff),linear-gradient(0deg,#fff 0,#fff 2px,transparent 2px,transparent),linear-gradient(0deg,transparent 0,transparent 13px,#fff 13px,#fff),linear-gradient(90deg,transparent 0,transparent 2px,red 2px,transparent 3px,transparent),linear-gradient(90deg,transparent 0,transparent 12px,red 12px,transparent 13px,transparent),linear-gradient(0deg,transparent 0,transparent 2px,red 2px,transparent 3px,transparent),linear-gradient(0deg,transparent 0,transparent 12px,red 12px,transparent 13px,transparent)}html.is-mobile #block-mainnavigation ul.menu{border-top:1px solid red;border-bottom:1px solid red;position:absolute;background-color:#fff;width:300px;padding:1em;top:45px;left:100px;-webkit-transition:left .2s ease-in-out;transition:left .2s ease-in-out}html.is-mobile #block-mainnavigation ul.menu li:first-of-type{display:block}html.is-mobile #block-mainnavigation ul.menu li a{font-size:.68em;padding:0;margin:0}html.is-mobile #block-mainnavigation.visible ul.menu{left:-130px}.block-language{float:right;margin-top:24px;margin-left:2em}.block-language ul{margin:0;padding:0}.block-language ul li{display:inline-block;vertical-align:middle;list-style:none}.block-language ul li a{font-size:.69em;text-transform:capitalize;margin-left:.8em;padding:3px;background-color:#fff;border-radius:3px}.block-language ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}.block-language ul li.is-active a:before,.block-language ul li:hover a:before{border-color:red;background-color:red}@media only screen and (max-width:1270px){.block-language{margin-top:15px;margin-left:.5em;border-left:1px solid red}.block-language ul li{display:block}.block-language ul li a{font-size:.756em;font-weight:400;line-height:1.4}}body[corpus=map-ready] #corpus-map{-webkit-transition:opacity 2s ease-out;transition:opacity 2s ease-out;opacity:1}main[role=main] .row .col{opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out}body[booted=booted] main[role=main] .row{-webkit-transition:opacity 1s ease-out;transition:opacity 1s ease-out;opacity:1}body.ajax-loading main[role=main] .row .col:not([theme=edlp_search_search_form]){opacity:.2}html.is-mobile main[role=main] *{pointer-events:all!important}main[role=main] .layout-content{pointer-events:none}main[role=main] .layout-content .row{pointer-events:none;height:100%;overflow:hidden}main[role=main] .layout-content .row .col{pointer-events:none;height:100%;position:relative}main[role=main] .layout-content .row .col>.wrapper{pointer-events:all;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;border-top:1px solid red;border-bottom:1px solid red;background-color:rgba(255,255,255,.95);padding:0 0 1em;max-height:100%;overflow-y:auto}main[role=main] .layout-content .row .col>.wrapper>*{padding:0 1.5em}main[role=main] h3.sur-title{font-size:.9em;font-weight:400;text-transform:uppercase;margin:.9em 0 0}main[role=main] article.node:not(.node--type-enregistrement)>h2,main[role=main] h2.title{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] article.node.node--type-enregistrement{margin:.5em 0}main[role=main] article.node.node--type-enregistrement>h2{font-size:.82em;font-weight:500;text-transform:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-article>h2,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript>h2{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:1em 0 .9em}main[role=main] article.node.node--type-enregistrement.node--view-mode-article h3.sur-title,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript h3.sur-title{display:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-index{margin:0}main[role=main] article.node.node--type-enregistrement.node--view-mode-index h2.node-title{margin-top:.6em;line-height:1}main[role=main] article.node.node--type-enregistrement.node--view-mode-index p{margin:.1em 0}html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript h3.sur-title{display:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad .field__label,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo .field__label{font-size:.9em;font-weight:400;text-transform:uppercase}html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad .field__label,html.js main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo .field__label,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-trad:not(.visible),main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript .field--name-field-transcript-vo:not(.visible){display:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav{padding:1em 0 0}main[role=main] div.articles,main[role=main] div.taxonomy-term{padding-top:1em!important}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label{font-size:.9em;font-weight:400;text-transform:uppercase;display:inline-block;cursor:pointer;margin-right:1em}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid red;margin-right:.5em}main[role=main] div.articles:not(.home_mobile)>h3,main[role=main] div.taxonomy-term:not(.home_mobile) .field__label,main[role=main] div.taxonomy-term:not(.home_mobile)>h2{display:none}main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label.is-active:before,main[role=main] article.node.node--type-enregistrement.node--view-mode-transcript nav div.field__label:hover:before{background-color:red}main[role=main] article.node--type-page.node--view-mode-default>h2.node-title{font-size:1.3em;font-weight:500;text-transform:uppercase;margin:.3em 0}main[role=main] article.node--type-page.node--view-mode-default .field--name-field-visuel{margin-bottom:1em}main[role=main] .agenda{text-align:center}main[role=main] .agenda .past-events{border-top:1px solid red;margin-top:1em}main[role=main] .agenda h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] .agenda article.node>h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin-bottom:0}main[role=main] .agenda .field--name-field-date time{font-size:.82em;font-weight:400;line-height:1.4}main[role=main] article.node--type-evenement .field--name-field-page-liee{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] article.node--type-evenement .field--name-field-date,main[role=main] article.node--type-evenement .field--name-title{font-size:.82em;font-weight:400;line-height:1.4}main[role=main] article.node--type-evenement.node--view-mode-aside .field--name-field-date{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] div.taxonomy-term.home_mobile h2{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.taxonomy-term .field--name-field-notice .field__label{margin-bottom:1em}main[role=main] div.taxonomy-term.home_mobile .field__label{margin:0;font-size:.82em;font-weight:600;line-height:1.6;text-transform:none}main[role=main] div.taxonomy-term article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.9em 0 0}main[role=main] div.articles.home_mobile h2{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.articles article.node--type-enregistrement h2.node-title,main[role=main] div.lastdocs article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.9em 0 0}main[role=main] div.lastdocs-home>.wrapper{padding:0 1em!important}main[role=main] div.lastdocs-home h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.lastdocs-home article.node--type-enregistrement h2.node-title{margin:0 0 .3em}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='134']{background-color:var(--e-col-134)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='121']{background-color:var(--e-col-121)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='125']{background-color:var(--e-col-125)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='119']{background-color:var(--e-col-119)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='132']{background-color:var(--e-col-132)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='122']{background-color:var(--e-col-122)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='129']{background-color:var(--e-col-129)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='120']{background-color:var(--e-col-120)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='130']{background-color:var(--e-col-130)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='118']{background-color:var(--e-col-118)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='127']{background-color:var(--e-col-127)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='133']{background-color:var(--e-col-133)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='128']{background-color:var(--e-col-128)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='124']{background-color:var(--e-col-124)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='116']{background-color:var(--e-col-116)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='117']{background-color:var(--e-col-117)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='131']{background-color:var(--e-col-131)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='126']{background-color:var(--e-col-126)}main[role=main] div.lastdocs-home article.node--type-enregistrement .entrees span[tid='123']{background-color:var(--e-col-123)}main[role=main] div.lastdocs h3{font-size:.9em;font-weight:400;text-transform:uppercase}main[role=main] div.lastdocs article.node--type-enregistrement .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='134']{background-color:var(--e-col-134)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='121']{background-color:var(--e-col-121)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='125']{background-color:var(--e-col-125)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='119']{background-color:var(--e-col-119)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='132']{background-color:var(--e-col-132)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='122']{background-color:var(--e-col-122)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='129']{background-color:var(--e-col-129)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='120']{background-color:var(--e-col-120)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='130']{background-color:var(--e-col-130)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='118']{background-color:var(--e-col-118)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='127']{background-color:var(--e-col-127)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='133']{background-color:var(--e-col-133)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='128']{background-color:var(--e-col-128)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='124']{background-color:var(--e-col-124)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='116']{background-color:var(--e-col-116)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='117']{background-color:var(--e-col-117)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='131']{background-color:var(--e-col-131)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='126']{background-color:var(--e-col-126)}main[role=main] div.lastdocs article.node--type-enregistrement .entrees span[tid='123']{background-color:var(--e-col-123)}main[role=main] div.lastdocs article.node--type-enregistrement h2.node-title{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:.3em 0 0}main[role=main] div.lastdocs article.node--type-enregistrement .description p{margin:0 0 .3em}html.is-mobile main[role=main] .entrees #collection{margin-top:-80px;margin-bottom:80px}html.is-mobile main[role=main] .entrees h3{font-size:.9em;font-weight:400;text-transform:uppercase;text-align:center;padding-top:.5em}html.is-mobile main[role=main] .entrees article.node--type-enregistrement{margin:.7em 0 0}html.is-mobile main[role=main] .entrees article.node--type-enregistrement h2.node-title{margin:0}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='134']{background-color:var(--e-col-134)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='121']{background-color:var(--e-col-121)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='125']{background-color:var(--e-col-125)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='119']{background-color:var(--e-col-119)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='132']{background-color:var(--e-col-132)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='122']{background-color:var(--e-col-122)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='129']{background-color:var(--e-col-129)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='120']{background-color:var(--e-col-120)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='130']{background-color:var(--e-col-130)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='118']{background-color:var(--e-col-118)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='127']{background-color:var(--e-col-127)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='133']{background-color:var(--e-col-133)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='128']{background-color:var(--e-col-128)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='124']{background-color:var(--e-col-124)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='116']{background-color:var(--e-col-116)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='117']{background-color:var(--e-col-117)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='131']{background-color:var(--e-col-131)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='126']{background-color:var(--e-col-126)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement div.entrees span[tid='123']{background-color:var(--e-col-123)}html.is-mobile main[role=main] .entrees article.node--type-enregistrement p{margin:0}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile{padding-bottom:1em}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile>h2{white-space:nowrap}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile>h2:before{content:"";display:inline-block;width:10px;height:10px;border:1px solid #000;margin-right:.5em}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile>h2 div{display:inline-block}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='134']>h2:before{border-color:var(--e-col-134)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='121']>h2:before{border-color:var(--e-col-121)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='125']>h2:before{border-color:var(--e-col-125)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='119']>h2:before{border-color:var(--e-col-119)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='132']>h2:before{border-color:var(--e-col-132)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='122']>h2:before{border-color:var(--e-col-122)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='129']>h2:before{border-color:var(--e-col-129)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='120']>h2:before{border-color:var(--e-col-120)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='130']>h2:before{border-color:var(--e-col-130)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='118']>h2:before{border-color:var(--e-col-118)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='127']>h2:before{border-color:var(--e-col-127)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='133']>h2:before{border-color:var(--e-col-133)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='128']>h2:before{border-color:var(--e-col-128)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='124']>h2:before{border-color:var(--e-col-124)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='116']>h2:before{border-color:var(--e-col-116)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='117']>h2:before{border-color:var(--e-col-117)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='131']>h2:before{border-color:var(--e-col-131)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='126']>h2:before{border-color:var(--e-col-126)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile[tid='123']>h2:before{border-color:var(--e-col-123)}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice>.field__label,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index>.field__label{cursor:pointer}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice .item-list,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index .item-list{height:auto;-webkit-transition:height .3s ease-in-out;transition:height .3s ease-in-out}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice.closed .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .field--name-field-notice.closed .item-list,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index.closed .field__item,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile .index.closed .item-list{overflow:hidden;height:1px;-webkit-transition:height 10ms ease-in-out;transition:height 10ms ease-in-out}main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile.index-opened .field--name-description,main[role=main] div.taxonomy-term.vocabulary-entrees.home_mobile.notice-opened .field--name-description{overflow:hidden;height:1px}main[role=main] h4.inter-titre{font-size:.82em;line-height:1.4;font-weight:400;font-style:italic;margin:1.5em 0 .5em}main[role=main] article.node p,main[role=main] div.taxonomy-term p{font-size:.82em;font-weight:400;line-height:1.4;margin:0 0 1em}main[role=main] .field.text-formatted a{display:inline-block;position:relative}main[role=main] .field.text-formatted a:after{content:'';position:absolute;width:100%;left:0;bottom:.2em;border-bottom:1px dotted #1A1A1A}main[role=main] .field.text-formatted a.audio-link:after{border-color:red}main[role=main] .productions-subtree a{font-size:.82em;font-weight:400;text-transform:uppercase}main[role=main] .productions-subtree a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;margin-right:.5em}main[role=main] .productions-subtree a.is-active:before,main[role=main] .productions-subtree a:hover:before{background-color:#000}main[role=main] .productions-subtree a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}main[role=main] .productions-parent{margin-top:1em;margin-bottom:.5em}main[role=main] .productions-parent a{font-size:.82em;font-weight:400;text-transform:uppercase}main[role=main] .productions-parent a:before{content:'\2039';font-size:1.7em;line-height:.95;margin-right:.1em;margin-left:-.4em;display:inline-block;vertical-align:bottom}main[role=main] img{max-width:100%;height:auto}main[role=main] li,main[role=main] ul,main[role=main] ul.inline li:first-child{margin:0;padding:0;list-style:none}main[role=main] span.close-col-btn{pointer-events:all;cursor:pointer;position:-webkit-sticky;position:sticky;top:.5em;padding:0!important;margin:.7em 0 0 .5em;display:block;width:10px;height:10px;float:left;background-image:url(../img/close.svg);background-repeat:no-repeat;background-position:center;background-size:contain}html.is-mobile main[role=main] .node--type-enregistrement.node--view-mode-full h2.node-title{font-size:.9em;font-weight:400;text-transform:uppercase}html.is-mobile main[role=main] .node--type-enregistrement.node--view-mode-full .audiofield label{display:none}#audio-player{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:0;padding-left:.7em;height:100%;min-width:700px;z-index:20;pointer-events:none;-webkit-transition:opacity .7s ease-in-out;transition:opacity .7s ease-in-out;white-space:nowrap}#audio-player.visible{opacity:1;pointer-events:all}#audio-player>*{display:inline-block;vertical-align:middle;max-height:100%;white-space:normal;padding:3px;border-radius:3px;background-color:transparent}#audio-player .btns>*{display:inline-block;vertical-align:middle;width:20px;height:30px;background-position:center;background-size:contain}#audio-player .btns .play-pause{background-image:url(../img/audio-player-play.svg);padding:0 .3em;cursor:pointer}#audio-player .btns.is-playing .play-pause{background-image:url(../img/audio-player-pause.svg)}#audio-player .btns .next,#audio-player .btns .previous{opacity:.3;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;cursor:auto}#audio-player .btns .next.is-active,#audio-player .btns .previous.is-active{opacity:1;cursor:pointer}#audio-player .btns .previous{background-image:url(../img/audio-player-previous.svg)}#audio-player .btns .next{background-image:url(../img/audio-player-next.svg)}#audio-player .time-line-container{background:0 0}#audio-player .time-line-container .time-line{position:relative;width:70px;height:1px;background-color:#000;overflow:visible;-webkit-transform:rotateZ(-46deg);transform:rotateZ(-46deg)}#audio-player .time-line-container .time-line .loader{width:0;height:1px;background-color:red;border-top:2px solid #fff;border-bottom:2px solid #fff;position:absolute;top:-2px;left:0;cursor:pointer}#audio-player .time-line-container .time-line .cursor{height:10px;width:0;border-left:2px solid red;position:absolute;left:0;top:-5px;pointer-events:none}#audio-player .time>*{width:70px;text-align:right}#audio-player .time .current-time{font-size:1.4em;font-weight:600}#audio-player .time .duration{font-size:.75em;font-weight:400}#audio-player .favoris{height:100%}#audio-player .cartel{position:relative;width:calc(100% - 260px);margin-left:1em;opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out;white-space:nowrap}#audio-player .cartel.loading{opacity:0}#audio-player .cartel .actions,#audio-player .cartel .cartels{display:inline-block;vertical-align:top;white-space:normal;position:relative}#audio-player .cartel .actions{width:1.5em}#audio-player .cartel .cartels{width:calc(100% - 1.5em)}#audio-player .cartel .cartels .first-cartel{opacity:1;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#audio-player .cartel .cartels .first-cartel .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}#audio-player .cartel .cartels .first-cartel .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}#audio-player .cartel .cartels .first-cartel .entrees span[tid='134']{background-color:var(--e-col-134)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='121']{background-color:var(--e-col-121)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='125']{background-color:var(--e-col-125)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='119']{background-color:var(--e-col-119)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='132']{background-color:var(--e-col-132)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='122']{background-color:var(--e-col-122)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='129']{background-color:var(--e-col-129)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='120']{background-color:var(--e-col-120)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='130']{background-color:var(--e-col-130)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='118']{background-color:var(--e-col-118)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='127']{background-color:var(--e-col-127)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='133']{background-color:var(--e-col-133)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='128']{background-color:var(--e-col-128)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='124']{background-color:var(--e-col-124)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='116']{background-color:var(--e-col-116)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='117']{background-color:var(--e-col-117)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='131']{background-color:var(--e-col-131)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='126']{background-color:var(--e-col-126)}#audio-player .cartel .cartels .first-cartel .entrees span[tid='123']{background-color:var(--e-col-123)}#audio-player .cartel .cartels .first-cartel h2.node-title{margin:.2em 0 0;font-size:.9em;font-weight:600}#audio-player .cartel .cartels .first-cartel p{margin:0;font-size:.756em}#audio-player .cartel .cartels .second-cartel{position:absolute;top:0;left:0;height:100%;min-width:100%;opacity:0;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out;white-space:nowrap}#audio-player .cartel .cartels .second-cartel>*{display:inline-block;vertical-align:top;white-space:normal}#audio-player .cartel .cartels .second-cartel .col-left a.ajax-link{display:block;font-size:.82em;font-weight:600}#audio-player .cartel .cartels .second-cartel .col-left .addtoany_list>a:first-child{padding-left:0;margin-left:-4px}#audio-player .cartel .cartels .second-cartel .col-right{border-left:1px solid #1A1A1A;margin-left:5px;padding-left:5px;max-width:calc(100% - 100px)}#audio-player .cartel .cartels .second-cartel .col-right h3{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;margin:0}#audio-player .cartel .cartels .second-cartel .col-right div.item-list{max-width:100%}#audio-player .cartel .cartels .second-cartel .col-right ul{max-width:100%;padding:0;margin:0}#audio-player .cartel .cartels .second-cartel .col-right ul li{padding:0;margin:0;display:inline-block;list-style:none}#audio-player .cartel .cartels .second-cartel .col-right ul li:not(:last-of-type){margin-right:.4em}#audio-player .cartel .cartels .second-cartel .col-right ul li:not(:last-of-type):after{content:","}#audio-player .cartel .cartels .second-cartel .col-right ul li a{font-size:.82em;font-weight:400;line-height:1.4}#audio-player .cartel.second-visible .first-cartel,#audio-player .cartel:hover .first-cartel{opacity:0}#audio-player .cartel.second-visible .second-cartel,#audio-player .cartel:hover .second-cartel{opacity:1}.chutier-icon{z-index:1;display:block;position:relative;width:1em;height:1em;overflow:hidden;text-indent:50em;background-position:center;background-repeat:no-repeat;background-size:contain;background-image:url(../img/favori-off.svg);-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}.chutier-icon[action=remove]{background-image:url(../img/favori-on.svg)}.chutier-icon.ajax-loading{opacity:.2}.chutier-icon.not-logedin{overflow:visible}.chutier-icon .popup{display:none;position:absolute;top:0;left:0;width:300px;height:auto;min-height:100px}.chutier-icon .popup .inner{background-color:rgba(255,255,255,.9);border:1px solid red;text-indent:0;padding:.5em;margin:1.2em 0 0 1.2em}.chutier-icon .popup .inner p{font-size:.756em;margin:0}.chutier-icon .popup .inner p:not(:last-of-type){margin:0 0 .4em}.chutier-icon:hover .popup{display:block}#studio-ui,.row .col .studio-ui-wrapper{height:100%}#studio-ui .chutier_ui{height:50%;border-bottom:1px solid red;position:relative}#studio-ui .chutier_ui>h2{z-index:10;position:absolute;width:calc(100% - 20px);margin:0;padding:.5em 0;font-size:1em;font-weight:500;text-transform:uppercase;background-color:#fff}#studio-ui .chutier_ui .documents{padding-top:35px;height:calc(100% - 35px);overflow-y:auto;overflow-x:hidden}#studio-ui .chutier_ui .documents li,#studio-ui .chutier_ui .documents ul{margin:0;padding:0;line-height:1.2}#studio-ui .chutier_ui .documents li{display:inline-block;vertical-align:top;width:49%;margin-bottom:.5em;white-space:nowrap}#studio-ui .chutier_ui .documents li>div{display:inline-block;padding-right:2em}#studio-ui .chutier_ui .documents li>div.ui-draggable{cursor:-webkit-grab;cursor:grab}#studio-ui .chutier_ui .documents li .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}#studio-ui .chutier_ui .documents li .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}#studio-ui .chutier_ui .documents li .entrees span[tid='134']{background-color:var(--e-col-134)}#studio-ui .chutier_ui .documents li .entrees span[tid='121']{background-color:var(--e-col-121)}#studio-ui .chutier_ui .documents li .entrees span[tid='125']{background-color:var(--e-col-125)}#studio-ui .chutier_ui .documents li .entrees span[tid='119']{background-color:var(--e-col-119)}#studio-ui .chutier_ui .documents li .entrees span[tid='132']{background-color:var(--e-col-132)}#studio-ui .chutier_ui .documents li .entrees span[tid='122']{background-color:var(--e-col-122)}#studio-ui .chutier_ui .documents li .entrees span[tid='129']{background-color:var(--e-col-129)}#studio-ui .chutier_ui .documents li .entrees span[tid='120']{background-color:var(--e-col-120)}#studio-ui .chutier_ui .documents li .entrees span[tid='130']{background-color:var(--e-col-130)}#studio-ui .chutier_ui .documents li .entrees span[tid='118']{background-color:var(--e-col-118)}#studio-ui .chutier_ui .documents li .entrees span[tid='127']{background-color:var(--e-col-127)}#studio-ui .chutier_ui .documents li .entrees span[tid='133']{background-color:var(--e-col-133)}#studio-ui .chutier_ui .documents li .entrees span[tid='128']{background-color:var(--e-col-128)}#studio-ui .chutier_ui .documents li .entrees span[tid='124']{background-color:var(--e-col-124)}#studio-ui .chutier_ui .documents li .entrees span[tid='116']{background-color:var(--e-col-116)}#studio-ui .chutier_ui .documents li .entrees span[tid='117']{background-color:var(--e-col-117)}#studio-ui .chutier_ui .documents li .entrees span[tid='131']{background-color:var(--e-col-131)}#studio-ui .chutier_ui .documents li .entrees span[tid='126']{background-color:var(--e-col-126)}#studio-ui .chutier_ui .documents li .entrees span[tid='123']{background-color:var(--e-col-123)}#studio-ui .chutier_ui .documents li a.audio-link{font-size:.756em;margin-right:.5em;white-space:normal}#studio-ui .chutier_ui .documents li .chutier-icon{display:inline-block;width:.7em;height:.7em;opacity:.8}#studio-ui .composition_ui{height:50%}#studio-ui .composition_ui>h2{z-index:10;position:absolute;width:calc(100% - 20px);margin:0;padding:.5em 0;font-size:1em;font-weight:500;text-transform:uppercase;background-color:#fff}#studio-ui .composition_ui>.wrapper{padding-top:35px;height:calc(100% - 35px);overflow:hidden;white-space:nowrap}#studio-ui .composition_ui>.wrapper section.composer,#studio-ui .composition_ui>.wrapper section.compositions-list{display:inline-block;vertical-align:bottom;height:100%}#studio-ui .composition_ui>.wrapper .compositions-list{width:30%;height:100%;overflow-y:auto;-webkit-box-sizing:border-box;box-sizing:border-box;padding-right:.5em;border-right:1px solid #aaa}#studio-ui .composition_ui>.wrapper .compositions-list li{opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list li:hover a.delete-composition-link{opacity:1}#studio-ui .composition_ui>.wrapper .compositions-list li.ajax-loading{opacity:.4}#studio-ui .composition_ui>.wrapper .compositions-list a{font-size:.756em}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link{display:inline-block;-webkit-box-sizing:border-box;box-sizing:border-box;width:calc(100% - 21px)}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link:before{content:"";width:7px;height:7px;border:1px solid #000;background-color:#fff;display:inline-block;vertical-align:middle;margin-right:5px}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}#studio-ui .composition_ui>.wrapper .compositions-list a.composition-link.is-active:before{background-color:#000}#studio-ui .composition_ui>.wrapper .compositions-list a.delete-composition-link{display:inline-block;vertical-align:middle;width:7px;height:7px;margin-left:5px;text-indent:300px;overflow:hidden;background-image:url(../img/delete.svg);background-repeat:no-repeat;background-size:contain;opacity:0;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link{display:inline-block;vertical-align:top;overflow:hidden;margin-top:.4em;height:1em;-webkit-transition:height .2s ease-in-out;transition:height .2s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link:before{content:"+";margin-right:5px}#studio-ui .composition_ui>.wrapper .compositions-list a.new-composition-link.folded{height:0}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form{opacity:1;-webkit-transition:opacity .2s ease-in-out;transition:opacity .2s ease-in-out}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form input[type=text]{font-size:.756em;padding:0 .5em;width:calc(100% - 50px);height:1.7em;border:none;border-top:1px dotted red;border-bottom:1px dotted red}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form button{background:0 0;border:none;font-size:1em;line-height:1;font-weight:700}#studio-ui .composition_ui>.wrapper .compositions-list .new-compo-form.ajax-loading{opacity:.4}#studio-ui .composition_ui>.wrapper .composer{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;padding-left:.5em;width:69%;opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#studio-ui .composition_ui>.wrapper .composer.ajax-loading{opacity:.3}#studio-ui .composition_ui>.wrapper .composer>*{-webkit-box-sizing:border-box;box-sizing:border-box}#studio-ui .composition_ui>.wrapper .composer>header{height:25px;padding-bottom:5px;font-size:.756em}#studio-ui .composition_ui>.wrapper .composer>.composition{position:relative;height:calc(100% - 60px);padding-bottom:1em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;width:100%;padding:0 .5em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:after,#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:before{content:"";width:calc(100% - 2px);position:absolute;bottom:0;left:0}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:before{border-top:1px solid #A1A1A1;height:14.5px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents:after{border-left:1px solid #A1A1A1;border-right:1px solid #A1A1A1;height:29px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item{display:inline-block;position:relative;white-space:nowrap;pointer-events:none;width:25px;height:100%;opacity:1;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.ui-draggable-dragging{height:100px}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.ready-to-remove{opacity:.3;cursor:crosshair}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item>*{pointer-events:all}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article{position:absolute;bottom:0;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2{margin:0;text-transform:none}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2 a{white-space:nowrap!important;font-size:.756em}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item article h2 a:before{content:"";display:inline-block;vertical-align:middle;width:12px;height:12px;border:1px solid #fff;background-color:#fff}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item .handler{z-index:99;cursor:-webkit-grab;cursor:grab;position:absolute;bottom:0;left:1px;display:block;width:12px;height:12px;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);border:1px solid red;background-color:#fff}#studio-ui .composition_ui>.wrapper .composer>.composition .field--name-documents .field__item.is-active .handler{background-color:red}#studio-ui .composition_ui>.wrapper .composer>.composition .remove-drop-zone{position:absolute;top:0;left:0;width:100%;height:45%;z-index:150}#studio-ui .composition_ui>.wrapper .composer>.actions{padding-top:5px;height:25px}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls>*{display:inline-block;vertical-align:middle;width:20px;height:30px;background-position:center;background-size:contain}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .play-pause{background-image:url(../img/audio-player-play.svg);padding:0 .3em;cursor:pointer}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls.is-playing .play-pause{background-image:url(../img/audio-player-pause.svg)}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next,#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous{opacity:.3;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out;cursor:auto}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next.is-active,#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous.is-active{opacity:1;cursor:pointer}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .previous{background-image:url(../img/audio-player-previous.svg)}#studio-ui .composition_ui>.wrapper .composer>.actions .compo-player-controls .next{background-image:url(../img/audio-player-next.svg)}#studio-ui .field__item.ui-draggable-dragging{display:inline-block;position:relative;white-space:nowrap;pointer-events:none;width:25px;height:100%;opacity:1;-webkit-transition:opacity .1s ease-in-out;transition:opacity .1s ease-in-out}#studio-ui .field__item.ui-draggable-dragging.ui-draggable-dragging{height:100px}#studio-ui .field__item.ui-draggable-dragging.ready-to-remove{opacity:.3;cursor:crosshair}#studio-ui .field__item.ui-draggable-dragging>*{pointer-events:all}#studio-ui .field__item.ui-draggable-dragging article{position:absolute;bottom:0;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg)}#studio-ui .field__item.ui-draggable-dragging article h2{margin:0;text-transform:none}#studio-ui .field__item.ui-draggable-dragging article h2 a{white-space:nowrap!important;font-size:.756em}#studio-ui .field__item.ui-draggable-dragging article h2 a:before{content:"";display:inline-block;vertical-align:middle;width:12px;height:12px;border:1px solid #fff;background-color:#fff}#studio-ui .field__item.ui-draggable-dragging .handler{z-index:99;cursor:-webkit-grab;cursor:grab;position:absolute;bottom:0;left:1px;display:block;width:12px;height:12px;-webkit-transform-origin:left top;transform-origin:left top;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);border:1px solid red;background-color:#fff}#studio-ui .field__item.ui-draggable-dragging.is-active .handler{background-color:red}.col[theme=edlp_search_search_form],.col[theme=edlp_search_search_form]>.wrapper{position:relative;height:100%}#edlp-search-form{height:100%}#edlp-search-form .fieldgroup{border-bottom:1px solid red;margin-top:1em;margin-bottom:0}#edlp-search-form .fieldgroup legend{font-size:.9em;margin:0;font-weight:500}#edlp-search-form .fieldgroup .fieldset-wrapper{padding-bottom:1em}#edlp-search-form .fieldgroup .form-item{margin:0}#edlp-search-form input[type=text],#edlp-search-form input[type=search]{font-size:.8em;padding:.2em;margin:0;border:1px solid #aaa;border-radius:3px;width:90%}#edlp-search-form #edit-entries--wrapper legend{cursor:pointer;display:block;width:100%}#edlp-search-form #edit-entries--wrapper legend:after{content:'\2304';font-size:2em;font-weight:200;display:inline-block;line-height:0;letter-spacing:0;height:13px;overflow:hidden;float:right;margin-top:.5em 0 0 0}#edlp-search-form #edit-entries--wrapper #edit-entries{overflow:hidden;height:1px;margin:0;-webkit-transition:height .4s ease-in-out;transition:height .4s ease-in-out}#edlp-search-form #edit-entries--wrapper.opened legend:after{-webkit-transform:rotateZ(180deg);transform:rotateZ(180deg);-webkit-transform-origin:center;transform-origin:center;margin-top:0 0 .5em 0}#edlp-search-form #edit-entries--wrapper.opened #edit-entries{height:362px}#edlp-search-form #edit-entries .form-item input,#edlp-search-form #edit-entries .form-item label{display:inline-block;vertical-align:middle}#edlp-search-form #edit-entries .form-item label{font-size:.756em}#edlp-search-form #edit-entries .form-item input[type=checkbox]{-webkit-appearance:none;-moz-appearance:none;appearance:none;width:10px;height:10px;border:1px double #000;background-color:#fff}#edlp-search-form #edit-entries .form-item input[type=checkbox]:checked{background-color:#000}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='134']{border-color:var(--e-col-134)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='134']:checked{background-color:var(--e-col-134)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='121']{border-color:var(--e-col-121)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='121']:checked{background-color:var(--e-col-121)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='125']{border-color:var(--e-col-125)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='125']:checked{background-color:var(--e-col-125)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='119']{border-color:var(--e-col-119)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='119']:checked{background-color:var(--e-col-119)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='132']{border-color:var(--e-col-132)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='132']:checked{background-color:var(--e-col-132)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='122']{border-color:var(--e-col-122)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='122']:checked{background-color:var(--e-col-122)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='129']{border-color:var(--e-col-129)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='129']:checked{background-color:var(--e-col-129)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='120']{border-color:var(--e-col-120)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='120']:checked{background-color:var(--e-col-120)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='130']{border-color:var(--e-col-130)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='130']:checked{background-color:var(--e-col-130)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='118']{border-color:var(--e-col-118)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='118']:checked{background-color:var(--e-col-118)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='127']{border-color:var(--e-col-127)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='127']:checked{background-color:var(--e-col-127)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='133']{border-color:var(--e-col-133)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='133']:checked{background-color:var(--e-col-133)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='128']{border-color:var(--e-col-128)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='128']:checked{background-color:var(--e-col-128)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='124']{border-color:var(--e-col-124)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='124']:checked{background-color:var(--e-col-124)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='116']{border-color:var(--e-col-116)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='116']:checked{background-color:var(--e-col-116)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='117']{border-color:var(--e-col-117)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='117']:checked{background-color:var(--e-col-117)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='131']{border-color:var(--e-col-131)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='131']:checked{background-color:var(--e-col-131)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='126']{border-color:var(--e-col-126)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='126']:checked{background-color:var(--e-col-126)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='123']{border-color:var(--e-col-123)}#edlp-search-form #edit-entries .form-item input[type=checkbox][value='123']:checked{background-color:var(--e-col-123)}#edlp-search-form input[type=submit]{font-size:.756em;padding:.1em;margin:1em 0 0;float:right;opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}#edlp-search-form.ajax-loading input[type=submit]{opacity:.2;pointer-events:none}.col[theme=edlp_search_results]{opacity:1;-webkit-transition:opacity .3s ease-in-out;transition:opacity .3s ease-in-out}.col[theme=edlp_search_results].ajax-loading{opacity:.2}.col[theme=edlp_search_results] article.node:first-of-type{margin-top:1em!important}.col[theme=edlp_search_results] article.node .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}.col[theme=edlp_search_results] article.node .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}.col[theme=edlp_search_results] article.node .entrees span[tid='134']{background-color:var(--e-col-134)}.col[theme=edlp_search_results] article.node .entrees span[tid='121']{background-color:var(--e-col-121)}.col[theme=edlp_search_results] article.node .entrees span[tid='125']{background-color:var(--e-col-125)}.col[theme=edlp_search_results] article.node .entrees span[tid='119']{background-color:var(--e-col-119)}.col[theme=edlp_search_results] article.node .entrees span[tid='132']{background-color:var(--e-col-132)}.col[theme=edlp_search_results] article.node .entrees span[tid='122']{background-color:var(--e-col-122)}.col[theme=edlp_search_results] article.node .entrees span[tid='129']{background-color:var(--e-col-129)}.col[theme=edlp_search_results] article.node .entrees span[tid='120']{background-color:var(--e-col-120)}.col[theme=edlp_search_results] article.node .entrees span[tid='130']{background-color:var(--e-col-130)}.col[theme=edlp_search_results] article.node .entrees span[tid='118']{background-color:var(--e-col-118)}.col[theme=edlp_search_results] article.node .entrees span[tid='127']{background-color:var(--e-col-127)}.col[theme=edlp_search_results] article.node .entrees span[tid='133']{background-color:var(--e-col-133)}.col[theme=edlp_search_results] article.node .entrees span[tid='128']{background-color:var(--e-col-128)}.col[theme=edlp_search_results] article.node .entrees span[tid='124']{background-color:var(--e-col-124)}.col[theme=edlp_search_results] article.node .entrees span[tid='116']{background-color:var(--e-col-116)}.col[theme=edlp_search_results] article.node .entrees span[tid='117']{background-color:var(--e-col-117)}.col[theme=edlp_search_results] article.node .entrees span[tid='131']{background-color:var(--e-col-131)}.col[theme=edlp_search_results] article.node .entrees span[tid='126']{background-color:var(--e-col-126)}.col[theme=edlp_search_results] article.node .entrees span[tid='123']{background-color:var(--e-col-123)}.col[theme=edlp_search_results] article.node h2.node-title{margin:0 0 .3em}body.path-agenda main .col>.wrapper{height:100%}.agenda li,.agenda ul{margin:0;padding:0;list-style:none}body.path-frontpage .layout-content .row,body.path-productions .layout-content .row{white-space:normal;min-height:100%}body.path-frontpage .layout-content .row .grid,body.path-productions .layout-content .row .grid{position:relative;min-height:100%;max-height:100%}body.path-frontpage .layout-content .row .col,body.path-productions .layout-content .row .col{height:auto;opacity:1;-webkit-transition:opacity .5s ease-in-out;transition:opacity .5s ease-in-out}body.path-frontpage .layout-content .row .col.offfield,body.path-productions .layout-content .row .col.offfield{opacity:0;-webkit-transition:opacity 0s ease-in-out;transition:opacity 0s ease-in-out}body.path-frontpage .layout-content .row .col.col-2:last-child,body.path-productions .layout-content .row .col.col-2:last-child{padding-left:0;padding-right:1em}body.path-frontpage .layout-content .row .col>.wrapper,body.path-productions .layout-content .row .col>.wrapper{margin-bottom:1em;padding:0}body.path-frontpage .layout-content .row .col>.wrapper>*,body.path-productions .layout-content .row .col>.wrapper>*{padding:0}body.path-frontpage .layout-content .row .col>.wrapper article.node .field--name-field-visuel a,body.path-productions .layout-content .row .col>.wrapper article.node .field--name-field-visuel a{display:block;width:100%;padding-bottom:56.25%}body.path-frontpage .layout-content .row .col>.wrapper article.node .field--name-field-visuel img,body.path-productions .layout-content .row .col>.wrapper article.node .field--name-field-visuel img{position:absolute;top:0;bottom:0;left:0;right:0}body.path-frontpage .layout-content .row .col>.wrapper article.node header,body.path-productions .layout-content .row .col>.wrapper article.node header{background-color:rgba(255,255,255,.95);-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:.5em 1em}body.path-frontpage .layout-content .row .col>.wrapper article.node header h2.node-title,body.path-productions .layout-content .row .col>.wrapper article.node header h2.node-title{margin:0;font-size:.9em;font-weight:400;text-transform:uppercase}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header{position:absolute;bottom:0;left:0}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header h2.node-title,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-2-columns header h2.node-title{font-size:1.3em;font-weight:500;text-transform:uppercase}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns .field--name-field-visuel,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns .field--name-field-visuel{padding-bottom:35px}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns header,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-image-1-columns header{-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;bottom:0;left:0}body.path-frontpage .layout-content .row .col>.wrapper article.node.node--view-mode-text-1-column,body.path-productions .layout-content .row .col>.wrapper article.node.node--view-mode-text-1-column{padding:0 1em}footer{position:relative;pointer-events:none}footer>.wrapper{white-space:nowrap}footer>.wrapper>.region{display:inline-block;vertical-align:baseline;white-space:normal}footer>.wrapper>.region>*{display:inline-block;vertical-align:bottom}footer>.wrapper .region-footer-left{width:12%;text-align:left}footer>.wrapper .region-footer-center{width:73%;overflow:hidden;text-align:center}footer>.wrapper .region-footer-right{min-width:12%;text-align:right}@media only screen and (max-width:1270px){footer>.wrapper .region-footer-left{width:9%}footer>.wrapper .region-footer-center{width:80%;overflow:hidden;text-align:center}footer>.wrapper .region-footer-right{-webkit-box-sizing:content-box;box-sizing:content-box;min-width:5%}}footer #block-footer{display:inline-block;margin-bottom:1em}footer #block-footer ul{margin:0;padding:0}footer #block-footer ul li{pointer-events:all;display:inline-block;padding:0;white-space:nowrap}footer #block-footer ul li a{font-size:.756em;padding:3px;background-color:#fff;border-radius:3px}footer #block-footer ul li a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;margin-right:.5em}footer #block-footer ul li a.is-active:before,footer #block-footer ul li a:hover:before{background-color:#000}footer #block-footer ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@media only screen and (max-width:1270px){footer #block-footer{margin-top:15px}footer #block-footer ul li{display:block;margin-left:0!important;padding:0;line-height:.6}footer #block-footer ul li a{font-size:.756em;font-weight:400;line-height:1.4;padding:0}}footer nav#block-productions.block-menu ul{margin:0;padding:0}footer nav#block-productions.block-menu ul li{pointer-events:all;display:inline-block;position:relative;list-style:none;margin:0 1.5em 0 0;padding:0;height:200px}footer nav#block-productions.block-menu ul li a{position:absolute;bottom:0;-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);color:#000;text-decoration:none;text-transform:uppercase;font-size:.756em;white-space:nowrap}footer nav#block-productions.block-menu ul li:first-of-type{margin-left:1em}footer nav#block-productions.block-menu{position:relative;pointer-events:none;display:none}body.entity-type-node.bundle-page footer nav#block-productions.block-menu,body.path-productions footer nav#block-productions.block-menu{display:inline-block}footer nav#block-productions.block-menu ul{margin-left:-3em;white-space:nowrap}footer nav#block-productions.block-menu ul li a{padding:3px .4em 3px 3px;background-color:#fff;border-radius:3px;pointer-events:all;background-color:rgba(255,255,255,.6)}footer nav#block-productions.block-menu ul li a:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid red;margin-right:.5em}footer nav#block-productions.block-menu ul li a.is-active-trail:before,footer nav#block-productions.block-menu ul li a.is-active:before,footer nav#block-productions.block-menu ul li a:hover:before{background-color:red}footer nav#block-productions.block-menu ul li a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}footer .block-block-edlp-entrees{pointer-events:none;display:inline-block}body.entity-type-node.bundle-page footer .block-block-edlp-entrees,body.path-agenda footer .block-block-edlp-entrees,body.path-productions footer .block-block-edlp-entrees{display:none}footer .block-block-edlp-entrees div.item-list ul{margin:0;white-space:nowrap}footer .block-block-edlp-entrees div.item-list ul li{display:inline-block;position:relative;list-style:none;padding:0;margin:0;white-space:nowrap;pointer-events:none}footer .block-block-edlp-entrees div.item-list ul li a{position:absolute;bottom:0;-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotateZ(-45deg);transform:rotateZ(-45deg);color:#000;text-decoration:none;text-transform:uppercase;font-size:.756em;white-space:nowrap}footer .block-block-edlp-entrees div.item-list ul li:last-of-type:not(.entree){margin-right:5em}footer .block-block-edlp-entrees div.item-list ul li span.oblique-wrapper{height:120px;display:inline-block;vertical-align:bottom;position:relative;width:1.5em}footer .block-block-edlp-entrees div.item-list ul li a.articles-link,footer .block-block-edlp-entrees div.item-list ul li a.term-link{pointer-events:all;background-color:rgba(255,255,255,.6);padding-right:.4em;color:#000;-webkit-transition:color .3s ease-in-out;transition:color .3s ease-in-out}footer .block-block-edlp-entrees div.item-list ul li a.articles-link:before,footer .block-block-edlp-entrees div.item-list ul li a.term-link:before{content:"";display:inline-block;width:7px;height:7px;border:1px solid #000;background-color:#000;margin-right:.5em;-webkit-transition:background-color .1s ease-in-out;transition:background-color .1s ease-in-out}footer .block-block-edlp-entrees div.item-list ul li a.articles-link.articles-link,footer .block-block-edlp-entrees div.item-list ul li a.term-link.articles-link{margin-left:4em;text-transform:capitalize}footer .block-block-edlp-entrees div.item-list ul li .entree-content{display:inline-block;width:0;overflow:hidden;opacity:0;-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;-webkit-transition-property:width,opacity;transition-property:width,opacity}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper:first-of-type{margin-left:.5em}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a{text-transform:none;pointer-events:auto}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a:before{content:"";display:inline-block;width:5px;height:5px;border:1px solid #000;margin-right:.5em}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a.ajax-loading:before{-webkit-animation:rotation 2s infinite linear;animation:rotation 2s infinite linear}@keyframes rotation{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}footer .block-block-edlp-entrees div.item-list ul li .entree-content .term-description{display:inline-block;margin-left:1.5em;text-align:left;width:250px;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;white-space:normal;background-color:rgba(255,255,255,.95);padding:.5em .5em 0}footer .block-block-edlp-entrees div.item-list ul li .entree-content .term-description p{font-size:.65em;margin:0}footer .block-block-edlp-entrees div.item-list ul li[tid='134'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='134'] a.term-link:before{border-color:var(--e-col-134);background-color:var(--e-col-134)}footer .block-block-edlp-entrees div.item-list ul li[tid='121'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='121'] a.term-link:before{border-color:var(--e-col-121);background-color:var(--e-col-121)}footer .block-block-edlp-entrees div.item-list ul li[tid='125'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='125'] a.term-link:before{border-color:var(--e-col-125);background-color:var(--e-col-125)}footer .block-block-edlp-entrees div.item-list ul li[tid='119'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='119'] a.term-link:before{border-color:var(--e-col-119);background-color:var(--e-col-119)}footer .block-block-edlp-entrees div.item-list ul li[tid='132'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='132'] a.term-link:before{border-color:var(--e-col-132);background-color:var(--e-col-132)}footer .block-block-edlp-entrees div.item-list ul li[tid='122'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='122'] a.term-link:before{border-color:var(--e-col-122);background-color:var(--e-col-122)}footer .block-block-edlp-entrees div.item-list ul li[tid='129'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='129'] a.term-link:before{border-color:var(--e-col-129);background-color:var(--e-col-129)}footer .block-block-edlp-entrees div.item-list ul li[tid='120'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='120'] a.term-link:before{border-color:var(--e-col-120);background-color:var(--e-col-120)}footer .block-block-edlp-entrees div.item-list ul li[tid='130'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='130'] a.term-link:before{border-color:var(--e-col-130);background-color:var(--e-col-130)}footer .block-block-edlp-entrees div.item-list ul li[tid='118'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='118'] a.term-link:before{border-color:var(--e-col-118);background-color:var(--e-col-118)}footer .block-block-edlp-entrees div.item-list ul li[tid='127'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='127'] a.term-link:before{border-color:var(--e-col-127);background-color:var(--e-col-127)}footer .block-block-edlp-entrees div.item-list ul li[tid='133'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='133'] a.term-link:before{border-color:var(--e-col-133);background-color:var(--e-col-133)}footer .block-block-edlp-entrees div.item-list ul li[tid='128'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='128'] a.term-link:before{border-color:var(--e-col-128);background-color:var(--e-col-128)}footer .block-block-edlp-entrees div.item-list ul li[tid='124'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='124'] a.term-link:before{border-color:var(--e-col-124);background-color:var(--e-col-124)}footer .block-block-edlp-entrees div.item-list ul li[tid='116'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='116'] a.term-link:before{border-color:var(--e-col-116);background-color:var(--e-col-116)}footer .block-block-edlp-entrees div.item-list ul li[tid='117'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='117'] a.term-link:before{border-color:var(--e-col-117);background-color:var(--e-col-117)}footer .block-block-edlp-entrees div.item-list ul li[tid='131'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='131'] a.term-link:before{border-color:var(--e-col-131);background-color:var(--e-col-131)}footer .block-block-edlp-entrees div.item-list ul li[tid='126'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='126'] a.term-link:before{border-color:var(--e-col-126);background-color:var(--e-col-126)}footer .block-block-edlp-entrees div.item-list ul li[tid='123'] .entree-content span.oblique-wrapper a:before,footer .block-block-edlp-entrees div.item-list ul li[tid='123'] a.term-link:before{border-color:var(--e-col-123);background-color:var(--e-col-123)}footer .block-block-edlp-entrees div.item-list ul li .entree-content span.oblique-wrapper a:not(:hover):not(.is-active):before,footer .block-block-edlp-entrees div.item-list ul li a.articles-link:not(:hover):not(.is-active):before,footer .block-block-edlp-entrees div.item-list ul li:not(.opened):not(.highlighted) a.term-link:not(:hover):before{background-color:#fff!important}footer .block-block-edlp-entrees div.item-list ul li.opened a.term-link:after{content:'';position:absolute;left:15px;right:0;bottom:-3px;border-bottom:1px solid grey}footer .block-block-edlp-entrees div.item-list ul li.opened .entree-content{width:350px;opacity:1}footer .block-block-edlp-entrees div.item-list.highlighted li:not(.opened):not(.highlighted):not(:hover) a.term-link,footer .block-block-edlp-entrees div.item-list.opened li:not(.opened):not(.highlighted):not(:hover) a.term-link{color:#a1a1a1}footer .block.random-player{margin-bottom:1em;pointer-events:all;margin-left:.5em;position:relative}footer .block.random-player a{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:20px;height:20px;text-indent:40px;margin:0;overflow:hidden;background-image:url(../img/random.svg);background-repeat:no-repeat;background-size:contain;cursor:pointer}footer .block.random-player a.is-active,footer .block.random-player a:hover{background-image:url(../img/random-active.svg)}footer .block.random-player a[alt]:hover:after{content:attr(alt);position:absolute;right:0;bottom:24px;width:170px;border:1px solid red;padding:.5em;font-size:.756em;background-color:#fff;z-index:50}html.is-mobile footer .block.random-player a{width:15px;height:15px;text-indent:30px}footer #block-studiolinkblock{margin-bottom:1em;pointer-events:all;margin-left:.5em;position:relative}footer #block-studiolinkblock a{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;width:20px;height:20px;text-indent:40px;margin:0;overflow:hidden;background-image:url(../img/studio.svg);background-repeat:no-repeat;background-size:contain;cursor:pointer}footer #block-studiolinkblock a.is-active,footer #block-studiolinkblock a:hover{background-image:url(../img/studio-active.svg)}footer #block-studiolinkblock a[alt]:hover:after{content:attr(alt);position:absolute;right:0;bottom:24px;width:170px;border:1px solid red;padding:.5em;font-size:.756em;background-color:#fff;z-index:50}html.is-mobile footer #block-studiolinkblock a{width:15px;height:15px;text-indent:30px}footer #block-edlpsearchlinkblock a,footer #block-userlogin h2{width:20px;text-indent:40px;overflow:hidden;cursor:pointer;background-size:contain}footer #block-userlogin{margin-bottom:1em;pointer-events:all;margin-left:.2em;position:relative;width:20px;height:20px}footer #block-userlogin h2{-webkit-box-sizing:content-box;box-sizing:content-box;position:relative;height:20px;background-image:url(../img/studio.svg);margin:0;z-index:1}footer #block-userlogin .block-content{z-index:0;position:absolute;right:0;bottom:20px;padding:.5em .5em 20px;background-color:rgba(255,255,255,.95);border-top:1px solid red;border-bottom:1px solid red;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box;height:0;opacity:0;pointer-events:none;-webkit-transition:all .5s ease-in-out;transition:all .5s ease-in-out;-webkit-transition-property:height,opacity;transition-property:height,opacity}footer #block-userlogin .block-content form{font-size:.75em}footer #block-userlogin .block-content .item-list ul{margin:0}footer #block-userlogin .block-content .item-list li{margin:0;list-style:none}footer #block-userlogin .block-content .item-list li a{font-size:.75em;white-space:nowrap}footer #block-userlogin:hover .block-content{height:200px;opacity:1;pointer-events:auto}footer #block-edlpsearchlinkblock{margin-bottom:1em;pointer-events:all;position:relative;margin-left:.2em}footer #block-edlpsearchlinkblock a{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;height:20px;margin:0;background-image:url(../img/search.svg);background-repeat:no-repeat}footer #block-edlpsearchlinkblock a.is-active,footer #block-edlpsearchlinkblock a:hover{background-image:url(../img/search-active.svg)}footer #block-edlpsearchlinkblock a[alt]:hover:after{content:attr(alt);position:absolute;right:0;bottom:24px;width:170px;border:1px solid red;padding:.5em;font-size:.756em;background-color:#fff;z-index:50}html.is-mobile footer #block-edlpsearchlinkblock a{width:15px;height:15px;text-indent:30px}footer .block-language{float:none;margin-top:0;margin-right:2em}footer .block-language ul{margin:0;padding:0}footer .block-language ul li{display:inline-block;vertical-align:middle;list-style:none;pointer-events:all}footer .block-language ul li a{font-size:.69em;text-transform:capitalize;margin-left:.8em;padding:3px;background-color:#fff;border-radius:3px}footer .block-language ul li a:before{content:"";display:inline-block;width:.6em;height:.6em;border:1px solid red;margin-right:.3em}footer .block-language ul li.is-active a:before,footer .block-language ul li:hover a:before{border-color:red;background-color:red}html.is-mobile footer .block-language{border-left:none}html.is-mobile footer .block-language ul{margin-right:.5em}html.is-mobile footer .block-language li{line-height:0}html.is-mobile footer .block-language li a{padding:0;margin:0}html.is-mobile footer .block-language li a.is-active{display:none}html.is-mobile footer{position:fixed;-webkit-box-sizing:border-box;box-sizing:border-box;bottom:0;left:0;width:100%;background-color:#fff;padding-top:0;padding-bottom:0}html.is-mobile footer .region-footer-left,html.is-mobile footer .region-footer-right{width:50%}html.is-mobile footer .region-footer-left>*,html.is-mobile footer .region-footer-right>*{margin:.4em 0!important}html.is-mobile footer #block-footer li,html.is-mobile footer .block-language li{display:inline-block}html.is-mobile footer #block-footer li a,html.is-mobile footer .block-language li a{font-size:.68em}html.is-mobile footer #block-footer li a:before,html.is-mobile footer .block-language li a:before{width:5px;height:5px}html.is-mobile footer .region-footer-right{text-align:right}.node-popup .inner{position:relative}.node-popup .inner .entrees{white-space:nowrap;font-size:.5em;line-height:0;letter-spacing:0}.node-popup .inner .entrees span{display:inline-block;width:6px;height:6px;background-color:#000;margin-right:2px}.node-popup .inner .entrees span[tid='134']{background-color:var(--e-col-134)}.node-popup .inner .entrees span[tid='121']{background-color:var(--e-col-121)}.node-popup .inner .entrees span[tid='125']{background-color:var(--e-col-125)}.node-popup .inner .entrees span[tid='119']{background-color:var(--e-col-119)}.node-popup .inner .entrees span[tid='132']{background-color:var(--e-col-132)}.node-popup .inner .entrees span[tid='122']{background-color:var(--e-col-122)}.node-popup .inner .entrees span[tid='129']{background-color:var(--e-col-129)}.node-popup .inner .entrees span[tid='120']{background-color:var(--e-col-120)}.node-popup .inner .entrees span[tid='130']{background-color:var(--e-col-130)}.node-popup .inner .entrees span[tid='118']{background-color:var(--e-col-118)}.node-popup .inner .entrees span[tid='127']{background-color:var(--e-col-127)}.node-popup .inner .entrees span[tid='133']{background-color:var(--e-col-133)}.node-popup .inner .entrees span[tid='128']{background-color:var(--e-col-128)}.node-popup .inner .entrees span[tid='124']{background-color:var(--e-col-124)}.node-popup .inner .entrees span[tid='116']{background-color:var(--e-col-116)}.node-popup .inner .entrees span[tid='117']{background-color:var(--e-col-117)}.node-popup .inner .entrees span[tid='131']{background-color:var(--e-col-131)}.node-popup .inner .entrees span[tid='126']{background-color:var(--e-col-126)}.node-popup .inner .entrees span[tid='123']{background-color:var(--e-col-123)}.node-popup .inner .title{margin:.2em 0 0;font-size:.9em;font-weight:600}.node-popup .inner .description p{margin:0;font-size:.756em}.node-popup .inner .chutier-icon{position:absolute;top:.4em;right:.4em}.node-popup .inner .chutier-icon[action=add]{display:none}.url-to-video-container{margin:10px auto}.url-to-video-container.no-js{border:1px solid #000}.url-to-video-container.no-js .url-to-video-player{cursor:auto}.url-to-video-container .loader{top:auto;left:auto;-webkit-transform:none;transform:none}.url-to-video-container span.url-to-video-player{padding-bottom:0;height:auto}.url-to-video-container span.url-to-video-player:before{content:"";display:block;padding-top:56.25%}.url-to-video-container span.url-to-video-player .play-button{z-index:5;top:50%}#user-register-form{width:29em}#user-register-form input{font-size:.82em;font-weight:400;line-height:1.4}#user-register-form label{font-size:.82em;font-weight:600;line-height:1.6;text-transform:none;display:inline-block;width:16em;white-space:normal}#user-register-form .form-item{white-space:nowrap}#user-register-form .description{font-size:.756em;font-weight:400;line-height:1.4;max-width:100%;white-space:normal}#better-messages-default.better-messages-overlay .better-messages-footer .better-messages-close,#user-register-form .password-confirm,#user-register-form .password-strength__title{font-size:.82em;font-weight:400;line-height:1.4}#user-register-form input[type=email],#user-register-form input[type=password]{width:17em}#user-register-form .password-strength,#user-register-form .password-strength__meter{width:98%}#better-messages-default.better-messages-overlay{border-radius:0;padding:.8em;-webkit-box-shadow:0 2px 10px #716f6f;box-shadow:0 2px 10px #716f6f}#better-messages-default.better-messages-overlay .better-messages-footer{border-top:none}#better-messages-default.better-messages-overlay .better-messages-footer .better-messages-close span{height:15px;width:15px;background-size:contain}
\ No newline at end of file
diff --git a/sites/all/themes/custom/edlptheme/assets/scripts/main.js b/sites/all/themes/custom/edlptheme/assets/scripts/main.js
index b26a0a5d8..7338f3f59 100644
--- a/sites/all/themes/custom/edlptheme/assets/scripts/main.js
+++ b/sites/all/themes/custom/edlptheme/assets/scripts/main.js
@@ -65,11 +65,21 @@
function initHomeMobile(){
$('.field--name-field-notice, .index', '.entrees .taxonomy-term.vocabulary-entrees')
.addClass('closed');
+ $('[data-drupal-link-system-path=""]','#block-mainnavigation')
+ .removeClass('is-active')
+ .attr('href', '#collection');
+ $('h2#block-mainnavigation-menu, a', '#block-mainnavigation')
+ .on('click', onclickHomeMobileMenu);
+ // $('a', '#block-mainnavigation')
+ // .on('click', onclickHomeMobileMenu);
$('.field--name-field-notice>.field__label', '.entrees .taxonomy-term.vocabulary-entrees')
.on('click', onClickHomeMobileNotice);
$('.index>.field__label', '.entrees .taxonomy-term.vocabulary-entrees')
.on('click', onClickHomeMobileIndex);
};
+ function onclickHomeMobileMenu(e){
+ $('#block-mainnavigation').toggleClass('visible');
+ };
function onClickHomeMobileNotice(e){
// console.log('onClickHomeMobileNotice');
// var $part = $(this).parent();//parents('.taxonomy-term');
diff --git a/sites/all/themes/custom/edlptheme/assets/styles/app.scss b/sites/all/themes/custom/edlptheme/assets/styles/app.scss
index 25b48bfd5..4c9d92467 100644
--- a/sites/all/themes/custom/edlptheme/assets/styles/app.scss
+++ b/sites/all/themes/custom/edlptheme/assets/styles/app.scss
@@ -156,13 +156,58 @@ header[role="banner"]{
}
}
html.is-mobile &{
- // outline: 1px solid orange;
+ // outline: 1px solid blue;
margin-top:4px;
- li{
- a{
- font-size: 0.680em;
- padding:0; margin:0;
+ width:50px; //height:25px;
+ overflow: visible;
+ $square-size:15px;
+ >h2#block-mainnavigation-menu.visually-hidden{
+ // outline: 1px solid green;
+ right:0;
+ clip: auto;
+ margin:0;
+ text-indent: 100px;
+ cursor: pointer;
+ width:$square-size*2; height:$square-size*2;
+ background-size:$square-size $square-size;
+ background-color: white;
+ background-repeat: repeat;
+ background-image:
+ // hiddings off-square lines
+ linear-gradient(90deg, white 0, white 2px, transparent 2px, transparent),
+ linear-gradient(90deg, transparent 0, transparent $square-size - 2, white $square-size - 2, white),
+ linear-gradient(0deg, white 0, white 2px, transparent 2px, transparent),
+ linear-gradient(0deg, transparent 0, transparent $square-size - 2, white $square-size - 2, white),
+ // drawing the lines
+ linear-gradient(90deg, transparent 0, transparent 2px, red 2px, transparent 3px, transparent),
+ linear-gradient(90deg, transparent 0, transparent $square-size - 3, red $square-size - 3, transparent $square-size - 2, transparent),
+ linear-gradient(0deg, transparent 0, transparent 2px, red 2px, transparent 3px, transparent),
+ linear-gradient(0deg, transparent 0, transparent $square-size - 3, red $square-size - 3, transparent $square-size - 2, transparent);
+ }
+ ul.menu{
+ // outline: 1px solid orange;
+ border-top: 1px solid red;
+ border-bottom: 1px solid red;
+ position:absolute;
+ background-color: white;
+ width:300px;
+ padding: 1em;
+ top:$square-size * 3; left:100px;
+ transition: left 0.2s ease-in-out;
+ li{
+ &:first-of-type{
+ display:block;
+ }
+ a{
+ font-size: 0.680em;
+ padding:0; margin:0;
+ }
}
+
+ }
+
+ &.visible ul.menu{
+ left:-130px;
}
}
}
@@ -405,6 +450,7 @@ main[role="main"]{
@include content_courant;
}
}
+
}
article.node--type-evenement{
@@ -533,11 +579,65 @@ main[role="main"]{
}
}
+ html.is-mobile & .entrees{
+ #collection{
+ margin-top: -80px;
+ margin-bottom: 80px;
+ }
+ h3{
+ @include content_titles;
+ text-align: center;
+ padding-top: 0.5em;
+ }
+ article.node--type-enregistrement{
+ margin:0.7em 0 0 0;
+ h2.node-title{
+ margin: 0;
+ }
+ div.entrees{
+ @include entree-micro-square;
+ }
+ p{margin: 0;}
+ }
+ }
+
div.taxonomy-term.vocabulary-entrees.home_mobile{
// &:not(:first-of-type){
padding-bottom: 1em;
- border-bottom: 1px solid red;
+ // border-bottom: 1px solid red;
// }
+ > h2{
+ white-space:nowrap;
+ &:before{
+ content: "";
+ display:inline-block;
+ $sq:10px;
+ width: $sq; height:$sq;
+ border: 1px solid #000;
+ margin-right: 0.5em;
+ }
+ div{display: inline-block;}
+ }
+ &[tid='134']{>h2:before{border-color: var(--e-col-134);}}
+ &[tid='121']{>h2:before{border-color: var(--e-col-121);}}
+ &[tid='125']{>h2:before{border-color: var(--e-col-125);}}
+ &[tid='119']{>h2:before{border-color: var(--e-col-119);}}
+ &[tid='132']{>h2:before{border-color: var(--e-col-132);}}
+ &[tid='122']{>h2:before{border-color: var(--e-col-122);}}
+ &[tid='129']{>h2:before{border-color: var(--e-col-129);}}
+ &[tid='120']{>h2:before{border-color: var(--e-col-120);}}
+ &[tid='130']{>h2:before{border-color: var(--e-col-130);}}
+ &[tid='118']{>h2:before{border-color: var(--e-col-118);}}
+ &[tid='127']{>h2:before{border-color: var(--e-col-127);}}
+ &[tid='133']{>h2:before{border-color: var(--e-col-133);}}
+ &[tid='128']{>h2:before{border-color: var(--e-col-128);}}
+ &[tid='124']{>h2:before{border-color: var(--e-col-124);}}
+ &[tid='116']{>h2:before{border-color: var(--e-col-116);}}
+ &[tid='117']{>h2:before{border-color: var(--e-col-117);}}
+ &[tid='131']{>h2:before{border-color: var(--e-col-131);}}
+ &[tid='126']{>h2:before{border-color: var(--e-col-126);}}
+ &[tid='123']{>h2:before{border-color: var(--e-col-123);}}
+
.field--name-field-notice, .index{
>.field__label{
cursor: pointer;
@@ -668,6 +768,8 @@ main[role="main"]{
.audiofield label{display: none;}
}
+
+
}
diff --git a/sites/all/themes/custom/edlptheme/templates/content/edlp-home.html.twig b/sites/all/themes/custom/edlptheme/templates/content/edlp-home.html.twig
index bdbb0a54e..0eb22ccf0 100644
--- a/sites/all/themes/custom/edlptheme/templates/content/edlp-home.html.twig
+++ b/sites/all/themes/custom/edlptheme/templates/content/edlp-home.html.twig
@@ -17,13 +17,15 @@
#}
- {% for node in nodes %}
-
-
- {{ node.build }}
+ {% if nodes %}
+ {% for node in nodes %}
+
-
- {% endfor %}
+ {% endfor %}
+ {% endif %}
{% if lastdocs %}
diff --git a/sites/all/themes/custom/edlptheme/templates/content/node--enregistrement--index-home.html.twig b/sites/all/themes/custom/edlptheme/templates/content/node--enregistrement--index-home.html.twig
new file mode 100644
index 000000000..023f23615
--- /dev/null
+++ b/sites/all/themes/custom/edlptheme/templates/content/node--enregistrement--index-home.html.twig
@@ -0,0 +1,99 @@
+{#
+/**
+ * @file
+ * Theme override to display a node.
+ *
+ * Available variables:
+ * - node: The node entity with limited access to object properties and methods.
+ * Only method names starting with "get", "has", or "is" and a few common
+ * methods such as "id", "label", and "bundle" are available. For example:
+ * - node.getCreatedTime() will return the node creation timestamp.
+ * - node.hasField('field_example') returns TRUE if the node bundle includes
+ * field_example. (This does not indicate the presence of a value in this
+ * field.)
+ * - node.isPublished() will return whether the node is published or not.
+ * Calling other methods, such as node.delete(), will result in an exception.
+ * See \Drupal\node\Entity\Node for a full list of public properties and
+ * methods for the node object.
+ * - label: The title of the node.
+ * - content: All node items. Use {{ content }} to print them all,
+ * or print a subset such as {{ content.field_example }}. Use
+ * {{ content|without('field_example') }} to temporarily suppress the printing
+ * of a given child element.
+ * - author_picture: The node author user entity, rendered using the "compact"
+ * view mode.
+ * - metadata: Metadata for this node.
+ * - date: Themed creation date field.
+ * - author_name: Themed author name field.
+ * - url: Direct URL of the current node.
+ * - display_submitted: Whether submission information should be displayed.
+ * - attributes: HTML attributes for the containing element.
+ * The attributes.class element may contain one or more of the following
+ * classes:
+ * - node: The current template type (also known as a "theming hook").
+ * - node--type-[type]: The current node type. For example, if the node is an
+ * "Article" it would result in "node--type-article". Note that the machine
+ * name will often be in a short form of the human readable label.
+ * - node--view-mode-[view_mode]: The View Mode of the node; for example, a
+ * teaser would result in: "node--view-mode-teaser", and
+ * full: "node--view-mode-full".
+ * The following are controlled through the node publishing options.
+ * - node--promoted: Appears on nodes promoted to the front page.
+ * - node--sticky: Appears on nodes ordered above other non-sticky nodes in
+ * teaser listings.
+ * - node--unpublished: Appears on unpublished nodes visible only to site
+ * admins.
+ * - title_attributes: Same as attributes, except applied to the main title
+ * tag that appears in the template.
+ * - content_attributes: Same as attributes, except applied to the main
+ * content tag that appears in the template.
+ * - author_attributes: Same as attributes, except applied to the author of
+ * the node tag that appears in the template.
+ * - title_prefix: Additional output populated by modules, intended to be
+ * displayed in front of the main title tag that appears in the template.
+ * - title_suffix: Additional output populated by modules, intended to be
+ * displayed after the main title tag that appears in the template.
+ * - view_mode: View mode; for example, "teaser" or "full".
+ * - teaser: Flag for the teaser state. Will be true if view_mode is 'teaser'.
+ * - page: Flag for the full page state. Will be true if view_mode is 'full'.
+ * - readmore: Flag for more state. Will be true if the teaser content of the
+ * node cannot hold the main body content.
+ * - logged_in: Flag for authenticated user status. Will be true when the
+ * current user is a logged-in member.
+ * - is_admin: Flag for admin user status. Will be true when the current user
+ * is an administrator.
+ *
+ * @see template_preprocess_node()
+ *
+ * @todo Remove the id attribute (or make it a class), because if that gets
+ * rendered twice on a page this is invalid CSS for example: two lists
+ * in different view modes.
+ */
+#}
+{%
+ set classes = [
+ 'node',
+ 'node--type-' ~ node.bundle|clean_class,
+ node.isPromoted() ? 'node--promoted',
+ node.isSticky() ? 'node--sticky',
+ not node.isPublished() ? 'node--unpublished',
+ view_mode ? 'node--view-mode-' ~ view_mode|clean_class,
+ ]
+%}
+{{ attach_library('classy/node') }}
+
+
+ {# THIS IS REALLY DIRTY !! #}
+ {% for key, child in content.field_entrees if key|first != '#' %}
+ {% set tid = child['#cache']['tags'][0]|replace({'taxonomy_term:':''}) %}
+
+ {% endfor %}
+
+
+
+ {{ content|without('field_entrees') }}
+
+
+
diff --git a/sites/all/themes/custom/edlptheme/templates/content/taxonomy-term--entrees--home-mobile.html.twig b/sites/all/themes/custom/edlptheme/templates/content/taxonomy-term--entrees--home-mobile.html.twig
index 9d5a7c753..f2f6aac3f 100644
--- a/sites/all/themes/custom/edlptheme/templates/content/taxonomy-term--entrees--home-mobile.html.twig
+++ b/sites/all/themes/custom/edlptheme/templates/content/taxonomy-term--entrees--home-mobile.html.twig
@@ -30,7 +30,7 @@
view_mode
]
%}
-
+
{{ title_prefix }}
{% if not page %}
{{ name }}
diff --git a/sites/default/config/sync/core.entity_view_display.node.enregistrement.index_home.yml b/sites/default/config/sync/core.entity_view_display.node.enregistrement.index_home.yml
new file mode 100644
index 000000000..add92e56f
--- /dev/null
+++ b/sites/default/config/sync/core.entity_view_display.node.enregistrement.index_home.yml
@@ -0,0 +1,63 @@
+uuid: 57efff67-4368-4413-b06d-bdb5f77d9e94
+langcode: fr
+status: true
+dependencies:
+ config:
+ - core.entity_view_mode.node.index_home
+ - field.field.node.enregistrement.body
+ - field.field.node.enregistrement.field_collectionneurs
+ - field.field.node.enregistrement.field_description
+ - field.field.node.enregistrement.field_entrees
+ - field.field.node.enregistrement.field_genres
+ - field.field.node.enregistrement.field_langues
+ - field.field.node.enregistrement.field_locuteurs
+ - field.field.node.enregistrement.field_nbr_locuteurs
+ - field.field.node.enregistrement.field_son
+ - field.field.node.enregistrement.field_transcript_trad
+ - field.field.node.enregistrement.field_transcript_vo
+ - field.field.node.enregistrement.field_workflow
+ - node.type.enregistrement
+ module:
+ - text
+ - user
+id: node.enregistrement.index_home
+targetEntityType: node
+bundle: enregistrement
+mode: index_home
+content:
+ content_moderation_control:
+ weight: -20
+ region: content
+ settings: { }
+ third_party_settings: { }
+ field_description:
+ weight: 1
+ label: hidden
+ settings: { }
+ third_party_settings: { }
+ type: text_default
+ region: content
+ field_entrees:
+ type: entity_reference_label
+ weight: 0
+ region: content
+ label: hidden
+ settings:
+ link: false
+ third_party_settings: { }
+hidden:
+ addtoany: true
+ body: true
+ chutier_actions: true
+ field_collectionneurs: true
+ field_genres: true
+ field_langues: true
+ field_locuteurs: true
+ field_nbr_locuteurs: true
+ field_son: true
+ field_transcript_trad: true
+ field_transcript_vo: true
+ field_workflow: true
+ langcode: true
+ links: true
+ relations: true
diff --git a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.default.yml b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.default.yml
index c1eb1f72f..6e76b7da8 100644
--- a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.default.yml
+++ b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.default.yml
@@ -30,4 +30,5 @@ hidden:
description: true
field_color: true
field_workflow: true
+ index-home: true
langcode: true
diff --git a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.home_mobile.yml b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.home_mobile.yml
index 480037390..c614ba22d 100644
--- a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.home_mobile.yml
+++ b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.home_mobile.yml
@@ -29,7 +29,7 @@ content:
third_party_settings: { }
type: text_default
region: content
- index:
+ index-home:
weight: 2
region: content
settings: { }
@@ -37,4 +37,5 @@ content:
hidden:
field_color: true
field_workflow: true
+ index: true
langcode: true
diff --git a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.index.yml b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.index.yml
index 9522774fe..dfb0a445d 100644
--- a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.index.yml
+++ b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.index.yml
@@ -23,4 +23,5 @@ hidden:
field_color: true
field_notice: true
field_workflow: true
+ index-home: true
langcode: true
diff --git a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.notice.yml b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.notice.yml
index 9b4d224cf..fc2678db2 100644
--- a/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.notice.yml
+++ b/sites/default/config/sync/core.entity_view_display.taxonomy_term.entrees.notice.yml
@@ -27,4 +27,5 @@ hidden:
field_color: true
field_workflow: true
index: true
+ index-home: true
langcode: true
diff --git a/sites/default/config/sync/core.entity_view_mode.node.index_home.yml b/sites/default/config/sync/core.entity_view_mode.node.index_home.yml
new file mode 100644
index 000000000..893d10a1d
--- /dev/null
+++ b/sites/default/config/sync/core.entity_view_mode.node.index_home.yml
@@ -0,0 +1,10 @@
+uuid: e7387350-92dc-48d7-8e27-bd6f6ffa225e
+langcode: fr
+status: true
+dependencies:
+ module:
+ - node
+id: node.index_home
+label: 'index (Home)'
+targetEntityType: node
+cache: true