Browse Source

first set of Maud corrections

Bachir Soussi Chiadmi 9 years ago
parent
commit
e323a84aec
39 changed files with 9491 additions and 231 deletions
  1. 7 0
      .directory
  2. 1 1
      sites/all/modules/contrib/fields/video_embed_field/video_embed_field.field.inc
  3. 68 1
      sites/all/modules/gui/jeemod/jeemod.module
  4. BIN
      sites/all/themes/gui/jee/.sass-cache/06dcbe1fa5b03937e94c01bbbc1f20c6e165e878/jee.scssc
  5. 62 0
      sites/all/themes/gui/jee/assets/img/home-btn.svg
  6. BIN
      sites/all/themes/gui/jee/assets/img/logo-blured.png
  7. 1331 1
      sites/all/themes/gui/jee/assets/img/logo-blured.svg
  8. BIN
      sites/all/themes/gui/jee/assets/img/logo.png
  9. 1321 2
      sites/all/themes/gui/jee/assets/img/logo.svg
  10. 140 0
      sites/all/themes/gui/jee/assets/img/title-BC-blur.svg
  11. BIN
      sites/all/themes/gui/jee/assets/img/title-BC.png
  12. 125 0
      sites/all/themes/gui/jee/assets/img/title-BC.svg
  13. 215 0
      sites/all/themes/gui/jee/assets/img/title-DPH-blur.svg
  14. BIN
      sites/all/themes/gui/jee/assets/img/title-DPH.png
  15. 200 0
      sites/all/themes/gui/jee/assets/img/title-DPH.svg
  16. 248 0
      sites/all/themes/gui/jee/assets/img/title-DUB-blur.svg
  17. BIN
      sites/all/themes/gui/jee/assets/img/title-DUB.png
  18. 233 0
      sites/all/themes/gui/jee/assets/img/title-DUB.svg
  19. 155 0
      sites/all/themes/gui/jee/assets/img/title-JUSO-blur.svg
  20. BIN
      sites/all/themes/gui/jee/assets/img/title-JUSO.png
  21. 140 0
      sites/all/themes/gui/jee/assets/img/title-JUSO.svg
  22. 1934 0
      sites/all/themes/gui/jee/assets/img/title-OPP-blur.svg
  23. BIN
      sites/all/themes/gui/jee/assets/img/title-OPP.png
  24. 1920 0
      sites/all/themes/gui/jee/assets/img/title-OPP.svg
  25. 134 0
      sites/all/themes/gui/jee/assets/img/title-SOL-blur.svg
  26. BIN
      sites/all/themes/gui/jee/assets/img/title-SOL.png
  27. 119 0
      sites/all/themes/gui/jee/assets/img/title-SOL.svg
  28. 141 0
      sites/all/themes/gui/jee/assets/img/title-SUB-blur.svg
  29. BIN
      sites/all/themes/gui/jee/assets/img/title-SUB.png
  30. 126 0
      sites/all/themes/gui/jee/assets/img/title-SUB.svg
  31. 2 1
      sites/all/themes/gui/jee/bower.json
  32. 50 0
      sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/.bower.json
  33. 40 0
      sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/bower.json
  34. 196 0
      sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/dist/jquery.vimeo.api.js
  35. 1 0
      sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/dist/jquery.vimeo.api.min.js
  36. 301 140
      sites/all/themes/gui/jee/css/jee.css
  37. 87 16
      sites/all/themes/gui/jee/css/jee.scss
  38. 1 0
      sites/all/themes/gui/jee/jee.info
  39. 193 69
      sites/all/themes/gui/jee/js/jee.js

+ 7 - 0
.directory

@@ -0,0 +1,7 @@
+[Dolphin]
+Timestamp=2015,3,17,13,30,24
+Version=3
+ViewMode=1
+
+[Settings]
+HiddenFilesShown=true

+ 1 - 1
sites/all/modules/contrib/fields/video_embed_field/video_embed_field.field.inc

@@ -153,7 +153,7 @@ function video_embed_field_field_presave($entity_type, $entity, $field, $instanc
     $items[$delta]['video_url'] = trim($item['video_url']);
 
     // Try to load thumbnail URL
-    $info = video_embed_field_thumbnail_url($item['video_url']);  
+    $info = video_embed_field_thumbnail_url($item['video_url']);
     if (isset($info['url']) && $info['url']) {
       $thumb_url = $info['url'];
       $local_path = 'public://video_embed_field_thumbnails/' . $info['handler'] . '/' . $info['id'] . '.jpg';

+ 68 - 1
sites/all/modules/gui/jeemod/jeemod.module

@@ -30,4 +30,71 @@ function jeemod_entity_info_alter(&$entity_info) {
     'label' => t('chapter'),
     'custom settings' => TRUE,
   );
-}
+}
+
+
+
+
+/**
+ * Implements hook_video_embed_field_handlers_alter().
+ */
+function jeemod_video_embed_field_handlers_alter(&$handlers) {
+  $handlers['vimeo']['function'] = 'jeemod_handle_vimeo';
+}
+
+/**
+ * Wrapper function to allow forcing API to be enabled for Vimeo videos.
+ */
+function jeemod_handle_vimeo($url, $settings) {
+  // dsm($settings, 'settings');
+  // dsm($url, 'url');
+
+  $settings['api'] = 1;
+
+  // $r = db_query("SELECT entity_id FROM {field_data_field_video} WHERE field_video_video_url = :url", array(
+  //   ':url' => $url
+  //   ));
+
+  // foreach($r as $result){
+  //   $id = $result->entity_id;
+  // }
+
+  // $id =
+  // $settings['player_id'] = "video".$id;
+
+  // return video_embed_field_handle_vimeo($url, $settings);
+  // needed to rewrite the whole output here
+  // https://github.com/jrue/Vimeo-jQuery-API
+
+  // Get ID of video from URL
+  $vid = _video_embed_field_get_vimeo_id($url);
+  if (!$vid) {
+    return array(
+      '#markup' => l($url, $url),
+    );
+  }
+
+  // Construct the embed code
+  $settings['portrait'] = 0;
+
+  $width = $settings['width'];
+  $height = $settings['height'];
+
+  unset($settings['width']);
+  unset($settings['height']);
+  unset($settings['color']);
+  unset($settings['portrait']);
+  unset($settings['title']);
+  unset($settings['byline']);
+  unset($settings['autoplay']);
+  unset($settings['loop']);
+
+  $settings['player_id'] = "video-".uniqid();
+
+  $settings_str = _video_embed_code_get_settings_str($settings);
+
+  return array(
+    '#markup' => '<iframe id="video'.$settings['player_id'].'" width="' . $width . '" height="' . $height . '" src="//player.vimeo.com/video/' . $vid .
+                 '?' . $settings_str . '" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowfullscreen></iframe>',
+  );
+}

BIN
sites/all/themes/gui/jee/.sass-cache/06dcbe1fa5b03937e94c01bbbc1f20c6e165e878/jee.scssc


+ 62 - 0
sites/all/themes/gui/jee/assets/img/home-btn.svg

@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="25"
+   height="21"
+   viewBox="0 0 25 21"
+   id="svg62900"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="home-btn.svg">
+  <defs
+     id="defs62902" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="31.678384"
+     inkscape:cx="15.429349"
+     inkscape:cy="6.6614085"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata62905">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1031.3621)">
+    <polygon
+       transform="matrix(1.0094892,0,0,1.0094698,-1752.7801,2525.3653)"
+       id="polygon4783"
+       points="1758.098,-1467.357 1761.069,-1467.357 1756.611,-1471.904 1756.611,-1477.759 1753.145,-1477.759 1753.145,-1475.441 1748.687,-1479.988 1736.304,-1467.357 1739.277,-1467.357 1739.277,-1459.185 1746.954,-1459.185 1746.954,-1465.872 1750.421,-1465.872 1750.421,-1459.185 1758.098,-1459.185 " />
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/logo-blured.png


File diff suppressed because it is too large
+ 1331 - 1
sites/all/themes/gui/jee/assets/img/logo-blured.svg


BIN
sites/all/themes/gui/jee/assets/img/logo.png


File diff suppressed because it is too large
+ 1321 - 2
sites/all/themes/gui/jee/assets/img/logo.svg


+ 140 - 0
sites/all/themes/gui/jee/assets/img/title-BC-blur.svg

@@ -0,0 +1,140 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="130"
+   height="55"
+   viewBox="0 0 130 55.000001"
+   id="svg59693"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-BC-blur.svg">
+  <defs
+     id="defs59695">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8085"
+       x="-0.016531485"
+       width="1.033063"
+       y="-0.043777659"
+       height="1.0875553">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.818095"
+         id="feGaussianBlur8087" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="7.919596"
+     inkscape:cx="52.240365"
+     inkscape:cy="11.321042"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata59698">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-997.36217)">
+    <g
+       id="g58846"
+       transform="translate(871.6039,1114.7416)"
+       style="opacity:0.98999999;filter:url(#filter8085)">
+      <g
+         id="g14059"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g14061">
+          <g
+             id="g14063">
+            <path
+               d="m 886.397,-5462.617 -5.761,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.101 -0.4,2.121 -1.06,2.921 0.66,0.8 1.06,1.82 1.06,2.92 0,2.54 -2.061,4.581 -4.581,4.581 z m 0,-11.663 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.58 1.24,-1.26 0,-0.68 -0.56,-1.24 -1.24,-1.24 z m 0,5.822 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.56 1.24,-1.24 0,-0.68 -0.56,-1.26 -1.24,-1.26 z"
+               id="path14065"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 897.316,-5462.617 -3.341,0 0,-15.003 3.341,0 0,15.003 z"
+               id="path14067"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 908.977,-5462.617 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+               id="path14069"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 922.297,-5462.617 -3.321,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+               id="path14071"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+          </g>
+        </g>
+        <g
+           id="g14073">
+          <path
+             d="m 873.324,-5438.29 c -0.87,3.18 -3.78,5.52 -7.229,5.52 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 0.57,0 1.08,-0.18 1.5,-0.51 l 5.729,0 z"
+             id="path14075"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 892.344,-5440.27 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.98,-8.52 c 0,-1.35 -1.14,-2.49 -2.52,-2.49 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-8.52 z"
+             id="path14077"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 914.874,-5433.28 -5.01,0 0,-10.56 -3.75,5.19 -3.75,-5.19 0,10.56 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+             id="path14079"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 937.374,-5433.28 -5.01,0 0,-10.56 -3.75,5.19 -3.75,-5.19 0,10.56 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+             id="path14081"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 957.354,-5440.27 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-15.509 4.98,0 0,15.509 z"
+             id="path14083"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 977.364,-5433.28 -4.98,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+             id="path14085"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-BC.png


+ 125 - 0
sites/all/themes/gui/jee/assets/img/title-BC.svg

@@ -0,0 +1,125 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="120"
+   height="45"
+   viewBox="0 0 120 45.000001"
+   id="svg59693"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-BC.svg">
+  <defs
+     id="defs59695" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.959798"
+     inkscape:cx="47.005009"
+     inkscape:cy="11.712804"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata59698">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1007.3622)">
+    <g
+       id="g58846"
+       transform="translate(865.6039,1118.7416)">
+      <g
+         id="g14059"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g14061">
+          <g
+             id="g14063">
+            <path
+               d="m 886.397,-5462.617 -5.761,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.101 -0.4,2.121 -1.06,2.921 0.66,0.8 1.06,1.82 1.06,2.92 0,2.54 -2.061,4.581 -4.581,4.581 z m 0,-11.663 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.58 1.24,-1.26 0,-0.68 -0.56,-1.24 -1.24,-1.24 z m 0,5.822 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.56 1.24,-1.24 0,-0.68 -0.56,-1.26 -1.24,-1.26 z"
+               id="path14065"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 897.316,-5462.617 -3.341,0 0,-15.003 3.341,0 0,15.003 z"
+               id="path14067"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 908.977,-5462.617 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+               id="path14069"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+            <path
+               d="m 922.297,-5462.617 -3.321,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+               id="path14071"
+               inkscape:connector-curvature="0"
+               style="fill:#024b88" />
+          </g>
+        </g>
+        <g
+           id="g14073">
+          <path
+             d="m 873.324,-5438.29 c -0.87,3.18 -3.78,5.52 -7.229,5.52 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 0.57,0 1.08,-0.18 1.5,-0.51 l 5.729,0 z"
+             id="path14075"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 892.344,-5440.27 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.98,-8.52 c 0,-1.35 -1.14,-2.49 -2.52,-2.49 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-8.52 z"
+             id="path14077"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 914.874,-5433.28 -5.01,0 0,-10.56 -3.75,5.19 -3.75,-5.19 0,10.56 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+             id="path14079"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 937.374,-5433.28 -5.01,0 0,-10.56 -3.75,5.19 -3.75,-5.19 0,10.56 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+             id="path14081"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 957.354,-5440.27 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-15.509 4.98,0 0,15.509 z"
+             id="path14083"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+          <path
+             d="m 977.364,-5433.28 -4.98,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+             id="path14085"
+             inkscape:connector-curvature="0"
+             style="fill:#024b88" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

+ 215 - 0
sites/all/themes/gui/jee/assets/img/title-DPH-blur.svg

@@ -0,0 +1,215 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="195"
+   height="95"
+   viewBox="0 0 195 95.000001"
+   id="svg59041"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-DPH-blur.svg">
+  <defs
+     id="defs59043">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8105"
+       x="-0.017270374"
+       width="1.0345407"
+       y="-0.039322541"
+       height="1.0786451">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.28742"
+         id="feGaussianBlur8107" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="110.86302"
+     inkscape:cy="38.549938"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata59046">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-957.36212)">
+    <g
+       id="g58816"
+       transform="translate(1399.3699,1337.2955)"
+       style="filter:url(#filter8105)">
+      <g
+         id="g13865"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 391.745,-5659.835 -4.98,0 0,-8.759 -5.01,0 0,8.759 -5.01,0 0,-22.499 5.01,0 0,8.759 5.01,0 0,-8.759 4.98,0 0,22.499 z"
+           id="path13867"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 411.755,-5666.824 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-15.509 4.98,0 0,15.509 z"
+           id="path13869"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 434.285,-5659.835 -5.01,0 0,-10.559 -3.75,5.19 -3.75,-5.19 0,10.559 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+           id="path13871"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 457.595,-5659.835 -5.31,0 -1.32,-3.75 -8.25,0 -1.32,3.75 -5.31,0 8.189,-22.499 5.16,0 8.161,22.499 z m -8.37,-8.759 -2.37,-6.69 -2.37,6.69 4.74,0 z"
+           id="path13873"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 464.435,-5659.835 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13875"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 484.414,-5659.835 -4.98,0 0,-7.919 -5.01,-5.01 0,12.929 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+           id="path13877"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 501.934,-5659.835 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.869 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.98 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.009 z"
+           id="path13879"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+      </g>
+      <g
+         id="g13883"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 338.349,-5707.901 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.469,11.249 -9.989,11.249 z m 0,-17.49 -0.51,0 0,12.479 0.51,0 c 2.73,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z"
+           id="path13885"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 357.219,-5707.901 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13887"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 377.198,-5714.891 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-1.77 -2.52,0 0,-4.979 7.5,0 0,6.749 z"
+           id="path13889"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 396.578,-5707.901 -4.98,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+           id="path13891"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 406.598,-5707.901 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13893"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 426.578,-5725.391 -6.24,0 0,17.489 -5.01,0 0,-17.489 -6.24,0 0,-5.01 17.489,0 0,5.01 z"
+           id="path13895"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 441.578,-5707.901 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z m 0.509,-29.999 -5.01,4.979 -6.03,0 5.01,-4.979 6.03,0 z"
+           id="path13897"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+      </g>
+      <path
+         d="m -1369.2999,-321.19243 -3.681,0 0,-15.003 3.681,0 c 3.681,0 6.661,3.361 6.661,7.502 10e-4,4.161 -2.98,7.501 -6.661,7.501 z m 0,-11.662 -0.34,0 0,8.322 0.34,0 c 1.82,0 3.32,-1.86 3.32,-4.161 10e-4,-2.301 -1.499,-4.161 -3.32,-4.161 z"
+         id="path13901"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1351.7189,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13903"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1333.3999,-321.19243 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z"
+         id="path13905"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1317.8589,-321.19243 -3.541,0 -0.88,-2.5 -5.501,0 -0.88,2.5 -3.541,0 5.461,-15.003 3.441,0 5.441,15.003 z m -5.581,-5.841 -1.58,-4.461 -1.581,4.461 3.161,0 z"
+         id="path13907"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1304.2209,-327.03343 -2.42,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,2.541 -2.06,4.581 -4.581,4.581 z m 0,-5.821 -2.42,0 0,2.501 2.42,0 c 0.68,0 1.24,-0.581 1.24,-1.261 0,-0.68 -0.56,-1.24 -1.24,-1.24 z"
+         id="path13909"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1289.1399,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13911"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1273.3199,-321.19243 -4.121,0 -4.241,-5.841 -0.8,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.78 -1,3.301 -2.46,4.081 l 4.621,6.341 z m -6.741,-11.662 -2.42,0 0,2.501 2.42,0 c 0.68,0 1.24,-0.581 1.24,-1.261 0,-0.68 -0.56,-1.24 -1.24,-1.24 z"
+         id="path13913"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1268.3019,-320.85243 c -2.38,0 -4.361,-1.581 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.66,-0.641 1.66,-1.42 0,-0.78 -0.76,-1.42 -1.66,-1.42 -2.781,0 -5.001,-2.12 -5.001,-4.741 0,-2.62 2.22,-4.761 5.001,-4.761 2.36,0 4.341,1.58 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.06,-0.34 -0.92,0 -1.681,0.64 -1.681,1.42 0,0.78 0.76,1.421 1.681,1.421 2.761,0 5.001,2.12 5.001,4.741 0,2.621 -2.24,4.76 -5.001,4.76 z"
+         id="path13915"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1250.8209,-325.85243 c 0,2.76 -2.221,5 -5.001,5 -2.761,0 -5.001,-2.241 -5.001,-5 l 0,-5.682 c 0,-2.761 2.241,-5.001 5.001,-5.001 2.78,0 5.001,2.24 5.001,5.001 l 0,5.682 z m -3.32,-5.682 c 0,-0.9 -0.76,-1.66 -1.68,-1.66 -0.92,0 -1.661,0.76 -1.661,1.66 l 0,5.682 c 0,0.92 0.74,1.66 1.661,1.66 0.92,0 1.68,-0.74 1.68,-1.66 l 0,-5.682 z"
+         id="path13917"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1237.4809,-321.19243 -3.321,0 0,-5.281 -3.341,-3.34 0,8.621 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+         id="path13919"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1224.1409,-321.19243 -3.321,0 0,-5.281 -3.341,-3.34 0,8.621 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+         id="path13921"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1212.4619,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13923"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-DPH.png


