diff --git a/cesnet-central/deployments/fullhub.yaml b/cesnet-central/deployments/fullhub.yaml
index abcffaf5cba71d799199ae4e855f33c056aef053..f30c85d73da063dd7f3f5e58ab821f1b987cec87 100644
--- a/cesnet-central/deployments/fullhub.yaml
+++ b/cesnet-central/deployments/fullhub.yaml
@@ -131,6 +131,8 @@ singleuser:
     singleuser-webdav-wrapper.sh:
       mode: 0755
       mountPath: /usr/local/bin/jupyterhub-singleuser-webdav-wrapper
+      #NotebookNotary.db_file=':memory:' is used due to issues
+      #notebook notary file was causing in ~/.jupyter in ownCloud mount
       stringData: |-
         #! /bin/sh
         #
@@ -147,26 +149,42 @@ singleuser:
         exec jupyterhub-singleuser \
           --FileCheckpoints.checkpoint_dir='/home/jovyan/.notebookCheckpoints' \
           --NotebookNotary.db_file=':memory:' \
+          --LabApp.custom_css=True \
           "$@"
-    disable-labnews:
+
+    #Settings in overrides.json must be passed as stringData.
+    #Otherwise JupyterLab will not consider them
+
+    ##Disables news Jupyter notifications
+
+    ##Overrides default Help menu to include EOSC links
+    ##Setting is reusing 'git:open-url' command from Jupyter Git
+    ##extension to open link in browser tab, because 'help:open'
+    ##command opens tab inside Lab and EOSC website does not
+    ##allow itself to be open if embedded in another website
+
+    overrides-settings:
       mode: 0644
       mountPath: /opt/conda/share/jupyter/lab/settings/overrides.json
       stringData: |-
-        {
-          "@jupyterlab/apputils-extension:notification": {
-            "checkForUpdates": "false",
-            "fetchNews": "false"
-          },
-          "@jupyterlab/application-extension:context-menu": {
-            "contextMenu": [
-              {
-                "command": "filebrowser:share-main",
-                "selector": ".jp-DirListing-item[data-isdir]",
-                "disabled": true
-              }
-            ]
-          }
-        }
+        {% filter indent(10) %}
+        {{ overrides_file_content | to_json }}
+        {% endfilter %}
+
+
+    #Two files below are not included in /home/jovyan/.jupyter because 
+    #that is ownCloud mount path. They are included in jupyter_server 
+    #static path instead, because otherwise Jupyter is not considering
+    # custom CSS
+    eosc-css:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/custom.css
+      binaryData: "{{ css_file_content | b64encode }}"
+    eosc-logo:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/logo/eosc-ntb-logo.svg
+      binaryData: "{{ logo_file_content | b64encode }}"
+
 
 hub:
   services:
