roroacms 0.0.8.5 → 0.0.8.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/lib/roroacms/version.rb +1 -1
  4. metadata +1 -55
  5. data/docs/Makefile +0 -177
  6. data/docs/_build/doctrees/environment.pickle +0 -0
  7. data/docs/_build/doctrees/index.doctree +0 -0
  8. data/docs/_build/html/.buildinfo +0 -4
  9. data/docs/_build/html/_sources/index.txt +0 -41
  10. data/docs/_build/html/_static/ajax-loader.gif +0 -0
  11. data/docs/_build/html/_static/basic.css +0 -537
  12. data/docs/_build/html/_static/comment-bright.png +0 -0
  13. data/docs/_build/html/_static/comment-close.png +0 -0
  14. data/docs/_build/html/_static/comment.png +0 -0
  15. data/docs/_build/html/_static/default.css +0 -256
  16. data/docs/_build/html/_static/doctools.js +0 -238
  17. data/docs/_build/html/_static/down-pressed.png +0 -0
  18. data/docs/_build/html/_static/down.png +0 -0
  19. data/docs/_build/html/_static/file.png +0 -0
  20. data/docs/_build/html/_static/jquery.js +0 -2
  21. data/docs/_build/html/_static/minus.png +0 -0
  22. data/docs/_build/html/_static/plus.png +0 -0
  23. data/docs/_build/html/_static/pygments.css +0 -62
  24. data/docs/_build/html/_static/searchtools.js +0 -622
  25. data/docs/_build/html/_static/sidebar.js +0 -159
  26. data/docs/_build/html/_static/underscore.js +0 -31
  27. data/docs/_build/html/_static/up-pressed.png +0 -0
  28. data/docs/_build/html/_static/up.png +0 -0
  29. data/docs/_build/html/_static/websupport.js +0 -808
  30. data/docs/_build/html/genindex.html +0 -92
  31. data/docs/_build/html/index.html +0 -138
  32. data/docs/_build/html/objects.inv +0 -0
  33. data/docs/_build/html/search.html +0 -99
  34. data/docs/_build/html/searchindex.js +0 -1
  35. data/docs/_images/logo.png +0 -0
  36. data/docs/_themes/roroa_rtd_theme/__init__.py +0 -17
  37. data/docs/_themes/roroa_rtd_theme/breadcrumbs.html +0 -19
  38. data/docs/_themes/roroa_rtd_theme/footer.html +0 -31
  39. data/docs/_themes/roroa_rtd_theme/layout.html +0 -161
  40. data/docs/_themes/roroa_rtd_theme/layout_old.html +0 -205
  41. data/docs/_themes/roroa_rtd_theme/search.html +0 -50
  42. data/docs/_themes/roroa_rtd_theme/searchbox.html +0 -7
  43. data/docs/_themes/roroa_rtd_theme/static/css/badge_only.css +0 -1
  44. data/docs/_themes/roroa_rtd_theme/static/css/sylius.css +0 -57
  45. data/docs/_themes/roroa_rtd_theme/static/css/theme.css +0 -3224
  46. data/docs/_themes/roroa_rtd_theme/static/fonts/FontAwesome.otf +0 -0
  47. data/docs/_themes/roroa_rtd_theme/static/fonts/fontawesome-webfont.eot +0 -0
  48. data/docs/_themes/roroa_rtd_theme/static/fonts/fontawesome-webfont.svg +0 -414
  49. data/docs/_themes/roroa_rtd_theme/static/fonts/fontawesome-webfont.ttf +0 -0
  50. data/docs/_themes/roroa_rtd_theme/static/fonts/fontawesome-webfont.woff +0 -0
  51. data/docs/_themes/roroa_rtd_theme/static/img/logo.png +0 -0
  52. data/docs/_themes/roroa_rtd_theme/static/js/theme.js +0 -47
  53. data/docs/_themes/roroa_rtd_theme/theme.conf +0 -8
  54. data/docs/_themes/roroa_rtd_theme/versions.html +0 -37
  55. data/docs/conf.py +0 -259
  56. data/docs/index.rst +0 -41
  57. data/docs/make.bat +0 -242
  58. data/roroacms.gemspec +0 -43