+ 200 - 0
sites/all/themes/gui/jee/assets/img/title-DPH.svg

@@ -0,0 +1,200 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="180"
+   height="80"
+   viewBox="0 0 180 80.000001"
+   id="svg59041"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-OPP.svg">
+  <defs
+     id="defs59043" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8"
+     inkscape:cx="71.254779"
+     inkscape:cy="38.223123"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata59046">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-972.36212)">
+    <g
+       id="g58816"
+       transform="translate(1391.3699,1345.2955)">
+      <g
+         id="g13865"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 391.745,-5659.835 -4.98,0 0,-8.759 -5.01,0 0,8.759 -5.01,0 0,-22.499 5.01,0 0,8.759 5.01,0 0,-8.759 4.98,0 0,22.499 z"
+           id="path13867"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 411.755,-5666.824 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-15.509 4.98,0 0,15.509 z"
+           id="path13869"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 434.285,-5659.835 -5.01,0 0,-10.559 -3.75,5.19 -3.75,-5.19 0,10.559 -5.01,0 0,-22.499 2.52,0 6.24,8.64 6.24,-8.64 2.52,0 0,22.499 z"
+           id="path13871"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 457.595,-5659.835 -5.31,0 -1.32,-3.75 -8.25,0 -1.32,3.75 -5.31,0 8.189,-22.499 5.16,0 8.161,22.499 z m -8.37,-8.759 -2.37,-6.69 -2.37,6.69 4.74,0 z"
+           id="path13873"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 464.435,-5659.835 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13875"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 484.414,-5659.835 -4.98,0 0,-7.919 -5.01,-5.01 0,12.929 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+           id="path13877"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 501.934,-5659.835 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.869 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.98 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.009 z"
+           id="path13879"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+      </g>
+      <g
+         id="g13883"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 338.349,-5707.901 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.469,11.249 -9.989,11.249 z m 0,-17.49 -0.51,0 0,12.479 0.51,0 c 2.73,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z"
+           id="path13885"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 357.219,-5707.901 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13887"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 377.198,-5714.891 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-1.77 -2.52,0 0,-4.979 7.5,0 0,6.749 z"
+           id="path13889"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 396.578,-5707.901 -4.98,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.98,0 0,22.499 z"
+           id="path13891"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 406.598,-5707.901 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13893"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 426.578,-5725.391 -6.24,0 0,17.489 -5.01,0 0,-17.489 -6.24,0 0,-5.01 17.489,0 0,5.01 z"
+           id="path13895"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+        <path
+           d="m 441.578,-5707.901 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z m 0.509,-29.999 -5.01,4.979 -6.03,0 5.01,-4.979 6.03,0 z"
+           id="path13897"
+           inkscape:connector-curvature="0"
+           style="fill:#b0b000" />
+      </g>
+      <path
+         d="m -1369.2999,-321.19243 -3.681,0 0,-15.003 3.681,0 c 3.681,0 6.661,3.361 6.661,7.502 10e-4,4.161 -2.98,7.501 -6.661,7.501 z m 0,-11.662 -0.34,0 0,8.322 0.34,0 c 1.82,0 3.32,-1.86 3.32,-4.161 10e-4,-2.301 -1.499,-4.161 -3.32,-4.161 z"
+         id="path13901"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1351.7189,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13903"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1333.3999,-321.19243 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z"
+         id="path13905"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1317.8589,-321.19243 -3.541,0 -0.88,-2.5 -5.501,0 -0.88,2.5 -3.541,0 5.461,-15.003 3.441,0 5.441,15.003 z m -5.581,-5.841 -1.58,-4.461 -1.581,4.461 3.161,0 z"
+         id="path13907"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1304.2209,-327.03343 -2.42,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,2.541 -2.06,4.581 -4.581,4.581 z m 0,-5.821 -2.42,0 0,2.501 2.42,0 c 0.68,0 1.24,-0.581 1.24,-1.261 0,-0.68 -0.56,-1.24 -1.24,-1.24 z"
+         id="path13909"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1289.1399,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13911"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1273.3199,-321.19243 -4.121,0 -4.241,-5.841 -0.8,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.78 -1,3.301 -2.46,4.081 l 4.621,6.341 z m -6.741,-11.662 -2.42,0 0,2.501 2.42,0 c 0.68,0 1.24,-0.581 1.24,-1.261 0,-0.68 -0.56,-1.24 -1.24,-1.24 z"
+         id="path13913"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1268.3019,-320.85243 c -2.38,0 -4.361,-1.581 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.66,-0.641 1.66,-1.42 0,-0.78 -0.76,-1.42 -1.66,-1.42 -2.781,0 -5.001,-2.12 -5.001,-4.741 0,-2.62 2.22,-4.761 5.001,-4.761 2.36,0 4.341,1.58 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.06,-0.34 -0.92,0 -1.681,0.64 -1.681,1.42 0,0.78 0.76,1.421 1.681,1.421 2.761,0 5.001,2.12 5.001,4.741 0,2.621 -2.24,4.76 -5.001,4.76 z"
+         id="path13915"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1250.8209,-325.85243 c 0,2.76 -2.221,5 -5.001,5 -2.761,0 -5.001,-2.241 -5.001,-5 l 0,-5.682 c 0,-2.761 2.241,-5.001 5.001,-5.001 2.78,0 5.001,2.24 5.001,5.001 l 0,5.682 z m -3.32,-5.682 c 0,-0.9 -0.76,-1.66 -1.68,-1.66 -0.92,0 -1.661,0.76 -1.661,1.66 l 0,5.682 c 0,0.92 0.74,1.66 1.661,1.66 0.92,0 1.68,-0.74 1.68,-1.66 l 0,-5.682 z"
+         id="path13917"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1237.4809,-321.19243 -3.321,0 0,-5.281 -3.341,-3.34 0,8.621 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+         id="path13919"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1224.1409,-321.19243 -3.321,0 0,-5.281 -3.341,-3.34 0,8.621 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z"
+         id="path13921"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+      <path
+         d="m -1212.4619,-321.19243 -4.081,0 c -2.541,0 -4.581,-2.04 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.561 -1.26,1.24 0,0.68 0.58,1.261 1.26,1.261 l 4.081,0 0,3.32 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z"
+         id="path13923"
+         inkscape:connector-curvature="0"
+         style="fill:#b0b000" />
+    </g>
+  </g>
+</svg>

+ 248 - 0
sites/all/themes/gui/jee/assets/img/title-DUB-blur.svg

@@ -0,0 +1,248 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="205"
+   height="80"
+   viewBox="0 0 205 80.000001"
+   id="svg60960"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-DUB-blur.svg">
+  <defs
+     id="defs60962">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8109"
+       x="-0.016018891"
+       width="1.0320378"
+       y="-0.04785564"
+       height="1.0957113">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.2758513"
+         id="feGaussianBlur8111" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="95.499767"
+     inkscape:cy="29.019957"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata60965">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-972.36215)">
+    <g
+       id="g58904"
+       transform="matrix(1.0005231,0,0,1,1092.613,770.86955)"
+       style="filter:url(#filter8109)">
+      <g
+         id="g6776"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6778">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6780"
+             d="m 659.197,-5141.54 -3.681,0 0,-15.003 3.681,0 c 3.681,0 6.661,3.361 6.661,7.502 0,4.16 -2.981,7.501 -6.661,7.501 z m 0,-11.663 -0.34,0 0,8.322 0.34,0 c 1.82,0 3.32,-1.86 3.32,-4.161 0,-2.3 -1.5,-4.161 -3.32,-4.161 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6782"
+             d="m 676.777,-5141.54 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6784"
+             d="m 684.276,-5141.2 c -2.38,0 -4.36,-1.58 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.661,-0.64 1.661,-1.42 0,-0.78 -0.761,-1.42 -1.661,-1.42 -2.78,0 -5.001,-2.121 -5.001,-4.741 0,-2.621 2.221,-4.761 5.001,-4.761 2.361,0 4.342,1.581 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.061,-0.34 -0.92,0 -1.68,0.64 -1.68,1.42 0,0.78 0.76,1.42 1.68,1.42 2.761,0 5.002,2.121 5.002,4.741 0,2.62 -2.24,4.761 -5.001,4.761 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6786"
+             d="m 701.758,-5153.203 -4.16,0 0,11.663 -3.341,0 0,-11.663 -4.161,0 0,-3.341 11.662,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6788"
+             d="m 706.757,-5141.54 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6790"
+             d="m 720.078,-5141.54 -3.32,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.32,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6792"
+             d="m 735.639,-5141.54 -3.541,0 -0.88,-2.5 -5.501,0 -0.88,2.5 -3.541,0 5.461,-15.003 3.44,0 5.442,15.003 z m -5.581,-5.841 -1.58,-4.461 -1.581,4.461 3.161,0 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6794"
+             d="m 746.858,-5153.203 -4.16,0 0,11.663 -3.341,0 0,-11.663 -4.161,0 0,-3.341 11.662,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6796"
+             d="m 751.857,-5141.54 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6798"
+             d="m 765.179,-5146.201 c 0,2.761 -2.22,5.001 -5.001,5.001 -2.761,0 -5.001,-2.24 -5.001,-5.001 l 0,-5.681 c 0,-2.761 2.24,-5.001 5.001,-5.001 2.781,0 5.001,2.24 5.001,5.001 l 0,5.681 z m -3.321,-5.681 c 0,-0.9 -0.76,-1.66 -1.681,-1.66 -0.92,0 -1.66,0.76 -1.66,1.66 l 0,5.681 c 0,0.92 0.74,1.661 1.66,1.661 0.921,0 1.681,-0.74 1.681,-1.661 l 0,-5.681 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6800"
+             d="m 778.519,-5141.54 -3.32,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.32,0 0,15.003 z" />
+        </g>
+      </g>
+      <g
+         id="g6802"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6804">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6806"
+             d="m 714.547,-5126.376 c 0,2.761 -2.221,5.001 -5.001,5.001 -2.761,0 -5.001,-2.24 -5.001,-5.001 l 0,-10.342 3.341,0 0,10.342 c 0,0.92 0.74,1.661 1.661,1.661 0.92,0 1.68,-0.74 1.68,-1.661 l 0,-10.342 3.321,0 0,10.342 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6808"
+             d="m 727.887,-5121.715 -3.321,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6810"
+             d="m 734.565,-5121.715 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6812"
+             d="m 750.107,-5136.719 -5.441,15.003 -3.441,0 -5.461,-15.003 3.541,0 3.641,10.302 3.621,-10.302 3.54,0 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6814"
+             d="m 759.666,-5121.715 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6816"
+             d="m 775.487,-5121.715 -4.121,0 -4.241,-5.841 -0.8,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.781 -1,3.301 -2.46,4.081 l 4.621,6.341 z m -6.742,-11.663 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.58 1.24,-1.26 0,-0.68 -0.56,-1.24 -1.24,-1.24 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6818"
+             d="m 780.505,-5121.375 c -2.38,0 -4.361,-1.58 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.66,-0.64 1.66,-1.42 0,-0.78 -0.76,-1.42 -1.66,-1.42 -2.781,0 -5.001,-2.121 -5.001,-4.741 0,-2.621 2.22,-4.761 5.001,-4.761 2.36,0 4.341,1.581 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.06,-0.34 -0.92,0 -1.681,0.64 -1.681,1.42 0,0.78 0.76,1.42 1.681,1.42 2.761,0 5.001,2.121 5.001,4.741 0,2.62 -2.24,4.761 -5.001,4.761 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6820"
+             d="m 796.325,-5121.715 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6822"
+             d="m 807.985,-5121.715 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6824"
+             d="m 819.645,-5121.715 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6826"
+             d="m 831.305,-5121.715 -4.081,0 c -2.54,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.041,-2.92 -0.641,-0.8 -1.041,-1.82 -1.041,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+        </g>
+      </g>
+      <g
+         id="g6828"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6830">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6832"
+             d="m 645.673,-5093.408 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.47,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.73,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6834"
+             d="m 672.042,-5093.408 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6836"
+             d="m 683.292,-5092.898 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.14,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.509,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6838"
+             d="m 713.143,-5093.408 -8.64,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,1.65 -0.6,3.18 -1.59,4.38 0.99,1.2 1.59,2.73 1.59,4.38 0,3.809 -3.09,6.869 -6.869,6.869 z m 0,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.84,-1.86 -1.859,-1.86 z m 0,8.729 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.84 1.859,-1.86 0,-1.02 -0.84,-1.89 -1.859,-1.89 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6840"
+             d="m 729.522,-5093.408 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6842"
+             d="m 747.012,-5093.408 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6844"
+             d="m 766.992,-5093.408 -4.979,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.979,0 0,22.499 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6846"
+             d="m 778.272,-5092.898 c -3.57,0 -6.54,-2.37 -7.319,-5.52 l 5.699,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.521,0.96 -2.521,2.13 0,1.17 1.141,2.13 2.521,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-DUB.png


+ 233 - 0
sites/all/themes/gui/jee/assets/img/title-DUB.svg

