8000
diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md
new file mode 100644
index 00000000000..9a4e5a2cedc
--- /dev/null
+++ b/.github/CODE_OF_CONDUCT.md
@@ -0,0 +1,12 @@
+Code of Conduct
+===============
+
+This project follows a [Code of Conduct][code_of_conduct] in order to ensure an
+open and welcoming environment. Please read the full text for understanding the
+accepted and unaccepted behavior.
+
+Please read also the [reporting guidelines][guidelines], in case you encountered
+or witnessed any misbehavior.
+
+[code_of_conduct]: https://symfony.com/doc/current/contributing/code_of_conduct/code_of_conduct.html
+[guidelines]: https://symfony.com/doc/current/contributing/code_of_conduct/reporting_guidelines.html
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
new file mode 100644
index 00000000000..acb0770920e
--- /dev/null
+++ b/.github/CONTRIBUTING.md
@@ -0,0 +1,5 @@
+Contributing
+------------
+
+We love contributors! For more information on how you can contribute to the
+Symfony documentation, please read [Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html).
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 00000000000..bc7d6a94182
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,9 @@
+
diff --git a/.gitignore b/.gitignore
index 805ea28a8f0..a5eb433eea3 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
-/_build
-/_exts
+/_build/doctrees
+/_build/html
+*.pyc
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 486727b665d..00000000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "sphinx-php"]
- path = _exts
- url = http://github.com/fabpot/sphinx-php
diff --git a/.platform.app.yaml b/.platform.app.yaml
new file mode 100644
index 00000000000..66f6a036b73
--- /dev/null
+++ b/.platform.app.yaml
@@ -0,0 +1,61 @@
+# This file describes an application. You can have multiple applications
+# in the same project.
+
+# The name of this app. Must be unique within a project.
+name: symfonydocs
+
+# The toolstack used to build the application.
+type: "php"
+
+build:
+ flavor: "composer"
+
+# The configuration of app when it is exposed to the web.
+web:
+ # The public directory of the app, relative to its root.
+ document_root: "/_build/html"
+ index_files:
+ - index.html
+ whitelist:
+ - \.html$
+ - \.txt$
+
+ # CSS and Javascript.
+ - \.css$
+ - \.js$
+ - \.hbs$
+
+ # image/* types.
+ - \.gif$
+ - \.png$
+ - \.ico$
+ - \.svgz?$
+
+ # fonts types.
+ - \.ttf$
+ - \.eot$
+ - \.woff$
+ - \.otf$
+
+ # robots.txt.
+ - /robots\.txt$
+
+# The size of the persistent disk of the application (in MB).
+disk: 512
+
+# Build time dependencies.
+dependencies:
+ python:
+ virtualenv: 15.1.0
+
+# The hooks that will be performed when the package is deployed.
+hooks:
+ build: |
+ virtualenv .virtualenv
+ . .virtualenv/bin/activate
+ # Platform.sh currently sets PIP_USER=1.
+ export PIP_USER=
+ pip install pip==9.0.1 wheel==0.29.0
+ pip install -r _build/.requirements.txt
+ find .virtualenv -type f -name "*.rst" -delete
+ make -C _build html
diff --git a/.platform/routes.yaml b/.platform/routes.yaml
new file mode 100644
index 00000000000..f99889ccec3
--- /dev/null
+++ b/.platform/routes.yaml
@@ -0,0 +1,16 @@
+http://www.{default}/:
+ to: http://{default}/
+ type: redirect
+http://{default}/:
+ cache:
+ cookies:
+ - '*'
+ default_ttl: 0
+ enabled: true
+ headers:
+ - Accept
+ - Accept-Language
+ ssi:
+ enabled: false
+ type: upstream
+ upstream: symfonydocs:php
diff --git a/.platform/services.yaml b/.platform/services.yaml
new file mode 100644
index 00000000000..ec9369f2b00
--- /dev/null
+++ b/.platform/services.yaml
@@ -0,0 +1 @@
+# Keeping this file empty to not deploy unused services.
diff --git a/.travis.yml b/.travis.yml
index 73bca138115..cccb01eef30 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,16 +1,15 @@
language: python
-python:
- - "2.7"
+python: 2.7
sudo: false
+cache:
+ directories: [$HOME/.cache/pip]
-install:
- - "pip install -q -r requirements.txt --use-mirrors"
+install: pip install -r _build/.requirements.txt
-script: sphinx-build -nW -b html -d _build/doctrees . _build/html
+script: make -C _build SPHINXOPTS=-nW html
branches:
except:
- github-comments
-
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
deleted file mode 100644
index 278f7c2c39c..00000000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,7 +0,0 @@
-Contributing
-------------
-
-We love contributors! For more information on how you can contribute to the
-Symfony documentation, please read [Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html)
-and notice the [Pull Request Format](http://symfony.com/doc/current/contributing/documentation/overview.html#pull-request-format)
-that helps us merge your pull requests faster!
diff --git a/README.markdown b/README.markdown
index 9e17f5d4b7f..8d01c3cdcb7 100644
--- a/README.markdown
+++ b/README.markdown
@@ -1,16 +1,21 @@
Symfony Documentation
=====================
-This documentation is rendered online at http://symfony.com/doc/current/
+This documentation is rendered online at https://symfony.com/doc/current/
Contributing
------------
>**Note**
->Unless you're documenting a feature that was introduced *after* Symfony 2.3
->(e.g. in Symfony 2.4), all pull requests must be based off of the **2.3** branch,
+>Unless you're documenting a feature that was introduced *after* Symfony 2.7
+>(e.g. in Symfony 2.8), all pull requests must be based off of the **2.7** branch,
>**not** the master or older branches.
We love contributors! For more information on how you can contribute to the
Symfony documentation, please read
-[Contributing to the Documentation](http://symfony.com/doc/current/contributing/documentation/overview.html)
+[Contributing to the Documentation](https://symfony.com/doc/current/contributing/documentation/overview.html)
+
+Platform.sh
+-----------
+
+Pull requests are automatically built by [Platform.sh](https://platform.sh).
diff --git a/_build/.requirements.txt b/_build/.requirements.txt
new file mode 100644
index 00000000000..4a52e3fcb7e
--- /dev/null
+++ b/_build/.requirements.txt
@@ -0,0 +1,13 @@
+alabaster==0.7.10
+Babel==2.4.0
+docutils==0.13.1
+imagesize==0.7.1
+Jinja2==2.9.6
+MarkupSafe==1.0
+Pygments==2.2.0
+pytz==2017.2
+requests==2.12.5
+six==1.10.0
+snowballstemmer==1.2.1
+Sphinx==1.3.6
+git+https://github.com/fabpot/sphinx-php.git@7312eccce9465640752e51373a480da700e02345#egg_name=sphinx-php
diff --git a/Makefile b/_build/Makefile
similarity index 97%
rename from Makefile
rename to _build/Makefile
index a37807af545..25b660056fe 100644
--- a/Makefile
+++ b/_build/Makefile
@@ -5,12 +5,12 @@
SPHINXOPTS =
SPHINXBUILD = sphinx-build
PAPER =
-BUILDDIR = _build
+BUILDDIR = .
# Internal variables.
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
+ALLSPHINXOPTS = -c $(BUILDDIR) -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) ../
# the i18n builder cannot share the environment and doctrees with the others
I18NSPHINXOPTS = $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
diff --git a/_build/_theme/_exts/symfonycom/__init__.py b/_build/_theme/_exts/symfonycom/__init__.py
new file mode 100644
index 00000000000..e69de29bb2d
diff --git a/_build/_theme/_exts/symfonycom/sphinx/__init__.py b/_build/_theme/_exts/symfonycom/sphinx/__init__.py
new file mode 100644
index 00000000000..1c08bcc11c8
--- /dev/null
+++ b/_build/_theme/_exts/symfonycom/sphinx/__init__.py
@@ -0,0 +1,167 @@
+from sphinx.highlighting import lexers, PygmentsBridge
+from pygments.style import Style
+from pygments.formatters import HtmlFormatter
+from pygments.token import Keyword, Name, Comment, String, Error, \
+ Number, Operator, Generic, Whitespace, Punctuation, Other, Literal
+
+from sphinx.writers.html import HTMLTranslator
+from docutils import nodes
+from sphinx.locale import admonitionlabels, lazy_gettext
+
+customadmonitionlabels = admonitionlabels
+l_ = lazy_gettext
+customadmonitionlabels['best-practice'] = l_('Best Practice')
+
+def _getType(path):
+ return path[:path.find('/')]
+
+def _isIndex(path):
+ return 'index' in path
+
+class SensioHTMLTranslator(HTMLTranslator):
+ def __init__(self, builder, *args, **kwds):
+ HTMLTranslator.__init__(self, builder, *args, **kwds)
+ builder.templates.environment.filters['get_type'] = _getType
+ builder.templates.environment.tests['index'] = _isIndex
+ self.highlightlinenothreshold = 0
+
+ def visit_literal(self, node):
+ self.body.append(self.starttag(node, 'tt', '', CLASS='docutils literal'))
+ self.body.append('')
+
+ def depart_literal(self, node):
+ self.body.append('
')
+ self.body.append('')
+
+ def visit_admonition(self, node, name=''):
+ self.body.append(self.starttag(node, 'div', CLASS=('admonition-wrapper')))
+ self.body.append('
')
+ if name and name != 'seealso':
+ node.insert(0, nodes.title(name, customadmonitionlabels[name]))
+ self.set_first_last(node)
+
+ def depart_admonition(self, node=None):
+ self.body.append('
\n')
+
+ def visit_sidebar(self, node):
+ self.body.append(self.starttag(node, 'div', CLASS=('admonition-wrapper')))
+ self.body.append('')
+ self.body.append('\n')
+ self.in_sidebar = None
+
+ # overriden to add a new highlight div around each block
+ def visit_literal_block(self, node):
+ if node.rawsource != node.astext():
+ # most probably a parsed-literal block -- don't highlight
+ return BaseTranslator.visit_literal_block(self, node)
+ lang = self.highlightlang
+ linenos = node.rawsource.count('\n') >= \
+ self.highlightlinenothreshold - 1
+ highlight_args = node.get('highlight_args', {})
+ if node.has_key('language'):
+ # code-block directives
+ lang = node['language']
+ highlight_args['force'] = True
+ if node.has_key('linenos'):
+ linenos = node['linenos']
+ def warner(msg):
+ self.builder.warn(msg, (self.builder.current_docname, node.line))
+ highlighted = self.highlighter.highlight_block(
+ node.rawsource, lang, warn=warner, linenos=linenos,
+ **highlight_args)
+ starttag = self.starttag(node, 'div', suffix='',
+ CLASS='highlight-%s' % lang)
+ self.body.append('
+
+ {%- if render_sidebar %}
+
+ {%- endif %}
+
+
+
+ - Home
+ - Documentation
+ {% for parent in parents %}
+ - {{ parent.title }}
+ {% endfor %}
+ - {{ title }}
+
+
+
{{ title }}
+
+
+ {% block body %}{% endblock %}
+
+
+ {% if prev and next %}
+
+ {% endif %}
+
+
+
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License.
+
+
+
+
+{% endblock %}
+
+{# relbar1 is at the top and should not render the quick navigation #}
+{% block relbar1 %}{% endblock %}
+{% block relbar2 %}{% endblock %}
+
+{# remove "generated by sphinx" footer #}
+{% block footer %}{% endblock %}
diff --git a/_build/_theme/_templates/localtoc.html b/_build/_theme/_templates/localtoc.html
new file mode 100644
index 00000000000..0ffea6e1ecd
--- /dev/null
+++ b/_build/_theme/_templates/localtoc.html
@@ -0,0 +1,6 @@
+
+
{{ _('Table Of Contents') }}
+
+ {{ toc }}
+
+
diff --git a/_build/_theme/assets/css/app.css b/_build/_theme/assets/css/app.css
new file mode 100644
index 00000000000..81bc0f8e391
--- /dev/null
+++ b/_build/_theme/assets/css/app.css
@@ -0,0 +1,3 @@
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0}td,th{padding:0}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}
+
+/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{background:transparent!important;color:#000!important;box-shadow:none!important;text-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}*,:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;line-height:1.42857;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.initialism,.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857}dt{font-weight:700}dd{margin-left:0}.dl-horizontal dd:after,.dl-horizontal dd:before{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"\2014 \A0"}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:"\A0 \2014"}address{margin-bottom:20px;font-style:normal;line-height:1.42857}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:after,.container:before{content:" ";display:table}.container:after{clear:both}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:after,.container-fluid:before{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:after,.row:before{content:" ";display:table}.row:after{clear:both}.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{l
8000
eft:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;float:none;display:table-column}table td[class*=col-],table th[class*=col-]{position:static;float:none;display:table-cell}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{margin:0;min-width:0}fieldset,legend{padding:0;border:0}legend{display:block;width:100%;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{padding-top:7px}.form-control,output{display:block;font-size:14px;line-height:1.42857;color:#555}.form-control{width:100%;height:34px;padding:6px 12px;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus{border-color:#66afe9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox-inline input[type=checkbox],.checkbox input[type=checkbox],.radio-inline input[type=radio],.radio input[type=radio]{position:absolute;margin-left:-20px;margin-top:4px\9}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:400;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}.checkbox-inline.disabled,.checkbox.disabled label,.radio-inline.disabled,.radio.disabled label,fieldset[disabled] .checkbox-inline,fieldset[disabled] .checkbox label,fieldset[disabled] .radio-inline,fieldset[disabled] .radio label,fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:34px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.33333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning.checkbox-inline label,.has-warning.checkbox label,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.radio-inline label,.has-warning.radio label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height,visibility;transition-property:height,visibility;-webkit-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#337ab7}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\A0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#777}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.modal,.modal-open{overflow:hidden}.modal{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translateY(-25%);-ms-transform:translateY(-25%);-o-transform:translateY(-25%);transform:translateY(-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0);-ms-transform:translate(0);-o-transform:translate(0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header:after,.modal-header:before{content:" ";display:table}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:after,.modal-footer:before{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}.inheritParentStyles,h1 code,h2 code,h3 code,h4 code,h5 code,h6 code{background:inherit;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}body{color:#18171b;font-family:Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Verdana,sans-serif;font-size:14px;line-height:1.45}blockquote{font-size:1em;font-style:italic;margin:0 0 15px;padding:5px 15px}.xs-separator{border:0;height:0;margin:30px 0 0;padding:0}.block{clear:both;display:block}.nowrap{white-space:nowrap}.link{color:#006dcb!important;text-decoration:none}.link:hover{color:#0088fe!important;text-decoration:underline}.text-hero{font-size:32px;text-align:center}.text-bold{font-weight:700!important}.text-small{font-size:12px}.text-large{font-size:16px}.text-accent{color:#4d8400;font-style:italic}.text-muted{color:#767676}.text-muted a{color:inherit}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.font-system{font-family:-apple-system,BlinkMacSystem
8000
Font,Segoe UI,Roboto,Helvetica,Arial,sans-serif!important}.font-base{font-family:Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Verdana,sans-serif!important}.disabled,.disabled a{color:#d9d9d9}.disabled a{text-decoration:underline}.m-b-5{margin-bottom:5px!important}.m-b-15{margin-bottom:15px!important}.m-b-30{margin-bottom:30px!important}.m-t-5{margin-top:5px!important}.m-t-15{margin-top:15px!important}.m-t-30{margin-top:30px!important}.m-r-5{margin-right:5px!important}.m-r-15{margin-right:15px!important}.m-b-0{margin-bottom:0!important}.m-t-0{margin-top:0!important}.p-15{padding:15px!important}.columns--two{column-count:2;column-gap:35px}.columns--three{column-count:3;column-gap:35px}a:active,a:focus,a:hover{outline:0}a{color:#006dcb;text-decoration:none}a:hover{color:#0088fe;text-decoration:underline}a.read-more{font-weight:700}a.read-more:after{content:"\A0\2192"}.rss a{color:#ff854f;font-weight:700}dl,ol,ul{margin:0 0 15px 30px;padding:0}dl dl,ol ol,ol ul,ul ol,ul ul{margin-bottom:15px;margin-top:7px}li+li{margin-top:8px}dl{margin-left:0}dt{font-weight:400;margin-bottom:5px}dd{margin-left:15px}dd+dt{margin-top:15px}.list--unstyled{list-style-type:none;margin-left:0;padding:0}.list--numbered{list-style-type:decimal}.list--borderless li{border:none!important}.list--border li+li{border-top:1px solid #f5f5f5;padding-top:8px}.h1,h1{font-size:24px}.h2,h2{font-size:21px}.h3,.h4,h3,h4{font-size:18px}.h5,.h6,h5,h6{font-size:14px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Georgia,Times New Roman,Times,serif;font-weight:400;line-height:1.2;margin-top:0;margin-bottom:.5em}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:#18171b}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{color:#006dcb;text-decoration:none}.headerlink{color:#d9d9d9;font-size:80%;font-weight:400;padding-left:5px}.headerlink:hover,h1:hover .headerlink,h2:hover .headerlink,h3:hover .headerlink,h4:hover .headerlink,h5:hover .headerlink,h6:hover .headerlink{color:#006dcb}p{margin:0 0 15px}p.lead{color:#63606b;font-family:Georgia,Times New Roman,Times,serif;font-style:italic;font-size:18px;margin:30px auto;text-align:center;width:94%}img{max-width:100%}.rounded{border-radius:5px}.screenshot{border:1px solid #d9d9d9;box-shadow:1px 1px 5px #c0bec3;display:block;margin:15px auto;max-height:1024px;max-width:90%;padding:5px}.avatar{border:1px solid #f5f5f5;border-radius:50%;height:24px;margin:0;width:24px}.avatar--large{height:40px;width:40px}.avatar--extra-large{height:100px;width:100px}.with-browser{border:solid #d9d9d9;border-width:35px 3px 3px;border-radius:3px 3px 0 0;margin-bottom:15px;position:relative}.with-browser:before{background-color:#f44;border-radius:50%;box-shadow:0 0 0 2px #f44,1.5em 0 0 2px #fb5,3em 0 0 2px #9b3;height:.5em;left:1em;opacity:.4;top:-1.5em;width:.5em}.with-browser:after,.with-browser:before{content:"";display:block;position:absolute}.with-browser:after{background-color:#fafafa;border-radius:2px;height:20px;right:3px;top:-27px;width:calc(100% - 6em)}.with-browser img{border:1px solid #ccc;border-radius:0;margin:0!important}.post__content img,main .section img{margin-bottom:15px}table{border:1px double #c0bec3;border-collapse:collapse;margin:1.5em 0;max-width:100%;width:100%}.table--separated{border-collapse:separate;border-spacing:15px 0;border:0}.table--center td,.table--center th{text-align:center;vertical-align:middle}thead{border-bottom:1px double #c0bec3}td,th{border:1px solid #d9d9d9;padding:.5em;text-align:left;vertical-align:middle}th{background:#f5f5f5}.modal{z-index:10099}label.required:after{content:"*";color:red}.form-control{color:#18171b}.form-control:focus{border-color:#999;box-shadow:0 0 0 4px #eee;outline:0}.has-error .form-control:focus{border-color:#a94442;box-shadow:0 0 0 4px #f2dede}.textarea--small{min-height:65px}.textarea--medium{min-height:150px}.textarea--large{min-height:350px}.textarea--code{font-family:Droid Sans Mono,Consolas,Menlo,Ubuntu Mono,monospace;font-size:13px}select+select{margin-left:5px}.pre select,pre select{color:#18171b}.form--error{background:#f2dede;color:#a94442;margin:1em 0;padding:10px 15px}.form--help{color:#999;display:block;margin:5px 0 10px}.help-block ul{list-style:none;margin:5px 0}.btn,.btn:focus,.btn:hover{background:#4d8400;border:0;box-shadow:0 3px #2f5100;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:14px;outline:none;padding:6px 12px;position:relative;text-align:center;text-decoration:none;touch-action:manipulation;vertical-align:middle;white-space:nowrap}.btn:hover{opacity:.9}.btn:active{box-shadow:0 1px #2f5100;top:2px}.btn+.btn{margin-left:1em}.btn--danger,.btn--danger:focus,.btn--danger:hover{background-color:#c00;box-shadow:0 3px #900}.btn--danger:active{box-shadow:0 1px #900}.btn--large,.btn--large:focus,.btn--large:hover{font-size:16px}.btn--copy,.btn--copy:focus,.btn--copy:hover,.pre .btn--copy,pre .btn--copy{background-image:-webkit-linear-gradient(top,#eee,#ccc);background-image:-o-linear-gradient(top,#eee 0,#ccc 100%);background-image:linear-gradient(180deg,#eee 0,#ccc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFCCCCCC",GradientType=0);box-shadow:0 3px #777;color:#18171b;padding:2px 8px;text-transform:uppercase}.btn--copy:focus i,.btn--copy:hover i,.btn--copy i,.pre .btn--copy i,pre .btn--copy i{display:inline-block;margin-bottom:4px;vertical-align:top}.btn--copy:focus span,.btn--copy:hover span,.btn--copy span,.pre .btn--copy span,pre .btn--copy span{color:#18171b;display:inline-block;padding-top:5px}.btn--copy:active{box-shadow:0 1px #777}form .btn{position:relative;top:-2px}form .btn:active{top:0}.badge--outline{background:transparent;border:2px solid #d9d9d9;border-radius:4px;color:#63606b}code,pre{border:0;font-family:Droid Sans Mono,Consolas,Menlo,Ubuntu Mono,monospace;font-size:13px;font-variant-ligatures:no-common-ligatures;text-rendering:optimizeSpeed}code{background:#f5f5f5;border-radius:3px;color:#18171b;padding:2px 3px;white-space:pre-wrap;word-wrap:break-word;word-break:break-word}.pre,pre{background-color:#18171b;color:#fff;line-height:1.6;margin:15px 0;padding:15px}.pre--copy{position:relative}.pre--copy .btn--copy{position:absolute;top:8px;right:5px}.pre--copy .btn--copy:active{top:10px}.literal-block{margin:0 0 15px}.literal-block pre{margin:0}.highlighttable{border:0;margin:0;table-layout:fixed}.highlighttable td.code{border:0;padding:0}.highlighttable td.linenos{background-color:#18171b;border:0;border-right:1px solid #222;padding:15px 5px;text-align:right;vertical-align:top;width:35px}.highlighttable td.linenos pre{color:#63606b;padding:0}.bp{color:#3465a4}.c,.c1,.cm,.cs{color:#b729d9;font-style:italic}.cp{color:#a0a0a0}.err{color:#a40000;border:1px solid #ef2929}.g{color:#fff}.gd{color:#a40000}.ge{color:#fff;font-style:italic}.gh{color:navy}.gi{color:#00a000}.go{color:gray}.gp{color:#745334}.gr{color:#ef2929}.gs{color:#fff}.gs,.gt{font-weight:700}.gt{color:#a40000}.gu{color:purple;font-weight:700}.hll{background-color:#ff3}.il{color:#1299da}.k,.kc,.kd,.kn,.kp,.kr,.kt{color:#ff8400}.l,.ld{color:#fff}.m,.mf,.mh,.mi,.mo{color:#1299da}.n,.na,.nb,.nc,.nf,.nn,.no,.nv,.nx{color:#fff}.nd{color:gray}.ne{color:#ef2929}.nl{color:#ff8400}.nt{color:#ccc}.ni,.o,.ow{color:#e67700}.p{color:#939393}.py{color:#fff}.s,.s1,.s2,.sb,.sc,.se,.sh,.si,.sr,.ss,.sx{color:#56db3a}.sd{color:#b729d9;font-style:italic}.vc,.vg,.vi{color:#fff}.w{color:#f8f8f8;text-decoration:underline}.x{color:#fff}.p-Indicator{color:#ff8400}.highlight-rst .gh{color:#fff}.highlight-php .highlight .err{border:0;color:inherit}.highlight-diff .highlight>pre{padding-left:1.5em}.highlight-diff .gi{background:rgba(51,102,102,.4);color:#8c8;margin-left:-15px;padding:2px 0 2px 1px}.highlight-diff .gd{background:rgba(102,51,51,.6);color:#c88;margin-left:-15px;padding:2px 0 2px 1px}.highlight-bash,.highlight-terminal{border:solid #555;border-width:30px 3px 4px 4px;border-radius:3px 3px 0 0;position:relative}.highlight-bash:before,.highlight-terminal:before{background-color:#777;border-radius:50%;box-shadow:0 0 0 2px #777,1.5em 0 0 2px #777,3em 0 0 2px #777;content:"";display:block;height:.5em;left:1em;position:absolute;top:-1.25em;width:.5em}.highlight-bash td.linenos,.highlight-terminal td.linenos{display:none}.highlight-bash .highlighttable,.highlight-terminal .highlighttable{outline:1px solid #555}.highlight-bash .pre,.highlight-bash pre,.highlight-terminal .pre,.highlight-terminal pre{margin:0}.highlight-bash span,.highlight-terminal span{border:none;color:#fff}.highlight-bash .c,.highlight-bash .c1,.highlight-bash .cm,.highlight-bash .cs,.highlight-terminal .c,.highlight-terminal .c1,.highlight-terminal .cm,.highlight-terminal .cs{color:#b729d9;font-style:italic}.highlight-bash .s,.highlight-bash .s1,.highlight-bash .s2,.highlight-terminal .s,.highlight-terminal .s1,.highlight-terminal .s2{color:#56db3a}.highlight-bash .gp,.highlight-terminal .gp{color:gray}.highlight-terminal .c1,.highlight-terminal .gp{display:inline-block;position:relative;visibility:hidden}.highlight-terminal .c1:before,.highlight-terminal .gp:before{content:attr(data-content);position:absolute;visibility:visible}.container{max-width:970px;width:100%}section{margin-bottom:45px}p+section{margin-top:45px}main{padding-bottom:30px}aside{background:#f5f5f5;margin-bottom:15px;padding:15px}aside h3{font-size:18px}header{z-index:9999}header a:focus,header a:hover{text-decoration:none}header section{margin-bottom:0}.header__bottom .container,.header__top .container{display:flex;align-content:space-between;align-items:center}.header__top{background:#222;flex:1;padding:6px 0}.header__logo{flex:1}.header__logo img{height:25px;filter:invert(100%)}.header__logo--responsive img{height:30px}.header__bottom{transition:all .3s ease 0s}.header__bottom .header__logo--responsive{display:none}.header__bottom.affix{box-shadow:0 0 20px 0 rgba(46,40,64,.5);width:100%;top:36px;z-index:9999}.header__bottom.affix .header__logo--responsive{display:block}.header__nav{background:#53585f;display:none;flex:1;position:absolute;width:100%;margin-left:-15px;top:84px;z-index:9999}.header__nav ul{display:flex;flex-direction:column;align-content:space-between;margin:0}.header__nav li{list-style-type:none;flex:1 1 auto;margin:0;padding-left:15px}.header__nav li:hover{background-color:rgba(0,0,0,.1)}.header__nav li.selected,.header__nav li.selected:hover{background:rgba(0,0,0,.3)}.header__nav a{color:#d9d9d9;display:block;height:40px;line-height:40px}.header__nav li.selected a{color:#4d8400}.header__download a{background:#7aba20;color:#fff;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:13px;font-weight:700;line-height:40px;text-align:center;text-transform:uppercase;transition:opacity .2s ease-in-out 0s}.header__download a:hover{opacity:.8}.header__toggle__menu i svg{padding-top:4px}.header__toggle__menu,.header__toggle__menu:focus,.header__toggle__menu:hover{background:transparent;border:none;outline:none;text-decoration:none;transform:rotate(0deg);transition:all .2s ease 0s}.header__toggle__menu.open{display:inline-block;transform:rotate(-90deg)}footer{background-color:#18171b;color:#c0bec3}footer section{margin-bottom:0;padding:45px 0 0}footer h6,footer h6 a{color:#d9d9d9;font-family:Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Verdana,sans-serif;font-weight:700;font-size:12px;margin:0 0 5px}footer a,footer a:hover{color:#c0bec3;text-decoration:none}footer a:hover{text-decoration:underline}footer .metadata{color:#a7a7a7;margin-top:2px}footer .icon__group{margin:30px 0}footer .icon__group .icon{margin:5px 15px 5px 0}footer .icon__group path{fill:#999}footer .icon__group a:hover{text-decoration:none}footer .icon__group a:hover path{fill:#ccc}footer .promos{background-color:#f5f5f5;color:#63606b}footer .promos .list--unstyled a{color:#18171b}footer .promos .list--unstyled a:hover,footer .promos a,footer .promos a:hover{color:#006dcb}.sitemap{display:flex;flex-wrap:wrap;font-size:11px;justify-content:space-between;list-style:none;margin:0}.sitemap ul{margin:0}.sitemap>li{width:50%;margin-bottom:15px}.sitemap>li li{margin:0 0 5px}.sitemap--large{font-size:14px}.sitemap--large h6{font-size:18px}.sitemap--large>li{width:100%}.sitemap--large>li li{margin:0 0 5px 15px}.metadata{color:#63606b;font-size:13px;margin-bottom:7px}.metadata--sidebar .section{margin-bottom:30px}.metadata--sidebar h4{color:#4d8400;font-family:Lucida Grande,Lucida Sans Unicode,Lucida Sans,Geneva,Verdana,sans-serif;font-size:12px;font-weight:700}.metadata--sidebar p{margin-bottom:.5em}.metadata--sidebar ul{margin:.5em 0 0 1.5em}.icon svg{height:24px;width:24px;vertical-align:text-top}.icon--small svg{height:16px;width:16px}.icon--large svg{height:32px;width:32px}.icon--rss path{fill:#ff854f}.icon--white path{fill:#fff}.icon--dark-gray path{fill:#63606b}.icon--gray path{fill:#d9d9d9}.calendar--yearly{line-height:2;margin-bottom:15px}.calendar--yearly .year{font-weight:700;margin-bottom:0}.calendar--yearly .disabled{color:#c0bec3}.calendar--yearly a{color:#18171b;text-decoration:none}.calendar--yearly a:hover{color:#006dcb;text-decoration:underline}.calendar--daily{outline:2px solid #ededed;text-align:center;width:57px}.calendar--daily .month{background-color:#ed2939;color:#fff;display:block;font-size:12px;padding:2px 0;text-transform:uppercase}.calendar--daily .day{border:1px solid #ccc;border-top:0;display:block;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-size:24px!important;padding:0}.metrics{display:flex;flex-direction:column;justify-content:space-around;margin:15px 0}.metric{padding:0 15px;text-align:center}.metric+.metric{margin-top:30px}.metric__value{color:#63606b;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;font-feature-settings:tnum;font-size:32px;font-variant-numeric:tabular-nums}.metric__label{display:block;font-size:12px}.breadcrumb{background-color:transparent;border-radius:0;font-size:12px;margin:0 0 15px;padding:0}.breadcrumb>li{margin:0}.breadcrumb>li+li:before{padding:0}.breadcrumb>li.active,.breadcrumb>li.active a,.breadcrumb>li.active a:hover{color:#c0bec3;cursor:default;text-decoration:none}.breadcrumb li.active{display:none}.pager{display:flex;list-style:none;margin:15px 0}.pager li{flex:1}.pager li>a,.pager li>span{border:none}.pager li>a{font-weight:700;padding:5px 0}.pager li>a:hover{background:transparent}.pager li.disabled{color:#777;padding:5px 0}.box,.metrics{-webkit-column-break-inside:avoid;-moz-column-break-inside:avoid;column-break-inside:avoid;background:#f5f5f5;border-radius:10px;margin:15px 0;padding:15px}.box>:last-child,.box>:last-child :last-child,.metrics>:last-child,.metrics>:last-child :last-child{margin-bottom:0}.box--small,.metrics{padding:15px}.box--shadow,.metrics{background:none;box-shadow:0 1px 6px rgba(0,0,0,.2)}.box--outline{border:2px solid #d9d9d9;background:none}.box--dashed{border:2px dashed #d9d9d9;background:none}.box--warning{background:#fffccc;border:1px solid rgba(0,0,0,.1)}.box--error{background:#f2dede;border:1px solid #ebccd1;color:#a94442}.submenu__nav{display:none;list-style:none;margin:0;padding:0}.submenu__nav li{margin-top:0}.submenu__nav li+li{border-top:1px solid #f5f5f5}.submenu__nav li:first-child a{padding-top:0}.submenu__nav li.selected a{font-weight:700}.submenu__nav a{color:#18171b;display:block;padding:7px 0}.submenu__nav a:hover{color:#006dcb;text-decoration:none}.ads{display:none;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:12px}.ads h3{margin:0;font:inherit!important;font-size:14px!important}.ads h3 a{color:#006dcb}.ads cite{color:#4d8400}.tinynav_label,footer .tinynav{display:none}@media (min-width:768px){.h1,h1{font-size:32px}.h2,h2{font-size:24px}.h3,h3{font-size:21px}.h4,h4{font-size:18px}.h5,.h6,h5,h6{font-size:14px}.xs-separator{display:none}.text-hero{font-size:36px}#sln{background:#2f2f2f;height:36px;position:fixed;top:0;width:100%;z-index:10000}header{margin-bottom:25px}#content_wrapper{margin-top:36px}aside{background:transparent;padding-top:0}aside .tinynav{display:none}.submenu{margin-bottom:30px}.ads,.submenu__nav{display:block}.header__top{background:#f0f0f0;padding:20px 0}.header__bottom{background:#f9f9f9}.header__top .container{padding-right:15px}.header__logo img{height:50px;filter:invert(0)}.header__nav{background:transparent;display:block!important;position:static;width:100%;margin-left:0}.header__nav ul{flex-direction:row;flex-wrap:wrap;font-size:12px;height:40px;overflow:hidden}.header__nav li{padding-left:0}.header__nav li.selected,.header__nav li.selected:hover,.header__nav li:hover{background:transparent}.header__nav li.selected a{color:#006dcb;font-weight:700}.header__nav a{color:#18171b;display:inline}.header__download a{color:#fff;display:block}.sitemap>li{width:auto}.sitemap--large>li{margin-bottom:30px;width:33%}.sitemap--large>li+li,.sitemap>li+li{margin-top:0}.sitemap--large>li li{margin-left:0}.metrics{flex-direction:row}.metric+.metric{margin-top:0}.breadcrumb li.active{display:inline-block}p.lead{font-size:21px;width:90%}.box,.metrics{padding:30px}.box--small,.metrics{padding:15px}}@media (min-width:992px){.header__nav ul{font-size:14px}}
\ No newline at end of file
diff --git a/_build/_theme/assets/css/doc.css b/_build/_theme/assets/css/doc.css
new file mode 100644
index 00000000000..b45e348b011
--- /dev/null
+++ b/_build/_theme/assets/css/doc.css
@@ -0,0 +1 @@
+.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-body:after,.panel-body:before{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle,.panel-title{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group+.panel-footer,.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.admonition-sidebar .sidebar-title code,.doc__toc code,.inheritParentStyles,.toctree-wrapper code{background:inherit;color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}.section+.section,.section>.section{margin-top:30px}.section>:last-child{margin-bottom:0;padding-bottom:0}.section h1{display:none}.section h4,.section h5,.section h6{font-size:19px}.section li a em,.toctree-wrapper em{font-style:normal}.configuration-block{margin:15px 0;position:relative}.configuration-block ul.simple{margin:0;list-style:none}.configuration-block li{display:inline-block;margin:0 5px 0 0}.configuration-block li em{font-style:normal}.configuration-block li a{background-color:#d9d9d9;border-top-left-radius:5px;border-top-right-radius:5px;color:#18171b;display:block;padding:5px 12px 3px;text-decoration:none}.configuration-block li a:hover{background-color:#c0bec3;color:#18171b}.configuration-block .selected a,.configuration-block .selected a:hover{background-color:#18171b;color:#fff;text-decoration:none}.configuration-block .literal-block{margin:-1px 0 0;position:absolute;left:0}.admonition-wrapper code,.versionadded code{background:hsla(0,0%,100%,.1)}.admonition-wrapper{margin:0 0 15px;position:relative}.admonition-wrapper .admonition-wrapper{border:none}.admonition{border-radius:10px;padding:15px}.admonition-title{background-position:0 50%;background-repeat:no-repeat;background-size:21px;font-weight:700;height:21px;line-height:21px;margin-bottom:10px;padding-left:28px}.admonition .last,.admonition>:last-child{margin-bottom:0}.admonition-note{border:2px solid #d9d9d9}.admonition-note .admonition-title{background-image:url(/images/v5/doc/note.svg);color:#999}.admonition-tip{border:2px solid rgba(170,205,78,.5)}.admonition-tip .admonition-title{background-image:url(/images/v5/doc/tip.svg);color:#aacd4e}.admonition-caution{border:2px solid rgba(217,83,79,.3)}.admonition-caution .admonition-title{background-image:url(/images/v5/doc/caution.svg);color:#d9534f}.admonition-sidebar{background:#fafafa;border:2px solid #d9d9d9}.admonition-sidebar .sidebar-title{margin:0 0 5px;font-family:Georgia,Times New Roman,Times,serif;font-size:21px}.admonition.admonition-best-practice{border:2px solid rgba(223,154,7,.3)}.admonition.admonition-best-practice .admonition-title.first{display:none}.admonition.admonition-best-practice .admonition-title{background-image:url(/images/v5/doc/bestpractice.svg);color:#df9a07}.admonition-seealso{border:2px solid #d9d9d9}.versionadded{background:rgba(0,136,204,.05);border:2px solid rgba(0,136,204,.2);border-radius:10px;margin:15px 0;padding:15px!important}.versionadded p{margin-bottom:0}.versionadded .versionmodified{color:#006dcb;float:left;font-weight:700;margin-right:5px}a.footnote-reference{font-size:12px;line-height:.5;vertical-align:top}.footnote,.footnote>tbody>tr{border:none}.footnote>tbody>tr>td{border:none;padding-bottom:1em;padding-top:0}.footnote>tbody>tr>td.label{color:#18171b;font-size:14px;font-weight:700}.footnote>tbody>tr>td.label a.fn-backref{color:#18171b}.footnote>tbody>tr>td>em:first-child{display:none}.doc__tools{font-size:12px;margin:15px 0;position:relative;z-index:100}.doc__version{float:left;margin-right:15px;min-height:24px;position:relative;width:120px}.doc__version:hover .version__all{display:block}.doc__version:hover .version__current{border-radius:0;border-top-left-radius:4px;border-top-right-radius:4px}.version__current{background-color:#63606b;border-radius:4px;color:#f5f5f5;cursor:pointer;padding:3px 7px;position:relative;z-index:9899}.version__current:hover{border-radius:4px 4px 0 0;border-bottom-left-radius:0;border-bottom-right-radius:0}.version__all{background-color:#63606b;border-radius:4px;border-top-left-radius:0;box-shadow:0 0 0 5px #fff;display:none;margin-top:-2px;padding:10px 7px;position:absolute;left:0;width:225px}.version__all strong{color:#d1e9fa}.version__all small{color:#c0bec3;display:block}.version__all span{color:#c0bec3;padding:10px}.version__all--narrow{width:100%}.version__all--narrow strong{display:none}.version__all--narrow .version__list{display:block}.version__all--narrow .version__list a,.version__all--narrow .version__list a:hover{display:block;padding:5px 0 10px;text-align:left}.version__all--narrow .version__list a:hover:last-child,.version__all--narrow .version__list a:last-child{padding-bottom:0}.version__all--n
8000
arrow .version__list small{display:inline;font-size:inherit}.version__all--narrow .version__list small:before{content:" / "}.version__list{display:flex;flex-wrap:wrap}.version__list a,.version__list a:hover{color:#f5f5f5;line-height:1;padding:10px 7px;text-align:center}.doc__edit{background-color:#006dcb;border-radius:4px;float:left;text-align:center;width:120px}.doc__edit:hover{opacity:.9}.doc__edit a,.doc__edit a:hover{color:#fff;display:block;min-height:24px;padding:3px 7px}.doc__nav .panel{border-bottom:1px solid #f5f5f5;box-shadow:none;margin:0}.doc__nav a,.doc__nav a:focus{color:#18171b;display:block;text-decoration:none}.doc__nav a:hover{color:#006dcb;text-decoration:none}.doc__nav .panel:first-child .panel-heading a{padding-top:0}.doc__nav .panel-heading{padding:0}.doc__nav .panel-heading a,.doc__nav .panel-heading a:focus{font-weight:700;padding:7px 0}.doc__nav .panel-heading a.collapsed{font-weight:400}.doc__nav .panel-heading a:not(.collapsed) .icon{transform:rotate(90deg)}.doc__nav .panel-body{padding:0}.doc__nav .panel-body ul{color:#d9d9d9;list-style:disc;margin:0 0 15px 25px}.doc__nav .panel-body li{margin:0 0 5px}.doc__nav .panel-body li.selected a{font-weight:700}.doc__nav .panel-body a{font-size:13px;padding:0}.doc__toc{max-height:300px;overflow-y:auto}.doc__toc .box{margin:0;padding:0}.doc__toc ul{margin-left:20px;list-style:circle}.doc__toc .box>ul{margin:0 0 0 20px}.doc__toc .box>ul>li>ul{margin:0}.doc__toc .box>ul>li>a{display:none}.doc__toc .box>ul>li>ul>li{list-style:disc}.tag-cloud{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;list-style:none;margin:0}.tag-cloud li,.tag-cloud li+li{margin:0}.tag-cloud a{display:inline-block;padding:5px 10px 10px}.tag-cloud a.important{font-size:18px}.tag-cloud a.very-important{font-size:18px;font-weight:700}@media (min-width:768px){.doc__tools{background:#fff;float:right;margin:5px 0 15px 15px;padding:0 0 5px 5px;width:130px}.doc__version{float:none;margin-bottom:5px;margin-right:0;width:100%}.version__all{border-top-left-radius:4px;border-top-right-radius:0;left:auto;right:0}.doc__edit{float:none;text-align:left;width:100%}.doc__toc{max-height:none;overflow:hidden}.doc__toc .box{margin-bottom:30px;padding:15px}.doc__toc li,.doc__toc ul{list-style:none!important}.doc__toc .box>ul{line-height:1.2;margin:0}.doc__toc .box>ul ul{margin-bottom:10px;margin-left:10px}.doc__toc .box>ul ul ul li{margin-top:5px}.doc__toc a{color:#63606b;font-size:12px;font-weight:700}.doc__toc li li li a{font-weight:400}.admonition{padding:15px 15px 15px 55px}.admonition-title,.seealso{background-position:50% 0;background-repeat:no-repeat;background-size:28px;font-size:12px;left:15px;line-height:1;margin-bottom:0;padding-left:0;padding-top:30px;position:absolute;text-align:center;text-indent:-9999px;text-transform:uppercase;top:13px;width:28px}.admonition-sidebar{padding:30px}.admonition-wrapper .seealso{background-image:url(/images/v5/doc/seealso.svg)}}
\ No newline at end of file
diff --git a/_build/_theme/assets/js/app.js b/_build/_theme/assets/js/app.js
new file mode 100644
index 00000000000..3bee51c6892
--- /dev/null
+++ b/_build/_theme/assets/js/app.js
@@ -0,0 +1,24 @@
+webpackJsonp([2],{0:function(e,t,n){n("7t+N"),n("6J7x"),n("dXU8"),n("MVPP"),n("iuXZ"),n("mS0f"),e.exports=n("3Z84")},"3Z84":function(e,t,n){(function(e,t){e.$=e.jQuery=n("7t+N"),t(document).ready(function(){function e(e){if(t(window).width()<768)var n=10;else if(t(window).width()<970)var n=50;else var n=90;if("string"==typeof e)var i=e;else var i=t(this).attr("href")||t(this).attr("id");if(i){var r=t(i);return r.length&&(t("html, body").animate({scrollTop:r.offset().top-n}),history&&"pushState"in history)?(history.pushState({},document.title,window.location.pathname+window.location.search+i),!1):void 0}}t("#header-bottom").on("affixed.bs.affix",function(){t("body").css("padding-top","40px")}),t("#header-bottom").on("affixed-top.bs.affix",function(){t("body").css("padding-top","0")}),t("body").on("click","main a[href^='#']",e),t(".header__toggle__menu").on("click",function(e){t(this).toggleClass("open"),t(".header__nav").slideToggle(),e.preventDefault()}),t(".submenu__nav").each(function(){t(this).tinyNav(),t("select.tinynav").each(function(){t(this).addClass("form-control"),t(this).attr("title","Secondary navigation menu")})}),t(".tinynav").bind("change",function(){var e=t(this).val();return e&&(window.location=e),!1}),t("[data-tracked]").bind("click",function(e){try{ga("send","event",t(this).data("category")||"",t(this).data("action")||"",t(this).data("label")||"",t(this).data("value")||"")}catch(e){}}),t("#ad_jobs").each(function(){t.get(t(this).attr("data-url"),function(e){var n=t('
"+e.city+", "+e.country_name+"
"+e.title+"
jobs.sensiolabs.com
");t("#ad_jobs").replaceWith(n)},"json")})})}).call(t,n("DuR2"),n("7t+N"))},"6J7x":function(e,t,n){(function(e){!function(e,t,n){e.fn.tinyNav=function(i){var r=e.extend({active:"selected",header:"",indent:"- ",label:"",addHashHistory:!1},i);return this.each(function(){n++;var i=e(this),o="tinynav",s=o+n,a=".l_"+s,u=e("
").attr("id",s).addClass(o+" "+s);if(i.is("ul,ol")){""!==r.header&&u.append(e("
").text(r.header));var l="";i.addClass("l_"+s).find("a").each(function(){l+='