@@ -1,205 +0,0 @@
1
- {#
2
- basic/layout.html
3
- ~~~~~~~~~~~~~~~~~
4
-
5
- Master layout template for Sphinx themes.
6
-
7
- :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
8
- :license: BSD, see LICENSE for details.
9
- #}
10
- {%- block doctype -%}
11
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
12
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
13
- {%- endblock %}
14
- {%- set reldelim1 = reldelim1 is not defined and ' &raquo;' or reldelim1 %}
15
- {%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %}
16
- {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and
17
- (sidebars != []) %}
18
- {%- set url_root = pathto('', 1) %}
19
- {# XXX necessary? #}
20
- {%- if url_root == '#' %}{% set url_root = '' %}{% endif %}
21
- {%- if not embedded and docstitle %}
22
- {%- set titlesuffix = " &mdash; "|safe + docstitle|e %}
23
- {%- else %}
24
- {%- set titlesuffix = "" %}
25
- {%- endif %}
26
-
27
- {%- macro relbar() %}
28
- <div class="related">
29
- <h3>{{ _('Navigation') }}</h3>
30
- <ul>
31
- {%- for rellink in rellinks %}
32
- <li class="right" {% if loop.first %}style="margin-right: 10px"{% endif %}>
33
- <a href="{{ pathto(rellink[0]) }}" title="{{ rellink[1]|striptags|e }}"
34
- {{ accesskey(rellink[2]) }}>{{ rellink[3] }}</a>
35
- {%- if not loop.first %}{{ reldelim2 }}{% endif %}</li>
36
- {%- endfor %}
37
- {%- block rootrellink %}
38
- <li><a href="{{ pathto(master_doc) }}">{{ shorttitle|e }}</a>{{ reldelim1 }}</li>
39
- {%- endblock %}
40
- {%- for parent in parents %}
41
- <li><a href="{{ parent.link|e }}" {% if loop.last %}{{ accesskey("U") }}{% endif %}>{{ parent.title }}</a>{{ reldelim1 }}</li>
42
- {%- endfor %}
43
- {%- block relbaritems %} {% endblock %}
44
- </ul>
45
- </div>
46
- {%- endmacro %}
47
-
48
- {%- macro sidebar() %}
49
- {%- if render_sidebar %}
50
- <div class="sphinxsidebar">
51
- <div class="sphinxsidebarwrapper">
52
- {%- block sidebarlogo %}
53
- {%- if logo %}
54
- <p class="logo"><a href="{{ pathto(master_doc) }}">
55
- <img class="logo" src="{{ pathto('_static/' + logo, 1) }}" alt="Logo"/>
56
- </a></p>
57
- {%- endif %}
58
- {%- endblock %}
59
- {%- if sidebars != None %}
60
- {#- new style sidebar: explicitly include/exclude templates #}
61
- {%- for sidebartemplate in sidebars %}
62
- {%- include sidebartemplate %}
63
- {%- endfor %}
64
- {%- else %}
65
- {#- old style sidebars: using blocks -- should be deprecated #}
66
- {%- block sidebartoc %}
67
- {%- include "localtoc.html" %}
68
- {%- endblock %}
69
- {%- block sidebarrel %}
70
- {%- include "relations.html" %}
71
- {%- endblock %}
72
- {%- block sidebarsourcelink %}
73
- {%- include "sourcelink.html" %}
74
- {%- endblock %}
75
- {%- if customsidebar %}
76
- {%- include customsidebar %}
77
- {%- endif %}
78
- {%- block sidebarsearch %}
79
- {%- include "searchbox.html" %}
80
- {%- endblock %}
81
- {%- endif %}
82
- </div>
83
- </div>
84
- {%- endif %}
85
- {%- endmacro %}
86
-
87
- {%- macro script() %}
88
- <script type="text/javascript">
89
- var DOCUMENTATION_OPTIONS = {
90
- URL_ROOT: '{{ url_root }}',
91
- VERSION: '{{ release|e }}',
92
- COLLAPSE_INDEX: false,
93
- FILE_SUFFIX: '{{ '' if no_search_suffix else file_suffix }}',
94
- HAS_SOURCE: {{ has_source|lower }}
95
- };
96
- </script>
97
- {%- for scriptfile in script_files %}
98
- <script type="text/javascript" src="{{ pathto(scriptfile, 1) }}"></script>
99
- {%- endfor %}
100
- {%- endmacro %}
101
-
102
- {%- macro css() %}
103
- <link rel="stylesheet" href="{{ pathto('_static/' + style, 1) }}" type="text/css" />
104
- <link rel="stylesheet" href="{{ pathto('_static/pygments.css', 1) }}" type="text/css" />
105
- {%- for cssfile in css_files %}
106
- <link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
107
- {%- endfor %}
108
- {%- endmacro %}
109
-
110
- <html xmlns="http://www.w3.org/1999/xhtml">
111
- <head>
112
- <meta http-equiv="Content-Type" content="text/html; charset={{ encoding }}" />
113
- {{ metatags }}
114
- {%- block htmltitle %}
115
- <title>{{ title|striptags|e }}{{ titlesuffix }}</title>
116
- {%- endblock %}
117
- {{ css() }}
118
- {%- if not embedded %}
119
- {{ script() }}
120
- {%- if use_opensearch %}
121
- <link rel="search" type="application/opensearchdescription+xml"
122
- title="{% trans docstitle=docstitle|e %}Search within {{ docstitle }}{% endtrans %}"
123
- href="{{ pathto('_static/opensearch.xml', 1) }}"/>
124
- {%- endif %}
125
- {%- if favicon %}
126
- <link rel="shortcut icon" href="{{ pathto('_static/' + favicon, 1) }}"/>
127
- {%- endif %}
128
- {%- endif %}
129
- {%- block linktags %}
130
- {%- if hasdoc('about') %}
131
- <link rel="author" title="{{ _('About these documents') }}" href="{{ pathto('about') }}" />
132
- {%- endif %}
133
- {%- if hasdoc('genindex') %}
134
- <link rel="index" title="{{ _('Index') }}" href="{{ pathto('genindex') }}" />
135
- {%- endif %}
136
- {%- if hasdoc('search') %}
137
- <link rel="search" title="{{ _('Search') }}" href="{{ pathto('search') }}" />
138
- {%- endif %}
139
- {%- if hasdoc('copyright') %}
140
- <link rel="copyright" title="{{ _('Copyright') }}" href="{{ pathto('copyright') }}" />
141
- {%- endif %}
142
- <link rel="top" title="{{ docstitle|e }}" href="{{ pathto('index') }}" />
143
- {%- if parents %}
144
- <link rel="up" title="{{ parents[-1].title|striptags|e }}" href="{{ parents[-1].link|e }}" />
145
- {%- endif %}
146
- {%- if next %}
147
- <link rel="next" title="{{ next.title|striptags|e }}" href="{{ next.link|e }}" />
148
- {%- endif %}
149
- {%- if prev %}
150
- <link rel="prev" title="{{ prev.title|striptags|e }}" href="{{ prev.link|e }}" />
151
- {%- endif %}
152
- {%- endblock %}
153
- {%- block extrahead %} {% endblock %}
154
- </head>
155
- <body>
156
- {%- block header %}{% endblock %}
157
-
158
- {%- block relbar1 %}{{ relbar() }}{% endblock %}
159
-
160
- {%- block content %}
161
- {%- block sidebar1 %} {# possible location for sidebar #} {% endblock %}
162
-
163
- <div class="document">
164
- {%- block document %}
165
- <div class="documentwrapper">
166
- {%- if render_sidebar %}
167
- <div class="bodywrapper">
168
- {%- endif %}
169
- <div class="body">
170
- {% block body %} {% endblock %}
171
- </div>
172
- {%- if render_sidebar %}
173
- </div>
174
- {%- endif %}
175
- </div>
176
- {%- endblock %}
177
-
178
- {%- block sidebar2 %}{{ sidebar() }}{% endblock %}
179
- <div class="clearer"></div>
180
- </div>
181
- {%- endblock %}
182
-
183
- {%- block relbar2 %}{{ relbar() }}{% endblock %}
184
-
185
- {%- block footer %}
186
- <div class="footer">
187
- {%- if show_copyright %}
188
- {%- if hasdoc('copyright') %}
189
- {% trans path=pathto('copyright'), copyright=copyright|e %}&copy; <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %}
190
- {%- else %}
191
- {% trans copyright=copyright|e %}&copy; Copyright {{ copyright }}.{% endtrans %}
192
- {%- endif %}
193
- {%- endif %}
194
- {%- if last_updated %}
195
- {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %}
196
- {%- endif %}
197
- {%- if show_sphinx %}
198
- {% trans sphinx_version=sphinx_version|e %}Created using <a href="http://sphinx-doc.org/">Sphinx</a> {{ sphinx_version }}.{% endtrans %}
199
- {%- endif %}
200
- </div>
201
- <p>asdf asdf asdf asdf 22</p>
202
- {%- endblock %}
203
- </body>
204
- </html>
205
-
@@ -1,50 +0,0 @@
1
- {#
2
- basic/search.html
3
- ~~~~~~~~~~~~~~~~~
4
-
5
- Template for the search page.
6
-
7
- :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS.
8
- :license: BSD, see LICENSE for details.
9
- #}
10
- {%- extends "layout.html" %}
11
- {% set title = _('Search') %}
12
- {% set script_files = script_files + ['_static/searchtools.js'] %}
13
- {% block footer %}
14
- <script type="text/javascript">
15
- jQuery(function() { Search.loadIndex("{{ pathto('searchindex.js', 1) }}"); });
16
- </script>
17
- {# this is used when loading the search index using $.ajax fails,
18
- such as on Chrome for documents on localhost #}
19
- <script type="text/javascript" id="searchindexloader"></script>
20
- {{ super() }}
21
- {% endblock %}
22
- {% block body %}
23
- <noscript>
24
- <div id="fallback" class="admonition warning">
25
- <p class="last">
26
- {% trans %}Please activate JavaScript to enable the search
27
- functionality.{% endtrans %}
28
- </p>
29
- </div>
30
- </noscript>
31
-
32
- {% if search_performed %}
33
- <h2>{{ _('Search Results') }}</h2>
34
- {% if not search_results %}
35
- <p>{{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.') }}</p>
36
- {% endif %}
37
- {% endif %}
38
- <div id="search-results">
39
- {% if search_results %}
40
- <ul>
41
- {% for href, caption, context in search_results %}
42
- <li>
43
- <a href="{{ pathto(item.href) }}">{{ caption }}</a>
44
- <p class="context">{{ context|e }}</p>
45
- </li>
46
- {% endfor %}
47
- </ul>
48
- {% endif %}
49
- </div>
50
- {% endblock %}
@@ -1,7 +0,0 @@
1
- <div role="search">
2
- <form id ="rtd-search-form" class="wy-form" action="{{ pathto('search') }}" method="get">
3
- <input type="text" name="q" placeholder="Search docs" />
4
- <input type="hidden" name="check_keywords" value="yes" />
5
- <input type="hidden" name="area" value="default" />
6
- </form>
7
- </div>
@@ -1 +0,0 @@
1
- .fa:before{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}@font-face{font-family:FontAwesome;font-weight:normal;font-style:normal;src:url("../font/fontawesome_webfont.eot");src:url("../font/fontawesome_webfont.eot?#iefix") format("embedded-opentype"),url("../font/fontawesome_webfont.woff") format("woff"),url("../font/fontawesome_webfont.ttf") format("truetype"),url("../font/fontawesome_webfont.svg#FontAwesome") format("svg")}.fa:before{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa{display:inline-block;text-decoration:inherit}li .fa{display:inline-block}li .fa-large:before,li .fa-large:before{width:1.875em}ul.fas{list-style-type:none;margin-left:2em;text-indent:-0.8em}ul.fas li .fa{width:0.8em}ul.fas li .fa-large:before,ul.fas li .fa-large:before{vertical-align:baseline}.fa-book:before{content:"\f02d"}.icon-book:before{content:"\f02d"}.fa-caret-down:before{content:"\f0d7"}.icon-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.icon-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.icon-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.icon-caret-right:before{content:"\f0da"}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;border-top:solid 10px #343131;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980b9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27ae60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa{color:#fcfcfc}.rst-versions .rst-current-version .fa-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#e74c3c;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#f1c40f;color:#000}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}img{width:100%;height:auto}}
@@ -1,57 +0,0 @@
1
- .wy-nav-content-wrap {
2
- background-image: url("../img/swan.png");
3
- background-position: -20px bottom;
4
- background-size: 20% auto;
5
- background-repeat: no-repeat;
6
- background-color: #ffffff;
7
- }
8
-
9
- .logo {
10
- background-image: url("../img/logo.png");
11
- background-repeat: no-repeat;
12
- background-position: center center;
13
- display: block;
14
- min-height:50px;
15
- width:100%;
16
- height:auto;
17
- }
18
-
19
- .wy-menu-vertical li.current a:hover {
20
- color: #fff;
21
- background: #222;
22
- }
23
- .wy-menu-vertical li.current a {
24
- color: #999;
25
- background-color: #222;
26
- border-right: 0;
27
- }
28
- .wy-menu-vertical li.current > a {
29
- color: #fff;
30
- background-color: #1abb9c;
31
- border-top: 0;
32
- border-bottom: 0;
33
- }
34
- .wy-menu-vertical li.current > a:hover {
35
- color: #fff;
36
- background-color: #1abb9c;
37
- border-top: 0;
38
- border-bottom: 0;
39
- }
40
- .wy-side-nav-logo {
41
- background-color: #5ce0aa;
42
- min-height: 80px;
43
- padding: 20px 20px 4px;
44
- text-align: center;
45
- }
46
- .wy-side-nav-search {
47
- margin-bottom: 30px;
48
- }
49
- .wy-side-nav-search input[type=text] {
50
- border-color: #eee;
51
- }
52
- .wy-menu-vertical li.toctree-l2.current > a {
53
- background-color: #333;
54
- }
55
- .wy-menu-vertical li.toctree-l2.current > a:hover {
56
- background-color: #333;
57
- }
@@ -1,3224 +0,0 @@
1
- * {
2
- -webkit-box-sizing: border-box;
3
- -moz-box-sizing: border-box;
4
- box-sizing: border-box;
5
- }
6
- article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
7
- display: block;
8
- }
9
- audio, canvas, video {
10
- display: inline-block;
11
- *display: inline;
12
- *zoom: 1;
13
- }
14
- audio:not([controls]) {
15
- display: none;
16
- }
17
- [hidden] {
18
- display: none;
19
- }
20
- * {
21
- -webkit-box-sizing: border-box;
22
- -moz-box-sizing: border-box;
23
- box-sizing: border-box;
24
- }
25
- html {
26
- font-size: 100%;
27
- -webkit-text-size-adjust: 100%;
28
- -ms-text-size-adjust: 100%}
29
- body {
30
- margin: 0;
31
- }
32
- a:hover, a:active {
33
- outline: 0;
34
- }
35
- abbr[title] {
36
- border-bottom: 1px dotted;
37
- }
38
- b, strong {
39
- font-weight: bold;
40
- }
41
- blockquote {
42
- margin: 0;
43
- }
44
- dfn {
45
- font-style: italic;
46
- }
47
- hr {
48
- display: block;
49
- height: 1px;
50
- border: 0;
51
- border-top: 1px solid #ccc;
52
- margin: 20px 0;
53
- padding: 0;
54
- }
55
- ins {
56
- background: #ff9;
57
- color: #000;
58
- text-decoration: none;
59
- }
60
- mark {
61
- background: #ff0;
62
- color: #000;
63
- font-style: italic;
64
- font-weight: bold;
65
- }
66
- pre, code, .rst-content tt, kbd, samp {
67
- font-family: monospace, serif;
68
- _font-family: "courier new", monospace;
69
- font-size: 1em;
70
- }
71
- pre {
72
- white-space: pre;
73
- }
74
- q {
75
- quotes: none;
76
- }
77
- q:before, q:after {
78
- content: "";
79
- content: none;
80
- }
81
- small {
82
- font-size: 85%}
83
- sub, sup {
84
- font-size: 75%;
85
- line-height: 0;
86
- position: relative;
87
- vertical-align: baseline;
88
- }
89
- sup {
90
- top: -0.5em;
91
- }
92
- sub {
93
- bottom: -0.25em;
94
- }
95
- ul, ol, dl {
96
- margin: 0;
97
- padding: 0;
98
- list-style: none;
99
- list-style-image: none;
100
- }
101
- li {
102
- list-style: none;
103
- }
104
- dd {
105
- margin: 0;
106
- }
107
- img {
108
- border: 0;
109
- -ms-interpolation-mode: bicubic;
110
- vertical-align: middle;
111
- max-width: 100%}
112
- svg:not(:root) {
113
- overflow: hidden;
114
- }
115
- figure {
116
- margin: 0;
117
- }
118
- form {
119
- margin: 0;
120
- }
121
- fieldset {
122
- border: 0;
123
- margin: 0;
124
- padding: 0;
125
- }
126
- label {
127
- cursor: pointer;
128
- }
129
- legend {
130
- border: 0;
131
- *margin-left: -7px;
132
- padding: 0;
133
- white-space: normal;
134
- }
135
- button, input, select, textarea {
136
- font-size: 100%;
137
- margin: 0;
138
- vertical-align: baseline;
139
- *vertical-align: middle;
140
- }
141
- button, input {
142
- line-height: normal;
143
- }
144
- button, input[type="button"], input[type="reset"], input[type="submit"] {
145
- cursor: pointer;
146
- -webkit-appearance: button;
147
- *overflow: visible;
148
- }
149
- button[disabled], input[disabled] {
150
- cursor: default;
151
- }
152
- input[type="checkbox"], input[type="radio"] {
153
- box-sizing: border-box;
154
- padding: 0;
155
- *width: 13px;
156
- *height: 13px;
157
- }
158
- input[type="search"] {
159
- -webkit-appearance: textfield;
160
- -moz-box-sizing: content-box;
161
- -webkit-box-sizing: content-box;
162
- box-sizing: content-box;
163
- }
164
- input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
165
- -webkit-appearance: none;
166
- }
167
- button::-moz-focus-inner, input::-moz-focus-inner {
168
- border: 0;
169
- padding: 0;
170
- }
171
- textarea {
172
- overflow: auto;
173
- vertical-align: top;
174
- resize: vertical;
175
- }
176
- table {
177
- border-collapse: collapse;
178
- border-spacing: 0;
179
- }
180
- td {
181
- vertical-align: top;
182
- }
183
- .chromeframe {
184
- margin: 0.2em 0;
185
- background: #ccc;
186
- color: #000;
187
- padding: 0.2em 0;
188
- }
189
- .ir {
190
- display: block;
191
- border: 0;
192
- text-indent: -999em;
193
- overflow: hidden;
194
- background-color: transparent;
195
- background-repeat: no-repeat;
196
- text-align: left;
197
- direction: ltr;
198
- *line-height: 0;
199
- }
200
- .ir br {
201
- display: none;
202
- }
203
- .hidden {
204
- display: none !important;
205
- visibility: hidden;
206
- }
207
- .visuallyhidden {
208
- border: 0;
209
- clip: rect(0 0 0 0);
210
- height: 1px;
211
- margin: -1px;
212
- overflow: hidden;
213
- padding: 0;
214
- position: absolute;
215
- width: 1px;
216
- }
217
- .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
218
- clip: auto;
219
- height: auto;
220
- margin: 0;
221
- overflow: visible;
222
- position: static;
223
- width: auto;
224
- }
225
- .invisible {
226
- visibility: hidden;
227
- }
228
- .relative {
229
- position: relative;
230
- }
231
- big, small {
232
- font-size: 100%}
233
- @media print {
234
- html, body, section {
235
- background: none !important;
236
- }
237
- * {
238
- box-shadow: none !important;
239
- text-shadow: none !important;
240
- filter: none !important;
241
- -ms-filter: none !important;
242
- }
243
- a, a:visited {
244
- text-decoration: underline;
245
- }
246
- .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
247
- content: ""}
248
- pre, blockquote {
249
- page-break-inside: avoid;
250
- }
251
- thead {
252
- display: table-header-group;
253
- }
254
- tr, img {
255
- page-break-inside: avoid;
256
- }
257
- img {
258
- max-width: 100% !important;
259
- }
260
- @page {
261
- margin: 0.5cm;
262
- }
263
- p, h2, h3 {
264
- orphans: 3;
265
- widows: 3;
266
- }
267
- h2, h3 {
268
- page-break-after: avoid;
269
- }
270
- }.fa:before, .rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .icon:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, .wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso, .btn, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"], select, textarea, .wy-menu-vertical li.on a, .wy-menu-vertical li.current>a, .wy-side-nav-search>a, .wy-side-nav-search .wy-dropdown>a, .wy-nav-top a {
271
- -webkit-font-smoothing: antialiased;
272
- }
273
- .clearfix {
274
- *zoom: 1;
275
- }
276
- .clearfix:before, .clearfix:after {
277
- display: table;
278
- content: ""}
279
- .clearfix:after {
280
- clear: both;
281
- }
282
- /*!
283
- * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
284
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
285
- */@font-face {
286
- font-family: 'FontAwesome';
287
- src: url("../fonts/fontawesome-webfont.eot?v=4.0.3");
288
- src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
289
- font-weight: normal;
290
- font-style: normal;
291
- }
292
- .fa, .rst-content .admonition-title, .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .icon {
293
- display: inline-block;
294
- font-family: FontAwesome;
295
- font-style: normal;
296
- font-weight: normal;
297
- line-height: 1;
298
- -webkit-font-smoothing: antialiased;
299
- -moz-osx-font-smoothing: grayscale;
300
- }
301
- .fa-lg {
302
- font-size: 1.33333em;
303
- line-height: 0.75em;
304
- vertical-align: -15%}
305
- .fa-2x {
306
- font-size: 2em;
307
- }
308
- .fa-3x {
309
- font-size: 3em;
310
- }
311
- .fa-4x {
312
- font-size: 4em;
313
- }
314
- .fa-5x {
315
- font-size: 5em;
316
- }
317
- .fa-fw {
318
- width: 1.28571em;
319
- text-align: center;
320
- }
321
- .fa-ul {
322
- padding-left: 0;
323
- margin-left: 2.14286em;
324
- list-style-type: none;
325
- }
326
- .fa-ul>li {
327
- position: relative;
328
- }
329
- .fa-li {
330
- position: absolute;
331
- left: -2.14286em;
332
- width: 2.14286em;
333
- top: 0.14286em;
334
- text-align: center;
335
- }
336
- .fa-li.fa-lg {
337
- left: -1.85714em;
338
- }
339
- .fa-border {
340
- padding: .2em .25em .15em;
341
- border: solid 0.08em #eee;
342
- border-radius: .1em;
343
- }
344
- .pull-right {
345
- float: right;
346
- }
347
- .pull-left {
348
- float: left;
349
- }
350
- .fa.pull-left, .rst-content .pull-left.admonition-title, .rst-content h1 .pull-left.headerlink, .rst-content h2 .pull-left.headerlink, .rst-content h3 .pull-left.headerlink, .rst-content h4 .pull-left.headerlink, .rst-content h5 .pull-left.headerlink, .rst-content h6 .pull-left.headerlink, .rst-content dl dt .pull-left.headerlink, .pull-left.icon {
351
- margin-right: .3em;
352
- }
353
- .fa.pull-right, .rst-content .pull-right.admonition-title, .rst-content h1 .pull-right.headerlink, .rst-content h2 .pull-right.headerlink, .rst-content h3 .pull-right.headerlink, .rst-content h4 .pull-right.headerlink, .rst-content h5 .pull-right.headerlink, .rst-content h6 .pull-right.headerlink, .rst-content dl dt .pull-right.headerlink, .pull-right.icon {
354
- margin-left: .3em;
355
- }
356
- .fa-spin {
357
- -webkit-animation: spin 2s infinite linear;
358
- -moz-animation: spin 2s infinite linear;
359
- -o-animation: spin 2s infinite linear;
360
- animation: spin 2s infinite linear;
361
- }
362
- @-moz-keyframes spin {
363
- 0% {
364
- -moz-transform: rotate(0deg);
365
- }
366
- 100% {
367
- -moz-transform: rotate(359deg);
368
- }
369
- }@-webkit-keyframes spin {
370
- 0% {
371
- -webkit-transform: rotate(0deg);
372
- }
373
- 100% {
374
- -webkit-transform: rotate(359deg);
375
- }
376
- }@-o-keyframes spin {
377
- 0% {
378
- -o-transform: rotate(0deg);
379
- }
380
- 100% {
381
- -o-transform: rotate(359deg);
382
- }
383
- }@-ms-keyframes spin {
384
- 0% {
385
- -ms-transform: rotate(0deg);
386
- }
387
- 100% {
388
- -ms-transform: rotate(359deg);
389
- }
390
- }@keyframes spin {
391
- 0% {
392
- transform: rotate(0deg);
393
- }
394
- 100% {
395
- transform: rotate(359deg);
396
- }
397
- }.fa-rotate-90 {
398
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
399
- -webkit-transform: rotate(90deg);
400
- -moz-transform: rotate(90deg);
401
- -ms-transform: rotate(90deg);
402
- -o-transform: rotate(90deg);
403
- transform: rotate(90deg);
404
- }
405
- .fa-rotate-180 {
406
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
407
- -webkit-transform: rotate(180deg);
408
- -moz-transform: rotate(180deg);
409
- -ms-transform: rotate(180deg);
410
- -o-transform: rotate(180deg);
411
- transform: rotate(180deg);
412
- }
413
- .fa-rotate-270 {
414
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
415
- -webkit-transform: rotate(270deg);
416
- -moz-transform: rotate(270deg);
417
- -ms-transform: rotate(270deg);
418
- -o-transform: rotate(270deg);
419
- transform: rotate(270deg);
420
- }
421
- .fa-flip-horizontal {
422
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
423
- -webkit-transform: scale(-1, 1);
424
- -moz-transform: scale(-1, 1);
425
- -ms-transform: scale(-1, 1);
426
- -o-transform: scale(-1, 1);
427
- transform: scale(-1, 1);
428
- }
429
- .fa-flip-vertical {
430
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
431
- -webkit-transform: scale(1, -1);
432
- -moz-transform: scale(1, -1);
433
- -ms-transform: scale(1, -1);
434
- -o-transform: scale(1, -1);
435
- transform: scale(1, -1);
436
- }
437
- .fa-stack {
438
- position: relative;
439
- display: inline-block;
440
- width: 2em;
441
- height: 2em;
442
- line-height: 2em;
443
- vertical-align: middle;
444
- }
445
- .fa-stack-1x, .fa-stack-2x {
446
- position: absolute;
447
- left: 0;
448
- width: 100%;
449
- text-align: center;
450
- }
451
- .fa-stack-1x {
452
- line-height: inherit;
453
- }
454
- .fa-stack-2x {
455
- font-size: 2em;
456
- }
457
- .fa-inverse {
458
- color: #fff;
459
- }
460
- .fa-glass:before {
461
- content: "\f000"}
462
- .fa-music:before {
463
- content: "\f001"}
464
- .fa-search:before, .icon-search:before {
465
- content: "\f002"}
466
- .fa-envelope-o:before {
467
- content: "\f003"}
468
- .fa-heart:before {
469
- content: "\f004"}
470
- .fa-star:before {
471
- content: "\f005"}
472
- .fa-star-o:before {
473
- content: "\f006"}
474
- .fa-user:before {
475
- content: "\f007"}
476
- .fa-film:before {
477
- content: "\f008"}
478
- .fa-th-large:before {
479
- content: "\f009"}
480
- .fa-th:before {
481
- content: "\f00a"}
482
- .fa-th-list:before {
483
- content: "\f00b"}
484
- .fa-check:before {
485
- content: "\f00c"}
486
- .fa-times:before {
487
- content: "\f00d"}
488
- .fa-search-plus:before {
489
- content: "\f00e"}
490
- .fa-search-minus:before {
491
- content: "\f010"}
492
- .fa-power-off:before {
493
- content: "\f011"}
494
- .fa-signal:before {
495
- content: "\f012"}
496
- .fa-gear:before, .fa-cog:before {
497
- content: "\f013"}
498
- .fa-trash-o:before {
499
- content: "\f014"}
500
- .fa-home:before, .icon-home:before {
501
- content: "\f015"}
502
- .fa-file-o:before {
503
- content: "\f016"}
504
- .fa-clock-o:before {
505
- content: "\f017"}
506
- .fa-road:before {
507
- content: "\f018"}
508
- .fa-download:before {
509
- content: "\f019"}
510
- .fa-arrow-circle-o-down:before {
511
- content: "\f01a"}
512
- .fa-arrow-circle-o-up:before {
513
- content: "\f01b"}
514
- .fa-inbox:before {
515
- content: "\f01c"}
516
- .fa-play-circle-o:before {
517
- content: "\f01d"}
518
- .fa-rotate-right:before, .fa-repeat:before {
519
- content: "\f01e"}
520
- .fa-refresh:before {
521
- content: "\f021"}
522
- .fa-list-alt:before {
523
- content: "\f022"}
524
- .fa-lock:before {
525
- content: "\f023"}
526
- .fa-flag:before {
527
- content: "\f024"}
528
- .fa-headphones:before {
529
- content: "\f025"}
530
- .fa-volume-off:before {
531
- content: "\f026"}
532
- .fa-volume-down:before {
533
- content: "\f027"}
534
- .fa-volume-up:before {
535
- content: "\f028"}
536
- .fa-qrcode:before {
537
- content: "\f029"}
538
- .fa-barcode:before {
539
- content: "\f02a"}
540
- .fa-tag:before {
541
- content: "\f02b"}
542
- .fa-tags:before {
543
- content: "\f02c"}
544
- .fa-book:before, .icon-book:before {
545
- content: "\f02d"}
546
- .fa-bookmark:before {
547
- content: "\f02e"}
548
- .fa-print:before {
549
- content: "\f02f"}
550
- .fa-camera:before {
551
- content: "\f030"}
552
- .fa-font:before {
553
- content: "\f031"}
554
- .fa-bold:before {
555
- content: "\f032"}
556
- .fa-italic:before {
557
- content: "\f033"}
558
- .fa-text-height:before {
559
- content: "\f034"}
560
- .fa-text-width:before {
561
- content: "\f035"}
562
- .fa-align-left:before {
563
- content: "\f036"}
564
- .fa-align-center:before {
565
- content: "\f037"}
566
- .fa-align-right:before {
567
- content: "\f038"}
568
- .fa-align-justify:before {
569
- content: "\f039"}
570
- .fa-list:before {
571
- content: "\f03a"}
572
- .fa-dedent:before, .fa-outdent:before {
573
- content: "\f03b"}
574
- .fa-indent:before {
575
- content: "\f03c"}
576
- .fa-video-camera:before {
577
- content: "\f03d"}
578
- .fa-picture-o:before {
579
- content: "\f03e"}
580
- .fa-pencil:before {
581
- content: "\f040"}
582
- .fa-map-marker:before {
583
- content: "\f041"}
584
- .fa-adjust:before {
585
- content: "\f042"}
586
- .fa-tint:before {
587
- content: "\f043"}
588
- .fa-edit:before, .fa-pencil-square-o:before {
589
- content: "\f044"}
590
- .fa-share-square-o:before {
591
- content: "\f045"}
592
- .fa-check-square-o:before {
593
- content: "\f046"}
594
- .fa-arrows:before {
595
- content: "\f047"}
596
- .fa-step-backward:before {
597
- content: "\f048"}
598
- .fa-fast-backward:before {
599
- content: "\f049"}
600
- .fa-backward:before {
601
- content: "\f04a"}
602
- .fa-play:before {
603
- content: "\f04b"}
604
- .fa-pause:before {
605
- content: "\f04c"}
606
- .fa-stop:before {
607
- content: "\f04d"}
608
- .fa-forward:before {
609
- content: "\f04e"}
610
- .fa-fast-forward:before {
611
- content: "\f050"}
612
- .fa-step-forward:before {
613
- content: "\f051"}
614
- .fa-eject:before {
615
- content: "\f052"}
616
- .fa-chevron-left:before {
617
- content: "\f053"}
618
- .fa-chevron-right:before {
619
- content: "\f054"}
620
- .fa-plus-circle:before {
621
- content: "\f055"}
622
- .fa-minus-circle:before {
623
- content: "\f056"}
624
- .fa-times-circle:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before {
625
- content: "\f057"}
626
- .fa-check-circle:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before {
627
- content: "\f058"}
628
- .fa-question-circle:before {
629
- content: "\f059"}
630
- .fa-info-circle:before {
631
- content: "\f05a"}
632
- .fa-crosshairs:before {
633
- content: "\f05b"}
634
- .fa-times-circle-o:before {
635
- content: "\f05c"}
636
- .fa-check-circle-o:before {
637
- content: "\f05d"}
638
- .fa-ban:before {
639
- content: "\f05e"}
640
- .fa-arrow-left:before {
641
- content: "\f060"}
642
- .fa-arrow-right:before {
643
- content: "\f061"}
644
- .fa-arrow-up:before {
645
- content: "\f062"}
646
- .fa-arrow-down:before {
647
- content: "\f063"}
648
- .fa-mail-forward:before, .fa-share:before {
649
- content: "\f064"}
650
- .fa-expand:before {
651
- content: "\f065"}
652
- .fa-compress:before {
653
- content: "\f066"}
654
- .fa-plus:before {
655
- content: "\f067"}
656
- .fa-minus:before {
657
- content: "\f068"}
658
- .fa-asterisk:before {
659
- content: "\f069"}
660
- .fa-exclamation-circle:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before, .rst-content .admonition-title:before {
661
- content: "\f06a"}
662
- .fa-gift:before {
663
- content: "\f06b"}
664
- .fa-leaf:before {
665
- content: "\f06c"}
666
- .fa-fire:before, .icon-fire:before {
667
- content: "\f06d"}
668
- .fa-eye:before {
669
- content: "\f06e"}
670
- .fa-eye-slash:before {
671
- content: "\f070"}
672
- .fa-warning:before, .fa-exclamation-triangle:before {
673
- content: "\f071"}
674
- .fa-plane:before {
675
- content: "\f072"}
676
- .fa-calendar:before {
677
- content: "\f073"}
678
- .fa-random:before {
679
- content: "\f074"}
680
- .fa-comment:before {
681
- content: "\f075"}
682
- .fa-magnet:before {
683
- content: "\f076"}
684
- .fa-chevron-up:before {
685
- content: "\f077"}
686
- .fa-chevron-down:before {
687
- content: "\f078"}
688
- .fa-retweet:before {
689
- content: "\f079"}
690
- .fa-shopping-cart:before {
691
- content: "\f07a"}
692
- .fa-folder:before {
693
- content: "\f07b"}
694
- .fa-folder-open:before {
695
- content: "\f07c"}
696
- .fa-arrows-v:before {
697
- content: "\f07d"}
698
- .fa-arrows-h:before {
699
- content: "\f07e"}
700
- .fa-bar-chart-o:before {
701
- content: "\f080"}
702
- .fa-twitter-square:before {
703
- content: "\f081"}
704
- .fa-facebook-square:before {
705
- content: "\f082"}
706
- .fa-camera-retro:before {
707
- content: "\f083"}
708
- .fa-key:before {
709
- content: "\f084"}
710
- .fa-gears:before, .fa-cogs:before {
711
- content: "\f085"}
712
- .fa-comments:before {
713
- content: "\f086"}
714
- .fa-thumbs-o-up:before {
715
- content: "\f087"}
716
- .fa-thumbs-o-down:before {
717
- content: "\f088"}
718
- .fa-star-half:before {
719
- content: "\f089"}
720
- .fa-heart-o:before {
721
- content: "\f08a"}
722
- .fa-sign-out:before {
723
- content: "\f08b"}
724
- .fa-linkedin-square:before {
725
- content: "\f08c"}
726
- .fa-thumb-tack:before {
727
- content: "\f08d"}
728
- .fa-external-link:before {
729
- content: "\f08e"}
730
- .fa-sign-in:before {
731
- content: "\f090"}
732
- .fa-trophy:before {
733
- content: "\f091"}
734
- .fa-github-square:before {
735
- content: "\f092"}
736
- .fa-upload:before {
737
- content: "\f093"}
738
- .fa-lemon-o:before {
739
- content: "\f094"}
740
- .fa-phone:before {
741
- content: "\f095"}
742
- .fa-square-o:before {
743
- content: "\f096"}
744
- .fa-bookmark-o:before {
745
- content: "\f097"}
746
- .fa-phone-square:before {
747
- content: "\f098"}
748
- .fa-twitter:before {
749
- content: "\f099"}
750
- .fa-facebook:before {
751
- content: "\f09a"}
752
- .fa-github:before, .icon-github:before {
753
- content: "\f09b"}
754
- .fa-unlock:before {
755
- content: "\f09c"}
756
- .fa-credit-card:before {
757
- content: "\f09d"}
758
- .fa-rss:before {
759
- content: "\f09e"}
760
- .fa-hdd-o:before {
761
- content: "\f0a0"}
762
- .fa-bullhorn:before {
763
- content: "\f0a1"}
764
- .fa-bell:before {
765
- content: "\f0f3"}
766
- .fa-certificate:before {
767
- content: "\f0a3"}
768
- .fa-hand-o-right:before {
769
- content: "\f0a4"}
770
- .fa-hand-o-left:before {
771
- content: "\f0a5"}
772
- .fa-hand-o-up:before {
773
- content: "\f0a6"}
774
- .fa-hand-o-down:before {
775
- content: "\f0a7"}
776
- .fa-arrow-circle-left:before, .icon-circle-arrow-left:before {
777
- content: "\f0a8"}
778
- .fa-arrow-circle-right:before, .icon-circle-arrow-right:before {
779
- content: "\f0a9"}
780
- .fa-arrow-circle-up:before {
781
- content: "\f0aa"}
782
- .fa-arrow-circle-down:before {
783
- content: "\f0ab"}
784
- .fa-globe:before {
785
- content: "\f0ac"}
786
- .fa-wrench:before {
787
- content: "\f0ad"}
788
- .fa-tasks:before {
789
- content: "\f0ae"}
790
- .fa-filter:before {
791
- content: "\f0b0"}
792
- .fa-briefcase:before {
793
- content: "\f0b1"}
794
- .fa-arrows-alt:before {
795
- content: "\f0b2"}
796
- .fa-group:before, .fa-users:before {
797
- content: "\f0c0"}
798
- .fa-chain:before, .fa-link:before, .icon-link:before {
799
- content: "\f0c1"}
800
- .fa-cloud:before {
801
- content: "\f0c2"}
802
- .fa-flask:before {
803
- content: "\f0c3"}
804
- .fa-cut:before, .fa-scissors:before {
805
- content: "\f0c4"}
806
- .fa-copy:before, .fa-files-o:before {
807
- content: "\f0c5"}
808
- .fa-paperclip:before {
809
- content: "\f0c6"}
810
- .fa-save:before, .fa-floppy-o:before {
811
- content: "\f0c7"}
812
- .fa-square:before {
813
- content: "\f0c8"}
814
- .fa-bars:before {
815
- content: "\f0c9"}
816
- .fa-list-ul:before {
817
- content: "\f0ca"}
818
- .fa-list-ol:before {
819
- content: "\f0cb"}
820
- .fa-strikethrough:before {
821
- content: "\f0cc"}
822
- .fa-underline:before {
823
- content: "\f0cd"}
824
- .fa-table:before {
825
- content: "\f0ce"}
826
- .fa-magic:before {
827
- content: "\f0d0"}
828
- .fa-truck:before {
829
- content: "\f0d1"}
830
- .fa-pinterest:before {
831
- content: "\f0d2"}
832
- .fa-pinterest-square:before {
833
- content: "\f0d3"}
834
- .fa-google-plus-square:before {
835
- content: "\f0d4"}
836
- .fa-google-plus:before {
837
- content: "\f0d5"}
838
- .fa-money:before {
839
- content: "\f0d6"}
840
- .fa-caret-down:before, .wy-dropdown .caret:before, .icon-caret-down:before {
841
- content: "\f0d7"}
842
- .fa-caret-up:before {
843
- content: "\f0d8"}
844
- .fa-caret-left:before {
845
- content: "\f0d9"}
846
- .fa-caret-right:before {
847
- content: "\f0da"}
848
- .fa-columns:before {
849
- content: "\f0db"}
850
- .fa-unsorted:before, .fa-sort:before {
851
- content: "\f0dc"}
852
- .fa-sort-down:before, .fa-sort-asc:before {
853
- content: "\f0dd"}
854
- .fa-sort-up:before, .fa-sort-desc:before {
855
- content: "\f0de"}
856
- .fa-envelope:before {
857
- content: "\f0e0"}
858
- .fa-linkedin:before {
859
- content: "\f0e1"}
860
- .fa-rotate-left:before, .fa-undo:before {
861
- content: "\f0e2"}
862
- .fa-legal:before, .fa-gavel:before {
863
- content: "\f0e3"}
864
- .fa-dashboard:before, .fa-tachometer:before {
865
- content: "\f0e4"}
866
- .fa-comment-o:before {
867
- content: "\f0e5"}
868
- .fa-comments-o:before {
869
- content: "\f0e6"}
870
- .fa-flash:before, .fa-bolt:before {
871
- content: "\f0e7"}
872
- .fa-sitemap:before {
873
- content: "\f0e8"}
874
- .fa-umbrella:before {
875
- content: "\f0e9"}
876
- .fa-paste:before, .fa-clipboard:before {
877
- content: "\f0ea"}
878
- .fa-lightbulb-o:before {
879
- content: "\f0eb"}
880
- .fa-exchange:before {
881
- content: "\f0ec"}
882
- .fa-cloud-download:before {
883
- content: "\f0ed"}
884
- .fa-cloud-upload:before {
885
- content: "\f0ee"}
886
- .fa-user-md:before {
887
- content: "\f0f0"}
888
- .fa-stethoscope:before {
889
- content: "\f0f1"}
890
- .fa-suitcase:before {
891
- content: "\f0f2"}
892
- .fa-bell-o:before {
893
- content: "\f0a2"}
894
- .fa-coffee:before {
895
- content: "\f0f4"}
896
- .fa-cutlery:before {
897
- content: "\f0f5"}
898
- .fa-file-text-o:before {
899
- content: "\f0f6"}
900
- .fa-building-o:before {
901
- content: "\f0f7"}
902
- .fa-hospital-o:before {
903
- content: "\f0f8"}
904
- .fa-ambulance:before {
905
- content: "\f0f9"}
906
- .fa-medkit:before {
907
- content: "\f0fa"}
908
- .fa-fighter-jet:before {
909
- content: "\f0fb"}
910
- .fa-beer:before {
911
- content: "\f0fc"}
912
- .fa-h-square:before {
913
- content: "\f0fd"}
914
- .fa-plus-square:before {
915
- content: "\f0fe"}
916
- .fa-angle-double-left:before {
917
- content: "\f100"}
918
- .fa-angle-double-right:before {
919
- content: "\f101"}
920
- .fa-angle-double-up:before {
921
- content: "\f102"}
922
- .fa-angle-double-down:before {
923
- content: "\f103"}
924
- .fa-angle-left:before {
925
- content: "\f104"}
926
- .fa-angle-right:before {
927
- content: "\f105"}
928
- .fa-angle-up:before {
929
- content: "\f106"}
930
- .fa-angle-down:before {
931
- content: "\f107"}
932
- .fa-desktop:before {
933
- content: "\f108"}
934
- .fa-laptop:before {
935
- content: "\f109"}
936
- .fa-tablet:before {
937
- content: "\f10a"}
938
- .fa-mobile-phone:before, .fa-mobile:before {
939
- content: "\f10b"}
940
- .fa-circle-o:before {
941
- content: "\f10c"}
942
- .fa-quote-left:before {
943
- content: "\f10d"}
944
- .fa-quote-right:before {
945
- content: "\f10e"}
946
- .fa-spinner:before {
947
- content: "\f110"}
948
- .fa-circle:before {
949
- content: "\f111"}
950
- .fa-mail-reply:before, .fa-reply:before {
951
- content: "\f112"}
952
- .fa-github-alt:before {
953
- content: "\f113"}
954
- .fa-folder-o:before {
955
- content: "\f114"}
956
- .fa-folder-open-o:before {
957
- content: "\f115"}
958
- .fa-smile-o:before {
959
- content: "\f118"}
960
- .fa-frown-o:before {
961
- content: "\f119"}
962
- .fa-meh-o:before {
963
- content: "\f11a"}
964
- .fa-gamepad:before {
965
- content: "\f11b"}
966
- .fa-keyboard-o:before {
967
- content: "\f11c"}
968
- .fa-flag-o:before {
969
- content: "\f11d"}
970
- .fa-flag-checkered:before {
971
- content: "\f11e"}
972
- .fa-terminal:before {
973
- content: "\f120"}
974
- .fa-code:before {
975
- content: "\f121"}
976
- .fa-reply-all:before {
977
- content: "\f122"}
978
- .fa-mail-reply-all:before {
979
- content: "\f122"}
980
- .fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
981
- content: "\f123"}
982
- .fa-location-arrow:before {
983
- content: "\f124"}
984
- .fa-crop:before {
985
- content: "\f125"}
986
- .fa-code-fork:before {
987
- content: "\f126"}
988
- .fa-unlink:before, .fa-chain-broken:before {
989
- content: "\f127"}
990
- .fa-question:before {
991
- content: "\f128"}
992
- .fa-info:before {
993
- content: "\f129"}
994
- .fa-exclamation:before {
995
- content: "\f12a"}
996
- .fa-superscript:before {
997
- content: "\f12b"}
998
- .fa-subscript:before {
999
- content: "\f12c"}
1000
- .fa-eraser:before {
1001
- content: "\f12d"}
1002
- .fa-puzzle-piece:before {
1003
- content: "\f12e"}
1004
- .fa-microphone:before {
1005
- content: "\f130"}
1006
- .fa-microphone-slash:before {
1007
- content: "\f131"}
1008
- .fa-shield:before {
1009
- content: "\f132"}
1010
- .fa-calendar-o:before {
1011
- content: "\f133"}
1012
- .fa-fire-extinguisher:before {
1013
- content: "\f134"}
1014
- .fa-rocket:before {
1015
- content: "\f135"}
1016
- .fa-maxcdn:before {
1017
- content: "\f136"}
1018
- .fa-chevron-circle-left:before {
1019
- content: "\f137"}
1020
- .fa-chevron-circle-right:before {
1021
- content: "\f138"}
1022
- .fa-chevron-circle-up:before {
1023
- content: "\f139"}
1024
- .fa-chevron-circle-down:before {
1025
- content: "\f13a"}
1026
- .fa-html5:before {
1027
- content: "\f13b"}
1028
- .fa-css3:before {
1029
- content: "\f13c"}
1030
- .fa-anchor:before {
1031
- content: "\f13d"}
1032
- .fa-unlock-alt:before {
1033
- content: "\f13e"}
1034
- .fa-bullseye:before {
1035
- content: "\f140"}
1036
- .fa-ellipsis-h:before {
1037
- content: "\f141"}
1038
- .fa-ellipsis-v:before {
1039
- content: "\f142"}
1040
- .fa-rss-square:before {
1041
- content: "\f143"}
1042
- .fa-play-circle:before {
1043
- content: "\f144"}
1044
- .fa-ticket:before {
1045
- content: "\f145"}
1046
- .fa-minus-square:before {
1047
- content: "\f146"}
1048
- .fa-minus-square-o:before {
1049
- content: "\f147"}
1050
- .fa-level-up:before {
1051
- content: "\f148"}
1052
- .fa-level-down:before {
1053
- content: "\f149"}
1054
- .fa-check-square:before {
1055
- content: "\f14a"}
1056
- .fa-pencil-square:before {
1057
- content: "\f14b"}
1058
- .fa-external-link-square:before {
1059
- content: "\f14c"}
1060
- .fa-share-square:before {
1061
- content: "\f14d"}
1062
- .fa-compass:before {
1063
- content: "\f14e"}
1064
- .fa-toggle-down:before, .fa-caret-square-o-down:before {
1065
- content: "\f150"}
1066
- .fa-toggle-up:before, .fa-caret-square-o-up:before {
1067
- content: "\f151"}
1068
- .fa-toggle-right:before, .fa-caret-square-o-right:before {
1069
- content: "\f152"}
1070
- .fa-euro:before, .fa-eur:before {
1071
- content: "\f153"}
1072
- .fa-gbp:before {
1073
- content: "\f154"}
1074
- .fa-dollar:before, .fa-usd:before {
1075
- content: "\f155"}
1076
- .fa-rupee:before, .fa-inr:before {
1077
- content: "\f156"}
1078
- .fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
1079
- content: "\f157"}
1080
- .fa-ruble:before, .fa-rouble:before, .fa-rub:before {
1081
- content: "\f158"}
1082
- .fa-won:before, .fa-krw:before {
1083
- content: "\f159"}
1084
- .fa-bitcoin:before, .fa-btc:before {
1085
- content: "\f15a"}
1086
- .fa-file:before {
1087
- content: "\f15b"}
1088
- .fa-file-text:before {
1089
- content: "\f15c"}
1090
- .fa-sort-alpha-asc:before {
1091
- content: "\f15d"}
1092
- .fa-sort-alpha-desc:before {
1093
- content: "\f15e"}
1094
- .fa-sort-amount-asc:before {
1095
- content: "\f160"}
1096
- .fa-sort-amount-desc:before {
1097
- content: "\f161"}
1098
- .fa-sort-numeric-asc:before {
1099
- content: "\f162"}
1100
- .fa-sort-numeric-desc:before {
1101
- content: "\f163"}
1102
- .fa-thumbs-up:before {
1103
- content: "\f164"}
1104
- .fa-thumbs-down:before {
1105
- content: "\f165"}
1106
- .fa-youtube-square:before {
1107
- content: "\f166"}
1108
- .fa-youtube:before {
1109
- content: "\f167"}
1110
- .fa-xing:before {
1111
- content: "\f168"}
1112
- .fa-xing-square:before {
1113
- content: "\f169"}
1114
- .fa-youtube-play:before {
1115
- content: "\f16a"}
1116
- .fa-dropbox:before {
1117
- content: "\f16b"}
1118
- .fa-stack-overflow:before {
1119
- content: "\f16c"}
1120
- .fa-instagram:before {
1121
- content: "\f16d"}
1122
- .fa-flickr:before {
1123
- content: "\f16e"}
1124
- .fa-adn:before {
1125
- content: "\f170"}
1126
- .fa-bitbucket:before, .icon-bitbucket:before {
1127
- content: "\f171"}
1128
- .fa-bitbucket-square:before {
1129
- content: "\f172"}
1130
- .fa-tumblr:before {
1131
- content: "\f173"}
1132
- .fa-tumblr-square:before {
1133
- content: "\f174"}
1134
- .fa-long-arrow-down:before {
1135
- content: "\f175"}
1136
- .fa-long-arrow-up:before {
1137
- content: "\f176"}
1138
- .fa-long-arrow-left:before {
1139
- content: "\f177"}
1140
- .fa-long-arrow-right:before {
1141
- content: "\f178"}
1142
- .fa-apple:before {
1143
- content: "\f179"}
1144
- .fa-windows:before {
1145
- content: "\f17a"}
1146
- .fa-android:before {
1147
- content: "\f17b"}
1148
- .fa-linux:before {
1149
- content: "\f17c"}
1150
- .fa-dribbble:before {
1151
- content: "\f17d"}
1152
- .fa-skype:before {
1153
- content: "\f17e"}
1154
- .fa-foursquare:before {
1155
- content: "\f180"}
1156
- .fa-trello:before {
1157
- content: "\f181"}
1158
- .fa-female:before {
1159
- content: "\f182"}
1160
- .fa-male:before {
1161
- content: "\f183"}
1162
- .fa-gittip:before {
1163
- content: "\f184"}
1164
- .fa-sun-o:before {
1165
- content: "\f185"}
1166
- .fa-moon-o:before {
1167
- content: "\f186"}
1168
- .fa-archive:before {
1169
- content: "\f187"}
1170
- .fa-bug:before {
1171
- content: "\f188"}
1172
- .fa-vk:before {
1173
- content: "\f189"}
1174
- .fa-weibo:before {
1175
- content: "\f18a"}
1176
- .fa-renren:before {
1177
- content: "\f18b"}
1178
- .fa-pagelines:before {
1179
- content: "\f18c"}
1180
- .fa-stack-exchange:before {
1181
- content: "\f18d"}
1182
- .fa-arrow-circle-o-right:before {
1183
- content: "\f18e"}
1184
- .fa-arrow-circle-o-left:before {
1185
- content: "\f190"}
1186
- .fa-toggle-left:before, .fa-caret-square-o-left:before {
1187
- content: "\f191"}
1188
- .fa-dot-circle-o:before {
1189
- content: "\f192"}
1190
- .fa-wheelchair:before {
1191
- content: "\f193"}
1192
- .fa-vimeo-square:before {
1193
- content: "\f194"}
1194
- .fa-turkish-lira:before, .fa-try:before {
1195
- content: "\f195"}
1196
- .fa-plus-square-o:before {
1197
- content: "\f196"}
1198
- .fa, .rst-content .admonition-title, .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink, .icon, .wy-dropdown .caret, .wy-inline-validate.wy-inline-validate-success .wy-input-context, .wy-inline-validate.wy-inline-validate-danger .wy-input-context, .wy-inline-validate.wy-inline-validate-warning .wy-input-context, .wy-inline-validate.wy-inline-validate-info .wy-input-context {
1199
- font-family: inherit;
1200
- }
1201
- .fa:before, .rst-content .admonition-title:before, .rst-content h1 .headerlink:before, .rst-content h2 .headerlink:before, .rst-content h3 .headerlink:before, .rst-content h4 .headerlink:before, .rst-content h5 .headerlink:before, .rst-content h6 .headerlink:before, .rst-content dl dt .headerlink:before, .icon:before, .wy-dropdown .caret:before, .wy-inline-validate.wy-inline-validate-success .wy-input-context:before, .wy-inline-validate.wy-inline-validate-danger .wy-input-context:before, .wy-inline-validate.wy-inline-validate-warning .wy-input-context:before, .wy-inline-validate.wy-inline-validate-info .wy-input-context:before {
1202
- font-family: "FontAwesome";
1203
- display: inline-block;
1204
- font-style: normal;
1205
- font-weight: normal;
1206
- line-height: 1;
1207
- text-decoration: inherit;
1208
- }
1209
- a .fa, a .rst-content .admonition-title, .rst-content a .admonition-title, a .rst-content h1 .headerlink, .rst-content h1 a .headerlink, a .rst-content h2 .headerlink, .rst-content h2 a .headerlink, a .rst-content h3 .headerlink, .rst-content h3 a .headerlink, a .rst-content h4 .headerlink, .rst-content h4 a .headerlink, a .rst-content h5 .headerlink, .rst-content h5 a .headerlink, a .rst-content h6 .headerlink, .rst-content h6 a .headerlink, a .rst-content dl dt .headerlink, .rst-content dl dt a .headerlink, a .icon {
1210
- display: inline-block;
1211
- text-decoration: inherit;
1212
- }
1213
- .btn .fa, .btn .rst-content .admonition-title, .rst-content .btn .admonition-title, .btn .rst-content h1 .headerlink, .rst-content h1 .btn .headerlink, .btn .rst-content h2 .headerlink, .rst-content h2 .btn .headerlink, .btn .rst-content h3 .headerlink, .rst-content h3 .btn .headerlink, .btn .rst-content h4 .headerlink, .rst-content h4 .btn .headerlink, .btn .rst-content h5 .headerlink, .rst-content h5 .btn .headerlink, .btn .rst-content h6 .headerlink, .rst-content h6 .btn .headerlink, .btn .rst-content dl dt .headerlink, .rst-content dl dt .btn .headerlink, .btn .icon, .nav .fa, .nav .rst-content .admonition-title, .rst-content .nav .admonition-title, .nav .rst-content h1 .headerlink, .rst-content h1 .nav .headerlink, .nav .rst-content h2 .headerlink, .rst-content h2 .nav .headerlink, .nav .rst-content h3 .headerlink, .rst-content h3 .nav .headerlink, .nav .rst-content h4 .headerlink, .rst-content h4 .nav .headerlink, .nav .rst-content h5 .headerlink, .rst-content h5 .nav .headerlink, .nav .rst-content h6 .headerlink, .rst-content h6 .nav .headerlink, .nav .rst-content dl dt .headerlink, .rst-content dl dt .nav .headerlink, .nav .icon {
1214
- display: inline;
1215
- }
1216
- .btn .fa.fa-large, .btn .rst-content .fa-large.admonition-title, .rst-content .btn .fa-large.admonition-title, .btn .rst-content h1 .fa-large.headerlink, .rst-content h1 .btn .fa-large.headerlink, .btn .rst-content h2 .fa-large.headerlink, .rst-content h2 .btn .fa-large.headerlink, .btn .rst-content h3 .fa-large.headerlink, .rst-content h3 .btn .fa-large.headerlink, .btn .rst-content h4 .fa-large.headerlink, .rst-content h4 .btn .fa-large.headerlink, .btn .rst-content h5 .fa-large.headerlink, .rst-content h5 .btn .fa-large.headerlink, .btn .rst-content h6 .fa-large.headerlink, .rst-content h6 .btn .fa-large.headerlink, .btn .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .btn .fa-large.headerlink, .btn .fa-large.icon, .nav .fa.fa-large, .nav .rst-content .fa-large.admonition-title, .rst-content .nav .fa-large.admonition-title, .nav .rst-content h1 .fa-large.headerlink, .rst-content h1 .nav .fa-large.headerlink, .nav .rst-content h2 .fa-large.headerlink, .rst-content h2 .nav .fa-large.headerlink, .nav .rst-content h3 .fa-large.headerlink, .rst-content h3 .nav .fa-large.headerlink, .nav .rst-content h4 .fa-large.headerlink, .rst-content h4 .nav .fa-large.headerlink, .nav .rst-content h5 .fa-large.headerlink, .rst-content h5 .nav .fa-large.headerlink, .nav .rst-content h6 .fa-large.headerlink, .rst-content h6 .nav .fa-large.headerlink, .nav .rst-content dl dt .fa-large.headerlink, .rst-content dl dt .nav .fa-large.headerlink, .nav .fa-large.icon {
1217
- line-height: 0.9em;
1218
- }
1219
- .btn .fa.fa-spin, .btn .rst-content .fa-spin.admonition-title, .rst-content .btn .fa-spin.admonition-title, .btn .rst-content h1 .fa-spin.headerlink, .rst-content h1 .btn .fa-spin.headerlink, .btn .rst-content h2 .fa-spin.headerlink, .rst-content h2 .btn .fa-spin.headerlink, .btn .rst-content h3 .fa-spin.headerlink, .rst-content h3 .btn .fa-spin.headerlink, .btn .rst-content h4 .fa-spin.headerlink, .rst-content h4 .btn .fa-spin.headerlink, .btn .rst-content h5 .fa-spin.headerlink, .rst-content h5 .btn .fa-spin.headerlink, .btn .rst-content h6 .fa-spin.headerlink, .rst-content h6 .btn .fa-spin.headerlink, .btn .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .btn .fa-spin.headerlink, .btn .fa-spin.icon, .nav .fa.fa-spin, .nav .rst-content .fa-spin.admonition-title, .rst-content .nav .fa-spin.admonition-title, .nav .rst-content h1 .fa-spin.headerlink, .rst-content h1 .nav .fa-spin.headerlink, .nav .rst-content h2 .fa-spin.headerlink, .rst-content h2 .nav .fa-spin.headerlink, .nav .rst-content h3 .fa-spin.headerlink, .rst-content h3 .nav .fa-spin.headerlink, .nav .rst-content h4 .fa-spin.headerlink, .rst-content h4 .nav .fa-spin.headerlink, .nav .rst-content h5 .fa-spin.headerlink, .rst-content h5 .nav .fa-spin.headerlink, .nav .rst-content h6 .fa-spin.headerlink, .rst-content h6 .nav .fa-spin.headerlink, .nav .rst-content dl dt .fa-spin.headerlink, .rst-content dl dt .nav .fa-spin.headerlink, .nav .fa-spin.icon {
1220
- display: inline-block;
1221
- }
1222
- .btn.fa:before, .rst-content .btn.admonition-title:before, .rst-content h1 .btn.headerlink:before, .rst-content h2 .btn.headerlink:before, .rst-content h3 .btn.headerlink:before, .rst-content h4 .btn.headerlink:before, .rst-content h5 .btn.headerlink:before, .rst-content h6 .btn.headerlink:before, .rst-content dl dt .btn.headerlink:before, .btn.icon:before {
1223
- opacity: 0.5;
1224
- -webkit-transition: opacity 0.05s ease-in;
1225
- -moz-transition: opacity 0.05s ease-in;
1226
- transition: opacity 0.05s ease-in;
1227
- }
1228
- .btn.fa:hover:before, .rst-content .btn.admonition-title:hover:before, .rst-content h1 .btn.headerlink:hover:before, .rst-content h2 .btn.headerlink:hover:before, .rst-content h3 .btn.headerlink:hover:before, .rst-content h4 .btn.headerlink:hover:before, .rst-content h5 .btn.headerlink:hover:before, .rst-content h6 .btn.headerlink:hover:before, .rst-content dl dt .btn.headerlink:hover:before, .btn.icon:hover:before {
1229
- opacity: 1;
1230
- }
1231
- .btn-mini .fa:before, .btn-mini .rst-content .admonition-title:before, .rst-content .btn-mini .admonition-title:before, .btn-mini .rst-content h1 .headerlink:before, .rst-content h1 .btn-mini .headerlink:before, .btn-mini .rst-content h2 .headerlink:before, .rst-content h2 .btn-mini .headerlink:before, .btn-mini .rst-content h3 .headerlink:before, .rst-content h3 .btn-mini .headerlink:before, .btn-mini .rst-content h4 .headerlink:before, .rst-content h4 .btn-mini .headerlink:before, .btn-mini .rst-content h5 .headerlink:before, .rst-content h5 .btn-mini .headerlink:before, .btn-mini .rst-content h6 .headerlink:before, .rst-content h6 .btn-mini .headerlink:before, .btn-mini .rst-content dl dt .headerlink:before, .rst-content dl dt .btn-mini .headerlink:before, .btn-mini .icon:before {
1232
- font-size: 14px;
1233
- vertical-align: -15%}
1234
- .wy-alert, .rst-content .note, .rst-content .attention, .rst-content .caution, .rst-content .danger, .rst-content .error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .warning, .rst-content .seealso {
1235
- padding: 12px;
1236
- line-height: 24px;
1237
- margin-bottom: 24px;
1238
- background: #e7f2fa;
1239
- }
1240
- .wy-alert-title, .rst-content .admonition-title {
1241
- color: #fff;
1242
- font-weight: bold;
1243
- display: block;
1244
- color: #fff;
1245
- background: #6ab0de;
1246
- margin: -12px;
1247
- padding: 6px 12px;
1248
- margin-bottom: 12px;
1249
- }
1250
- .wy-alert.wy-alert-danger, .rst-content .wy-alert-danger.note, .rst-content .wy-alert-danger.attention, .rst-content .wy-alert-danger.caution, .rst-content .danger, .rst-content .error, .rst-content .wy-alert-danger.hint, .rst-content .wy-alert-danger.important, .rst-content .wy-alert-danger.tip, .rst-content .wy-alert-danger.warning, .rst-content .wy-alert-danger.seealso {
1251
- background: #fdf3f2;
1252
- }
1253
- .wy-alert.wy-alert-danger .wy-alert-title, .rst-content .wy-alert-danger.note .wy-alert-title, .rst-content .wy-alert-danger.attention .wy-alert-title, .rst-content .wy-alert-danger.caution .wy-alert-title, .rst-content .danger .wy-alert-title, .rst-content .error .wy-alert-title, .rst-content .wy-alert-danger.hint .wy-alert-title, .rst-content .wy-alert-danger.important .wy-alert-title, .rst-content .wy-alert-danger.tip .wy-alert-title, .rst-content .wy-alert-danger.warning .wy-alert-title, .rst-content .wy-alert-danger.seealso .wy-alert-title, .wy-alert.wy-alert-danger .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-danger .admonition-title, .rst-content .wy-alert-danger.note .admonition-title, .rst-content .wy-alert-danger.attention .admonition-title, .rst-content .wy-alert-danger.caution .admonition-title, .rst-content .danger .admonition-title, .rst-content .error .admonition-title, .rst-content .wy-alert-danger.hint .admonition-title, .rst-content .wy-alert-danger.important .admonition-title, .rst-content .wy-alert-danger.tip .admonition-title, .rst-content .wy-alert-danger.warning .admonition-title, .rst-content .wy-alert-danger.seealso .admonition-title {
1254
- background: #f29f97;
1255
- }
1256
- .wy-alert.wy-alert-warning, .rst-content .wy-alert-warning.note, .rst-content .attention, .rst-content .caution, .rst-content .wy-alert-warning.danger, .rst-content .wy-alert-warning.error, .rst-content .wy-alert-warning.hint, .rst-content .wy-alert-warning.important, .rst-content .wy-alert-warning.tip, .rst-content .warning, .rst-content .wy-alert-warning.seealso {
1257
- background: #ffedcc;
1258
- }
1259
- .wy-alert.wy-alert-warning .wy-alert-title, .rst-content .wy-alert-warning.note .wy-alert-title, .rst-content .attention .wy-alert-title, .rst-content .caution .wy-alert-title, .rst-content .wy-alert-warning.danger .wy-alert-title, .rst-content .wy-alert-warning.error .wy-alert-title, .rst-content .wy-alert-warning.hint .wy-alert-title, .rst-content .wy-alert-warning.important .wy-alert-title, .rst-content .wy-alert-warning.tip .wy-alert-title, .rst-content .warning .wy-alert-title, .rst-content .wy-alert-warning.seealso .wy-alert-title, .wy-alert.wy-alert-warning .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-warning .admonition-title, .rst-content .wy-alert-warning.note .admonition-title, .rst-content .attention .admonition-title, .rst-content .caution .admonition-title, .rst-content .wy-alert-warning.danger .admonition-title, .rst-content .wy-alert-warning.error .admonition-title, .rst-content .wy-alert-warning.hint .admonition-title, .rst-content .wy-alert-warning.important .admonition-title, .rst-content .wy-alert-warning.tip .admonition-title, .rst-content .warning .admonition-title, .rst-content .wy-alert-warning.seealso .admonition-title {
1260
- background: #f0b37e;
1261
- }
1262
- .wy-alert.wy-alert-info, .rst-content .note, .rst-content .wy-alert-info.attention, .rst-content .wy-alert-info.caution, .rst-content .wy-alert-info.danger, .rst-content .wy-alert-info.error, .rst-content .wy-alert-info.hint, .rst-content .wy-alert-info.important, .rst-content .wy-alert-info.tip, .rst-content .wy-alert-info.warning, .rst-content .seealso {
1263
- background: #e7f2fa;
1264
- }
1265
- .wy-alert.wy-alert-info .wy-alert-title, .rst-content .note .wy-alert-title, .rst-content .wy-alert-info.attention .wy-alert-title, .rst-content .wy-alert-info.caution .wy-alert-title, .rst-content .wy-alert-info.danger .wy-alert-title, .rst-content .wy-alert-info.error .wy-alert-title, .rst-content .wy-alert-info.hint .wy-alert-title, .rst-content .wy-alert-info.important .wy-alert-title, .rst-content .wy-alert-info.tip .wy-alert-title, .rst-content .wy-alert-info.warning .wy-alert-title, .rst-content .seealso .wy-alert-title, .wy-alert.wy-alert-info .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-info .admonition-title, .rst-content .note .admonition-title, .rst-content .wy-alert-info.attention .admonition-title, .rst-content .wy-alert-info.caution .admonition-title, .rst-content .wy-alert-info.danger .admonition-title, .rst-content .wy-alert-info.error .admonition-title, .rst-content .wy-alert-info.hint .admonition-title, .rst-content .wy-alert-info.important .admonition-title, .rst-content .wy-alert-info.tip .admonition-title, .rst-content .wy-alert-info.warning .admonition-title, .rst-content .seealso .admonition-title {
1266
- background: #6ab0de;
1267
- }
1268
- .wy-alert.wy-alert-success, .rst-content .wy-alert-success.note, .rst-content .wy-alert-success.attention, .rst-content .wy-alert-success.caution, .rst-content .wy-alert-success.danger, .rst-content .wy-alert-success.error, .rst-content .hint, .rst-content .important, .rst-content .tip, .rst-content .wy-alert-success.warning, .rst-content .wy-alert-success.seealso {
1269
- background: #dbfaf4;
1270
- }
1271
- .wy-alert.wy-alert-success .wy-alert-title, .rst-content .wy-alert-success.note .wy-alert-title, .rst-content .wy-alert-success.attention .wy-alert-title, .rst-content .wy-alert-success.caution .wy-alert-title, .rst-content .wy-alert-success.danger .wy-alert-title, .rst-content .wy-alert-success.error .wy-alert-title, .rst-content .hint .wy-alert-title, .rst-content .important .wy-alert-title, .rst-content .tip .wy-alert-title, .rst-content .wy-alert-success.warning .wy-alert-title, .rst-content .wy-alert-success.seealso .wy-alert-title, .wy-alert.wy-alert-success .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-success .admonition-title, .rst-content .wy-alert-success.note .admonition-title, .rst-content .wy-alert-success.attention .admonition-title, .rst-content .wy-alert-success.caution .admonition-title, .rst-content .wy-alert-success.danger .admonition-title, .rst-content .wy-alert-success.error .admonition-title, .rst-content .hint .admonition-title, .rst-content .important .admonition-title, .rst-content .tip .admonition-title, .rst-content .wy-alert-success.warning .admonition-title, .rst-content .wy-alert-success.seealso .admonition-title {
1272
- background: #1abc9c;
1273
- }
1274
- .wy-alert.wy-alert-neutral, .rst-content .wy-alert-neutral.note, .rst-content .wy-alert-neutral.attention, .rst-content .wy-alert-neutral.caution, .rst-content .wy-alert-neutral.danger, .rst-content .wy-alert-neutral.error, .rst-content .wy-alert-neutral.hint, .rst-content .wy-alert-neutral.important, .rst-content .wy-alert-neutral.tip, .rst-content .wy-alert-neutral.warning, .rst-content .wy-alert-neutral.seealso {
1275
- background: #f3f6f6;
1276
- }
1277
- .wy-alert.wy-alert-neutral .wy-alert-title, .rst-content .wy-alert-neutral.note .wy-alert-title, .rst-content .wy-alert-neutral.attention .wy-alert-title, .rst-content .wy-alert-neutral.caution .wy-alert-title, .rst-content .wy-alert-neutral.danger .wy-alert-title, .rst-content .wy-alert-neutral.error .wy-alert-title, .rst-content .wy-alert-neutral.hint .wy-alert-title, .rst-content .wy-alert-neutral.important .wy-alert-title, .rst-content .wy-alert-neutral.tip .wy-alert-title, .rst-content .wy-alert-neutral.warning .wy-alert-title, .rst-content .wy-alert-neutral.seealso .wy-alert-title, .wy-alert.wy-alert-neutral .rst-content .admonition-title, .rst-content .wy-alert.wy-alert-neutral .admonition-title, .rst-content .wy-alert-neutral.note .admonition-title, .rst-content .wy-alert-neutral.attention .admonition-title, .rst-content .wy-alert-neutral.caution .admonition-title, .rst-content .wy-alert-neutral.danger .admonition-title, .rst-content .wy-alert-neutral.error .admonition-title, .rst-content .wy-alert-neutral.hint .admonition-title, .rst-content .wy-alert-neutral.important .admonition-title, .rst-content .wy-alert-neutral.tip .admonition-title, .rst-content .wy-alert-neutral.warning .admonition-title, .rst-content .wy-alert-neutral.seealso .admonition-title {
1278
- color: #404040;
1279
- background: #e1e4e5;
1280
- }
1281
- .wy-alert.wy-alert-neutral a, .rst-content .wy-alert-neutral.note a, .rst-content .wy-alert-neutral.attention a, .rst-content .wy-alert-neutral.caution a, .rst-content .wy-alert-neutral.danger a, .rst-content .wy-alert-neutral.error a, .rst-content .wy-alert-neutral.hint a, .rst-content .wy-alert-neutral.important a, .rst-content .wy-alert-neutral.tip a, .rst-content .wy-alert-neutral.warning a, .rst-content .wy-alert-neutral.seealso a {
1282
- color: #5ce0aa;
1283
- }
1284
- .wy-alert p:last-child, .rst-content .note p:last-child, .rst-content .attention p:last-child, .rst-content .caution p:last-child, .rst-content .danger p:last-child, .rst-content .error p:last-child, .rst-content .hint p:last-child, .rst-content .important p:last-child, .rst-content .tip p:last-child, .rst-content .warning p:last-child, .rst-content .seealso p:last-child {
1285
- margin-bottom: 0;
1286
- }
1287
- .wy-tray-container {
1288
- position: fixed;
1289
- bottom: 0px;
1290
- left: 0;
1291
- z-index: 600;
1292
- }
1293
- .wy-tray-container li {
1294
- display: block;
1295
- width: 300px;
1296
- background: transparent;
1297
- color: #fff;
1298
- text-align: center;
1299
- box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
1300
- padding: 0 24px;
1301
- min-width: 20%;
1302
- opacity: 0;
1303
- height: 0;
1304
- line-height: 60px;
1305
- overflow: hidden;
1306
- -webkit-transition: all 0.3s ease-in;
1307
- -moz-transition: all 0.3s ease-in;
1308
- transition: all 0.3s ease-in;
1309
- }
1310
- .wy-tray-container li.wy-tray-item-success {
1311
- background: #27ae60;
1312
- }
1313
- .wy-tray-container li.wy-tray-item-info {
1314
- background: #5ce0aa;
1315
- }
1316
- .wy-tray-container li.wy-tray-item-warning {
1317
- background: #e67e22;
1318
- }
1319
- .wy-tray-container li.wy-tray-item-danger {
1320
- background: #e74c3c;
1321
- }
1322
- .wy-tray-container li.on {
1323
- opacity: 1;
1324
- height: 60px;
1325
- }
1326
- @media screen and (max-width: 768px) {
1327
- .wy-tray-container {
1328
- bottom: auto;
1329
- top: 0;
1330
- width: 100%}
1331
- .wy-tray-container li {
1332
- width: 100%}
1333
- }button {
1334
- font-size: 100%;
1335
- margin: 0;
1336
- vertical-align: baseline;
1337
- *vertical-align: middle;
1338
- cursor: pointer;
1339
- line-height: normal;
1340
- -webkit-appearance: button;
1341
- *overflow: visible;
1342
- }
1343
- button::-moz-focus-inner, input::-moz-focus-inner {
1344
- border: 0;
1345
- padding: 0;
1346
- }
1347
- button[disabled] {
1348
- cursor: default;
1349
- }
1350
- .btn {
1351
- display: inline-block;
1352
- border-radius: 2px;
1353
- line-height: normal;
1354
- white-space: nowrap;
1355
- text-align: center;
1356
- cursor: pointer;
1357
- font-size: 100%;
1358
- padding: 6px 12px 8px 12px;
1359
- color: #fff;
1360
- border: 1px solid rgba(0, 0, 0, 0.1);
1361
- background-color: #27ae60;
1362
- text-decoration: none;
1363
- font-weight: normal;
1364
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
1365
- box-shadow: 0px 1px 2px -1px rgba(255, 255, 255, 0.5) inset, 0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset;
1366
- outline-none: false;
1367
- vertical-align: middle;
1368
- *display: inline;
1369
- zoom: 1;
1370
- -webkit-user-drag: none;
1371
- -webkit-user-select: none;
1372
- -moz-user-select: none;
1373
- -ms-user-select: none;
1374
- user-select: none;
1375
- -webkit-transition: all 0.1s linear;
1376
- -moz-transition: all 0.1s linear;
1377
- transition: all 0.1s linear;
1378
- }
1379
- .btn-hover {
1380
- background: #2e8ece;
1381
- color: #fff;
1382
- }
1383
- .btn:hover {
1384
- background: #2cc36b;
1385
- color: #fff;
1386
- }
1387
- .btn:focus {
1388
- background: #2cc36b;
1389
- outline: 0;
1390
- }
1391
- .btn:active {
1392
- box-shadow: 0px -1px 0px 0px rgba(0, 0, 0, 0.05) inset, 0px 2px 0px 0px rgba(0, 0, 0, 0.1) inset;
1393
- padding: 8px 12px 6px 12px;
1394
- }
1395
- .btn:visited {
1396
- color: #fff;
1397
- }
1398
- .btn:disabled {
1399
- background-image: none;
1400
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1401
- filter: alpha(opacity=40);
1402
- opacity: 0.4;
1403
- cursor: not-allowed;
1404
- box-shadow: none;
1405
- }
1406
- .btn-disabled {
1407
- background-image: none;
1408
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1409
- filter: alpha(opacity=40);
1410
- opacity: 0.4;
1411
- cursor: not-allowed;
1412
- box-shadow: none;
1413
- }
1414
- .btn-disabled:hover, .btn-disabled:focus, .btn-disabled:active {
1415
- background-image: none;
1416
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1417
- filter: alpha(opacity=40);
1418
- opacity: 0.4;
1419
- cursor: not-allowed;
1420
- box-shadow: none;
1421
- }
1422
- .btn::-moz-focus-inner {
1423
- padding: 0;
1424
- border: 0;
1425
- }
1426
- .btn-small {
1427
- font-size: 80%}
1428
- .btn-info {
1429
- background-color: #5ce0aa !important;
1430
- }
1431
- .btn-info:hover {
1432
- background-color: #2e8ece !important;
1433
- }
1434
- .btn-neutral {
1435
- background-color: #f3f6f6 !important;
1436
- color: #404040 !important;
1437
- }
1438
- .btn-neutral:hover {
1439
- background-color: #e5ebeb !important;
1440
- color: #404040;
1441
- }
1442
- .btn-neutral:visited {
1443
- color: #404040 !important;
1444
- }
1445
- .btn-success {
1446
- background-color: #27ae60 !important;
1447
- }
1448
- .btn-success:hover {
1449
- background-color: #295 !important;
1450
- }
1451
- .btn-danger {
1452
- background-color: #e74c3c !important;
1453
- }
1454
- .btn-danger:hover {
1455
- background-color: #ea6153 !important;
1456
- }
1457
- .btn-warning {
1458
- background-color: #e67e22 !important;
1459
- }
1460
- .btn-warning:hover {
1461
- background-color: #e98b39 !important;
1462
- }
1463
- .btn-invert {
1464
- background-color: #222;
1465
- }
1466
- .btn-invert:hover {
1467
- background-color: #2f2f2f !important;
1468
- }
1469
- .btn-link {
1470
- background-color: transparent !important;
1471
- color: #5ce0aa;
1472
- box-shadow: none;
1473
- border-color: transparent !important;
1474
- }
1475
- .btn-link:hover {
1476
- background-color: transparent !important;
1477
- color: #409ad5 !important;
1478
- box-shadow: none;
1479
- }
1480
- .btn-link:active {
1481
- background-color: transparent !important;
1482
- color: #409ad5 !important;
1483
- box-shadow: none;
1484
- }
1485
- .btn-link:visited {
1486
- color: #229B7D;
1487
- }
1488
- .wy-btn-group .btn, .wy-control .btn {
1489
- vertical-align: middle;
1490
- }
1491
- .wy-btn-group {
1492
- margin-bottom: 24px;
1493
- *zoom: 1;
1494
- }
1495
- .wy-btn-group:before, .wy-btn-group:after {
1496
- display: table;
1497
- content: ""}
1498
- .wy-btn-group:after {
1499
- clear: both;
1500
- }
1501
- .wy-dropdown {
1502
- position: relative;
1503
- display: inline-block;
1504
- }
1505
- .wy-dropdown-menu {
1506
- position: absolute;
1507
- left: 0;
1508
- display: none;
1509
- float: left;
1510
- top: 100%;
1511
- min-width: 100%;
1512
- background: #fcfcfc;
1513
- z-index: 100;
1514
- border: solid 1px #cfd7dd;
1515
- box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
1516
- padding: 12px;
1517
- }
1518
- .wy-dropdown-menu>dd>a {
1519
- display: block;
1520
- clear: both;
1521
- color: #404040;
1522
- white-space: nowrap;
1523
- font-size: 90%;
1524
- padding: 0 12px;
1525
- cursor: pointer;
1526
- }
1527
- .wy-dropdown-menu>dd>a:hover {
1528
- background: #5ce0aa;
1529
- color: #fff;
1530
- }
1531
- .wy-dropdown-menu>dd.divider {
1532
- border-top: solid 1px #cfd7dd;
1533
- margin: 6px 0;
1534
- }
1535
- .wy-dropdown-menu>dd.search {
1536
- padding-bottom: 12px;
1537
- }
1538
- .wy-dropdown-menu>dd.search input[type="search"] {
1539
- width: 100%}
1540
- .wy-dropdown-menu>dd.call-to-action {
1541
- background: #e3e3e3;
1542
- text-transform: uppercase;
1543
- font-weight: 500;
1544
- font-size: 80%}
1545
- .wy-dropdown-menu>dd.call-to-action:hover {
1546
- background: #e3e3e3;
1547
- }
1548
- .wy-dropdown-menu>dd.call-to-action .btn {
1549
- color: #fff;
1550
- }
1551
- .wy-dropdown.wy-dropdown-up .wy-dropdown-menu {
1552
- bottom: 100%;
1553
- top: auto;
1554
- left: auto;
1555
- right: 0;
1556
- }
1557
- .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu {
1558
- background: #fcfcfc;
1559
- margin-top: 2px;
1560
- }
1561
- .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a {
1562
- padding: 6px 12px;
1563
- }
1564
- .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover {
1565
- background: #5ce0aa;
1566
- color: #fff;
1567
- }
1568
- .wy-dropdown.wy-dropdown-left .wy-dropdown-menu {
1569
- right: 0;
1570
- text-align: right;
1571
- }
1572
- .wy-dropdown-arrow:before {
1573
- content: " ";
1574
- border-bottom: 5px solid #f5f5f5;
1575
- border-left: 5px solid transparent;
1576
- border-right: 5px solid transparent;
1577
- position: absolute;
1578
- display: block;
1579
- top: -4px;
1580
- left: 50%;
1581
- margin-left: -3px;
1582
- }
1583
- .wy-dropdown-arrow.wy-dropdown-arrow-left:before {
1584
- left: 11px;
1585
- }
1586
- .wy-form-stacked select {
1587
- display: block;
1588
- }
1589
- .wy-form-aligned input, .wy-form-aligned textarea, .wy-form-aligned select, .wy-form-aligned .wy-help-inline, .wy-form-aligned label {
1590
- display: inline-block;
1591
- *display: inline;
1592
- *zoom: 1;
1593
- vertical-align: middle;
1594
- }
1595
- .wy-form-aligned .wy-control-group>label {
1596
- display: inline-block;
1597
- vertical-align: middle;
1598
- width: 10em;
1599
- margin: 6px 12px 0 0;
1600
- float: left;
1601
- }
1602
- .wy-form-aligned .wy-control {
1603
- float: left;
1604
- }
1605
- .wy-form-aligned .wy-control label {
1606
- display: block;
1607
- }
1608
- .wy-form-aligned .wy-control select {
1609
- margin-top: 6px;
1610
- }
1611
- fieldset {
1612
- border: 0;
1613
- margin: 0;
1614
- padding: 0;
1615
- }
1616
- legend {
1617
- display: block;
1618
- width: 100%;
1619
- border: 0;
1620
- padding: 0;
1621
- white-space: normal;
1622
- margin-bottom: 24px;
1623
- font-size: 150%;
1624
- *margin-left: -7px;
1625
- }
1626
- label {
1627
- display: block;
1628
- margin: 0 0 0.3125em 0;
1629
- color: #999;
1630
- font-size: 90%}
1631
- input, select, textarea {
1632
- font-size: 100%;
1633
- margin: 0;
1634
- vertical-align: baseline;
1635
- *vertical-align: middle;
1636
- }
1637
- .wy-control-group {
1638
- margin-bottom: 24px;
1639
- *zoom: 1;
1640
- max-width: 68em;
1641
- margin-left: auto;
1642
- margin-right: auto;
1643
- *zoom: 1;
1644
- }
1645
- .wy-control-group:before, .wy-control-group:after {
1646
- display: table;
1647
- content: ""}
1648
- .wy-control-group:after {
1649
- clear: both;
1650
- }
1651
- .wy-control-group:before, .wy-control-group:after {
1652
- display: table;
1653
- content: ""}
1654
- .wy-control-group:after {
1655
- clear: both;
1656
- }
1657
- .wy-control-group.wy-control-group-required>label:after {
1658
- content: " *";
1659
- color: #e74c3c;
1660
- }
1661
- .wy-control-group .wy-form-full, .wy-control-group .wy-form-halves, .wy-control-group .wy-form-thirds {
1662
- padding-bottom: 12px;
1663
- }
1664
- .wy-control-group .wy-form-full select, .wy-control-group .wy-form-halves select, .wy-control-group .wy-form-thirds select {
1665
- width: 100%}
1666
- .wy-control-group .wy-form-full input[type="text"], .wy-control-group .wy-form-full input[type="password"], .wy-control-group .wy-form-full input[type="email"], .wy-control-group .wy-form-full input[type="url"], .wy-control-group .wy-form-full input[type="date"], .wy-control-group .wy-form-full input[type="month"], .wy-control-group .wy-form-full input[type="time"], .wy-control-group .wy-form-full input[type="datetime"], .wy-control-group .wy-form-full input[type="datetime-local"], .wy-control-group .wy-form-full input[type="week"], .wy-control-group .wy-form-full input[type="number"], .wy-control-group .wy-form-full input[type="search"], .wy-control-group .wy-form-full input[type="tel"], .wy-control-group .wy-form-full input[type="color"], .wy-control-group .wy-form-halves input[type="text"], .wy-control-group .wy-form-halves input[type="password"], .wy-control-group .wy-form-halves input[type="email"], .wy-control-group .wy-form-halves input[type="url"], .wy-control-group .wy-form-halves input[type="date"], .wy-control-group .wy-form-halves input[type="month"], .wy-control-group .wy-form-halves input[type="time"], .wy-control-group .wy-form-halves input[type="datetime"], .wy-control-group .wy-form-halves input[type="datetime-local"], .wy-control-group .wy-form-halves input[type="week"], .wy-control-group .wy-form-halves input[type="number"], .wy-control-group .wy-form-halves input[type="search"], .wy-control-group .wy-form-halves input[type="tel"], .wy-control-group .wy-form-halves input[type="color"], .wy-control-group .wy-form-thirds input[type="text"], .wy-control-group .wy-form-thirds input[type="password"], .wy-control-group .wy-form-thirds input[type="email"], .wy-control-group .wy-form-thirds input[type="url"], .wy-control-group .wy-form-thirds input[type="date"], .wy-control-group .wy-form-thirds input[type="month"], .wy-control-group .wy-form-thirds input[type="time"], .wy-control-group .wy-form-thirds input[type="datetime"], .wy-control-group .wy-form-thirds input[type="datetime-local"], .wy-control-group .wy-form-thirds input[type="week"], .wy-control-group .wy-form-thirds input[type="number"], .wy-control-group .wy-form-thirds input[type="search"], .wy-control-group .wy-form-thirds input[type="tel"], .wy-control-group .wy-form-thirds input[type="color"] {
1667
- width: 100%}
1668
- .wy-control-group .wy-form-full {
1669
- display: block;
1670
- float: left;
1671
- margin-right: 2.35765%;
1672
- width: 100%;
1673
- margin-right: 0;
1674
- }
1675
- .wy-control-group .wy-form-full:last-child {
1676
- margin-right: 0;
1677
- }
1678
- .wy-control-group .wy-form-halves {
1679
- display: block;
1680
- float: left;
1681
- margin-right: 2.35765%;
1682
- width: 48.82117%}
1683
- .wy-control-group .wy-form-halves:last-child {
1684
- margin-right: 0;
1685
- }
1686
- .wy-control-group .wy-form-halves:nth-of-type(2n) {
1687
- margin-right: 0;
1688
- }
1689
- .wy-control-group .wy-form-halves:nth-of-type(2n+1) {
1690
- clear: left;
1691
- }
1692
- .wy-control-group .wy-form-thirds {
1693
- display: block;
1694
- float: left;
1695
- margin-right: 2.35765%;
1696
- width: 31.76157%}
1697
- .wy-control-group .wy-form-thirds:last-child {
1698
- margin-right: 0;
1699
- }
1700
- .wy-control-group .wy-form-thirds:nth-of-type(3n) {
1701
- margin-right: 0;
1702
- }
1703
- .wy-control-group .wy-form-thirds:nth-of-type(3n+1) {
1704
- clear: left;
1705
- }
1706
- .wy-control-group.wy-control-group-no-input .wy-control {
1707
- margin: 6px 0 0 0;
1708
- font-size: 90%}
1709
- .wy-control-no-input {
1710
- display: inline-block;
1711
- margin: 6px 0 0 0;
1712
- font-size: 90%}
1713
- .wy-control-group.fluid-input input[type="text"], .wy-control-group.fluid-input input[type="password"], .wy-control-group.fluid-input input[type="email"], .wy-control-group.fluid-input input[type="url"], .wy-control-group.fluid-input input[type="date"], .wy-control-group.fluid-input input[type="month"], .wy-control-group.fluid-input input[type="time"], .wy-control-group.fluid-input input[type="datetime"], .wy-control-group.fluid-input input[type="datetime-local"], .wy-control-group.fluid-input input[type="week"], .wy-control-group.fluid-input input[type="number"], .wy-control-group.fluid-input input[type="search"], .wy-control-group.fluid-input input[type="tel"], .wy-control-group.fluid-input input[type="color"] {
1714
- width: 100%}
1715
- .wy-form-message-inline {
1716
- display: inline-block;
1717
- padding-left: 0.3em;
1718
- color: #666;
1719
- vertical-align: middle;
1720
- font-size: 90%}
1721
- .wy-form-message {
1722
- display: block;
1723
- color: #999;
1724
- font-size: 70%;
1725
- margin-top: 0.3125em;
1726
- font-style: italic;
1727
- }
1728
- input {
1729
- line-height: normal;
1730
- }
1731
- input[type="button"], input[type="reset"], input[type="submit"] {
1732
- -webkit-appearance: button;
1733
- cursor: pointer;
1734
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
1735
- *overflow: visible;
1736
- }
1737
- input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="date"], input[type="month"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="week"], input[type="number"], input[type="search"], input[type="tel"], input[type="color"] {
1738
- -webkit-appearance: none;
1739
- padding: 6px;
1740
- display: inline-block;
1741
- border: 1px solid #ccc;
1742
- font-size: 80%;
1743
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
1744
- box-shadow: inset 0 1px 3px #ddd;
1745
- border-radius: 0;
1746
- -webkit-transition: border 0.3s linear;
1747
- -moz-transition: border 0.3s linear;
1748
- transition: border 0.3s linear;
1749
- }
1750
- input[type="datetime-local"] {
1751
- padding: 0.34375em 0.625em;
1752
- }
1753
- input[disabled] {
1754
- cursor: default;
1755
- }
1756
- input[type="checkbox"], input[type="radio"] {
1757
- -webkit-box-sizing: border-box;
1758
- -moz-box-sizing: border-box;
1759
- box-sizing: border-box;
1760
- padding: 0;
1761
- margin-right: 0.3125em;
1762
- *height: 13px;
1763
- *width: 13px;
1764
- }
1765
- input[type="search"] {
1766
- -webkit-box-sizing: border-box;
1767
- -moz-box-sizing: border-box;
1768
- box-sizing: border-box;
1769
- }
1770
- input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
1771
- -webkit-appearance: none;
1772
- }
1773
- input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus {
1774
- outline: 0;
1775
- outline: thin dotted \9;
1776
- border-color: #333;
1777
- }
1778
- input.no-focus:focus {
1779
- border-color: #ccc !important;
1780
- }
1781
- input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus {
1782
- outline: thin dotted #333;
1783
- outline: 1px auto #129fea;
1784
- }
1785
- input[type="text"][disabled], input[type="password"][disabled], input[type="email"][disabled], input[type="url"][disabled], input[type="date"][disabled], input[type="month"][disabled], input[type="time"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="week"][disabled], input[type="number"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="color"][disabled] {
1786
- cursor: not-allowed;
1787
- background-color: #f3f6f6;
1788
- color: #cad2d3;
1789
- }
1790
- input:focus:invalid, textarea:focus:invalid, select:focus:invalid {
1791
- color: #e74c3c;
1792
- border: 1px solid #e74c3c;
1793
- }
1794
- input:focus:invalid:focus, textarea:focus:invalid:focus, select:focus:invalid:focus {
1795
- border-color: #e74c3c;
1796
- }
1797
- input[type="file"]:focus:invalid:focus, input[type="radio"]:focus:invalid:focus, input[type="checkbox"]:focus:invalid:focus {
1798
- outline-color: #e74c3c;
1799
- }
1800
- input.wy-input-large {
1801
- padding: 12px;
1802
- font-size: 100%}
1803
- textarea {
1804
- overflow: auto;
1805
- vertical-align: top;
1806
- width: 100%;
1807
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
1808
- }
1809
- select, textarea {
1810
- padding: 0.5em 0.625em;
1811
- display: inline-block;
1812
- border: 1px solid #ccc;
1813
- font-size: 80%;
1814
- box-shadow: inset 0 1px 3px #ddd;
1815
- -webkit-transition: border 0.3s linear;
1816
- -moz-transition: border 0.3s linear;
1817
- transition: border 0.3s linear;
1818
- }
1819
- select {
1820
- border: 1px solid #ccc;
1821
- background-color: #fff;
1822
- }
1823
- select[multiple] {
1824
- height: auto;
1825
- }
1826
- select:focus, textarea:focus {
1827
- outline: 0;
1828
- }
1829
- select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
1830
- cursor: not-allowed;
1831
- background-color: #fff;
1832
- color: #cad2d3;
1833
- border-color: transparent;
1834
- }
1835
- .wy-checkbox, .wy-radio {
1836
- margin: 6px 0;
1837
- color: #404040;
1838
- display: block;
1839
- }
1840
- .wy-checkbox input, .wy-radio input {
1841
- vertical-align: baseline;
1842
- }
1843
- .wy-form-message-inline {
1844
- display: inline-block;
1845
- *display: inline;
1846
- *zoom: 1;
1847
- vertical-align: middle;
1848
- }
1849
- .wy-input-prefix, .wy-input-suffix {
1850
- white-space: nowrap;
1851
- }
1852
- .wy-input-prefix .wy-input-context, .wy-input-suffix .wy-input-context {
1853
- padding: 6px;
1854
- display: inline-block;
1855
- font-size: 80%;
1856
- background-color: #f3f6f6;
1857
- border: solid 1px #ccc;
1858
- color: #999;
1859
- }
1860
- .wy-input-suffix .wy-input-context {
1861
- border-left: 0;
1862
- }
1863
- .wy-input-prefix .wy-input-context {
1864
- border-right: 0;
1865
- }
1866
- .wy-control-group.wy-control-group-error .wy-form-message, .wy-control-group.wy-control-group-error>label {
1867
- color: #e74c3c;
1868
- }
1869
- .wy-control-group.wy-control-group-error input[type="text"], .wy-control-group.wy-control-group-error input[type="password"], .wy-control-group.wy-control-group-error input[type="email"], .wy-control-group.wy-control-group-error input[type="url"], .wy-control-group.wy-control-group-error input[type="date"], .wy-control-group.wy-control-group-error input[type="month"], .wy-control-group.wy-control-group-error input[type="time"], .wy-control-group.wy-control-group-error input[type="datetime"], .wy-control-group.wy-control-group-error input[type="datetime-local"], .wy-control-group.wy-control-group-error input[type="week"], .wy-control-group.wy-control-group-error input[type="number"], .wy-control-group.wy-control-group-error input[type="search"], .wy-control-group.wy-control-group-error input[type="tel"], .wy-control-group.wy-control-group-error input[type="color"] {
1870
- border: solid 1px #e74c3c;
1871
- }
1872
- .wy-control-group.wy-control-group-error textarea {
1873
- border: solid 1px #e74c3c;
1874
- }
1875
- .wy-inline-validate {
1876
- white-space: nowrap;
1877
- }
1878
- .wy-inline-validate .wy-input-context {
1879
- padding: 0.5em 0.625em;
1880
- display: inline-block;
1881
- font-size: 80%}
1882
- .wy-inline-validate.wy-inline-validate-success .wy-input-context {
1883
- color: #27ae60;
1884
- }
1885
- .wy-inline-validate.wy-inline-validate-danger .wy-input-context {
1886
- color: #e74c3c;
1887
- }
1888
- .wy-inline-validate.wy-inline-validate-warning .wy-input-context {
1889
- color: #e67e22;
1890
- }
1891
- .wy-inline-validate.wy-inline-validate-info .wy-input-context {
1892
- color: #5ce0aa;
1893
- }
1894
- .rotate-90 {
1895
- -webkit-transform: rotate(90deg);
1896
- -moz-transform: rotate(90deg);
1897
- -ms-transform: rotate(90deg);
1898
- -o-transform: rotate(90deg);
1899
- transform: rotate(90deg);
1900
- }
1901
- .rotate-180 {
1902
- -webkit-transform: rotate(180deg);
1903
- -moz-transform: rotate(180deg);
1904
- -ms-transform: rotate(180deg);
1905
- -o-transform: rotate(180deg);
1906
- transform: rotate(180deg);
1907
- }
1908
- .rotate-270 {
1909
- -webkit-transform: rotate(270deg);
1910
- -moz-transform: rotate(270deg);
1911
- -ms-transform: rotate(270deg);
1912
- -o-transform: rotate(270deg);
1913
- transform: rotate(270deg);
1914
- }
1915
- .mirror {
1916
- -webkit-transform: scaleX(-1);
1917
- -moz-transform: scaleX(-1);
1918
- -ms-transform: scaleX(-1);
1919
- -o-transform: scaleX(-1);
1920
- transform: scaleX(-1);
1921
- }
1922
- .mirror.rotate-90 {
1923
- -webkit-transform: scaleX(-1) rotate(90deg);
1924
- -moz-transform: scaleX(-1) rotate(90deg);
1925
- -ms-transform: scaleX(-1) rotate(90deg);
1926
- -o-transform: scaleX(-1) rotate(90deg);
1927
- transform: scaleX(-1) rotate(90deg);
1928
- }
1929
- .mirror.rotate-180 {
1930
- -webkit-transform: scaleX(-1) rotate(180deg);
1931
- -moz-transform: scaleX(-1) rotate(180deg);
1932
- -ms-transform: scaleX(-1) rotate(180deg);
1933
- -o-transform: scaleX(-1) rotate(180deg);
1934
- transform: scaleX(-1) rotate(180deg);
1935
- }
1936
- .mirror.rotate-270 {
1937
- -webkit-transform: scaleX(-1) rotate(270deg);
1938
- -moz-transform: scaleX(-1) rotate(270deg);
1939
- -ms-transform: scaleX(-1) rotate(270deg);
1940
- -o-transform: scaleX(-1) rotate(270deg);
1941
- transform: scaleX(-1) rotate(270deg);
1942
- }
1943
- @media only screen and (max-width: 480px) {
1944
- .wy-form button[type="submit"] {
1945
- margin: 0.7em 0 0;
1946
- }
1947
- .wy-form input[type="text"], .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
1948
- margin-bottom: 0.3em;
1949
- display: block;
1950
- }
1951
- .wy-form label {
1952
- margin-bottom: 0.3em;
1953
- display: block;
1954
- }
1955
- .wy-form input[type="password"], .wy-form input[type="email"], .wy-form input[type="url"], .wy-form input[type="date"], .wy-form input[type="month"], .wy-form input[type="time"], .wy-form input[type="datetime"], .wy-form input[type="datetime-local"], .wy-form input[type="week"], .wy-form input[type="number"], .wy-form input[type="search"], .wy-form input[type="tel"], .wy-form input[type="color"] {
1956
- margin-bottom: 0;
1957
- }
1958
- .wy-form-aligned .wy-control-group label {
1959
- margin-bottom: 0.3em;
1960
- text-align: left;
1961
- display: block;
1962
- width: 100%}
1963
- .wy-form-aligned .wy-control {
1964
- margin: 1.5em 0 0 0;
1965
- }
1966
- .wy-form .wy-help-inline, .wy-form-message-inline, .wy-form-message {
1967
- display: block;
1968
- font-size: 80%;
1969
- padding: 6px 0;
1970
- }
1971
- }@media screen and (max-width: 768px) {
1972
- .tablet-hide {
1973
- display: none;
1974
- }
1975
- }@media screen and (max-width: 480px) {
1976
- .mobile-hide {
1977
- display: none;
1978
- }
1979
- }.float-left {
1980
- float: left;
1981
- }
1982
- .float-right {
1983
- float: right;
1984
- }
1985
- .full-width {
1986
- width: 100%}
1987
- .wy-table, .rst-content table.docutils, .rst-content table.field-list {
1988
- border-collapse: collapse;
1989
- border-spacing: 0;
1990
- empty-cells: show;
1991
- margin-bottom: 24px;
1992
- }
1993
- .wy-table caption, .rst-content table.docutils caption, .rst-content table.field-list caption {
1994
- color: #000;
1995
- font: italic 85%/1 arial, sans-serif;
1996
- padding: 1em 0;
1997
- text-align: center;
1998
- }
1999
- .wy-table td, .rst-content table.docutils td, .rst-content table.field-list td, .wy-table th, .rst-content table.docutils th, .rst-content table.field-list th {
2000
- font-size: 90%;
2001
- margin: 0;
2002
- overflow: visible;
2003
- padding: 8px 16px;
2004
- }
2005
- .wy-table td:first-child, .rst-content table.docutils td:first-child, .rst-content table.field-list td:first-child, .wy-table th:first-child, .rst-content table.docutils th:first-child, .rst-content table.field-list th:first-child {
2006
- border-left-width: 0;
2007
- }
2008
- .wy-table thead, .rst-content table.docutils thead, .rst-content table.field-list thead {
2009
- color: #000;
2010
- text-align: left;
2011
- vertical-align: bottom;
2012
- white-space: nowrap;
2013
- }
2014
- .wy-table thead th, .rst-content table.docutils thead th, .rst-content table.field-list thead th {
2015
- font-weight: bold;
2016
- border-bottom: solid 2px #e1e4e5;
2017
- }
2018
- .wy-table td, .rst-content table.docutils td, .rst-content table.field-list td {
2019
- background-color: transparent;
2020
- vertical-align: middle;
2021
- }
2022
- .wy-table td p, .rst-content table.docutils td p, .rst-content table.field-list td p {
2023
- line-height: 18px;
2024
- margin-bottom: 0;
2025
- }
2026
- .wy-table .wy-table-cell-min, .rst-content table.docutils .wy-table-cell-min, .rst-content table.field-list .wy-table-cell-min {
2027
- width: 1%;
2028
- padding-right: 0;
2029
- }
2030
- .wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox], .wy-table .wy-table-cell-min input[type=checkbox], .rst-content table.docutils .wy-table-cell-min input[type=checkbox], .rst-content table.field-list .wy-table-cell-min input[type=checkbox] {
2031
- margin: 0;
2032
- }
2033
- .wy-table-secondary {
2034
- color: gray;
2035
- font-size: 90%}
2036
- .wy-table-tertiary {
2037
- color: gray;
2038
- font-size: 80%}
2039
- .wy-table-odd td, .wy-table-striped tr:nth-child(2n-1) td, .rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
2040
- background-color: #f3f6f6;
2041
- }
2042
- .wy-table-backed {
2043
- background-color: #f3f6f6;
2044
- }
2045
- .wy-table-bordered-all, .rst-content table.docutils {
2046
- border: 1px solid #e1e4e5;
2047
- }
2048
- .wy-table-bordered-all td, .rst-content table.docutils td {
2049
- border-bottom: 1px solid #e1e4e5;
2050
- border-left: 1px solid #e1e4e5;
2051
- }
2052
- .wy-table-bordered-all tbody>tr:last-child td, .rst-content table.docutils tbody>tr:last-child td {
2053
- border-bottom-width: 0;
2054
- }
2055
- .wy-table-bordered {
2056
- border: 1px solid #e1e4e5;
2057
- }
2058
- .wy-table-bordered-rows td {
2059
- border-bottom: 1px solid #e1e4e5;
2060
- }
2061
- .wy-table-bordered-rows tbody>tr:last-child td {
2062
- border-bottom-width: 0;
2063
- }
2064
- .wy-table-horizontal tbody>tr:last-child td {
2065
- border-bottom-width: 0;
2066
- }
2067
- .wy-table-horizontal td, .wy-table-horizontal th {
2068
- border-width: 0 0 1px 0;
2069
- border-bottom: 1px solid #e1e4e5;
2070
- }
2071
- .wy-table-horizontal tbody>tr:last-child td {
2072
- border-bottom-width: 0;
2073
- }
2074
- .wy-table-responsive {
2075
- margin-bottom: 24px;
2076
- max-width: 100%;
2077
- overflow: auto;
2078
- }
2079
- .wy-table-responsive table {
2080
- margin-bottom: 0 !important;
2081
- }
2082
- .wy-table-responsive table td, .wy-table-responsive table th {
2083
- white-space: nowrap;
2084
- }
2085
- a {
2086
- color: #5ce0aa;
2087
- text-decoration: none;
2088
- }
2089
- a:hover {
2090
- color: #5ce0aa;
2091
- }
2092
- a:visited {
2093
- color: #229B7D;
2094
- }
2095
- html {
2096
- height: 100%;
2097
- overflow-x: hidden;
2098
- }
2099
- body {
2100
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
2101
- font-weight: normal;
2102
- color: #404040;
2103
- min-height: 100%;
2104
- overflow-x: hidden;
2105
- background: #edf0f2;
2106
- }
2107
- .wy-text-left {
2108
- text-align: left;
2109
- }
2110
- .wy-text-center {
2111
- text-align: center;
2112
- }
2113
- .wy-text-right {
2114
- text-align: right;
2115
- }
2116
- .wy-text-large {
2117
- font-size: 120%}
2118
- .wy-text-normal {
2119
- font-size: 100%}
2120
- .wy-text-small, small {
2121
- font-size: 80%}
2122
- .wy-text-strike {
2123
- text-decoration: line-through;
2124
- }
2125
- .wy-text-warning {
2126
- color: #e67e22 !important;
2127
- }
2128
- a.wy-text-warning:hover {
2129
- color: #eb9950 !important;
2130
- }
2131
- .wy-text-info {
2132
- color: #5ce0aa !important;
2133
- }
2134
- a.wy-text-info:hover {
2135
- color: #409ad5 !important;
2136
- }
2137
- .wy-text-success {
2138
- color: #27ae60 !important;
2139
- }
2140
- a.wy-text-success:hover {
2141
- color: #36d278 !important;
2142
- }
2143
- .wy-text-danger {
2144
- color: #e74c3c !important;
2145
- }
2146
- a.wy-text-danger:hover {
2147
- color: #ed7669 !important;
2148
- }
2149
- .wy-text-neutral {
2150
- color: #404040 !important;
2151
- }
2152
- a.wy-text-neutral:hover {
2153
- color: #595959 !important;
2154
- }
2155
- h1, h2, h3, h4, h5, h6, legend {
2156
- margin-top: 0;
2157
- font-family: "Source Sans Pro",Arial,sans-serif;
2158
- font-weight: 300;
2159
- line-height: 41px;
2160
- margin: 0;
2161
- color:#5d5f63;
2162
- }
2163
- p {
2164
- line-height: 24px;
2165
- margin: 0;
2166
- font-size: 13px;
2167
- margin-bottom: 24px;
2168
- color:#5d5f63;
2169
- font-family: "Open Sans",sans-serif;
2170
- }
2171
- h1 {
2172
- font-size: 175%}
2173
- h2 {
2174
- font-size: 150%}
2175
- h3 {
2176
- font-size: 125%}
2177
- h4 {
2178
- font-size: 115%}
2179
- h5 {
2180
- font-size: 110%}
2181
- h6 {
2182
- font-size: 100%}
2183
- code, .rst-content tt {
2184
- white-space: nowrap;
2185
- max-width: 100%;
2186
- background: #fff;
2187
- border: solid 1px #e1e4e5;
2188
- font-size: 75%;
2189
- padding: 0 5px;
2190
- font-family: "Consolas", "Monaco", monospace;
2191
- color: #e74c3c;
2192
- overflow-x: auto;
2193
- }
2194
- code.code-large, .rst-content tt.code-large {
2195
- font-size: 90%}
2196
- .wy-plain-list-disc, .rst-content .section ul, .rst-content .toctree-wrapper ul, article ul {
2197
- list-style: disc;
2198
- line-height: 24px;
2199
- margin-bottom: 24px;
2200
- }
2201
- .wy-plain-list-disc li, .rst-content .section ul li, .rst-content .toctree-wrapper ul li, article ul li {
2202
- list-style: disc;
2203
- margin-left: 24px;
2204
- }
2205
- .wy-plain-list-disc li ul, .rst-content .section ul li ul, .rst-content .toctree-wrapper ul li ul, article ul li ul {
2206
- margin-bottom: 0;
2207
- }
2208
- .wy-plain-list-disc li li, .rst-content .section ul li li, .rst-content .toctree-wrapper ul li li, article ul li li {
2209
- list-style: circle;
2210
- }
2211
- .wy-plain-list-disc li li li, .rst-content .section ul li li li, .rst-content .toctree-wrapper ul li li li, article ul li li li {
2212
- list-style: square;
2213
- }
2214
- .wy-plain-list-decimal, .rst-content .section ol, .rst-content ol.arabic, article ol {
2215
- list-style: decimal;
2216
- line-height: 24px;
2217
- margin-bottom: 24px;
2218
- }
2219
- .wy-plain-list-decimal li, .rst-content .section ol li, .rst-content ol.arabic li, article ol li {
2220
- list-style: decimal;
2221
- margin-left: 24px;
2222
- }
2223
- .codeblock-example {
2224
- border: 1px solid #e1e4e5;
2225
- border-bottom: none;
2226
- padding: 24px;
2227
- padding-top: 48px;
2228
- font-weight: 500;
2229
- background: #fff;
2230
- position: relative;
2231
- }
2232
- .codeblock-example:after {
2233
- content: "Example";
2234
- position: absolute;
2235
- top: 0px;
2236
- left: 0px;
2237
- background: #229B7D;
2238
- color: #fff;
2239
- padding: 6px 12px;
2240
- }
2241
- .codeblock-example.prettyprint-example-only {
2242
- border: 1px solid #e1e4e5;
2243
- margin-bottom: 24px;
2244
- }
2245
- .codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'] {
2246
- border: 1px solid #e1e4e5;
2247
- padding: 0px;
2248
- overflow-x: auto;
2249
- background: #fff;
2250
- margin: 1px 0 24px 0;
2251
- }
2252
- .codeblock div[class^='highlight'], pre.literal-block div[class^='highlight'], .rst-content .literal-block div[class^='highlight'], div[class^='highlight'] div[class^='highlight'] {
2253
- border: none;
2254
- background: none;
2255
- margin: 0;
2256
- }
2257
- div[class^='highlight'] td.code {
2258
- width: 100%}
2259
- .linenodiv pre {
2260
- border-right: solid 1px #e6e9ea;
2261
- margin: 0;
2262
- padding: 12px 12px;
2263
- font-family: "Consolas", "Monaco", monospace;
2264
- font-size: 12px;
2265
- line-height: 1.5;
2266
- color: #d9d9d9;
2267
- }
2268
- div[class^='highlight'] pre {
2269
- white-space: pre;
2270
- margin: 0;
2271
- padding: 12px 12px;
2272
- font-family: "Consolas", "Monaco", monospace;
2273
- font-size: 12px;
2274
- line-height: 1.5;
2275
- display: block;
2276
- overflow: auto;
2277
- color: #404040;
2278
- }
2279
- @media print {
2280
- .codeblock, pre.literal-block, .rst-content .literal-block, .rst-content pre.literal-block, div[class^='highlight'], div[class^='highlight'] pre {
2281
- white-space: pre-wrap;
2282
- }
2283
- }.hll {
2284
- background-color: #ffc;
2285
- margin: 0 -12px;
2286
- padding: 0 12px;
2287
- display: block;
2288
- }
2289
- .c {
2290
- color: #998;
2291
- font-style: italic;
2292
- }
2293
- .err {
2294
- color: #a61717;
2295
- background-color: #e3d2d2;
2296
- }
2297
- .k {
2298
- font-weight: bold;
2299
- }
2300
- .o {
2301
- font-weight: bold;
2302
- }
2303
- .cm {
2304
- color: #998;
2305
- font-style: italic;
2306
- }
2307
- .cp {
2308
- color: #999;
2309
- font-weight: bold;
2310
- }
2311
- .c1 {
2312
- color: #998;
2313
- font-style: italic;
2314
- }
2315
- .cs {
2316
- color: #999;
2317
- font-weight: bold;
2318
- font-style: italic;
2319
- }
2320
- .gd {
2321
- color: #000;
2322
- background-color: #fdd;
2323
- }
2324
- .gd .x {
2325
- color: #000;
2326
- background-color: #faa;
2327
- }
2328
- .ge {
2329
- font-style: italic;
2330
- }
2331
- .gr {
2332
- color: #a00;
2333
- }
2334
- .gh {
2335
- color: #999;
2336
- }
2337
- .gi {
2338
- color: #000;
2339
- background-color: #dfd;
2340
- }
2341
- .gi .x {
2342
- color: #000;
2343
- background-color: #afa;
2344
- }
2345
- .go {
2346
- color: #888;
2347
- }
2348
- .gp {
2349
- color: #555;
2350
- }
2351
- .gs {
2352
- font-weight: bold;
2353
- }
2354
- .gu {
2355
- color: purple;
2356
- font-weight: bold;
2357
- }
2358
- .gt {
2359
- color: #a00;
2360
- }
2361
- .kc {
2362
- font-weight: bold;
2363
- }
2364
- .kd {
2365
- font-weight: bold;
2366
- }
2367
- .kn {
2368
- font-weight: bold;
2369
- }
2370
- .kp {
2371
- font-weight: bold;
2372
- }
2373
- .kr {
2374
- font-weight: bold;
2375
- }
2376
- .kt {
2377
- color: #458;
2378
- font-weight: bold;
2379
- }
2380
- .m {
2381
- color: #099;
2382
- }
2383
- .s {
2384
- color: #d14;
2385
- }
2386
- .n {
2387
- color: #333;
2388
- }
2389
- .na {
2390
- color: teal;
2391
- }
2392
- .nb {
2393
- color: #0086b3;
2394
- }
2395
- .nc {
2396
- color: #458;
2397
- font-weight: bold;
2398
- }
2399
- .no {
2400
- color: teal;
2401
- }
2402
- .ni {
2403
- color: purple;
2404
- }
2405
- .ne {
2406
- color: #900;
2407
- font-weight: bold;
2408
- }
2409
- .nf {
2410
- color: #900;
2411
- font-weight: bold;
2412
- }
2413
- .nn {
2414
- color: #555;
2415
- }
2416
- .nt {
2417
- color: navy;
2418
- }
2419
- .nv {
2420
- color: teal;
2421
- }
2422
- .ow {
2423
- font-weight: bold;
2424
- }
2425
- .w {
2426
- color: #bbb;
2427
- }
2428
- .mf {
2429
- color: #099;
2430
- }
2431
- .mh {
2432
- color: #099;
2433
- }
2434
- .mi {
2435
- color: #099;
2436
- }
2437
- .mo {
2438
- color: #099;
2439
- }
2440
- .sb {
2441
- color: #d14;
2442
- }
2443
- .sc {
2444
- color: #d14;
2445
- }
2446
- .sd {
2447
- color: #d14;
2448
- }
2449
- .s2 {
2450
- color: #d14;
2451
- }
2452
- .se {
2453
- color: #d14;
2454
- }
2455
- .sh {
2456
- color: #d14;
2457
- }
2458
- .si {
2459
- color: #d14;
2460
- }
2461
- .sx {
2462
- color: #d14;
2463
- }
2464
- .sr {
2465
- color: #009926;
2466
- }
2467
- .s1 {
2468
- color: #d14;
2469
- }
2470
- .ss {
2471
- color: #990073;
2472
- }
2473
- .bp {
2474
- color: #999;
2475
- }
2476
- .vc {
2477
- color: teal;
2478
- }
2479
- .vg {
2480
- color: teal;
2481
- }
2482
- .vi {
2483
- color: teal;
2484
- }
2485
- .il {
2486
- color: #099;
2487
- }
2488
- .gc {
2489
- color: #999;
2490
- background-color: #eaf2f5;
2491
- }
2492
- .wy-breadcrumbs li {
2493
- display: inline-block;
2494
- }
2495
- .wy-breadcrumbs li.wy-breadcrumbs-aside {
2496
- float: right;
2497
- }
2498
- .wy-breadcrumbs li a {
2499
- display: inline-block;
2500
- padding: 5px;
2501
- }
2502
- .wy-breadcrumbs li a:first-child {
2503
- padding-left: 0;
2504
- }
2505
- .wy-breadcrumbs-extra {
2506
- margin-bottom: 0;
2507
- color: #b3b3b3;
2508
- font-size: 80%;
2509
- display: inline-block;
2510
- }
2511
- @media screen and (max-width: 480px) {
2512
- .wy-breadcrumbs-extra {
2513
- display: none;
2514
- }
2515
- .wy-breadcrumbs li.wy-breadcrumbs-aside {
2516
- display: none;
2517
- }
2518
- }@media print {
2519
- .wy-breadcrumbs li.wy-breadcrumbs-aside {
2520
- display: none;
2521
- }
2522
- }.wy-affix {
2523
- position: fixed;
2524
- top: 1.618em;
2525
- }
2526
- .wy-menu a:hover {
2527
- text-decoration: none;
2528
- }
2529
- .wy-menu-horiz {
2530
- *zoom: 1;
2531
- }
2532
- .wy-menu-horiz:before, .wy-menu-horiz:after {
2533
- display: table;
2534
- content: ""}
2535
- .wy-menu-horiz:after {
2536
- clear: both;
2537
- }
2538
- .wy-menu-horiz ul, .wy-menu-horiz li {
2539
- display: inline-block;
2540
- }
2541
- .wy-menu-horiz li:hover {
2542
- background: rgba(255, 255, 255, 0.1);
2543
- }
2544
- .wy-menu-horiz li.divide-left {
2545
- border-left: solid 1px #404040;
2546
- }
2547
- .wy-menu-horiz li.divide-right {
2548
- border-right: solid 1px #404040;
2549
- }
2550
- .wy-menu-horiz a {
2551
- height: 32px;
2552
- display: inline-block;
2553
- line-height: 32px;
2554
- padding: 0 16px;
2555
- }
2556
- .wy-menu-vertical header {
2557
- height: 32px;
2558
- display: inline-block;
2559
- line-height: 32px;
2560
- padding: 0 1.618em;
2561
- display: block;
2562
- font-weight: bold;
2563
- text-transform: uppercase;
2564
- font-size: 80%;
2565
- color: #5ce0aa;
2566
- white-space: nowrap;
2567
- }
2568
- .wy-menu-vertical ul {
2569
- margin-bottom: 0;
2570
- }
2571
- .wy-menu-vertical li.divide-top {
2572
- border-top: solid 1px #404040;
2573
- }
2574
- .wy-menu-vertical li.divide-bottom {
2575
- border-bottom: solid 1px #404040;
2576
- }
2577
- .wy-menu-vertical li.current {
2578
- background: #e3e3e3;
2579
- }
2580
- .wy-menu-vertical li.current a {
2581
- color: gray;
2582
- border-right: solid 1px #c9c9c9;
2583
- padding: 0.4045em 2.427em;
2584
- }
2585
- .wy-menu-vertical li.current a:hover {
2586
- background: #d6d6d6;
2587
- }
2588
- .wy-menu-vertical li.on a, .wy-menu-vertical li.current>a {
2589
- color: #404040;
2590
- padding: 0.4045em 1.618em;
2591
- font-weight: bold;
2592
- position: relative;
2593
- background: #fcfcfc;
2594
- border: none;
2595
- border-bottom: solid 1px #c9c9c9;
2596
- border-top: solid 1px #c9c9c9;
2597
- padding-left: 1.618em -4px;
2598
- }
2599
- .wy-menu-vertical li.on a:hover, .wy-menu-vertical li.current>a:hover {
2600
- background: #fcfcfc;
2601
- }
2602
- .wy-menu-vertical li.toctree-l2.current>a {
2603
- background: #c9c9c9;
2604
- padding: 0.4045em 2.427em;
2605
- }
2606
- .wy-menu-vertical li.current ul {
2607
- display: block;
2608
- }
2609
- .wy-menu-vertical li ul {
2610
- margin-bottom: 0;
2611
- display: none;
2612
- }
2613
- .wy-menu-vertical .local-toc li ul {
2614
- display: block;
2615
- }
2616
- .wy-menu-vertical li ul li a {
2617
- margin-bottom: 0;
2618
- color: #b3b3b3;
2619
- font-weight: normal;
2620
- }
2621
- .wy-menu-vertical a {
2622
- display: inline-block;
2623
- line-height: 18px;
2624
- padding: 0.4045em 1.618em;
2625
- display: block;
2626
- position: relative;
2627
- font-size: 90%;
2628
- color: #b3b3b3;
2629
- }
2630
- .wy-menu-vertical a:hover {
2631
- color: #5ce0aa;
2632
- cursor: pointer;
2633
- }
2634
- .wy-menu-vertical a:active {
2635
- cursor: pointer;
2636
-
2637
- }
2638
- .wy-side-nav-search {
2639
- z-index: 200;
2640
- background-color: #5ce0aa;
2641
- text-align: center;
2642
- padding: 0.809em;
2643
- display: block;
2644
- color: #fcfcfc;
2645
- margin-bottom: 0.809em;
2646
- }
2647
- .wy-side-nav-search input[type=text] {
2648
- width: 100%;
2649
- border-radius: 50px;
2650
- padding: 6px 12px;
2651
- border-color: #eee;
2652
- box-shadow:none !important;
2653
- }
2654
- .wy-side-nav-search img {
2655
- display: block;
2656
- margin: auto auto 0.809em auto;
2657
- height: 45px;
2658
- width: 45px;
2659
- background-color: #5ce0aa;
2660
- padding: 5px;
2661
- border-radius: 100%}
2662
- .wy-side-nav-search>a, .wy-side-nav-search .wy-dropdown>a {
2663
- color: #fcfcfc;
2664
- font-size: 100%;
2665
- font-weight: bold;
2666
- display: inline-block;
2667
- padding: 4px 6px;
2668
- margin-bottom: 0.809em;
2669
- }
2670
- .wy-side-nav-search>a:hover, .wy-side-nav-search .wy-dropdown>a:hover {
2671
- background: rgba(255, 255, 255, 0.1);
2672
- }
2673
- .wy-nav .wy-menu-vertical header {
2674
- color: #5ce0aa;
2675
- }
2676
- .wy-nav .wy-menu-vertical a {
2677
- color: #b3b3b3;
2678
- }
2679
- .wy-nav .wy-menu-vertical a:hover {
2680
- color: #5ce0aa;
2681
- }
2682
- [data-menu-wrap] {
2683
- -webkit-transition: all 0.2s ease-in;
2684
- -moz-transition: all 0.2s ease-in;
2685
- transition: all 0.2s ease-in;
2686
- position: absolute;
2687
- opacity: 1;
2688
- width: 100%;
2689
- opacity: 0;
2690
- }
2691
- [data-menu-wrap].move-center {
2692
- left: 0;
2693
- right: auto;
2694
- opacity: 1;
2695
- }
2696
- [data-menu-wrap].move-left {
2697
- right: auto;
2698
- left: -100%;
2699
- opacity: 0;
2700
- }
2701
- [data-menu-wrap].move-right {
2702
- right: -100%;
2703
- left: auto;
2704
- opacity: 0;
2705
- }
2706
- .wy-body-for-nav {
2707
- background: left repeat-y #fcfcfc;
2708
- background-image: url(data:image/png;
2709
- base64, iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC);
2710
- background-size: 300px 1px;
2711
- }
2712
- .wy-grid-for-nav {
2713
- position: absolute;
2714
- width: 100%;
2715
- height: 100%}
2716
- .wy-nav-side {
2717
- position: absolute;
2718
- top: 0;
2719
- left: 0;
2720
- width: 300px;
2721
- overflow: hidden;
2722
- min-height: 100%;
2723
- background: #293949;
2724
- z-index: 200;
2725
- }
2726
- .wy-nav-top {
2727
- display: none;
2728
- background: #5ce0aa;
2729
- color: #fff;
2730
- padding: 0.4045em 0.809em;
2731
- position: relative;
2732
- line-height: 50px;
2733
- text-align: center;
2734
- font-size: 100%;
2735
- *zoom: 1;
2736
- }
2737
- .wy-nav-top:before, .wy-nav-top:after {
2738
- display: table;
2739
- content: ""}
2740
- .wy-nav-top:after {
2741
- clear: both;
2742
- }
2743
- .wy-nav-top a {
2744
- color: #fff;
2745
- font-weight: bold;
2746
- }
2747
- .wy-nav-top img {
2748
- margin-right: 12px;
2749
- height: 45px;
2750
- width: 45px;
2751
- background-color: #5ce0aa;
2752
- padding: 5px;
2753
- border-radius: 100%}
2754
- .wy-nav-top i {
2755
- font-size: 30px;
2756
- float: left;
2757
- cursor: pointer;
2758
- }
2759
- .wy-nav-content-wrap {
2760
- margin-left: 300px;
2761
- background: #fcfcfc;
2762
- min-height: 100%}
2763
- .wy-nav-content {
2764
- padding: 1.618em 3.236em;
2765
- height: 100%;
2766
- max-width: 100%;
2767
- margin: auto;
2768
- }
2769
- .wy-body-mask {
2770
- position: fixed;
2771
- width: 100%;
2772
- height: 100%;
2773
- background: rgba(0, 0, 0, 0.2);
2774
- display: none;
2775
- z-index: 499;
2776
- }
2777
- .wy-body-mask.on {
2778
- display: block;
2779
- }
2780
- footer {
2781
- color: #999;
2782
- }
2783
- footer p {
2784
- margin-bottom: 12px;
2785
- }
2786
- .rst-footer-buttons {
2787
- *zoom: 1;
2788
- }
2789
- .rst-footer-buttons:before, .rst-footer-buttons:after {
2790
- display: table;
2791
- content: ""}
2792
- .rst-footer-buttons:after {
2793
- clear: both;
2794
- }
2795
- #search-results .search li {
2796
- margin-bottom: 24px;
2797
- border-bottom: solid 1px #e1e4e5;
2798
- padding-bottom: 24px;
2799
- }
2800
- #search-results .search li:first-child {
2801
- border-top: solid 1px #e1e4e5;
2802
- padding-top: 24px;
2803
- }
2804
- #search-results .search li a {
2805
- font-size: 120%;
2806
- margin-bottom: 12px;
2807
- display: inline-block;
2808
- }
2809
- #search-results .context {
2810
- color: gray;
2811
- font-size: 90%}
2812
- @media screen and (max-width: 768px) {
2813
- .wy-body-for-nav {
2814
- background: #fcfcfc;
2815
- }
2816
- .wy-nav-top {
2817
- display: block;
2818
- }
2819
- .wy-nav-side {
2820
- left: -300px;
2821
- }
2822
- .wy-nav-side.shift {
2823
- width: 85%;
2824
- left: 0;
2825
- }
2826
- .wy-nav-content-wrap {
2827
- margin-left: 0;
2828
- }
2829
- .wy-nav-content-wrap .wy-nav-content {
2830
- padding: 1.618em;
2831
- }
2832
- .wy-nav-content-wrap.shift {
2833
- position: fixed;
2834
- min-width: 100%;
2835
- left: 85%;
2836
- top: 0;
2837
- height: 100%;
2838
- overflow: hidden;
2839
- }
2840
- }@media screen and (min-width: 1400px) {
2841
- .wy-nav-content-wrap {
2842
- background: rgba(0, 0, 0, 0.05);
2843
- }
2844
- .wy-nav-content {
2845
- margin: 0;
2846
- background: #ffffff;
2847
- }
2848
- }@media print {
2849
- .rst-versions, footer, .wy-nav-side {
2850
- display: none;
2851
- }
2852
- .wy-nav-content-wrap {
2853
- margin-left: 0;
2854
- }
2855
- }nav.stickynav {
2856
- position: fixed;
2857
- top: 0;
2858
- }
2859
- .rst-versions {
2860
- position: fixed;
2861
- bottom: 0;
2862
- left: 0;
2863
- width: 300px;
2864
- color: #fcfcfc;
2865
- background: #293949;
2866
- border-top: solid 10px #293949;
2867
- font-family: "Lato", "proxima-nova", "Helvetica Neue", Arial, sans-serif;
2868
- z-index: 400;
2869
- }
2870
- .rst-versions a {
2871
- color: #5ce0aa;
2872
- text-decoration: none;
2873
- }
2874
- .rst-versions .rst-badge-small {
2875
- display: none;
2876
- }
2877
- .rst-versions .rst-current-version {
2878
- padding: 12px;
2879
- background-color: #293949;
2880
- display: block;
2881
- text-align: right;
2882
- font-size: 90%;
2883
- cursor: pointer;
2884
- color: #27ae60;
2885
- *zoom: 1;
2886
- }
2887
- .rst-versions .rst-current-version:before, .rst-versions .rst-current-version:after {
2888
- display: table;
2889
- content: ""}
2890
- .rst-versions .rst-current-version:after {
2891
- clear: both;
2892
- }
2893
- .rst-versions .rst-current-version .fa, .rst-versions .rst-current-version .rst-content .admonition-title, .rst-content .rst-versions .rst-current-version .admonition-title, .rst-versions .rst-current-version .rst-content h1 .headerlink, .rst-content h1 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h2 .headerlink, .rst-content h2 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h3 .headerlink, .rst-content h3 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h4 .headerlink, .rst-content h4 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h5 .headerlink, .rst-content h5 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content h6 .headerlink, .rst-content h6 .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .rst-content dl dt .headerlink, .rst-content dl dt .rst-versions .rst-current-version .headerlink, .rst-versions .rst-current-version .icon {
2894
- color: #fcfcfc;
2895
- }
2896
- .rst-versions .rst-current-version .fa-book, .rst-versions .rst-current-version .icon-book {
2897
- float: left;
2898
- }
2899
- .rst-versions .rst-current-version .icon-book {
2900
- float: left;
2901
- }
2902
- .rst-versions .rst-current-version.rst-out-of-date {
2903
- background-color: #e74c3c;
2904
- color: #fff;
2905
- }
2906
- .rst-versions .rst-current-version.rst-active-old-version {
2907
- background-color: #f1c40f;
2908
- color: #000;
2909
- }
2910
- .rst-versions.shift-up .rst-other-versions {
2911
- display: block;
2912
- }
2913
- .rst-versions .rst-other-versions {
2914
- font-size: 90%;
2915
- padding: 12px;
2916
- color: gray;
2917
- display: none;
2918
- }
2919
- .rst-versions .rst-other-versions hr {
2920
- display: block;
2921
- height: 1px;
2922
- border: 0;
2923
- margin: 20px 0;
2924
- padding: 0;
2925
- border-top: solid 1px #413d3d;
2926
- }
2927
- .rst-versions .rst-other-versions dd {
2928
- display: inline-block;
2929
- margin: 0;
2930
- }
2931
- .rst-versions .rst-other-versions dd a {
2932
- display: inline-block;
2933
- padding: 6px;
2934
- color: #fcfcfc;
2935
- }
2936
- .rst-versions.rst-badge {
2937
- width: auto;
2938
- bottom: 20px;
2939
- right: 20px;
2940
- left: auto;
2941
- border: none;
2942
- max-width: 300px;
2943
- }
2944
- .rst-versions.rst-badge .icon-book {
2945
- float: none;
2946
- }
2947
- .rst-versions.rst-badge .fa-book, .rst-versions.rst-badge .icon-book {
2948
- float: none;
2949
- }
2950
- .rst-versions.rst-badge.shift-up .rst-current-version {
2951
- text-align: right;
2952
- }
2953
- .rst-versions.rst-badge.shift-up .rst-current-version .fa-book, .rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
2954
- float: left;
2955
- }
2956
- .rst-versions.rst-badge.shift-up .rst-current-version .icon-book {
2957
- float: left;
2958
- }
2959
- .rst-versions.rst-badge .rst-current-version {
2960
- width: auto;
2961
- height: 30px;
2962
- line-height: 30px;
2963
- padding: 0 6px;
2964
- display: none;
2965
- text-align: center;
2966
- }
2967
- @media screen and (max-width: 768px) {
2968
- .rst-versions {
2969
- width: 85%;
2970
- display: none;
2971
- }
2972
- .rst-versions.shift {
2973
- display: block;
2974
- }
2975
- img {
2976
- width: 100%;
2977
- height: auto;
2978
- }
2979
- }.rst-content img {
2980
- max-width: 100%;
2981
- height: auto !important;
2982
- }
2983
- .rst-content div.figure {
2984
- margin-bottom: 24px;
2985
- }
2986
- .rst-content div.figure.align-center {
2987
- text-align: center;
2988
- }
2989
- .rst-content .section>img {
2990
- margin-bottom: 24px;
2991
- }
2992
- .rst-content blockquote {
2993
- margin-left: 24px;
2994
- line-height: 24px;
2995
- margin-bottom: 24px;
2996
- }
2997
- .rst-content .note .last, .rst-content .attention .last, .rst-content .caution .last, .rst-content .danger .last, .rst-content .error .last, .rst-content .hint .last, .rst-content .important .last, .rst-content .tip .last, .rst-content .warning .last, .rst-content .seealso .last {
2998
- margin-bottom: 0;
2999
- }
3000
- .rst-content .admonition-title:before {
3001
- margin-right: 4px;
3002
- }
3003
- .rst-content .admonition table {
3004
- border-color: rgba(0, 0, 0, 0.1);
3005
- }
3006
- .rst-content .admonition table td, .rst-content .admonition table th {
3007
- background: transparent !important;
3008
- border-color: rgba(0, 0, 0, 0.1) !important;
3009
- }
3010
- .rst-content .section ol.loweralpha, .rst-content .section ol.loweralpha li {
3011
- list-style: lower-alpha;
3012
- }
3013
- .rst-content .section ol.upperalpha, .rst-content .section ol.upperalpha li {
3014
- list-style: upper-alpha;
3015
- }
3016
- .rst-content .section ol p, .rst-content .section ul p {
3017
- margin-bottom: 12px;
3018
- }
3019
- .rst-content .line-block {
3020
- margin-left: 24px;
3021
- }
3022
- .rst-content .topic-title {
3023
- font-weight: bold;
3024
- margin-bottom: 12px;
3025
- }
3026
- .rst-content .toc-backref {
3027
- color: #404040;
3028
- }
3029
- .rst-content .align-right {
3030
- float: right;
3031
- margin: 0px 0px 24px 24px;
3032
- }
3033
- .rst-content .align-left {
3034
- float: left;
3035
- margin: 0px 24px 24px 0px;
3036
- }
3037
- .rst-content .align-center {
3038
- margin: auto;
3039
- display: block;
3040
- }
3041
- .rst-content h1 .headerlink, .rst-content h2 .headerlink, .rst-content h3 .headerlink, .rst-content h4 .headerlink, .rst-content h5 .headerlink, .rst-content h6 .headerlink, .rst-content dl dt .headerlink {
3042
- display: none;
3043
- visibility: hidden;
3044
- font-size: 14px;
3045
- }
3046
- .rst-content h1 .headerlink:after, .rst-content h2 .headerlink:after, .rst-content h3 .headerlink:after, .rst-content h4 .headerlink:after, .rst-content h5 .headerlink:after, .rst-content h6 .headerlink:after, .rst-content dl dt .headerlink:after {
3047
- visibility: visible;
3048
- content: "\f0c1";
3049
- font-family: FontAwesome;
3050
- display: inline-block;
3051
- }
3052
- .rst-content h1:hover .headerlink, .rst-content h2:hover .headerlink, .rst-content h3:hover .headerlink, .rst-content h4:hover .headerlink, .rst-content h5:hover .headerlink, .rst-content h6:hover .headerlink, .rst-content dl dt:hover .headerlink {
3053
- display: inline-block;
3054
- }
3055
- .rst-content .sidebar {
3056
- float: right;
3057
- width: 40%;
3058
- display: block;
3059
- margin: 0 0 24px 24px;
3060
- padding: 24px;
3061
- background: #f3f6f6;
3062
- border: solid 1px #e1e4e5;
3063
- }
3064
- .rst-content .sidebar p, .rst-content .sidebar ul, .rst-content .sidebar dl {
3065
- font-size: 90%}
3066
- .rst-content .sidebar .last {
3067
- margin-bottom: 0;
3068
- }
3069
- .rst-content .sidebar .sidebar-title {
3070
- display: block;
3071
- font-family: "Roboto Slab", "ff-tisa-web-pro", "Georgia", Arial, sans-serif;
3072
- font-weight: bold;
3073
- background: #e1e4e5;
3074
- padding: 6px 12px;
3075
- margin: -24px;
3076
- margin-bottom: 24px;
3077
- font-size: 100%}
3078
- .rst-content .highlighted {
3079
- background: #5ce0aa;
3080
- display: inline-block;
3081
- font-weight: bold;
3082
- padding: 0 6px;
3083
- color:#ffffff;
3084
- }
3085
- .rst-content .footnote-reference, .rst-content .citation-reference {
3086
- vertical-align: super;
3087
- font-size: 90%}
3088
- .rst-content table.docutils.citation, .rst-content table.docutils.footnote {
3089
- background: none;
3090
- border: none;
3091
- color: #999;
3092
- }
3093
- .rst-content table.docutils.citation td, .rst-content table.docutils.citation tr, .rst-content table.docutils.footnote td, .rst-content table.docutils.footnote tr {
3094
- border: none;
3095
- background-color: transparent !important;
3096
- white-space: normal;
3097
- }
3098
- .rst-content table.docutils.citation td.label, .rst-content table.docutils.footnote td.label {
3099
- padding-left: 0;
3100
- padding-right: 0;
3101
- vertical-align: top;
3102
- }
3103
- .rst-content table.field-list {
3104
- border: none;
3105
- }
3106
- .rst-content table.field-list td {
3107
- border: none;
3108
- padding-top: 5px;
3109
- }
3110
- .rst-content table.field-list td>strong {
3111
- display: inline-block;
3112
- margin-top: 3px;
3113
- }
3114
- .rst-content table.field-list .field-name {
3115
- padding-right: 10px;
3116
- text-align: left;
3117
- white-space: nowrap;
3118
- }
3119
- .rst-content table.field-list .field-body {
3120
- text-align: left;
3121
- padding-left: 0;
3122
- }
3123
- .rst-content tt {
3124
- color: #000;
3125
- }
3126
- .rst-content tt big, .rst-content tt em {
3127
- font-size: 100% !important;
3128
- line-height: normal;
3129
- }
3130
- .rst-content tt .xref, a .rst-content tt {
3131
- font-weight: bold;
3132
- }
3133
- .rst-content a tt {
3134
- color: #5ce0aa;
3135
- }
3136
- .rst-content dl {
3137
- margin-bottom: 24px;
3138
- }
3139
- .rst-content dl dt {
3140
- font-weight: bold;
3141
- }
3142
- .rst-content dl p, .rst-content dl table, .rst-content dl ul, .rst-content dl ol {
3143
- margin-bottom: 12px !important;
3144
- }
3145
- .rst-content dl dd {
3146
- margin: 0 0 12px 24px;
3147
- }
3148
- .rst-content dl:not(.docutils) {
3149
- margin-bottom: 24px;
3150
- }
3151
- .rst-content dl:not(.docutils) dt {
3152
- display: inline-block;
3153
- margin: 6px 0;
3154
- font-size: 90%;
3155
- line-height: normal;
3156
- background: #e7f2fa;
3157
- color: #5ce0aa;
3158
- border-top: solid 3px #6ab0de;
3159
- padding: 6px;
3160
- position: relative;
3161
- }
3162
- .rst-content dl:not(.docutils) dt:before {
3163
- color: #6ab0de;
3164
- }
3165
- .rst-content dl:not(.docutils) dt .headerlink {
3166
- color: #404040;
3167
- font-size: 100% !important;
3168
- }
3169
- .rst-content dl:not(.docutils) dl dt {
3170
- margin-bottom: 6px;
3171
- border: none;
3172
- border-left: solid 3px #ccc;
3173
- background: #f0f0f0;
3174
- color: gray;
3175
- }
3176
- .rst-content dl:not(.docutils) dl dt .headerlink {
3177
- color: #404040;
3178
- font-size: 100% !important;
3179
- }
3180
- .rst-content dl:not(.docutils) dt:first-child {
3181
- margin-top: 0;
3182
- }
3183
- .rst-content dl:not(.docutils) tt {
3184
- font-weight: bold;
3185
- }
3186
- .rst-content dl:not(.docutils) tt.descname, .rst-content dl:not(.docutils) tt.descclassname {
3187
- background-color: transparent;
3188
- border: none;
3189
- padding: 0;
3190
- font-size: 100% !important;
3191
- }
3192
- .rst-content dl:not(.docutils) tt.descname {
3193
- font-weight: bold;
3194
- }
3195
- .rst-content dl:not(.docutils) .optional {
3196
- display: inline-block;
3197
- padding: 0 4px;
3198
- color: #000;
3199
- font-weight: bold;
3200
- }
3201
- .rst-content dl:not(.docutils) .property {
3202
- display: inline-block;
3203
- padding-right: 8px;
3204
- }
3205
- .rst-content .viewcode-link, .rst-content .viewcode-back {
3206
- display: inline-block;
3207
- color: #27ae60;
3208
- font-size: 80%;
3209
- padding-left: 24px;
3210
- }
3211
- .rst-content .viewcode-back {
3212
- display: block;
3213
- float: right;
3214
- }
3215
- .rst-content p.rubric {
3216
- margin-bottom: 12px;
3217
- font-weight: bold;
3218
- }
3219
- @media screen and (max-width: 480px) {
3220
- .rst-content .sidebar {
3221
- width: 100%}
3222
- }span[id*='MathJax-Span'] {
3223
- color: #404040;
3224
- }