@@ -0,0 +1,233 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="195"
+   height="65"
+   viewBox="0 0 195 65.000001"
+   id="svg60960"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-DUB.svg">
+  <defs
+     id="defs60962" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.959798"
+     inkscape:cx="70.774541"
+     inkscape:cy="56.988765"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata60965">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-987.36215)">
+    <g
+       id="g58904"
+       transform="matrix(1.0005231,0,0,1,1086.613,778.86955)">
+      <g
+         id="g6776"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6778">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6780"
+             d="m 659.197,-5141.54 -3.681,0 0,-15.003 3.681,0 c 3.681,0 6.661,3.361 6.661,7.502 0,4.16 -2.981,7.501 -6.661,7.501 z m 0,-11.663 -0.34,0 0,8.322 0.34,0 c 1.82,0 3.32,-1.86 3.32,-4.161 0,-2.3 -1.5,-4.161 -3.32,-4.161 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6782"
+             d="m 676.777,-5141.54 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6784"
+             d="m 684.276,-5141.2 c -2.38,0 -4.36,-1.58 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.661,-0.64 1.661,-1.42 0,-0.78 -0.761,-1.42 -1.661,-1.42 -2.78,0 -5.001,-2.121 -5.001,-4.741 0,-2.621 2.221,-4.761 5.001,-4.761 2.361,0 4.342,1.581 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.061,-0.34 -0.92,0 -1.68,0.64 -1.68,1.42 0,0.78 0.76,1.42 1.68,1.42 2.761,0 5.002,2.121 5.002,4.741 0,2.62 -2.24,4.761 -5.001,4.761 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6786"
+             d="m 701.758,-5153.203 -4.16,0 0,11.663 -3.341,0 0,-11.663 -4.161,0 0,-3.341 11.662,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6788"
+             d="m 706.757,-5141.54 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6790"
+             d="m 720.078,-5141.54 -3.32,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.32,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6792"
+             d="m 735.639,-5141.54 -3.541,0 -0.88,-2.5 -5.501,0 -0.88,2.5 -3.541,0 5.461,-15.003 3.44,0 5.442,15.003 z m -5.581,-5.841 -1.58,-4.461 -1.581,4.461 3.161,0 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6794"
+             d="m 746.858,-5153.203 -4.16,0 0,11.663 -3.341,0 0,-11.663 -4.161,0 0,-3.341 11.662,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6796"
+             d="m 751.857,-5141.54 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6798"
+             d="m 765.179,-5146.201 c 0,2.761 -2.22,5.001 -5.001,5.001 -2.761,0 -5.001,-2.24 -5.001,-5.001 l 0,-5.681 c 0,-2.761 2.24,-5.001 5.001,-5.001 2.781,0 5.001,2.24 5.001,5.001 l 0,5.681 z m -3.321,-5.681 c 0,-0.9 -0.76,-1.66 -1.681,-1.66 -0.92,0 -1.66,0.76 -1.66,1.66 l 0,5.681 c 0,0.92 0.74,1.661 1.66,1.661 0.921,0 1.681,-0.74 1.681,-1.661 l 0,-5.681 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6800"
+             d="m 778.519,-5141.54 -3.32,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.32,0 0,15.003 z" />
+        </g>
+      </g>
+      <g
+         id="g6802"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6804">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6806"
+             d="m 714.547,-5126.376 c 0,2.761 -2.221,5.001 -5.001,5.001 -2.761,0 -5.001,-2.24 -5.001,-5.001 l 0,-10.342 3.341,0 0,10.342 c 0,0.92 0.74,1.661 1.661,1.661 0.92,0 1.68,-0.74 1.68,-1.661 l 0,-10.342 3.321,0 0,10.342 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6808"
+             d="m 727.887,-5121.715 -3.321,0 0,-5.281 -3.341,-3.341 0,8.622 -3.341,0 0,-15.003 1.681,0 5.001,5.001 0,-5.001 3.321,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6810"
+             d="m 734.565,-5121.715 -3.341,0 0,-15.003 3.341,0 0,15.003 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6812"
+             d="m 750.107,-5136.719 -5.441,15.003 -3.441,0 -5.461,-15.003 3.541,0 3.641,10.302 3.621,-10.302 3.54,0 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6814"
+             d="m 759.666,-5121.715 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6816"
+             d="m 775.487,-5121.715 -4.121,0 -4.241,-5.841 -0.8,0 0,5.841 -3.341,0 0,-15.003 5.761,0 c 2.521,0 4.581,2.061 4.581,4.581 0,1.781 -1,3.301 -2.46,4.081 l 4.621,6.341 z m -6.742,-11.663 -2.42,0 0,2.5 2.42,0 c 0.68,0 1.24,-0.58 1.24,-1.26 0,-0.68 -0.56,-1.24 -1.24,-1.24 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6818"
+             d="m 780.505,-5121.375 c -2.38,0 -4.361,-1.58 -4.881,-3.681 l 3.801,0 c 0.28,0.2 0.66,0.34 1.08,0.34 0.9,0 1.66,-0.64 1.66,-1.42 0,-0.78 -0.76,-1.42 -1.66,-1.42 -2.781,0 -5.001,-2.121 -5.001,-4.741 0,-2.621 2.22,-4.761 5.001,-4.761 2.36,0 4.341,1.581 4.861,3.681 l -3.801,0 c -0.28,-0.2 -0.66,-0.34 -1.06,-0.34 -0.92,0 -1.681,0.64 -1.681,1.42 0,0.78 0.76,1.42 1.681,1.42 2.761,0 5.001,2.121 5.001,4.741 0,2.62 -2.24,4.761 -5.001,4.761 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6820"
+             d="m 796.325,-5121.715 -4.081,0 c -2.541,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.04,-2.92 -0.64,-0.8 -1.04,-1.82 -1.04,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6822"
+             d="m 807.985,-5121.715 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6824"
+             d="m 819.645,-5121.715 -8.342,0 0,-15.003 3.341,0 0,11.663 5.001,0 0,3.34 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6826"
+             d="m 831.305,-5121.715 -4.081,0 c -2.54,0 -4.581,-2.041 -4.581,-4.581 0,-1.1 0.4,-2.121 1.041,-2.92 -0.641,-0.8 -1.041,-1.82 -1.041,-2.921 0,-2.521 2.041,-4.581 4.581,-4.581 l 4.081,0 0,3.341 -4.081,0 c -0.68,0 -1.26,0.56 -1.26,1.24 0,0.68 0.58,1.26 1.26,1.26 l 4.081,0 0,3.321 -4.081,0 c -0.68,0 -1.26,0.58 -1.26,1.26 0,0.68 0.58,1.24 1.26,1.24 l 4.081,0 0,3.341 z" />
+        </g>
+      </g>
+      <g
+         id="g6828"
+         transform="translate(-1724.1989,5366.3906)">
+        <g
+           id="g6830">
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6832"
+             d="m 645.673,-5093.408 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.47,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.73,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6834"
+             d="m 672.042,-5093.408 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6836"
+             d="m 683.292,-5092.898 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.14,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.509,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6838"
+             d="m 713.143,-5093.408 -8.64,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,1.65 -0.6,3.18 -1.59,4.38 0.99,1.2 1.59,2.73 1.59,4.38 0,3.809 -3.09,6.869 -6.869,6.869 z m 0,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.84,-1.86 -1.859,-1.86 z m 0,8.729 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.84 1.859,-1.86 0,-1.02 -0.84,-1.89 -1.859,-1.89 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6840"
+             d="m 729.522,-5093.408 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6842"
+             d="m 747.012,-5093.408 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6844"
+             d="m 766.992,-5093.408 -4.979,0 0,-7.92 -5.01,-5.01 0,12.93 -5.01,0 0,-22.499 2.52,0 7.5,7.5 0,-7.5 4.979,0 0,22.499 z" />
+          <path
+             style="fill:#299231"
+             inkscape:connector-curvature="0"
+             id="path6846"
+             d="m 778.272,-5092.898 c -3.57,0 -6.54,-2.37 -7.319,-5.52 l 5.699,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.521,0.96 -2.521,2.13 0,1.17 1.141,2.13 2.521,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

+ 155 - 0
sites/all/themes/gui/jee/assets/img/title-JUSO-blur.svg

@@ -0,0 +1,155 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="215"
+   height="75"
+   viewBox="0 0 215 75.000001"
+   id="svg62248"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-JUSO-blur.svg">
+  <defs
+     id="defs62250">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8113"
+       x="-0.015651613"
+       width="1.0313032"
+       y="-0.05143463"
+       height="1.1028693">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.303825"
+         id="feGaussianBlur8115" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="101.52298"
+     inkscape:cy="17.582084"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata62253">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-977.36215)">
+    <g
+       id="g58986"
+       transform="translate(1605.7469,808.04955)"
+       style="filter:url(#filter8113)">
+      <g
+         id="g13829"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 143.049,-5165.92 c 0,4.599 -3.719,8.358 -8.318,8.358 -4.279,0 -7.759,-3.199 -8.279,-7.358 l 6.959,0 c 0.28,0.4 0.8,0.68 1.32,0.68 0.919,0 1.68,-0.72 1.68,-1.68 l 0,-15.637 -6.679,0 0,-6.679 13.318,0 0,22.316 z"
+           id="path13831"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 169.728,-5167.56 c 0,5.519 -4.439,9.998 -9.998,9.998 -5.519,0 -9.999,-4.479 -9.999,-9.998 l 0,-20.677 6.679,0 0,20.677 c 0,1.84 1.479,3.319 3.319,3.319 1.839,0 3.359,-1.479 3.359,-3.319 l 0,-20.677 6.639,0 0,20.677 z"
+           id="path13833"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 184.77,-5157.562 c -4.759,0 -8.719,-3.159 -9.758,-7.358 l 7.599,0 c 0.56,0.4 1.32,0.68 2.16,0.68 1.799,0 3.319,-1.28 3.319,-2.839 0,-1.56 -1.52,-2.84 -3.319,-2.84 -5.559,0 -9.999,-4.239 -9.999,-9.478 0,-5.239 4.439,-9.519 9.999,-9.519 4.719,0 8.678,3.159 9.718,7.359 l -7.599,0 c -0.56,-0.4 -1.32,-0.68 -2.12,-0.68 -1.84,0 -3.36,1.28 -3.36,2.84 0,1.56 1.52,2.839 3.36,2.839 5.519,0 9.998,4.239 9.998,9.479 0,5.238 -4.479,9.517 -9.998,9.517 z"
+           id="path13835"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 219.728,-5181.557 -8.318,0 0,23.316 -6.679,0 0,-23.316 -8.319,0 0,-6.679 23.316,0 0,6.679 z"
+           id="path13837"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 229.73,-5158.241 -6.679,0 0,-29.995 6.679,0 0,29.995 z"
+           id="path13839"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 256.007,-5164.92 c -1.16,4.239 -5.039,7.358 -9.638,7.358 -5.519,0 -9.999,-4.479 -9.999,-9.998 l 0,-11.358 c 0,-5.519 4.479,-9.998 9.999,-9.998 4.599,0 8.479,3.12 9.638,7.359 l -7.639,0 c -0.56,-0.44 -1.24,-0.68 -2,-0.68 -1.84,0 -3.319,1.52 -3.319,3.319 l 0,11.358 c 0,1.84 1.479,3.319 3.319,3.319 0.76,0 1.439,-0.24 2,-0.68 l 7.639,0 z"
+           id="path13841"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 278.048,-5158.241 -8.159,0 c -5.079,0 -9.158,-4.079 -9.158,-9.159 0,-2.199 0.8,-4.239 2.08,-5.839 -1.28,-1.6 -2.08,-3.639 -2.08,-5.839 0,-5.039 4.079,-9.159 9.158,-9.159 l 8.159,0 0,6.679 -8.159,0 c -1.36,0 -2.52,1.12 -2.52,2.479 0,1.359 1.16,2.52 2.52,2.52 l 8.159,0 0,6.639 -8.159,0 c -1.36,0 -2.52,1.16 -2.52,2.52 0,1.36 1.16,2.48 2.52,2.48 l 8.159,0 0,6.679 z"
+           id="path13843"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+      </g>
+      <g
+         id="g13847"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 216.25,-5128.079 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.14,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.931 -3.36,7.14 -7.5,7.14 z"
+           id="path13849"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 242.469,-5135.578 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.98,-8.52 c 0,-1.35 -1.14,-2.49 -2.52,-2.49 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-8.52 z"
+           id="path13851"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 262.209,-5133.598 c -0.87,3.18 -3.78,5.52 -7.229,5.52 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 0.57,0 1.08,-0.18 1.5,-0.51 l 5.729,0 z"
+           id="path13853"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 271.239,-5128.588 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13855"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 294.549,-5128.588 -5.31,0 -1.32,-3.75 -8.25,0 -1.32,3.75 -5.31,0 8.189,-22.499 5.16,0 8.161,22.499 z m -8.37,-8.76 -2.37,-6.689 -2.37,6.689 4.74,0 z"
+           id="path13857"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 308.889,-5128.588 -12.51,0 0,-22.499 5.01,0 0,17.489 7.5,0 0,5.01 z"
+           id="path13859"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 326.379,-5128.588 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z"
+           id="path13861"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+      </g>
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-JUSO.png


+ 140 - 0
sites/all/themes/gui/jee/assets/img/title-JUSO.svg

@@ -0,0 +1,140 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="200"
+   height="65"
+   viewBox="0 0 200 65.000001"
+   id="svg62248"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-JUSO.svg">
+  <defs
+     id="defs62250" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="87.86227"
+     inkscape:cy="18.832084"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata62253">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-987.36215)">
+    <g
+       id="g58986"
+       transform="translate(1597.7469,812.04955)">
+      <g
+         id="g13829"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 143.049,-5165.92 c 0,4.599 -3.719,8.358 -8.318,8.358 -4.279,0 -7.759,-3.199 -8.279,-7.358 l 6.959,0 c 0.28,0.4 0.8,0.68 1.32,0.68 0.919,0 1.68,-0.72 1.68,-1.68 l 0,-15.637 -6.679,0 0,-6.679 13.318,0 0,22.316 z"
+           id="path13831"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 169.728,-5167.56 c 0,5.519 -4.439,9.998 -9.998,9.998 -5.519,0 -9.999,-4.479 -9.999,-9.998 l 0,-20.677 6.679,0 0,20.677 c 0,1.84 1.479,3.319 3.319,3.319 1.839,0 3.359,-1.479 3.359,-3.319 l 0,-20.677 6.639,0 0,20.677 z"
+           id="path13833"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 184.77,-5157.562 c -4.759,0 -8.719,-3.159 -9.758,-7.358 l 7.599,0 c 0.56,0.4 1.32,0.68 2.16,0.68 1.799,0 3.319,-1.28 3.319,-2.839 0,-1.56 -1.52,-2.84 -3.319,-2.84 -5.559,0 -9.999,-4.239 -9.999,-9.478 0,-5.239 4.439,-9.519 9.999,-9.519 4.719,0 8.678,3.159 9.718,7.359 l -7.599,0 c -0.56,-0.4 -1.32,-0.68 -2.12,-0.68 -1.84,0 -3.36,1.28 -3.36,2.84 0,1.56 1.52,2.839 3.36,2.839 5.519,0 9.998,4.239 9.998,9.479 0,5.238 -4.479,9.517 -9.998,9.517 z"
+           id="path13835"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 219.728,-5181.557 -8.318,0 0,23.316 -6.679,0 0,-23.316 -8.319,0 0,-6.679 23.316,0 0,6.679 z"
+           id="path13837"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 229.73,-5158.241 -6.679,0 0,-29.995 6.679,0 0,29.995 z"
+           id="path13839"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 256.007,-5164.92 c -1.16,4.239 -5.039,7.358 -9.638,7.358 -5.519,0 -9.999,-4.479 -9.999,-9.998 l 0,-11.358 c 0,-5.519 4.479,-9.998 9.999,-9.998 4.599,0 8.479,3.12 9.638,7.359 l -7.639,0 c -0.56,-0.44 -1.24,-0.68 -2,-0.68 -1.84,0 -3.319,1.52 -3.319,3.319 l 0,11.358 c 0,1.84 1.479,3.319 3.319,3.319 0.76,0 1.439,-0.24 2,-0.68 l 7.639,0 z"
+           id="path13841"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 278.048,-5158.241 -8.159,0 c -5.079,0 -9.158,-4.079 -9.158,-9.159 0,-2.199 0.8,-4.239 2.08,-5.839 -1.28,-1.6 -2.08,-3.639 -2.08,-5.839 0,-5.039 4.079,-9.159 9.158,-9.159 l 8.159,0 0,6.679 -8.159,0 c -1.36,0 -2.52,1.12 -2.52,2.479 0,1.359 1.16,2.52 2.52,2.52 l 8.159,0 0,6.639 -8.159,0 c -1.36,0 -2.52,1.16 -2.52,2.52 0,1.36 1.16,2.48 2.52,2.48 l 8.159,0 0,6.679 z"
+           id="path13843"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+      </g>
+      <g
+         id="g13847"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 216.25,-5128.079 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.14,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.931 -3.36,7.14 -7.5,7.14 z"
+           id="path13849"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 242.469,-5135.578 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.98,-8.52 c 0,-1.35 -1.14,-2.49 -2.52,-2.49 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 1.38,0 2.52,-1.11 2.52,-2.49 l 0,-8.52 z"
+           id="path13851"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 262.209,-5133.598 c -0.87,3.18 -3.78,5.52 -7.229,5.52 -4.14,0 -7.5,-3.36 -7.5,-7.5 l 0,-8.52 c 0,-4.14 3.36,-7.5 7.5,-7.5 3.45,0 6.359,2.34 7.229,5.52 l -5.729,0 c -0.42,-0.33 -0.93,-0.51 -1.5,-0.51 -1.38,0 -2.49,1.14 -2.49,2.49 l 0,8.52 c 0,1.38 1.11,2.49 2.49,2.49 0.57,0 1.08,-0.18 1.5,-0.51 l 5.729,0 z"
+           id="path13853"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 271.239,-5128.588 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13855"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 294.549,-5128.588 -5.31,0 -1.32,-3.75 -8.25,0 -1.32,3.75 -5.31,0 8.189,-22.499 5.16,0 8.161,22.499 z m -8.37,-8.76 -2.37,-6.689 -2.37,6.689 4.74,0 z"
+           id="path13857"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 308.889,-5128.588 -12.51,0 0,-22.499 5.01,0 0,17.489 7.5,0 0,5.01 z"
+           id="path13859"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+        <path
+           d="m 326.379,-5128.588 -6.12,0 c -3.81,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.6,-3.18 1.56,-4.38 -0.96,-1.2 -1.56,-2.73 -1.56,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.12,0 0,5.01 -6.12,0 c -1.02,0 -1.89,0.84 -1.89,1.86 0,1.02 0.87,1.89 1.89,1.89 l 6.12,0 0,4.979 -6.12,0 c -1.02,0 -1.89,0.87 -1.89,1.89 0,1.02 0.87,1.86 1.89,1.86 l 6.12,0 0,5.011 z"
+           id="path13861"
+           inkscape:connector-curvature="0"
+           style="fill:#009ba9" />
+      </g>
+    </g>
+  </g>
+</svg>