diff --git a/common/deployments/files/css/custom.css b/common/deployments/files/css/custom.css
new file mode 100644
index 0000000000000000000000000000000000000000..2da55edb88b5814f81ae163b64d30d3cf61afd2c
--- /dev/null
+++ b/common/deployments/files/css/custom.css
@@ -0,0 +1,453 @@
+/*
+    Custom CSS modifying default JupyterLab default UI to include EOSC themes
+*/
+
+/*-----------------------------------------------------------------------------
+| Copyright (c) Jupyter Development Team.
+| Distributed under the terms of the Modified BSD License.
+|----------------------------------------------------------------------------*/
+
+/*
+The following CSS variables define the main, public API for styling JupyterLab.
+These variables should be used by all plugins wherever possible. In other
+words, plugins should not define custom colors, sizes, etc unless absolutely
+necessary. This enables users to change the visual theme of JupyterLab
+by changing these variables.
+
+Many variables appear in an ordered sequence (0,1,2,3). These sequences
+are designed to work well together, so for example, `--jp-border-color1` should
+be used with `--jp-layout-color1`. The numbers have the following meanings:
+
+* 0: super-primary, reserved for special emphasis
+* 1: primary, most important under normal situations
+* 2: secondary, next most important under normal situations
+* 3: tertiary, next most important under normal situations
+
+Throughout JupyterLab, we are mostly following principles from Google's
+Material Design when selecting colors. We are not, however, following
+all of MD as it is not optimized for dense, information rich UIs.
+*/
+
+:root {
+    /* Elevation
+     *
+     * We style box-shadows using Material Design's idea of elevation. These particular numbers are taken from here:
+     *
+     * https://github.com/material-components/material-components-web
+     * https://material-components-web.appspot.com/elevation.html
+     */
+  
+    --jp-shadow-base-lightness: 0;
+    --jp-shadow-umbra-color: rgba(
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      0.2
+    );
+    --jp-shadow-penumbra-color: rgba(
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      0.14
+    );
+    --jp-shadow-ambient-color: rgba(
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      var(--jp-shadow-base-lightness),
+      0.12
+    );
+    --jp-elevation-z0: none;
+    --jp-elevation-z1: 0 2px 1px -1px var(--jp-shadow-umbra-color),
+      0 1px 1px 0 var(--jp-shadow-penumbra-color),
+      0 1px 3px 0 var(--jp-shadow-ambient-color);
+    --jp-elevation-z2: 0 3px 1px -2px var(--jp-shadow-umbra-color),
+      0 2px 2px 0 var(--jp-shadow-penumbra-color),
+      0 1px 5px 0 var(--jp-shadow-ambient-color);
+    --jp-elevation-z4: 0 2px 4px -1px var(--jp-shadow-umbra-color),
+      0 4px 5px 0 var(--jp-shadow-penumbra-color),
+      0 1px 10px 0 var(--jp-shadow-ambient-color);
+    --jp-elevation-z6: 0 3px 5px -1px var(--jp-shadow-umbra-color),
+      0 6px 10px 0 var(--jp-shadow-penumbra-color),
+      0 1px 18px 0 var(--jp-shadow-ambient-color);
+    --jp-elevation-z8: 0 5px 5px -3px var(--jp-shadow-umbra-color),
+      0 8px 10px 1px var(--jp-shadow-penumbra-color),
+      0 3px 14px 2px var(--jp-shadow-ambient-color);
+    --jp-elevation-z12: 0 7px 8px -4px var(--jp-shadow-umbra-color),
+      0 12px 17px 2px var(--jp-shadow-penumbra-color),
+      0 5px 22px 4px var(--jp-shadow-ambient-color);
+    --jp-elevation-z16: 0 8px 10px -5px var(--jp-shadow-umbra-color),
+      0 16px 24px 2px var(--jp-shadow-penumbra-color),
+      0 6px 30px 5px var(--jp-shadow-ambient-color);
+    --jp-elevation-z20: 0 10px 13px -6px var(--jp-shadow-umbra-color),
+      0 20px 31px 3px var(--jp-shadow-penumbra-color),
+      0 8px 38px 7px var(--jp-shadow-ambient-color);
+    --jp-elevation-z24: 0 11px 15px -7px var(--jp-shadow-umbra-color),
+      0 24px 38px 3px var(--jp-shadow-penumbra-color),
+      0 9px 46px 8px var(--jp-shadow-ambient-color);
+  
+    /* Borders
+     *
+     * The following variables, specify the visual styling of borders in JupyterLab.
+     */
+  
+    --jp-border-width: 1px;
+    --jp-border-color0: var(--md-grey-400, #bdbdbd);
+    --jp-border-color1: var(--md-grey-400, #bdbdbd);
+    --jp-border-color2: var(--md-grey-300, #e0e0e0);
+    --jp-border-color3: var(--md-grey-200, #eee);
+    --jp-inverse-border-color: var(--md-grey-600, #757575);
+    --jp-border-radius: 2px;
+  
+    /* UI Fonts
+     *
+     * The UI font CSS variables are used for the typography all of the JupyterLab
+     * user interface elements that are not directly user generated content.
+     *
+     * The font sizing here is done assuming that the body font size of --jp-ui-font-size1
+     * is applied to a parent element. When children elements, such as headings, are sized
+     * in em all things will be computed relative to that body size.
+     */
+  
+    --jp-ui-font-scale-factor: 1.2;
+    --jp-ui-font-size0: 0.83333em;
+    --jp-ui-font-size1: 13px; /* Base font size */
+    --jp-ui-font-size2: 1.2em;
+    --jp-ui-font-size3: 1.44em;
+    --jp-ui-font-family: system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI',
+      helvetica, arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
+      'Segoe UI Symbol';
+  
+    /*
+     * Use these font colors against the corresponding main layout colors.
+     * In a light theme, these go from dark to light.
+     */
+  
+    /* Defaults use Material Design specification */
+    --jp-ui-font-color0: rgba(0, 0, 0, 1);
+    --jp-ui-font-color1: rgba(0, 0, 0, 0.87);
+    --jp-ui-font-color2: rgba(0, 0, 0, 0.54);
+    --jp-ui-font-color3: rgba(0, 0, 0, 0.38);
+  
+    /*
+     * Use these against the brand/accent/warn/error colors.
+     * These will typically go from light to darker, in both a dark and light theme.
+     */
+  
+    --jp-ui-inverse-font-color0: rgba(255, 255, 255, 1);
+    --jp-ui-inverse-font-color1: rgba(255, 255, 255, 1);
+    --jp-ui-inverse-font-color2: rgba(255, 255, 255, 0.7);
+    --jp-ui-inverse-font-color3: rgba(255, 255, 255, 0.5);
+  
+    /* Content Fonts
+     *
+     * Content font variables are used for typography of user generated content.
+     *
+     * The font sizing here is done assuming that the body font size of --jp-content-font-size1
+     * is applied to a parent element. When children elements, such as headings, are sized
+     * in em all things will be computed relative to that body size.
+     */
+  
+    --jp-content-line-height: 1.6;
+    --jp-content-font-scale-factor: 1.2;
+    --jp-content-font-size0: 0.83333em;
+    --jp-content-font-size1: 14px; /* Base font size */
+    --jp-content-font-size2: 1.2em;
+    --jp-content-font-size3: 1.44em;
+    --jp-content-font-size4: 1.728em;
+    --jp-content-font-size5: 2.0736em;
+  
+    /* This gives a magnification of about 125% in presentation mode over normal. */
+    --jp-content-presentation-font-size1: 17px;
+    --jp-content-heading-line-height: 1;
+    --jp-content-heading-margin-top: 1.2em;
+    --jp-content-heading-margin-bottom: 0.8em;
+    --jp-content-heading-font-weight: 500;
+  
+    /* Defaults use Material Design specification */
+    --jp-content-font-color0: rgba(0, 0, 0, 1);
+    --jp-content-font-color1: rgba(0, 0, 0, 0.87);
+    --jp-content-font-color2: rgba(0, 0, 0, 0.54);
+    --jp-content-font-color3: rgba(0, 0, 0, 0.38);
+    --jp-content-link-color: #004494 !important;
+    --jp-content-link-visited-color: var(--md-purple-700, #7b1fa2);
+    --jp-content-font-family: system-ui, -apple-system, blinkmacsystemfont,
+      'Segoe UI', helvetica, arial, sans-serif, 'Apple Color Emoji',
+      'Segoe UI Emoji', 'Segoe UI Symbol';
+  
+    /*
+     * Code Fonts
+     *
+     * Code font variables are used for typography of code and other monospaces content.
+     */
+  
+    --jp-code-font-size: 13px;
+    --jp-code-line-height: 1.3077; /* 17px for 13px base */
+    --jp-code-padding: 5px; /* 5px for 13px base, codemirror highlighting needs integer px value */
+    --jp-code-font-family-default: menlo, consolas, 'DejaVu Sans Mono', monospace;
+    --jp-code-font-family: var(--jp-code-font-family-default);
+  
+    /* This gives a magnification of about 125% in presentation mode over normal. */
+    --jp-code-presentation-font-size: 16px;
+  
+    /* may need to tweak cursor width if you change font size */
+    --jp-code-cursor-width0: 1.4px;
+    --jp-code-cursor-width1: 2px;
+    --jp-code-cursor-width2: 4px;
+  
+    /* Layout
+     *
+     * The following are the main layout colors use in JupyterLab. In a light
+     * theme these would go from light to dark.
+     */
+  
+    --jp-layout-color0: white;
+    --jp-layout-color1: white;
+    --jp-layout-color2: var(--md-grey-200, #eee);
+    --jp-layout-color3: var(--md-grey-400, #bdbdbd);
+    --jp-layout-color4: var(--md-grey-600, #757575);
+  
+    /* Inverse Layout
+     *
+     * The following are the inverse layout colors use in JupyterLab. In a light
+     * theme these would go from dark to light.
+     */
+  
+    --jp-inverse-layout-color0: #111;
+    --jp-inverse-layout-color1: var(--md-grey-900, #212121);
+    --jp-inverse-layout-color2: var(--md-grey-800, #424242);
+    --jp-inverse-layout-color3: var(--md-grey-700, #616161);
+    --jp-inverse-layout-color4: var(--md-grey-600, #757575);
+  
+    /* Brand/accent */
+  
+    --jp-brand-color0: #004494 !important;
+    --jp-brand-color1: #004494 !important;
+    --jp-brand-color2: #004494 !important;
+    --jp-brand-color3: #004494 !important;
+    --jp-brand-color4: #004494 !important;
+    --jp-accent-color0: var(--md-green-900, #1b5e20);
+    --jp-accent-color1: var(--md-green-700, #388e3c);
+    --jp-accent-color2: var(--md-green-300, #81c784);
+    --jp-accent-color3: var(--md-green-100, #c8e6c9);
+  
+    /* State colors (warn, error, success, info) */
+  
+    --jp-warn-color0: var(--md-orange-900, #e65100);
+    --jp-warn-color1: var(--md-orange-700, #f57c00);
+    --jp-warn-color2: var(--md-orange-300, #ffb74d);
+    --jp-warn-color3: var(--md-orange-100, #ffe0b2);
+    --jp-error-color0: var(--md-red-900, #b71c1c);
+    --jp-error-color1: var(--md-red-700, #d32f2f);
+    --jp-error-color2: var(--md-red-300, #e57373);
+    --jp-error-color3: var(--md-red-100, #ffcdd2);
+    --jp-success-color0: var(--md-green-900, #1b5e20);
+    --jp-success-color1: var(--md-green-700, #388e3c);
+    --jp-success-color2: var(--md-green-300, #81c784);
+    --jp-success-color3: var(--md-green-100, #c8e6c9);
+    --jp-info-color0: #004494 !important;
+    --jp-info-color1: #004494 !important;
+    --jp-info-color2: #004494 !important;
+    --jp-info-color3: #004494 !important;
+  
+    /* Cell specific styles */
+  
+    --jp-cell-padding: 5px;
+    --jp-cell-collapser-width: 8px;
+    --jp-cell-collapser-min-height: 20px;
+    --jp-cell-collapser-not-active-hover-opacity: 0.6;
+    --jp-cell-editor-background: var(--md-grey-100, #f5f5f5);
+    --jp-cell-editor-border-color: var(--md-grey-300, #e0e0e0);
+    --jp-cell-editor-box-shadow: inset 0 0 2px #004494 !important;
+    --jp-cell-editor-active-background: var(--jp-layout-color0);
+    --jp-cell-editor-active-border-color: var(--jp-brand-color1);
+    --jp-cell-prompt-width: 64px;
+    --jp-cell-prompt-font-family: var(--jp-code-font-family-default);
+    --jp-cell-prompt-letter-spacing: 0;
+    --jp-cell-prompt-opacity: 1;
+    --jp-cell-prompt-not-active-opacity: 0.5;
+    --jp-cell-prompt-not-active-font-color: var(--md-grey-700, #616161);
+  
+    /* A custom blend of MD grey and blue 600
+     * See https://meyerweb.com/eric/tools/color-blend/#546E7A:1E88E5:5:hex */
+    --jp-cell-inprompt-font-color: #004494 !important;
+  
+    /* A custom blend of MD grey and orange 600
+     * https://meyerweb.com/eric/tools/color-blend/#546E7A:F4511E:5:hex */
+    --jp-cell-outprompt-font-color: #bf5b3d;
+  
+    /* Notebook specific styles */
+  
+    --jp-notebook-padding: 10px;
+    --jp-notebook-select-background: var(--jp-layout-color1);
+    --jp-notebook-multiselected-color: var(--md-blue-50, #e3f2fd);
+  
+    /* The scroll padding is calculated to fill enough space at the bottom of the
+    notebook to show one single-line cell (with appropriate padding) at the top
+    when the notebook is scrolled all the way to the bottom. We also subtract one
+    pixel so that no scrollbar appears if we have just one single-line cell in the
+    notebook. This padding is to enable a 'scroll past end' feature in a notebook.
+    */
+    --jp-notebook-scroll-padding: calc(
+      100% - var(--jp-code-font-size) * var(--jp-code-line-height) -
+        var(--jp-code-padding) - var(--jp-cell-padding) - 1px
+    );
+  
+    /* Rendermime styles */
+  
+    --jp-rendermime-error-background: #fdd;
+    --jp-rendermime-table-row-background: var(--md-grey-100, #cfd8dc);
+    --jp-rendermime-table-row-hover-background: var(--md-light-blue-50, #e1f5fe);
+  
+    /* Dialog specific styles */
+  
+    --jp-dialog-background: rgba(0, 0, 0, 0.25);
+  
+    /* Console specific styles */
+  
+    --jp-console-padding: 10px;
+  
+    /* Toolbar specific styles */
+  
+    --jp-toolbar-border-color: var(--jp-border-color1);
+    --jp-toolbar-micro-height: 8px;
+    --jp-toolbar-background: var(--jp-layout-color1);
+    --jp-toolbar-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.24);
+    --jp-toolbar-header-margin: 4px 4px 0 4px;
+    --jp-toolbar-active-background: var(--md-grey-300, #90a4ae);
+  
+    /* Statusbar specific styles */
+  
+    --jp-statusbar-height: 24px;
+  
+    /* Input field styles */
+  
+    --jp-input-box-shadow: inset 0 0 2px #004494 !important;
+    --jp-input-active-background: var(--jp-layout-color1);
+    --jp-input-hover-background: var(--jp-layout-color1);
+    --jp-input-background: var(--md-grey-100, #f5f5f5);
+    --jp-input-border-color: var(--jp-inverse-border-color);
+    --jp-input-active-border-color: var(--jp-brand-color1);
+    --jp-input-active-box-shadow-color: rgba(19, 124, 189, 0.3);
+  
+    /* General editor styles */
+  
+    --jp-editor-selected-background: #d9d9d9;
+    --jp-editor-selected-focused-background: #d7d4f0;
+    --jp-editor-cursor-color: var(--jp-ui-font-color0);
+  
+    /* Code mirror specific styles */
+  
+    --jp-mirror-editor-keyword-color: #008000;
+    --jp-mirror-editor-atom-color: #88f;
+    --jp-mirror-editor-number-color: #080;
+    --jp-mirror-editor-def-color: #004494 !important;
+    --jp-mirror-editor-variable-color: var(--md-grey-900, #212121);
+    --jp-mirror-editor-variable-2-color: #004494 !important;
+    --jp-mirror-editor-variable-3-color: #085;
+    --jp-mirror-editor-punctuation-color: #004494 !important;
+    --jp-mirror-editor-property-color: #004494 !important;
+    --jp-mirror-editor-operator-color: #a2f;
+    --jp-mirror-editor-comment-color: #408080;
+    --jp-mirror-editor-string-color: #ba2121;
+    --jp-mirror-editor-string-2-color: #708;
+    --jp-mirror-editor-meta-color: #a2f;
+    --jp-mirror-editor-qualifier-color: #555;
+    --jp-mirror-editor-builtin-color: #008000;
+    --jp-mirror-editor-bracket-color: #997;
+    --jp-mirror-editor-tag-color: #170;
+    --jp-mirror-editor-attribute-color: #004494 !important;
+    --jp-mirror-editor-header-color: #004494 !important;
+    --jp-mirror-editor-quote-color: #090;
+    --jp-mirror-editor-link-color: #004494 !important;
+    --jp-mirror-editor-error-color: #f00;
+    --jp-mirror-editor-hr-color: #999;
+  
+    /*
+      RTC user specific colors.
+      These colors are used for the cursor, username in the editor,
+      and the icon of the user.
+    */
+  
+    --jp-collaborator-color1: #ffad8e;
+    --jp-collaborator-color2: #dac83d;
+    --jp-collaborator-color3: #72dd76;
+    --jp-collaborator-color4: #00e4d0;
+    --jp-collaborator-color5: #45d4ff;
+    --jp-collaborator-color6: #e2b1ff;
+    --jp-collaborator-color7: #ff9de6;
+  
+    /* Vega extension styles */
+  
+    --jp-vega-background: white;
+  
+    /* Sidebar-related styles */
+  
+    --jp-sidebar-min-width: 250px;
+  
+    /* Search-related styles */
+  
+    --jp-search-toggle-off-opacity: 0.5;
+    --jp-search-toggle-hover-opacity: 0.8;
+    --jp-search-toggle-on-opacity: 1;
+    --jp-search-selected-match-background-color: rgb(245, 200, 0);
+    --jp-search-selected-match-color: black;
+    --jp-search-unselected-match-background-color: var(
+      --jp-inverse-layout-color0
+    );
+    --jp-search-unselected-match-color: var(--jp-ui-inverse-font-color0);
+  
+    /* Icon colors that work well with light or dark backgrounds */
+    --jp-icon-contrast-color0: var(--md-purple-600, #8e24aa);
+    --jp-icon-contrast-color1: var(--md-green-600, #43a047);
+    --jp-icon-contrast-color2: var(--md-pink-600, #d81b60);
+    --jp-icon-contrast-color3: #004494 !important;
+  
+    /* Button colors */
+    --jp-accept-color-normal: #004494 !important;
+    --jp-accept-color-hover: #004494 !important;
+    --jp-accept-color-active: #004494 !important;
+    --jp-warn-color-normal: var(--md-red-700, #d32f2f);
+    --jp-warn-color-hover: var(--md-red-800, #c62828);
+    --jp-warn-color-active: var(--md-red-900, #b71c1c);
+    --jp-reject-color-normal: var(--md-grey-600, #757575);
+    --jp-reject-color-hover: var(--md-grey-700, #616161);
+    --jp-reject-color-active: var(--md-grey-800, #424242);
+  
+    /* File or activity icons and switch semantic variables */
+    --jp-jupyter-icon-color: #f37626;
+    --jp-notebook-icon-color: #f37626;
+    --jp-json-icon-color: var(--md-orange-700, #f57c00);
+    --jp-console-icon-background-color: #004494 !important;
+    --jp-console-icon-color: white;
+    --jp-terminal-icon-background-color: var(--md-grey-800, #424242);
+    --jp-terminal-icon-color: var(--md-grey-200, #eee);
+    --jp-text-editor-icon-color: var(--md-grey-700, #616161);
+    --jp-inspector-icon-color: var(--md-grey-700, #616161);
+    --jp-switch-color: var(--md-grey-400, #bdbdbd);
+    --jp-switch-true-position-color: var(--md-orange-900, #e65100);
+  
+    --jp-private-menubar-height: 44px !important;
+    --jp-private-menu-item-height: 24px !important;
+  }
+  
+  #jp-MainLogo svg {
+    visibility: hidden !important;
+  }
+  
+  #jp-MainLogo {
+    background-image: url("./logo/eosc-ntb-logo.svg") !important;
+    background-repeat: no-repeat !important;
+    background-size: 99% !important; /* size of the actual image within the allocated space */
+    background-position-x: 0px !important;
+    background-position-y: center !important;
+    width: 220px !important; /* size of the image space */
+  }
+  
+  #jp-MainMenu .lm-MenuBar-content {
+    margin-top: 14px !important;
+  }
+  
+  .lm-MenuBar-item {
+    margin-top: 9px !important;
+    line-height: 20px !important;
+  }
diff --git a/common/deployments/files/logo/eosc-ntb-logo.svg b/common/deployments/files/logo/eosc-ntb-logo.svg
new file mode 100644
index 0000000000000000000000000000000000000000..4c0e706a7a55f7d0cde0406ac0a521ba52fd8b2a
--- /dev/null
+++ b/common/deployments/files/logo/eosc-ntb-logo.svg
@@ -0,0 +1,424 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Generator: Adobe Illustrator 19.2.0, SVG Export Plug-In . SVG Version: 6.00 Build 0)  -->
+
+<svg
+   version="1.1"
+   id="Layer_1"
+   x="0px"
+   y="0px"
+   viewBox="0 0 454.66446 66.699997"
+   xml:space="preserve"
+   sodipodi:docname="logo-ec--en.65cfd447-ntb.svg"
+   width="454.66446"
+   height="66.699997"
+   inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"><defs
+   id="defs96" /><sodipodi:namedview
+   id="namedview94"
+   pagecolor="#ffffff"
+   bordercolor="#666666"
+   borderopacity="1.0"
+   inkscape:showpageshadow="2"
+   inkscape:pageopacity="0.0"
+   inkscape:pagecheckerboard="0"
+   inkscape:deskcolor="#d1d1d1"
+   showgrid="false"
+   inkscape:zoom="4.1036576"
+   inkscape:cx="225.16498"
+   inkscape:cy="10.478457"
+   inkscape:window-width="1920"
+   inkscape:window-height="1110"
+   inkscape:window-x="0"
+   inkscape:window-y="37"
+   inkscape:window-maximized="1"
+   inkscape:current-layer="Layer_1" />
+<style
+   type="text/css"
+   id="style2">
+.st0 {
+  fill: #bbbdbf;
+}
+.st1 {
+  fill: #034da1;
+}
+.st2 {
+  fill: #fff100;
+}
+.st3 {
+  enable-background: new;
+}
+.st4 {
+  fill: #626366;
+}
+  </style>
+<g
+   id="g91">
+	<g
+   id="Page-1"
+   sketch:type="MSPage">
+		<g
+   id="Version-2-menu"
+   transform="translate(-131,-108)"
+   sketch:type="MSArtboardGroup">
+			<g
+   id="Site-header"
+   transform="translate(131,108)"
+   sketch:type="MSLayerGroup">
+				<g
+   id="logo-copy">
+					<g
+   id="Group-20">
+						<g
+   id="Group-18-Copy"
+   sketch:type="MSShapeGroup">
+							<path
+   id="Fill-40"
+   class="st0"
+   d="m 0,24.5 c 0,0 39.8,-5.2 41,-5.4 1.7,-0.3 3.3,-0.6 4.7,-1 3.2,-0.9 6.2,-2.2 8.8,-4 2.5,-1.7 4.9,-4.2 7.2,-6.9 1.5,-1.7 3,-4 4.5,-6.2 V 0 c -1.7,2.6 -3.4,4.8 -5.1,6.7 -2.3,2.6 -4.7,4.7 -7.2,6.3 -2.5,1.6 -5.4,2.9 -8.5,3.7 -1.4,0.4 -2.9,0.6 -4.6,0.9 -1.1,0.2 -2.2,0.3 -3.3,0.4 C 37,18 0,21.9 0,21.9 Z" />
+							<path
+   id="Fill-41"
+   class="st0"
+   d="m 53.4,17.8 c -2.5,1.4 -5.4,2.5 -8.6,3.1 -1.4,0.3 -2.8,0.5 -4.5,0.7 -1,0.1 -2,0.2 -3,0.3 -0.5,0 -1.1,0.1 -1.6,0.1 C 23.5,23.2 11.4,24.3 0,25.4 V 28 c 11.4,-1.4 23.7,-2.9 35.9,-4.3 0.5,-0.1 1.1,-0.1 1.6,-0.2 1,-0.1 2,-0.2 3,-0.4 1.7,-0.2 3.3,-0.5 4.6,-0.8 3.3,-0.7 6.3,-1.9 8.9,-3.5 2.6,-1.6 4.8,-3.7 7.3,-6.4 1.5,-1.7 3.2,-4 4.8,-6.2 v -1 c -1.9,2.5 -3.6,4.7 -5.4,6.5 -2.4,2.7 -4.8,4.7 -7.3,6.1" />
+							<path
+   id="Fill-42"
+   class="st0"
+   d="m 60.4,17.2 c -2.4,2.2 -5,4 -7.5,5.3 -2.5,1.2 -5.3,2.1 -8.6,2.6 -1.4,0.2 -2.8,0.4 -4.5,0.6 L 0,28.9 v 2.6 l 35.3,-3.8 4.6,-0.5 c 1.7,-0.2 3.2,-0.4 4.6,-0.7 3.4,-0.6 6.3,-1.6 8.9,-2.9 2.7,-1.4 5.3,-3.6 7.8,-6 1.7,-1.6 3.2,-3.7 4.9,-5.8 v -0.9 c -2,2.5 -3.8,4.5 -5.7,6.3" />
+							<path
+   id="Fill-43"
+   class="st0"
+   d="m 50.8,30.6 c -2.3,1.3 -4,2.1 -7.3,2.4 -2,0.2 -4,0.3 -6,0.4 -1,0 -1.9,0.1 -2.9,0.2 -6,0.3 -11.9,0.7 -17.9,1.1 L 0,35.9 v 2.6 l 16.8,-1.6 c 5.4,-0.5 11.7,-1.1 17.9,-1.6 L 39.2,35 c 1.7,-0.1 3.2,-0.3 4.5,-0.5 3.4,-0.4 6.3,-1.1 8.9,-2.1 2.8,-1 5.4,-2.7 8,-4.6 2.4,-1.7 5.6,-5.1 5.6,-5.2 v -0.9 c -2.1,2.1 -3.4,3.3 -5.7,4.8 -2.9,2 -7.6,3 -9.7,4.1" />
+							<path
+   id="Fill-44"
+   class="st0"
+   d="m 51.6,35.6 c -2.5,0.7 -5.3,1.2 -8.6,1.5 -1.3,0.1 -2.8,0.2 -4.4,0.3 l -4.4,0.2 c -11,0.5 -22,1.1 -34.1,1.7 v 2.6 C 11.7,41 23,40.1 34.4,39.3 L 38.8,39 c 1.7,-0.1 3.1,-0.2 4.5,-0.4 3.4,-0.4 6.3,-1 8.8,-1.8 2.8,-0.9 5.6,-2.2 8.2,-3.9 1.9,-1.2 3.9,-2.7 5.9,-4.5 v 0 c -2.2,1.9 -4.3,2.3 -6.4,3.6 -2.7,1.6 -5.4,2.8 -8.2,3.6" />
+							<path
+   id="Fill-45"
+   class="st0"
+   d="m 51.2,39.9 c -2.5,0.6 -5.3,1 -8.6,1.2 -1.3,0.1 -2.7,0.2 -4.4,0.2 l -4.4,0.2 C 22.7,41.9 11.5,42.4 0,42.9 v 2.6 C 11.4,44.7 22.6,44 33.9,43.2 l 4.4,-0.3 c 1.7,-0.1 3.1,-0.2 4.4,-0.3 3.4,-0.3 6.2,-0.8 8.8,-1.5 2.9,-0.8 5.7,-1.9 8.4,-3.3 2.1,-1.1 4.1,-2.4 6.2,-4 v -1.1 c -2.3,1.7 -4.5,3 -6.7,4.1 -2.6,1.4 -5.4,2.4 -8.2,3.1" />
+							<path
+   id="Fill-46"
+   class="st0"
+   d="m 50.8,44.1 c -2.5,0.5 -5.3,0.8 -8.6,0.9 -1.3,0.1 -2.6,0.1 -4.3,0.2 L 0,46.2 v 2.6 L 33.6,47 38,46.8 c 1.7,-0.1 3.1,-0.2 4.4,-0.3 3.4,-0.3 6.1,-0.6 8.7,-1.2 2.9,-0.6 5.8,-1.5 8.5,-2.7 2.2,-0.9 4.3,-2 6.6,-3.4 v -1 c -2.4,1.4 -4.7,2.5 -7,3.4 -2.7,1.2 -5.5,2 -8.4,2.5" />
+							<path
+   id="Fill-47"
+   class="st0"
+   d="m 50.5,48.3 c -4.7,0.6 -9.4,0.7 -14.1,0.8 -1.1,0 -2.1,0 -3.2,0.1 L 0,49.8 v 2.6 L 33.3,51 c 1.1,0 2.1,-0.1 3.2,-0.1 4.7,-0.2 9.5,-0.4 14.2,-1.1 3,-0.5 5.9,-1.2 8.5,-2.1 C 61.4,47 63.7,46 66,44.8 v -1 c -2.4,1.1 -4.9,2.1 -7.2,2.8 -2.5,0.7 -5.3,1.4 -8.3,1.7" />
+							<path
+   id="Fill-48"
+   class="st0"
+   d="M 50.3,52.6 C 45.9,53 41.5,53 37.1,53 c -1.3,0 -2.7,0 -4,0 -11,0 -22,0.1 -33.1,0.2 v 2.6 c 10.6,-0.4 21.9,-0.7 33.2,-1.1 1.3,0 2.7,-0.1 4,-0.1 4.3,-0.1 8.8,-0.2 13.2,-0.7 3.1,-0.3 5.9,-0.8 8.6,-1.5 2.3,-0.6 4.7,-1.4 7.2,-2.3 v -0.9 c -2.5,0.9 -5,1.6 -7.4,2.2 -2.7,0.6 -5.5,1 -8.5,1.2" />
+							<path
+   id="Fill-49"
+   class="st0"
+   d="m 50.1,56.8 c -1.8,0.1 -3.8,0.1 -6,0.1 -0.8,0 -1.7,0 -2.5,0 L 33,56.8 c -5.9,0 -11.7,-0.1 -17.2,-0.1 L 0,56.8 v 2.6 L 15.9,59 C 21.4,58.9 27.2,58.7 33,58.6 l 8.6,-0.1 c 2.4,0 5.5,-0.1 8.6,-0.3 3.1,-0.2 5.9,-0.5 8.6,-0.9 2.4,-0.4 4.9,-0.9 7.4,-1.5 v -0.9 c -2.5,0.6 -5.1,1.1 -7.5,1.4 -2.8,0.2 -5.5,0.4 -8.6,0.5" />
+							<path
+   id="Fill-50"
+   class="st0"
+   d="M 41.5,60.9 32.9,60.8 C 22,60.6 11.1,60.4 0,60.2 v 2.6 c 10.6,-0.1 21.8,-0.2 32.9,-0.3 l 8.6,-0.1 c 2.9,0 5.7,-0.1 8.6,-0.2 C 56,62 61.2,61.6 66.2,60.9 V 60 c -4.9,0.5 -10.2,0.8 -16.1,0.9 -2.9,0 -5.8,0 -8.6,0" />
+							<path
+   id="Fill-51"
+   class="st0"
+   d="M 66.1,65.5 0,63.8 v 2.6 h 66.1 z" />
+							<path
+   id="Fill-52"
+   class="st0"
+   d="m 60.2,22 c -2.5,2 -4.5,3.5 -7.5,4.7 -2.7,1.1 -5.6,1.5 -8.8,2 -2.1,0.3 -4.3,0.7 -6.4,0.9 -0.9,0.1 -1.7,0.1 -2.6,0.2 L 0,32.3 v 2.6 l 34.9,-3.4 4.5,-0.4 c 1.7,-0.2 3.2,-0.3 4.6,-0.6 3.4,-0.5 6.3,-1.4 8.9,-2.6 2.7,-1.2 5.5,-3.2 8,-5.3 1.7,-1.5 3.4,-3.3 5.2,-5.3 v -0.9 c -2.2,2.2 -4,4.1 -5.9,5.6" />
+							<path
+   id="Fill-53"
+   class="st0"
+   d="m 94.2,0 c 0,0 11.9,18.9 14.1,22.4 2.2,3.5 4.7,6.2 13.5,8.1 8.8,1.9 12.6,2.7 12.6,2.7 v 0.7 c 0,0 -5.6,-1.2 -12.8,-2.8 -7.2,-1.6 -10.1,-2.1 -13.4,-6.7 -2.7,-3.8 -14,-19.9 -14,-19.9 z" />
+							<path
+   id="Fill-54"
+   class="st0"
+   d="m 94.2,21.6 c 0,0 10.8,11.3 14,14.6 3.3,3.5 7.6,4.7 13.5,5.8 5.6,1 12.7,2.2 12.7,2.2 v 0.6 c 0,0 -6.7,-1.1 -12.7,-2.1 -5.9,-1 -10.1,-1.6 -13.5,-4.7 -3,-2.8 -13.9,-13 -13.9,-13 z" />
+							<path
+   id="Fill-55"
+   class="st0"
+   d="m 94.2,26.8 c 0,0 10.3,9.6 14,12.8 3.4,3 6.1,3.9 13.5,5.3 7.4,1.3 12.7,2.1 12.7,2.1 v 0.7 c 0,0 -6.7,-1.1 -12.7,-2.1 -6,-1 -9.9,-1.3 -13.5,-4.3 -4.2,-3.4 -14,-11.4 -14,-11.4 z" />
+							<path
+   id="Fill-56"
+   class="st0"
+   d="m 94.2,32.2 c 0,0 11.8,9.3 14,11 2.2,1.6 5.1,3.5 13.5,4.8 8.4,1.2 12.7,1.8 12.7,1.8 v 0.7 c 0,0 -7.6,-1.1 -12.7,-1.7 -5.1,-0.6 -9,-0.9 -13.5,-3.9 -4.4,-2.9 -14,-9.7 -14,-9.7 z" />
+							<path
+   id="Fill-57"
+   class="st0"
+   d="m 94.2,37.4 c 0,0 11.8,7.9 14,9.1 2.2,1.2 4.9,3.3 13.5,4.4 8.6,1.1 12.7,1.6 12.7,1.6 v 0.7 c 0,0 -7.1,-0.8 -12.7,-1.4 -5.6,-0.6 -9.4,-1.4 -13.5,-3.7 -4.1,-2.3 -14,-8 -14,-8 z" />
+							<path
+   id="Fill-58"
+   class="st0"
+   d="m 94.2,42.7 c 0,0 10.4,5.7 14,7.4 3.9,2 7.3,2.9 13.5,3.7 6.1,0.7 12.7,1.4 12.7,1.4 v 0.6 c 0,0 -6.1,-0.7 -12.7,-1.3 -6.5,-0.6 -8.8,-0.9 -13.5,-3 -4.2,-1.9 -14,-6.4 -14,-6.4 z" />
+							<path
+   id="Fill-59"
+   class="st0"
+   d="m 94.2,48 c 0,0 8.2,3.5 14,5.8 5.7,2.3 10,2.5 13.5,2.8 1.5,0.2 12.6,1.3 12.6,1.3 v 0.6 c 0,0 -6.6,-0.5 -12.7,-1.1 -6,-0.5 -8.6,-0.8 -13.5,-2.4 -4.9,-1.6 -14,-4.8 -14,-4.8 z" />
+							<path
+   id="Fill-60"
+   class="st0"
+   d="m 94.2,53.4 c 0,0 8.3,2.6 14,4.1 5.7,1.5 10.9,2.1 13.5,2.3 2.6,0.2 12.7,1 12.7,1 v 0.6 c 0,0 -5.7,-0.4 -12.7,-0.9 -5.7,-0.4 -10.2,-0.8 -13.5,-1.6 -3.7,-0.8 -14,-3.3 -14,-3.3 z" />
+							<path
+   id="Fill-61"
+   class="st0"
+   d="m 94.2,58.7 c 0,0 6.8,1.2 14,2.4 5.4,0.9 12.7,1.5 13.5,1.5 0.8,0 12.7,0.9 12.7,0.9 v 0.6 c 0,0 -7.6,-0.4 -12.7,-0.7 -5.3,-0.3 -10.5,-0.6 -13.5,-0.9 -6.7,-0.7 -14,-1.6 -14,-1.6 z" />
+							<path
+   id="Fill-62"
+   class="st0"
+   d="m 94.2,64.3 c 0,0 10.7,0.4 14,0.5 3.3,0.1 26.2,1 26.2,1 v 0.6 H 94.2 Z" />
+							<path
+   id="Fill-63"
+   class="st0"
+   d="M 121.7,33.4 C 112,31.3 109.8,27.8 108.2,25.6 106.6,23.4 94.3,5.4 94.3,5.4 v 4.1 c 0.5,0.6 11,14.4 14,18.2 3.3,4.3 8.5,5.3 13.5,6.3 5,1.1 12.7,2.6 12.7,2.6 V 36 c -0.1,0 -10.3,-2 -12.8,-2.6" />
+							<path
+   id="Fill-64"
+   class="st0"
+   d="m 121.7,36.3 c -8,-1.6 -11.2,-4.1 -13.5,-7.1 C 105.9,26.1 94.3,10.9 94.3,10.9 v 3.8 c 0.5,0.6 11.1,13.1 13.9,16.4 3.3,3.8 7.9,4.8 13.5,5.8 5.6,1 12.7,2.4 12.7,2.4 v -0.6 c 0,0 -8.1,-1.5 -12.7,-2.4" />
+							<path
+   id="Fill-65"
+   class="st0"
+   d="m 121.7,39.2 c -8.3,-1.6 -10,-2.9 -13.5,-6.8 C 106,30 94.7,16.7 94.2,16.1 v 3.5 c 0,0 10.5,11.2 13.9,14.6 4.4,4.4 8.6,4.7 13.5,5.6 4.9,0.9 12.7,2.3 12.7,2.3 v -0.6 c 0.1,0 -9.3,-1.6 -12.6,-2.3" />
+							<path
+   id="Fill-66"
+   class="st1"
+   d="M 85.4,27.6 H 27.5 v 38.7 h 57.9 z" />
+							<path
+   id="Fill-67"
+   class="st2"
+   d="m 57.1,33.1 h 2 l -1.6,1.3 0.6,2 -1.6,-1.2 -1.6,1.2 0.6,-2 -1.6,-1.3 h 2 l 0.6,-2 z" />
+							<path
+   id="Fill-68"
+   class="st2"
+   d="m 57.1,58.9 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 L 56.5,57 Z" />
+							<path
+   id="Fill-69"
+   class="st2"
+   d="m 63.5,57.2 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-70"
+   class="st2"
+   d="m 63.5,34.8 h 2 L 63.9,36 64.5,37.9 62.9,36.7 61.3,38 62,36 60.4,34.8 h 2 L 63,32.9 Z" />
+							<path
+   id="Fill-71"
+   class="st2"
+   d="m 68.3,39.6 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-72"
+   class="st2"
+   d="m 68.3,52.6 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-73"
+   class="st2"
+   d="m 70.1,46 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.7,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-74"
+   class="st2"
+   d="m 50.5,34.8 h 2 L 50.9,36 51.5,37.9 50,36.8 48.3,38 48.9,36.1 47.3,34.9 h 2 L 50,33 Z" />
+							<path
+   id="Fill-75"
+   class="st2"
+   d="m 45.9,39.6 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-76"
+   class="st2"
+   d="m 44.2,46 h 2 l -1.6,1.2 0.6,1.9 L 43.6,47.9 42,49.1 42.6,47.2 41,46 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-77"
+   class="st2"
+   d="m 45.9,52.6 h 2 l -1.6,1.2 0.6,1.9 -1.6,-1.2 -1.6,1.2 0.6,-1.9 -1.6,-1.2 h 2 l 0.6,-1.9 z" />
+							<path
+   id="Fill-78"
+   class="st2"
+   d="m 50.6,57.3 h 2 L 51,58.5 51.6,60.4 50,59.2 48.4,60.4 49,58.5 47.4,57.3 h 2 L 50,55.4 Z" />
+						</g>
+					</g>
+				</g>
+			</g>
+		</g>
+	</g>
+	<g
+   class="st3"
+   id="g65">
+		<path
+   class="st4"
+   d="m 143.4,33.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 7.4 c 0.3,0 0.4,0.1 0.4,0.4 v 1.2 c 0,0.2 -0.1,0.4 -0.4,0.4 h -5.5 v 3.5 h 4.9 c 0.3,0 0.4,0.1 0.4,0.4 v 1.2 c 0,0.2 -0.1,0.4 -0.4,0.4 h -4.9 v 4 h 5.6 c 0.2,0 0.4,0.1 0.4,0.4 v 1.2 c 0,0.2 -0.1,0.4 -0.4,0.4 h -7.5 c -0.3,0 -0.4,-0.1 -0.4,-0.4 z"
+   id="path49" />
+		<path
+   class="st4"
+   d="m 161.8,46.1 h -1.4 c -0.1,0 -0.2,0 -0.3,-0.1 C 160,45.9 160,45.8 160,45.7 V 45 45 c -0.2,0.1 -0.4,0.3 -0.7,0.4 -0.3,0.1 -0.5,0.3 -0.8,0.4 -0.3,0.1 -0.6,0.2 -0.9,0.3 -0.3,0.1 -0.6,0.1 -0.9,0.1 -0.7,0 -1.2,-0.1 -1.6,-0.3 -0.4,-0.2 -0.7,-0.4 -0.9,-0.8 -0.2,-0.3 -0.3,-0.7 -0.4,-1.2 -0.1,-0.5 -0.1,-0.9 -0.1,-1.5 v -5.9 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.5 c 0.2,0 0.4,0.1 0.4,0.4 v 5.6 c 0,0.3 0,0.6 0.1,0.8 0,0.2 0.1,0.4 0.2,0.6 0.1,0.2 0.3,0.3 0.4,0.4 0.1,0.1 0.4,0.1 0.7,0.1 0.2,0 0.4,0 0.7,-0.1 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.3,-0.1 0.5,-0.2 0.7,-0.3 0.2,-0.1 0.4,-0.2 0.5,-0.3 v -6.7 c 0,-0.1 0,-0.2 0.1,-0.3 0.1,-0.1 0.2,-0.1 0.3,-0.1 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 9.1 c -0.1,0.5 -0.2,0.7 -0.5,0.7 z"
+   id="path51" />
+		<path
+   class="st4"
+   d="m 166.9,45.7 c 0,0.3 -0.1,0.4 -0.4,0.4 H 165 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 0.9 0 c 0.1,-0.1 0.3,-0.3 0.6,-0.4 0.2,-0.2 0.5,-0.3 0.8,-0.4 0.3,-0.1 0.6,-0.2 0.8,-0.4 0.3,-0.1 0.5,-0.2 0.8,-0.2 0.1,0 0.2,0 0.3,0 0.1,0 0.1,0.1 0.2,0.3 l 0.1,1.3 c 0,0.1 0,0.3 0,0.3 0,0.1 -0.1,0.1 -0.4,0.2 -0.3,0.1 -0.6,0.1 -0.9,0.2 -0.3,0.1 -0.6,0.2 -0.9,0.2 -0.3,0.1 -0.6,0.2 -0.8,0.3 -0.3,0.1 -0.5,0.2 -0.6,0.2 v 6.6 z"
+   id="path53" />
+		<path
+   class="st4"
+   d="m 180.2,41 c 0,0.6 0,1.2 -0.1,1.8 -0.1,0.6 -0.3,1.2 -0.6,1.7 -0.3,0.5 -0.7,0.9 -1.3,1.3 -0.6,0.3 -1.4,0.5 -2.4,0.5 -1,0 -1.8,-0.2 -2.4,-0.5 -0.6,-0.3 -1,-0.7 -1.3,-1.3 -0.3,-0.5 -0.5,-1.1 -0.5,-1.7 -0.1,-0.6 -0.1,-1.2 -0.1,-1.8 0,-0.5 0,-1 0.1,-1.6 0.1,-0.6 0.3,-1.1 0.6,-1.6 0.3,-0.5 0.7,-0.9 1.3,-1.3 0.6,-0.3 1.3,-0.5 2.3,-0.5 1,0 1.8,0.1 2.3,0.4 0.6,0.3 1,0.7 1.3,1.2 0.3,0.5 0.5,1 0.6,1.6 0.1,0.6 0.2,1.2 0.2,1.8 z m -2.3,0.1 c 0,-0.5 0,-1 -0.1,-1.4 -0.1,-0.4 -0.2,-0.7 -0.3,-1 -0.2,-0.3 -0.4,-0.5 -0.7,-0.6 -0.3,-0.1 -0.6,-0.2 -1.1,-0.2 -0.4,0 -0.8,0.1 -1,0.2 -0.2,0.1 -0.5,0.3 -0.6,0.6 -0.2,0.3 -0.3,0.6 -0.3,1 -0.1,0.4 -0.1,0.9 -0.1,1.4 0,0.5 0,1 0.1,1.4 0.1,0.4 0.2,0.7 0.3,1 0.1,0.3 0.4,0.5 0.6,0.6 0.2,0.1 0.6,0.2 1,0.2 0.5,0 0.8,-0.1 1.1,-0.2 0.3,-0.1 0.5,-0.3 0.7,-0.6 0.2,-0.3 0.3,-0.6 0.3,-1 0.1,-0.4 0.1,-0.8 0.1,-1.4 z"
+   id="path55" />
+		<path
+   class="st4"
+   d="m 190.8,41.1 c 0,0.8 -0.1,1.5 -0.2,2.2 -0.1,0.6 -0.3,1.2 -0.6,1.6 -0.3,0.4 -0.7,0.8 -1.2,1 -0.5,0.2 -1.2,0.3 -2,0.3 -0.3,0 -0.7,0 -1.2,-0.1 -0.4,-0.1 -0.9,-0.2 -1.4,-0.3 v 0 3.5 c 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.1 h -1.4 c -0.2,0 -0.3,0 -0.3,-0.1 0,-0.1 -0.1,-0.2 -0.1,-0.3 V 36.6 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.1,0 0.2,0 0.3,0.1 0.1,0.1 0.1,0.2 0.1,0.3 v 0.6 h 0.1 c 0.2,-0.1 0.4,-0.2 0.6,-0.4 0.2,-0.1 0.5,-0.3 0.8,-0.4 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.3,-0.1 0.6,-0.1 0.9,-0.1 0.7,0 1.2,0.1 1.6,0.4 0.4,0.2 0.8,0.6 1,1 0.2,0.4 0.4,1 0.5,1.6 0.2,0.6 0.2,1.3 0.2,2.1 z m -2.3,0 c 0,-0.6 0,-1.2 -0.1,-1.5 -0.1,-0.3 -0.2,-0.7 -0.3,-0.9 -0.1,-0.2 -0.3,-0.4 -0.5,-0.4 -0.2,-0.1 -0.4,-0.1 -0.7,-0.1 -0.2,0 -0.4,0 -0.7,0.1 -0.3,0.1 -0.5,0.1 -0.8,0.2 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 v 5 c 0.5,0.1 0.9,0.2 1.2,0.3 0.3,0.1 0.7,0.1 1.1,0.1 0.4,0 0.7,-0.1 0.9,-0.2 0.2,-0.1 0.4,-0.3 0.6,-0.5 0.2,-0.3 0.3,-0.6 0.3,-1 0.3,-0.6 0.3,-1.1 0.3,-1.7 z"
+   id="path57" />
+		<path
+   class="st4"
+   d="m 194.7,41.7 c 0,0.5 0.1,0.9 0.2,1.3 0.1,0.3 0.3,0.6 0.5,0.8 0.2,0.2 0.4,0.3 0.7,0.4 0.3,0.1 0.6,0.1 1.1,0.1 0.4,0 0.8,0 1.3,-0.1 0.5,-0.1 0.9,-0.1 1.3,-0.1 0.2,0 0.3,0 0.4,0 0.1,0 0.1,0.1 0.2,0.3 l 0.1,0.7 c 0,0.1 0,0.3 0,0.4 0,0.1 -0.1,0.2 -0.3,0.3 -0.2,0.1 -0.4,0.2 -0.7,0.2 -0.3,0 -0.5,0.1 -0.8,0.2 -0.3,0.1 -0.6,0.1 -0.9,0.1 -0.3,0 -0.6,0 -0.8,0 -1,0 -1.7,-0.1 -2.3,-0.4 -0.6,-0.3 -1,-0.7 -1.3,-1.1 -0.3,-0.5 -0.5,-1 -0.6,-1.6 -0.1,-0.6 -0.2,-1.2 -0.2,-1.9 0,-0.5 0,-1 0.1,-1.6 0.1,-0.6 0.3,-1.2 0.6,-1.7 0.3,-0.5 0.7,-1 1.3,-1.3 0.6,-0.4 1.3,-0.5 2.3,-0.5 0.9,0 1.6,0.1 2.2,0.4 0.6,0.3 1,0.6 1.3,1 0.3,0.4 0.5,0.9 0.6,1.4 0.1,0.5 0.2,1.1 0.2,1.6 0,0.4 0,0.7 -0.2,0.9 -0.2,0.2 -0.4,0.3 -0.8,0.3 h -5.5 z m 2,-3.9 c -0.4,0 -0.7,0.1 -0.9,0.2 -0.2,0.1 -0.4,0.3 -0.6,0.5 -0.2,0.2 -0.3,0.5 -0.3,0.8 -0.1,0.3 -0.1,0.6 -0.1,1 h 4 c 0,-0.3 0,-0.6 -0.1,-0.9 -0.1,-0.3 -0.2,-0.5 -0.3,-0.8 -0.1,-0.3 -0.3,-0.4 -0.6,-0.5 -0.4,-0.2 -0.7,-0.3 -1.1,-0.3 z"
+   id="path59" />
+		<path
+   class="st4"
+   d="m 209,44.9 c -0.5,0.4 -1.1,0.7 -1.7,0.9 -0.6,0.2 -1.3,0.4 -2,0.4 -0.5,0 -1,-0.1 -1.3,-0.2 -0.4,-0.1 -0.6,-0.3 -0.8,-0.6 -0.2,-0.2 -0.4,-0.5 -0.4,-0.9 -0.1,-0.3 -0.1,-0.7 -0.1,-1.2 0,-1.2 0.3,-2 0.9,-2.6 0.6,-0.5 1.6,-0.8 2.8,-0.8 h 2.6 v -0.5 c 0,-0.3 0,-0.5 -0.1,-0.8 -0.1,-0.2 -0.2,-0.4 -0.3,-0.5 -0.2,-0.1 -0.4,-0.2 -0.6,-0.3 -0.3,-0.1 -0.6,-0.1 -1,-0.1 -0.2,0 -0.4,0 -0.6,0 -0.2,0 -0.5,0 -0.7,0 -0.2,0 -0.5,0 -0.7,0.1 -0.2,0 -0.5,0 -0.7,0.1 -0.2,0 -0.3,0 -0.4,0 -0.1,0 -0.1,-0.1 -0.2,-0.3 l -0.2,-0.7 c 0,-0.1 0,-0.2 0,-0.3 0.1,-0.1 0.2,-0.2 0.4,-0.3 0.2,-0.1 0.5,-0.1 0.8,-0.2 0.3,-0.1 0.6,-0.1 0.9,-0.1 0.3,0 0.6,-0.1 0.9,-0.1 0.3,0 0.6,0 0.8,0 0.9,0 1.6,0.1 2.1,0.3 0.5,0.2 0.9,0.4 1.2,0.7 0.3,0.3 0.4,0.7 0.5,1.2 0.1,0.5 0.1,1 0.1,1.5 v 3.9 c 0,0.2 0,0.4 0,0.5 0,0.1 0.1,0.2 0.1,0.3 0,0.1 0.1,0.1 0.2,0.1 0.1,0 0.2,0 0.4,0.1 0.1,0 0.2,0 0.3,0.1 0.1,0 0.1,0.1 0.1,0.2 v 0.8 c 0,0.2 -0.2,0.4 -0.5,0.4 -0.2,0 -0.3,0 -0.5,0.1 -0.2,0 -0.3,0 -0.5,0 -0.5,0 -0.8,-0.1 -1.1,-0.3 -0.4,-0.1 -0.6,-0.4 -0.7,-0.9 z m -0.1,-3.3 h -2.4 c -0.5,0 -0.9,0.1 -1.2,0.4 -0.3,0.2 -0.4,0.7 -0.4,1.3 0,0.4 0.1,0.7 0.3,0.9 0.2,0.2 0.5,0.3 1,0.3 0.2,0 0.4,0 0.7,-0.1 0.3,-0.1 0.5,-0.1 0.8,-0.2 0.3,-0.1 0.5,-0.2 0.7,-0.3 0.2,-0.1 0.5,-0.2 0.6,-0.3 v -2 z"
+   id="path61" />
+		<path
+   class="st4"
+   d="m 222.1,46 c -0.1,0.1 -0.2,0.1 -0.3,0.1 h -1.5 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -5.6 c 0,-0.6 -0.1,-1.1 -0.3,-1.4 -0.2,-0.4 -0.6,-0.5 -1.2,-0.5 -0.2,0 -0.4,0 -0.7,0.1 -0.3,0.1 -0.5,0.2 -0.8,0.3 -0.3,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.5,0.3 v 6.7 c 0,0.3 -0.1,0.4 -0.4,0.4 h -1.4 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 0.6 c 0,0 0,0 0,0 0,0 0,0 0,0 0.2,-0.1 0.4,-0.3 0.7,-0.4 0.3,-0.1 0.5,-0.3 0.8,-0.4 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.3,-0.1 0.6,-0.1 0.9,-0.1 0.7,0 1.2,0.1 1.6,0.3 0.4,0.2 0.7,0.5 0.9,0.8 0.2,0.3 0.3,0.8 0.4,1.2 0.1,0.5 0.1,0.9 0.1,1.5 v 5.8 c 0.1,0 0.1,0.1 0.1,0.2 z"
+   id="path63" />
+	</g>
+	<g
+   class="st3"
+   id="g87">
+		<path
+   class="st4"
+   d="m 143.2,59.8 c 0,-0.9 0.1,-1.7 0.2,-2.5 0.1,-0.8 0.4,-1.6 0.8,-2.2 0.4,-0.6 0.9,-1.2 1.6,-1.6 0.7,-0.4 1.6,-0.6 2.8,-0.6 0.2,0 0.5,0 0.8,0 0.3,0 0.6,0.1 1,0.1 0.3,0 0.7,0.1 1,0.2 0.3,0.1 0.6,0.2 0.9,0.3 0.2,0.1 0.3,0.1 0.3,0.2 0,0.1 0.1,0.2 0.1,0.4 l -0.2,0.8 c 0,0.1 -0.1,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.1 -0.4,0 -0.5,-0.1 -1,-0.1 -1.6,-0.2 -0.6,-0.1 -1.1,-0.1 -1.6,-0.1 -0.7,0 -1.2,0.1 -1.6,0.4 -0.4,0.3 -0.7,0.6 -1,1 -0.2,0.4 -0.4,1 -0.4,1.5 0,0.5 -0.1,1.2 -0.1,1.9 0,0.7 0,1.3 0.1,1.8 0.1,0.6 0.2,1.1 0.5,1.5 0.2,0.4 0.5,0.8 1,1 0.4,0.2 0.9,0.4 1.6,0.4 0.6,0 1.1,0 1.6,-0.1 0.5,-0.1 1,-0.1 1.6,-0.2 0.2,0 0.3,0 0.4,0 0.1,0.1 0.1,0.1 0.2,0.3 l 0.2,0.8 c 0.1,0.3 0,0.5 -0.3,0.6 -0.2,0.1 -0.5,0.2 -0.9,0.3 -0.3,0.1 -0.7,0.1 -1,0.2 -0.3,0.1 -0.7,0.1 -1,0.1 -0.3,0 -0.6,0 -0.9,0 -1.1,0 -2,-0.2 -2.7,-0.6 -0.7,-0.4 -1.3,-0.9 -1.6,-1.5 -0.4,-0.6 -0.7,-1.3 -0.8,-2.1 -0.4,-0.7 -0.5,-1.5 -0.5,-2.4 z"
+   id="path67" />
+		<path
+   class="st4"
+   d="m 162.9,61.3 c 0,0.6 0,1.2 -0.1,1.8 -0.1,0.6 -0.3,1.2 -0.6,1.7 -0.3,0.5 -0.7,0.9 -1.3,1.3 -0.6,0.3 -1.4,0.5 -2.4,0.5 -1,0 -1.8,-0.2 -2.4,-0.5 -0.6,-0.3 -1,-0.7 -1.3,-1.3 -0.3,-0.5 -0.5,-1.1 -0.5,-1.7 -0.1,-0.6 -0.1,-1.2 -0.1,-1.8 0,-0.5 0,-1 0.1,-1.6 0.1,-0.6 0.3,-1.1 0.6,-1.6 0.3,-0.5 0.7,-0.9 1.3,-1.3 0.6,-0.3 1.3,-0.5 2.3,-0.5 1,0 1.8,0.1 2.3,0.4 0.6,0.3 1,0.7 1.3,1.2 0.3,0.5 0.5,1 0.6,1.6 0.1,0.6 0.2,1.2 0.2,1.8 z m -2.3,0.1 c 0,-0.5 0,-1 -0.1,-1.4 -0.1,-0.4 -0.2,-0.7 -0.3,-1 -0.2,-0.3 -0.4,-0.5 -0.7,-0.6 -0.3,-0.1 -0.6,-0.2 -1.1,-0.2 -0.4,0 -0.8,0.1 -1,0.2 -0.2,0.1 -0.5,0.3 -0.6,0.6 -0.2,0.3 -0.3,0.6 -0.3,1 -0.1,0.4 -0.1,0.9 -0.1,1.4 0,0.5 0,1 0.1,1.4 0.1,0.4 0.2,0.7 0.3,1 0.1,0.3 0.4,0.5 0.6,0.6 0.2,0.1 0.6,0.2 1,0.2 0.5,0 0.8,-0.1 1.1,-0.2 0.3,-0.1 0.5,-0.3 0.7,-0.6 0.2,-0.3 0.3,-0.6 0.3,-1 0,-0.4 0.1,-0.8 0.1,-1.4 z"
+   id="path69" />
+		<path
+   class="st4"
+   d="m 179.2,66.3 c 0,0.1 -0.1,0.1 -0.3,0.1 h -1.4 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -5.7 c 0,-0.7 -0.1,-1.3 -0.3,-1.5 -0.2,-0.3 -0.6,-0.4 -1.1,-0.4 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.5,0.1 -0.7,0.2 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 0,0.1 0,0.2 0,0.4 0,0.2 0,0.4 0,0.6 V 66 c 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.1 h -1.5 c -0.2,0 -0.3,-0.1 -0.3,-0.4 v -5.8 c 0,-0.6 -0.1,-1.1 -0.3,-1.4 -0.2,-0.3 -0.5,-0.4 -1,-0.4 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.4,0.1 -0.7,0.2 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 V 66 c 0,0.3 -0.1,0.4 -0.4,0.4 h -1.4 c -0.2,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 0.6 0 c 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.5,-0.3 0.7,-0.4 0.2,-0.1 0.5,-0.2 0.8,-0.3 0.3,-0.1 0.5,-0.1 0.8,-0.1 0.6,0 1.1,0.1 1.6,0.3 0.5,0.2 0.9,0.6 1.2,1.1 0.5,-0.4 1.1,-0.7 1.7,-1 0.6,-0.3 1.2,-0.4 1.9,-0.4 0.7,0 1.2,0.1 1.6,0.3 0.4,0.2 0.7,0.5 0.9,0.8 0.2,0.3 0.3,0.7 0.4,1.2 0.1,0.5 0.1,0.9 0.1,1.4 v 6 c -0.1,0.1 -0.1,0.2 -0.1,0.3 z"
+   id="path71" />
+		<path
+   class="st4"
+   d="m 195.7,66.3 c 0,0.1 -0.1,0.1 -0.3,0.1 H 194 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -5.7 c 0,-0.7 -0.1,-1.3 -0.3,-1.5 -0.2,-0.3 -0.6,-0.4 -1.1,-0.4 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.5,0.1 -0.7,0.2 -0.2,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 0,0.1 0,0.2 0,0.4 0,0.2 0,0.4 0,0.6 V 66 c 0,0.1 0,0.2 -0.1,0.3 -0.1,0.1 -0.2,0.1 -0.3,0.1 h -1.5 c -0.2,0 -0.3,-0.1 -0.3,-0.4 v -5.8 c 0,-0.6 -0.1,-1.1 -0.3,-1.4 -0.2,-0.3 -0.5,-0.4 -1,-0.4 -0.2,0 -0.4,0 -0.6,0.1 -0.2,0.1 -0.4,0.1 -0.7,0.2 -0.3,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.6,0.3 V 66 c 0,0.3 -0.1,0.4 -0.4,0.4 h -1.4 c -0.2,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 0.6 0 c 0.2,-0.1 0.4,-0.3 0.6,-0.4 0.2,-0.1 0.5,-0.3 0.7,-0.4 0.3,-0.1 0.5,-0.2 0.8,-0.3 0.3,-0.1 0.5,-0.1 0.8,-0.1 0.6,0 1.1,0.1 1.6,0.3 0.5,0.2 0.9,0.6 1.2,1.1 0.5,-0.4 1.1,-0.7 1.7,-1 0.6,-0.3 1.2,-0.4 1.9,-0.4 0.7,0 1.2,0.1 1.6,0.3 0.4,0.2 0.7,0.5 0.9,0.8 0.2,0.3 0.3,0.7 0.4,1.2 0.1,0.5 0.1,0.9 0.1,1.4 v 6 c 0,0.1 -0.1,0.2 -0.1,0.3 z"
+   id="path73" />
+		<path
+   class="st4"
+   d="m 200.5,53.9 c 0,0.2 0,0.3 0,0.5 0,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.4,0.1 -0.6,0.1 -0.3,0 -0.5,0 -0.6,-0.1 -0.2,-0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 0,-0.1 0,-0.3 0,-0.4 0,-0.3 0.1,-0.6 0.2,-0.8 0.2,-0.2 0.5,-0.3 1,-0.3 0.5,0 0.8,0.1 1,0.3 0.1,0.1 0.2,0.4 0.2,0.7 z M 200.4,66 c 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.3,0.1 h -1.4 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.1,0 0.2,0 0.3,0.1 0,0.1 0.1,0.2 0.1,0.3 z"
+   id="path75" />
+		<path
+   class="st4"
+   d="m 210.2,63.4 c 0,0.6 -0.1,1.1 -0.3,1.5 -0.2,0.4 -0.5,0.7 -0.9,1 -0.4,0.2 -0.8,0.4 -1.3,0.5 -0.5,0.1 -1,0.2 -1.5,0.2 -0.5,0 -1.1,0 -1.6,-0.1 -0.6,-0.1 -1.1,-0.2 -1.5,-0.3 -0.2,-0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,-0.2 0,-0.4 l 0.1,-0.7 c 0,-0.2 0.1,-0.3 0.2,-0.3 0.1,0 0.2,0 0.4,0 0.2,0 0.5,0.1 0.7,0.1 0.3,0 0.5,0 0.8,0.1 0.3,0 0.5,0 0.7,0.1 0.2,0 0.4,0 0.6,0 0.6,0 1.1,-0.1 1.4,-0.3 0.3,-0.2 0.4,-0.5 0.4,-0.9 0,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.2 -0.1,-0.3 -0.3,-0.4 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.2,-0.1 -0.5,-0.1 -0.8,-0.2 -0.5,-0.1 -1,-0.2 -1.4,-0.3 -0.4,-0.1 -0.8,-0.3 -1.2,-0.5 -0.3,-0.2 -0.6,-0.5 -0.8,-0.8 -0.2,-0.3 -0.3,-0.8 -0.3,-1.3 0,-1 0.3,-1.7 1,-2.3 0.7,-0.5 1.6,-0.8 2.7,-0.8 0.2,0 0.4,0 0.7,0 0.3,0 0.5,0 0.8,0.1 0.3,0 0.5,0.1 0.8,0.1 0.3,0 0.5,0.1 0.7,0.2 0.3,0.1 0.5,0.3 0.4,0.6 l -0.2,0.7 c 0,0.1 -0.1,0.2 -0.2,0.3 -0.1,0 -0.2,0 -0.4,0 -0.4,-0.1 -0.9,-0.1 -1.4,-0.2 -0.5,0 -0.9,-0.1 -1.3,-0.1 -0.6,0 -1.1,0.1 -1.3,0.3 -0.2,0.2 -0.3,0.5 -0.3,0.9 0,0.4 0.1,0.6 0.4,0.8 0.3,0.1 0.7,0.2 1.3,0.3 0.5,0.1 0.9,0.2 1.4,0.3 0.5,0.1 0.8,0.3 1.2,0.5 0.3,0.2 0.6,0.5 0.8,0.9 0.4,0.4 0.5,0.9 0.5,1.5 z"
+   id="path77" />
+		<path
+   class="st4"
+   d="m 219.4,63.4 c 0,0.6 -0.1,1.1 -0.3,1.5 -0.2,0.4 -0.5,0.7 -0.9,1 -0.4,0.2 -0.8,0.4 -1.3,0.5 -0.5,0.1 -1,0.2 -1.5,0.2 -0.5,0 -1.1,0 -1.6,-0.1 -0.6,-0.1 -1.1,-0.2 -1.5,-0.3 -0.2,-0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,-0.2 0,-0.4 l 0.1,-0.7 c 0,-0.2 0.1,-0.3 0.2,-0.3 0.1,0 0.2,0 0.4,0 0.2,0 0.5,0.1 0.7,0.1 0.3,0 0.5,0 0.8,0.1 0.3,0 0.5,0 0.7,0.1 0.2,0 0.4,0 0.6,0 0.6,0 1.1,-0.1 1.4,-0.3 0.3,-0.2 0.4,-0.5 0.4,-0.9 0,-0.2 0,-0.4 -0.1,-0.6 -0.1,-0.2 -0.1,-0.3 -0.3,-0.4 -0.2,-0.1 -0.3,-0.2 -0.5,-0.2 -0.2,-0.1 -0.5,-0.1 -0.8,-0.2 -0.5,-0.1 -1,-0.2 -1.4,-0.3 -0.4,-0.1 -0.8,-0.3 -1.2,-0.5 -0.3,-0.2 -0.6,-0.5 -0.8,-0.8 -0.2,-0.3 -0.3,-0.8 -0.3,-1.3 0,-1 0.3,-1.7 1,-2.3 0.7,-0.5 1.6,-0.8 2.7,-0.8 0.2,0 0.4,0 0.7,0 0.3,0 0.5,0 0.8,0.1 0.3,0 0.5,0.1 0.8,0.1 0.3,0 0.5,0.1 0.7,0.2 0.3,0.1 0.5,0.3 0.4,0.6 l -0.2,0.7 c 0,0.1 -0.1,0.2 -0.2,0.3 -0.1,0 -0.2,0 -0.4,0 -0.4,-0.1 -0.9,-0.1 -1.4,-0.2 -0.5,0 -0.9,-0.1 -1.3,-0.1 -0.6,0 -1.1,0.1 -1.3,0.3 -0.2,0.2 -0.3,0.5 -0.3,0.9 0,0.4 0.1,0.6 0.4,0.8 0.3,0.1 0.7,0.2 1.3,0.3 0.5,0.1 0.9,0.2 1.4,0.3 0.5,0.1 0.8,0.3 1.2,0.5 0.3,0.2 0.6,0.5 0.8,0.9 0.4,0.4 0.5,0.9 0.5,1.5 z"
+   id="path79" />
+		<path
+   class="st4"
+   d="m 223.9,53.9 c 0,0.2 0,0.3 0,0.5 0,0.1 -0.1,0.3 -0.2,0.4 -0.1,0.1 -0.2,0.2 -0.4,0.3 -0.2,0.1 -0.4,0.1 -0.6,0.1 -0.3,0 -0.5,0 -0.6,-0.1 -0.2,-0.1 -0.3,-0.2 -0.4,-0.3 -0.1,-0.1 -0.1,-0.2 -0.2,-0.4 0,-0.1 0,-0.3 0,-0.4 0,-0.3 0.1,-0.6 0.2,-0.8 0.2,-0.2 0.5,-0.3 1,-0.3 0.5,0 0.8,0.1 1,0.3 0.1,0.1 0.2,0.4 0.2,0.7 z M 223.8,66 c 0,0.1 0,0.2 -0.1,0.3 0,0.1 -0.1,0.1 -0.3,0.1 H 222 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.1,0 0.2,0 0.3,0.1 0,0.1 0.1,0.2 0.1,0.3 z"
+   id="path81" />
+		<path
+   class="st4"
+   d="m 234.8,61.3 c 0,0.6 0,1.2 -0.1,1.8 -0.1,0.6 -0.3,1.2 -0.6,1.7 -0.3,0.5 -0.7,0.9 -1.3,1.3 -0.6,0.3 -1.4,0.5 -2.4,0.5 -1,0 -1.8,-0.2 -2.4,-0.5 -0.6,-0.3 -1,-0.7 -1.3,-1.3 -0.3,-0.5 -0.5,-1.1 -0.5,-1.7 -0.1,-0.6 -0.1,-1.2 -0.1,-1.8 0,-0.5 0,-1 0.1,-1.6 0.1,-0.6 0.3,-1.1 0.6,-1.6 0.3,-0.5 0.7,-0.9 1.3,-1.3 0.6,-0.3 1.3,-0.5 2.3,-0.5 1,0 1.8,0.1 2.3,0.4 0.6,0.3 1,0.7 1.3,1.2 0.3,0.5 0.5,1 0.6,1.6 0.1,0.6 0.2,1.2 0.2,1.8 z m -2.3,0.1 c 0,-0.5 0,-1 -0.1,-1.4 -0.1,-0.4 -0.2,-0.7 -0.3,-1 -0.2,-0.3 -0.4,-0.5 -0.7,-0.6 -0.3,-0.1 -0.6,-0.2 -1.1,-0.2 -0.4,0 -0.8,0.1 -1,0.2 -0.2,0.1 -0.5,0.3 -0.6,0.6 -0.2,0.3 -0.3,0.6 -0.3,1 -0.1,0.4 -0.1,0.9 -0.1,1.4 0,0.5 0,1 0.1,1.4 0.1,0.4 0.2,0.7 0.3,1 0.1,0.3 0.4,0.5 0.6,0.6 0.2,0.1 0.6,0.2 1,0.2 0.5,0 0.8,-0.1 1.1,-0.2 0.3,-0.1 0.5,-0.3 0.7,-0.6 0.2,-0.3 0.3,-0.6 0.3,-1 0,-0.4 0.1,-0.8 0.1,-1.4 z"
+   id="path83" />
+		<path
+   class="st4"
+   d="m 245.2,66.3 c -0.1,0.1 -0.2,0.1 -0.3,0.1 h -1.5 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -5.6 c 0,-0.6 -0.1,-1.1 -0.3,-1.4 -0.2,-0.4 -0.6,-0.5 -1.2,-0.5 -0.2,0 -0.4,0 -0.7,0.1 -0.3,0.1 -0.5,0.2 -0.8,0.3 -0.3,0.1 -0.5,0.2 -0.7,0.3 -0.2,0.1 -0.4,0.2 -0.5,0.3 V 66 c 0,0.3 -0.1,0.4 -0.4,0.4 H 237 c -0.3,0 -0.4,-0.1 -0.4,-0.4 v -9.1 c 0,-0.3 0.1,-0.4 0.4,-0.4 h 1.4 c 0.3,0 0.4,0.1 0.4,0.4 v 0.6 c 0,0 0,0 0,0 0,0 0,0 0,0 0.2,-0.1 0.4,-0.3 0.7,-0.4 0.3,-0.1 0.5,-0.3 0.8,-0.4 0.3,-0.1 0.6,-0.2 0.9,-0.3 0.3,-0.1 0.6,-0.1 0.9,-0.1 0.7,0 1.2,0.1 1.6,0.3 0.4,0.2 0.7,0.5 0.9,0.8 0.2,0.3 0.3,0.8 0.4,1.2 0.1,0.5 0.1,0.9 0.1,1.5 V 66 c 0.2,0.1 0.1,0.2 0.1,0.3 z"
+   id="path85" />
+	</g>
+	<rect
+   x="254.2"
+   y="28"
+   class="st1"
+   width="3.3"
+   height="38.700001"
+   id="rect89" />
+</g>
+<g
+   aria-label="EOSC EU Node"
+   id="text379"
+   style="font-size:15px;line-height:33.7777px;-inkscape-font-specification:'sans-serif, Normal';letter-spacing:0px;word-spacing:0px;fill:#626366;stroke:#000000;stroke-width:1px"><path
+     d="m 265.07941,45.737792 c 0,0.2432 0.1216,0.3648 0.40533,0.3648 h 7.55948 c 0.28374,0 0.38507,-0.101333 0.38507,-0.3648 v -1.236269 c 0,-0.263467 -0.1216,-0.385067 -0.3648,-0.385067 h -5.67468 v -3.99254 h 4.90454 c 0.304,0 0.40534,-0.1216 0.40534,-0.364801 V 38.50258 c 0,-0.243201 -0.14187,-0.364801 -0.40534,-0.364801 h -4.90454 v -3.485872 h 5.53281 c 0.304,0 0.40534,-0.121601 0.40534,-0.364801 V 33.03057 c 0,-0.2432 -0.14187,-0.385067 -0.38507,-0.385067 h -7.45815 c -0.28373,0 -0.40533,0.141867 -0.40533,0.405334 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path358" /><path
+     d="m 286.50131,39.191648 c 0,-3.242673 -0.68907,-6.708278 -5.51254,-6.708278 -4.86401,0 -5.43148,4.256007 -5.43148,6.708278 0,3.141338 0.44587,7.093345 5.41121,7.093345 5.02614,0 5.53281,-3.952007 5.53281,-7.093345 z m -2.33067,0.202667 c 0,3.141338 -0.70934,4.884274 -3.18187,4.884274 -2.43201,0 -3.04001,-1.844269 -3.04001,-4.884274 0,-3.121072 0.7296,-4.924809 3.04001,-4.924809 2.47253,0 3.18187,1.682136 3.18187,4.924809 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path360" /><path
+     d="m 293.02718,46.284993 c 2.59414,0 4.92481,-0.993069 4.92481,-4.05334 0,-3.080539 -2.14827,-3.587206 -4.47894,-4.053341 -1.7632,-0.324267 -2.41174,-0.506667 -2.41174,-1.783469 0,-1.134935 0.608,-1.803737 2.33067,-1.803737 1.19574,0 2.33067,0.141867 3.24268,0.263468 0.38506,0.02027 0.50666,0 0.58773,-0.324268 l 0.20267,-0.830934 c 0.0405,-0.263467 0.0405,-0.445868 -0.40534,-0.628268 -1.17546,-0.486401 -2.95893,-0.547201 -3.72907,-0.547201 -2.8576,0 -4.60054,1.398402 -4.60054,3.952007 0,2.776538 2.128,3.344005 4.51947,3.810139 1.82401,0.324268 2.41174,0.689068 2.41174,2.148271 0,1.155202 -0.87147,1.783469 -2.59414,1.783469 -0.93226,0 -2.53333,-0.162133 -3.5872,-0.283734 -0.34454,-0.04053 -0.46614,-0.04053 -0.5472,0.304001 l -0.1824,0.830935 c -0.0608,0.263467 -0.0608,0.445867 0.40533,0.628267 1.05387,0.425601 2.89814,0.587735 3.91147,0.587735 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path362" /><path
+     d="m 300.12051,39.495648 c 0,3.445339 0.95254,6.789345 5.47201,6.789345 0.99307,0 2.75627,-0.182401 3.74934,-0.608001 0.32427,-0.141867 0.4256,-0.324267 0.34453,-0.648535 l -0.16213,-0.770134 c -0.0811,-0.263467 -0.16213,-0.364801 -0.5472,-0.324268 -1.0944,0.141867 -2.08747,0.263468 -3.26294,0.263468 -2.65494,0 -3.1616,-2.087471 -3.1616,-4.742408 0,-2.634671 0.40533,-4.864009 3.1616,-4.864009 1.05387,0 2.26987,0.141867 3.26294,0.263468 0.3648,0.04053 0.46613,-0.0608 0.52693,-0.304001 l 0.1824,-0.830935 c 0.0608,-0.324267 -0.0608,-0.486401 -0.38506,-0.628267 -1.07414,-0.445868 -2.71574,-0.587735 -3.70881,-0.587735 -4.62081,0 -5.47201,3.526406 -5.47201,6.992012 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path364" /><path
+     d="m 317.38775,45.737792 c 0,0.2432 0.1216,0.3648 0.40533,0.3648 h 7.55948 c 0.28374,0 0.38507,-0.101333 0.38507,-0.3648 v -1.236269 c 0,-0.263467 -0.1216,-0.385067 -0.3648,-0.385067 h -5.67468 v -3.99254 h 4.90455 c 0.304,0 0.40533,-0.1216 0.40533,-0.364801 V 38.50258 c 0,-0.243201 -0.14187,-0.364801 -0.40533,-0.364801 h -4.90455 v -3.485872 h 5.53281 c 0.304,0 0.40534,-0.121601 0.40534,-0.364801 V 33.03057 c 0,-0.2432 -0.14187,-0.385067 -0.38507,-0.385067 h -7.45815 c -0.28373,0 -0.40533,0.141867 -0.40533,0.405334 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path366" /><path
+     d="m 333.01338,44.238056 c -1.78347,0 -2.69548,-1.074135 -2.69548,-3.060272 v -8.126947 c 0,-0.2432 -0.10133,-0.405334 -0.38506,-0.405334 h -1.52001 c -0.28373,0 -0.38506,0.141867 -0.38506,0.405334 v 8.126947 c 0,1.053869 0.1824,2.02667 0.608,2.837338 0.77013,1.479469 2.22934,2.249604 4.37761,2.249604 2.02667,0 3.85067,-0.770135 4.64107,-2.695471 0.304,-0.790401 0.3648,-1.580803 0.3648,-2.391471 l 0.0203,-8.126947 c 0,-0.2432 -0.0811,-0.405334 -0.3648,-0.405334 h -1.52001 c -0.28373,0 -0.40533,0.141867 -0.40533,0.405334 v 8.126947 c 0,2.08747 -0.9728,3.060272 -2.736,3.060272 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path368" /><path
+     d="m 350.13874,39.009247 4.39788,6.708278 c 0.16213,0.263467 0.304,0.385067 0.6688,0.385067 h 1.1552 c 0.28373,0 0.38507,-0.1216 0.38507,-0.3648 V 33.071104 c 0,-0.283734 -0.10134,-0.405334 -0.38507,-0.405334 h -1.4592 c -0.304,0 -0.38507,0.141867 -0.38507,0.405334 v 8.816015 h -0.0608 l -2.91841,-4.560008 -2.5536,-3.972273 c -0.26347,-0.385068 -0.3648,-0.689068 -0.9728,-0.689068 h -1.1552 c -0.26347,0 -0.38507,0.141867 -0.38507,0.3648 v 12.686955 c 0,0.263467 0.1216,0.385067 0.40533,0.385067 h 1.45921 c 0.28373,0 0.38506,-0.141866 0.38506,-0.385067 V 36.84071 h 0.0608 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path370" /><path
+     d="m 367.89236,40.975117 c 0,-2.391471 -0.5472,-5.005875 -4.47894,-5.005875 -3.91148,0 -4.33708,3.100805 -4.33708,5.005875 0,2.310404 0.26347,5.289609 4.33708,5.289609 4.1952,0 4.47894,-2.979205 4.47894,-5.289609 z m -2.26987,0.141867 c 0,2.168537 -0.3648,3.202139 -2.20907,3.202139 -1.70241,0 -2.08747,-1.053869 -2.08747,-3.202139 0,-2.107737 0.38506,-3.202139 2.10773,-3.202139 1.84427,0 2.18881,1.053869 2.18881,3.202139 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path372" /><path
+     d="M 378.41079,45.717525 V 32.219902 c 0,-0.2432 -0.0405,-0.405334 -0.3648,-0.405334 h -1.43893 c -0.32427,0 -0.38507,0.141867 -0.38507,0.405334 v 4.195208 c -0.0203,0 -0.0203,0.02027 -0.0405,0.02027 -0.87147,-0.324267 -1.70241,-0.466134 -2.51307,-0.466134 -3.28321,0 -4.03308,1.96587 -4.03308,5.289609 0,3.060272 0.68907,5.005875 3.32374,5.005875 1.19574,0 2.49281,-0.689068 3.20214,-1.195735 0.0203,0 0.0405,0.02027 0.0608,0.02027 v 0.648535 c 0,0.263467 0.10133,0.3648 0.3648,0.3648 h 1.4592 c 0.28374,0 0.3648,-0.141866 0.3648,-0.385067 z m -2.20907,-2.371204 c -0.58773,0.304001 -1.90507,0.912002 -2.736,0.912002 -1.05387,0 -1.56054,-0.425601 -1.56054,-3.019739 0,-2.553604 0.4864,-3.323739 1.96587,-3.323739 0.6688,0 1.39841,0.08107 2.33067,0.344534 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path374" /><path
+     d="m 388.05773,41.745252 c 0.81067,0 1.01333,-0.506668 0.99307,-1.236269 -0.0608,-2.188804 -0.70934,-4.539741 -4.33708,-4.539741 -3.952,0 -4.3168,3.242672 -4.3168,5.208542 0,2.634671 0.56746,5.107209 4.4384,5.107209 0.99307,0 2.47254,-0.202667 3.26294,-0.506668 0.3648,-0.162133 0.40534,-0.324267 0.34454,-0.628267 l -0.1216,-0.668802 c -0.0608,-0.385067 -0.18241,-0.385067 -0.54721,-0.344534 -0.77013,0.08107 -1.90507,0.222934 -2.63467,0.222934 -1.66187,0 -2.39147,-0.567467 -2.45227,-2.614404 z m -3.34401,-3.952007 c 1.68214,0 2.00641,1.195736 2.00641,2.432004 h -4.01281 c 0.10133,-1.520002 0.50667,-2.432004 2.0064,-2.432004 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path376" /></g><g
+   aria-label="Interactive Notebooks"
+   id="text379-2"
+   style="font-size:15px;line-height:33.7777px;-inkscape-font-specification:'sans-serif, Normal';letter-spacing:0px;word-spacing:0px;fill:#626366;stroke:#000000;stroke-width:1px"><path
+     d="m 265.04919,65.985393 c 0,0.263467 0.10134,0.385068 0.38507,0.385068 h 1.54027 c 0.28373,0 0.38507,-0.162134 0.38507,-0.385068 V 53.318705 c 0,-0.2432 -0.10134,-0.405334 -0.38507,-0.405334 h -1.54027 c -0.28373,0 -0.38507,0.141867 -0.38507,0.405334 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path481" /><path
+     d="M 278.68866,65.985393 V 60.10805 c 0,-2.046937 -0.2432,-3.850673 -2.9792,-3.850673 -1.23627,0 -2.65494,0.689068 -3.40481,1.216002 -0.0203,0 -0.0405,-0.02027 -0.0608,-0.02027 v -0.608001 c 0,-0.263467 -0.10133,-0.405334 -0.38506,-0.405334 h -1.43894 c -0.28373,0 -0.38507,0.141867 -0.38507,0.405334 v 9.140282 c 0,0.263467 0.10134,0.385068 0.38507,0.385068 h 1.43894 c 0.28373,0 0.38506,-0.141867 0.38506,-0.385068 v -6.769078 c 0.5472,-0.263467 1.96587,-0.912001 2.77654,-0.912001 1.17547,0 1.4592,0.790401 1.4592,1.986136 l -0.0203,5.694943 c 0,0.263467 0.1216,0.385068 0.38506,0.385068 h 1.45921 c 0.304,0 0.38506,-0.141867 0.38506,-0.385068 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path483" /><path
+     d="m 286.85614,64.586991 c -0.0405,-0.243201 -0.14186,-0.304001 -0.3648,-0.283734 -0.40533,0.04053 -1.07413,0.08107 -1.35787,0.08107 -1.07413,0 -1.35787,-0.04053 -1.35787,-1.114669 v -5.046408 h 2.16854 c 0.32427,0 0.38507,-0.1216 0.38507,-0.385068 v -1.013335 c 0,-0.2432 -0.0608,-0.385067 -0.38507,-0.385067 h -2.16854 v -2.654938 c 0,-0.263467 -0.16213,-0.304 -0.40533,-0.2432 l -1.35787,0.364801 c -0.22293,0.0608 -0.38507,0.162133 -0.38507,0.445867 v 2.08747 h -1.0336 c -0.304,0 -0.38507,0.141867 -0.38507,0.405334 v 0.993068 c 0,0.263468 0.0811,0.385068 0.38507,0.385068 h 1.01334 v 5.086942 c 0,1.742936 0.1216,3.222405 2.4928,3.222405 0.62827,0 1.92534,-0.1216 2.63467,-0.425601 0.20267,-0.101333 0.304,-0.2432 0.26347,-0.506667 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path485" /><path
+     d="m 295.59109,62.01312 c 0.81067,0 1.01334,-0.506668 0.99307,-1.236269 -0.0608,-2.188804 -0.70933,-4.539741 -4.33707,-4.539741 -3.95201,0 -4.31681,3.242672 -4.31681,5.208542 0,2.634671 0.56747,5.107209 4.43841,5.107209 0.99306,0 2.47253,-0.202667 3.26293,-0.506668 0.36481,-0.162133 0.40534,-0.324267 0.34454,-0.628267 l -0.1216,-0.668802 c -0.0608,-0.385067 -0.1824,-0.385067 -0.5472,-0.344533 -0.77014,0.08107 -1.90507,0.222933 -2.63467,0.222933 -1.66187,0 -2.39147,-0.567467 -2.45227,-2.614404 z m -3.344,-3.952007 c 1.68213,0 2.0064,1.195736 2.0064,2.432004 h -4.01281 c 0.10134,-1.520002 0.50667,-2.432004 2.00641,-2.432004 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path487" /><path
+     d="m 301.02255,59.459516 c 0.70934,-0.304001 2.14827,-0.709335 3.28321,-0.932269 0.4256,-0.08107 0.40533,-0.202667 0.38507,-0.4864 l -0.14187,-1.357869 c -0.0405,-0.344534 -0.22293,-0.405334 -0.4864,-0.344534 -0.95254,0.1824 -2.39147,0.871468 -2.99947,1.438935 l -0.0405,-0.04053 v -0.891735 c 0,-0.2432 -0.10133,-0.405334 -0.40533,-0.405334 h -1.43894 c -0.28373,0 -0.38506,0.141867 -0.38506,0.405334 v 9.140282 c 0,0.263467 0.10133,0.385068 0.38506,0.385068 h 1.45921 c 0.28373,0 0.38506,-0.141867 0.38506,-0.385068 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path489" /><path
+     d="m 311.94631,63.776323 c -0.77013,0.445867 -2.0064,0.952535 -2.87787,0.952535 -0.95253,0 -1.25653,-0.283734 -1.25653,-1.175469 0,-1.337602 0.64853,-1.702403 1.66187,-1.702403 h 2.47253 z m 0.16214,1.459202 c 0.20266,0.952535 0.7904,1.236269 1.74293,1.236269 0.304,0 0.62827,-0.04053 0.95254,-0.101333 0.34453,-0.0608 0.4864,-0.202667 0.4864,-0.425601 v -0.851202 c 0,-0.222933 -0.0811,-0.283733 -0.38507,-0.304 -0.62827,-0.08107 -0.7296,-0.101334 -0.7296,-0.932268 v -3.911474 c 0,-2.26987 -0.4256,-3.708806 -3.93174,-3.708806 -0.95253,0 -2.5536,0.141867 -3.42507,0.445868 -0.44587,0.1824 -0.50667,0.344533 -0.46614,0.608001 l 0.1824,0.749868 c 0.0608,0.283733 0.16214,0.304 0.56747,0.2432 0.81067,-0.08107 2.08747,-0.1824 2.75627,-0.1824 1.66187,0 2.10774,0.4256 2.10774,1.641602 v 0.526935 h -2.59414 c -2.5536,0 -3.8304,1.013335 -3.81014,3.384539 0,1.702402 0.62827,2.877871 2.77654,2.877871 1.35787,0 2.71574,-0.547201 3.72907,-1.317335 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path491" /><path
+     d="m 324.16715,64.708591 c -0.0608,-0.344534 -0.20267,-0.344534 -0.52693,-0.304 -0.83094,0.101333 -2.00641,0.1824 -2.61441,0.1824 -1.62133,0 -2.1888,-0.749868 -2.1888,-3.283206 0,-2.249603 0.56747,-3.100805 2.20907,-3.100805 0.68907,0 1.6416,0.101334 2.47254,0.1824 0.38506,0.02027 0.5472,0.02027 0.62826,-0.283733 l 0.14187,-0.810668 c 0.0405,-0.263468 -0.0405,-0.445868 -0.304,-0.567468 -0.87147,-0.364801 -2.1888,-0.486401 -3.12107,-0.486401 -3.74934,0 -4.33708,2.594138 -4.33708,5.107209 0,2.756271 0.54721,5.188275 4.33708,5.188275 0.99307,0 2.3104,-0.141867 3.08054,-0.466134 0.3648,-0.162134 0.4256,-0.324267 0.34453,-0.628268 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path493" /><path
+     d="m 331.8685,64.586991 c -0.0405,-0.243201 -0.14187,-0.304001 -0.3648,-0.283734 -0.40534,0.04053 -1.07414,0.08107 -1.35787,0.08107 -1.07414,0 -1.35787,-0.04053 -1.35787,-1.114669 v -5.046408 h 2.16854 c 0.32426,0 0.38506,-0.1216 0.38506,-0.385068 v -1.013335 c 0,-0.2432 -0.0608,-0.385067 -0.38506,-0.385067 h -2.16854 v -2.654938 c 0,-0.263467 -0.16213,-0.304 -0.40533,-0.2432 l -1.35787,0.364801 c -0.22294,0.0608 -0.38507,0.162133 -0.38507,0.445867 v 2.08747 h -1.0336 c -0.304,0 -0.38507,0.141867 -0.38507,0.405334 v 0.993068 c 0,0.263468 0.0811,0.385068 0.38507,0.385068 h 1.01333 v 5.086942 c 0,1.742936 0.1216,3.222405 2.49281,3.222405 0.62826,0 1.92533,-0.1216 2.63467,-0.425601 0.20266,-0.101333 0.304,-0.2432 0.26346,-0.506667 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path495" /><path
+     d="m 335.7597,53.805106 c 0,-0.689068 -0.20267,-1.155202 -1.19573,-1.155202 -0.97281,0 -1.19574,0.506668 -1.19574,1.155202 0,0.587734 0.14187,1.175469 1.19574,1.175469 1.01333,0 1.19573,-0.547201 1.19573,-1.175469 z m -0.1216,3.019738 c 0,-0.222933 -0.0811,-0.385067 -0.3648,-0.385067 h -1.43893 c -0.28374,0 -0.40534,0.101334 -0.40534,0.385067 v 9.160549 c 0,0.263467 0.1216,0.385068 0.40534,0.385068 h 1.43893 c 0.28373,0 0.3648,-0.162134 0.3648,-0.385068 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path497" /><path
+     d="m 342.12345,63.877656 c -0.0608,-0.1824 -0.74987,-2.33067 -0.74987,-2.33067 l -1.62134,-4.742408 c -0.10133,-0.304001 -0.20267,-0.364801 -0.4864,-0.364801 h -1.60107 c -0.26347,0 -0.304,0.1824 -0.22293,0.405334 l 3.44534,9.120015 c 0.10133,0.283734 0.20266,0.405335 0.56746,0.405335 h 1.35787 c 0.32427,0 0.46614,-0.121601 0.56747,-0.425601 l 3.44534,-9.120016 c 0.10133,-0.2432 0.0608,-0.385067 -0.2432,-0.385067 h -1.54027 c -0.304,0 -0.38507,0.101334 -0.46613,0.324267 l -1.62134,4.701875 c 0,0 -0.74987,2.249604 -0.77013,2.411737 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path499" /><path
+     d="m 355.72241,62.01312 c 0.81067,0 1.01333,-0.506668 0.99307,-1.236269 -0.0608,-2.188804 -0.70934,-4.539741 -4.33708,-4.539741 -3.952,0 -4.3168,3.242672 -4.3168,5.208542 0,2.634671 0.56746,5.107209 4.4384,5.107209 0.99307,0 2.47254,-0.202667 3.26294,-0.506668 0.3648,-0.162133 0.40534,-0.324267 0.34454,-0.628267 l -0.1216,-0.668802 c -0.0608,-0.385067 -0.1824,-0.385067 -0.54721,-0.344533 -0.77013,0.08107 -1.90507,0.222933 -2.63467,0.222933 -1.66187,0 -2.39147,-0.567467 -2.45227,-2.614404 z m -3.34401,-3.952007 c 1.68214,0 2.00641,1.195736 2.00641,2.432004 H 350.372 c 0.10133,-1.520002 0.50667,-2.432004 2.0064,-2.432004 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path501" /><path
+     d="m 368.22695,59.277115 4.39788,6.708278 c 0.16213,0.263467 0.304,0.385068 0.6688,0.385068 h 1.1552 c 0.28373,0 0.38507,-0.121601 0.38507,-0.364801 V 53.338972 c 0,-0.283734 -0.10134,-0.405334 -0.38507,-0.405334 h -1.4592 c -0.304,0 -0.38507,0.141867 -0.38507,0.405334 v 8.816015 h -0.0608 l -2.9184,-4.560008 -2.55361,-3.972273 c -0.26347,-0.385068 -0.3648,-0.689068 -0.9728,-0.689068 h -1.1552 c -0.26347,0 -0.38507,0.141867 -0.38507,0.364801 v 12.686954 c 0,0.263467 0.1216,0.385068 0.40533,0.385068 h 1.45921 c 0.28373,0 0.38506,-0.141867 0.38506,-0.385068 v -8.876815 h 0.0608 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path503" /><path
+     d="m 385.98057,61.242985 c 0,-2.39147 -0.5472,-5.005875 -4.47894,-5.005875 -3.91147,0 -4.33708,3.100805 -4.33708,5.005875 0,2.310404 0.26347,5.289609 4.33708,5.289609 4.19521,0 4.47894,-2.979205 4.47894,-5.289609 z m -2.26987,0.141867 c 0,2.168537 -0.3648,3.202139 -2.20907,3.202139 -1.7024,0 -2.08747,-1.053869 -2.08747,-3.202139 0,-2.107737 0.38507,-3.202139 2.10774,-3.202139 1.84426,0 2.1888,1.053869 2.1888,3.202139 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path505" /><path
+     d="m 394.0062,64.586991 c -0.0405,-0.243201 -0.14187,-0.304001 -0.3648,-0.283734 -0.40533,0.04053 -1.07414,0.08107 -1.35787,0.08107 -1.07413,0 -1.35787,-0.04053 -1.35787,-1.114669 v -5.046408 h 2.16854 c 0.32427,0 0.38507,-0.1216 0.38507,-0.385068 v -1.013335 c 0,-0.2432 -0.0608,-0.385067 -0.38507,-0.385067 h -2.16854 v -2.654938 c 0,-0.263467 -0.16213,-0.304 -0.40533,-0.2432 l -1.35787,0.364801 c -0.22293,0.0608 -0.38507,0.162133 -0.38507,0.445867 v 2.08747 h -1.0336 c -0.304,0 -0.38507,0.141867 -0.38507,0.405334 v 0.993068 c 0,0.263468 0.0811,0.385068 0.38507,0.385068 h 1.01334 v 5.086942 c 0,1.742936 0.1216,3.222405 2.4928,3.222405 0.62827,0 1.92534,-0.1216 2.63467,-0.425601 0.20267,-0.101333 0.304,-0.2432 0.26347,-0.506667 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path507" /><path
+     d="m 402.74115,62.01312 c 0.81066,0 1.01333,-0.506668 0.99306,-1.236269 -0.0608,-2.188804 -0.70933,-4.539741 -4.33707,-4.539741 -3.95201,0 -4.31681,3.242672 -4.31681,5.208542 0,2.634671 0.56747,5.107209 4.43841,5.107209 0.99307,0 2.47254,-0.202667 3.26294,-0.506668 0.3648,-0.162133 0.40533,-0.324267 0.34453,-0.628267 l -0.1216,-0.668802 c -0.0608,-0.385067 -0.1824,-0.385067 -0.5472,-0.344533 -0.77013,0.08107 -1.90507,0.222933 -2.63467,0.222933 -1.66187,0 -2.39147,-0.567467 -2.45227,-2.614404 z m -3.34401,-3.952007 c 1.68214,0 2.0064,1.195736 2.0064,2.432004 h -4.0128 c 0.10133,-1.520002 0.50666,-2.432004 2.0064,-2.432004 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path509" /><path
+     d="m 414.29315,61.324052 c 0,-3.019738 -0.7296,-5.066675 -4.0736,-5.066675 -0.64854,0 -1.49974,0.1216 -2.51307,0.486401 v -4.256007 c 0,-0.222934 -0.0811,-0.385068 -0.40534,-0.385068 h -1.43893 c -0.30401,0 -0.40534,0.1216 -0.40534,0.385068 v 12.646421 c 0,0.344534 0.0811,0.709334 0.5472,0.891735 0.95254,0.344534 2.63467,0.526934 3.91148,0.526934 3.50613,0 4.3776,-1.945603 4.3776,-5.228809 z m -2.3104,0.1824 c 0,2.695472 -0.89174,3.060272 -2.22934,3.060272 -0.64853,0 -1.3984,-0.0608 -2.04693,-0.162133 v -5.857077 c 1.1552,-0.283734 1.62133,-0.344534 2.47253,-0.344534 1.31734,0.04053 1.80374,0.912002 1.80374,3.303472 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path511" /><path
+     d="m 424.87238,61.242985 c 0,-2.39147 -0.5472,-5.005875 -4.47894,-5.005875 -3.91148,0 -4.33708,3.100805 -4.33708,5.005875 0,2.310404 0.26347,5.289609 4.33708,5.289609 4.1952,0 4.47894,-2.979205 4.47894,-5.289609 z m -2.26987,0.141867 c 0,2.168537 -0.3648,3.202139 -2.20907,3.202139 -1.70241,0 -2.08747,-1.053869 -2.08747,-3.202139 0,-2.107737 0.38506,-3.202139 2.10773,-3.202139 1.84427,0 2.18881,1.053869 2.18881,3.202139 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path513" /><path
+     d="m 435.47188,61.242985 c 0,-2.39147 -0.5472,-5.005875 -4.47894,-5.005875 -3.91147,0 -4.33708,3.100805 -4.33708,5.005875 0,2.310404 0.26347,5.289609 4.33708,5.289609 4.19521,0 4.47894,-2.979205 4.47894,-5.289609 z m -2.26987,0.141867 c 0,2.168537 -0.3648,3.202139 -2.20907,3.202139 -1.7024,0 -2.08747,-1.053869 -2.08747,-3.202139 0,-2.107737 0.38507,-3.202139 2.10774,-3.202139 1.84426,0 2.1888,1.053869 2.1888,3.202139 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path515" /><path
+     d="m 439.70764,60.087783 v -7.620279 c 0,-0.243201 -0.0811,-0.405334 -0.38507,-0.405334 h -1.43894 c -0.28373,0 -0.38506,0.141867 -0.38506,0.405334 v 13.517889 c 0,0.263467 0.10133,0.385068 0.38506,0.385068 h 1.43894 c 0.304,0 0.38507,-0.162134 0.38507,-0.385068 v -2.979205 l 1.1552,-1.175468 2.59414,4.154673 c 0.14186,0.243201 0.28373,0.385068 0.70933,0.385068 h 1.56054 c 0.28373,0 0.40533,-0.222934 0.26347,-0.466135 l -3.64801,-5.715209 3.24267,-3.303472 c 0.22293,-0.243201 0.16213,-0.466135 -0.22293,-0.466135 h -1.62134 c -0.38507,0 -0.52693,0.141867 -0.7296,0.344534 l -1.68214,1.702403 -1.56053,1.641603 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path517" /><path
+     d="m 454.66446,63.391256 c 0,-2.411738 -1.74293,-2.796805 -3.66827,-3.080539 -1.23627,-0.202667 -1.72267,-0.304001 -1.72267,-1.094402 0,-0.770134 0.304,-1.134935 1.60107,-1.134935 0.74987,0 1.88481,0.1216 2.75627,0.222934 0.3648,0.04053 0.4864,0 0.5472,-0.283734 l 0.16214,-0.729601 c 0.0608,-0.304001 -0.0811,-0.466135 -0.4256,-0.608001 -0.8512,-0.324268 -2.24961,-0.445868 -3.08054,-0.445868 -2.26987,0 -3.81014,1.053869 -3.81014,3.060272 0,2.20907 1.74293,2.634671 3.72907,2.918405 1.2768,0.1824 1.62134,0.385067 1.62134,1.317335 0,0.810668 -0.52694,1.155202 -1.82401,1.155202 -0.68906,0 -1.98613,-0.101333 -2.87787,-0.2432 -0.32426,-0.04053 -0.46613,-0.02027 -0.52693,0.304 l -0.14187,0.668802 c -0.0608,0.324267 0.0203,0.506667 0.4256,0.668801 0.77014,0.304 2.12801,0.445867 3.14134,0.445867 2.08747,0 4.09387,-0.770135 4.09387,-3.141338 z"
+     style="font-weight:500;font-size:20.2667px;font-family:'PF Square Sans Pro';-inkscape-font-specification:'PF Square Sans Pro, Medium';stroke:none"
+     id="path519" /></g></svg>
\ No newline at end of file
diff --git a/common/deployments/files/settings/overrides.json b/common/deployments/files/settings/overrides.json
new file mode 100644
index 0000000000000000000000000000000000000000..199655fa629d48ae58b200247a323acdf02fa6fe
--- /dev/null
+++ b/common/deployments/files/settings/overrides.json
@@ -0,0 +1,111 @@
+{
+    "@jupyterlab/apputils-extension:notification": {
+        "checkForUpdates": "false",
+        "fetchNews": "false"
+    },
+    "@jupyterlab/application-extension:context-menu": {
+        "contextMenu": [
+            {
+                "command": "filebrowser:share-main",
+                "selector": ".jp-DirListing-item[data-isdir]",
+                "disabled": true
+            }
+        ]
+    },
+    "@jupyterlab/mainmenu-extension:plugin": {
+        "menus": [
+            {
+                "disabled": false,
+                "id": "jp-mainmenu-help",
+                "items": [
+                    {
+                        "type": "submenu",
+                        "submenu": {
+                            "id": "jp-mainmenu-help-eosc-links",
+                            "label": "Useful EOSC links",
+                            "items": [
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "EOSC EU website",
+                                        "url": "https://open-science-cloud.ec.europa.eu/"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Accessibility statement",
+                                        "url": "https://open-science-cloud.ec.europa.eu/accessibility-statement"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Helpdesk contact",
+                                        "url": "https://open-science-cloud.ec.europa.eu/support/helpdesk"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "FAQ",
+                                        "url": "https://open-science-cloud.ec.europa.eu/support/frequently-asked-questions"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "EOSC EU Node Acceptable Use Policy",
+                                        "url": "https://open-science-cloud.ec.europa.eu/index.php/system/files?file=2024-04/EOSC-EU-Node-Acceptable-Use-Policy.pdf"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Contact the European Commission",
+                                        "url": "https://commission.europa.eu/about-european-commission/contact_en"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Follow the European Commission on social media",
+                                        "url": "https://european-union.europa.eu/contact-eu/social-media-channels_en#/search?page=0&institutions=european_commission"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Resources for Partners",
+                                        "url": "https://commission.europa.eu/resources-partners_en"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Cookies policy",
+                                        "url": "https://commission.europa.eu/cookies-policy_en"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Privacy policy",
+                                        "url": "https://commission.europa.eu/privacy-policy-websites-managed-european-commission_en"
+                                    }
+                                },
+                                {
+                                    "command": "git:open-url",
+                                    "args": {
+                                        "text": "Legal notice",
+                                        "url": "https://commission.europa.eu/legal-notice_en"
+                                    }
+                                }
+                            ]
+                        }
+                    }
+                ]
+            }
+        ]
+    }
+}
\ No newline at end of file
diff --git a/common/deployments/hub-production.yaml b/common/deployments/hub-production.yaml
index fa3b1f19e94cb107184e5566815e4616f233eb86..8532c46c4560d3abbf5f867ca0eba0abf01711ce 100644
--- a/common/deployments/hub-production.yaml
+++ b/common/deployments/hub-production.yaml
@@ -113,6 +113,8 @@ singleuser:
     singleuser-webdav-wrapper.sh:
       mode: 0755
       mountPath: /usr/local/bin/jupyterhub-singleuser-webdav-wrapper
+      #NotebookNotary.db_file=':memory:' is used due to issues
+      #notebook notary file was causing in ~/.jupyter in ownCloud mount
       stringData: |-
         #! /bin/sh
         #
@@ -129,26 +131,41 @@ singleuser:
         exec jupyterhub-singleuser \
           --FileCheckpoints.checkpoint_dir='/home/jovyan/.notebookCheckpoints' \
           --NotebookNotary.db_file=':memory:' \
+          --LabApp.custom_css=True \
           "$@"
-    disable-labnews:
+
+    #Settings in overrides.json must be passed as stringData.
+    #Otherwise JupyterLab will not consider them
+
+    ##Disables news Jupyter notifications
+
+    ##Overrides default Help menu to include EOSC links
+    ##Setting is reusing 'git:open-url' command from Jupyter Git
+    ##extension to open link in browser tab, because 'help:open'
+    ##command opens tab inside Lab and EOSC website does not
+    ##allow itself to be open if embedded in another website
+
+    overrides-settings:
       mode: 0644
       mountPath: /opt/conda/share/jupyter/lab/settings/overrides.json
       stringData: |-
-        {
-          "@jupyterlab/apputils-extension:notification": {
-            "checkForUpdates": "false",
-            "fetchNews": "false"
-          },
-          "@jupyterlab/application-extension:context-menu": {
-            "contextMenu": [
-              {
-                "command": "filebrowser:share-main",
-                "selector": ".jp-DirListing-item[data-isdir]",
-                "disabled": true
-              }
-            ]
-          }
-        }
+        {% filter indent(10) %}
+        {{ overrides_file_content | to_json }}
+        {% endfilter %}
+
+
+    #Two files below are not included in /home/jovyan/.jupyter because 
+    #that is ownCloud mount path. They are included in jupyter_server 
+    #static path instead, because otherwise Jupyter is not considering
+    # custom CSS
+    eosc-css:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/custom.css
+      binaryData: "{{ css_file_content | b64encode }}"
+    eosc-logo:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/logo/eosc-ntb-logo.svg
+      binaryData: "{{ logo_file_content | b64encode }}"
 
 hub:
   services:
diff --git a/common/deployments/hub-staging.yaml b/common/deployments/hub-staging.yaml
index 5639a6cd3297fe3785239bf87c7a2ff1eb627387..d4afa33eb317c14fcd6b52a238f2bf2ffb231b49 100644
--- a/common/deployments/hub-staging.yaml
+++ b/common/deployments/hub-staging.yaml
@@ -113,6 +113,8 @@ singleuser:
     singleuser-webdav-wrapper.sh:
       mode: 0755
       mountPath: /usr/local/bin/jupyterhub-singleuser-webdav-wrapper
+      #NotebookNotary.db_file=':memory:' is used due to issues
+      #notebook notary file was causing in ~/.jupyter in ownCloud mount
       stringData: |-
         #! /bin/sh
         #
@@ -129,26 +131,41 @@ singleuser:
         exec jupyterhub-singleuser \
           --FileCheckpoints.checkpoint_dir='/home/jovyan/.notebookCheckpoints' \
           --NotebookNotary.db_file=':memory:' \
+          --LabApp.custom_css=True \
           "$@"
-    disable-labnews:
+
+    #Settings in overrides.json must be passed as stringData.
+    #Otherwise JupyterLab will not consider them
+
+    ##Disables news Jupyter notifications
+
+    ##Overrides default Help menu to include EOSC links
+    ##Setting is reusing 'git:open-url' command from Jupyter Git
+    ##extension to open link in browser tab, because 'help:open'
+    ##command opens tab inside Lab and EOSC website does not
+    ##allow itself to be open if embedded in another website
+
+    overrides-settings:
       mode: 0644
       mountPath: /opt/conda/share/jupyter/lab/settings/overrides.json
       stringData: |-
-        {
-          "@jupyterlab/apputils-extension:notification": {
-            "checkForUpdates": "false",
-            "fetchNews": "false"
-          },
-          "@jupyterlab/application-extension:context-menu": {
-            "contextMenu": [
-              {
-                "command": "filebrowser:share-main",
-                "selector": ".jp-DirListing-item[data-isdir]",
-                "disabled": true
-              }
-            ]
-          }
-        }
+        {% filter indent(10) %}
+        {{ overrides_file_content | to_json }}
+        {% endfilter %}
+
+
+    #Two files below are not included in /home/jovyan/.jupyter because 
+    #that is ownCloud mount path. They are included in jupyter_server 
+    #static path instead, because otherwise Jupyter is not considering
+    # custom CSS
+    eosc-css:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/custom.css
+      binaryData: "{{ css_file_content | b64encode }}"
+    eosc-logo:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/logo/eosc-ntb-logo.svg
+      binaryData: "{{ logo_file_content | b64encode }}"
 
 hub:
   services:
diff --git a/common/playbooks/notebooks.yaml b/common/playbooks/notebooks.yaml
index 6b068de2a1995dbd0e748acc23c83efce7246551..3256a95a849385131115941d682c3c840c680ef0 100644
--- a/common/playbooks/notebooks.yaml
+++ b/common/playbooks/notebooks.yaml
@@ -26,6 +26,9 @@
       vars:
         name: "{{ item | basename | splitext | first }}"
         secret: "{{ secrets[name] }}"
+        css_file_content: "{{ lookup('file', '../../common/deployments/files/css/custom.css') }}"
+        overrides_file_content: "{{ lookup('file', '../../common/deployments/files/settings/overrides.json') }}"
+        logo_file_content: "{{ lookup('file', '../../common/deployments/files/logo/eosc-ntb-logo.svg') }}"
       template:
         src: "{{ item }}"
         dest: "/tmp/{{ item | basename }}"
diff --git a/testing/deployments/hub.yaml b/testing/deployments/hub.yaml
index 9e410b7c32c3ff518ece3be22d85b1a21e3e50c8..0f78b7c69961979c7e945198ea1d4f1d9ffc253f 100644
--- a/testing/deployments/hub.yaml
+++ b/testing/deployments/hub.yaml
@@ -114,6 +114,8 @@ singleuser:
     singleuser-webdav-wrapper.sh:
       mode: 0755
       mountPath: /usr/local/bin/jupyterhub-singleuser-webdav-wrapper
+      #NotebookNotary.db_file=':memory:' is used due to issues
+      #notebook notary file was causing in ~/.jupyter in ownCloud mount
       stringData: |-
         #! /bin/sh
         #
@@ -130,27 +132,41 @@ singleuser:
         exec jupyterhub-singleuser \
           --FileCheckpoints.checkpoint_dir='/home/jovyan/.notebookCheckpoints' \
           --NotebookNotary.db_file=':memory:' \
+          --LabApp.custom_css=True \
           "$@"
-    disable-labnews:
+
+    #Settings in overrides.json must be passed as stringData.
+    #Otherwise JupyterLab will not consider them
+
+    ##Disables news Jupyter notifications
+
+    ##Overrides default Help menu to include EOSC links
+    ##Setting is reusing 'git:open-url' command from Jupyter Git
+    ##extension to open link in browser tab, because 'help:open'
+    ##command opens tab inside Lab and EOSC website does not
+    ##allow itself to be open if embedded in another website
+
+    overrides-settings:
       mode: 0644
       mountPath: /opt/conda/share/jupyter/lab/settings/overrides.json
       stringData: |-
-        {
-          "@jupyterlab/apputils-extension:notification": {
-            "checkForUpdates": "false",
-            "fetchNews": "false"
-          },
-          "@jupyterlab/application-extension:context-menu": {
-            "contextMenu": [
-              {
-                "command": "filebrowser:share-main",
-                "selector": ".jp-DirListing-item[data-isdir]",
-                "disabled": true
-              }
-            ]
-          }
-        }
+        {% filter indent(10) %}
+        {{ overrides_file_content | to_json }}
+        {% endfilter %}
 
+
+    #Two files below are not included in /home/jovyan/.jupyter because 
+    #that is ownCloud mount path. They are included in jupyter_server 
+    #static path instead, because otherwise Jupyter is not considering
+    # custom CSS
+    eosc-css:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/custom.css
+      binaryData: "{{ css_file_content | b64encode }}"
+    eosc-logo:
+      mode: 0644
+      mountPath: /opt/conda/lib/python3.11/site-packages/jupyter_server/static/custom/logo/eosc-ntb-logo.svg
+      binaryData: "{{ logo_file_content | b64encode }}"
 hub:
   services:
     status: