├── .gitignore ├── Keras.xml ├── Makefile ├── README.md ├── assets └── keras.dense.zeal.png ├── build.sh ├── copy_docset.sh ├── dashing.json ├── theme.css ├── theme_extra.css └── wget_html.sh /.gitignore: -------------------------------------------------------------------------------- 1 | ## Data ## 2 | keras.io 3 | 4 | ###Python### 5 | 6 | # Byte-compiled / optimized / DLL files 7 | __pycache__/ 8 | *.py[cod] 9 | 10 | # C extensions 11 | *.so 12 | 13 | # Distribution / packaging 14 | .Python 15 | env/ 16 | build/ 17 | develop-eggs/ 18 | dist/ 19 | downloads/ 20 | eggs/ 21 | lib/ 22 | lib64/ 23 | parts/ 24 | sdist/ 25 | var/ 26 | *.egg-info/ 27 | .installed.cfg 28 | *.egg 29 | 30 | # PyInstaller 31 | # Usually these files are written by a python script from a template 32 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 33 | *.manifest 34 | *.spec 35 | 36 | # Installer logs 37 | pip-log.txt 38 | pip-delete-this-directory.txt 39 | 40 | # Unit test / coverage reports 41 | htmlcov/ 42 | .tox/ 43 | .coverage 44 | .cache 45 | nosetests.xml 46 | coverage.xml 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | 55 | # Sphinx documentation 56 | docs/_build/ 57 | 58 | # PyBuilder 59 | target/ -------------------------------------------------------------------------------- /Keras.xml: -------------------------------------------------------------------------------- 1 | 2 | 2.0 3 | 4 | https://github.com/kkweon/keras-docset/releases/download/v2.0/Keras.tgz 5 | 6 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | DOCSET_NAME = Keras 2 | SHELL = /bin/bash 3 | 4 | all: 5 | echo "Nothing" 6 | 7 | build: 8 | bash wget_html.sh 9 | bash build.sh 10 | cd keras.io && tar --exclude='.DS_Store' -cvzf ${DOCSET_NAME}.tgz ${DOCSET_NAME}.docset 11 | 12 | clean: 13 | rm -rf keras.io 14 | 15 | 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Keras Docset for Zeal/Dash 2 | * Linux/Windows: [Zeal](https://zealdocs.org/) 3 | * OSX: [Dash](https://kapeli.com/dash) 4 | 5 | ## Screenshot 6 | ![zeal](assets/keras.dense.zeal.png) 7 | 8 | ## FEED URL 9 | * Add `http://ocf.io/kkweon/docset/Keras.xml` to the feed url in Dash/Zeal 10 | 11 | ## Dependencies 12 | * You need to install [Dashing](https://github.com/technosophos/dashing) 13 | 14 | ```bash 15 | go get -u github.com/technosophos/dashing 16 | ``` 17 | 18 | ## Build 19 | ```bash 20 | make build 21 | ``` 22 | 23 | ## Install 24 | ### Dash 25 | - There is a keras.docset inside `keras.io` 26 | - Preferences -> Docsets -> Add docset 27 | 28 | ### Zeal 29 | - `keras.docset` to `~/.local/share/Zeal/Zeal/docsets/keras.docset` 30 | ` 31 | 32 | ## Files 33 | ```text 34 | . 35 | ├── build.sh 36 | ├── copy_docset.sh # check the path before you run this 37 | ├── Makefile 38 | ├── dashing.json 39 | ├── README.md 40 | ├── theme.css 41 | ├── theme_extra.css 42 | └── wget_html.sh 43 | ``` 44 | 45 | ## Contributions 46 | * Please feel free to send a PR 47 | -------------------------------------------------------------------------------- /assets/keras.dense.zeal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kkweon/keras-docset/7e198a22cb0dbdfe2884cdf2a2350ae2ccbc8c7f/assets/keras.dense.zeal.png -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cp theme*.css keras.io/css/ 3 | find '.' -type f -name '*.1.html' -exec rm {} \; 4 | cp dashing.json keras.io/ 5 | cd keras.io && dashing build 6 | cd .. 7 | -------------------------------------------------------------------------------- /copy_docset.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | rm -rf ~/.local/share/Zeal/Zeal/docsets/keras.docset 3 | mv keras.io/keras.docset ~/.local/share/Zeal/Zeal/docsets/ 4 | 5 | -------------------------------------------------------------------------------- /dashing.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Keras", 3 | "package": "keras", 4 | "index": "index.html", 5 | "selectors": { 6 | "h3": "Function", 7 | "title": { 8 | "type": "Module", 9 | "regexp": " - Keras Documentation", 10 | "replacement": "" 11 | } 12 | }, 13 | "ignore": [ 14 | "ABOUT", "Arguments" 15 | ], 16 | "icon32x32": "img/favicon.ico", 17 | "allowJS": true, 18 | "ExternalURL": "" 19 | } 20 | -------------------------------------------------------------------------------- /theme.css: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is copied from the upstream ReadTheDocs Sphinx 3 | * theme. To aid upgradability this file should *not* be edited. 4 | * modifications we need should be included in theme_extra.css. 5 | * 6 | * https://github.com/rtfd/readthedocs.org/blob/master/media/css/sphinx_rtd_theme.css 7 | */ 8 | * { 9 | -webkit-box-sizing: border-box; 10 | -moz-box-sizing: border-box; 11 | box-sizing: border-box 12 | } 13 | 14 | article,aside,details,figcaption,figure,footer,header,hgroup,nav,section { 15 | display: block; 16 | } 17 | 18 | audio,canvas,video { 19 | display: inline-block; 20 | *display: inline; 21 | *zoom:1} 22 | 23 | audio:not([controls]) { 24 | display: none 25 | } 26 | 27 | [hidden] { 28 | display: none 29 | } 30 | 31 | * { 32 | -webkit-box-sizing: border-box; 33 | -moz-box-sizing: border-box; 34 | box-sizing: border-box 35 | } 36 | 37 | html { 38 | font-size: 100%; 39 | -webkit-text-size-adjust: 100%; 40 | -ms-text-size-adjust: 100% 41 | } 42 | 43 | body { 44 | margin: 0 45 | } 46 | 47 | a:hover,a:active { 48 | outline: 0 49 | } 50 | 51 | abbr[title] { 52 | border-bottom: 1px dotted 53 | } 54 | 55 | b,strong { 56 | font-weight: bold 57 | } 58 | 59 | blockquote { 60 | margin: 0 61 | } 62 | 63 | dfn { 64 | font-style: italic 65 | } 66 | 67 | ins { 68 | background: #ff9; 69 | color: #000; 70 | text-decoration: none 71 | } 72 | 73 | mark { 74 | background: #ff0; 75 | color: #000; 76 | font-style: italic; 77 | font-weight: bold 78 | } 79 | 80 | pre,code,.rst-content tt,kbd,samp { 81 | font-family: monospace,serif; 82 | _font-family: "courier new",monospace; 83 | font-size: 1em 84 | } 85 | 86 | pre { 87 | white-space: pre 88 | } 89 | 90 | q { 91 | quotes: none 92 | } 93 | 94 | q:before,q:after { 95 | content: ""; 96 | content: none 97 | } 98 | 99 | small { 100 | font-size: 85% 101 | } 102 | 103 | sub,sup { 104 | font-size: 75%; 105 | line-height: 0; 106 | position: relative; 107 | vertical-align: baseline 108 | } 109 | 110 | sup { 111 | top: -0.5em 112 | } 113 | 114 | sub { 115 | bottom: -0.25em 116 | } 117 | 118 | ul,ol,dl { 119 | margin: 0; 120 | padding: 0; 121 | list-style: none; 122 | list-style-image: none 123 | } 124 | 125 | li { 126 | list-style: none 127 | } 128 | 129 | dd { 130 | margin: 0 131 | } 132 | 133 | img { 134 | border: 0; 135 | -ms-interpolation-mode: bicubic; 136 | vertical-align: middle; 137 | max-width: 100% 138 | } 139 | 140 | svg:not(:root) { 141 | overflow: hidden 142 | } 143 | 144 | figure { 145 | margin: 0 146 | } 147 | 148 | form { 149 | margin: 0 150 | } 151 | 152 | fieldset { 153 | border: 0; 154 | margin: 0; 155 | padding: 0 156 | } 157 | 158 | label { 159 | cursor: pointer 160 | } 161 | 162 | legend { 163 | border: 0; 164 | *margin-left: -7px; 165 | padding: 0; 166 | white-space: normal 167 | } 168 | 169 | button,input,select,textarea { 170 | font-size: 100%; 171 | margin: 0; 172 | vertical-align: baseline; 173 | *vertical-align: middle 174 | } 175 | 176 | button,input { 177 | line-height: normal 178 | } 179 | 180 | button,input[type="button"],input[type="reset"],input[type="submit"] { 181 | cursor: pointer; 182 | -webkit-appearance: button; 183 | *overflow: visible 184 | } 185 | 186 | button[disabled],input[disabled] { 187 | cursor: default 188 | } 189 | 190 | input[type="checkbox"],input[type="radio"] { 191 | box-sizing: border-box; 192 | padding: 0; 193 | *width: 13px; 194 | *height: 13px 195 | } 196 | 197 | input[type="search"] { 198 | -webkit-appearance: textfield; 199 | -moz-box-sizing: content-box; 200 | -webkit-box-sizing: content-box; 201 | box-sizing: content-box 202 | } 203 | 204 | input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button { 205 | -webkit-appearance: none 206 | } 207 | 208 | button::-moz-focus-inner,input::-moz-focus-inner { 209 | border: 0; 210 | padding: 0 211 | } 212 | 213 | textarea { 214 | overflow: auto; 215 | vertical-align: top; 216 | resize: vertical 217 | } 218 | 219 | table { 220 | border-collapse: collapse; 221 | border-spacing: 0 222 | } 223 | 224 | td { 225 | vertical-align: top 226 | } 227 | 228 | .chromeframe { 229 | margin: 0.2em 0; 230 | background: #ccc; 231 | color: #000; 232 | padding: 0.2em 0 233 | } 234 | 235 | .ir { 236 | display: block; 237 | border: 0; 238 | text-indent: -999em; 239 | overflow: hidden; 240 | background-color: transparent; 241 | background-repeat: no-repeat; 242 | text-align: left; 243 | direction: ltr; 244 | *line-height: 0 245 | } 246 | 247 | .ir br { 248 | display: none 249 | } 250 | 251 | .hidden { 252 | display: none !important; 253 | visibility: hidden 254 | } 255 | 256 | .visuallyhidden { 257 | border: 0; 258 | clip: rect(0 0 0 0); 259 | height: 1px; 260 | margin: -1px; 261 | overflow: hidden; 262 | padding: 0; 263 | position: absolute; 264 | width: 1px 265 | } 266 | 267 | .visuallyhidden.focusable:active,.visuallyhidden.focusable:focus { 268 | clip: auto; 269 | height: auto; 270 | margin: 0; 271 | overflow: visible; 272 | position: static; 273 | width: auto 274 | } 275 | 276 | .invisible { 277 | visibility: hidden 278 | } 279 | 280 | .relative { 281 | position: relative 282 | } 283 | 284 | big,small { 285 | font-size: 100% 286 | } 287 | 288 | @media print { 289 | html,body,section { 290 | background: none !important 291 | } 292 | 293 | * { 294 | box-shadow: none !important; 295 | text-shadow: none !important; 296 | filter: none !important; 297 | -ms-filter: none !important 298 | } 299 | 300 | a,a:visited { 301 | text-decoration: underline 302 | } 303 | 304 | .ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after { 305 | content: "" 306 | } 307 | 308 | pre,blockquote { 309 | page-break-inside: avoid 310 | } 311 | 312 | thead { 313 | display: table-header-group 314 | } 315 | 316 | tr,img { 317 | page-break-inside: avoid 318 | } 319 | 320 | img { 321 | max-width: 100% !important 322 | } 323 | 324 | @page { 325 | margin: 0.5cm 326 | } 327 | 328 | p,h2,h3 { 329 | orphans: 3; 330 | widows: 3 331 | } 332 | 333 | h2,h3 { 334 | page-break-after: avoid 335 | } 336 | } 337 | 338 | .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,.rst-content .admonition-todo,.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 { 339 | -webkit-font-smoothing: antialiased 340 | } 341 | 342 | .clearfix { 343 | *zoom:1} 344 | 345 | .clearfix:before,.clearfix:after { 346 | display: table; 347 | content: "" 348 | } 349 | 350 | .clearfix:after { 351 | clear: both 352 | } 353 | 354 | /*! 355 | * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome 356 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 357 | */ 358 | @font-face { 359 | font-family: 'FontAwesome'; 360 | src: url("../fonts/fontawesome-webfont.eot?v=4.1.0"); 361 | src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg"); 362 | font-weight: normal; 363 | font-style: normal 364 | } 365 | 366 | .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 { 367 | display: inline-block; 368 | font-family: FontAwesome; 369 | font-style: normal; 370 | font-weight: normal; 371 | line-height: 1; 372 | -webkit-font-smoothing: antialiased; 373 | -moz-osx-font-smoothing: grayscale 374 | } 375 | 376 | .fa-lg { 377 | font-size: 1.33333em; 378 | line-height: 0.75em; 379 | vertical-align: -15% 380 | } 381 | 382 | .fa-2x { 383 | font-size: 2em 384 | } 385 | 386 | .fa-3x { 387 | font-size: 3em 388 | } 389 | 390 | .fa-4x { 391 | font-size: 4em 392 | } 393 | 394 | .fa-5x { 395 | font-size: 5em 396 | } 397 | 398 | .fa-fw { 399 | width: 1.28571em; 400 | text-align: center 401 | } 402 | 403 | .fa-ul { 404 | padding-left: 0; 405 | margin-left: 2.14286em; 406 | list-style-type: none 407 | } 408 | 409 | .fa-ul>li { 410 | position: relative 411 | } 412 | 413 | .fa-li { 414 | position: absolute; 415 | left: -2.14286em; 416 | width: 2.14286em; 417 | top: 0.14286em; 418 | text-align: center 419 | } 420 | 421 | .fa-li.fa-lg { 422 | left: -1.85714em 423 | } 424 | 425 | .fa-border { 426 | padding: .2em .25em .15em; 427 | border: solid 0.08em #eee; 428 | border-radius: .1em 429 | } 430 | 431 | .pull-right { 432 | float: right 433 | } 434 | 435 | .pull-left { 436 | float: left 437 | } 438 | 439 | .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 { 440 | margin-right: .3em 441 | } 442 | 443 | .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 { 444 | margin-left: .3em 445 | } 446 | 447 | .fa-spin { 448 | -webkit-animation: spin 2s infinite linear; 449 | -moz-animation: spin 2s infinite linear; 450 | -o-animation: spin 2s infinite linear; 451 | animation: spin 2s infinite linear 452 | } 453 | 454 | @-moz-keyframes spin { 455 | 0% { 456 | -moz-transform: rotate(0deg) 457 | } 458 | 459 | 100% { 460 | -moz-transform: rotate(359deg) 461 | } 462 | } 463 | 464 | @-webkit-keyframes spin { 465 | 0% { 466 | -webkit-transform: rotate(0deg) 467 | } 468 | 469 | 100% { 470 | -webkit-transform: rotate(359deg) 471 | } 472 | } 473 | 474 | @-o-keyframes spin { 475 | 0% { 476 | -o-transform: rotate(0deg) 477 | } 478 | 479 | 100% { 480 | -o-transform: rotate(359deg) 481 | } 482 | } 483 | 484 | @keyframes spin { 485 | 0% { 486 | -webkit-transform: rotate(0deg); 487 | transform: rotate(0deg) 488 | } 489 | 490 | 100% { 491 | -webkit-transform: rotate(359deg); 492 | transform: rotate(359deg) 493 | } 494 | } 495 | 496 | .fa-rotate-90 { 497 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); 498 | -webkit-transform: rotate(90deg); 499 | -moz-transform: rotate(90deg); 500 | -ms-transform: rotate(90deg); 501 | -o-transform: rotate(90deg); 502 | transform: rotate(90deg) 503 | } 504 | 505 | .fa-rotate-180 { 506 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 507 | -webkit-transform: rotate(180deg); 508 | -moz-transform: rotate(180deg); 509 | -ms-transform: rotate(180deg); 510 | -o-transform: rotate(180deg); 511 | transform: rotate(180deg) 512 | } 513 | 514 | .fa-rotate-270 { 515 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 516 | -webkit-transform: rotate(270deg); 517 | -moz-transform: rotate(270deg); 518 | -ms-transform: rotate(270deg); 519 | -o-transform: rotate(270deg); 520 | transform: rotate(270deg) 521 | } 522 | 523 | .fa-flip-horizontal { 524 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0); 525 | -webkit-transform: scale(-1, 1); 526 | -moz-transform: scale(-1, 1); 527 | -ms-transform: scale(-1, 1); 528 | -o-transform: scale(-1, 1); 529 | transform: scale(-1, 1) 530 | } 531 | 532 | .fa-flip-vertical { 533 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); 534 | -webkit-transform: scale(1, -1); 535 | -moz-transform: scale(1, -1); 536 | -ms-transform: scale(1, -1); 537 | -o-transform: scale(1, -1); 538 | transform: scale(1, -1) 539 | } 540 | 541 | .fa-stack { 542 | position: relative; 543 | display: inline-block; 544 | width: 2em; 545 | height: 2em; 546 | line-height: 2em; 547 | vertical-align: middle 548 | } 549 | 550 | .fa-stack-1x,.fa-stack-2x { 551 | position: absolute; 552 | left: 0; 553 | width: 100%; 554 | text-align: center 555 | } 556 | 557 | .fa-stack-1x { 558 | line-height: inherit 559 | } 560 | 561 | .fa-stack-2x { 562 | font-size: 2em 563 | } 564 | 565 | .fa-inverse { 566 | color: #fff 567 | } 568 | 569 | .fa-glass:before { 570 | content: "" 571 | } 572 | 573 | .fa-music:before { 574 | content: "" 575 | } 576 | 577 | .fa-search:before,.icon-search:before { 578 | content: "" 579 | } 580 | 581 | .fa-envelope-o:before { 582 | content: "" 583 | } 584 | 585 | .fa-heart:before { 586 | content: "" 587 | } 588 | 589 | .fa-star:before { 590 | content: "" 591 | } 592 | 593 | .fa-star-o:before { 594 | content: "" 595 | } 596 | 597 | .fa-user:before { 598 | content: "" 599 | } 600 | 601 | .fa-film:before { 602 | content: "" 603 | } 604 | 605 | .fa-th-large:before { 606 | content: "" 607 | } 608 | 609 | .fa-th:before { 610 | content: "" 611 | } 612 | 613 | .fa-th-list:before { 614 | content: "" 615 | } 616 | 617 | .fa-check:before { 618 | content: "" 619 | } 620 | 621 | .fa-times:before { 622 | content: "" 623 | } 624 | 625 | .fa-search-plus:before { 626 | content: "" 627 | } 628 | 629 | .fa-search-minus:before { 630 | content: "" 631 | } 632 | 633 | .fa-power-off:before { 634 | content: "" 635 | } 636 | 637 | .fa-signal:before { 638 | content: "" 639 | } 640 | 641 | .fa-gear:before,.fa-cog:before { 642 | content: "" 643 | } 644 | 645 | .fa-trash-o:before { 646 | content: "" 647 | } 648 | 649 | .fa-home:before,.icon-home:before { 650 | content: "" 651 | } 652 | 653 | .fa-file-o:before { 654 | content: "" 655 | } 656 | 657 | .fa-clock-o:before { 658 | content: "" 659 | } 660 | 661 | .fa-road:before { 662 | content: "" 663 | } 664 | 665 | .fa-download:before { 666 | content: "" 667 | } 668 | 669 | .fa-arrow-circle-o-down:before { 670 | content: "" 671 | } 672 | 673 | .fa-arrow-circle-o-up:before { 674 | content: "" 675 | } 676 | 677 | .fa-inbox:before { 678 | content: "" 679 | } 680 | 681 | .fa-play-circle-o:before { 682 | content: "" 683 | } 684 | 685 | .fa-rotate-right:before,.fa-repeat:before { 686 | content: "" 687 | } 688 | 689 | .fa-refresh:before { 690 | content: "" 691 | } 692 | 693 | .fa-list-alt:before { 694 | content: "" 695 | } 696 | 697 | .fa-lock:before { 698 | content: "" 699 | } 700 | 701 | .fa-flag:before { 702 | content: "" 703 | } 704 | 705 | .fa-headphones:before { 706 | content: "" 707 | } 708 | 709 | .fa-volume-off:before { 710 | content: "" 711 | } 712 | 713 | .fa-volume-down:before { 714 | content: "" 715 | } 716 | 717 | .fa-volume-up:before { 718 | content: "" 719 | } 720 | 721 | .fa-qrcode:before { 722 | content: "" 723 | } 724 | 725 | .fa-barcode:before { 726 | content: "" 727 | } 728 | 729 | .fa-tag:before { 730 | content: "" 731 | } 732 | 733 | .fa-tags:before { 734 | content: "" 735 | } 736 | 737 | .fa-book:before,.icon-book:before { 738 | content: "" 739 | } 740 | 741 | .fa-bookmark:before { 742 | content: "" 743 | } 744 | 745 | .fa-print:before { 746 | content: "" 747 | } 748 | 749 | .fa-camera:before { 750 | content: "" 751 | } 752 | 753 | .fa-font:before { 754 | content: "" 755 | } 756 | 757 | .fa-bold:before { 758 | content: "" 759 | } 760 | 761 | .fa-italic:before { 762 | content: "" 763 | } 764 | 765 | .fa-text-height:before { 766 | content: "" 767 | } 768 | 769 | .fa-text-width:before { 770 | content: "" 771 | } 772 | 773 | .fa-align-left:before { 774 | content: "" 775 | } 776 | 777 | .fa-align-center:before { 778 | content: "" 779 | } 780 | 781 | .fa-align-right:before { 782 | content: "" 783 | } 784 | 785 | .fa-align-justify:before { 786 | content: "" 787 | } 788 | 789 | .fa-list:before { 790 | content: "" 791 | } 792 | 793 | .fa-dedent:before,.fa-outdent:before { 794 | content: "" 795 | } 796 | 797 | .fa-indent:before { 798 | content: "" 799 | } 800 | 801 | .fa-video-camera:before { 802 | content: "" 803 | } 804 | 805 | .fa-photo:before,.fa-image:before,.fa-picture-o:before { 806 | content: "" 807 | } 808 | 809 | .fa-pencil:before { 810 | content: "" 811 | } 812 | 813 | .fa-map-marker:before { 814 | content: "" 815 | } 816 | 817 | .fa-adjust:before { 818 | content: "" 819 | } 820 | 821 | .fa-tint:before { 822 | content: "" 823 | } 824 | 825 | .fa-edit:before,.fa-pencil-square-o:before { 826 | content: "" 827 | } 828 | 829 | .fa-share-square-o:before { 830 | content: "" 831 | } 832 | 833 | .fa-check-square-o:before { 834 | content: "" 835 | } 836 | 837 | .fa-arrows:before { 838 | content: "" 839 | } 840 | 841 | .fa-step-backward:before { 842 | content: "" 843 | } 844 | 845 | .fa-fast-backward:before { 846 | content: "" 847 | } 848 | 849 | .fa-backward:before { 850 | content: "" 851 | } 852 | 853 | .fa-play:before { 854 | content: "" 855 | } 856 | 857 | .fa-pause:before { 858 | content: "" 859 | } 860 | 861 | .fa-stop:before { 862 | content: "" 863 | } 864 | 865 | .fa-forward:before { 866 | content: "" 867 | } 868 | 869 | .fa-fast-forward:before { 870 | content: "" 871 | } 872 | 873 | .fa-step-forward:before { 874 | content: "" 875 | } 876 | 877 | .fa-eject:before { 878 | content: "" 879 | } 880 | 881 | .fa-chevron-left:before { 882 | content: "" 883 | } 884 | 885 | .fa-chevron-right:before { 886 | content: "" 887 | } 888 | 889 | .fa-plus-circle:before { 890 | content: "" 891 | } 892 | 893 | .fa-minus-circle:before { 894 | content: "" 895 | } 896 | 897 | .fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before { 898 | content: "" 899 | } 900 | 901 | .fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before { 902 | content: "" 903 | } 904 | 905 | .fa-question-circle:before { 906 | content: "" 907 | } 908 | 909 | .fa-info-circle:before { 910 | content: "" 911 | } 912 | 913 | .fa-crosshairs:before { 914 | content: "" 915 | } 916 | 917 | .fa-times-circle-o:before { 918 | content: "" 919 | } 920 | 921 | .fa-check-circle-o:before { 922 | content: "" 923 | } 924 | 925 | .fa-ban:before { 926 | content: "" 927 | } 928 | 929 | .fa-arrow-left:before { 930 | content: "" 931 | } 932 | 933 | .fa-arrow-right:before { 934 | content: "" 935 | } 936 | 937 | .fa-arrow-up:before { 938 | content: "" 939 | } 940 | 941 | .fa-arrow-down:before { 942 | content: "" 943 | } 944 | 945 | .fa-mail-forward:before,.fa-share:before { 946 | content: "" 947 | } 948 | 949 | .fa-expand:before { 950 | content: "" 951 | } 952 | 953 | .fa-compress:before { 954 | content: "" 955 | } 956 | 957 | .fa-plus:before { 958 | content: "" 959 | } 960 | 961 | .fa-minus:before { 962 | content: "" 963 | } 964 | 965 | .fa-asterisk:before { 966 | content: "" 967 | } 968 | 969 | .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 { 970 | content: "" 971 | } 972 | 973 | .fa-gift:before { 974 | content: "" 975 | } 976 | 977 | .fa-leaf:before { 978 | content: "" 979 | } 980 | 981 | .fa-fire:before,.icon-fire:before { 982 | content: "" 983 | } 984 | 985 | .fa-eye:before { 986 | content: "" 987 | } 988 | 989 | .fa-eye-slash:before { 990 | content: "" 991 | } 992 | 993 | .fa-warning:before,.fa-exclamation-triangle:before { 994 | content: "" 995 | } 996 | 997 | .fa-plane:before { 998 | content: "" 999 | } 1000 | 1001 | .fa-calendar:before { 1002 | content: "" 1003 | } 1004 | 1005 | .fa-random:before { 1006 | content: "" 1007 | } 1008 | 1009 | .fa-comment:before { 1010 | content: "" 1011 | } 1012 | 1013 | .fa-magnet:before { 1014 | content: "" 1015 | } 1016 | 1017 | .fa-chevron-up:before { 1018 | content: "" 1019 | } 1020 | 1021 | .fa-chevron-down:before { 1022 | content: "" 1023 | } 1024 | 1025 | .fa-retweet:before { 1026 | content: "" 1027 | } 1028 | 1029 | .fa-shopping-cart:before { 1030 | content: "" 1031 | } 1032 | 1033 | .fa-folder:before { 1034 | content: "" 1035 | } 1036 | 1037 | .fa-folder-open:before { 1038 | content: "" 1039 | } 1040 | 1041 | .fa-arrows-v:before { 1042 | content: "" 1043 | } 1044 | 1045 | .fa-arrows-h:before { 1046 | content: "" 1047 | } 1048 | 1049 | .fa-bar-chart-o:before { 1050 | content: "" 1051 | } 1052 | 1053 | .fa-twitter-square:before { 1054 | content: "" 1055 | } 1056 | 1057 | .fa-facebook-square:before { 1058 | content: "" 1059 | } 1060 | 1061 | .fa-camera-retro:before { 1062 | content: "" 1063 | } 1064 | 1065 | .fa-key:before { 1066 | content: "" 1067 | } 1068 | 1069 | .fa-gears:before,.fa-cogs:before { 1070 | content: "" 1071 | } 1072 | 1073 | .fa-comments:before { 1074 | content: "" 1075 | } 1076 | 1077 | .fa-thumbs-o-up:before { 1078 | content: "" 1079 | } 1080 | 1081 | .fa-thumbs-o-down:before { 1082 | content: "" 1083 | } 1084 | 1085 | .fa-star-half:before { 1086 | content: "" 1087 | } 1088 | 1089 | .fa-heart-o:before { 1090 | content: "" 1091 | } 1092 | 1093 | .fa-sign-out:before { 1094 | content: "" 1095 | } 1096 | 1097 | .fa-linkedin-square:before { 1098 | content: "" 1099 | } 1100 | 1101 | .fa-thumb-tack:before { 1102 | content: "" 1103 | } 1104 | 1105 | .fa-external-link:before { 1106 | content: "" 1107 | } 1108 | 1109 | .fa-sign-in:before { 1110 | content: "" 1111 | } 1112 | 1113 | .fa-trophy:before { 1114 | content: "" 1115 | } 1116 | 1117 | .fa-github-square:before { 1118 | content: "" 1119 | } 1120 | 1121 | .fa-upload:before { 1122 | content: "" 1123 | } 1124 | 1125 | .fa-lemon-o:before { 1126 | content: "" 1127 | } 1128 | 1129 | .fa-phone:before { 1130 | content: "" 1131 | } 1132 | 1133 | .fa-square-o:before { 1134 | content: "" 1135 | } 1136 | 1137 | .fa-bookmark-o:before { 1138 | content: "" 1139 | } 1140 | 1141 | .fa-phone-square:before { 1142 | content: "" 1143 | } 1144 | 1145 | .fa-twitter:before { 1146 | content: "" 1147 | } 1148 | 1149 | .fa-facebook:before { 1150 | content: "" 1151 | } 1152 | 1153 | .fa-github:before,.icon-github:before { 1154 | content: "" 1155 | } 1156 | 1157 | .fa-unlock:before { 1158 | content: "" 1159 | } 1160 | 1161 | .fa-credit-card:before { 1162 | content: "" 1163 | } 1164 | 1165 | .fa-rss:before { 1166 | content: "" 1167 | } 1168 | 1169 | .fa-hdd-o:before { 1170 | content: "" 1171 | } 1172 | 1173 | .fa-bullhorn:before { 1174 | content: "" 1175 | } 1176 | 1177 | .fa-bell:before { 1178 | content: "" 1179 | } 1180 | 1181 | .fa-certificate:before { 1182 | content: "" 1183 | } 1184 | 1185 | .fa-hand-o-right:before { 1186 | content: "" 1187 | } 1188 | 1189 | .fa-hand-o-left:before { 1190 | content: "" 1191 | } 1192 | 1193 | .fa-hand-o-up:before { 1194 | content: "" 1195 | } 1196 | 1197 | .fa-hand-o-down:before { 1198 | content: "" 1199 | } 1200 | 1201 | .fa-arrow-circle-left:before,.icon-circle-arrow-left:before { 1202 | content: "" 1203 | } 1204 | 1205 | .fa-arrow-circle-right:before,.icon-circle-arrow-right:before { 1206 | content: "" 1207 | } 1208 | 1209 | .fa-arrow-circle-up:before { 1210 | content: "" 1211 | } 1212 | 1213 | .fa-arrow-circle-down:before { 1214 | content: "" 1215 | } 1216 | 1217 | .fa-globe:before { 1218 | content: "" 1219 | } 1220 | 1221 | .fa-wrench:before { 1222 | content: "" 1223 | } 1224 | 1225 | .fa-tasks:before { 1226 | content: "" 1227 | } 1228 | 1229 | .fa-filter:before { 1230 | content: "" 1231 | } 1232 | 1233 | .fa-briefcase:before { 1234 | content: "" 1235 | } 1236 | 1237 | .fa-arrows-alt:before { 1238 | content: "" 1239 | } 1240 | 1241 | .fa-group:before,.fa-users:before { 1242 | content: "" 1243 | } 1244 | 1245 | .fa-chain:before,.fa-link:before,.icon-link:before { 1246 | content: "" 1247 | } 1248 | 1249 | .fa-cloud:before { 1250 | content: "" 1251 | } 1252 | 1253 | .fa-flask:before { 1254 | content: "" 1255 | } 1256 | 1257 | .fa-cut:before,.fa-scissors:before { 1258 | content: "" 1259 | } 1260 | 1261 | .fa-copy:before,.fa-files-o:before { 1262 | content: "" 1263 | } 1264 | 1265 | .fa-paperclip:before { 1266 | content: "" 1267 | } 1268 | 1269 | .fa-save:before,.fa-floppy-o:before { 1270 | content: "" 1271 | } 1272 | 1273 | .fa-square:before { 1274 | content: "" 1275 | } 1276 | 1277 | .fa-navicon:before,.fa-reorder:before,.fa-bars:before { 1278 | content: "" 1279 | } 1280 | 1281 | .fa-list-ul:before { 1282 | content: "" 1283 | } 1284 | 1285 | .fa-list-ol:before { 1286 | content: "" 1287 | } 1288 | 1289 | .fa-strikethrough:before { 1290 | content: "" 1291 | } 1292 | 1293 | .fa-underline:before { 1294 | content: "" 1295 | } 1296 | 1297 | .fa-table:before { 1298 | content: "" 1299 | } 1300 | 1301 | .fa-magic:before { 1302 | content: "" 1303 | } 1304 | 1305 | .fa-truck:before { 1306 | content: "" 1307 | } 1308 | 1309 | .fa-pinterest:before { 1310 | content: "" 1311 | } 1312 | 1313 | .fa-pinterest-square:before { 1314 | content: "" 1315 | } 1316 | 1317 | .fa-google-plus-square:before { 1318 | content: "" 1319 | } 1320 | 1321 | .fa-google-plus:before { 1322 | content: "" 1323 | } 1324 | 1325 | .fa-money:before { 1326 | content: "" 1327 | } 1328 | 1329 | .fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before { 1330 | content: "" 1331 | } 1332 | 1333 | .fa-caret-up:before { 1334 | content: "" 1335 | } 1336 | 1337 | .fa-caret-left:before { 1338 | content: "" 1339 | } 1340 | 1341 | .fa-caret-right:before { 1342 | content: "" 1343 | } 1344 | 1345 | .fa-columns:before { 1346 | content: "" 1347 | } 1348 | 1349 | .fa-unsorted:before,.fa-sort:before { 1350 | content: "" 1351 | } 1352 | 1353 | .fa-sort-down:before,.fa-sort-desc:before { 1354 | content: "" 1355 | } 1356 | 1357 | .fa-sort-up:before,.fa-sort-asc:before { 1358 | content: "" 1359 | } 1360 | 1361 | .fa-envelope:before { 1362 | content: "" 1363 | } 1364 | 1365 | .fa-linkedin:before { 1366 | content: "" 1367 | } 1368 | 1369 | .fa-rotate-left:before,.fa-undo:before { 1370 | content: "" 1371 | } 1372 | 1373 | .fa-legal:before,.fa-gavel:before { 1374 | content: "" 1375 | } 1376 | 1377 | .fa-dashboard:before,.fa-tachometer:before { 1378 | content: "" 1379 | } 1380 | 1381 | .fa-comment-o:before { 1382 | content: "" 1383 | } 1384 | 1385 | .fa-comments-o:before { 1386 | content: "" 1387 | } 1388 | 1389 | .fa-flash:before,.fa-bolt:before { 1390 | content: "" 1391 | } 1392 | 1393 | .fa-sitemap:before { 1394 | content: "" 1395 | } 1396 | 1397 | .fa-umbrella:before { 1398 | content: "" 1399 | } 1400 | 1401 | .fa-paste:before,.fa-clipboard:before { 1402 | content: "" 1403 | } 1404 | 1405 | .fa-lightbulb-o:before { 1406 | content: "" 1407 | } 1408 | 1409 | .fa-exchange:before { 1410 | content: "" 1411 | } 1412 | 1413 | .fa-cloud-download:before { 1414 | content: "" 1415 | } 1416 | 1417 | .fa-cloud-upload:before { 1418 | content: "" 1419 | } 1420 | 1421 | .fa-user-md:before { 1422 | content: "" 1423 | } 1424 | 1425 | .fa-stethoscope:before { 1426 | content: "" 1427 | } 1428 | 1429 | .fa-suitcase:before { 1430 | content: "" 1431 | } 1432 | 1433 | .fa-bell-o:before { 1434 | content: "" 1435 | } 1436 | 1437 | .fa-coffee:before { 1438 | content: "" 1439 | } 1440 | 1441 | .fa-cutlery:before { 1442 | content: "" 1443 | } 1444 | 1445 | .fa-file-text-o:before { 1446 | content: "" 1447 | } 1448 | 1449 | .fa-building-o:before { 1450 | content: "" 1451 | } 1452 | 1453 | .fa-hospital-o:before { 1454 | content: "" 1455 | } 1456 | 1457 | .fa-ambulance:before { 1458 | content: "" 1459 | } 1460 | 1461 | .fa-medkit:before { 1462 | content: "" 1463 | } 1464 | 1465 | .fa-fighter-jet:before { 1466 | content: "" 1467 | } 1468 | 1469 | .fa-beer:before { 1470 | content: "" 1471 | } 1472 | 1473 | .fa-h-square:before { 1474 | content: "" 1475 | } 1476 | 1477 | .fa-plus-square:before { 1478 | content: "" 1479 | } 1480 | 1481 | .fa-angle-double-left:before { 1482 | content: "" 1483 | } 1484 | 1485 | .fa-angle-double-right:before { 1486 | content: "" 1487 | } 1488 | 1489 | .fa-angle-double-up:before { 1490 | content: "" 1491 | } 1492 | 1493 | .fa-angle-double-down:before { 1494 | content: "" 1495 | } 1496 | 1497 | .fa-angle-left:before { 1498 | content: "" 1499 | } 1500 | 1501 | .fa-angle-right:before { 1502 | content: "" 1503 | } 1504 | 1505 | .fa-angle-up:before { 1506 | content: "" 1507 | } 1508 | 1509 | .fa-angle-down:before { 1510 | content: "" 1511 | } 1512 | 1513 | .fa-desktop:before { 1514 | content: "" 1515 | } 1516 | 1517 | .fa-laptop:before { 1518 | content: "" 1519 | } 1520 | 1521 | .fa-tablet:before { 1522 | content: "" 1523 | } 1524 | 1525 | .fa-mobile-phone:before,.fa-mobile:before { 1526 | content: "" 1527 | } 1528 | 1529 | .fa-circle-o:before { 1530 | content: "" 1531 | } 1532 | 1533 | .fa-quote-left:before { 1534 | content: "" 1535 | } 1536 | 1537 | .fa-quote-right:before { 1538 | content: "" 1539 | } 1540 | 1541 | .fa-spinner:before { 1542 | content: "" 1543 | } 1544 | 1545 | .fa-circle:before { 1546 | content: "" 1547 | } 1548 | 1549 | .fa-mail-reply:before,.fa-reply:before { 1550 | content: "" 1551 | } 1552 | 1553 | .fa-github-alt:before { 1554 | content: "" 1555 | } 1556 | 1557 | .fa-folder-o:before { 1558 | content: "" 1559 | } 1560 | 1561 | .fa-folder-open-o:before { 1562 | content: "" 1563 | } 1564 | 1565 | .fa-smile-o:before { 1566 | content: "" 1567 | } 1568 | 1569 | .fa-frown-o:before { 1570 | content: "" 1571 | } 1572 | 1573 | .fa-meh-o:before { 1574 | content: "" 1575 | } 1576 | 1577 | .fa-gamepad:before { 1578 | content: "" 1579 | } 1580 | 1581 | .fa-keyboard-o:before { 1582 | content: "" 1583 | } 1584 | 1585 | .fa-flag-o:before { 1586 | content: "" 1587 | } 1588 | 1589 | .fa-flag-checkered:before { 1590 | content: "" 1591 | } 1592 | 1593 | .fa-terminal:before { 1594 | content: "" 1595 | } 1596 | 1597 | .fa-code:before { 1598 | content: "" 1599 | } 1600 | 1601 | .fa-mail-reply-all:before,.fa-reply-all:before { 1602 | content: "" 1603 | } 1604 | 1605 | .fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before { 1606 | content: "" 1607 | } 1608 | 1609 | .fa-location-arrow:before { 1610 | content: "" 1611 | } 1612 | 1613 | .fa-crop:before { 1614 | content: "" 1615 | } 1616 | 1617 | .fa-code-fork:before { 1618 | content: "" 1619 | } 1620 | 1621 | .fa-unlink:before,.fa-chain-broken:before { 1622 | content: "" 1623 | } 1624 | 1625 | .fa-question:before { 1626 | content: "" 1627 | } 1628 | 1629 | .fa-info:before { 1630 | content: "" 1631 | } 1632 | 1633 | .fa-exclamation:before { 1634 | content: "" 1635 | } 1636 | 1637 | .fa-superscript:before { 1638 | content: "" 1639 | } 1640 | 1641 | .fa-subscript:before { 1642 | content: "" 1643 | } 1644 | 1645 | .fa-eraser:before { 1646 | content: "" 1647 | } 1648 | 1649 | .fa-puzzle-piece:before { 1650 | content: "" 1651 | } 1652 | 1653 | .fa-microphone:before { 1654 | content: "" 1655 | } 1656 | 1657 | .fa-microphone-slash:before { 1658 | content: "" 1659 | } 1660 | 1661 | .fa-shield:before { 1662 | content: "" 1663 | } 1664 | 1665 | .fa-calendar-o:before { 1666 | content: "" 1667 | } 1668 | 1669 | .fa-fire-extinguisher:before { 1670 | content: "" 1671 | } 1672 | 1673 | .fa-rocket:before { 1674 | content: "" 1675 | } 1676 | 1677 | .fa-maxcdn:before { 1678 | content: "" 1679 | } 1680 | 1681 | .fa-chevron-circle-left:before { 1682 | content: "" 1683 | } 1684 | 1685 | .fa-chevron-circle-right:before { 1686 | content: "" 1687 | } 1688 | 1689 | .fa-chevron-circle-up:before { 1690 | content: "" 1691 | } 1692 | 1693 | .fa-chevron-circle-down:before { 1694 | content: "" 1695 | } 1696 | 1697 | .fa-html5:before { 1698 | content: "" 1699 | } 1700 | 1701 | .fa-css3:before { 1702 | content: "" 1703 | } 1704 | 1705 | .fa-anchor:before { 1706 | content: "" 1707 | } 1708 | 1709 | .fa-unlock-alt:before { 1710 | content: "" 1711 | } 1712 | 1713 | .fa-bullseye:before { 1714 | content: "" 1715 | } 1716 | 1717 | .fa-ellipsis-h:before { 1718 | content: "" 1719 | } 1720 | 1721 | .fa-ellipsis-v:before { 1722 | content: "" 1723 | } 1724 | 1725 | .fa-rss-square:before { 1726 | content: "" 1727 | } 1728 | 1729 | .fa-play-circle:before { 1730 | content: "" 1731 | } 1732 | 1733 | .fa-ticket:before { 1734 | content: "" 1735 | } 1736 | 1737 | .fa-minus-square:before { 1738 | content: "" 1739 | } 1740 | 1741 | .fa-minus-square-o:before { 1742 | content: "" 1743 | } 1744 | 1745 | .fa-level-up:before { 1746 | content: "" 1747 | } 1748 | 1749 | .fa-level-down:before { 1750 | content: "" 1751 | } 1752 | 1753 | .fa-check-square:before { 1754 | content: "" 1755 | } 1756 | 1757 | .fa-pencil-square:before { 1758 | content: "" 1759 | } 1760 | 1761 | .fa-external-link-square:before { 1762 | content: "" 1763 | } 1764 | 1765 | .fa-share-square:before { 1766 | content: "" 1767 | } 1768 | 1769 | .fa-compass:before { 1770 | content: "" 1771 | } 1772 | 1773 | .fa-toggle-down:before,.fa-caret-square-o-down:before { 1774 | content: "" 1775 | } 1776 | 1777 | .fa-toggle-up:before,.fa-caret-square-o-up:before { 1778 | content: "" 1779 | } 1780 | 1781 | .fa-toggle-right:before,.fa-caret-square-o-right:before { 1782 | content: "" 1783 | } 1784 | 1785 | .fa-euro:before,.fa-eur:before { 1786 | content: "" 1787 | } 1788 | 1789 | .fa-gbp:before { 1790 | content: "" 1791 | } 1792 | 1793 | .fa-dollar:before,.fa-usd:before { 1794 | content: "" 1795 | } 1796 | 1797 | .fa-rupee:before,.fa-inr:before { 1798 | content: "" 1799 | } 1800 | 1801 | .fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before { 1802 | content: "" 1803 | } 1804 | 1805 | .fa-ruble:before,.fa-rouble:before,.fa-rub:before { 1806 | content: "" 1807 | } 1808 | 1809 | .fa-won:before,.fa-krw:before { 1810 | content: "" 1811 | } 1812 | 1813 | .fa-bitcoin:before,.fa-btc:before { 1814 | content: "" 1815 | } 1816 | 1817 | .fa-file:before { 1818 | content: "" 1819 | } 1820 | 1821 | .fa-file-text:before { 1822 | content: "" 1823 | } 1824 | 1825 | .fa-sort-alpha-asc:before { 1826 | content: "" 1827 | } 1828 | 1829 | .fa-sort-alpha-desc:before { 1830 | content: "" 1831 | } 1832 | 1833 | .fa-sort-amount-asc:before { 1834 | content: "" 1835 | } 1836 | 1837 | .fa-sort-amount-desc:before { 1838 | content: "" 1839 | } 1840 | 1841 | .fa-sort-numeric-asc:before { 1842 | content: "" 1843 | } 1844 | 1845 | .fa-sort-numeric-desc:before { 1846 | content: "" 1847 | } 1848 | 1849 | .fa-thumbs-up:before { 1850 | content: "" 1851 | } 1852 | 1853 | .fa-thumbs-down:before { 1854 | content: "" 1855 | } 1856 | 1857 | .fa-youtube-square:before { 1858 | content: "" 1859 | } 1860 | 1861 | .fa-youtube:before { 1862 | content: "" 1863 | } 1864 | 1865 | .fa-xing:before { 1866 | content: "" 1867 | } 1868 | 1869 | .fa-xing-square:before { 1870 | content: "" 1871 | } 1872 | 1873 | .fa-youtube-play:before { 1874 | content: "" 1875 | } 1876 | 1877 | .fa-dropbox:before { 1878 | content: "" 1879 | } 1880 | 1881 | .fa-stack-overflow:before { 1882 | content: "" 1883 | } 1884 | 1885 | .fa-instagram:before { 1886 | content: "" 1887 | } 1888 | 1889 | .fa-flickr:before { 1890 | content: "" 1891 | } 1892 | 1893 | .fa-adn:before { 1894 | content: "" 1895 | } 1896 | 1897 | .fa-bitbucket:before,.icon-bitbucket:before { 1898 | content: "" 1899 | } 1900 | 1901 | .fa-bitbucket-square:before { 1902 | content: "" 1903 | } 1904 | 1905 | .fa-tumblr:before { 1906 | content: "" 1907 | } 1908 | 1909 | .fa-tumblr-square:before { 1910 | content: "" 1911 | } 1912 | 1913 | .fa-long-arrow-down:before { 1914 | content: "" 1915 | } 1916 | 1917 | .fa-long-arrow-up:before { 1918 | content: "" 1919 | } 1920 | 1921 | .fa-long-arrow-left:before { 1922 | content: "" 1923 | } 1924 | 1925 | .fa-long-arrow-right:before { 1926 | content: "" 1927 | } 1928 | 1929 | .fa-apple:before { 1930 | content: "" 1931 | } 1932 | 1933 | .fa-windows:before { 1934 | content: "" 1935 | } 1936 | 1937 | .fa-android:before { 1938 | content: "" 1939 | } 1940 | 1941 | .fa-linux:before { 1942 | content: "" 1943 | } 1944 | 1945 | .fa-dribbble:before { 1946 | content: "" 1947 | } 1948 | 1949 | .fa-skype:before { 1950 | content: "" 1951 | } 1952 | 1953 | .fa-foursquare:before { 1954 | content: "" 1955 | } 1956 | 1957 | .fa-trello:before { 1958 | content: "" 1959 | } 1960 | 1961 | .fa-female:before { 1962 | content: "" 1963 | } 1964 | 1965 | .fa-male:before { 1966 | content: "" 1967 | } 1968 | 1969 | .fa-gittip:before { 1970 | content: "" 1971 | } 1972 | 1973 | .fa-sun-o:before { 1974 | content: "" 1975 | } 1976 | 1977 | .fa-moon-o:before { 1978 | content: "" 1979 | } 1980 | 1981 | .fa-archive:before { 1982 | content: "" 1983 | } 1984 | 1985 | .fa-bug:before { 1986 | content: "" 1987 | } 1988 | 1989 | .fa-vk:before { 1990 | content: "" 1991 | } 1992 | 1993 | .fa-weibo:before { 1994 | content: "" 1995 | } 1996 | 1997 | .fa-renren:before { 1998 | content: "" 1999 | } 2000 | 2001 | .fa-pagelines:before { 2002 | content: "" 2003 | } 2004 | 2005 | .fa-stack-exchange:before { 2006 | content: "" 2007 | } 2008 | 2009 | .fa-arrow-circle-o-right:before { 2010 | content: "" 2011 | } 2012 | 2013 | .fa-arrow-circle-o-left:before { 2014 | content: "" 2015 | } 2016 | 2017 | .fa-toggle-left:before,.fa-caret-square-o-left:before { 2018 | content: "" 2019 | } 2020 | 2021 | .fa-dot-circle-o:before { 2022 | content: "" 2023 | } 2024 | 2025 | .fa-wheelchair:before { 2026 | content: "" 2027 | } 2028 | 2029 | .fa-vimeo-square:before { 2030 | content: "" 2031 | } 2032 | 2033 | .fa-turkish-lira:before,.fa-try:before { 2034 | content: "" 2035 | } 2036 | 2037 | .fa-plus-square-o:before { 2038 | content: "" 2039 | } 2040 | 2041 | .fa-space-shuttle:before { 2042 | content: "" 2043 | } 2044 | 2045 | .fa-slack:before { 2046 | content: "" 2047 | } 2048 | 2049 | .fa-envelope-square:before { 2050 | content: "" 2051 | } 2052 | 2053 | .fa-wordpress:before { 2054 | content: "" 2055 | } 2056 | 2057 | .fa-openid:before { 2058 | content: "" 2059 | } 2060 | 2061 | .fa-institution:before,.fa-bank:before,.fa-university:before { 2062 | content: "" 2063 | } 2064 | 2065 | .fa-mortar-board:before,.fa-graduation-cap:before { 2066 | content: "" 2067 | } 2068 | 2069 | .fa-yahoo:before { 2070 | content: "" 2071 | } 2072 | 2073 | .fa-google:before { 2074 | content: "" 2075 | } 2076 | 2077 | .fa-reddit:before { 2078 | content: "" 2079 | } 2080 | 2081 | .fa-reddit-square:before { 2082 | content: "" 2083 | } 2084 | 2085 | .fa-stumbleupon-circle:before { 2086 | content: "" 2087 | } 2088 | 2089 | .fa-stumbleupon:before { 2090 | content: "" 2091 | } 2092 | 2093 | .fa-delicious:before { 2094 | content: "" 2095 | } 2096 | 2097 | .fa-digg:before { 2098 | content: "" 2099 | } 2100 | 2101 | .fa-pied-piper-square:before,.fa-pied-piper:before { 2102 | content: "" 2103 | } 2104 | 2105 | .fa-pied-piper-alt:before { 2106 | content: "" 2107 | } 2108 | 2109 | .fa-drupal:before { 2110 | content: "" 2111 | } 2112 | 2113 | .fa-joomla:before { 2114 | content: "" 2115 | } 2116 | 2117 | .fa-language:before { 2118 | content: "" 2119 | } 2120 | 2121 | .fa-fax:before { 2122 | content: "" 2123 | } 2124 | 2125 | .fa-building:before { 2126 | content: "" 2127 | } 2128 | 2129 | .fa-child:before { 2130 | content: "" 2131 | } 2132 | 2133 | .fa-paw:before { 2134 | content: "" 2135 | } 2136 | 2137 | .fa-spoon:before { 2138 | content: "" 2139 | } 2140 | 2141 | .fa-cube:before { 2142 | content: "" 2143 | } 2144 | 2145 | .fa-cubes:before { 2146 | content: "" 2147 | } 2148 | 2149 | .fa-behance:before { 2150 | content: "" 2151 | } 2152 | 2153 | .fa-behance-square:before { 2154 | content: "" 2155 | } 2156 | 2157 | .fa-steam:before { 2158 | content: "" 2159 | } 2160 | 2161 | .fa-steam-square:before { 2162 | content: "" 2163 | } 2164 | 2165 | .fa-recycle:before { 2166 | content: "" 2167 | } 2168 | 2169 | .fa-automobile:before,.fa-car:before { 2170 | content: "" 2171 | } 2172 | 2173 | .fa-cab:before,.fa-taxi:before { 2174 | content: "" 2175 | } 2176 | 2177 | .fa-tree:before { 2178 | content: "" 2179 | } 2180 | 2181 | .fa-spotify:before { 2182 | content: "" 2183 | } 2184 | 2185 | .fa-deviantart:before { 2186 | content: "" 2187 | } 2188 | 2189 | .fa-soundcloud:before { 2190 | content: "" 2191 | } 2192 | 2193 | .fa-database:before { 2194 | content: "" 2195 | } 2196 | 2197 | .fa-file-pdf-o:before { 2198 | content: "" 2199 | } 2200 | 2201 | .fa-file-word-o:before { 2202 | content: "" 2203 | } 2204 | 2205 | .fa-file-excel-o:before { 2206 | content: "" 2207 | } 2208 | 2209 | .fa-file-powerpoint-o:before { 2210 | content: "" 2211 | } 2212 | 2213 | .fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before { 2214 | content: "" 2215 | } 2216 | 2217 | .fa-file-zip-o:before,.fa-file-archive-o:before { 2218 | content: "" 2219 | } 2220 | 2221 | .fa-file-sound-o:before,.fa-file-audio-o:before { 2222 | content: "" 2223 | } 2224 | 2225 | .fa-file-movie-o:before,.fa-file-video-o:before { 2226 | content: "" 2227 | } 2228 | 2229 | .fa-file-code-o:before { 2230 | content: "" 2231 | } 2232 | 2233 | .fa-vine:before { 2234 | content: "" 2235 | } 2236 | 2237 | .fa-codepen:before { 2238 | content: "" 2239 | } 2240 | 2241 | .fa-jsfiddle:before { 2242 | content: "" 2243 | } 2244 | 2245 | .fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before { 2246 | content: "" 2247 | } 2248 | 2249 | .fa-circle-o-notch:before { 2250 | content: "" 2251 | } 2252 | 2253 | .fa-ra:before,.fa-rebel:before { 2254 | content: "" 2255 | } 2256 | 2257 | .fa-ge:before,.fa-empire:before { 2258 | content: "" 2259 | } 2260 | 2261 | .fa-git-square:before { 2262 | content: "" 2263 | } 2264 | 2265 | .fa-git:before { 2266 | content: "" 2267 | } 2268 | 2269 | .fa-hacker-news:before { 2270 | content: "" 2271 | } 2272 | 2273 | .fa-tencent-weibo:before { 2274 | content: "" 2275 | } 2276 | 2277 | .fa-qq:before { 2278 | content: "" 2279 | } 2280 | 2281 | .fa-wechat:before,.fa-weixin:before { 2282 | content: "" 2283 | } 2284 | 2285 | .fa-send:before,.fa-paper-plane:before { 2286 | content: "" 2287 | } 2288 | 2289 | .fa-send-o:before,.fa-paper-plane-o:before { 2290 | content: "" 2291 | } 2292 | 2293 | .fa-history:before { 2294 | content: "" 2295 | } 2296 | 2297 | .fa-circle-thin:before { 2298 | content: "" 2299 | } 2300 | 2301 | .fa-header:before { 2302 | content: "" 2303 | } 2304 | 2305 | .fa-paragraph:before { 2306 | content: "" 2307 | } 2308 | 2309 | .fa-sliders:before { 2310 | content: "" 2311 | } 2312 | 2313 | .fa-share-alt:before { 2314 | content: "" 2315 | } 2316 | 2317 | .fa-share-alt-square:before { 2318 | content: "" 2319 | } 2320 | 2321 | .fa-bomb:before { 2322 | content: "" 2323 | } 2324 | 2325 | .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 { 2326 | font-family: inherit 2327 | } 2328 | 2329 | .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 { 2330 | font-family: "FontAwesome"; 2331 | display: inline-block; 2332 | font-style: normal; 2333 | font-weight: normal; 2334 | line-height: 1; 2335 | text-decoration: inherit 2336 | } 2337 | 2338 | 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 { 2339 | display: inline-block; 2340 | text-decoration: inherit 2341 | } 2342 | 2343 | .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 { 2344 | display: inline 2345 | } 2346 | 2347 | .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 { 2348 | line-height: 0.9em 2349 | } 2350 | 2351 | .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 { 2352 | display: inline-block 2353 | } 2354 | 2355 | .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 { 2356 | opacity: 0.5; 2357 | -webkit-transition: opacity 0.05s ease-in; 2358 | -moz-transition: opacity 0.05s ease-in; 2359 | transition: opacity 0.05s ease-in 2360 | } 2361 | 2362 | .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 { 2363 | opacity: 1 2364 | } 2365 | 2366 | .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 { 2367 | font-size: 14px; 2368 | vertical-align: -15% 2369 | } 2370 | 2371 | .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,.rst-content .admonition-todo { 2372 | padding: 12px; 2373 | line-height: 24px; 2374 | margin-bottom: 24px; 2375 | background: #e7f2fa 2376 | } 2377 | 2378 | .wy-alert-title,.rst-content .admonition-title { 2379 | color: #fff; 2380 | font-weight: bold; 2381 | display: block; 2382 | color: #fff; 2383 | background: #6ab0de; 2384 | margin: -12px; 2385 | padding: 6px 12px; 2386 | margin-bottom: 12px 2387 | } 2388 | 2389 | .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,.rst-content .wy-alert-danger.admonition-todo { 2390 | background: #fdf3f2 2391 | } 2392 | 2393 | .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,.rst-content .wy-alert-danger.admonition-todo .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,.rst-content .wy-alert-danger.admonition-todo .admonition-title { 2394 | background: #f29f97 2395 | } 2396 | 2397 | .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,.rst-content .admonition-todo { 2398 | background: #ffedcc 2399 | } 2400 | 2401 | .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,.rst-content .admonition-todo .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,.rst-content .admonition-todo .admonition-title { 2402 | background: #f0b37e 2403 | } 2404 | 2405 | .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,.rst-content .wy-alert-info.admonition-todo { 2406 | background: #e7f2fa 2407 | } 2408 | 2409 | .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,.rst-content .wy-alert-info.admonition-todo .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,.rst-content .wy-alert-info.admonition-todo .admonition-title { 2410 | background: #6ab0de 2411 | } 2412 | 2413 | .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,.rst-content .wy-alert-success.admonition-todo { 2414 | background: #dbfaf4 2415 | } 2416 | 2417 | .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,.rst-content .wy-alert-success.admonition-todo .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,.rst-content .wy-alert-success.admonition-todo .admonition-title { 2418 | background: #1abc9c 2419 | } 2420 | 2421 | .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,.rst-content .wy-alert-neutral.admonition-todo { 2422 | background: #f3f6f6 2423 | } 2424 | 2425 | .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,.rst-content .wy-alert-neutral.admonition-todo .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,.rst-content .wy-alert-neutral.admonition-todo .admonition-title { 2426 | color: #404040; 2427 | background: #e1e4e5 2428 | } 2429 | 2430 | .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,.rst-content .wy-alert-neutral.admonition-todo a { 2431 | color: #D00000 2432 | } 2433 | 2434 | .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,.rst-content .admonition-todo p:last-child { 2435 | margin-bottom: 0 2436 | } 2437 | 2438 | .wy-tray-container { 2439 | position: fixed; 2440 | bottom: 0px; 2441 | left: 0; 2442 | z-index: 600 2443 | } 2444 | 2445 | .wy-tray-container li { 2446 | display: block; 2447 | width: 300px; 2448 | background: transparent; 2449 | color: #fff; 2450 | text-align: center; 2451 | box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1); 2452 | padding: 0 24px; 2453 | min-width: 20%; 2454 | opacity: 0; 2455 | height: 0; 2456 | line-height: 56px; 2457 | overflow: hidden; 2458 | -webkit-transition: all 0.3s ease-in; 2459 | -moz-transition: all 0.3s ease-in; 2460 | transition: all 0.3s ease-in 2461 | } 2462 | 2463 | .wy-tray-container li.wy-tray-item-success { 2464 | background: #27AE60 2465 | } 2466 | 2467 | .wy-tray-container li.wy-tray-item-info { 2468 | background: #D00000 2469 | } 2470 | 2471 | .wy-tray-container li.wy-tray-item-warning { 2472 | background: #E67E22 2473 | } 2474 | 2475 | .wy-tray-container li.wy-tray-item-danger { 2476 | background: #E74C3C 2477 | } 2478 | 2479 | .wy-tray-container li.on { 2480 | opacity: 1; 2481 | height: 56px 2482 | } 2483 | 2484 | @media screen and (max-width: 768px) { 2485 | .wy-tray-container { 2486 | bottom:auto; 2487 | top: 0; 2488 | width: 100% 2489 | } 2490 | 2491 | .wy-tray-container li { 2492 | width: 100% 2493 | } 2494 | } 2495 | 2496 | button { 2497 | font-size: 100%; 2498 | margin: 0; 2499 | vertical-align: baseline; 2500 | *vertical-align: middle; 2501 | cursor: pointer; 2502 | line-height: normal; 2503 | -webkit-appearance: button; 2504 | *overflow: visible 2505 | } 2506 | 2507 | button::-moz-focus-inner,input::-moz-focus-inner { 2508 | border: 0; 2509 | padding: 0 2510 | } 2511 | 2512 | button[disabled] { 2513 | cursor: default 2514 | } 2515 | 2516 | .btn { 2517 | display: inline-block; 2518 | border-radius: 2px; 2519 | line-height: normal; 2520 | white-space: nowrap; 2521 | text-align: center; 2522 | cursor: pointer; 2523 | font-size: 100%; 2524 | padding: 6px 12px 8px 12px; 2525 | color: #fff; 2526 | border: 1px solid rgba(0,0,0,0.1); 2527 | background-color: #27AE60; 2528 | text-decoration: none; 2529 | font-weight: normal; 2530 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif; 2531 | box-shadow: 0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset; 2532 | outline-none: false; 2533 | vertical-align: middle; 2534 | *display: inline; 2535 | zoom:1;-webkit-user-drag: none; 2536 | -webkit-user-select: none; 2537 | -moz-user-select: none; 2538 | -ms-user-select: none; 2539 | user-select: none; 2540 | -webkit-transition: all 0.1s linear; 2541 | -moz-transition: all 0.1s linear; 2542 | transition: all 0.1s linear 2543 | } 2544 | 2545 | .btn-hover { 2546 | background: #2e8ece; 2547 | color: #fff 2548 | } 2549 | 2550 | .btn:hover { 2551 | background: #2cc36b; 2552 | color: #fff 2553 | } 2554 | 2555 | .btn:focus { 2556 | background: #2cc36b; 2557 | outline: 0 2558 | } 2559 | 2560 | .btn:active { 2561 | box-shadow: 0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset; 2562 | padding: 8px 12px 6px 12px 2563 | } 2564 | 2565 | .btn:visited { 2566 | color: #fff 2567 | } 2568 | 2569 | .btn:disabled { 2570 | background-image: none; 2571 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 2572 | filter: alpha(opacity=40); 2573 | opacity: 0.4; 2574 | cursor: not-allowed; 2575 | box-shadow: none 2576 | } 2577 | 2578 | .btn-disabled { 2579 | background-image: none; 2580 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 2581 | filter: alpha(opacity=40); 2582 | opacity: 0.4; 2583 | cursor: not-allowed; 2584 | box-shadow: none 2585 | } 2586 | 2587 | .btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active { 2588 | background-image: none; 2589 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 2590 | filter: alpha(opacity=40); 2591 | opacity: 0.4; 2592 | cursor: not-allowed; 2593 | box-shadow: none 2594 | } 2595 | 2596 | .btn::-moz-focus-inner { 2597 | padding: 0; 2598 | border: 0 2599 | } 2600 | 2601 | .btn-small { 2602 | font-size: 80% 2603 | } 2604 | 2605 | .btn-info { 2606 | background-color: #D00000 !important 2607 | } 2608 | 2609 | .btn-info:hover { 2610 | background-color: #2e8ece !important 2611 | } 2612 | 2613 | .btn-neutral { 2614 | background-color: #f3f6f6 !important; 2615 | color: #404040 !important 2616 | } 2617 | 2618 | .btn-neutral:hover { 2619 | background-color: #e5ebeb !important; 2620 | color: #404040 2621 | } 2622 | 2623 | .btn-neutral:visited { 2624 | color: #404040 !important 2625 | } 2626 | 2627 | .btn-success { 2628 | background-color: #27AE60 !important 2629 | } 2630 | 2631 | .btn-success:hover { 2632 | background-color: #295 !important 2633 | } 2634 | 2635 | .btn-danger { 2636 | background-color: #E74C3C !important 2637 | } 2638 | 2639 | .btn-danger:hover { 2640 | background-color: #ea6153 !important 2641 | } 2642 | 2643 | .btn-warning { 2644 | background-color: #E67E22 !important 2645 | } 2646 | 2647 | .btn-warning:hover { 2648 | background-color: #e98b39 !important 2649 | } 2650 | 2651 | .btn-invert { 2652 | background-color: #222 2653 | } 2654 | 2655 | .btn-invert:hover { 2656 | background-color: #2f2f2f !important 2657 | } 2658 | 2659 | .btn-link { 2660 | background-color: transparent !important; 2661 | color: #D00000; 2662 | box-shadow: none; 2663 | border-color: transparent !important 2664 | } 2665 | 2666 | .btn-link:hover { 2667 | background-color: transparent !important; 2668 | color: #409ad5 !important; 2669 | box-shadow: none 2670 | } 2671 | 2672 | .btn-link:active { 2673 | background-color: transparent !important; 2674 | color: #409ad5 !important; 2675 | box-shadow: none 2676 | } 2677 | 2678 | .btn-link:visited { 2679 | color: #8E4A4A 2680 | } 2681 | 2682 | .wy-btn-group .btn,.wy-control .btn { 2683 | vertical-align: middle 2684 | } 2685 | 2686 | .wy-btn-group { 2687 | margin-bottom: 24px; 2688 | *zoom:1} 2689 | 2690 | .wy-btn-group:before,.wy-btn-group:after { 2691 | display: table; 2692 | content: "" 2693 | } 2694 | 2695 | .wy-btn-group:after { 2696 | clear: both 2697 | } 2698 | 2699 | .wy-dropdown { 2700 | position: relative; 2701 | display: inline-block 2702 | } 2703 | 2704 | .wy-dropdown-menu { 2705 | position: absolute; 2706 | left: 0; 2707 | display: none; 2708 | float: left; 2709 | top: 100%; 2710 | min-width: 100%; 2711 | background: #fcfcfc; 2712 | z-index: 100; 2713 | border: solid 1px #cfd7dd; 2714 | box-shadow: 0 2px 2px 0 rgba(0,0,0,0.1); 2715 | padding: 12px 2716 | } 2717 | 2718 | .wy-dropdown-menu>dd>a { 2719 | display: block; 2720 | clear: both; 2721 | color: #404040; 2722 | white-space: nowrap; 2723 | font-size: 90%; 2724 | padding: 0 12px; 2725 | cursor: pointer 2726 | } 2727 | 2728 | .wy-dropdown-menu>dd>a:hover { 2729 | background: #D00000; 2730 | color: #fff 2731 | } 2732 | 2733 | .wy-dropdown-menu>dd.divider { 2734 | border-top: solid 1px #cfd7dd; 2735 | margin: 6px 0 2736 | } 2737 | 2738 | .wy-dropdown-menu>dd.search { 2739 | padding-bottom: 12px 2740 | } 2741 | 2742 | .wy-dropdown-menu>dd.search input[type="search"] { 2743 | width: 100% 2744 | } 2745 | 2746 | .wy-dropdown-menu>dd.call-to-action { 2747 | background: #e3e3e3; 2748 | text-transform: uppercase; 2749 | font-weight: 500; 2750 | font-size: 80% 2751 | } 2752 | 2753 | .wy-dropdown-menu>dd.call-to-action:hover { 2754 | background: #e3e3e3 2755 | } 2756 | 2757 | .wy-dropdown-menu>dd.call-to-action .btn { 2758 | color: #fff 2759 | } 2760 | 2761 | .wy-dropdown.wy-dropdown-up .wy-dropdown-menu { 2762 | bottom: 100%; 2763 | top: auto; 2764 | left: auto; 2765 | right: 0 2766 | } 2767 | 2768 | .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu { 2769 | background: #fcfcfc; 2770 | margin-top: 2px 2771 | } 2772 | 2773 | .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a { 2774 | padding: 6px 12px 2775 | } 2776 | 2777 | .wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover { 2778 | background: #D00000; 2779 | color: #fff 2780 | } 2781 | 2782 | .wy-dropdown.wy-dropdown-left .wy-dropdown-menu { 2783 | right: 0; 2784 | text-align: right 2785 | } 2786 | 2787 | .wy-dropdown-arrow:before { 2788 | content: " "; 2789 | border-bottom: 5px solid #f5f5f5; 2790 | border-left: 5px solid transparent; 2791 | border-right: 5px solid transparent; 2792 | position: absolute; 2793 | display: block; 2794 | top: -4px; 2795 | left: 50%; 2796 | margin-left: -3px 2797 | } 2798 | 2799 | .wy-dropdown-arrow.wy-dropdown-arrow-left:before { 2800 | left: 11px 2801 | } 2802 | 2803 | .wy-form-stacked select { 2804 | display: block 2805 | } 2806 | 2807 | .wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label { 2808 | display: inline-block; 2809 | *display: inline; 2810 | *zoom:1;vertical-align: middle 2811 | } 2812 | 2813 | .wy-form-aligned .wy-control-group>label { 2814 | display: inline-block; 2815 | vertical-align: middle; 2816 | width: 10em; 2817 | margin: 6px 12px 0 0; 2818 | float: left 2819 | } 2820 | 2821 | .wy-form-aligned .wy-control { 2822 | float: left 2823 | } 2824 | 2825 | .wy-form-aligned .wy-control label { 2826 | display: block 2827 | } 2828 | 2829 | .wy-form-aligned .wy-control select { 2830 | margin-top: 6px 2831 | } 2832 | 2833 | fieldset { 2834 | border: 0; 2835 | margin: 0; 2836 | padding: 0 2837 | } 2838 | 2839 | legend { 2840 | display: block; 2841 | width: 100%; 2842 | border: 0; 2843 | padding: 0; 2844 | white-space: normal; 2845 | margin-bottom: 24px; 2846 | font-size: 150%; 2847 | *margin-left: -7px 2848 | } 2849 | 2850 | label { 2851 | display: block; 2852 | margin: 0 0 0.3125em 0; 2853 | color: #999; 2854 | font-size: 90% 2855 | } 2856 | 2857 | input,select,textarea { 2858 | font-size: 100%; 2859 | margin: 0; 2860 | vertical-align: baseline; 2861 | *vertical-align: middle 2862 | } 2863 | 2864 | .wy-control-group { 2865 | margin-bottom: 24px; 2866 | *zoom:1;max-width: 68em; 2867 | margin-left: auto; 2868 | margin-right: auto; 2869 | *zoom:1} 2870 | 2871 | .wy-control-group:before,.wy-control-group:after { 2872 | display: table; 2873 | content: "" 2874 | } 2875 | 2876 | .wy-control-group:after { 2877 | clear: both 2878 | } 2879 | 2880 | .wy-control-group:before,.wy-control-group:after { 2881 | display: table; 2882 | content: "" 2883 | } 2884 | 2885 | .wy-control-group:after { 2886 | clear: both 2887 | } 2888 | 2889 | .wy-control-group.wy-control-group-required>label:after { 2890 | content: " *"; 2891 | color: #E74C3C 2892 | } 2893 | 2894 | .wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds { 2895 | padding-bottom: 12px 2896 | } 2897 | 2898 | .wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select { 2899 | width: 100% 2900 | } 2901 | 2902 | .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"] { 2903 | width: 100% 2904 | } 2905 | 2906 | .wy-control-group .wy-form-full { 2907 | float: left; 2908 | display: block; 2909 | margin-right: 2.35765%; 2910 | width: 100%; 2911 | margin-right: 0 2912 | } 2913 | 2914 | .wy-control-group .wy-form-full:last-child { 2915 | margin-right: 0 2916 | } 2917 | 2918 | .wy-control-group .wy-form-halves { 2919 | float: left; 2920 | display: block; 2921 | margin-right: 2.35765%; 2922 | width: 48.82117% 2923 | } 2924 | 2925 | .wy-control-group .wy-form-halves:last-child { 2926 | margin-right: 0 2927 | } 2928 | 2929 | .wy-control-group .wy-form-halves:nth-of-type(2n) { 2930 | margin-right: 0 2931 | } 2932 | 2933 | .wy-control-group .wy-form-halves:nth-of-type(2n+1) { 2934 | clear: left 2935 | } 2936 | 2937 | .wy-control-group .wy-form-thirds { 2938 | float: left; 2939 | display: block; 2940 | margin-right: 2.35765%; 2941 | width: 31.76157% 2942 | } 2943 | 2944 | .wy-control-group .wy-form-thirds:last-child { 2945 | margin-right: 0 2946 | } 2947 | 2948 | .wy-control-group .wy-form-thirds:nth-of-type(3n) { 2949 | margin-right: 0 2950 | } 2951 | 2952 | .wy-control-group .wy-form-thirds:nth-of-type(3n+1) { 2953 | clear: left 2954 | } 2955 | 2956 | .wy-control-group.wy-control-group-no-input .wy-control { 2957 | margin: 6px 0 0 0; 2958 | font-size: 90% 2959 | } 2960 | 2961 | .wy-control-no-input { 2962 | display: inline-block; 2963 | margin: 6px 0 0 0; 2964 | font-size: 90% 2965 | } 2966 | 2967 | .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"] { 2968 | width: 100% 2969 | } 2970 | 2971 | .wy-form-message-inline { 2972 | display: inline-block; 2973 | padding-left: 0.3em; 2974 | color: #666; 2975 | vertical-align: middle; 2976 | font-size: 90% 2977 | } 2978 | 2979 | .wy-form-message { 2980 | display: block; 2981 | color: #999; 2982 | font-size: 70%; 2983 | margin-top: 0.3125em; 2984 | font-style: italic 2985 | } 2986 | 2987 | input { 2988 | line-height: normal 2989 | } 2990 | 2991 | input[type="button"],input[type="reset"],input[type="submit"] { 2992 | -webkit-appearance: button; 2993 | cursor: pointer; 2994 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif; 2995 | *overflow: visible 2996 | } 2997 | 2998 | 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"] { 2999 | -webkit-appearance: none; 3000 | padding: 6px; 3001 | display: inline-block; 3002 | border: 1px solid #ccc; 3003 | font-size: 80%; 3004 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif; 3005 | box-shadow: inset 0 1px 3px #ddd; 3006 | border-radius: 0; 3007 | -webkit-transition: border 0.3s linear; 3008 | -moz-transition: border 0.3s linear; 3009 | transition: border 0.3s linear 3010 | } 3011 | 3012 | input[type="datetime-local"] { 3013 | padding: 0.34375em 0.625em 3014 | } 3015 | 3016 | input[disabled] { 3017 | cursor: default 3018 | } 3019 | 3020 | input[type="checkbox"],input[type="radio"] { 3021 | -webkit-box-sizing: border-box; 3022 | -moz-box-sizing: border-box; 3023 | box-sizing: border-box; 3024 | padding: 0; 3025 | margin-right: 0.3125em; 3026 | *height: 13px; 3027 | *width: 13px 3028 | } 3029 | 3030 | input[type="search"] { 3031 | -webkit-box-sizing: border-box; 3032 | -moz-box-sizing: border-box; 3033 | box-sizing: border-box 3034 | } 3035 | 3036 | input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration { 3037 | -webkit-appearance: none 3038 | } 3039 | 3040 | 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 { 3041 | outline: 0; 3042 | outline: thin dotted \9; 3043 | border-color: #333 3044 | } 3045 | 3046 | input.no-focus:focus { 3047 | border-color: #ccc !important 3048 | } 3049 | 3050 | input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus { 3051 | outline: thin dotted #333; 3052 | outline: 1px auto #129FEA 3053 | } 3054 | 3055 | 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] { 3056 | cursor: not-allowed; 3057 | background-color: #f3f6f6; 3058 | color: #cad2d3 3059 | } 3060 | 3061 | input:focus:invalid,textarea:focus:invalid,select:focus:invalid { 3062 | color: #E74C3C; 3063 | border: 1px solid #E74C3C 3064 | } 3065 | 3066 | input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus { 3067 | border-color: #E74C3C 3068 | } 3069 | 3070 | input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus { 3071 | outline-color: #E74C3C 3072 | } 3073 | 3074 | input.wy-input-large { 3075 | padding: 12px; 3076 | font-size: 100% 3077 | } 3078 | 3079 | textarea { 3080 | overflow: auto; 3081 | vertical-align: top; 3082 | width: 100%; 3083 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif 3084 | } 3085 | 3086 | select,textarea { 3087 | padding: 0.5em 0.625em; 3088 | display: inline-block; 3089 | border: 1px solid #ccc; 3090 | font-size: 80%; 3091 | box-shadow: inset 0 1px 3px #ddd; 3092 | -webkit-transition: border 0.3s linear; 3093 | -moz-transition: border 0.3s linear; 3094 | transition: border 0.3s linear 3095 | } 3096 | 3097 | select { 3098 | border: 1px solid #ccc; 3099 | background-color: #fff 3100 | } 3101 | 3102 | select[multiple] { 3103 | height: auto 3104 | } 3105 | 3106 | select:focus,textarea:focus { 3107 | outline: 0 3108 | } 3109 | 3110 | select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly] { 3111 | cursor: not-allowed; 3112 | background-color: #fff; 3113 | color: #cad2d3; 3114 | border-color: transparent 3115 | } 3116 | 3117 | .wy-checkbox,.wy-radio { 3118 | margin: 6px 0; 3119 | color: #404040; 3120 | display: block 3121 | } 3122 | 3123 | .wy-checkbox input,.wy-radio input { 3124 | vertical-align: baseline 3125 | } 3126 | 3127 | .wy-form-message-inline { 3128 | display: inline-block; 3129 | *display: inline; 3130 | *zoom:1;vertical-align: middle 3131 | } 3132 | 3133 | .wy-input-prefix,.wy-input-suffix { 3134 | white-space: nowrap 3135 | } 3136 | 3137 | .wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context { 3138 | padding: 6px; 3139 | display: inline-block; 3140 | font-size: 80%; 3141 | background-color: #f3f6f6; 3142 | border: solid 1px #ccc; 3143 | color: #999 3144 | } 3145 | 3146 | .wy-input-suffix .wy-input-context { 3147 | border-left: 0 3148 | } 3149 | 3150 | .wy-input-prefix .wy-input-context { 3151 | border-right: 0 3152 | } 3153 | 3154 | .wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label { 3155 | color: #E74C3C 3156 | } 3157 | 3158 | .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"] { 3159 | border: solid 1px #E74C3C 3160 | } 3161 | 3162 | .wy-control-group.wy-control-group-error textarea { 3163 | border: solid 1px #E74C3C 3164 | } 3165 | 3166 | .wy-inline-validate { 3167 | white-space: nowrap 3168 | } 3169 | 3170 | .wy-inline-validate .wy-input-context { 3171 | padding: 0.5em 0.625em; 3172 | display: inline-block; 3173 | font-size: 80% 3174 | } 3175 | 3176 | .wy-inline-validate.wy-inline-validate-success .wy-input-context { 3177 | color: #27AE60 3178 | } 3179 | 3180 | .wy-inline-validate.wy-inline-validate-danger .wy-input-context { 3181 | color: #E74C3C 3182 | } 3183 | 3184 | .wy-inline-validate.wy-inline-validate-warning .wy-input-context { 3185 | color: #E67E22 3186 | } 3187 | 3188 | .wy-inline-validate.wy-inline-validate-info .wy-input-context { 3189 | color: #D00000 3190 | } 3191 | 3192 | .rotate-90 { 3193 | -webkit-transform: rotate(90deg); 3194 | -moz-transform: rotate(90deg); 3195 | -ms-transform: rotate(90deg); 3196 | -o-transform: rotate(90deg); 3197 | transform: rotate(90deg) 3198 | } 3199 | 3200 | .rotate-180 { 3201 | -webkit-transform: rotate(180deg); 3202 | -moz-transform: rotate(180deg); 3203 | -ms-transform: rotate(180deg); 3204 | -o-transform: rotate(180deg); 3205 | transform: rotate(180deg) 3206 | } 3207 | 3208 | .rotate-270 { 3209 | -webkit-transform: rotate(270deg); 3210 | -moz-transform: rotate(270deg); 3211 | -ms-transform: rotate(270deg); 3212 | -o-transform: rotate(270deg); 3213 | transform: rotate(270deg) 3214 | } 3215 | 3216 | .mirror { 3217 | -webkit-transform: scaleX(-1); 3218 | -moz-transform: scaleX(-1); 3219 | -ms-transform: scaleX(-1); 3220 | -o-transform: scaleX(-1); 3221 | transform: scaleX(-1) 3222 | } 3223 | 3224 | .mirror.rotate-90 { 3225 | -webkit-transform: scaleX(-1) rotate(90deg); 3226 | -moz-transform: scaleX(-1) rotate(90deg); 3227 | -ms-transform: scaleX(-1) rotate(90deg); 3228 | -o-transform: scaleX(-1) rotate(90deg); 3229 | transform: scaleX(-1) rotate(90deg) 3230 | } 3231 | 3232 | .mirror.rotate-180 { 3233 | -webkit-transform: scaleX(-1) rotate(180deg); 3234 | -moz-transform: scaleX(-1) rotate(180deg); 3235 | -ms-transform: scaleX(-1) rotate(180deg); 3236 | -o-transform: scaleX(-1) rotate(180deg); 3237 | transform: scaleX(-1) rotate(180deg) 3238 | } 3239 | 3240 | .mirror.rotate-270 { 3241 | -webkit-transform: scaleX(-1) rotate(270deg); 3242 | -moz-transform: scaleX(-1) rotate(270deg); 3243 | -ms-transform: scaleX(-1) rotate(270deg); 3244 | -o-transform: scaleX(-1) rotate(270deg); 3245 | transform: scaleX(-1) rotate(270deg) 3246 | } 3247 | 3248 | @media only screen and (max-width: 480px) { 3249 | .wy-form button[type="submit"] { 3250 | margin:0.7em 0 0 3251 | } 3252 | 3253 | .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"] { 3254 | margin-bottom: 0.3em; 3255 | display: block 3256 | } 3257 | 3258 | .wy-form label { 3259 | margin-bottom: 0.3em; 3260 | display: block 3261 | } 3262 | 3263 | .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"] { 3264 | margin-bottom: 0 3265 | } 3266 | 3267 | .wy-form-aligned .wy-control-group label { 3268 | margin-bottom: 0.3em; 3269 | text-align: left; 3270 | display: block; 3271 | width: 100% 3272 | } 3273 | 3274 | .wy-form-aligned .wy-control { 3275 | margin: 1.5em 0 0 0 3276 | } 3277 | 3278 | .wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message { 3279 | display: block; 3280 | font-size: 80%; 3281 | padding: 6px 0 3282 | } 3283 | } 3284 | 3285 | @media screen and (max-width: 768px) { 3286 | .tablet-hide { 3287 | display:none 3288 | } 3289 | } 3290 | 3291 | @media screen and (max-width: 480px) { 3292 | .mobile-hide { 3293 | display:none 3294 | } 3295 | } 3296 | 3297 | .float-left { 3298 | float: left 3299 | } 3300 | 3301 | .float-right { 3302 | float: right 3303 | } 3304 | 3305 | .full-width { 3306 | width: 100% 3307 | } 3308 | 3309 | .wy-table,.rst-content table.docutils,.rst-content table.field-list { 3310 | border-collapse: collapse; 3311 | border-spacing: 0; 3312 | empty-cells: show; 3313 | margin-bottom: 24px 3314 | } 3315 | 3316 | .wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption { 3317 | color: #000; 3318 | font: italic 85%/1 arial,sans-serif; 3319 | padding: 1em 0; 3320 | text-align: center 3321 | } 3322 | 3323 | .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 { 3324 | font-size: 90%; 3325 | margin: 0; 3326 | overflow: visible; 3327 | padding: 8px 16px 3328 | } 3329 | 3330 | .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 { 3331 | border-left-width: 0 3332 | } 3333 | 3334 | .wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead { 3335 | color: #000; 3336 | text-align: left; 3337 | vertical-align: bottom; 3338 | white-space: nowrap 3339 | } 3340 | 3341 | .wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th { 3342 | font-weight: bold; 3343 | border-bottom: solid 2px #e1e4e5 3344 | } 3345 | 3346 | .wy-table td,.rst-content table.docutils td,.rst-content table.field-list td { 3347 | background-color: transparent; 3348 | vertical-align: middle 3349 | } 3350 | 3351 | .wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p { 3352 | line-height: 18px 3353 | } 3354 | 3355 | .wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child { 3356 | margin-bottom: 0 3357 | } 3358 | 3359 | .wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min { 3360 | width: 1%; 3361 | padding-right: 0 3362 | } 3363 | 3364 | .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] { 3365 | margin: 0 3366 | } 3367 | 3368 | .wy-table-secondary { 3369 | color: gray; 3370 | font-size: 90% 3371 | } 3372 | 3373 | .wy-table-tertiary { 3374 | color: gray; 3375 | font-size: 80% 3376 | } 3377 | 3378 | .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 { 3379 | background-color: #f3f6f6 3380 | } 3381 | 3382 | .wy-table-backed { 3383 | background-color: #f3f6f6 3384 | } 3385 | 3386 | .wy-table-bordered-all,.rst-content table.docutils { 3387 | border: 1px solid #e1e4e5 3388 | } 3389 | 3390 | .wy-table-bordered-all td,.rst-content table.docutils td { 3391 | border-bottom: 1px solid #e1e4e5; 3392 | border-left: 1px solid #e1e4e5 3393 | } 3394 | 3395 | .wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td { 3396 | border-bottom-width: 0 3397 | } 3398 | 3399 | .wy-table-bordered { 3400 | border: 1px solid #e1e4e5 3401 | } 3402 | 3403 | .wy-table-bordered-rows td { 3404 | border-bottom: 1px solid #e1e4e5 3405 | } 3406 | 3407 | .wy-table-bordered-rows tbody>tr:last-child td { 3408 | border-bottom-width: 0 3409 | } 3410 | 3411 | .wy-table-horizontal tbody>tr:last-child td { 3412 | border-bottom-width: 0 3413 | } 3414 | 3415 | .wy-table-horizontal td,.wy-table-horizontal th { 3416 | border-width: 0 0 1px 0; 3417 | border-bottom: 1px solid #e1e4e5 3418 | } 3419 | 3420 | .wy-table-horizontal tbody>tr:last-child td { 3421 | border-bottom-width: 0 3422 | } 3423 | 3424 | .wy-table-responsive { 3425 | margin-bottom: 24px; 3426 | max-width: 100%; 3427 | overflow: auto 3428 | } 3429 | 3430 | .wy-table-responsive table { 3431 | margin-bottom: 0 !important 3432 | } 3433 | 3434 | .wy-table-responsive table td,.wy-table-responsive table th { 3435 | white-space: nowrap 3436 | } 3437 | 3438 | a { 3439 | color: #D00000; 3440 | text-decoration: none 3441 | } 3442 | 3443 | a:hover { 3444 | color: #3091d1 3445 | } 3446 | 3447 | a:visited { 3448 | color: #8E4A4A 3449 | } 3450 | 3451 | html { 3452 | height: 100%; 3453 | overflow-x: hidden 3454 | } 3455 | 3456 | body { 3457 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif; 3458 | font-weight: normal; 3459 | color: #404040; 3460 | min-height: 100%; 3461 | overflow-x: hidden; 3462 | background: #edf0f2 3463 | } 3464 | 3465 | .wy-text-left { 3466 | text-align: left 3467 | } 3468 | 3469 | .wy-text-center { 3470 | text-align: center 3471 | } 3472 | 3473 | .wy-text-right { 3474 | text-align: right 3475 | } 3476 | 3477 | .wy-text-large { 3478 | font-size: 120% 3479 | } 3480 | 3481 | .wy-text-normal { 3482 | font-size: 100% 3483 | } 3484 | 3485 | .wy-text-small,small { 3486 | font-size: 80% 3487 | } 3488 | 3489 | .wy-text-strike { 3490 | text-decoration: line-through 3491 | } 3492 | 3493 | .wy-text-warning { 3494 | color: #E67E22 !important 3495 | } 3496 | 3497 | a.wy-text-warning:hover { 3498 | color: #eb9950 !important 3499 | } 3500 | 3501 | .wy-text-info { 3502 | color: #D00000 !important 3503 | } 3504 | 3505 | a.wy-text-info:hover { 3506 | color: #409ad5 !important 3507 | } 3508 | 3509 | .wy-text-success { 3510 | color: #27AE60 !important 3511 | } 3512 | 3513 | a.wy-text-success:hover { 3514 | color: #36d278 !important 3515 | } 3516 | 3517 | .wy-text-danger { 3518 | color: #E74C3C !important 3519 | } 3520 | 3521 | a.wy-text-danger:hover { 3522 | color: #ed7669 !important 3523 | } 3524 | 3525 | .wy-text-neutral { 3526 | color: #404040 !important 3527 | } 3528 | 3529 | a.wy-text-neutral:hover { 3530 | color: #595959 !important 3531 | } 3532 | 3533 | h1,h2,h3,h4,h5,h6,legend { 3534 | margin-top: 0; 3535 | font-weight: 700; 3536 | font-family: "Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif 3537 | } 3538 | 3539 | p { 3540 | line-height: 24px; 3541 | margin: 0; 3542 | font-size: 16px; 3543 | margin-bottom: 24px 3544 | } 3545 | 3546 | h1 { 3547 | font-size: 175% 3548 | } 3549 | 3550 | h2 { 3551 | font-size: 150% 3552 | } 3553 | 3554 | h3 { 3555 | font-size: 125% 3556 | } 3557 | 3558 | h4 { 3559 | font-size: 115% 3560 | } 3561 | 3562 | h5 { 3563 | font-size: 110% 3564 | } 3565 | 3566 | h6 { 3567 | font-size: 100% 3568 | } 3569 | 3570 | hr { 3571 | display: block; 3572 | height: 1px; 3573 | border: 0; 3574 | border-top: 1px solid #e1e4e5; 3575 | margin: 24px 0; 3576 | padding: 0 3577 | } 3578 | 3579 | code,.rst-content tt { 3580 | white-space: nowrap; 3581 | max-width: 100%; 3582 | background: #fff; 3583 | border: solid 1px #e1e4e5; 3584 | font-size: 75%; 3585 | padding: 0 5px; 3586 | font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace; 3587 | color: #E74C3C; 3588 | overflow-x: auto 3589 | } 3590 | 3591 | code.code-large,.rst-content tt.code-large { 3592 | font-size: 90% 3593 | } 3594 | 3595 | .wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul { 3596 | list-style: disc; 3597 | line-height: 24px; 3598 | margin-bottom: 24px 3599 | } 3600 | 3601 | .wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li { 3602 | list-style: disc; 3603 | margin-left: 24px 3604 | } 3605 | 3606 | .wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child { 3607 | margin-bottom: 0 3608 | } 3609 | 3610 | .wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul { 3611 | margin-bottom: 0 3612 | } 3613 | 3614 | .wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li { 3615 | list-style: circle 3616 | } 3617 | 3618 | .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 { 3619 | list-style: square 3620 | } 3621 | 3622 | .wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li { 3623 | list-style: decimal 3624 | } 3625 | 3626 | .wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol { 3627 | list-style: decimal; 3628 | line-height: 24px; 3629 | margin-bottom: 24px 3630 | } 3631 | 3632 | .wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li { 3633 | list-style: decimal; 3634 | margin-left: 24px 3635 | } 3636 | 3637 | .wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child { 3638 | margin-bottom: 0 3639 | } 3640 | 3641 | .wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul { 3642 | margin-bottom: 0 3643 | } 3644 | 3645 | .wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li { 3646 | list-style: disc 3647 | } 3648 | 3649 | .codeblock-example { 3650 | border: 1px solid #e1e4e5; 3651 | border-bottom: none; 3652 | padding: 24px; 3653 | padding-top: 48px; 3654 | font-weight: 500; 3655 | background: #fff; 3656 | position: relative 3657 | } 3658 | 3659 | .codeblock-example:after { 3660 | content: "Example"; 3661 | position: absolute; 3662 | top: 0px; 3663 | left: 0px; 3664 | background: #8E4A4A; 3665 | color: #fff; 3666 | padding: 6px 12px 3667 | } 3668 | 3669 | .codeblock-example.prettyprint-example-only { 3670 | border: 1px solid #e1e4e5; 3671 | margin-bottom: 24px 3672 | } 3673 | 3674 | .codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'] { 3675 | border: 1px solid #e1e4e5; 3676 | padding: 0px; 3677 | overflow-x: auto; 3678 | background: #fff; 3679 | margin: 1px 0 24px 0 3680 | } 3681 | 3682 | .codeblock div[class^='highlight'],pre.literal-block div[class^='highlight'],.rst-content .literal-block div[class^='highlight'],div[class^='highlight'] div[class^='highlight'] { 3683 | border: none; 3684 | background: none; 3685 | margin: 0 3686 | } 3687 | 3688 | div[class^='highlight'] td.code { 3689 | width: 100% 3690 | } 3691 | 3692 | .linenodiv pre { 3693 | border-right: solid 1px #e6e9ea; 3694 | margin: 0; 3695 | padding: 12px 12px; 3696 | font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace; 3697 | font-size: 12px; 3698 | line-height: 1.5; 3699 | color: #d9d9d9 3700 | } 3701 | 3702 | div[class^='highlight'] pre { 3703 | white-space: pre; 3704 | margin: 0; 3705 | padding: 12px 12px; 3706 | font-family: Consolas,"Andale Mono WT","Andale Mono","Lucida Console","Lucida Sans Typewriter","DejaVu Sans Mono","Bitstream Vera Sans Mono","Liberation Mono","Nimbus Mono L",Monaco,"Courier New",Courier,monospace; 3707 | font-size: 12px; 3708 | line-height: 1.5; 3709 | display: block; 3710 | overflow: auto; 3711 | color: #404040 3712 | } 3713 | 3714 | @media print { 3715 | .codeblock,pre.literal-block,.rst-content .literal-block,.rst-content pre.literal-block,div[class^='highlight'],div[class^='highlight'] pre { 3716 | white-space: pre-wrap 3717 | } 3718 | } 3719 | 3720 | .hll { 3721 | background-color: #ffc; 3722 | margin: 0 -12px; 3723 | padding: 0 12px; 3724 | display: block 3725 | } 3726 | 3727 | .c { 3728 | color: #998; 3729 | font-style: italic 3730 | } 3731 | 3732 | .err { 3733 | color: #a61717; 3734 | background-color: #e3d2d2 3735 | } 3736 | 3737 | .k { 3738 | font-weight: bold 3739 | } 3740 | 3741 | .o { 3742 | font-weight: bold 3743 | } 3744 | 3745 | .cm { 3746 | color: #998; 3747 | font-style: italic 3748 | } 3749 | 3750 | .cp { 3751 | color: #999; 3752 | font-weight: bold 3753 | } 3754 | 3755 | .c1 { 3756 | color: #998; 3757 | font-style: italic 3758 | } 3759 | 3760 | .cs { 3761 | color: #999; 3762 | font-weight: bold; 3763 | font-style: italic 3764 | } 3765 | 3766 | .gd { 3767 | color: #000; 3768 | background-color: #fdd 3769 | } 3770 | 3771 | .gd .x { 3772 | color: #000; 3773 | background-color: #faa 3774 | } 3775 | 3776 | .ge { 3777 | font-style: italic 3778 | } 3779 | 3780 | .gr { 3781 | color: #a00 3782 | } 3783 | 3784 | .gh { 3785 | color: #999 3786 | } 3787 | 3788 | .gi { 3789 | color: #000; 3790 | background-color: #dfd 3791 | } 3792 | 3793 | .gi .x { 3794 | color: #000; 3795 | background-color: #afa 3796 | } 3797 | 3798 | .go { 3799 | color: #888 3800 | } 3801 | 3802 | .gp { 3803 | color: #555 3804 | } 3805 | 3806 | .gs { 3807 | font-weight: bold 3808 | } 3809 | 3810 | .gu { 3811 | color: purple; 3812 | font-weight: bold 3813 | } 3814 | 3815 | .gt { 3816 | color: #a00 3817 | } 3818 | 3819 | .kc { 3820 | font-weight: bold 3821 | } 3822 | 3823 | .kd { 3824 | font-weight: bold 3825 | } 3826 | 3827 | .kn { 3828 | font-weight: bold 3829 | } 3830 | 3831 | .kp { 3832 | font-weight: bold 3833 | } 3834 | 3835 | .kr { 3836 | font-weight: bold 3837 | } 3838 | 3839 | .kt { 3840 | color: #458; 3841 | font-weight: bold 3842 | } 3843 | 3844 | .m { 3845 | color: #099 3846 | } 3847 | 3848 | .s { 3849 | color: #d14 3850 | } 3851 | 3852 | .n { 3853 | color: #333 3854 | } 3855 | 3856 | .na { 3857 | color: teal 3858 | } 3859 | 3860 | .nb { 3861 | color: #0086b3 3862 | } 3863 | 3864 | .nc { 3865 | color: #458; 3866 | font-weight: bold 3867 | } 3868 | 3869 | .no { 3870 | color: teal 3871 | } 3872 | 3873 | .ni { 3874 | color: purple 3875 | } 3876 | 3877 | .ne { 3878 | color: #900; 3879 | font-weight: bold 3880 | } 3881 | 3882 | .nf { 3883 | color: #900; 3884 | font-weight: bold 3885 | } 3886 | 3887 | .nn { 3888 | color: #555 3889 | } 3890 | 3891 | .nt { 3892 | color: navy 3893 | } 3894 | 3895 | .nv { 3896 | color: teal 3897 | } 3898 | 3899 | .ow { 3900 | font-weight: bold 3901 | } 3902 | 3903 | .w { 3904 | color: #bbb 3905 | } 3906 | 3907 | .mf { 3908 | color: #099 3909 | } 3910 | 3911 | .mh { 3912 | color: #099 3913 | } 3914 | 3915 | .mi { 3916 | color: #099 3917 | } 3918 | 3919 | .mo { 3920 | color: #099 3921 | } 3922 | 3923 | .sb { 3924 | color: #d14 3925 | } 3926 | 3927 | .sc { 3928 | color: #d14 3929 | } 3930 | 3931 | .sd { 3932 | color: #d14 3933 | } 3934 | 3935 | .s2 { 3936 | color: #d14 3937 | } 3938 | 3939 | .se { 3940 | color: #d14 3941 | } 3942 | 3943 | .sh { 3944 | color: #d14 3945 | } 3946 | 3947 | .si { 3948 | color: #d14 3949 | } 3950 | 3951 | .sx { 3952 | color: #d14 3953 | } 3954 | 3955 | .sr { 3956 | color: #009926 3957 | } 3958 | 3959 | .s1 { 3960 | color: #d14 3961 | } 3962 | 3963 | .ss { 3964 | color: #990073 3965 | } 3966 | 3967 | .bp { 3968 | color: #999 3969 | } 3970 | 3971 | .vc { 3972 | color: teal 3973 | } 3974 | 3975 | .vg { 3976 | color: teal 3977 | } 3978 | 3979 | .vi { 3980 | color: teal 3981 | } 3982 | 3983 | .il { 3984 | color: #099 3985 | } 3986 | 3987 | .gc { 3988 | color: #999; 3989 | background-color: #EAF2F5 3990 | } 3991 | 3992 | .wy-breadcrumbs li { 3993 | display: inline-block 3994 | } 3995 | 3996 | .wy-breadcrumbs li.wy-breadcrumbs-aside { 3997 | float: right 3998 | } 3999 | 4000 | .wy-breadcrumbs li a { 4001 | display: inline-block; 4002 | padding: 5px 4003 | } 4004 | 4005 | .wy-breadcrumbs li a:first-child { 4006 | padding-left: 0 4007 | } 4008 | 4009 | .wy-breadcrumbs-extra { 4010 | margin-bottom: 0; 4011 | color: #b3b3b3; 4012 | font-size: 80%; 4013 | display: inline-block 4014 | } 4015 | 4016 | @media screen and (max-width: 480px) { 4017 | .wy-breadcrumbs-extra { 4018 | display:none 4019 | } 4020 | 4021 | .wy-breadcrumbs li.wy-breadcrumbs-aside { 4022 | display: none 4023 | } 4024 | } 4025 | 4026 | @media print { 4027 | .wy-breadcrumbs li.wy-breadcrumbs-aside { 4028 | display: none 4029 | } 4030 | } 4031 | 4032 | .wy-affix { 4033 | position: fixed; 4034 | top: 1.618em 4035 | } 4036 | 4037 | .wy-menu a:hover { 4038 | text-decoration: none 4039 | } 4040 | 4041 | .wy-menu-horiz { 4042 | *zoom:1} 4043 | 4044 | .wy-menu-horiz:before,.wy-menu-horiz:after { 4045 | display: table; 4046 | content: "" 4047 | } 4048 | 4049 | .wy-menu-horiz:after { 4050 | clear: both 4051 | } 4052 | 4053 | .wy-menu-horiz ul,.wy-menu-horiz li { 4054 | display: inline-block 4055 | } 4056 | 4057 | .wy-menu-horiz li:hover { 4058 | background: rgba(255,255,255,0.1) 4059 | } 4060 | 4061 | .wy-menu-horiz li.divide-left { 4062 | border-left: solid 1px #404040 4063 | } 4064 | 4065 | .wy-menu-horiz li.divide-right { 4066 | border-right: solid 1px #404040 4067 | } 4068 | 4069 | .wy-menu-horiz a { 4070 | height: 32px; 4071 | display: inline-block; 4072 | line-height: 32px; 4073 | padding: 0 16px 4074 | } 4075 | 4076 | .wy-menu-vertical header { 4077 | height: 32px; 4078 | display: inline-block; 4079 | line-height: 32px; 4080 | padding: 0 1.618em; 4081 | display: block; 4082 | font-weight: bold; 4083 | text-transform: uppercase; 4084 | font-size: 80%; 4085 | color: #D00000; 4086 | white-space: nowrap 4087 | } 4088 | 4089 | .wy-menu-vertical ul { 4090 | margin-bottom: 0 4091 | } 4092 | 4093 | .wy-menu-vertical li.divide-top { 4094 | border-top: solid 1px #404040 4095 | } 4096 | 4097 | .wy-menu-vertical li.divide-bottom { 4098 | border-bottom: solid 1px #404040 4099 | } 4100 | 4101 | .wy-menu-vertical li.current { 4102 | background: #e3e3e3 4103 | } 4104 | 4105 | .wy-menu-vertical li.current a { 4106 | color: gray; 4107 | border-right: solid 1px #c9c9c9; 4108 | padding: 0.4045em 2.427em 4109 | } 4110 | 4111 | .wy-menu-vertical li.current a:hover { 4112 | background: #d6d6d6 4113 | } 4114 | 4115 | .wy-menu-vertical li.on a,.wy-menu-vertical li.current>a { 4116 | color: #404040; 4117 | padding: 0.4045em 1.618em; 4118 | font-weight: bold; 4119 | position: relative; 4120 | background: #fcfcfc; 4121 | border: none; 4122 | border-bottom: solid 1px #c9c9c9; 4123 | border-top: solid 1px #c9c9c9; 4124 | padding-left: 1.618em -4px 4125 | } 4126 | 4127 | .wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover { 4128 | background: #fcfcfc 4129 | } 4130 | 4131 | .wy-menu-vertical li.toctree-l2.current>a { 4132 | background: #c9c9c9; 4133 | padding: 0.4045em 2.427em 4134 | } 4135 | 4136 | .wy-menu-vertical li.current ul { 4137 | display: block 4138 | } 4139 | 4140 | .wy-menu-vertical li ul { 4141 | margin-bottom: 0; 4142 | display: none 4143 | } 4144 | 4145 | .wy-menu-vertical .local-toc li ul { 4146 | display: block 4147 | } 4148 | 4149 | .wy-menu-vertical li ul li a { 4150 | margin-bottom: 0; 4151 | color: #b3b3b3; 4152 | font-weight: normal 4153 | } 4154 | 4155 | .wy-menu-vertical a { 4156 | display: inline-block; 4157 | line-height: 18px; 4158 | padding: 0.4045em 1.618em; 4159 | display: block; 4160 | position: relative; 4161 | font-size: 90%; 4162 | color: #b3b3b3 4163 | } 4164 | 4165 | .wy-menu-vertical a:hover { 4166 | background-color: #4e4a4a; 4167 | cursor: pointer 4168 | } 4169 | 4170 | .wy-menu-vertical a:active { 4171 | background-color: #D00000; 4172 | cursor: pointer; 4173 | color: #fff 4174 | } 4175 | 4176 | .wy-side-nav-search { 4177 | z-index: 200; 4178 | background-color: #D00000; 4179 | text-align: center; 4180 | padding: 0.809em; 4181 | display: block; 4182 | color: #fcfcfc; 4183 | margin-bottom: 0.809em 4184 | } 4185 | 4186 | .wy-side-nav-search input[type=text] { 4187 | width: 100%; 4188 | border-radius: 50px; 4189 | padding: 6px 12px; 4190 | border-color: #7D3D3D 4191 | } 4192 | 4193 | .wy-side-nav-search img { 4194 | display: block; 4195 | margin: auto auto 0.809em auto; 4196 | height: 45px; 4197 | width: 45px; 4198 | background-color: #D00000; 4199 | padding: 5px; 4200 | border-radius: 100% 4201 | } 4202 | 4203 | .wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a { 4204 | color: #fcfcfc; 4205 | font-size: 100%; 4206 | font-weight: bold; 4207 | display: inline-block; 4208 | padding: 4px 6px; 4209 | margin-bottom: 0.809em 4210 | } 4211 | 4212 | .wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover { 4213 | background: rgba(255,255,255,0.1) 4214 | } 4215 | 4216 | .wy-nav .wy-menu-vertical header { 4217 | color: #D00000 4218 | } 4219 | 4220 | .wy-nav .wy-menu-vertical a { 4221 | color: #b3b3b3 4222 | } 4223 | 4224 | .wy-nav .wy-menu-vertical a:hover { 4225 | background-color: #D00000; 4226 | color: #fff 4227 | } 4228 | 4229 | [data-menu-wrap] { 4230 | -webkit-transition: all 0.2s ease-in; 4231 | -moz-transition: all 0.2s ease-in; 4232 | transition: all 0.2s ease-in; 4233 | position: absolute; 4234 | opacity: 1; 4235 | width: 100%; 4236 | opacity: 0 4237 | } 4238 | 4239 | [data-menu-wrap].move-center { 4240 | left: 0; 4241 | right: auto; 4242 | opacity: 1 4243 | } 4244 | 4245 | [data-menu-wrap].move-left { 4246 | right: auto; 4247 | left: -100%; 4248 | opacity: 0 4249 | } 4250 | 4251 | [data-menu-wrap].move-right { 4252 | right: -100%; 4253 | left: auto; 4254 | opacity: 0 4255 | } 4256 | 4257 | .wy-body-for-nav { 4258 | background: left repeat-y #fcfcfc; 4259 | background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDoxOERBMTRGRDBFMUUxMUUzODUwMkJCOThDMEVFNURFMCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDoxOERBMTRGRTBFMUUxMUUzODUwMkJCOThDMEVFNURFMCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjE4REExNEZCMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE4REExNEZDMEUxRTExRTM4NTAyQkI5OEMwRUU1REUwIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+EwrlwAAAAA5JREFUeNpiMDU0BAgwAAE2AJgB9BnaAAAAAElFTkSuQmCC); 4260 | background-size: 300px 1px 4261 | } 4262 | 4263 | .wy-grid-for-nav { 4264 | position: absolute; 4265 | width: 100%; 4266 | height: 100% 4267 | } 4268 | 4269 | .wy-nav-side { 4270 | position: absolute; 4271 | top: 0; 4272 | left: 0; 4273 | width: 300px; 4274 | overflow: hidden; 4275 | min-height: 100%; 4276 | background: #343131; 4277 | z-index: 200; 4278 | } 4279 | 4280 | .wy-nav-top { 4281 | display: none; 4282 | background: #D00000; 4283 | color: #fff; 4284 | padding: 0.4045em 0.809em; 4285 | position: relative; 4286 | line-height: 50px; 4287 | text-align: center; 4288 | font-size: 100%; 4289 | *zoom:1} 4290 | 4291 | .wy-nav-top:before,.wy-nav-top:after { 4292 | display: table; 4293 | content: "" 4294 | } 4295 | 4296 | .wy-nav-top:after { 4297 | clear: both 4298 | } 4299 | 4300 | .wy-nav-top a { 4301 | color: #fff; 4302 | font-weight: bold 4303 | } 4304 | 4305 | .wy-nav-top img { 4306 | margin-right: 12px; 4307 | height: 45px; 4308 | width: 45px; 4309 | background-color: #D00000; 4310 | padding: 5px; 4311 | border-radius: 100% 4312 | } 4313 | 4314 | .wy-nav-top i { 4315 | font-size: 30px; 4316 | float: left; 4317 | cursor: pointer 4318 | } 4319 | 4320 | .wy-nav-content-wrap { 4321 | /* margin-left: 300px; */ 4322 | background: #fcfcfc; 4323 | min-height: 100%; 4324 | } 4325 | 4326 | .wy-nav-content { 4327 | /* padding: 1.618em 3.236em; */ 4328 | height: 100%; 4329 | /* max-width: 800px; */ 4330 | /* margin: auto; */ 4331 | padding: 0 3em; 4332 | } 4333 | 4334 | .wy-body-mask { 4335 | position: fixed; 4336 | width: 100%; 4337 | height: 100%; 4338 | background: rgba(0,0,0,0.2); 4339 | display: none; 4340 | z-index: 499 4341 | } 4342 | 4343 | .wy-body-mask.on { 4344 | display: block 4345 | } 4346 | 4347 | footer { 4348 | color: #999 4349 | } 4350 | 4351 | footer p { 4352 | margin-bottom: 12px 4353 | } 4354 | 4355 | .rst-footer-buttons { 4356 | *zoom:1} 4357 | 4358 | .rst-footer-buttons:before,.rst-footer-buttons:after { 4359 | display: table; 4360 | content: "" 4361 | } 4362 | 4363 | .rst-footer-buttons:after { 4364 | clear: both 4365 | } 4366 | 4367 | #search-results .search li { 4368 | margin-bottom: 24px; 4369 | border-bottom: solid 1px #e1e4e5; 4370 | padding-bottom: 24px 4371 | } 4372 | 4373 | #search-results .search li:first-child { 4374 | border-top: solid 1px #e1e4e5; 4375 | padding-top: 24px 4376 | } 4377 | 4378 | #search-results .search li a { 4379 | font-size: 120%; 4380 | margin-bottom: 12px; 4381 | display: inline-block 4382 | } 4383 | 4384 | #search-results .context { 4385 | color: gray; 4386 | font-size: 90% 4387 | } 4388 | 4389 | @media screen and (max-width: 768px) { 4390 | .wy-body-for-nav { 4391 | background:#fcfcfc 4392 | } 4393 | 4394 | .wy-nav-top { 4395 | display: block 4396 | } 4397 | 4398 | .wy-nav-side { 4399 | left: -300px 4400 | } 4401 | 4402 | .wy-nav-side.shift { 4403 | width: 85%; 4404 | left: 0 4405 | } 4406 | 4407 | .wy-nav-content-wrap { 4408 | margin-left: 0 4409 | } 4410 | 4411 | .wy-nav-content-wrap .wy-nav-content { 4412 | padding: 1.618em 4413 | } 4414 | 4415 | .wy-nav-content-wrap.shift { 4416 | position: fixed; 4417 | min-width: 100%; 4418 | left: 85%; 4419 | top: 0; 4420 | height: 100%; 4421 | overflow: hidden 4422 | } 4423 | } 4424 | 4425 | @media screen and (min-width: 1400px) { 4426 | .wy-nav-content-wrap { 4427 | background:rgba(0,0,0,0.05) 4428 | } 4429 | 4430 | .wy-nav-content { 4431 | margin: 0; 4432 | background: #fcfcfc 4433 | } 4434 | } 4435 | 4436 | @media print { 4437 | .rst-versions,footer,.wy-nav-side { 4438 | display: none 4439 | } 4440 | 4441 | .wy-nav-content-wrap { 4442 | margin-left: 0 4443 | } 4444 | } 4445 | 4446 | nav.stickynav { 4447 | position: fixed; 4448 | top: 0; 4449 | visibility: hidden; 4450 | } 4451 | 4452 | .rst-versions { 4453 | position: fixed; 4454 | bottom: 0; 4455 | left: 0; 4456 | width: 300px; 4457 | color: #fcfcfc; 4458 | background: #1f1d1d; 4459 | border-top: solid 10px #343131; 4460 | font-family: "Lato","proxima-nova","Helvetica Neue",Arial,sans-serif; 4461 | z-index: 400; 4462 | visibility: hidden; 4463 | } 4464 | 4465 | .rst-versions a { 4466 | color: #D00000; 4467 | text-decoration: none 4468 | } 4469 | 4470 | .rst-versions .rst-badge-small { 4471 | display: none 4472 | } 4473 | 4474 | .rst-versions .rst-current-version { 4475 | padding: 12px; 4476 | background-color: #272525; 4477 | display: block; 4478 | text-align: right; 4479 | font-size: 90%; 4480 | cursor: pointer; 4481 | color: #27AE60; 4482 | *zoom:1} 4483 | 4484 | .rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after { 4485 | display: table; 4486 | content: "" 4487 | } 4488 | 4489 | .rst-versions .rst-current-version:after { 4490 | clear: both 4491 | } 4492 | 4493 | .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 { 4494 | color: #fcfcfc 4495 | } 4496 | 4497 | .rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book { 4498 | float: left 4499 | } 4500 | 4501 | .rst-versions .rst-current-version .icon-book { 4502 | float: left 4503 | } 4504 | 4505 | .rst-versions .rst-current-version.rst-out-of-date { 4506 | background-color: #E74C3C; 4507 | color: #fff 4508 | } 4509 | 4510 | .rst-versions .rst-current-version.rst-active-old-version { 4511 | background-color: #F1C40F; 4512 | color: #000 4513 | } 4514 | 4515 | .rst-versions.shift-up .rst-other-versions { 4516 | display: block 4517 | } 4518 | 4519 | .rst-versions .rst-other-versions { 4520 | font-size: 90%; 4521 | padding: 12px; 4522 | color: gray; 4523 | display: none 4524 | } 4525 | 4526 | .rst-versions .rst-other-versions hr { 4527 | display: block; 4528 | height: 1px; 4529 | border: 0; 4530 | margin: 20px 0; 4531 | padding: 0; 4532 | border-top: solid 1px #413d3d 4533 | } 4534 | 4535 | .rst-versions .rst-other-versions dd { 4536 | display: inline-block; 4537 | margin: 0 4538 | } 4539 | 4540 | .rst-versions .rst-other-versions dd a { 4541 | display: inline-block; 4542 | padding: 6px; 4543 | color: #fcfcfc 4544 | } 4545 | 4546 | .rst-versions.rst-badge { 4547 | width: auto; 4548 | bottom: 20px; 4549 | right: 20px; 4550 | left: auto; 4551 | border: none; 4552 | max-width: 300px 4553 | } 4554 | 4555 | .rst-versions.rst-badge .icon-book { 4556 | float: none 4557 | } 4558 | 4559 | .rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book { 4560 | float: none 4561 | } 4562 | 4563 | .rst-versions.rst-badge.shift-up .rst-current-version { 4564 | text-align: right 4565 | } 4566 | 4567 | .rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book { 4568 | float: left 4569 | } 4570 | 4571 | .rst-versions.rst-badge.shift-up .rst-current-version .icon-book { 4572 | float: left 4573 | } 4574 | 4575 | .rst-versions.rst-badge .rst-current-version { 4576 | width: auto; 4577 | height: 30px; 4578 | line-height: 30px; 4579 | padding: 0 6px; 4580 | display: block; 4581 | text-align: center 4582 | } 4583 | 4584 | @media screen and (max-width: 768px) { 4585 | .rst-versions { 4586 | width:85%; 4587 | display: none 4588 | } 4589 | 4590 | .rst-versions.shift { 4591 | display: block 4592 | } 4593 | 4594 | img { 4595 | width: 100%; 4596 | height: auto 4597 | } 4598 | } 4599 | 4600 | .rst-content img { 4601 | max-width: 100%; 4602 | height: auto !important 4603 | } 4604 | 4605 | .rst-content div.figure { 4606 | margin-bottom: 24px 4607 | } 4608 | 4609 | .rst-content div.figure.align-center { 4610 | text-align: center 4611 | } 4612 | 4613 | .rst-content .section>img { 4614 | margin-bottom: 24px 4615 | } 4616 | 4617 | .rst-content blockquote { 4618 | margin-left: 24px; 4619 | line-height: 24px; 4620 | margin-bottom: 24px 4621 | } 4622 | 4623 | .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,.rst-content .admonition-todo .last { 4624 | margin-bottom: 0 4625 | } 4626 | 4627 | .rst-content .admonition-title:before { 4628 | margin-right: 4px 4629 | } 4630 | 4631 | .rst-content .admonition table { 4632 | border-color: rgba(0,0,0,0.1) 4633 | } 4634 | 4635 | .rst-content .admonition table td,.rst-content .admonition table th { 4636 | background: transparent !important; 4637 | border-color: rgba(0,0,0,0.1) !important 4638 | } 4639 | 4640 | .rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li { 4641 | list-style: lower-alpha 4642 | } 4643 | 4644 | .rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li { 4645 | list-style: upper-alpha 4646 | } 4647 | 4648 | .rst-content .section ol p,.rst-content .section ul p { 4649 | margin-bottom: 12px 4650 | } 4651 | 4652 | .rst-content .line-block { 4653 | margin-left: 24px 4654 | } 4655 | 4656 | .rst-content .topic-title { 4657 | font-weight: bold; 4658 | margin-bottom: 12px 4659 | } 4660 | 4661 | .rst-content .toc-backref { 4662 | color: #404040 4663 | } 4664 | 4665 | .rst-content .align-right { 4666 | float: right; 4667 | margin: 0px 0px 24px 24px 4668 | } 4669 | 4670 | .rst-content .align-left { 4671 | float: left; 4672 | margin: 0px 24px 24px 0px 4673 | } 4674 | 4675 | .rst-content .align-center { 4676 | margin: auto; 4677 | display: block 4678 | } 4679 | 4680 | .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 { 4681 | display: none; 4682 | visibility: hidden; 4683 | font-size: 14px 4684 | } 4685 | 4686 | .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 { 4687 | visibility: visible; 4688 | content: ""; 4689 | font-family: FontAwesome; 4690 | display: inline-block 4691 | } 4692 | 4693 | .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 { 4694 | display: inline-block 4695 | } 4696 | 4697 | .rst-content .sidebar { 4698 | float: right; 4699 | width: 40%; 4700 | display: block; 4701 | margin: 0 0 24px 24px; 4702 | padding: 24px; 4703 | background: #f3f6f6; 4704 | border: solid 1px #e1e4e5 4705 | } 4706 | 4707 | .rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl { 4708 | font-size: 90% 4709 | } 4710 | 4711 | .rst-content .sidebar .last { 4712 | margin-bottom: 0 4713 | } 4714 | 4715 | .rst-content .sidebar .sidebar-title { 4716 | display: block; 4717 | font-family: "Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif; 4718 | font-weight: bold; 4719 | background: #e1e4e5; 4720 | padding: 6px 12px; 4721 | margin: -24px; 4722 | margin-bottom: 24px; 4723 | font-size: 100% 4724 | } 4725 | 4726 | .rst-content .highlighted { 4727 | background: #F1C40F; 4728 | display: inline-block; 4729 | font-weight: bold; 4730 | padding: 0 6px 4731 | } 4732 | 4733 | .rst-content .footnote-reference,.rst-content .citation-reference { 4734 | vertical-align: super; 4735 | font-size: 90% 4736 | } 4737 | 4738 | .rst-content table.docutils.citation,.rst-content table.docutils.footnote { 4739 | background: none; 4740 | border: none; 4741 | color: #999 4742 | } 4743 | 4744 | .rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr { 4745 | border: none; 4746 | background-color: transparent !important; 4747 | white-space: normal 4748 | } 4749 | 4750 | .rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label { 4751 | padding-left: 0; 4752 | padding-right: 0; 4753 | vertical-align: top 4754 | } 4755 | 4756 | .rst-content table.field-list { 4757 | border: none 4758 | } 4759 | 4760 | .rst-content table.field-list td { 4761 | border: none; 4762 | padding-top: 5px 4763 | } 4764 | 4765 | .rst-content table.field-list td>strong { 4766 | display: inline-block; 4767 | margin-top: 3px 4768 | } 4769 | 4770 | .rst-content table.field-list .field-name { 4771 | padding-right: 10px; 4772 | text-align: left; 4773 | white-space: nowrap 4774 | } 4775 | 4776 | .rst-content table.field-list .field-body { 4777 | text-align: left; 4778 | padding-left: 0 4779 | } 4780 | 4781 | .rst-content tt { 4782 | color: #000 4783 | } 4784 | 4785 | .rst-content tt big,.rst-content tt em { 4786 | font-size: 100% !important; 4787 | line-height: normal 4788 | } 4789 | 4790 | .rst-content tt .xref,a .rst-content tt { 4791 | font-weight: bold 4792 | } 4793 | 4794 | .rst-content a tt { 4795 | color: #D00000 4796 | } 4797 | 4798 | .rst-content dl { 4799 | margin-bottom: 24px 4800 | } 4801 | 4802 | .rst-content dl dt { 4803 | font-weight: bold 4804 | } 4805 | 4806 | .rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol { 4807 | margin-bottom: 12px !important 4808 | } 4809 | 4810 | .rst-content dl dd { 4811 | margin: 0 0 12px 24px 4812 | } 4813 | 4814 | .rst-content dl:not(.docutils) { 4815 | margin-bottom: 24px 4816 | } 4817 | 4818 | .rst-content dl:not(.docutils) dt { 4819 | display: inline-block; 4820 | margin: 6px 0; 4821 | font-size: 90%; 4822 | line-height: normal; 4823 | background: #e7f2fa; 4824 | color: #D00000; 4825 | border-top: solid 3px #6ab0de; 4826 | padding: 6px; 4827 | position: relative 4828 | } 4829 | 4830 | .rst-content dl:not(.docutils) dt:before { 4831 | color: #6ab0de 4832 | } 4833 | 4834 | .rst-content dl:not(.docutils) dt .headerlink { 4835 | color: #404040; 4836 | font-size: 100% !important 4837 | } 4838 | 4839 | .rst-content dl:not(.docutils) dl dt { 4840 | margin-bottom: 6px; 4841 | border: none; 4842 | border-left: solid 3px #ccc; 4843 | background: #f0f0f0; 4844 | color: gray 4845 | } 4846 | 4847 | .rst-content dl:not(.docutils) dl dt .headerlink { 4848 | color: #404040; 4849 | font-size: 100% !important 4850 | } 4851 | 4852 | .rst-content dl:not(.docutils) dt:first-child { 4853 | margin-top: 0 4854 | } 4855 | 4856 | .rst-content dl:not(.docutils) tt { 4857 | font-weight: bold 4858 | } 4859 | 4860 | .rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname { 4861 | background-color: transparent; 4862 | border: none; 4863 | padding: 0; 4864 | font-size: 100% !important 4865 | } 4866 | 4867 | .rst-content dl:not(.docutils) tt.descname { 4868 | font-weight: bold 4869 | } 4870 | 4871 | .rst-content dl:not(.docutils) .optional { 4872 | display: inline-block; 4873 | padding: 0 4px; 4874 | color: #000; 4875 | font-weight: bold 4876 | } 4877 | 4878 | .rst-content dl:not(.docutils) .property { 4879 | display: inline-block; 4880 | padding-right: 8px 4881 | } 4882 | 4883 | .rst-content .viewcode-link,.rst-content .viewcode-back { 4884 | display: inline-block; 4885 | color: #27AE60; 4886 | font-size: 80%; 4887 | padding-left: 24px 4888 | } 4889 | 4890 | .rst-content .viewcode-back { 4891 | display: block; 4892 | float: right 4893 | } 4894 | 4895 | .rst-content p.rubric { 4896 | margin-bottom: 12px; 4897 | font-weight: bold 4898 | } 4899 | 4900 | @media screen and (max-width: 480px) { 4901 | .rst-content .sidebar { 4902 | width:100% 4903 | } 4904 | } 4905 | 4906 | span[id*='MathJax-Span'] { 4907 | color: #404040 4908 | } 4909 | 4910 | .math { 4911 | text-align: center 4912 | } 4913 | -------------------------------------------------------------------------------- /theme_extra.css: -------------------------------------------------------------------------------- 1 | /* 2 | * Tweak the overal size to better match RTD. 3 | */ 4 | body { 5 | font-size: 100%; 6 | } 7 | 8 | .keras-logo { 9 | max-height: 55px; 10 | width: 100%; 11 | background: #d00000; 12 | font-size: 150%; 13 | color: white; 14 | font-family: "Source Sans Pro", "ff-tisa-web-pro", "Georgia", Arial, sans-serif; 15 | } 16 | 17 | .keras-logo-img { 18 | max-width: 45px; 19 | margin: 10px; 20 | } 21 | 22 | h1, h2, h3, h4, h5, h6, legend { 23 | font-family: "Source Sans Pro", "ff-tisa-web-pro", "Georgia", Arial, sans-serif;, 24 | } 25 | 26 | /* 27 | * Sphinx doesn't have support for section dividers like we do in 28 | * MkDocs, this styles the section titles in the nav 29 | * 30 | * https://github.com/mkdocs/mkdocs/issues/175 31 | */ 32 | .wy-menu-vertical span { 33 | line-height: 18px; 34 | padding: 0.4045em 1.618em; 35 | display: block; 36 | position: relative; 37 | font-size: 90%; 38 | color: #838383; 39 | } 40 | 41 | .wy-menu-vertical .subnav a { 42 | padding: 0.4045em 2.427em; 43 | } 44 | 45 | /* 46 | * Long navigations run off the bottom of the screen as the nav 47 | * area doesn't scroll. 48 | * 49 | * https://github.com/mkdocs/mkdocs/pull/202 50 | */ 51 | .wy-nav-side { 52 | height: 100%; 53 | overflow-y: auto; 54 | } 55 | 56 | .wy-nav-content { 57 | /* max-width: 900px; */ 58 | } 59 | 60 | /* 61 | * readthedocs theme hides nav items when the window height is 62 | * too small to contain them. 63 | * 64 | * https://github.com/mkdocs/mkdocs/issues/#348 65 | */ 66 | .wy-menu-vertical ul { 67 | margin-bottom: 2em; 68 | } 69 | 70 | /* 71 | * Fix wrapping in the code highlighting 72 | * 73 | * https://github.com/mkdocs/mkdocs/issues/233 74 | */ 75 | code { 76 | white-space: pre; 77 | font-size: 90%; 78 | color: #9E0F00; 79 | background: #FFFAFA; 80 | } 81 | 82 | /* 83 | * Wrap inline code samples otherwise they shoot of the side and 84 | * can't be read at all. 85 | * 86 | * https://github.com/mkdocs/mkdocs/issues/313 87 | */ 88 | p code { 89 | word-wrap: break-word; 90 | } 91 | 92 | /* 93 | * The CSS classes from highlight.js seem to clash with the 94 | * ReadTheDocs theme causing some code to be incorrectly made 95 | * bold and italic. 96 | * 97 | * https://github.com/mkdocs/mkdocs/issues/411 98 | */ 99 | code.cs, code.c { 100 | font-weight: inherit; 101 | font-style: inherit; 102 | } 103 | 104 | /* 105 | * Fix some issues with the theme and non-highlighted code 106 | * samples. Without and highlighting styles attached the 107 | * formatting is broken. 108 | * 109 | * https://github.com/mkdocs/mkdocs/issues/319 110 | */ 111 | .no-highlight { 112 | display: block; 113 | padding: 0.5em; 114 | color: #333; 115 | } 116 | 117 | 118 | /* 119 | * Additions specific to the search functionality provided by MkDocs 120 | */ 121 | 122 | #mkdocs-search-results article h3 123 | { 124 | margin-top: 23px; 125 | border-top: 1px solid #E1E4E5; 126 | padding-top: 24px; 127 | } 128 | 129 | #mkdocs-search-results article:first-child h3 { 130 | border-top: none; 131 | } 132 | 133 | #mkdocs-search-query{ 134 | width: 100%; 135 | border-radius: 50px; 136 | padding: 6px 12px; 137 | border-color: #D1D4D5; 138 | } 139 | 140 | .wy-menu-vertical li ul { 141 | display: inherit; 142 | } 143 | 144 | .wy-menu-vertical li ul.subnav ul.subnav{ 145 | padding-left: 1em; 146 | } 147 | -------------------------------------------------------------------------------- /wget_html.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | wget --header 'Accept-Encoding: deflate' --domains=keras.io -e robots=off --no-parent --adjust-extension -r 'https://keras.io/' 3 | 4 | --------------------------------------------------------------------------------