File diff suppressed because it is too large
+ 1934 - 0
sites/all/themes/gui/jee/assets/img/title-OPP-blur.svg


BIN
sites/all/themes/gui/jee/assets/img/title-OPP.png


File diff suppressed because it is too large
+ 1920 - 0
sites/all/themes/gui/jee/assets/img/title-OPP.svg


+ 134 - 0
sites/all/themes/gui/jee/assets/img/title-SOL-blur.svg

@@ -0,0 +1,134 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="175"
+   height="40"
+   viewBox="0 0 175 40.000001"
+   id="svg61626"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-SOL-blur.svg">
+  <defs
+     id="defs61628">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8097"
+       x="-0.014202021"
+       width="1.028404"
+       y="-0.077394474"
+       height="1.1547889">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="0.983845"
+         id="feGaussianBlur8099" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="80.336219"
+     inkscape:cy="-0.69416096"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata61631">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1012.3621)">
+    <g
+       id="g58890"
+       transform="translate(650.2259,692.9605)"
+       style="filter:url(#filter8097)">
+      <g
+         id="g58877">
+        <g
+           transform="translate(-1724.1989,5366.3906)"
+           id="g13675">
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13677"
+             d="m 1085.473,-5010.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.361,7.14 -7.5,7.14 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13679"
+             d="m 1111.692,-5018.489 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.499,-3.36 -7.499,-7.5 l 0,-8.52 c 0,-4.14 3.359,-7.5 7.499,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.979,-8.519 c 0,-1.35 -1.141,-2.49 -2.521,-2.49 -1.38,0 -2.489,1.14 -2.489,2.49 l 0,8.52 c 0,1.38 1.109,2.49 2.489,2.49 1.38,0 2.521,-1.11 2.521,-2.49 l 0,-8.52 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13681"
+             d="m 1129.212,-5011.499 -12.509,0 0,-22.499 5.01,0 0,17.489 7.499,0 0,5.01 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13683"
+             d="m 1139.203,-5011.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13685"
+             d="m 1149.703,-5011.499 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.469,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.729,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13687"
+             d="m 1181.893,-5011.499 -5.31,0 -1.32,-3.75 -8.25,0 -1.319,3.75 -5.311,0 8.19,-22.499 5.159,0 8.161,22.499 z m -8.371,-8.76 -2.37,-6.689 -2.369,6.689 4.739,0 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13689"
+             d="m 1202.473,-5011.499 -6.18,0 -6.36,-8.76 -1.199,0 0,8.76 -5.01,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,2.67 -1.5,4.95 -3.689,6.12 l 6.929,9.509 z m -10.11,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.839,-1.86 -1.859,-1.86 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13691"
+             d="m 1208.743,-5011.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13693"
+             d="m 1228.723,-5028.988 -6.239,0 0,17.489 -5.011,0 0,-17.489 -6.239,0 0,-5.01 17.489,0 0,5.01 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13695"
+             d="m 1243.723,-5011.499 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z m 0.51,-29.999 -5.01,4.98 -6.03,0 5.01,-4.98 6.03,0 z" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-SOL.png


+ 119 - 0
sites/all/themes/gui/jee/assets/img/title-SOL.svg

@@ -0,0 +1,119 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="170"
+   height="35"
+   viewBox="0 0 170 35.000001"
+   id="svg61626"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-SOL.svg">
+  <defs
+     id="defs61628" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="75.246933"
+     inkscape:cy="3.4129819"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata61631">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1017.3621)">
+    <g
+       id="g58890"
+       transform="translate(648.2259,694.9605)">
+      <g
+         id="g58877">
+        <g
+           transform="translate(-1724.1989,5366.3906)"
+           id="g13675">
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13677"
+             d="m 1085.473,-5010.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.361,7.14 -7.5,7.14 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13679"
+             d="m 1111.692,-5018.489 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.499,-3.36 -7.499,-7.5 l 0,-8.52 c 0,-4.14 3.359,-7.5 7.499,-7.5 4.17,0 7.5,3.36 7.5,7.5 l 0,8.52 z m -4.979,-8.519 c 0,-1.35 -1.141,-2.49 -2.521,-2.49 -1.38,0 -2.489,1.14 -2.489,2.49 l 0,8.52 c 0,1.38 1.109,2.49 2.489,2.49 1.38,0 2.521,-1.11 2.521,-2.49 l 0,-8.52 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13681"
+             d="m 1129.212,-5011.499 -12.509,0 0,-22.499 5.01,0 0,17.489 7.499,0 0,5.01 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13683"
+             d="m 1139.203,-5011.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13685"
+             d="m 1149.703,-5011.499 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.469,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.729,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.249,-6.239 -4.979,-6.239 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13687"
+             d="m 1181.893,-5011.499 -5.31,0 -1.32,-3.75 -8.25,0 -1.319,3.75 -5.311,0 8.19,-22.499 5.159,0 8.161,22.499 z m -8.371,-8.76 -2.37,-6.689 -2.369,6.689 4.739,0 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13689"
+             d="m 1202.473,-5011.499 -6.18,0 -6.36,-8.76 -1.199,0 0,8.76 -5.01,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,2.67 -1.5,4.95 -3.689,6.12 l 6.929,9.509 z m -10.11,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.839,-1.86 -1.859,-1.86 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13691"
+             d="m 1208.743,-5011.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13693"
+             d="m 1228.723,-5028.988 -6.239,0 0,17.489 -5.011,0 0,-17.489 -6.239,0 0,-5.01 17.489,0 0,5.01 z" />
+          <path
+             style="fill:#cf5208"
+             inkscape:connector-curvature="0"
+             id="path13695"
+             d="m 1243.723,-5011.499 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z m 0.51,-29.999 -5.01,4.98 -6.03,0 5.01,-4.98 6.03,0 z" />
+        </g>
+      </g>
+    </g>
+  </g>
+</svg>

+ 141 - 0
sites/all/themes/gui/jee/assets/img/title-SUB-blur.svg

@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="205"
+   height="40"
+   viewBox="0 0 205 40.000001"
+   id="svg60316"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-SUB-blur.svg">
+  <defs
+     id="defs60318">
+    <filter
+       inkscape:collect="always"
+       style="color-interpolation-filters:sRGB"
+       id="filter8101"
+       x="-0.013865423"
+       width="1.0277308"
+       y="-0.089194271"
+       height="1.1783885">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="1.133845"
+         id="feGaussianBlur8103" />
+    </filter>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="5.6"
+     inkscape:cx="104.91239"
+     inkscape:cy="1.488636"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata60321">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1012.3622)">
+    <g
+       id="g58862"
+       transform="translate(719.2259,1252.9606)"
+       style="filter:url(#filter8101)">
+      <g
+         id="g13699"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 1016.473,-5570.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.361,7.14 -7.5,7.14 z"
+           id="path13701"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1042.692,-5578.489 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.499,-3.36 -7.499,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.109,2.49 2.489,2.49 1.38,0 2.521,-1.11 2.521,-2.49 l 0,-15.509 4.979,0 0,15.509 z"
+           id="path13703"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1056.343,-5571.499 -8.64,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,1.65 -0.6,3.18 -1.59,4.38 0.99,1.2 1.59,2.73 1.59,4.38 0,3.809 -3.09,6.869 -6.869,6.869 z m 0,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.84,-1.86 -1.859,-1.86 z m 0,8.729 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.84 1.859,-1.86 0,-1.02 -0.84,-1.89 -1.859,-1.89 z"
+           id="path13705"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1073.982,-5570.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z"
+           id="path13707"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1090.213,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13709"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1100.713,-5571.499 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.47,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.729,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.25,-6.239 -4.979,-6.239 z"
+           id="path13711"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1119.583,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13713"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1142.893,-5571.499 -5.31,0 -1.32,-3.75 -8.25,0 -1.319,3.75 -5.311,0 8.19,-22.499 5.159,0 8.161,22.499 z m -8.371,-8.76 -2.37,-6.689 -2.369,6.689 4.739,0 z"
+           id="path13715"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1163.473,-5571.499 -6.18,0 -6.36,-8.76 -1.199,0 0,8.76 -5.01,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,2.67 -1.5,4.95 -3.689,6.12 l 6.929,9.509 z m -10.11,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.839,-1.86 -1.859,-1.86 z"
+           id="path13717"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1169.743,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13719"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1189.723,-5588.988 -6.239,0 0,17.489 -5.011,0 0,-17.489 -6.239,0 0,-5.01 17.489,0 0,5.01 z"
+           id="path13721"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1204.723,-5571.499 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z m 0.51,-29.999 -5.01,4.98 -6.03,0 5.01,-4.98 6.03,0 z"
+           id="path13723"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+      </g>
+    </g>
+  </g>
+</svg>

BIN
sites/all/themes/gui/jee/assets/img/title-SUB.png


+ 126 - 0
sites/all/themes/gui/jee/assets/img/title-SUB.svg

@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="200"
+   height="35"
+   viewBox="0 0 200 35.000001"
+   id="svg60316"
+   version="1.1"
+   inkscape:version="0.91 r13725"
+   sodipodi:docname="title-SUB.svg">
+  <defs
+     id="defs60318" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8"
+     inkscape:cx="65.811817"
+     inkscape:cy="1.5015455"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     units="px"
+     inkscape:window-width="1920"
+     inkscape:window-height="1151"
+     inkscape:window-x="-2"
+     inkscape:window-y="26"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata60321">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Calque 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(0,-1017.3622)">
+    <g
+       id="g58862"
+       transform="translate(717.2259,1254.9606)">
+      <g
+         id="g13699"
+         transform="translate(-1724.1989,5366.3906)">
+        <path
+           d="m 1016.473,-5570.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.361,7.14 -7.5,7.14 z"
+           id="path13701"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1042.692,-5578.489 c 0,4.14 -3.33,7.5 -7.5,7.5 -4.14,0 -7.499,-3.36 -7.499,-7.5 l 0,-15.509 5.01,0 0,15.509 c 0,1.38 1.109,2.49 2.489,2.49 1.38,0 2.521,-1.11 2.521,-2.49 l 0,-15.509 4.979,0 0,15.509 z"
+           id="path13703"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1056.343,-5571.499 -8.64,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,1.65 -0.6,3.18 -1.59,4.38 0.99,1.2 1.59,2.73 1.59,4.38 0,3.809 -3.09,6.869 -6.869,6.869 z m 0,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.84,-1.86 -1.859,-1.86 z m 0,8.729 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.84 1.859,-1.86 0,-1.02 -0.84,-1.89 -1.859,-1.89 z"
+           id="path13705"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1073.982,-5570.989 c -3.57,0 -6.54,-2.37 -7.32,-5.52 l 5.7,0 c 0.42,0.3 0.99,0.51 1.62,0.51 1.35,0 2.49,-0.96 2.49,-2.13 0,-1.17 -1.141,-2.13 -2.49,-2.13 -4.17,0 -7.5,-3.18 -7.5,-7.109 0,-3.93 3.33,-7.14 7.5,-7.14 3.54,0 6.51,2.37 7.29,5.52 l -5.7,0 c -0.42,-0.3 -0.99,-0.51 -1.59,-0.51 -1.38,0 -2.52,0.96 -2.52,2.13 0,1.17 1.14,2.13 2.52,2.13 4.14,0 7.5,3.18 7.5,7.109 0,3.93 -3.36,7.14 -7.5,7.14 z"
+           id="path13707"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1090.213,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13709"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1100.713,-5571.499 -5.52,0 0,-22.499 5.52,0 c 5.52,0 9.989,5.04 9.989,11.25 0,6.239 -4.47,11.249 -9.989,11.249 z m 0,-17.489 -0.51,0 0,12.479 0.51,0 c 2.729,0 4.979,-2.79 4.979,-6.24 0,-3.45 -2.25,-6.239 -4.979,-6.239 z"
+           id="path13711"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1119.583,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13713"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1142.893,-5571.499 -5.31,0 -1.32,-3.75 -8.25,0 -1.319,3.75 -5.311,0 8.19,-22.499 5.159,0 8.161,22.499 z m -8.371,-8.76 -2.37,-6.689 -2.369,6.689 4.739,0 z"
+           id="path13715"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1163.473,-5571.499 -6.18,0 -6.36,-8.76 -1.199,0 0,8.76 -5.01,0 0,-22.499 8.64,0 c 3.779,0 6.869,3.09 6.869,6.87 0,2.67 -1.5,4.95 -3.689,6.12 l 6.929,9.509 z m -10.11,-17.489 -3.63,0 0,3.75 3.63,0 c 1.02,0 1.859,-0.87 1.859,-1.89 0,-1.02 -0.839,-1.86 -1.859,-1.86 z"
+           id="path13717"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1169.743,-5571.499 -5.01,0 0,-22.499 5.01,0 0,22.499 z"
+           id="path13719"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1189.723,-5588.988 -6.239,0 0,17.489 -5.011,0 0,-17.489 -6.239,0 0,-5.01 17.489,0 0,5.01 z"
+           id="path13721"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+        <path
+           d="m 1204.723,-5571.499 -6.119,0 c -3.811,0 -6.87,-3.06 -6.87,-6.87 0,-1.65 0.601,-3.18 1.561,-4.38 -0.96,-1.2 -1.561,-2.73 -1.561,-4.38 0,-3.78 3.06,-6.87 6.87,-6.87 l 6.119,0 0,5.01 -6.119,0 c -1.021,0 -1.891,0.84 -1.891,1.86 0,1.02 0.87,1.89 1.891,1.89 l 6.119,0 0,4.979 -6.119,0 c -1.021,0 -1.891,0.87 -1.891,1.89 0,1.02 0.87,1.86 1.891,1.86 l 6.119,0 0,5.011 z m 0.51,-29.999 -5.01,4.98 -6.03,0 5.01,-4.98 6.03,0 z"
+           id="path13723"
+           inkscape:connector-curvature="0"
+           style="fill:#c70c0f" />
+      </g>
+    </g>
+  </g>
+</svg>

+ 2 - 1
sites/all/themes/gui/jee/bower.json

@@ -4,7 +4,8 @@
     "foundation": "~5.5.0",
     "jquery.transit": "~0.9.12",
     "jquery.pep": "~0.6.3",
-    "Peppermint": "~1.3.7"
+    "Peppermint": "~1.3.7",
+    "vimeo-jquery-api": "~0.9.3"
   },
   "version": "7.x-0.1",
   "authors": [

+ 50 - 0
sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/.bower.json

@@ -0,0 +1,50 @@
+{
+  "name": "vimeo-jquery-api",
+  "version": "0.9.3",
+  "homepage": "https://github.com/jrue/Vimeo-jQuery-API",
+  "authors": [
+    "Jeremy Rue <jrue@berkeley.edu>"
+  ],
+  "description": "A jQuery plugin to easily control Vimeo videos through their API.",
+  "main": [
+    "dist/jquery.vimeo.api.js",
+    "dist/jquery.vimeo.api.min.js"
+  ],
+  "keywords": [
+    "video",
+    "Vimeo",
+    "iframe",
+    "api",
+    "javascript",
+    "jquery-plugin"
+  ],
+  "license": "MIT",
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests",
+    "example.html",
+    "src",
+    "Gruntfile.js",
+    "LICENSE",
+    "package.json",
+    "vimeoapi.jquery.json",
+    "readme.md",
+    "bower.json"
+  ],
+  "dependencies": {
+    "jquery": ">=1.7"
+  },
+  "_release": "0.9.3",
+  "_resolution": {
+    "type": "version",
+    "tag": "v0.9.3",
+    "commit": "3c6b2d6b367131f09227b447bb0d1e1976952d24"
+  },
+  "_source": "git://github.com/jrue/Vimeo-jQuery-API.git",
+  "_target": "~0.9.3",
+  "_originalSource": "vimeo-jquery-api",
+  "_direct": true
+}

+ 40 - 0
sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/bower.json

@@ -0,0 +1,40 @@
+{
+  "name": "vimeo-jquery-api",
+  "version": "0.9.2",
+  "homepage": "https://github.com/jrue/Vimeo-jQuery-API",
+  "authors": [
+    "Jeremy Rue <jrue@berkeley.edu>"
+  ],
+  "description": "A jQuery plugin to easily control Vimeo videos through their API.",
+  "main": [
+    "dist/jquery.vimeo.api.js",
+    "dist/jquery.vimeo.api.min.js"
+  ],
+  "keywords": [
+    "video",
+    "Vimeo",
+    "iframe",
+    "api",
+    "javascript",
+    "jquery-plugin"
+  ],
+  "license": "MIT",
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests",
+    "example.html",
+    "src",
+    "Gruntfile.js",
+    "LICENSE",
+    "package.json",
+    "vimeoapi.jquery.json",
+    "readme.md",
+    "bower.json"
+  ],
+  "dependencies": {
+    "jquery": ">=1.7"
+  }
+}

+ 196 - 0
sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/dist/jquery.vimeo.api.js

@@ -0,0 +1,196 @@
+/**!
+ * Simple jQuery Vimeo API -- By Jeremy Rue
+ * 
+ * Description: A jQuery plugin to easily control Vimeo videos through their API.
+ * Author: Jeremy Rue, jrue@berkeley.edu 
+ * License: MIT
+ * Version: 0.9.3
+ */
+;(function($, window) {
+
+    var vimeoJqueryAPI = {
+
+        //catches return messages when methods like getVolume are called. 
+        //counter is if multiple calls are made before one returns.
+        catchMethods : {methodreturn:[], count:0},
+
+        //This kicks things off on window message event
+        init : function(d){
+
+            var vimeoVideo,
+                vimeoAPIurl,
+                data;
+
+            //is this window message from vimeo?
+            if(!d.originalEvent.origin.match(/vimeo/g))
+                return;
+
+            //make sure data was sent
+            if(!("data" in d.originalEvent))
+                return;
+
+            //store data as JSON object
+            data = $.type(d.originalEvent.data) === "string" ? $.parseJSON(d.originalEvent.data) : d.originalEvent.data;
+
+            //make sure data is not blank
+            if(!data)
+                return;
+
+            //get the id of this vimeo video, hopefully they set it. If not, use first one we find
+            vimeoVideo   = this.setPlayerID(data);
+            vimeoAPIurl  = this.setVimeoAPIurl(vimeoVideo);
+
+            //If this is an event message, like ready or paused
+            if(data.hasOwnProperty("event"))
+                this.handleEvent(data, vimeoVideo, vimeoAPIurl);
+
+            //IF this is a return event message, like getVolume or getCurrentTime
+            if(data.hasOwnProperty("method"))
+                this.handleMethod(data, vimeoVideo, vimeoAPIurl);
+
+        },
+
+        setPlayerID : function(d){
+
+            //if they set an player_id as a query string in the URL
+            if(d.hasOwnProperty("player_id")){
+                if($("#" + d.player_id).length){
+                    return $("#" + d.player_id);
+                } else {
+                    return $("iframe[src*=" + d.player_id + "]");
+                }
+            } else {
+
+                //No player_id. Use the first Vimeo video on the page, and hope they don't have multiples
+                return $("iframe[src*='vimeo']").eq(0);
+            }
+
+        },
+
+        setVimeoAPIurl : function(d){
+
+            //prepend vimeo url with proper protocol
+            if(d.attr('src').substr(0, 4) !== 'http'){
+                return window.location.protocol !== 'https:' ? 'http:'+d.attr('src').split('?')[0] : 'https:'+d.attr('src').split('?')[0];
+            } else {
+                return d.attr('src').split('?')[0];
+            }
+        },
+
+        handleMethod : function(d, vid, api){
+
+            //If the message is returned from a method call, store it for later.
+            this.catchMethods.methodreturn.push(d.value);
+
+        },
+
+        handleEvent : function(d, vid, api){
+            switch (d.event.toLowerCase()) {
+                case 'ready':
+
+                    //Go through all events attached to this element, and set an event listener
+                    for(var prop in $._data(vid[0], "events")){
+                        if(prop.match(/loadProgress|playProgress|play|pause|finish|seek|cuechange/)){
+                            vid[0].contentWindow.postMessage(JSON.stringify({method: 'addEventListener', value: prop}), api);
+                        }
+                    }
+
+                    //if methods are sent before video is ready, call them now
+                    if(vid.data("vimeoAPICall")){
+                        var vdata = vid.data("vimeoAPICall");
+                        for(var i=0; i< vdata.length; i++){
+                            vid[0].contentWindow.postMessage(JSON.stringify(vdata[i].message), vdata[i].api);
+                        }
+                        vid.removeData("vimeoAPICall");
+                    }
+
+                    //this video is ready
+                    vid.data("vimeoReady", true);
+                    vid.triggerHandler("ready");
+
+                    break;
+
+                case 'seek':
+                    vid.triggerHandler("seek", [d.data]);
+                    break;
+
+                case 'loadprogress':
+                    vid.triggerHandler("loadProgress", [d.data]);
+                    break;
+
+                case 'playprogress':
+                    vid.triggerHandler("playProgress", [d.data]);
+                    break;
+
+                case 'pause':
+                    vid.triggerHandler("pause");
+                    break;
+
+                case 'finish':
+                    vid.triggerHandler("finish");
+                    break;
+
+                case 'play':
+                    vid.triggerHandler("play");
+                    break;
+
+                case 'cuechange':
+                    vid.triggerHandler("cuechange");
+                    break;
+            }
+        }
+    };
+
+    $(window).on("message", function(e){ vimeoJqueryAPI.init(e); });
+
+
+    /**
+     *  Vimeo jQuery method plugin
+     *
+     * @param element {jQuery Object} The element this was called on (verifies it's an iframe)
+     * @param option1 {string} The method to send to vimeo.
+     * @param option2 {string|function} If a string, it's the value (i.e. setVolume 2) otherwise, it's a callback function
+     */
+    $.vimeo = function(element, option1, option2) {
+
+        var message = {},
+            catchMethodLength = vimeoJqueryAPI.catchMethods.methodreturn.length;
+
+        if(typeof option1 === "string")  
+            message.method = option1;
+
+        if(typeof option2 !== undefined && typeof option2 !== "function") 
+            message.value  = option2;
+
+        //call method, but check if video was ready, otherwise cue it up with jQuery data to be called when video is ready
+        if(element.prop("tagName").toLowerCase() === 'iframe' && message.hasOwnProperty("method")){
+            if(element.data("vimeoReady")){
+                element[0].contentWindow.postMessage(JSON.stringify(message), vimeoJqueryAPI.setVimeoAPIurl(element));
+            } else {
+                var _data = element.data("vimeoAPICall") ? element.data("vimeoAPICall") : [];
+                _data.push({message:message, api:vimeoJqueryAPI.setVimeoAPIurl(element)});
+                element.data("vimeoAPICall", _data);
+            }
+        }
+
+        //If this method will return data, (starts with "get") then use callback once return message comes through
+        if((option1.toString().substr(0, 3) === "get" || option1.toString() === "paused") && typeof option2 === "function"){
+            (function(cml, func, i){
+                var interval = window.setInterval(function(){
+
+                    if(vimeoJqueryAPI.catchMethods.methodreturn.length != cml){
+                        window.clearInterval(interval);
+                        func(vimeoJqueryAPI.catchMethods.methodreturn[i]);
+                    }
+                }, 10);
+            })(catchMethodLength, option2, vimeoJqueryAPI.catchMethods.count);
+            vimeoJqueryAPI.catchMethods.count++;
+        } 
+        return element;
+    };
+
+    $.fn.vimeo = function(option1, option2) {
+            return $.vimeo(this, option1, option2);
+    };
+
+})(jQuery, window);

File diff suppressed because it is too large
+ 1 - 0
sites/all/themes/gui/jee/bower_components/vimeo-jquery-api/dist/jquery.vimeo.api.min.js


+ 301 - 140
sites/all/themes/gui/jee/css/jee.css

@@ -3871,7 +3871,7 @@ body {
     opacity: 0;
   }
 }
-/* line 109, jee.scss */
+/* line 108, jee.scss */
 #header {
   z-index: 1;
   position: absolute;
@@ -3885,18 +3885,18 @@ body {
   -webkit-animation-fill-mode: forwards;
           animation-fill-mode: forwards;
 }
-/* line 123, jee.scss */
+/* line 122, jee.scss */
 #header h1 {
   position: absolute;
   width: 100%;
   height: 100%;
 }
-/* line 126, jee.scss */
+/* line 125, jee.scss */
 #header h1 a {
   display: block;
   margin-top: -500%;
 }
-/* line 128, jee.scss */
+/* line 127, jee.scss */
 #header h1:after, #header h1:before {
   content: "";
   display: block;
@@ -3907,7 +3907,7 @@ body {
   left: 0;
   opacity: 0;
 }
-/* line 136, jee.scss */
+/* line 135, jee.scss */
 #header h1:before {
   background: transparent url("../assets/img/logo.png") no-repeat center center;
   background: none, url("../assets/img/logo.svg") no-repeat center center;
@@ -3916,7 +3916,7 @@ body {
   -webkit-animation-fill-mode: forwards;
           animation-fill-mode: forwards;
 }
-/* line 141, jee.scss */
+/* line 140, jee.scss */
 #header h1:after {
   background: transparent url("../assets/img/logo-blured.png") no-repeat center center;
   background: none, url("../assets/img/logo-blured.svg") no-repeat center center;
@@ -3925,7 +3925,7 @@ body {
   -webkit-animation-fill-mode: forwards;
           animation-fill-mode: forwards;
 }
-/* line 149, jee.scss */
+/* line 148, jee.scss */
 #header h2 {
   background: transparent url("../assets/img/slogan.png") no-repeat center center;
   background: none, url("../assets/img/slogan.svg") no-repeat center center;
@@ -3938,13 +3938,13 @@ body {
   -webkit-animation-fill-mode: forwards;
           animation-fill-mode: forwards;
 }
-/* line 154, jee.scss */
+/* line 153, jee.scss */
 #header h2 a {
   display: block;
   margin-top: -500%;
 }
 
-/* line 161, jee.scss */
+/* line 160, jee.scss */
 div.messages {
   position: absolute;
   top: 20px;
@@ -3955,7 +3955,7 @@ div.messages {
   z-index: 1000;
 }
 
-/* line 169, jee.scss */
+/* line 168, jee.scss */
 #main {
   position: absolute;
   width: 100%;
@@ -3981,19 +3981,19 @@ div.messages {
   \____/_/   /_____/_/ |_/_____/_____/   \____/_/ /_/_/  |_/_/     /_/ /_____/_/ |_|/____/
   */
 }
-/* line 174, jee.scss */
+/* line 173, jee.scss */
 #main > .region, #main > .region > .block-system, #main > .region > .block-system > .content {
   position: relative;
   width: 100%;
   height: 100%;
   overflow: hidden;
 }
-/* line 190, jee.scss */
+/* line 189, jee.scss */
 #main #node-2.node-teaser::after {
   background: transparent url("../assets/img/bgd-sol.png") no-repeat center center;
   background: none, url("../assets/img/bgd-sol.svg") no-repeat center center;
 }
-/* line 191, jee.scss */
+/* line 190, jee.scss */
 #main #node-2.node-teaser, #main #node-2.node-teaser a {
   color: #b24c14;
 }
@@ -4002,147 +4002,196 @@ div.messages {
   color: #d85509;
 }
 /* line 193, jee.scss */
+#main #node-2.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-SOL.png") no-repeat center center;
+  background: none, url("../assets/img/title-SOL.svg") no-repeat center center;
+  width: 170px;
+  height: 35px;
+}
+/* line 195, jee.scss */
 #main #node-2.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-sol.png") no-repeat center center;
   background: none, url("../assets/img/shadow-sol.svg") no-repeat center center;
 }
-/* line 194, jee.scss */
+/* line 196, jee.scss */
 #main #node-2.node-teaser .line {
   background-color: #ea5b0c;
 }
-/* line 200, jee.scss */
+/* line 202, jee.scss */
 #main #node-3.node-teaser::after {
   background: transparent url("../assets/img/bgd-dph.png") no-repeat center center;
   background: none, url("../assets/img/bgd-dph.svg") no-repeat center center;
 }
-/* line 201, jee.scss */
+/* line 203, jee.scss */
 #main #node-3.node-teaser, #main #node-3.node-teaser a {
   color: #686b00;
 }
-/* line 202, jee.scss */
+/* line 205, jee.scss */
 #main #node-3.node-teaser h2.node-title, #main #node-3.node-teaser h2.node-title a {
   color: #afaf00;
 }
-/* line 203, jee.scss */
+/* line 206, jee.scss */
+#main #node-3.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-DPH.png") no-repeat center center;
+  background: none, url("../assets/img/title-DPH.svg") no-repeat center center;
+  width: 180px;
+  height: 80px;
+}
+/* line 208, jee.scss */
 #main #node-3.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-dph.png") no-repeat center center;
   background: none, url("../assets/img/shadow-dph.svg") no-repeat center center;
 }
-/* line 204, jee.scss */
+/* line 209, jee.scss */
 #main #node-3.node-teaser .line {
   background-color: #cecd00;
 }
-/* line 210, jee.scss */
+/* line 215, jee.scss */
 #main #node-4.node-teaser::after {
   background: transparent url("../assets/img/bgd-sub.png") no-repeat center center;
   background: none, url("../assets/img/bgd-sub.svg") no-repeat center center;
 }
-/* line 211, jee.scss */
+/* line 216, jee.scss */
 #main #node-4.node-teaser, #main #node-4.node-teaser a {
   color: #b71330;
 }
-/* line 212, jee.scss */
+/* line 218, jee.scss */
 #main #node-4.node-teaser h2.node-title, #main #node-4.node-teaser h2.node-title a {
   color: #cd0734;
 }
-/* line 213, jee.scss */
+/* line 219, jee.scss */
+#main #node-4.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-SUB.png") no-repeat center center;
+  background: none, url("../assets/img/title-SUB.svg") no-repeat center center;
+  width: 200px;
+  height: 35px;
+}
+/* line 221, jee.scss */
 #main #node-4.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-sub.png") no-repeat center center;
   background: none, url("../assets/img/shadow-sub.svg") no-repeat center center;
 }
-/* line 214, jee.scss */
+/* line 222, jee.scss */
 #main #node-4.node-teaser .line {
   background-color: #de003a;
 }
-/* line 220, jee.scss */
+/* line 228, jee.scss */
 #main #node-5.node-teaser::after {
   background: transparent url("../assets/img/bgd-bc.png") no-repeat center center;
   background: none, url("../assets/img/bgd-bc.svg") no-repeat center center;
 }
-/* line 221, jee.scss */
+/* line 229, jee.scss */
 #main #node-5.node-teaser, #main #node-5.node-teaser a {
   color: #033d6f;
 }
-/* line 222, jee.scss */
+/* line 231, jee.scss */
 #main #node-5.node-teaser h2.node-title, #main #node-5.node-teaser h2.node-title a {
   color: #024b87;
 }
-/* line 223, jee.scss */
+/* line 232, jee.scss */
+#main #node-5.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-BC.png") no-repeat center center;
+  background: none, url("../assets/img/title-BC.svg") no-repeat center center;
+  width: 120px;
+  height: 45px;
+}
+/* line 234, jee.scss */
 #main #node-5.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-bc.png") no-repeat center center;
   background: none, url("../assets/img/shadow-bc.svg") no-repeat center center;
 }
-/* line 224, jee.scss */
+/* line 235, jee.scss */
 #main #node-5.node-teaser .line {
   background-color: #0066b1;
 }
-/* line 230, jee.scss */
+/* line 241, jee.scss */
 #main #node-6.node-teaser::after {
   background: transparent url("../assets/img/bgd-opp.png") no-repeat center center;
   background: none, url("../assets/img/bgd-opp.svg") no-repeat center center;
 }
-/* line 231, jee.scss */
+/* line 242, jee.scss */
 #main #node-6.node-teaser, #main #node-6.node-teaser a {
   color: #7f1965;
 }
-/* line 232, jee.scss */
+/* line 244, jee.scss */
 #main #node-6.node-teaser h2.node-title, #main #node-6.node-teaser h2.node-title a {
   color: #941b80;
 }
-/* line 233, jee.scss */
+/* line 245, jee.scss */
+#main #node-6.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-OPP.png") no-repeat center center;
+  background: none, url("../assets/img/title-OPP.svg") no-repeat center center;
+  width: 245px;
+  height: 95px;
+}
+/* line 247, jee.scss */
 #main #node-6.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-opp.png") no-repeat center center;
   background: none, url("../assets/img/shadow-opp.svg") no-repeat center center;
 }
-/* line 234, jee.scss */
+/* line 248, jee.scss */
 #main #node-6.node-teaser .line {
   background-color: #af1380;
 }
-/* line 240, jee.scss */
+/* line 254, jee.scss */
 #main #node-7.node-teaser::after {
   background: transparent url("../assets/img/bgd-dub.png") no-repeat center center;
   background: none, url("../assets/img/bgd-dub.svg") no-repeat center center;
 }
-/* line 241, jee.scss */
+/* line 255, jee.scss */
 #main #node-7.node-teaser, #main #node-7.node-teaser a {
   color: #22742c;
 }
-/* line 242, jee.scss */
+/* line 257, jee.scss */
 #main #node-7.node-teaser h2.node-title, #main #node-7.node-teaser h2.node-title a {
   color: #288d80;
 }
-/* line 243, jee.scss */
+/* line 258, jee.scss */
+#main #node-7.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-DUB.png") no-repeat center center;
+  background: none, url("../assets/img/title-DUB.svg") no-repeat center center;
+  width: 195px;
+  height: 65px;
+}
+/* line 260, jee.scss */
 #main #node-7.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-dub.png") no-repeat center center;
   background: none, url("../assets/img/shadow-dub.svg") no-repeat center center;
 }
-/* line 244, jee.scss */
+/* line 261, jee.scss */
 #main #node-7.node-teaser .line {
   background-color: #62a530;
 }
-/* line 250, jee.scss */
+/* line 267, jee.scss */
 #main #node-8.node-teaser::after {
   background: transparent url("../assets/img/bgd-juso.png") no-repeat center center;
   background: none, url("../assets/img/bgd-juso.svg") no-repeat center center;
 }
-/* line 251, jee.scss */
+/* line 268, jee.scss */
 #main #node-8.node-teaser, #main #node-8.node-teaser a {
   color: #0b7f8a;
 }
-/* line 252, jee.scss */
+/* line 270, jee.scss */
 #main #node-8.node-teaser h2.node-title, #main #node-8.node-teaser h2.node-title a {
   color: #009aa8;
 }
-/* line 253, jee.scss */
+/* line 271, jee.scss */
+#main #node-8.node-teaser h2.node-title a {
+  background: transparent url("../assets/img/title-JUSO.png") no-repeat center center;
+  background: none, url("../assets/img/title-JUSO.svg") no-repeat center center;
+  width: 200px;
+  height: 65px;
+}
+/* line 273, jee.scss */
 #main #node-8.node-teaser .field-name-field-vignette {
   background: transparent url("../assets/img/shadow-juso.png") no-repeat center center;
   background: none, url("../assets/img/shadow-juso.svg") no-repeat center center;
 }
-/* line 254, jee.scss */
+/* line 274, jee.scss */
 #main #node-8.node-teaser .line {
   background-color: #33b4b5;
 }
-/* line 265, jee.scss */
+/* line 285, jee.scss */
 #main .node-chapitre.node-teaser {
   z-index: 2;
   position: absolute;
@@ -4194,8 +4243,8 @@ div.messages {
                                                     |_|                                                                      /_/
   */
 }
-/* line 288, jee.scss */
-#main .node-chapitre.node-teaser h2.node-title {
+/* line 308, jee.scss */
+#main .node-chapitre.node-teaser h2.node-title a {
   -webkit-transform: none;
       -ms-transform: none;
           transform: none;
@@ -4208,11 +4257,11 @@ div.messages {
           transition-property: transform;
   z-index: 5;
 }
-/* line 295, jee.scss */
+/* line 315, jee.scss */
 #main .node-chapitre.node-teaser > .content {
   position: relative;
 }
-/* line 296, jee.scss */
+/* line 316, jee.scss */
 #main .node-chapitre.node-teaser .texts {
   opacity: 0;
   height: 1px;
@@ -4223,7 +4272,7 @@ div.messages {
           transition-property: opacity height;
   position: absolute;
 }
-/* line 302, jee.scss */
+/* line 322, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-partie {
   opacity: 0;
   position: absolute;
@@ -4232,12 +4281,12 @@ div.messages {
   -webkit-transition-property: opacity -webkit-transform;
           transition-property: opacity transform;
 }
-/* line 308, jee.scss */
+/* line 328, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-partie:nth-child(2) {
   z-index: 2;
   opacity: 1;
 }
-/* line 312, jee.scss */
+/* line 332, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-partie:nth-child(2) > .field-type-text {
   opacity: 0;
   -webkit-transition: 1s ease-out 0.9s;
@@ -4245,12 +4294,19 @@ div.messages {
   -webkit-transition-property: opacity;
           transition-property: opacity;
 }
-/* line 317, jee.scss */
+/* line 337, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-partie:nth-child(2) > .field-name-field-vignette {
   cursor: pointer;
   z-index: 2;
+  -webkit-transform: scale(0.5);
+      -ms-transform: scale(0.5);
+          transform: scale(0.5);
+  -webkit-transition: 1s ease-out;
+          transition: 1s ease-out;
+  -webkit-transition-property: -webkit-transform;
+          transition-property: transform;
 }
-/* line 320, jee.scss */
+/* line 344, jee.scss */
 #main .node-chapitre.node-teaser:after {
   opacity: 0;
   -webkit-transition: 2s ease-in;
@@ -4262,11 +4318,11 @@ div.messages {
   bottom: 2px;
   right: 2px;
 }
-/* line 338, jee.scss */
+/* line 362, jee.scss */
 #main .node-chapitre.node-teaser.previewed {
   z-index: 100;
 }
-/* line 340, jee.scss */
+/* line 364, jee.scss */
 #main .node-chapitre.node-teaser.previewed:after {
   opacity: 1;
   top: 2em;
@@ -4274,44 +4330,50 @@ div.messages {
   right: -12em;
   bottom: -30em;
 }
-/* line 347, jee.scss */
-#main .node-chapitre.node-teaser.previewed h2.node-title {
+/* line 371, jee.scss */
+#main .node-chapitre.node-teaser.previewed h2.node-title a {
   -webkit-transform: scale(2, 2);
       -ms-transform: scale(2, 2);
           transform: scale(2, 2);
 }
-/* line 348, jee.scss */
+/* line 372, jee.scss */
 #main .node-chapitre.node-teaser.previewed .texts {
   opacity: 1;
   height: 8em;
 }
-/* line 349, jee.scss */
+/* line 373, jee.scss */
 #main .node-chapitre.node-teaser.previewed .field-name-field-partie {
   opacity: 1;
   z-index: 0;
 }
-/* line 352, jee.scss */
+/* line 376, jee.scss */
 #main .node-chapitre.node-teaser.previewed .field-name-field-partie > .field {
   opacity: 1;
   z-index: -1;
   cursor: default;
 }
-/* line 362, jee.scss */
+/* line 378, jee.scss */
+#main .node-chapitre.node-teaser.previewed .field-name-field-partie:nth-child(2) > .field-name-field-vignette {
+  -webkit-transform: scale(1.3);
+      -ms-transform: scale(1.3);
+          transform: scale(1.3);
+}
+/* line 392, jee.scss */
 #main .node-chapitre.node-teaser.mitigated {
   opacity: 0.3;
 }
-/* line 373, jee.scss */
+/* line 403, jee.scss */
 .chapter-displayed #main .node-chapitre.node-teaser {
   opacity: 0.1;
 }
-/* line 385, jee.scss */
+/* line 415, jee.scss */
 #main .node-chapitre.node-teaser:after {
   content: " ";
   background-size: contain !important;
   position: absolute;
   z-index: -1;
 }
-/* line 392, jee.scss */
+/* line 422, jee.scss */
 #main .node-chapitre.node-teaser h2.node-title {
   font-family: "epflulb";
   font-weight: normal;
@@ -4322,30 +4384,36 @@ div.messages {
   z-index: 5;
 }
 @media only screen and (min-width: 64.063em) {
-  /* line 392, jee.scss */
+  /* line 422, jee.scss */
   #main .node-chapitre.node-teaser h2.node-title {
     font-size: 1.3em;
   }
 }
 @media only screen and (min-width: 90.063em) {
-  /* line 392, jee.scss */
+  /* line 422, jee.scss */
   #main .node-chapitre.node-teaser h2.node-title {
     font-size: 1.8em;
   }
 }
-/* line 412, jee.scss */
+/* line 436, jee.scss */
+#main .node-chapitre.node-teaser h2.node-title a {
+  display: block;
+  text-indent: -1000px;
+  overflow: hidden;
+}
+/* line 447, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-comprendre {
   min-width: 16em;
 }
-/* line 413, jee.scss */
+/* line 448, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-comprendre h1, #main .node-chapitre.node-teaser .field-name-field-comprendre h2, #main .node-chapitre.node-teaser .field-name-field-comprendre h3, #main .node-chapitre.node-teaser .field-name-field-comprendre h4, #main .node-chapitre.node-teaser .field-name-field-comprendre h5, #main .node-chapitre.node-teaser .field-name-field-comprendre h6 {
   display: none !important;
 }
-/* line 415, jee.scss */
+/* line 450, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-comprendre p {
   margin: 0;
 }
-/* line 419, jee.scss */
+/* line 454, jee.scss */
 #main .node-chapitre.node-teaser ul.links {
   display: block;
   margin: 0;
@@ -4354,11 +4422,11 @@ div.messages {
   position: relative;
   width: 100%;
 }
-/* line 421, jee.scss */
+/* line 456, jee.scss */
 #main .node-chapitre.node-teaser ul.links li.node-readmore {
   padding: 0;
 }
-/* line 423, jee.scss */
+/* line 458, jee.scss */
 #main .node-chapitre.node-teaser ul.links li.node-readmore a {
   display: inline-block;
   height: 25px;
@@ -4370,12 +4438,12 @@ div.messages {
   background: transparent url("../assets/img/readmore-btn.png") no-repeat right center;
   background: none, url("../assets/img/readmore-btn.svg") no-repeat right center;
 }
-/* line 436, jee.scss */
+/* line 471, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-partie {
   clear: both;
   padding-top: 1em;
 }
-/* line 440, jee.scss */
+/* line 475, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-vignette {
   position: relative;
   float: left;
@@ -4386,28 +4454,28 @@ div.messages {
   margin-left: 0;
   background-size: contain;
 }
-/* line 453, jee.scss */
+/* line 487, jee.scss */
 #main .node-chapitre.node-teaser .field-type-text {
   min-width: 16em;
 }
-/* line 454, jee.scss */
+/* line 488, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-titre {
   font-family: "epflul";
   font-size: 1.6em;
   line-height: 1.1;
 }
-/* line 459, jee.scss */
+/* line 493, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-sous-titre {
   font-family: "epflul";
   font-size: 1.4em;
   line-height: 1.2;
 }
-/* line 464, jee.scss */
+/* line 498, jee.scss */
 #main .node-chapitre.node-teaser .field-name-field-description {
   font-size: 0.88em;
   line-height: 1.2;
 }
-/* line 470, jee.scss */
+/* line 504, jee.scss */
 #main .node-chapitre.node-teaser .line {
   z-index: -1;
   position: absolute;
@@ -4419,7 +4487,7 @@ div.messages {
   width: 2px;
   opacity: 0.4;
 }
-/* line 489, jee.scss */
+/* line 523, jee.scss */
 #main #chapter-wrapper {
   position: absolute;
   top: 0;
@@ -4432,11 +4500,6 @@ div.messages {
           transition: 2s ease-out;
   -webkit-transition-property: opacity;
           transition-property: opacity;
-}
-/* line 498, jee.scss */
-#main #chapter-wrapper.visible {
-  opacity: 1;
-  z-index: 500;
   /*
    _____ _____ __    _____ _____ _____    _____ __ __    _____ _____ ____  _____
   |     |     |  |  |     | __  |   __|  | __  |  |  |  |   | |     |    \|   __|
@@ -4451,110 +4514,207 @@ div.messages {
                                          |__|
   */
 }
-/* line 509, jee.scss */
-#main #chapter-wrapper.visible #node-2 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-2 h2.node-title,
-#main #chapter-wrapper.visible #node-2 .field-name-field-dbatre li:before {
+/* line 532, jee.scss */
+#main #chapter-wrapper.visible {
+  opacity: 1;
+  z-index: 500;
+}
+/* line 537, jee.scss */
+#main #chapter-wrapper #home-btn {
+  background: transparent url("../assets/img/home-btn.png") no-repeat center center;
+  background: none, url("../assets/img/home-btn.svg") no-repeat center center;
+  position: absolute;
+  z-index: 100;
+  top: 20px;
+  left: 20px;
+  width: 25px;
+  height: 20px;
+  cursor: pointer;
+}
+/* line 552, jee.scss */
+#main #chapter-wrapper #node-2 {
+  background: transparent url("../assets/img/bgd-sol.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-sol.svg") no-repeat center center;
+}
+/* line 554, jee.scss */
+#main #chapter-wrapper #node-2 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-2 h2.node-title,
+#main #chapter-wrapper #node-2 .field-name-field-dbatre li:before {
   color: #ea5b0c;
 }
-/* line 516, jee.scss */
-#main #chapter-wrapper.visible #node-3 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-3 h2.node-title,
-#main #chapter-wrapper.visible #node-3 .field-name-field-dbatre li:before {
+/* line 559, jee.scss */
+#main #chapter-wrapper #node-2 h2.node-title {
+  background: transparent url("../assets/img/title-SOL-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-SOL-blur.svg") no-repeat center center;
+}
+/* line 562, jee.scss */
+#main #chapter-wrapper #node-3 {
+  background: transparent url("../assets/img/bgd-dph.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-dph.svg") no-repeat center center;
+}
+/* line 564, jee.scss */
+#main #chapter-wrapper #node-3 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-3 h2.node-title,
+#main #chapter-wrapper #node-3 .field-name-field-dbatre li:before {
   color: #cecd00;
 }
-/* line 523, jee.scss */
-#main #chapter-wrapper.visible #node-4 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-4 h2.node-title,
-#main #chapter-wrapper.visible #node-4 .field-name-field-dbatre li:before {
+/* line 569, jee.scss */
+#main #chapter-wrapper #node-3 h2.node-title {
+  background: transparent url("../assets/img/title-DPH-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-DPH-blur.svg") no-repeat center center;
+}
+/* line 572, jee.scss */
+#main #chapter-wrapper #node-4 {
+  background: transparent url("../assets/img/bgd-sub.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-sub.svg") no-repeat center center;
+}
+/* line 574, jee.scss */
+#main #chapter-wrapper #node-4 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-4 h2.node-title,
+#main #chapter-wrapper #node-4 .field-name-field-dbatre li:before {
   color: #de003a;
 }
