+We can't find the page you are looking for. Try using the Search or return to homepage .
+{% endblock %}
diff --git a/_resourcepdf/overrides/main.html b/_resourcepdf/overrides/main.html
new file mode 100644
index 00000000..63e6e569
--- /dev/null
+++ b/_resourcepdf/overrides/main.html
@@ -0,0 +1,73 @@
+{# MkDocs template for builds with Material Theme to customize docs layout
+by adding marketing-requested elements
+#}
+
+{# Import the theme's layout. #}
+{% extends "base.html" %}
+
+
+
+ {% block site_nav %}
+ {% if nav %}
+ {% if page.meta and page.meta.hide %}
+ {% set hidden = "hidden" if "navigation" in page.meta.hide %}
+ {% endif %}
+
+
+
+ {% include "partials/nav.html" %}
+
+
+
+
+
+ {% endif %}
+ {% if "toc.integrate" not in features %}
+ {% if page.meta and page.meta.hide %}
+ {% set hidden = "hidden" if "toc" in page.meta.hide %}
+ {% endif %}
+
+
+
+ {% include "partials/toc.html" %}
+
+
+ {% include "partials/banner.html" %}
+
+
+
+ {% endif %}
+
+ {% endblock %}
+
+
+ {% block content%}
+
+ {{ super() }}
+
+{# The script to expand all collapsible admonitions in PDF #}
+
+
+
+ {% endblock %}
diff --git a/_resourcepdf/overrides/partials/banner.html b/_resourcepdf/overrides/partials/banner.html
new file mode 100644
index 00000000..c4842175
--- /dev/null
+++ b/_resourcepdf/overrides/partials/banner.html
@@ -0,0 +1,9 @@
+
+
+
For help, click the link below to get free database assistance or contact our experts for personalized support.
\ No newline at end of file
diff --git a/_resourcepdf/overrides/partials/copyright.html b/_resourcepdf/overrides/partials/copyright.html
new file mode 100644
index 00000000..d1ee943d
--- /dev/null
+++ b/_resourcepdf/overrides/partials/copyright.html
@@ -0,0 +1,15 @@
+{#-
+ This file was automatically generated - do not edit
+-#}
+
+ {% if not config.extra.generator == false %}
+ Made with
+
+ Material for MkDocs
+
+ {% endif %}
+
\ No newline at end of file
diff --git a/_resourcepdf/overrides/partials/header.html b/_resourcepdf/overrides/partials/header.html
new file mode 100644
index 00000000..4747da20
--- /dev/null
+++ b/_resourcepdf/overrides/partials/header.html
@@ -0,0 +1,118 @@
+
+{% set class = "md-header" %}
+{% if "navigation.tabs.sticky" in features %}
+ {% set class = class ~ " md-header--shadow md-header--lifted" %}
+{% elif "navigation.tabs" not in features %}
+ {% set class = class ~ " md-header--shadow" %}
+{% endif %}
+
+
+
+
+
+
+
+
+
+
+ {% if "navigation.tabs.sticky" in features %}
+ {% if "navigation.tabs" in features %}
+ {% include "partials/tabs.html" %}
+ {% endif %}
+ {% endif %}
+
diff --git a/_resourcepdf/overrides/partials/source-file.html b/_resourcepdf/overrides/partials/source-file.html
new file mode 100644
index 00000000..ae5bd084
--- /dev/null
+++ b/_resourcepdf/overrides/partials/source-file.html
@@ -0,0 +1,20 @@
+{#-
+ This file was automatically generated - do not edit
+-#}
+
+
+{% endif %}
+{% endmacro %}
+
+
+{#
+Used by toctree()
+
+MkDocs doesn't allow a section link. Example, in mkdocs.yaml:
+
+nav:
+ - SECTION TITLE:
+ - intro: dir/index.md
+ - another: dir/section.md
+
+The toctree will render without a link for 'SECTION TITLE',
+as it doesn't have a file. 'SECTION TITLE' is just a cosmetic
+label.
+
+To match Sphinx's behaviour, this macro detects special
+section labels as 'TITLE=path' (splitting on the equals sign).
+The new nav element would then be:
+
+nav:
+ - SECTION TITLE=/dir/:
+ - intro: dir/index.md
+ - another: dir/section.md
+
+This macro will put a link to /dir/ for the toc entry
+'SECTION TITLE'. If there is not an index.md file in
+the subdir, link to a file with its .html extension.
+
+nav:
+ - SECTION TITLE=/dir/myindex.html:
+ - intro: dir/index.md
+ - another: dir/section.md
+
+#}
+{%- macro navi(item, class, close) %}
+