-/* line 530, jee.scss */
-#main #chapter-wrapper.visible #node-5 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-5 h2.node-title,
-#main #chapter-wrapper.visible #node-5 .field-name-field-dbatre li:before {
+/* line 579, jee.scss */
+#main #chapter-wrapper #node-4 h2.node-title {
+  background: transparent url("../assets/img/title-SUB-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-SUB-blur.svg") no-repeat center center;
+}
+/* line 582, jee.scss */
+#main #chapter-wrapper #node-5 {
+  background: transparent url("../assets/img/bgd-bc.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-bc.svg") no-repeat center center;
+}
+/* line 584, jee.scss */
+#main #chapter-wrapper #node-5 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-5 h2.node-title,
+#main #chapter-wrapper #node-5 .field-name-field-dbatre li:before {
   color: #0066b1;
 }
-/* line 537, jee.scss */
-#main #chapter-wrapper.visible #node-6 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-6 h2.node-title,
-#main #chapter-wrapper.visible #node-6 .field-name-field-dbatre li:before {
+/* line 589, jee.scss */
+#main #chapter-wrapper #node-5 h2.node-title {
+  background: transparent url("../assets/img/title-BC-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-BC-blur.svg") no-repeat center center;
+}
+/* line 592, jee.scss */
+#main #chapter-wrapper #node-6 {
+  background: transparent url("../assets/img/bgd-opp.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-opp.svg") no-repeat center center;
+}
+/* line 594, jee.scss */
+#main #chapter-wrapper #node-6 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-6 h2.node-title,
+#main #chapter-wrapper #node-6 .field-name-field-dbatre li:before {
   color: #af1380;
 }
-/* line 544, jee.scss */
-#main #chapter-wrapper.visible #node-7 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-7 h2.node-title,
-#main #chapter-wrapper.visible #node-7 .field-name-field-dbatre li:before {
+/* line 599, jee.scss */
+#main #chapter-wrapper #node-6 h2.node-title {
+  background: transparent url("../assets/img/title-OPP-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-OPP-blur.svg") no-repeat center center;
+}
+/* line 602, jee.scss */
+#main #chapter-wrapper #node-7 {
+  background: transparent url("../assets/img/bgd-bub.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-bub.svg") no-repeat center center;
+}
+/* line 604, jee.scss */
+#main #chapter-wrapper #node-7 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-7 h2.node-title,
+#main #chapter-wrapper #node-7 .field-name-field-dbatre li:before {
   color: #62a530;
 }
-/* line 551, jee.scss */
-#main #chapter-wrapper.visible #node-8 .field-type-text-long .field-label,
-#main #chapter-wrapper.visible #node-8 h2.node-title,
-#main #chapter-wrapper.visible #node-8 .field-name-field-dbatre li:before {
+/* line 609, jee.scss */
+#main #chapter-wrapper #node-7 h2.node-title {
+  background: transparent url("../assets/img/title-DUB-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-DUB-blur.svg") no-repeat center center;
+}
+/* line 612, jee.scss */
+#main #chapter-wrapper #node-8 {
+  background: transparent url("../assets/img/bgd-juso.png") no-repeat center center;
+  background: none, url("../assets/img/bgd-juso.svg") no-repeat center center;
+}
+/* line 614, jee.scss */
+#main #chapter-wrapper #node-8 .field-type-text-long .field-label,
+#main #chapter-wrapper #node-8 h2.node-title,
+#main #chapter-wrapper #node-8 .field-name-field-dbatre li:before {
   color: #33b4b5;
 }
-/* line 567, jee.scss */
+/* line 619, jee.scss */
+#main #chapter-wrapper #node-8 h2.node-title {
+  background: transparent url("../assets/img/title-JUSO-blur.png") no-repeat center center;
+  background: none, url("../assets/img/title-JUSO-blur.svg") no-repeat center center;
+}
+/* line 630, jee.scss */
 #main #chapter-wrapper .node {
   position: relative;
   height: 100%;
   width: 100%;
 }
-/* line 570, jee.scss */
+/* line 633, jee.scss */
 #main #chapter-wrapper .node a {
   color: inherit;
 }
-/* line 573, jee.scss */
+/* line 636, jee.scss */
 #main #chapter-wrapper .node-title {
   font-family: "epflulb";
   font-weight: normal;
   text-transform: uppercase;
   text-align: center;
-  max-width: 8.5em;
   line-height: 0.85;
   font-size: 2.268em;
+  position: absolute;
+  display: block;
+  top: 0;
+  left: 0;
+  width: 100%;
+  height: 100%;
+  background-size: contain !important;
+  text-indent: -5000px;
+  z-index: -1;
+  opacity: 0.4;
 }
-/* line 583, jee.scss */
+/* line 652, jee.scss */
 #main #chapter-wrapper .node > .field {
   position: absolute;
 }
-/* line 587, jee.scss */
+/* line 656, jee.scss */
 #main #chapter-wrapper .field-type-text-long {
   background-color: rgba(255, 255, 255, 0.9);
   width: 23em;
   padding: 1em;
   z-index: 10;
+  cursor: move;
 }
-/* line 592, jee.scss */
+/* line 661, jee.scss */
 #main #chapter-wrapper .field-type-text-long .field-label {
   text-transform: uppercase;
   font-family: "epflulb";
   font-size: 1.5em;
 }
-/* line 598, jee.scss */
+/* line 667, jee.scss */
 #main #chapter-wrapper .field-type-text-long h2 {
   font-size: 0.88em;
 }
-/* line 601, jee.scss */
+/* line 670, jee.scss */
 #main #chapter-wrapper .field-type-text-long p {
   font-size: 0.88em;
   margin-bottom: 0.5em;
 }
-/* line 606, jee.scss */
+/* line 675, jee.scss */
 #main #chapter-wrapper .field-name-field-dbatre {
   left: 60em;
 }
-/* line 608, jee.scss */
+/* line 677, jee.scss */
 #main #chapter-wrapper .field-name-field-dbatre ul {
   margin-left: 1em;
 }
-/* line 610, jee.scss */
+/* line 679, jee.scss */
 #main #chapter-wrapper .field-name-field-dbatre ul li {
   list-style: none;
   line-height: 1;
   margin-bottom: 1em;
   position: relative;
 }
-/* line 615, jee.scss */
+/* line 684, jee.scss */
 #main #chapter-wrapper .field-name-field-dbatre ul li:before {
   content: "?";
   position: absolute;
@@ -4562,14 +4722,14 @@ div.messages {
   left: -1em;
   font-family: "epflul";
 }
-/* line 626, jee.scss */
+/* line 695, jee.scss */
 #main #chapter-wrapper .field-name-field-partie {
   height: 60%;
   width: 100%;
   top: 20%;
   left: 0;
 }
-/* line 629, jee.scss */
+/* line 698, jee.scss */
 #main #chapter-wrapper .field-name-field-partie .field-items {
   position: relative;
   top: 0;
@@ -4577,12 +4737,12 @@ div.messages {
   height: 100%;
   width: auto;
 }
-/* line 634, jee.scss */
+/* line 703, jee.scss */
 #main #chapter-wrapper .field-name-field-partie .field-items .field {
   position: relative;
   display: inline-block;
 }
-/* line 637, jee.scss */
+/* line 706, jee.scss */
 #main #chapter-wrapper .field-name-field-partie .field-items .field .mask {
   position: absolute;
   width: 100%;
@@ -4590,6 +4750,7 @@ div.messages {
   top: 0;
   left: 0;
   z-index: 10;
+  cursor: move;
 }
 
 /*  __________  ____  ________________
@@ -4598,13 +4759,13 @@ div.messages {
  / __/ / /_/ / /_/ / / / / /___/ _, _/
 /_/    \____/\____/ /_/ /_____/_/ |_|
 */
-/* line 656, jee.scss */
+/* line 727, jee.scss */
 #footer {
   position: fixed;
   bottom: 0;
   right: 0;
 }
-/* line 659, jee.scss */
+/* line 730, jee.scss */
 #footer .block {
   display: inline-block;
   vertical-align: top;
@@ -4617,15 +4778,15 @@ div.messages {
  / /  / // / ___/ / /___
 /_/  /_/___//____/\____/
 */
-/* line 671, jee.scss */
+/* line 742, jee.scss */
 #fullscreen-btn {
   position: fixed;
-  top: 20px;
+  bottom: 20px;
   left: 20px;
   z-index: 1000;
 }
 
-/* line 685, jee.scss */
+/* line 756, jee.scss */
 .bubble-1 {
   position: absolute;
   z-index: 0;
@@ -4638,7 +4799,7 @@ div.messages {
   left: -200px;
 }
 
-/* line 689, jee.scss */
+/* line 760, jee.scss */
 .bubble-2 {
   position: absolute;
   z-index: 0;
@@ -4651,7 +4812,7 @@ div.messages {
   right: -400px;
 }
 
-/* line 694, jee.scss */
+/* line 765, jee.scss */
 .star {
   position: absolute;
   z-index: 0;
@@ -4669,7 +4830,7 @@ div.messages {
  / /_/ / /___/ /_/ / /_/ / /_/ /
 /_____/_____/_____/\____/\____/
 */
-/* line 708, jee.scss */
+/* line 779, jee.scss */
 #fps {
   position: fixed;
   top: 20px;
@@ -4677,7 +4838,7 @@ div.messages {
   z-index: 1000;
 }
 
-/* line 714, jee.scss */
+/* line 785, jee.scss */
 #nav-cursor {
   position: absolute;
   width: 6px;

+ 87 - 16
sites/all/themes/gui/jee/css/jee.scss

@@ -80,7 +80,6 @@ body{
   background-image: -webkit-linear-gradient(top, #FFFDE9 0%, #BECFD9 100%);
   /* W3C Markup, IE10 Release Preview */
   background-image: linear-gradient(to bottom, #FFFDE9 0%, #BECFD9 100%);
-
 }
 
 @keyframes introLogo{
@@ -189,7 +188,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-sol');}
       &, a{color:$SOL-col-txt;}
-      h2.node-title{&,a{color:$SOL-color;}}
+      h2.node-title{
+        &,a{color:$SOL-color;}
+        a{@include bg-svg-png('title-SOL'); width:170px; height:35px;}
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-sol');}
       .line{background-color:$SOL-col-active;}
     }
@@ -199,7 +201,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-dph');}
       &, a{color:$DPH-col-txt;}
-      h2.node-title{&,a{color:$DPH-color;}}
+      h2.node-title{
+        &,a{color:$DPH-color;}
+        a{@include bg-svg-png('title-DPH'); width:180px; height:80px;}
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-dph');}
       .line{background-color:$DPH-col-active;}
     }
@@ -209,7 +214,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-sub');}
       &, a{color:$SUB-col-txt;}
-      h2.node-title{&,a{color:$SUB-color;}}
+      h2.node-title{
+        &,a{color:$SUB-color;}
+        a{@include bg-svg-png('title-SUB'); width:200px; height:35px;}
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-sub');}
       .line{background-color:$SUB-col-active;}
     }
@@ -219,7 +227,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-bc');}
       &, a{color:$BC-col-txt;}
-      h2.node-title{&,a{color:$BC-color;}}
+      h2.node-title{
+        &,a{color:$BC-color;}
+        a{@include bg-svg-png('title-BC'); width:120px; height:45px;}
+       }
       .field-name-field-vignette{@include bg-svg-png('shadow-bc');}
       .line{background-color:$BC-col-active;}
     }
@@ -229,7 +240,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-opp');}
       &, a{color:$OPP-col-txt;}
-      h2.node-title{&,a{color:$OPP-color;}}
+      h2.node-title{
+        &,a{color:$OPP-color;}
+        a{@include bg-svg-png('title-OPP'); width:245px; height:95px;}
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-opp');}
       .line{background-color:$OPP-col-active;}
     }
@@ -239,7 +253,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-dub');}
       &, a{color:$DUB-col-txt;}
-      h2.node-title{&,a{color:$DUB-color;}}
+      h2.node-title{
+        &,a{color:$DUB-color;}
+        a{@include bg-svg-png('title-DUB'); width:195px; height:65px;}
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-dub');}
       .line{background-color:$DUB-col-active;}
     }
@@ -249,7 +266,10 @@ div.messages{
     &.node-teaser{
       &::after{ @include bg-svg-png('bgd-juso');}
       &, a{color:$JUSO-col-txt;}
-      h2.node-title{&,a{color:$JUSO-color;}}
+      h2.node-title{
+        &,a{color:$JUSO-color;}
+        a{@include bg-svg-png('title-JUSO'); width:200px; height:65px; }
+      }
       .field-name-field-vignette{@include bg-svg-png('shadow-juso');}
       .line{background-color:$JUSO-col-active;}
     }
@@ -285,7 +305,7 @@ div.messages{
     transition:1s ease-out;
     transition-property:opacity;
 
-    h2.node-title{
+    h2.node-title a{
       transform:none;
       transform-origin:bottom center;
       transition:1s ease-out;
@@ -314,7 +334,11 @@ div.messages{
             transition:1s ease-out 0.9s;
             transition-property: opacity;
           }
-          >.field-name-field-vignette{cursor:pointer;z-index:2;}
+          >.field-name-field-vignette{
+            cursor:pointer;z-index:2;
+            transform:scale(0.5);
+            transition:1s ease-out; transition-property:transform;
+         }
         }
     }
     &:after{
@@ -344,12 +368,18 @@ div.messages{
         left:$pad*6; right:$pad*6;
         bottom:$pad*15;
       }
-      h2.node-title{transform:scale(2,2);}
+      h2.node-title a{transform:scale(2,2);}
       .texts{opacity:1; height:8em;}
       .field-name-field-partie{
         opacity:1; z-index:0;
         // display all fields inside each parties
         >.field{opacity:1; z-index:-1; cursor:default;}
+        &:nth-child(2){
+          >.field-name-field-vignette{
+            transform:scale(1.3);
+            // transition:1s ease-out 0.5s; transition-property:transform;
+          }
+        }
       }
     }
 
@@ -403,6 +433,11 @@ div.messages{
         font-size:1.8em;
       }
       z-index: 5;
+      a{
+        display:block;
+        text-indent: -1000px;
+        overflow:hidden;
+      }
     }
 
     .texts{
@@ -440,7 +475,6 @@ div.messages{
     .field-name-field-vignette{
       position:relative;
       float:left;
-      $shadow-size:3.5em;
       padding:$shadow-size;
       margin-top:-$shadow-size*1.15;
       margin-right:-$shadow-size+1.5em;
@@ -498,6 +532,15 @@ div.messages{
     &.visible{
       opacity:1;
       z-index: 500;
+    }
+
+    #home-btn{
+      @include bg-svg-png('home-btn');
+      position:absolute;
+      z-index:100; top:20px; left:20px;
+      width:25px; height:20px; cursor:pointer;
+    }
+
     /*
      _____ _____ __    _____ _____ _____    _____ __ __    _____ _____ ____  _____
     |     |     |  |  |     | __  |   __|  | __  |  |  |  |   | |     |    \|   __|
@@ -505,54 +548,75 @@ div.messages{
     |_____|_____|_____|_____|__|__|_____|  |_____| |_|    |_|___|_____|____/|_____|
     */
 
+    // SOL
     #node-2{
+      @include bg-svg-png('bgd-sol');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$SOL-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-SOL-blur');}
     }
+    // DPH
     #node-3{
+      @include bg-svg-png('bgd-dph');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$DPH-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-DPH-blur');}
     }
+    // SUB
     #node-4{
+      @include bg-svg-png('bgd-sub');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$SUB-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-SUB-blur');}
     }
+    // BC
     #node-5{
+      @include bg-svg-png('bgd-bc');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$BC-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-BC-blur');}
     }
+    // OPP
     #node-6{
+      @include bg-svg-png('bgd-opp');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$OPP-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-OPP-blur');}
     }
+    // DUB
     #node-7{
+      @include bg-svg-png('bgd-bub');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$DUB-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-DUB-blur');}
     }
+    // JUSO
     #node-8{
+      @include bg-svg-png('bgd-juso');
       .field-type-text-long .field-label,
       h2.node-title,
       .field-name-field-dbatre li:before{
         color:$JUSO-col-active;
       }
+      h2.node-title{@include bg-svg-png('title-JUSO-blur');}
     }
 
     /*
@@ -562,7 +626,6 @@ div.messages{
     |_____|_____|_|___|_____|__|__|_____|__  _|_____|_____|
                                            |__|
     */
-      }
 
     .node{
       position:relative;
@@ -575,9 +638,15 @@ div.messages{
       font-weight:normal;
       text-transform: uppercase;
       text-align: center;
-      max-width: 8.5em;
+      // max-width: 8.5em;
       line-height: 0.85;
       font-size: 2.268em;
+      position:absolute; display:block;
+      top:0; left:0; width:100%; height:100%;
+      background-size: contain!important;
+      text-indent: -5000px;
+      z-index:-1;
+      opacity:0.4;
     }
 
     .node>.field{
@@ -588,7 +657,7 @@ div.messages{
       background-color: rgba(255,255,255,0.9);
       width:23em; padding:1em;
       z-index:10;
-
+      cursor:move;
       .field-label{
         text-transform: uppercase;
         font-family: "epflulb";
@@ -639,6 +708,7 @@ div.messages{
             width:100%; height:100%;
             top:0; left:0;
             z-index:10;
+            cursor:move;
           }
         }
       }
@@ -646,6 +716,7 @@ div.messages{
   } // #chapter-wrapper
 } // #main
 
+
 /*  __________  ____  ________________
    / ____/ __ \/ __ \/_  __/ ____/ __ \
   / /_  / / / / / / / / / / __/ / /_/ /
@@ -670,7 +741,7 @@ div.messages{
 */
 #fullscreen-btn{
   position:fixed;
-  top:20px; left:20px;
+  bottom:20px; left:20px;
   z-index: 1000;
 }
 

+ 1 - 0
sites/all/themes/gui/jee/jee.info

@@ -13,6 +13,7 @@ stylesheets[all][] = "css/jee.css"
 ;----------// Scripts
 scripts[] = "bower_components/jquery.pep/src/jquery.pep.js"
 scripts[] = "bower_components/Peppermint/dist/peppermint.min.js"
+scripts[] = "bower_components/vimeo-jquery-api/dist/jquery.vimeo.api.min.js"
 scripts[] = "js/jee.js"
 
 ;----------// Regions

+ 193 - 69
sites/all/themes/gui/jee/js/jee.js

@@ -46,6 +46,7 @@ jQuery(document).ready(function($) {
     if(_debug)
       initDebug();
 
+    initChapterWrapper();
     initChapters();
     launchNav();
 
@@ -99,6 +100,18 @@ jQuery(document).ready(function($) {
     });
   };
 
+  function initChapterWrapper(){
+    $('<div id="home-btn">')
+      .on("click", closeChapterWrapper)
+      .appendTo(_$chapter_wrapper);
+  };
+
+  function closeChapterWrapper(e){
+    _loaded_chapter = false;
+    _$chapter_wrapper.removeClass('visible');
+    _$body.removeClass('chapter-displayed');
+  };
+
   function initChapters(){
     // Place each chapters on the ellipse contained on the screen
     var base_a = Math.random() *360;
@@ -165,6 +178,10 @@ jQuery(document).ready(function($) {
       .bind('document touchstart', function(e){
         console.log('touchstart');
         clearTimeout(_timeout_dragging);
+
+        if(_loaded_chapter)
+          return false;
+
         // set initial pos
         updateNavPos(e.originalEvent.touches[0].clientX, e.originalEvent.touches[0].clientY, true);
 
@@ -176,12 +193,22 @@ jQuery(document).ready(function($) {
       })
       .bind('touchmove', function(e){
         console.log('document touchmove');
+
+        if(_loaded_chapter)
+          return false;
+
         updateNavPos(e.originalEvent.touches[0].clientX, e.originalEvent.touches[0].clientY, false);
       })
       .bind('touchend', function(e){
         console.log("document touchend");
+
+        if(_loaded_chapter)
+          return false;
+
         stopMoveNav();
       });
+
+      // TODO : nav on scroll events
   };
 
   function updateNavPos(x,y,init){
@@ -299,6 +326,15 @@ jQuery(document).ready(function($) {
     this.trans = {x:0, y:0,z:0};
     this.ease = randB(0.05, 0.3);
 
+    //drifting
+    this.$title = $('h2.node-title', this.$e);
+    this.$content = $('.content:first', this.$e);
+    this.title_x = 0;
+    this.content_x = 0;
+    this.drifting_direction = Math.random()-0.5 > 0 ? 1 : -1;
+    this.drifting_time = null;
+
+
     //preview
     this.is_previewed = false;
 
@@ -315,9 +351,12 @@ jQuery(document).ready(function($) {
     // chapter
     this.$n = false;
     this.$blocks = false;
+    this.$vids_container = false;
     this.$vids = false;
     this.texts_pos = shuffleArray([1,2,3]);
     this.dimvideo = {w:0, h:0};
+    this.$slider = null;
+    this.cur_vid_playing = 0;
 
     // prototypes
     if (typeof Chapter.initialized == "undefined") {
@@ -326,6 +365,7 @@ jQuery(document).ready(function($) {
         this.setInitPos();
         this.drawLines();
         this.setEvents();
+        this.initDrifiting();
       };
 
       Chapter.prototype.setInitPos = function(){
@@ -348,9 +388,9 @@ jQuery(document).ready(function($) {
 
         // change randomly radius
         if(this.i%2){
-          this.geom.r = randB(this.geom.r*2, this.geom.r*3);
+          this.geom.r = randB(this.geom.r*1.5, this.geom.r*2);
         }else{
-          this.geom.r = randB(this.geom.r, this.geom.r*2);
+          this.geom.r = randB(this.geom.r*0.8, this.geom.r*1.5);
         }
 
         this.pos.x = Math.round(_center.x+this.geom.r *  this.geom.c) - this.geom.w/2;
@@ -384,6 +424,40 @@ jQuery(document).ready(function($) {
           });
       };
 
+      Chapter.prototype.initDrifiting = function(){
+        // an other option could be to drift the whole page with the same engine than draging
+        requestAnimationFrame(this.drift.bind(this));
+      };
+
+      Chapter.prototype.drift = function(timestamp){
+        requestAnimationFrame(this.drift.bind(this));
+
+        var now = new Date().getTime(),
+            dt = now - (this.drifting_time || now);
+
+        this.drifting_time = now;
+
+        if(!this.is_previewed){
+
+          this.title_x += (10/1000)*dt*this.drifting_direction;
+          this.content_x += (6/1000)*dt*this.drifting_direction;
+
+          this.drifting_direction =
+            this.content_x > randB(100,130)
+              ? -1
+              : this.content_x < -randB(100,130)
+                ? 1
+                : this.drifting_direction;
+
+          this.$title.css({
+            transform:"translate3d("+this.title_x+"px,0,0)",
+          });
+          this.$content.css({
+            transform:"translate3d("+this.content_x+"px,0,0)",
+          });
+        }
+      };
+
       Chapter.prototype.move = function(){
         this.trans.x += (_nav_pos.x - this.trans.x)*this.ease;
         this.trans.y += (_nav_pos.y - this.trans.y)*this.ease;
@@ -545,6 +619,12 @@ jQuery(document).ready(function($) {
         };
       };
 
+
+      //  _____ _____ _____ _____    _____ _____ _____ _____ _____ _____ _____
+      // |     |  _  |   __|   | |  |     |  |  |  _  |  _  |_   _|   __| __  |
+      // |  |  |   __|   __| | | |  |   --|     |     |   __| | | |   __|    -|
+      // |_____|__|  |_____|_|___|  |_____|__|__|__|__|__|    |_| |_____|__|__|
+
       Chapter.prototype.loadNode = function(e){
         // console.log("Chapter :: open : nid", this.nid);
         $.getJSON(
@@ -558,14 +638,17 @@ jQuery(document).ready(function($) {
       Chapter.prototype.nodeLoaded = function(json, textstatus){
         console.log('Chapter :: nodeLoaded '+this.nid+' : json', json);
 
+        // remove previous loaded nodes
+        _$chapter_wrapper.find('.node').remove();
+
         // insert ajax loaded into dom
-        _$chapter_wrapper.html(json.node);
+        _$chapter_wrapper.append(json.node);
 
         // record some usefull data
         this.$n = $('.node-chapitre', _$chapter_wrapper);
         this.$blocks = $('.field-type-text-long', this.$n);
-        this.$vids = $('.field-name-field-partie', this.$n);
-
+        this.$vids_container = $('.field-name-field-partie', this.$n);
+        this.$vids = $('iframe', this.$vids_container);
         // record the current loaded chapter
         // this will stop first interface to run
         _loaded_chapter = this;
@@ -590,10 +673,10 @@ jQuery(document).ready(function($) {
         // build video player
         this.buildVideos();
 
-        $('.node-title', this.$n).pep();
-
         // show the whole thing
         _$chapter_wrapper.addClass('visible');
+
+        // this.$vids.eq(this.cur_vid_playing).vimeo('play');
       };
 
       Chapter.prototype.placeText = function(i, e){
@@ -629,22 +712,24 @@ jQuery(document).ready(function($) {
       Chapter.prototype.buildVideos = function(){
         console.log('Chapter :: buildVideos');
 
-        this.dimvideo.h = this.$vids.height();
+        this.dimvideo.h = this.$vids_container.height();
 
         // redim each iframe to fit
         // add a mask on top of each iframe to avoid bad interaction with vimeo
-        $('iframe', this.$vids)
-          .each(this.redimVideo.bind(this))
-          .after('<div class="mask"></div>');
+        this.$vids
+          .after('<div class="mask"></div>')
+          .each(this.redimVideo.bind(this));
 
-        this.$vids.css({
-          width:this.dimvideo.w*1.3,
+        this.$vids_container.css({
+          width:this.dimvideo.w*1.2,
           height:this.dimvideo.h,
-          marginLeft:(_container.w-this.dimvideo.w*1.3)/2
+          marginLeft:(_container.w-this.dimvideo.w*1.2)/2
         });
 
         // create the slider with peppermint
-        $('.field-items', this.$vids).Peppermint();
+        this.$slider = $('.field-items', this.$vids_container).Peppermint({
+          onSlideChange:this.onSlideChange.bind(this)
+        });
       };
 
       Chapter.prototype.redimVideo = function(i,e){
@@ -655,10 +740,45 @@ jQuery(document).ready(function($) {
           .css({ width:this.dimvideo.w, height:this.dimvideo.h })
           .attr({ width:this.dimvideo.w, height:this.dimvideo.h })
             // add some paading to parent for slider display
-            .parent().css({
+            .parent()
+              .css({
                 paddingLeft:this.dimvideo.w*0.15,
                 paddingright:this.dimvideo.w*0.15
-              });
+              })
+              .on("click", this.onClickVid.bind(this));
+      };
+
+      Chapter.prototype.onClickVid = function(e){
+        e.stopPropagation();
+        e.preventDefault();
+        console.log('Chapter :: onClickVid '+this.nid, e);
+
+        var $vid = $('iframe', e.currentTarget);
+
+        $vid.vimeo('paused', function(data){
+
+          console.log('paused : ', data);
+
+          if(data){
+            $vid.vimeo('play');
+          }else{
+            $vid.vimeo('pause');
+          }
+        });
+
+
+        return false;
+      };
+
+      Chapter.prototype.onSlideChange = function(){
+        console.log('onSlideChange '+this.nid, this.$slider.data('Peppermint').getCurrentPos());
+
+        //stop current video playing
+        this.$vids.eq(this.cur_vid_playing).vimeo('pause');
+
+        // start new current video
+        this.cur_vid_playing = this.$slider.data('Peppermint').getCurrentPos();
+        this.$vids.eq(this.cur_vid_playing).vimeo('play');
       };
 
       Node.initialized = true;
@@ -708,56 +828,6 @@ jQuery(document).ready(function($) {
   init();
 });
 
-/*
-    ____  __    __  _____________   _______
-   / __ \/ /   / / / / ____/  _/ | / / ___/
-  / /_/ / /   / / / / / __ / //  |/ /\__ \
- / ____/ /___/ /_/ / /_/ // // /|  /___/ /
-/_/   /_____/\____/\____/___/_/ |_//____/
-*/
-// https://css-tricks.com/snippets/jquery/draggable-without-jquery-ui/
-// (function($) {
-//   $.fn.drags = function(opt) {
-
-//     opt = $.extend({handle:"",cursor:"move"}, opt);
-
-//     if(opt.handle === "") {
-//       var $el = this;
-//     } else {
-//       var $el = this.find(opt.handle);
-//     }
-
-//     return $el.css('cursor', opt.cursor).on("mousedown", function(e) {
-//       if(opt.handle === "") {
-//         var $drag = $(this).addClass('draggable');
-//       } else {
-//         var $drag = $(this).addClass('active-handle').parent().addClass('draggable');
-//       }
-//       var z_idx = $drag.css('z-index'),
-//           drg_h = $drag.outerHeight(),
-//           drg_w = $drag.outerWidth(),
-//           pos_y = $drag.offset().top + drg_h - e.pageY,
-//           pos_x = $drag.offset().left + drg_w - e.pageX;
-//       $drag.css('z-index', 1000).parents().on("mousemove", function(e) {
-//         $('.draggable').offset({
-//             top:e.pageY + pos_y - drg_h,
-//             left:e.pageX + pos_x - drg_w
-//         }).on("mouseup", function() {
-//             $(this).removeClass('draggable').css('z-index', z_idx);
-//         });
-//       });
-//       e.preventDefault(); // disable selection
-//     }).on("mouseup", function() {
-//       if(opt.handle === "") {
-//         $(this).removeClass('draggable');
-//       } else {
-//         $(this).removeClass('active-handle').parent().removeClass('draggable');
-//       }
-//     });
-
-//   }
-// })(jQuery);
-
 /*
     ____  __________  __  ___________________   ___    _   ________  ______  ______________  _   __   __________  ___    __  _________
    / __ \/ ____/ __ \/ / / / ____/ ___/_  __/  /   |  / | / /  _/  |/  /   |/_  __/  _/ __ \/ | / /  / ____/ __ \/   |  /  |/  / ____/
@@ -792,8 +862,8 @@ jQuery(document).ready(function($) {
 }());
 
 
-
-/*     ____      ____
+/*
+    ____      ____
    / __/_  __/ / /  __________________  ___  ____
   / /_/ / / / / /  / ___/ ___/ ___/ _ \/ _ \/ __ \
  / __/ /_/ / / /  (__  ) /__/ /  /  __/  __/ / / /
@@ -817,6 +887,60 @@ function launchIntoFullscreen(element) {
 }
 
 
+/*
+    ____  __    __  _____________   _______
+   / __ \/ /   / / / / ____/  _/ | / / ___/
+  / /_/ / /   / / / / / __ / //  |/ /\__ \
+ / ____/ /___/ /_/ / /_/ // // /|  /___/ /
+/_/   /_____/\____/\____/___/_/ |_//____/
+*/
+// https://css-tricks.com/snippets/jquery/draggable-without-jquery-ui/
+// (function($) {
+//   $.fn.drags = function(opt) {
+
+//     opt = $.extend({handle:"",cursor:"move"}, opt);
+
+//     if(opt.handle === "") {
+//       var $el = this;
+//     } else {
+//       var $el = this.find(opt.handle);
+//     }
+
+//     return $el.css('cursor', opt.cursor).on("mousedown", function(e) {
+//       if(opt.handle === "") {
+//         var $drag = $(this).addClass('draggable');
+//       } else {
+//         var $drag = $(this).addClass('active-handle').parent().addClass('draggable');
+//       }
+//       var z_idx = $drag.css('z-index'),
+//           drg_h = $drag.outerHeight(),
+//           drg_w = $drag.outerWidth(),
+//           pos_y = $drag.offset().top + drg_h - e.pageY,
+//           pos_x = $drag.offset().left + drg_w - e.pageX;
+//       $drag.css('z-index', 1000).parents().on("mousemove", function(e) {
+//         $('.draggable').offset({
+//             top:e.pageY + pos_y - drg_h,
+//             left:e.pageX + pos_x - drg_w
+//         }).on("mouseup", function() {
+//             $(this).removeClass('draggable').css('z-index', z_idx);
+//         });
+//       });
+//       e.preventDefault(); // disable selection
+//     }).on("mouseup", function() {
+//       if(opt.handle === "") {
+//         $(this).removeClass('draggable');
+//       } else {
+//         $(this).removeClass('active-handle').parent().removeClass('draggable');
+//       }
+//     });
+
+//   }
+// })(jQuery);
+
+
+
+
+
 
 // remove navbar
 // $(document).ready(function() {

Some files were not shown because too many files changed in this diff