diff --git a/.travis.yml b/.travis.yml index 01194eb..3bea5d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,20 +1,69 @@ language: node_js + sudo: false + +addons: + apt: + packages: + - texlive + - texlive-fonts-recommended + - texlive-latex-extra + - texlive-fonts-extra + - dvipng + - texlive-latex-recommended + - latex-xcolor + - lmodern + node_js: - - "5.5" +- '5.5' + env: + matrix: - PATH=$HOME/purescript:$PATH + global: + - secure: C+5OWpmsxi1Dl7rzoGywIbe4dBEKmKQ2LNglXgeU4pmyQxqfAI54rTt/xu0jy9A023ESOx54acscTWmUd9shgf9f+6p4nWj4/08MfzifuLcX16aqofb05ZctPlw9ZUwoLuYAph9/69jkWt8HMozQnB7vdjHGIeCkK7s8wFkrQQH6RFJVB3rgLWJm+A0Y6DbwHYfbNkXWFIe4kcy0VAc2+l4am6wvzMuxx8yhO2WL7ND0RUH7FjG6qMCDCxLSNbUiAuu37rxzDBeXKYSpoKU87KTGZ6aZ659k6q97kgNfA+MDDTRzNDAyMLUDE+FDeQeaDeXpRg0c52NaB3uVUIUODuWb3CmjMNoKpe5quJKNavszC3oEvFmByxgwHApvLaU31gv7ttiuOsIrk8lUi1WsBRWiQlBSGZvwxcZXV1Qf64nu85r5+qQWkq7VpHfI3SI75g35tRzdoKC3LuRvLOX5oAPjviqeLBsHRmAthc8Uz4jGIry3mjEZwPIcxMXQQhDlfzdyps775XhnylxpjP4X1TpudYhOBmsaaQbR3ur+zyhGelQJAKmZzAjziKsKRuAgOkBtK99H/eq+b42otzdcIZWXDglKbVqGIPdDLiOLWNUAutwei25aQzCZDvh+mZJLFLaxw8RnToZIal1lsoU8OGRFLz3Y+koy+lMsvS7tjlE= + - secure: cj6PvHHT+qyIuCT91U14MHpy/vv4kMhjMHeWxFnP/5k2aUMJkPwpEzb/2tunjQZFnzuSBkJxM9NTs9KO7hILM9B6EPlEBOqYuQFl/ep3SWfj4xj/6d85hMwgwZhFPjPRsV1mDeFweMgnkxrGaAtwRLUle5+qSlaBWy7CkSkDJFQX80BeLvd5h4Jdswcp0P/+NgjMy/tyUIlo2QUu8Tr7f/AMYQVY1gUbVxmwxQjKsbKs6s0RVEbRmRFj/kzTKARRYDLnuv4M3Uw5PTL7o7VWA4tlREH4xX2s5u6jptLS2vh/qFLsRkjv/Pcx2h+sAO+g+qU6nq1iHBgHBn8BMwR2T1xoS/MjZmyLDS1wbyouXHmS12xr1DKsLFquSdVZNOe8WMpQMOdw2Spf3siqsQe8zWGMcQvbloS/CntQyknm+VqJZsioHMELw44sApcbAJA8XymApA0x5816M4CurXuklTsgnGD31EdfoU+cWSjRUmhBeTZgt5kcaB+Y/g4F1+M8Zy1Njw7ifauf+koWTyYexzJ8Lv/oiYu1qhfELv9+blF+YSQRdGNkTVXByQVkKSUWiPqXeVeiZOxvzawtOlcqQjCuDOKLh2Hk0doRpt2i3xlSAu4BkeI0sj0eLK1PEWVxocYW3hg17ATnfynlFjkRsWLs5k6J7gCSQqx/oNzqPL8= + install: - - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/v0.11.3/linux64.tar.gz - - tar -xvf $HOME/purescript.tar.gz -C $HOME/ - - chmod a+x $HOME/purescript - - npm install -g bower pulp@next - - bower install +- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/v0.11.3/linux64.tar.gz +- tar -xvf $HOME/purescript.tar.gz -C $HOME/ +- chmod a+x $HOME/purescript +- npm install -g bower pulp@next +- bower install +- pip install --user -r docs/requirements.txt + script: - - travis_wait pulp build - - travis_wait pulp test - - travis_wait make examples +- export VERSION=branch-job-$TRAVIS_JOB_NUMBER +- if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then export VERSION=pull-request-job-$TRAVIS_JOB_NUMBER; + fi +- if [[ "$TRAVIS_TAG" != "" ]]; then export VERSION=$TRAVIS_TAG; fi +- travis_wait pulp build +- travis_wait pulp test +- travis_wait make examples +- travis_wait make docs + +before_deploy: pip install --user awscli + +deploy: +- provider: s3 + access_key_id: "$AWS_ACCESS_KEY_ID" + secret_access_key: "$AWS_SECRET_ACCESS_KEY" + local_dir: docs/target/release + bucket: hyper.wickstrom.tech + upload-dir: docs/$VERSION + region: eu-west-1 + skip_cleanup: true + on: + tags: true + repo: owickstrom/hyper + +after_deploy: + # regenerate and deploy the documentation index + - make -C docs release-index + # cache for one hour + - aws s3 cp --region eu-west-1 --cache-control max-age=3600,public docs/target/index/index.html s3://hyper.wickstrom.tech/ + - aws s3 cp --region eu-west-1 --cache-control max-age=3600,public docs/target/index/latest/index.html s3://hyper.wickstrom.tech/latest/index.html cache: directories: - - output + - output diff --git a/Makefile b/Makefile index 4f5704c..4fdf84d 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,14 @@ +VERSION ?= $(shell git rev-parse --short HEAD) + .PHONY: docs docs: - make -C docs-src release + make -C docs release .PHONY: examples examples: # Disabled! This part of the docs should be moved to the respective # repository instead. - # make -C docs-src/src/extensions/type-level-routing/examples build + # make -C docs/src/extensions/type-level-routing/examples build # - pulp build -I docs-src/src/topic-guides + pulp build -I docs/src/topic-guides pulp build -I examples diff --git a/docs-src/README.md b/docs-src/README.md deleted file mode 100644 index bde646a..0000000 --- a/docs-src/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# Hyper Documentation - -The Hyper documentation is built using Sphinx and reStructured Text. - -## Prerequisites - -* [A TeX Distribution](https://www.latex-project.org/get/) -* [virtualenv](https://virtualenv.pypa.io/en/stable/) - -## Setup - -```bash -# Change to this directory in your terminal -cd docs-src -virtualenv ENV -ENV/bin/activate -pip install -r requirements.txt -``` - -## Building HTML - -```bash -make html -``` - -Or, a handy live-reloading server for when you are writing documentation: - -```bash -make livehtml -``` - -## Building the PDF - -```bash -make latexpdf -``` diff --git a/docs-src/src/theme/static/fira-code/eot/FiraCode-Bold.eot b/docs-src/src/theme/static/fira-code/eot/FiraCode-Bold.eot deleted file mode 100644 index 87e9519..0000000 Binary files a/docs-src/src/theme/static/fira-code/eot/FiraCode-Bold.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/eot/FiraCode-Light.eot b/docs-src/src/theme/static/fira-code/eot/FiraCode-Light.eot deleted file mode 100644 index cef0cc0..0000000 Binary files a/docs-src/src/theme/static/fira-code/eot/FiraCode-Light.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/eot/FiraCode-Medium.eot b/docs-src/src/theme/static/fira-code/eot/FiraCode-Medium.eot deleted file mode 100644 index 4f96e7f..0000000 Binary files a/docs-src/src/theme/static/fira-code/eot/FiraCode-Medium.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/eot/FiraCode-Regular.eot b/docs-src/src/theme/static/fira-code/eot/FiraCode-Regular.eot deleted file mode 100644 index 46fb1b7..0000000 Binary files a/docs-src/src/theme/static/fira-code/eot/FiraCode-Regular.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/fira_code.css b/docs-src/src/theme/static/fira-code/fira_code.css deleted file mode 100644 index f8e4a5b..0000000 --- a/docs-src/src/theme/static/fira-code/fira_code.css +++ /dev/null @@ -1,43 +0,0 @@ -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Light.eot'); - src: url('eot/FiraCode-Light.eot') format('embedded-opentype'), - url('woff2/FiraCode-Light.woff2') format('woff2'), - url('woff/FiraCode-Light.woff') format('woff'), - url('ttf/FiraCode-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Regular.eot'); - src: url('eot/FiraCode-Regular.eot') format('embedded-opentype'), - url('woff2/FiraCode-Regular.woff2') format('woff2'), - url('woff/FiraCode-Regular.woff') format('woff'), - url('ttf/FiraCode-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Medium.eot'); - src: url('eot/FiraCode-Medium.eot') format('embedded-opentype'), - url('woff2/FiraCode-Medium.woff2') format('woff2'), - url('woff/FiraCode-Medium.woff') format('woff'), - url('ttf/FiraCode-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Bold.eot'); - src: url('eot/FiraCode-Bold.eot') format('embedded-opentype'), - url('woff2/FiraCode-Bold.woff2') format('woff2'), - url('woff/FiraCode-Bold.woff') format('woff'), - url('ttf/FiraCode-Bold.ttf') format('truetype'); - font-weight: 700; - font-style: normal; -} \ No newline at end of file diff --git a/docs-src/src/theme/static/fira-code/otf/FiraCode-Bold.otf b/docs-src/src/theme/static/fira-code/otf/FiraCode-Bold.otf deleted file mode 100644 index 37fe2b5..0000000 Binary files a/docs-src/src/theme/static/fira-code/otf/FiraCode-Bold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/otf/FiraCode-Light.otf b/docs-src/src/theme/static/fira-code/otf/FiraCode-Light.otf deleted file mode 100644 index 1eb728b..0000000 Binary files a/docs-src/src/theme/static/fira-code/otf/FiraCode-Light.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/otf/FiraCode-Medium.otf b/docs-src/src/theme/static/fira-code/otf/FiraCode-Medium.otf deleted file mode 100644 index 89f0e33..0000000 Binary files a/docs-src/src/theme/static/fira-code/otf/FiraCode-Medium.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/otf/FiraCode-Regular.otf b/docs-src/src/theme/static/fira-code/otf/FiraCode-Regular.otf deleted file mode 100644 index 6a4f953..0000000 Binary files a/docs-src/src/theme/static/fira-code/otf/FiraCode-Regular.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/otf/FiraCode-Retina.otf b/docs-src/src/theme/static/fira-code/otf/FiraCode-Retina.otf deleted file mode 100644 index 82210b5..0000000 Binary files a/docs-src/src/theme/static/fira-code/otf/FiraCode-Retina.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/specimen.html b/docs-src/src/theme/static/fira-code/specimen.html deleted file mode 100644 index f5982fc..0000000 --- a/docs-src/src/theme/static/fira-code/specimen.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - Fira Code Specimen - - - - - -
# Fira Code Light - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Regular - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Medium - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Bold - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
diff --git a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Bold.ttf b/docs-src/src/theme/static/fira-code/ttf/FiraCode-Bold.ttf deleted file mode 100644 index b919d6b..0000000 Binary files a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Bold.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Light.ttf b/docs-src/src/theme/static/fira-code/ttf/FiraCode-Light.ttf deleted file mode 100644 index 50fe033..0000000 Binary files a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Light.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Medium.ttf b/docs-src/src/theme/static/fira-code/ttf/FiraCode-Medium.ttf deleted file mode 100644 index 88a6750..0000000 Binary files a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Medium.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Regular.ttf b/docs-src/src/theme/static/fira-code/ttf/FiraCode-Regular.ttf deleted file mode 100644 index 575c21b..0000000 Binary files a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Regular.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Retina.ttf b/docs-src/src/theme/static/fira-code/ttf/FiraCode-Retina.ttf deleted file mode 100644 index 95fbbc6..0000000 Binary files a/docs-src/src/theme/static/fira-code/ttf/FiraCode-Retina.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff/FiraCode-Bold.woff b/docs-src/src/theme/static/fira-code/woff/FiraCode-Bold.woff deleted file mode 100644 index 3e8a8e6..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff/FiraCode-Bold.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff/FiraCode-Light.woff b/docs-src/src/theme/static/fira-code/woff/FiraCode-Light.woff deleted file mode 100644 index 6d2c9e4..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff/FiraCode-Light.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff/FiraCode-Medium.woff b/docs-src/src/theme/static/fira-code/woff/FiraCode-Medium.woff deleted file mode 100644 index a4c30f7..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff/FiraCode-Medium.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff/FiraCode-Regular.woff b/docs-src/src/theme/static/fira-code/woff/FiraCode-Regular.woff deleted file mode 100644 index 7233c3f..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff/FiraCode-Regular.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Bold.woff2 b/docs-src/src/theme/static/fira-code/woff2/FiraCode-Bold.woff2 deleted file mode 100644 index 7dc70b7..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Bold.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Light.woff2 b/docs-src/src/theme/static/fira-code/woff2/FiraCode-Light.woff2 deleted file mode 100644 index 1938cfc..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Light.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Medium.woff2 b/docs-src/src/theme/static/fira-code/woff2/FiraCode-Medium.woff2 deleted file mode 100644 index be09f4e..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Medium.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Regular.woff2 b/docs-src/src/theme/static/fira-code/woff2/FiraCode-Regular.woff2 deleted file mode 100644 index e93ffe3..0000000 Binary files a/docs-src/src/theme/static/fira-code/woff2/FiraCode-Regular.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/LICENSE b/docs-src/src/theme/static/fira/LICENSE deleted file mode 100755 index 37c4a30..0000000 --- a/docs-src/src/theme/static/fira/LICENSE +++ /dev/null @@ -1,94 +0,0 @@ -Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. -with Reserved Font Name < Fira >, - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/docs-src/src/theme/static/fira/eot/FiraMono-Bold.eot b/docs-src/src/theme/static/fira/eot/FiraMono-Bold.eot deleted file mode 100755 index 87013fa..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraMono-Bold.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraMono-Medium.eot b/docs-src/src/theme/static/fira/eot/FiraMono-Medium.eot deleted file mode 100755 index 41a3d10..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraMono-Medium.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraMono-Regular.eot b/docs-src/src/theme/static/fira/eot/FiraMono-Regular.eot deleted file mode 100755 index 4c5eba2..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraMono-Regular.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Bold.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Bold.eot deleted file mode 100755 index f9228cb..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Bold.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-BoldItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-BoldItalic.eot deleted file mode 100755 index f91569a..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-BoldItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Book.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Book.eot deleted file mode 100755 index 007bf7f..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Book.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-BookItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-BookItalic.eot deleted file mode 100755 index bcb5291..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-BookItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Eight.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Eight.eot deleted file mode 100755 index 485ff3a..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Eight.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-EightItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-EightItalic.eot deleted file mode 100755 index 73ec42a..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-EightItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBold.eot b/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBold.eot deleted file mode 100755 index 3729e93..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBold.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBoldItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBoldItalic.eot deleted file mode 100755 index dc812bf..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraBoldItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLight.eot b/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLight.eot deleted file mode 100755 index c8776ef..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLight.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLightItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLightItalic.eot deleted file mode 100755 index 211c8fc..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-ExtraLightItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Four.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Four.eot deleted file mode 100755 index 2c21641..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Four.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-FourItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-FourItalic.eot deleted file mode 100755 index aa16cc8..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-FourItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Hair.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Hair.eot deleted file mode 100755 index a1b1f0d..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Hair.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-HairItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-HairItalic.eot deleted file mode 100755 index 45b9d9d..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-HairItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Heavy.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Heavy.eot deleted file mode 100755 index 6323009..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Heavy.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-HeavyItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-HeavyItalic.eot deleted file mode 100755 index c13ae43..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-HeavyItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Italic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Italic.eot deleted file mode 100755 index 0519f1b..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Italic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Light.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Light.eot deleted file mode 100755 index 3f4c7f6..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Light.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-LightItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-LightItalic.eot deleted file mode 100755 index b4c103c..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-LightItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Medium.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Medium.eot deleted file mode 100755 index 6e0666a..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Medium.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-MediumItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-MediumItalic.eot deleted file mode 100755 index 50691ee..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-MediumItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Regular.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Regular.eot deleted file mode 100755 index 5605f2a..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Regular.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-SemiBold.eot b/docs-src/src/theme/static/fira/eot/FiraSans-SemiBold.eot deleted file mode 100755 index fa865f9..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-SemiBold.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-SemiBoldItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-SemiBoldItalic.eot deleted file mode 100755 index 79ebb0d..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-SemiBoldItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Thin.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Thin.eot deleted file mode 100755 index ce47de2..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Thin.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-ThinItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-ThinItalic.eot deleted file mode 100755 index 68c56c0..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-ThinItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Two.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Two.eot deleted file mode 100755 index 99030c4..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Two.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-TwoItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-TwoItalic.eot deleted file mode 100755 index a7d47fe..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-TwoItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-Ultra.eot b/docs-src/src/theme/static/fira/eot/FiraSans-Ultra.eot deleted file mode 100755 index 9e5a194..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-Ultra.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-UltraItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-UltraItalic.eot deleted file mode 100755 index 7cc4ac5..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-UltraItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-UltraLight.eot b/docs-src/src/theme/static/fira/eot/FiraSans-UltraLight.eot deleted file mode 100755 index 6321f6f..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-UltraLight.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/eot/FiraSans-UltraLightItalic.eot b/docs-src/src/theme/static/fira/eot/FiraSans-UltraLightItalic.eot deleted file mode 100755 index 8f76781..0000000 Binary files a/docs-src/src/theme/static/fira/eot/FiraSans-UltraLightItalic.eot and /dev/null differ diff --git a/docs-src/src/theme/static/fira/fira.css b/docs-src/src/theme/static/fira/fira.css deleted file mode 100755 index 500412e..0000000 --- a/docs-src/src/theme/static/fira/fira.css +++ /dev/null @@ -1,221 +0,0 @@ -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Hair.eot'); - src: local('Fira Sans Hair'), - url('eot/FiraSans-Hair.eot') format('embedded-opentype'), - url('woff/FiraSans-Hair.woff') format('woff'), - url('ttf/FiraSans-Hair.ttf') format('truetype'); - font-weight: 100; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-HairItalic.eot'); - src: local('Fira Sans Hair Italic'), - url('eot/FiraSans-HairItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-HairItalic.woff') format('woff'), - url('ttf/FiraSans-HairItalic.ttf') format('truetype'); - font-weight: 100; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-UltraLight.eot'); - src: local('Fira Sans UltraLight'), - url('eot/FiraSans-UltraLight.eot') format('embedded-opentype'), - url('woff/FiraSans-UltraLight.woff') format('woff'), - url('ttf/FiraSans-UltraLight.ttf') format('truetype'); - font-weight: 200; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-UltraLightItalic.eot'); - src: local('Fira Sans UltraLight Italic'), - url('eot/FiraSans-UltraLightItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-UltraLightItalic.woff') format('woff'), - url('ttf/FiraSans-UltraLightItalic.ttf') format('truetype'); - font-weight: 200; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Light.eot'); - src: local('Fira Sans Light'), - url('eot/FiraSans-Light.eot') format('embedded-opentype'), - url('woff/FiraSans-Light.woff') format('woff'), - url('ttf/FiraSans-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-LightItalic.eot'); - src: local('Fira Sans Light Italic'), - url('eot/FiraSans-LightItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-LightItalic.woff') format('woff'), - url('ttf/FiraSans-LightItalic.ttf') format('truetype'); - font-weight: 300; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Regular.eot'); - src: local('Fira Sans Regular'), - url('eot/FiraSans-Regular.eot') format('embedded-opentype'), - url('woff/FiraSans-Regular.woff') format('woff'), - url('ttf/FiraSans-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Italic.eot'); - src: local('Fira Sans Regular Italic'), - url('eot/FiraSans-Italic.eot') format('embedded-opentype'), - url('woff/FiraSans-Italic.woff') format('woff'), - url('ttf/FiraSans-Italic.ttf') format('truetype'); - font-weight: 400; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Medium.eot'); - src: local('Fira Sans Medium'), - url('eot/FiraSans-Medium.eot') format('embedded-opentype'), - url('woff/FiraSans-Medium.woff') format('woff'), - url('ttf/FiraSans-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-MediumItalic.eot'); - src: local('Fira Sans Medium Italic'), - url('eot/FiraSans-MediumItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-MediumItalic.woff') format('woff'), - url('ttf/FiraSans-MediumItalic.ttf') format('truetype'); - font-weight: 500; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-SemiBold.eot'); - src: local('Fira Sans SemiBold'), - url('eot/FiraSans-SemiBold.eot') format('embedded-opentype'), - url('woff/FiraSans-SemiBold.woff') format('woff'), - url('ttf/FiraSans-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-SemiBoldItalic.eot'); - src: local('Fira Sans SemiBold Italic'), - url('eot/FiraSans-SemiBoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-SemiBoldItalic.woff') format('woff'), - url('ttf/FiraSans-SemiBoldItalic.ttf') format('truetype'); - font-weight: 600; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Bold.eot'); - src: local('Fira Sans Bold'), - url('eot/FiraSans-Bold.eot') format('embedded-opentype'), - url('woff/FiraSans-Bold.woff') format('woff'), - url('ttf/FiraSans-Bold.ttf') format('truetype'); - font-weight: 700; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-BoldItalic.eot'); - src: local('Fira Sans Bold Italic'), - url('eot/FiraSans-BoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-BoldItalic.woff') format('woff'), - url('ttf/FiraSans-BoldItalic.ttf') format('truetype'); - font-weight: 700; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-ExtraBold.eot'); - src: local('Fira Sans ExtraBold'), - url('eot/FiraSans-ExtraBold.eot') format('embedded-opentype'), - url('woff/FiraSans-ExtraBold.woff') format('woff'), - url('ttf/FiraSans-ExtraBold.ttf') format('truetype'); - font-weight: 800; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-ExtraBoldItalic.eot'); - src: local('Fira Sans ExtraBold Italic'), - url('eot/FiraSans-ExtraBoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-ExtraBoldItalic.woff') format('woff'), - url('ttf/FiraSans-ExtraBoldItalic.ttf') format('truetype'); - font-weight: 800; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Heavy.eot'); - src: local('Fira Sans Heavy'), - url('eot/FiraSans-Heavy.eot') format('embedded-opentype'), - url('woff/FiraSans-Heavy.woff') format('woff'), - url('ttf/FiraSans-Heavy.ttf') format('truetype'); - font-weight: 900; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-HeavyItalic.eot'); - src: local('Fira Sans Heavy Italic'), - url('eot/FiraSans-HeavyItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-HeavyItalic.woff') format('woff'), - url('ttf/FiraSans-HeavyItalic.ttf') format('truetype'); - font-weight: 900; - font-style: italic; -} - - -@font-face{ - font-family: 'Fira Mono'; - src: url('eot/FiraMono-Regular.eot'); - src: local('Fira Mono'), - url('eot/FiraMono-Regular.eot') format('embedded-opentype'), - url('woff/FiraMono-Regular.woff') format('woff'), - url('ttf/FiraMono-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Mono'; - src: url('eot/FiraMono-Bold.eot'); - src: local('Fira Mono Bold'), - url('eot/FiraMono-Bold.eot') format('embedded-opentype'), - url('woff/FiraMono-Bold.woff') format('woff'), - url('ttf/FiraMono-Bold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; -} - diff --git a/docs-src/src/theme/static/fira/index.html b/docs-src/src/theme/static/fira/index.html deleted file mode 100755 index 092ea15..0000000 --- a/docs-src/src/theme/static/fira/index.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - Fira - - - - -
-

Fira Sans

- - -

Hair

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

UltraLight

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Light

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Regular

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Medium

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

SemiBold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Bold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

ExtraBold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Heavy

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -
-
-
- -

Fira Mono

- -

Regular

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Medium

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Bold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- - Fira on GitHub - -
- -
- - diff --git a/docs-src/src/theme/static/fira/otf/FiraMono-Bold.otf b/docs-src/src/theme/static/fira/otf/FiraMono-Bold.otf deleted file mode 100755 index 4ad726a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraMono-Bold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraMono-Medium.otf b/docs-src/src/theme/static/fira/otf/FiraMono-Medium.otf deleted file mode 100755 index 4f208e9..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraMono-Medium.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraMono-Regular.otf b/docs-src/src/theme/static/fira/otf/FiraMono-Regular.otf deleted file mode 100755 index c30b25b..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraMono-Regular.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Bold.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Bold.otf deleted file mode 100755 index 3e586b4..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Bold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-BoldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-BoldItalic.otf deleted file mode 100755 index 211d6e8..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-BoldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Book.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Book.otf deleted file mode 100755 index 20bc9a1..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Book.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-BookItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-BookItalic.otf deleted file mode 100755 index 948c96f..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-BookItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Eight.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Eight.otf deleted file mode 100755 index a06e1f6..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Eight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-EightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-EightItalic.otf deleted file mode 100755 index 162375d..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-EightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBold.otf b/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBold.otf deleted file mode 100755 index c356745..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBoldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBoldItalic.otf deleted file mode 100755 index 965e330..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraBoldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLight.otf b/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLight.otf deleted file mode 100755 index ca30971..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLightItalic.otf deleted file mode 100755 index dc6a254..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-ExtraLightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Four.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Four.otf deleted file mode 100755 index 97afc1c..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Four.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-FourItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-FourItalic.otf deleted file mode 100755 index a8b18f0..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-FourItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Hair.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Hair.otf deleted file mode 100755 index 1853f5e..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Hair.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-HairItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-HairItalic.otf deleted file mode 100755 index ddc2a23..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-HairItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Heavy.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Heavy.otf deleted file mode 100755 index 1bd9320..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Heavy.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-HeavyItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-HeavyItalic.otf deleted file mode 100755 index a748090..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-HeavyItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Italic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Italic.otf deleted file mode 100755 index b5b9e85..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Italic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Light.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Light.otf deleted file mode 100755 index 02fa607..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Light.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-LightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-LightItalic.otf deleted file mode 100755 index 6ccf6f5..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-LightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Medium.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Medium.otf deleted file mode 100755 index 4bc55e9..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Medium.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-MediumItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-MediumItalic.otf deleted file mode 100755 index d443b46..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-MediumItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Regular.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Regular.otf deleted file mode 100755 index fad0098..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Regular.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-SemiBold.otf b/docs-src/src/theme/static/fira/otf/FiraSans-SemiBold.otf deleted file mode 100755 index f077fff..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-SemiBold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-SemiBoldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-SemiBoldItalic.otf deleted file mode 100755 index 661511a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-SemiBoldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Thin.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Thin.otf deleted file mode 100755 index 259686f..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Thin.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-ThinItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-ThinItalic.otf deleted file mode 100755 index 20da974..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-ThinItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Two.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Two.otf deleted file mode 100755 index e2c7f6d..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Two.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-TwoItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-TwoItalic.otf deleted file mode 100755 index f62e99a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-TwoItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-Ultra.otf b/docs-src/src/theme/static/fira/otf/FiraSans-Ultra.otf deleted file mode 100755 index c44ed09..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-Ultra.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-UltraItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-UltraItalic.otf deleted file mode 100755 index c448514..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-UltraItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-UltraLight.otf b/docs-src/src/theme/static/fira/otf/FiraSans-UltraLight.otf deleted file mode 100755 index 6328b6f..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-UltraLight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSans-UltraLightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSans-UltraLightItalic.otf deleted file mode 100755 index 9aba4e0..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSans-UltraLightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Bold.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Bold.otf deleted file mode 100755 index 94e4925..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Bold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BoldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BoldItalic.otf deleted file mode 100755 index 6786cee..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BoldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Book.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Book.otf deleted file mode 100755 index 51d3a4a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Book.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BookItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BookItalic.otf deleted file mode 100755 index 9407a02..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-BookItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Eight.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Eight.otf deleted file mode 100755 index e56c9c0..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Eight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-EightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-EightItalic.otf deleted file mode 100755 index 792620d..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-EightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraBold.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraBold.otf deleted file mode 100755 index 661f3f4..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraBold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLight.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLight.otf deleted file mode 100755 index dd7c0e5..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf deleted file mode 100755 index 53add7c..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf deleted file mode 100755 index 9409996..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Four.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Four.otf deleted file mode 100755 index f96f35a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Four.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-FourItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-FourItalic.otf deleted file mode 100755 index a99cf18..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-FourItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Hair.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Hair.otf deleted file mode 100755 index 48ac39a..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Hair.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HairItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HairItalic.otf deleted file mode 100755 index 8ed7bf3..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HairItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Heavy.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Heavy.otf deleted file mode 100755 index 368a0c0..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Heavy.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HeavyItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HeavyItalic.otf deleted file mode 100755 index 4cf3ff2..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-HeavyItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Italic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Italic.otf deleted file mode 100755 index 4995910..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Italic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Light.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Light.otf deleted file mode 100755 index 70b907b..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Light.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-LightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-LightItalic.otf deleted file mode 100755 index 2619acb..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-LightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Medium.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Medium.otf deleted file mode 100755 index 23abc50..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Medium.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-MediumItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-MediumItalic.otf deleted file mode 100755 index 3fe6121..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-MediumItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Regular.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Regular.otf deleted file mode 100755 index 7f6d7c1..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Regular.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiBold.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiBold.otf deleted file mode 100755 index 37737d7..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiBold.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiboldItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiboldItalic.otf deleted file mode 100755 index 057912d..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-SemiboldItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Thin.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Thin.otf deleted file mode 100755 index 55ce585..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Thin.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ThinItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ThinItalic.otf deleted file mode 100755 index e8dbaa9..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-ThinItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Two.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Two.otf deleted file mode 100755 index 2757c49..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Two.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-TwoItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-TwoItalic.otf deleted file mode 100755 index eb25158..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-TwoItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Ultra.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Ultra.otf deleted file mode 100755 index 5c10e96..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-Ultra.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraItalic.otf deleted file mode 100755 index a1cf979..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLight.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLight.otf deleted file mode 100755 index 12b7188..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLight.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLightItalic.otf b/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLightItalic.otf deleted file mode 100755 index 6b0dc2d..0000000 Binary files a/docs-src/src/theme/static/fira/otf/FiraSansCondensed-UltraLightItalic.otf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraMono-Bold.ttf b/docs-src/src/theme/static/fira/ttf/FiraMono-Bold.ttf deleted file mode 100755 index 6d4ffb0..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraMono-Bold.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraMono-Medium.ttf b/docs-src/src/theme/static/fira/ttf/FiraMono-Medium.ttf deleted file mode 100755 index 1e95ced..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraMono-Medium.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraMono-Regular.ttf b/docs-src/src/theme/static/fira/ttf/FiraMono-Regular.ttf deleted file mode 100755 index 59e1e1a..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraMono-Regular.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Bold.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Bold.ttf deleted file mode 100755 index 95e1660..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Bold.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-BoldItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-BoldItalic.ttf deleted file mode 100755 index 97b52ef..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-BoldItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Book.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Book.ttf deleted file mode 100755 index 4834eed..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Book.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-BookItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-BookItalic.ttf deleted file mode 100755 index 4d19d52..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-BookItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Eight.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Eight.ttf deleted file mode 100755 index 2aa2ff0..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Eight.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-EightItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-EightItalic.ttf deleted file mode 100755 index 84c6697..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-EightItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBold.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBold.ttf deleted file mode 100755 index 1367883..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBold.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBoldItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBoldItalic.ttf deleted file mode 100755 index edb8bba..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraBoldItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLight.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLight.ttf deleted file mode 100755 index 2402422..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLight.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLightItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLightItalic.ttf deleted file mode 100755 index b199fed..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-ExtraLightItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Four.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Four.ttf deleted file mode 100755 index aed0f89..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Four.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-FourItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-FourItalic.ttf deleted file mode 100755 index af669aa..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-FourItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Hair.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Hair.ttf deleted file mode 100755 index d108ba0..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Hair.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-HairItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-HairItalic.ttf deleted file mode 100755 index c5242ad..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-HairItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Heavy.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Heavy.ttf deleted file mode 100755 index d26f388..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Heavy.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-HeavyItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-HeavyItalic.ttf deleted file mode 100755 index 7ae7493..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-HeavyItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Italic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Italic.ttf deleted file mode 100755 index f5e4914..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Italic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Light.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Light.ttf deleted file mode 100755 index 2ad0374..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Light.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-LightItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-LightItalic.ttf deleted file mode 100755 index 4b4c3a2..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-LightItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Medium.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Medium.ttf deleted file mode 100755 index c454f73..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Medium.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-MediumItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-MediumItalic.ttf deleted file mode 100755 index 5416cfa..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-MediumItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Regular.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Regular.ttf deleted file mode 100755 index d9fdc0e..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Regular.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBold.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBold.ttf deleted file mode 100755 index 821a43d..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBold.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBoldItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBoldItalic.ttf deleted file mode 100755 index 48c346f..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-SemiBoldItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Thin.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Thin.ttf deleted file mode 100755 index 69bad63..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Thin.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-ThinItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-ThinItalic.ttf deleted file mode 100755 index f44307f..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-ThinItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Two.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Two.ttf deleted file mode 100755 index 551672f..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Two.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-TwoItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-TwoItalic.ttf deleted file mode 100755 index 1af78f2..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-TwoItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-Ultra.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-Ultra.ttf deleted file mode 100755 index ecd7974..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-Ultra.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-UltraItalic.ttf deleted file mode 100755 index 07902d5..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLight.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLight.ttf deleted file mode 100755 index 6d2b2e0..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLight.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLightItalic.ttf b/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLightItalic.ttf deleted file mode 100755 index 037bdbc..0000000 Binary files a/docs-src/src/theme/static/fira/ttf/FiraSans-UltraLightItalic.ttf and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraMono-Bold.woff b/docs-src/src/theme/static/fira/woff/FiraMono-Bold.woff deleted file mode 100755 index 735352f..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraMono-Bold.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraMono-Medium.woff b/docs-src/src/theme/static/fira/woff/FiraMono-Medium.woff deleted file mode 100755 index a33c724..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraMono-Medium.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraMono-Regular.woff b/docs-src/src/theme/static/fira/woff/FiraMono-Regular.woff deleted file mode 100755 index b38ee14..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraMono-Regular.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Bold.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Bold.woff deleted file mode 100755 index a8dba64..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Bold.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-BoldItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-BoldItalic.woff deleted file mode 100755 index 54895de..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-BoldItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Book.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Book.woff deleted file mode 100755 index 3d39706..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Book.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-BookItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-BookItalic.woff deleted file mode 100755 index ae9a33e..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-BookItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Eight.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Eight.woff deleted file mode 100755 index 4fcce27..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Eight.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-EightItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-EightItalic.woff deleted file mode 100755 index 4510262..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-EightItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBold.woff b/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBold.woff deleted file mode 100755 index 7160357..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBold.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBoldItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBoldItalic.woff deleted file mode 100755 index 7914f0e..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraBoldItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLight.woff b/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLight.woff deleted file mode 100755 index 005d0b7..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLight.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLightItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLightItalic.woff deleted file mode 100755 index fef3e38..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-ExtraLightItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Four.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Four.woff deleted file mode 100755 index 4da1db7..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Four.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-FourItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-FourItalic.woff deleted file mode 100755 index a3f8468..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-FourItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Hair.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Hair.woff deleted file mode 100755 index 5fbacb7..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Hair.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-HairItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-HairItalic.woff deleted file mode 100755 index f2d7f98..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-HairItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Heavy.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Heavy.woff deleted file mode 100755 index ad5de4b..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Heavy.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-HeavyItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-HeavyItalic.woff deleted file mode 100755 index 7914da9..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-HeavyItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Italic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Italic.woff deleted file mode 100755 index 2980194..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Italic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Light.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Light.woff deleted file mode 100755 index 747071e..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Light.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-LightItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-LightItalic.woff deleted file mode 100755 index e19720a..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-LightItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Medium.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Medium.woff deleted file mode 100755 index 7d742c5..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Medium.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-MediumItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-MediumItalic.woff deleted file mode 100755 index dd5bbe6..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-MediumItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Regular.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Regular.woff deleted file mode 100755 index d8e0363..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Regular.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-SemiBold.woff b/docs-src/src/theme/static/fira/woff/FiraSans-SemiBold.woff deleted file mode 100755 index 8b408d4..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-SemiBold.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-SemiBoldItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-SemiBoldItalic.woff deleted file mode 100755 index 2592e4f..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-SemiBoldItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Thin.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Thin.woff deleted file mode 100755 index f986fb5..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Thin.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-ThinItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-ThinItalic.woff deleted file mode 100755 index c90247e..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-ThinItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Two.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Two.woff deleted file mode 100755 index f1db0fb..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Two.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-TwoItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-TwoItalic.woff deleted file mode 100755 index f5ddbf6..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-TwoItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-Ultra.woff b/docs-src/src/theme/static/fira/woff/FiraSans-Ultra.woff deleted file mode 100755 index b42f714..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-Ultra.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-UltraItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-UltraItalic.woff deleted file mode 100755 index 3486307..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-UltraItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-UltraLight.woff b/docs-src/src/theme/static/fira/woff/FiraSans-UltraLight.woff deleted file mode 100755 index 2c22e94..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-UltraLight.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff/FiraSans-UltraLightItalic.woff b/docs-src/src/theme/static/fira/woff/FiraSans-UltraLightItalic.woff deleted file mode 100755 index 421f933..0000000 Binary files a/docs-src/src/theme/static/fira/woff/FiraSans-UltraLightItalic.woff and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraMono-Bold.woff2 b/docs-src/src/theme/static/fira/woff2/FiraMono-Bold.woff2 deleted file mode 100755 index 832aaab..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraMono-Bold.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraMono-Medium.woff2 b/docs-src/src/theme/static/fira/woff2/FiraMono-Medium.woff2 deleted file mode 100755 index 610e9b2..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraMono-Medium.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraMono-Regular.woff2 b/docs-src/src/theme/static/fira/woff2/FiraMono-Regular.woff2 deleted file mode 100755 index 9fa44b7..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraMono-Regular.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Bold.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Bold.woff2 deleted file mode 100755 index 4c550c7..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Bold.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-BoldItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-BoldItalic.woff2 deleted file mode 100755 index 9e66901..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-BoldItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Book.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Book.woff2 deleted file mode 100755 index 9d5db65..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Book.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-BookItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-BookItalic.woff2 deleted file mode 100755 index 84f272c..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-BookItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Eight.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Eight.woff2 deleted file mode 100755 index b5b1dfe..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Eight.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-EightItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-EightItalic.woff2 deleted file mode 100755 index 48dc9f9..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-EightItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBold.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBold.woff2 deleted file mode 100755 index c343ae9..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBold.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 deleted file mode 100755 index 88aaaba..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLight.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLight.woff2 deleted file mode 100755 index 447bc7d..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLight.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLightItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLightItalic.woff2 deleted file mode 100755 index 54016b9..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-ExtraLightItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Four.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Four.woff2 deleted file mode 100755 index 95ebb7e..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Four.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-FourItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-FourItalic.woff2 deleted file mode 100755 index cf40809..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-FourItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Hair.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Hair.woff2 deleted file mode 100755 index 10e7287..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Hair.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-HairItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-HairItalic.woff2 deleted file mode 100755 index 6027bad..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-HairItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Heavy.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Heavy.woff2 deleted file mode 100755 index b61bf0d..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Heavy.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-HeavyItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-HeavyItalic.woff2 deleted file mode 100755 index f12daf3..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-HeavyItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Italic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Italic.woff2 deleted file mode 100755 index 3f63664..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Italic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Light.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Light.woff2 deleted file mode 100755 index 5c0e34d..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Light.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-LightItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-LightItalic.woff2 deleted file mode 100755 index 0e9b453..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-LightItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Medium.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Medium.woff2 deleted file mode 100755 index 7a1e5fc..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Medium.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-MediumItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-MediumItalic.woff2 deleted file mode 100755 index 2d08f9f..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-MediumItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Regular.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Regular.woff2 deleted file mode 100755 index e766e06..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Regular.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBold.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBold.woff2 deleted file mode 100755 index bafabb5..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBold.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBoldItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBoldItalic.woff2 deleted file mode 100755 index a256463..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-SemiBoldItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Thin.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Thin.woff2 deleted file mode 100755 index 73e2d82..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Thin.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-ThinItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-ThinItalic.woff2 deleted file mode 100755 index c8d3b36..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-ThinItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Two.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Two.woff2 deleted file mode 100755 index 6b389c7..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Two.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-TwoItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-TwoItalic.woff2 deleted file mode 100755 index 479ca9f..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-TwoItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-Ultra.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-Ultra.woff2 deleted file mode 100755 index ea4c78b..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-Ultra.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-UltraItalic.woff2 deleted file mode 100755 index 5afeecc..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLight.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLight.woff2 deleted file mode 100755 index 02eb286..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLight.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLightItalic.woff2 b/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLightItalic.woff2 deleted file mode 100755 index 7c48ba0..0000000 Binary files a/docs-src/src/theme/static/fira/woff2/FiraSans-UltraLightItalic.woff2 and /dev/null differ diff --git a/docs-src/src/theme/static/overrides.css b/docs-src/src/theme/static/overrides.css deleted file mode 100644 index 2c370ca..0000000 --- a/docs-src/src/theme/static/overrides.css +++ /dev/null @@ -1,94 +0,0 @@ -html { - -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */ - -moz-box-sizing: border-box; /* Firefox, other Gecko */ - box-sizing: border-box; -} -*, *:before, *:after { - box-sizing: inherit; -} - -body { - background: #fff; - font-family: 'Fira Sans', 'Helvetica Neue', sans-serif; - font-size: 15px; - line-height: 1.6; - margin: 0 auto; -} - -code, pre { - font-family: 'Fira Code', monospace; -} - -code { - display: inline; - padding: 0px 2px; - background: #f0f0f0; - font-size: 100%; - color: inherit; -} - -pre { - border: 0; - background: #fafafa; - border-left: 5px solid #ddd; - border-right: 5px solid #ddd; - padding: 1em; - margin: 1em 0; - font-size: inherit; -} - -h1, h2, h3, h4, h5, h6 { - font-weight: 700; -} - -h1 { - margin: 1.5rem 0 1.5rem 0; - font-size: 200%; -} -h2 { - margin: 1.5em 0; - font-size: 125%; -} -h3, h4 { - margin: 1.5em 0; - font-size: 100%; -} - -dt { - font-style: italic; - font-weight: 400; -} -dd { - padding-left: 2em; -} - -.navbar-text.logo { - margin: 13px 15px 13px 0; -} -.navbar.navbar-inverse { - background: #333; -} -.navbar.navbar-inverse .navbar-form { - border: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -p { - margin-bottom: 1em; -} - -blockquote { - border-left: 5px solid #ddd; - font-size: inherit; -} - -@media screen and (max-width: 800px) { - body { - font-size: 14px; - } - pre { - margin-left: -8px; - margin-right: -8px; - } -} diff --git a/docs/.buildinfo b/docs/.buildinfo deleted file mode 100644 index bec6d90..0000000 --- a/docs/.buildinfo +++ /dev/null @@ -1,4 +0,0 @@ -# Sphinx build info version 1 -# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. -config: 857517052014c46bc9564fbe4d88f142 -tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/docs-src/.gitignore b/docs/.gitignore similarity index 100% rename from docs-src/.gitignore rename to docs/.gitignore diff --git a/docs/.nojekyll b/docs/.nojekyll deleted file mode 100644 index e69de29..0000000 diff --git a/docs/404.html b/docs/404.html new file mode 100644 index 0000000..4e21425 --- /dev/null +++ b/docs/404.html @@ -0,0 +1,2 @@ +

Page Not Found

+

The page you are looking for is not here. It might have been relocated, so please use the navigation, or search, above to find your way.

diff --git a/docs/CNAME b/docs/CNAME deleted file mode 100644 index 61119bb..0000000 --- a/docs/CNAME +++ /dev/null @@ -1 +0,0 @@ -hyper.wickstrom.tech diff --git a/docs-src/Makefile b/docs/Makefile similarity index 90% rename from docs-src/Makefile rename to docs/Makefile index 0016dcc..c4699dd 100644 --- a/docs-src/Makefile +++ b/docs/Makefile @@ -228,7 +228,7 @@ dummy: # CUSTOM STUFF: -VERSION ?= $(shell ../bin/get_version.py ../project.clj) +VERSION ?= $(shell git rev-parse --short HEAD) SOURCES = $(shell find src -type f -not -name '*.ttf') .PHONY: livehtml @@ -237,10 +237,26 @@ livehtml: .PHONY: release release: clean html latexpdf - rm -r ../docs - cp -r target/html ../docs - echo "hyper.wickstrom.tech" > ../docs/CNAME - touch ../docs/.nojekyll - cp target/latex/hyper.pdf ../docs/hyper.pdf - echo "# THIS IS AUTO-GENERATED, DO NOT EDIT" > ../docs/README.md - echo "Instead edit the sources in [docs-src](../docs-src)." >> ../docs/README.md + rm -rf $(BUILDDIR)/release + cp -r $(BUILDDIR)/html $(BUILDDIR)/release + cp $(BUILDDIR)/latex/hyper.pdf $(BUILDDIR)/release/hyper.pdf + +deploy-release: release + aws s3 sync --region=eu-west-1 target/release s3://hyper.wickstrom.tech/docs/$(VERSION) + +.PHONY: $(BUILDDIR)/index/index.html +$(BUILDDIR)/index/index.html: bin/make-index-page.sh html + mkdir -p $(BUILDDIR)/index + cp -r $(BUILDDIR)/html/_static/ $(BUILDDIR)/index/static + bin/make-index-page.sh > $@ + +.PHONY: $(BUILDDIR)/index/latest/index.html +$(BUILDDIR)/index/latest/index.html: bin/make-latest-page.sh + mkdir -p $(BUILDDIR)/index/latest + bin/make-latest-page.sh > $@ + +$(BUILDDIR)/index/404.html: 404.html $(BUILDDIR)/index/index.html + cp $< $@ + +.PHONY: release-index +release-index: $(BUILDDIR)/index/index.html $(BUILDDIR)/index/404.html $(BUILDDIR)/index/latest/index.html diff --git a/docs/README.md b/docs/README.md index 88a1d97..bde646a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,2 +1,36 @@ -# THIS IS AUTO-GENERATED, DO NOT EDIT -Instead edit the sources in [docs-src](../docs-src). +# Hyper Documentation + +The Hyper documentation is built using Sphinx and reStructured Text. + +## Prerequisites + +* [A TeX Distribution](https://www.latex-project.org/get/) +* [virtualenv](https://virtualenv.pypa.io/en/stable/) + +## Setup + +```bash +# Change to this directory in your terminal +cd docs-src +virtualenv ENV +ENV/bin/activate +pip install -r requirements.txt +``` + +## Building HTML + +```bash +make html +``` + +Or, a handy live-reloading server for when you are writing documentation: + +```bash +make livehtml +``` + +## Building the PDF + +```bash +make latexpdf +``` diff --git a/docs/_static/ajax-loader.gif b/docs/_static/ajax-loader.gif deleted file mode 100644 index 61faf8c..0000000 Binary files a/docs/_static/ajax-loader.gif and /dev/null differ diff --git a/docs/_static/basic.css b/docs/_static/basic.css deleted file mode 100644 index dc88b5a..0000000 --- a/docs/_static/basic.css +++ /dev/null @@ -1,632 +0,0 @@ -/* - * basic.css - * ~~~~~~~~~ - * - * Sphinx stylesheet -- basic theme. - * - * :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/* -- main layout ----------------------------------------------------------- */ - -div.clearer { - clear: both; -} - -/* -- relbar ---------------------------------------------------------------- */ - -div.related { - width: 100%; - font-size: 90%; -} - -div.related h3 { - display: none; -} - -div.related ul { - margin: 0; - padding: 0 0 0 10px; - list-style: none; -} - -div.related li { - display: inline; -} - -div.related li.right { - float: right; - margin-right: 5px; -} - -/* -- sidebar --------------------------------------------------------------- */ - -div.sphinxsidebarwrapper { - padding: 10px 5px 0 10px; -} - -div.sphinxsidebar { - float: left; - width: 230px; - margin-left: -100%; - font-size: 90%; - word-wrap: break-word; - overflow-wrap : break-word; -} - -div.sphinxsidebar ul { - list-style: none; -} - -div.sphinxsidebar ul ul, -div.sphinxsidebar ul.want-points { - margin-left: 20px; - list-style: square; -} - -div.sphinxsidebar ul ul { - margin-top: 0; - margin-bottom: 0; -} - -div.sphinxsidebar form { - margin-top: 10px; -} - -div.sphinxsidebar input { - border: 1px solid #98dbcc; - font-family: sans-serif; - font-size: 1em; -} - -div.sphinxsidebar #searchbox input[type="text"] { - width: 170px; -} - -img { - border: 0; - max-width: 100%; -} - -/* -- search page ----------------------------------------------------------- */ - -ul.search { - margin: 10px 0 0 20px; - padding: 0; -} - -ul.search li { - padding: 5px 0 5px 20px; - background-image: url(file.png); - background-repeat: no-repeat; - background-position: 0 7px; -} - -ul.search li a { - font-weight: bold; -} - -ul.search li div.context { - color: #888; - margin: 2px 0 0 30px; - text-align: left; -} - -ul.keywordmatches li.goodmatch a { - font-weight: bold; -} - -/* -- index page ------------------------------------------------------------ */ - -table.contentstable { - width: 90%; - margin-left: auto; - margin-right: auto; -} - -table.contentstable p.biglink { - line-height: 150%; -} - -a.biglink { - font-size: 1.3em; -} - -span.linkdescr { - font-style: italic; - padding-top: 5px; - font-size: 90%; -} - -/* -- general index --------------------------------------------------------- */ - -table.indextable { - width: 100%; -} - -table.indextable td { - text-align: left; - vertical-align: top; -} - -table.indextable ul { - margin-top: 0; - margin-bottom: 0; - list-style-type: none; -} - -table.indextable > tbody > tr > td > ul { - padding-left: 0em; -} - -table.indextable tr.pcap { - height: 10px; -} - -table.indextable tr.cap { - margin-top: 10px; - background-color: #f2f2f2; -} - -img.toggler { - margin-right: 3px; - margin-top: 3px; - cursor: pointer; -} - -div.modindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -div.genindex-jumpbox { - border-top: 1px solid #ddd; - border-bottom: 1px solid #ddd; - margin: 1em 0 1em 0; - padding: 0.4em; -} - -/* -- domain module index --------------------------------------------------- */ - -table.modindextable td { - padding: 2px; - border-collapse: collapse; -} - -/* -- general body styles --------------------------------------------------- */ - -div.body p, div.body dd, div.body li, div.body blockquote { - -moz-hyphens: auto; - -ms-hyphens: auto; - -webkit-hyphens: auto; - hyphens: auto; -} - -a.headerlink { - visibility: hidden; -} - -h1:hover > a.headerlink, -h2:hover > a.headerlink, -h3:hover > a.headerlink, -h4:hover > a.headerlink, -h5:hover > a.headerlink, -h6:hover > a.headerlink, -dt:hover > a.headerlink, -caption:hover > a.headerlink, -p.caption:hover > a.headerlink, -div.code-block-caption:hover > a.headerlink { - visibility: visible; -} - -div.body p.caption { - text-align: inherit; -} - -div.body td { - text-align: left; -} - -.first { - margin-top: 0 !important; -} - -p.rubric { - margin-top: 30px; - font-weight: bold; -} - -img.align-left, .figure.align-left, object.align-left { - clear: left; - float: left; - margin-right: 1em; -} - -img.align-right, .figure.align-right, object.align-right { - clear: right; - float: right; - margin-left: 1em; -} - -img.align-center, .figure.align-center, object.align-center { - display: block; - margin-left: auto; - margin-right: auto; -} - -.align-left { - text-align: left; -} - -.align-center { - text-align: center; -} - -.align-right { - text-align: right; -} - -/* -- sidebars -------------------------------------------------------------- */ - -div.sidebar { - margin: 0 0 0.5em 1em; - border: 1px solid #ddb; - padding: 7px 7px 0 7px; - background-color: #ffe; - width: 40%; - float: right; -} - -p.sidebar-title { - font-weight: bold; -} - -/* -- topics ---------------------------------------------------------------- */ - -div.topic { - border: 1px solid #ccc; - padding: 7px 7px 0 7px; - margin: 10px 0 10px 0; -} - -p.topic-title { - font-size: 1.1em; - font-weight: bold; - margin-top: 10px; -} - -/* -- admonitions ----------------------------------------------------------- */ - -div.admonition { - margin-top: 10px; - margin-bottom: 10px; - padding: 7px; -} - -div.admonition dt { - font-weight: bold; -} - -div.admonition dl { - margin-bottom: 0; -} - -p.admonition-title { - margin: 0px 10px 5px 0px; - font-weight: bold; -} - -div.body p.centered { - text-align: center; - margin-top: 25px; -} - -/* -- tables ---------------------------------------------------------------- */ - -table.docutils { - border: 0; - border-collapse: collapse; -} - -table caption span.caption-number { - font-style: italic; -} - -table caption span.caption-text { -} - -table.docutils td, table.docutils th { - padding: 1px 8px 1px 5px; - border-top: 0; - border-left: 0; - border-right: 0; - border-bottom: 1px solid #aaa; -} - -table.footnote td, table.footnote th { - border: 0 !important; -} - -th { - text-align: left; - padding-right: 5px; -} - -table.citation { - border-left: solid 1px gray; - margin-left: 1px; -} - -table.citation td { - border-bottom: none; -} - -/* -- figures --------------------------------------------------------------- */ - -div.figure { - margin: 0.5em; - padding: 0.5em; -} - -div.figure p.caption { - padding: 0.3em; -} - -div.figure p.caption span.caption-number { - font-style: italic; -} - -div.figure p.caption span.caption-text { -} - -/* -- field list styles ----------------------------------------------------- */ - -table.field-list td, table.field-list th { - border: 0 !important; -} - -.field-list ul { - margin: 0; - padding-left: 1em; -} - -.field-list p { - margin: 0; -} - -/* -- other body styles ----------------------------------------------------- */ - -ol.arabic { - list-style: decimal; -} - -ol.loweralpha { - list-style: lower-alpha; -} - -ol.upperalpha { - list-style: upper-alpha; -} - -ol.lowerroman { - list-style: lower-roman; -} - -ol.upperroman { - list-style: upper-roman; -} - -dl { - margin-bottom: 15px; -} - -dd p { - margin-top: 0px; -} - -dd ul, dd table { - margin-bottom: 10px; -} - -dd { - margin-top: 3px; - margin-bottom: 10px; - margin-left: 30px; -} - -dt:target, .highlighted { - background-color: #fbe54e; -} - -dl.glossary dt { - font-weight: bold; - font-size: 1.1em; -} - -.optional { - font-size: 1.3em; -} - -.sig-paren { - font-size: larger; -} - -.versionmodified { - font-style: italic; -} - -.system-message { - background-color: #fda; - padding: 5px; - border: 3px solid red; -} - -.footnote:target { - background-color: #ffa; -} - -.line-block { - display: block; - margin-top: 1em; - margin-bottom: 1em; -} - -.line-block .line-block { - margin-top: 0; - margin-bottom: 0; - margin-left: 1.5em; -} - -.guilabel, .menuselection { - font-family: sans-serif; -} - -.accelerator { - text-decoration: underline; -} - -.classifier { - font-style: oblique; -} - -abbr, acronym { - border-bottom: dotted 1px; - cursor: help; -} - -/* -- code displays --------------------------------------------------------- */ - -pre { - overflow: auto; - overflow-y: hidden; /* fixes display issues on Chrome browsers */ -} - -span.pre { - -moz-hyphens: none; - -ms-hyphens: none; - -webkit-hyphens: none; - hyphens: none; -} - -td.linenos pre { - padding: 5px 0px; - border: 0; - background-color: transparent; - color: #aaa; -} - -table.highlighttable { - margin-left: 0.5em; -} - -table.highlighttable td { - padding: 0 0.5em 0 0.5em; -} - -div.code-block-caption { - padding: 2px 5px; - font-size: small; -} - -div.code-block-caption code { - background-color: transparent; -} - -div.code-block-caption + div > div.highlight > pre { - margin-top: 0; -} - -div.code-block-caption span.caption-number { - padding: 0.1em 0.3em; - font-style: italic; -} - -div.code-block-caption span.caption-text { -} - -div.literal-block-wrapper { - padding: 1em 1em 0; -} - -div.literal-block-wrapper div.highlight { - margin: 0; -} - -code.descname { - background-color: transparent; - font-weight: bold; - font-size: 1.2em; -} - -code.descclassname { - background-color: transparent; -} - -code.xref, a code { - background-color: transparent; - font-weight: bold; -} - -h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { - background-color: transparent; -} - -.viewcode-link { - float: right; -} - -.viewcode-back { - float: right; - font-family: sans-serif; -} - -div.viewcode-block:target { - margin: -1px -10px; - padding: 0 10px; -} - -/* -- math display ---------------------------------------------------------- */ - -img.math { - vertical-align: middle; -} - -div.body div.math p { - text-align: center; -} - -span.eqno { - float: right; -} - -span.eqno a.headerlink { - position: relative; - left: 0px; - z-index: 1; -} - -div.math:hover a.headerlink { - visibility: visible; -} - -/* -- printout stylesheet --------------------------------------------------- */ - -@media print { - div.document, - div.documentwrapper, - div.bodywrapper { - margin: 0 !important; - width: 100%; - } - - div.sphinxsidebar, - div.related, - div.footer, - #top-link { - display: none; - } -} \ No newline at end of file diff --git a/docs/_static/bootstrap/config.json b/docs/_static/bootstrap/config.json deleted file mode 100644 index 074eb55..0000000 --- a/docs/_static/bootstrap/config.json +++ /dev/null @@ -1,435 +0,0 @@ -{ - "vars": { - "@gray-base": "#111111", - "@gray-darker": "lighten(@gray-base, 13.5%)", - "@gray-dark": "lighten(@gray-base, 20%)", - "@gray": "lighten(@gray-base, 33.5%)", - "@gray-light": "lighten(@gray-base, 46.7%)", - "@gray-lighter": "lighten(@gray-base, 93.5%)", - "@brand-primary": "#6900EA", - "@brand-success": "#579E00", - "@brand-info": "#6900EA", - "@brand-warning": "#e8d63c", - "@brand-danger": "#e40434", - "@body-bg": "#f7f7f7", - "@text-color": "@gray-darker", - "@link-color": "@brand-primary", - "@link-hover-color": "darken(@link-color, 15%)", - "@link-hover-decoration": "underline", - "@font-family-sans-serif": "\"Fira Sans\", \"Helvetica Neue\", Helvetica, Arial, sans-serif", - "@font-family-serif": "Georgia, \"Times New Roman\", Times, serif", - "@font-family-monospace": "\"Fira Code\", monospace", - "@font-family-base": "@font-family-sans-serif", - "@font-size-base": "16px", - "@font-size-large": "ceil((@font-size-base * 1.25))", - "@font-size-small": "ceil((@font-size-base * 0.85))", - "@font-size-h1": "floor((@font-size-base * 2.6))", - "@font-size-h2": "floor((@font-size-base * 2.15))", - "@font-size-h3": "ceil((@font-size-base * 1.7))", - "@font-size-h4": "ceil((@font-size-base * 1.25))", - "@font-size-h5": "@font-size-base", - "@font-size-h6": "ceil((@font-size-base * 0.85))", - "@line-height-base": "1.5", - "@line-height-computed": "floor((@font-size-base * @line-height-base))", - "@headings-font-family": "@font-family-base", - "@headings-font-weight": "600", - "@headings-line-height": "1.1", - "@headings-color": "@text-color", - "@icon-font-path": "\"../fonts/\"", - "@icon-font-name": "\"glyphicons-halflings-regular\"", - "@icon-font-svg-id": "\"glyphicons_halflingsregular\"", - "@padding-base-vertical": "6px", - "@padding-base-horizontal": "12px", - "@padding-large-vertical": "10px", - "@padding-large-horizontal": "16px", - "@padding-small-vertical": "5px", - "@padding-small-horizontal": "10px", - "@padding-xs-vertical": "1px", - "@padding-xs-horizontal": "5px", - "@line-height-large": "1.3333333", - "@line-height-small": "1.5", - "@border-radius-base": "0px", - "@border-radius-large": "0px", - "@border-radius-small": "0px", - "@component-active-color": "#fff", - "@component-active-bg": "@brand-primary", - "@caret-width-base": "4px", - "@caret-width-large": "5px", - "@table-cell-padding": "8px", - "@table-condensed-cell-padding": "5px", - "@table-bg": "transparent", - "@table-bg-accent": "#f9f9f9", - "@table-bg-hover": "#f5f5f5", - "@table-bg-active": "@table-bg-hover", - "@table-border-color": "#ddd", - "@btn-font-weight": "normal", - "@btn-default-color": "#333", - "@btn-default-bg": "#fff", - "@btn-default-border": "#ccc", - "@btn-primary-color": "#fff", - "@btn-primary-bg": "@brand-primary", - "@btn-primary-border": "darken(@btn-primary-bg, 5%)", - "@btn-success-color": "#fff", - "@btn-success-bg": "@brand-success", - "@btn-success-border": "darken(@btn-success-bg, 5%)", - "@btn-info-color": "#fff", - "@btn-info-bg": "@brand-info", - "@btn-info-border": "darken(@btn-info-bg, 5%)", - "@btn-warning-color": "#fff", - "@btn-warning-bg": "@brand-warning", - "@btn-warning-border": "darken(@btn-warning-bg, 5%)", - "@btn-danger-color": "#fff", - "@btn-danger-bg": "@brand-danger", - "@btn-danger-border": "darken(@btn-danger-bg, 5%)", - "@btn-link-disabled-color": "@gray-light", - "@btn-border-radius-base": "@border-radius-base", - "@btn-border-radius-large": "@border-radius-large", - "@btn-border-radius-small": "@border-radius-small", - "@input-bg": "none", - "@input-bg-disabled": "@gray-lighter", - "@input-color": "@gray", - "@input-border": "@gray-base", - "@input-border-radius": "@border-radius-base", - "@input-border-radius-large": "@border-radius-large", - "@input-border-radius-small": "@border-radius-small", - "@input-border-focus": "@brand-primary", - "@input-color-placeholder": "#999", - "@input-height-base": "(@line-height-computed + (@padding-base-vertical * 2) + 2)", - "@input-height-large": "(ceil(@font-size-large * @line-height-large) + (@padding-large-vertical * 2) + 2)", - "@input-height-small": "(floor(@font-size-small * @line-height-small) + (@padding-small-vertical * 2) + 2)", - "@form-group-margin-bottom": "15px", - "@legend-color": "@gray-dark", - "@legend-border-color": "#e5e5e5", - "@input-group-addon-bg": "@gray-lighter", - "@input-group-addon-border-color": "@input-border", - "@cursor-disabled": "not-allowed", - "@dropdown-bg": "#fff", - "@dropdown-border": "rgba(0,0,0,.15)", - "@dropdown-fallback-border": "#ccc", - "@dropdown-divider-bg": "#e5e5e5", - "@dropdown-link-color": "@gray-dark", - "@dropdown-link-hover-color": "darken(@gray-dark, 5%)", - "@dropdown-link-hover-bg": "#f5f5f5", - "@dropdown-link-active-color": "@component-active-color", - "@dropdown-link-active-bg": "@component-active-bg", - "@dropdown-link-disabled-color": "@gray-light", - "@dropdown-header-color": "@gray-light", - "@dropdown-caret-color": "#000", - "@screen-xs": "480px", - "@screen-xs-min": "@screen-xs", - "@screen-phone": "@screen-xs-min", - "@screen-sm": "768px", - "@screen-sm-min": "@screen-sm", - "@screen-tablet": "@screen-sm-min", - "@screen-md": "992px", - "@screen-md-min": "@screen-md", - "@screen-desktop": "@screen-md-min", - "@screen-lg": "1200px", - "@screen-lg-min": "@screen-lg", - "@screen-lg-desktop": "@screen-lg-min", - "@screen-xs-max": "(@screen-sm-min - 1)", - "@screen-sm-max": "(@screen-md-min - 1)", - "@screen-md-max": "(@screen-lg-min - 1)", - "@grid-columns": "12", - "@grid-gutter-width": "30px", - "@grid-float-breakpoint": "@screen-sm-min", - "@grid-float-breakpoint-max": "(@grid-float-breakpoint - 1)", - "@container-tablet": "(720px + @grid-gutter-width)", - "@container-sm": "@container-tablet", - "@container-desktop": "(940px + @grid-gutter-width)", - "@container-md": "@container-desktop", - "@container-large-desktop": "(1000px + @grid-gutter-width)", - "@container-lg": "@container-large-desktop", - "@navbar-height": "50px", - "@navbar-margin-bottom": "@line-height-computed", - "@navbar-border-radius": "@border-radius-base", - "@navbar-padding-horizontal": "floor((@grid-gutter-width / 2))", - "@navbar-padding-vertical": "((@navbar-height - @line-height-computed) / 2)", - "@navbar-collapse-max-height": "340px", - "@navbar-default-color": "@gray-base", - "@navbar-default-bg": "@body-bg", - "@navbar-default-border": "darken(@navbar-default-bg, 6.5%)", - "@navbar-default-link-color": "#777", - "@navbar-default-link-hover-color": "#333", - "@navbar-default-link-hover-bg": "transparent", - "@navbar-default-link-active-color": "#555", - "@navbar-default-link-active-bg": "darken(@navbar-default-bg, 6.5%)", - "@navbar-default-link-disabled-color": "#ccc", - "@navbar-default-link-disabled-bg": "transparent", - "@navbar-default-brand-color": "@navbar-default-link-color", - "@navbar-default-brand-hover-color": "darken(@navbar-default-brand-color, 10%)", - "@navbar-default-brand-hover-bg": "transparent", - "@navbar-default-toggle-hover-bg": "#ddd", - "@navbar-default-toggle-icon-bar-bg": "#888", - "@navbar-default-toggle-border-color": "#ddd", - "@navbar-inverse-color": "@body-bg", - "@navbar-inverse-bg": "@gray-base", - "@navbar-inverse-border": "darken(@navbar-inverse-bg, 10%)", - "@navbar-inverse-link-color": "lighten(@gray-light, 15%)", - "@navbar-inverse-link-hover-color": "#fff", - "@navbar-inverse-link-hover-bg": "transparent", - "@navbar-inverse-link-active-color": "@navbar-inverse-link-hover-color", - "@navbar-inverse-link-active-bg": "darken(@navbar-inverse-bg, 10%)", - "@navbar-inverse-link-disabled-color": "#444", - "@navbar-inverse-link-disabled-bg": "transparent", - "@navbar-inverse-brand-color": "@navbar-inverse-link-color", - "@navbar-inverse-brand-hover-color": "#fff", - "@navbar-inverse-brand-hover-bg": "transparent", - "@navbar-inverse-toggle-hover-bg": "#333", - "@navbar-inverse-toggle-icon-bar-bg": "#fff", - "@navbar-inverse-toggle-border-color": "#333", - "@nav-link-padding": "10px 15px", - "@nav-link-hover-bg": "@gray-lighter", - "@nav-disabled-link-color": "@gray-light", - "@nav-disabled-link-hover-color": "@gray-light", - "@nav-tabs-border-color": "#ddd", - "@nav-tabs-link-hover-border-color": "@gray-lighter", - "@nav-tabs-active-link-hover-bg": "@body-bg", - "@nav-tabs-active-link-hover-color": "@gray", - "@nav-tabs-active-link-hover-border-color": "#ddd", - "@nav-tabs-justified-link-border-color": "#ddd", - "@nav-tabs-justified-active-link-border-color": "@body-bg", - "@nav-pills-border-radius": "@border-radius-base", - "@nav-pills-active-link-hover-bg": "@component-active-bg", - "@nav-pills-active-link-hover-color": "@component-active-color", - "@pagination-color": "@link-color", - "@pagination-bg": "#fff", - "@pagination-border": "#ddd", - "@pagination-hover-color": "@link-hover-color", - "@pagination-hover-bg": "@gray-lighter", - "@pagination-hover-border": "#ddd", - "@pagination-active-color": "#fff", - "@pagination-active-bg": "@brand-primary", - "@pagination-active-border": "@brand-primary", - "@pagination-disabled-color": "@gray-light", - "@pagination-disabled-bg": "#fff", - "@pagination-disabled-border": "#ddd", - "@pager-bg": "@pagination-bg", - "@pager-border": "@pagination-border", - "@pager-border-radius": "15px", - "@pager-hover-bg": "@pagination-hover-bg", - "@pager-active-bg": "@pagination-active-bg", - "@pager-active-color": "@pagination-active-color", - "@pager-disabled-color": "@pagination-disabled-color", - "@jumbotron-padding": "30px", - "@jumbotron-color": "inherit", - "@jumbotron-bg": "@gray-lighter", - "@jumbotron-heading-color": "inherit", - "@jumbotron-font-size": "ceil((@font-size-base * 1.5))", - "@jumbotron-heading-font-size": "ceil((@font-size-base * 4.5))", - "@state-success-text": "#3c763d", - "@state-success-bg": "#dff0d8", - "@state-success-border": "darken(spin(@state-success-bg, -10), 5%)", - "@state-info-text": "#31708f", - "@state-info-bg": "#d9edf7", - "@state-info-border": "darken(spin(@state-info-bg, -10), 7%)", - "@state-warning-text": "#8a6d3b", - "@state-warning-bg": "#fcf8e3", - "@state-warning-border": "darken(spin(@state-warning-bg, -10), 5%)", - "@state-danger-text": "#a94442", - "@state-danger-bg": "#f2dede", - "@state-danger-border": "darken(spin(@state-danger-bg, -10), 5%)", - "@tooltip-max-width": "200px", - "@tooltip-color": "#fff", - "@tooltip-bg": "#000", - "@tooltip-opacity": ".9", - "@tooltip-arrow-width": "5px", - "@tooltip-arrow-color": "@tooltip-bg", - "@popover-bg": "#fff", - "@popover-max-width": "276px", - "@popover-border-color": "rgba(0,0,0,.2)", - "@popover-fallback-border-color": "#ccc", - "@popover-title-bg": "darken(@popover-bg, 3%)", - "@popover-arrow-width": "10px", - "@popover-arrow-color": "@popover-bg", - "@popover-arrow-outer-width": "(@popover-arrow-width + 1)", - "@popover-arrow-outer-color": "fadein(@popover-border-color, 5%)", - "@popover-arrow-outer-fallback-color": "darken(@popover-fallback-border-color, 20%)", - "@label-default-bg": "@gray-light", - "@label-primary-bg": "@brand-primary", - "@label-success-bg": "@brand-success", - "@label-info-bg": "@brand-info", - "@label-warning-bg": "@brand-warning", - "@label-danger-bg": "@brand-danger", - "@label-color": "#fff", - "@label-link-hover-color": "#fff", - "@modal-inner-padding": "15px", - "@modal-title-padding": "15px", - "@modal-title-line-height": "@line-height-base", - "@modal-content-bg": "#fff", - "@modal-content-border-color": "rgba(0,0,0,.2)", - "@modal-content-fallback-border-color": "#999", - "@modal-backdrop-bg": "#000", - "@modal-backdrop-opacity": ".5", - "@modal-header-border-color": "#e5e5e5", - "@modal-footer-border-color": "@modal-header-border-color", - "@modal-lg": "900px", - "@modal-md": "600px", - "@modal-sm": "300px", - "@alert-padding": "15px", - "@alert-border-radius": "@border-radius-base", - "@alert-link-font-weight": "bold", - "@alert-success-bg": "@state-success-bg", - "@alert-success-text": "@state-success-text", - "@alert-success-border": "@state-success-border", - "@alert-info-bg": "@state-info-bg", - "@alert-info-text": "@state-info-text", - "@alert-info-border": "@state-info-border", - "@alert-warning-bg": "@state-warning-bg", - "@alert-warning-text": "@state-warning-text", - "@alert-warning-border": "@state-warning-border", - "@alert-danger-bg": "@state-danger-bg", - "@alert-danger-text": "@state-danger-text", - "@alert-danger-border": "@state-danger-border", - "@progress-bg": "#f5f5f5", - "@progress-bar-color": "#fff", - "@progress-border-radius": "@border-radius-base", - "@progress-bar-bg": "@brand-primary", - "@progress-bar-success-bg": "@brand-success", - "@progress-bar-warning-bg": "@brand-warning", - "@progress-bar-danger-bg": "@brand-danger", - "@progress-bar-info-bg": "@brand-info", - "@list-group-bg": "#fff", - "@list-group-border": "#ddd", - "@list-group-border-radius": "@border-radius-base", - "@list-group-hover-bg": "#f5f5f5", - "@list-group-active-color": "@component-active-color", - "@list-group-active-bg": "@component-active-bg", - "@list-group-active-border": "@list-group-active-bg", - "@list-group-active-text-color": "lighten(@list-group-active-bg, 40%)", - "@list-group-disabled-color": "@gray-light", - "@list-group-disabled-bg": "@gray-lighter", - "@list-group-disabled-text-color": "@list-group-disabled-color", - "@list-group-link-color": "#555", - "@list-group-link-hover-color": "@list-group-link-color", - "@list-group-link-heading-color": "#333", - "@panel-bg": "#fff", - "@panel-body-padding": "15px", - "@panel-heading-padding": "10px 15px", - "@panel-footer-padding": "@panel-heading-padding", - "@panel-border-radius": "@border-radius-base", - "@panel-inner-border": "#ddd", - "@panel-footer-bg": "#f5f5f5", - "@panel-default-text": "@gray-dark", - "@panel-default-border": "#ddd", - "@panel-default-heading-bg": "#f5f5f5", - "@panel-primary-text": "#fff", - "@panel-primary-border": "@brand-primary", - "@panel-primary-heading-bg": "@brand-primary", - "@panel-success-text": "@state-success-text", - "@panel-success-border": "@state-success-border", - "@panel-success-heading-bg": "@state-success-bg", - "@panel-info-text": "@state-info-text", - "@panel-info-border": "@state-info-border", - "@panel-info-heading-bg": "@state-info-bg", - "@panel-warning-text": "@state-warning-text", - "@panel-warning-border": "@state-warning-border", - "@panel-warning-heading-bg": "@state-warning-bg", - "@panel-danger-text": "@state-danger-text", - "@panel-danger-border": "@state-danger-border", - "@panel-danger-heading-bg": "@state-danger-bg", - "@thumbnail-padding": "4px", - "@thumbnail-bg": "@body-bg", - "@thumbnail-border": "#ddd", - "@thumbnail-border-radius": "@border-radius-base", - "@thumbnail-caption-color": "@text-color", - "@thumbnail-caption-padding": "9px", - "@well-bg": "#f5f5f5", - "@well-border": "darken(@well-bg, 7%)", - "@badge-color": "#fff", - "@badge-link-hover-color": "#fff", - "@badge-bg": "@gray-light", - "@badge-active-color": "@link-color", - "@badge-active-bg": "#fff", - "@badge-font-weight": "bold", - "@badge-line-height": "1", - "@badge-border-radius": "10px", - "@breadcrumb-padding-vertical": "8px", - "@breadcrumb-padding-horizontal": "15px", - "@breadcrumb-bg": "#f5f5f5", - "@breadcrumb-color": "#ccc", - "@breadcrumb-active-color": "@gray-light", - "@breadcrumb-separator": "\"/\"", - "@carousel-text-shadow": "0 1px 2px rgba(0,0,0,.6)", - "@carousel-control-color": "#fff", - "@carousel-control-width": "15%", - "@carousel-control-opacity": ".5", - "@carousel-control-font-size": "20px", - "@carousel-indicator-active-bg": "#fff", - "@carousel-indicator-border-color": "#fff", - "@carousel-caption-color": "#fff", - "@close-font-weight": "bold", - "@close-color": "#000", - "@close-text-shadow": "0 1px 0 #fff", - "@code-color": "#c7254e", - "@code-bg": "#f9f2f4", - "@kbd-color": "#fff", - "@kbd-bg": "#333", - "@pre-bg": "#f5f5f5", - "@pre-color": "@gray-dark", - "@pre-border-color": "#ccc", - "@pre-scrollable-max-height": "340px", - "@component-offset-horizontal": "180px", - "@text-muted": "@gray-light", - "@abbr-border-color": "@gray-light", - "@headings-small-color": "@gray-light", - "@blockquote-small-color": "@gray-light", - "@blockquote-font-size": "(@font-size-base * 1.25)", - "@blockquote-border-color": "@gray-lighter", - "@page-header-border-color": "@gray-lighter", - "@dl-horizontal-offset": "@component-offset-horizontal", - "@dl-horizontal-breakpoint": "@grid-float-breakpoint", - "@hr-border": "@gray-lighter" - }, - "css": [ - "print.less", - "type.less", - "code.less", - "grid.less", - "tables.less", - "forms.less", - "buttons.less", - "responsive-utilities.less", - "glyphicons.less", - "button-groups.less", - "input-groups.less", - "navs.less", - "navbar.less", - "breadcrumbs.less", - "pagination.less", - "pager.less", - "labels.less", - "badges.less", - "jumbotron.less", - "thumbnails.less", - "alerts.less", - "progress-bars.less", - "media.less", - "list-group.less", - "panels.less", - "responsive-embed.less", - "wells.less", - "close.less", - "component-animations.less", - "dropdowns.less", - "tooltip.less", - "popovers.less", - "modals.less", - "carousel.less" - ], - "js": [ - "alert.js", - "button.js", - "carousel.js", - "dropdown.js", - "modal.js", - "tooltip.js", - "popover.js", - "tab.js", - "affix.js", - "collapse.js", - "scrollspy.js", - "transition.js" - ], - "customizerUrl": "http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3" -} \ No newline at end of file diff --git a/docs/_static/bootstrap/css/bootstrap-theme.css b/docs/_static/bootstrap/css/bootstrap-theme.css deleted file mode 100644 index e559b50..0000000 --- a/docs/_static/bootstrap/css/bootstrap-theme.css +++ /dev/null @@ -1,596 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - */ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -.btn-default, -.btn-primary, -.btn-success, -.btn-info, -.btn-warning, -.btn-danger { - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075); -} -.btn-default:active, -.btn-primary:active, -.btn-success:active, -.btn-info:active, -.btn-warning:active, -.btn-danger:active, -.btn-default.active, -.btn-primary.active, -.btn-success.active, -.btn-info.active, -.btn-warning.active, -.btn-danger.active { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-default.disabled, -.btn-primary.disabled, -.btn-success.disabled, -.btn-info.disabled, -.btn-warning.disabled, -.btn-danger.disabled, -.btn-default[disabled], -.btn-primary[disabled], -.btn-success[disabled], -.btn-info[disabled], -.btn-warning[disabled], -.btn-danger[disabled], -fieldset[disabled] .btn-default, -fieldset[disabled] .btn-primary, -fieldset[disabled] .btn-success, -fieldset[disabled] .btn-info, -fieldset[disabled] .btn-warning, -fieldset[disabled] .btn-danger { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-default .badge, -.btn-primary .badge, -.btn-success .badge, -.btn-info .badge, -.btn-warning .badge, -.btn-danger .badge { - text-shadow: none; -} -.btn:active, -.btn.active { - background-image: none; -} -.btn-default { - background-image: -webkit-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); - background-image: -o-linear-gradient(top, #ffffff 0%, #e0e0e0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e0e0e0)); - background-image: linear-gradient(to bottom, #ffffff 0%, #e0e0e0 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #dbdbdb; - text-shadow: 0 1px 0 #fff; - border-color: #ccc; -} -.btn-default:hover, -.btn-default:focus { - background-color: #e0e0e0; - background-position: 0 -15px; -} -.btn-default:active, -.btn-default.active { - background-color: #e0e0e0; - border-color: #dbdbdb; -} -.btn-default.disabled, -.btn-default[disabled], -fieldset[disabled] .btn-default, -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus, -.btn-default.disabled:active, -.btn-default[disabled]:active, -fieldset[disabled] .btn-default:active, -.btn-default.disabled.active, -.btn-default[disabled].active, -fieldset[disabled] .btn-default.active { - background-color: #e0e0e0; - background-image: none; -} -.btn-primary { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #4e00ad 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #4e00ad 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#4e00ad)); - background-image: linear-gradient(to bottom, #6900ea 0%, #4e00ad 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff4e00ad', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #4900a3; -} -.btn-primary:hover, -.btn-primary:focus { - background-color: #4e00ad; - background-position: 0 -15px; -} -.btn-primary:active, -.btn-primary.active { - background-color: #4e00ad; - border-color: #4900a3; -} -.btn-primary.disabled, -.btn-primary[disabled], -fieldset[disabled] .btn-primary, -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus, -.btn-primary.disabled:active, -.btn-primary[disabled]:active, -fieldset[disabled] .btn-primary:active, -.btn-primary.disabled.active, -.btn-primary[disabled].active, -fieldset[disabled] .btn-primary.active { - background-color: #4e00ad; - background-image: none; -} -.btn-success { - background-image: -webkit-linear-gradient(top, #579e00 0%, #356100 100%); - background-image: -o-linear-gradient(top, #579e00 0%, #356100 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#579e00), to(#356100)); - background-image: linear-gradient(to bottom, #579e00 0%, #356100 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff579e00', endColorstr='#ff356100', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #305700; -} -.btn-success:hover, -.btn-success:focus { - background-color: #356100; - background-position: 0 -15px; -} -.btn-success:active, -.btn-success.active { - background-color: #356100; - border-color: #305700; -} -.btn-success.disabled, -.btn-success[disabled], -fieldset[disabled] .btn-success, -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus, -.btn-success.disabled:active, -.btn-success[disabled]:active, -fieldset[disabled] .btn-success:active, -.btn-success.disabled.active, -.btn-success[disabled].active, -fieldset[disabled] .btn-success.active { - background-color: #356100; - background-image: none; -} -.btn-info { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #4e00ad 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #4e00ad 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#4e00ad)); - background-image: linear-gradient(to bottom, #6900ea 0%, #4e00ad 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff4e00ad', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #4900a3; -} -.btn-info:hover, -.btn-info:focus { - background-color: #4e00ad; - background-position: 0 -15px; -} -.btn-info:active, -.btn-info.active { - background-color: #4e00ad; - border-color: #4900a3; -} -.btn-info.disabled, -.btn-info[disabled], -fieldset[disabled] .btn-info, -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus, -.btn-info.disabled:active, -.btn-info[disabled]:active, -fieldset[disabled] .btn-info:active, -.btn-info.disabled.active, -.btn-info[disabled].active, -fieldset[disabled] .btn-info.active { - background-color: #4e00ad; - background-image: none; -} -.btn-warning { - background-image: -webkit-linear-gradient(top, #e8d63c 0%, #cebb18 100%); - background-image: -o-linear-gradient(top, #e8d63c 0%, #cebb18 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e8d63c), to(#cebb18)); - background-image: linear-gradient(to bottom, #e8d63c 0%, #cebb18 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8d63c', endColorstr='#ffcebb18', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #c5b317; -} -.btn-warning:hover, -.btn-warning:focus { - background-color: #cebb18; - background-position: 0 -15px; -} -.btn-warning:active, -.btn-warning.active { - background-color: #cebb18; - border-color: #c5b317; -} -.btn-warning.disabled, -.btn-warning[disabled], -fieldset[disabled] .btn-warning, -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus, -.btn-warning.disabled:active, -.btn-warning[disabled]:active, -fieldset[disabled] .btn-warning:active, -.btn-warning.disabled.active, -.btn-warning[disabled].active, -fieldset[disabled] .btn-warning.active { - background-color: #cebb18; - background-image: none; -} -.btn-danger { - background-image: -webkit-linear-gradient(top, #e40434 0%, #a80326 100%); - background-image: -o-linear-gradient(top, #e40434 0%, #a80326 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e40434), to(#a80326)); - background-image: linear-gradient(to bottom, #e40434 0%, #a80326 100%); - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe40434', endColorstr='#ffa80326', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - background-repeat: repeat-x; - border-color: #9e0324; -} -.btn-danger:hover, -.btn-danger:focus { - background-color: #a80326; - background-position: 0 -15px; -} -.btn-danger:active, -.btn-danger.active { - background-color: #a80326; - border-color: #9e0324; -} -.btn-danger.disabled, -.btn-danger[disabled], -fieldset[disabled] .btn-danger, -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus, -.btn-danger.disabled:active, -.btn-danger[disabled]:active, -fieldset[disabled] .btn-danger:active, -.btn-danger.disabled.active, -.btn-danger[disabled].active, -fieldset[disabled] .btn-danger.active { - background-color: #a80326; - background-image: none; -} -.thumbnail, -.img-thumbnail { - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); - background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); - background-color: #e8e8e8; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5e00d1)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5e00d1 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0); - background-color: #5e00d1; -} -.navbar-default { - background-image: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%); - background-image: -o-linear-gradient(top, #ffffff 0%, #f7f7f7 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f7f7f7)); - background-image: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff7f7f7', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - border-radius: 0px; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075); -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #dadada 0%, #e1e1e1 100%); - background-image: -o-linear-gradient(top, #dadada 0%, #e1e1e1 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dadada), to(#e1e1e1)); - background-image: linear-gradient(to bottom, #dadada 0%, #e1e1e1 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdadada', endColorstr='#ffe1e1e1', GradientType=0); - -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075); -} -.navbar-brand, -.navbar-nav > li > a { - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); -} -.navbar-inverse { - background-image: -webkit-linear-gradient(top, #2b2b2b 0%, #111111 100%); - background-image: -o-linear-gradient(top, #2b2b2b 0%, #111111 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#2b2b2b), to(#111111)); - background-image: linear-gradient(to bottom, #2b2b2b 0%, #111111 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2b2b2b', endColorstr='#ff111111', GradientType=0); - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - border-radius: 0px; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .active > a { - background-image: -webkit-linear-gradient(top, #000000 0%, #060606 100%); - background-image: -o-linear-gradient(top, #000000 0%, #060606 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), to(#060606)); - background-image: linear-gradient(to bottom, #000000 0%, #060606 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#ff060606', GradientType=0); - -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); - box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25); -} -.navbar-inverse .navbar-brand, -.navbar-inverse .navbar-nav > li > a { - text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); -} -.navbar-static-top, -.navbar-fixed-top, -.navbar-fixed-bottom { - border-radius: 0; -} -@media (max-width: 767px) { - .navbar .navbar-nav .open .dropdown-menu > .active > a, - .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #fff; - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5e00d1)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5e00d1 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0); - } -} -.alert { - text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2); - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); -} -.alert-success { - background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); - border-color: #b2dba1; -} -.alert-info { - background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); - background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); - background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); - border-color: #9acfea; -} -.alert-warning { - background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); - border-color: #f5e79e; -} -.alert-danger { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); - background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); - border-color: #dca7a7; -} -.progress { - background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); - background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); - background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); -} -.progress-bar { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5200b7 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5200b7 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5200b7)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5200b7 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5200b7', GradientType=0); -} -.progress-bar-success { - background-image: -webkit-linear-gradient(top, #579e00 0%, #3b6b00 100%); - background-image: -o-linear-gradient(top, #579e00 0%, #3b6b00 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#579e00), to(#3b6b00)); - background-image: linear-gradient(to bottom, #579e00 0%, #3b6b00 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff579e00', endColorstr='#ff3b6b00', GradientType=0); -} -.progress-bar-info { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5200b7 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5200b7 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5200b7)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5200b7 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5200b7', GradientType=0); -} -.progress-bar-warning { - background-image: -webkit-linear-gradient(top, #e8d63c 0%, #d8c419 100%); - background-image: -o-linear-gradient(top, #e8d63c 0%, #d8c419 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e8d63c), to(#d8c419)); - background-image: linear-gradient(to bottom, #e8d63c 0%, #d8c419 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8d63c', endColorstr='#ffd8c419', GradientType=0); -} -.progress-bar-danger { - background-image: -webkit-linear-gradient(top, #e40434 0%, #b20329 100%); - background-image: -o-linear-gradient(top, #e40434 0%, #b20329 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e40434), to(#b20329)); - background-image: linear-gradient(to bottom, #e40434 0%, #b20329 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe40434', endColorstr='#ffb20329', GradientType=0); -} -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.list-group { - border-radius: 0px; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075); -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - text-shadow: 0 -1px 0 #5200b7; - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5800c4 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5800c4 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5800c4)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5800c4 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5800c4', GradientType=0); - border-color: #5800c4; -} -.list-group-item.active .badge, -.list-group-item.active:hover .badge, -.list-group-item.active:focus .badge { - text-shadow: none; -} -.panel { - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); -} -.panel-default > .panel-heading { - background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); - background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); -} -.panel-primary > .panel-heading { - background-image: -webkit-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -o-linear-gradient(top, #6900ea 0%, #5e00d1 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#6900ea), to(#5e00d1)); - background-image: linear-gradient(to bottom, #6900ea 0%, #5e00d1 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0); -} -.panel-success > .panel-heading { - background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); - background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); -} -.panel-info > .panel-heading { - background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); - background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); - background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); -} -.panel-warning > .panel-heading { - background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); - background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); - background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); -} -.panel-danger > .panel-heading { - background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); - background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); -} -.well { - background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); - background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); - background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); - background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); - border-color: #dcdcdc; - -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1); -} diff --git a/docs/_static/bootstrap/css/bootstrap-theme.min.css b/docs/_static/bootstrap/css/bootstrap-theme.min.css deleted file mode 100644 index bf42e23..0000000 --- a/docs/_static/bootstrap/css/bootstrap-theme.min.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - *//*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */.btn-default,.btn-primary,.btn-success,.btn-info,.btn-warning,.btn-danger{text-shadow:0 -1px 0 rgba(0,0,0,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 1px rgba(0,0,0,0.075)}.btn-default:active,.btn-primary:active,.btn-success:active,.btn-info:active,.btn-warning:active,.btn-danger:active,.btn-default.active,.btn-primary.active,.btn-success.active,.btn-info.active,.btn-warning.active,.btn-danger.active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-default.disabled,.btn-primary.disabled,.btn-success.disabled,.btn-info.disabled,.btn-warning.disabled,.btn-danger.disabled,.btn-default[disabled],.btn-primary[disabled],.btn-success[disabled],.btn-info[disabled],.btn-warning[disabled],.btn-danger[disabled],fieldset[disabled] .btn-default,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-info,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-danger{-webkit-box-shadow:none;box-shadow:none}.btn-default .badge,.btn-primary .badge,.btn-success .badge,.btn-info .badge,.btn-warning .badge,.btn-danger .badge{text-shadow:none}.btn:active,.btn.active{background-image:none}.btn-default{background-image:-webkit-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-o-linear-gradient(top, #fff 0, #e0e0e0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#e0e0e0));background-image:linear-gradient(to bottom, #fff 0, #e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#dbdbdb;text-shadow:0 1px 0 #fff;border-color:#ccc}.btn-default:hover,.btn-default:focus{background-color:#e0e0e0;background-position:0 -15px}.btn-default:active,.btn-default.active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top, #6900ea 0, #4e00ad 100%);background-image:-o-linear-gradient(top, #6900ea 0, #4e00ad 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#4e00ad));background-image:linear-gradient(to bottom, #6900ea 0, #4e00ad 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff4e00ad', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#4900a3}.btn-primary:hover,.btn-primary:focus{background-color:#4e00ad;background-position:0 -15px}.btn-primary:active,.btn-primary.active{background-color:#4e00ad;border-color:#4900a3}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#4e00ad;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top, #579e00 0, #356100 100%);background-image:-o-linear-gradient(top, #579e00 0, #356100 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #579e00), to(#356100));background-image:linear-gradient(to bottom, #579e00 0, #356100 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff579e00', endColorstr='#ff356100', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#305700}.btn-success:hover,.btn-success:focus{background-color:#356100;background-position:0 -15px}.btn-success:active,.btn-success.active{background-color:#356100;border-color:#305700}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#356100;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top, #6900ea 0, #4e00ad 100%);background-image:-o-linear-gradient(top, #6900ea 0, #4e00ad 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#4e00ad));background-image:linear-gradient(to bottom, #6900ea 0, #4e00ad 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff4e00ad', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#4900a3}.btn-info:hover,.btn-info:focus{background-color:#4e00ad;background-position:0 -15px}.btn-info:active,.btn-info.active{background-color:#4e00ad;border-color:#4900a3}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#4e00ad;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top, #e8d63c 0, #cebb18 100%);background-image:-o-linear-gradient(top, #e8d63c 0, #cebb18 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8d63c), to(#cebb18));background-image:linear-gradient(to bottom, #e8d63c 0, #cebb18 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8d63c', endColorstr='#ffcebb18', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#c5b317}.btn-warning:hover,.btn-warning:focus{background-color:#cebb18;background-position:0 -15px}.btn-warning:active,.btn-warning.active{background-color:#cebb18;border-color:#c5b317}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#cebb18;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top, #e40434 0, #a80326 100%);background-image:-o-linear-gradient(top, #e40434 0, #a80326 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e40434), to(#a80326));background-image:linear-gradient(to bottom, #e40434 0, #a80326 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe40434', endColorstr='#ffa80326', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);background-repeat:repeat-x;border-color:#9e0324}.btn-danger:hover,.btn-danger:focus{background-color:#a80326;background-position:0 -15px}.btn-danger:active,.btn-danger.active{background-color:#a80326;border-color:#9e0324}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#a80326;background-image:none}.thumbnail,.img-thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-color:#e8e8e8}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{background-image:-webkit-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5e00d1));background-image:linear-gradient(to bottom, #6900ea 0, #5e00d1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0);background-color:#5e00d1}.navbar-default{background-image:-webkit-linear-gradient(top, #fff 0, #f7f7f7 100%);background-image:-o-linear-gradient(top, #fff 0, #f7f7f7 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), to(#f7f7f7));background-image:linear-gradient(to bottom, #fff 0, #f7f7f7 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff7f7f7', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:0;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075);box-shadow:inset 0 1px 0 rgba(255,255,255,0.15),0 1px 5px rgba(0,0,0,0.075)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #dadada 0, #e1e1e1 100%);background-image:-o-linear-gradient(top, #dadada 0, #e1e1e1 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dadada), to(#e1e1e1));background-image:linear-gradient(to bottom, #dadada 0, #e1e1e1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdadada', endColorstr='#ffe1e1e1', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.075);box-shadow:inset 0 3px 9px rgba(0,0,0,0.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,0.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top, #2b2b2b 0, #111 100%);background-image:-o-linear-gradient(top, #2b2b2b 0, #111 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #2b2b2b), to(#111));background-image:linear-gradient(to bottom, #2b2b2b 0, #111 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2b2b2b', endColorstr='#ff111111', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border-radius:0}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.active>a{background-image:-webkit-linear-gradient(top, #000 0, #060606 100%);background-image:-o-linear-gradient(top, #000 0, #060606 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #000), to(#060606));background-image:linear-gradient(to bottom, #000 0, #060606 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff000000', endColorstr='#ff060606', GradientType=0);-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,0.25);box-shadow:inset 0 3px 9px rgba(0,0,0,0.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.navbar-static-top,.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-image:-webkit-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5e00d1));background-image:linear-gradient(to bottom, #6900ea 0, #5e00d1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0)}}.alert{text-shadow:0 1px 0 rgba(255,255,255,0.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05);box-shadow:inset 0 1px 0 rgba(255,255,255,0.25),0 1px 2px rgba(0,0,0,0.05)}.alert-success{background-image:-webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#c8e5bc));background-image:linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #b9def0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#b9def0));background-image:linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#f8efc0));background-image:linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#e7c3c3));background-image:linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #ebebeb 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #ebebeb), to(#f5f5f5));background-image:linear-gradient(to bottom, #ebebeb 0, #f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0)}.progress-bar{background-image:-webkit-linear-gradient(top, #6900ea 0, #5200b7 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5200b7 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5200b7));background-image:linear-gradient(to bottom, #6900ea 0, #5200b7 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5200b7', GradientType=0)}.progress-bar-success{background-image:-webkit-linear-gradient(top, #579e00 0, #3b6b00 100%);background-image:-o-linear-gradient(top, #579e00 0, #3b6b00 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #579e00), to(#3b6b00));background-image:linear-gradient(to bottom, #579e00 0, #3b6b00 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff579e00', endColorstr='#ff3b6b00', GradientType=0)}.progress-bar-info{background-image:-webkit-linear-gradient(top, #6900ea 0, #5200b7 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5200b7 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5200b7));background-image:linear-gradient(to bottom, #6900ea 0, #5200b7 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5200b7', GradientType=0)}.progress-bar-warning{background-image:-webkit-linear-gradient(top, #e8d63c 0, #d8c419 100%);background-image:-o-linear-gradient(top, #e8d63c 0, #d8c419 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8d63c), to(#d8c419));background-image:linear-gradient(to bottom, #e8d63c 0, #d8c419 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8d63c', endColorstr='#ffd8c419', GradientType=0)}.progress-bar-danger{background-image:-webkit-linear-gradient(top, #e40434 0, #b20329 100%);background-image:-o-linear-gradient(top, #e40434 0, #b20329 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e40434), to(#b20329));background-image:linear-gradient(to bottom, #e40434 0, #b20329 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe40434', endColorstr='#ffb20329', GradientType=0)}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.list-group{border-radius:0;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.075);box-shadow:0 1px 2px rgba(0,0,0,0.075)}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{text-shadow:0 -1px 0 #5200b7;background-image:-webkit-linear-gradient(top, #6900ea 0, #5800c4 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5800c4 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5800c4));background-image:linear-gradient(to bottom, #6900ea 0, #5800c4 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5800c4', GradientType=0);border-color:#5800c4}.list-group-item.active .badge,.list-group-item.active:hover .badge,.list-group-item.active:focus .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.05);box-shadow:0 1px 2px rgba(0,0,0,0.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f5f5f5), to(#e8e8e8));background-image:linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0)}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-o-linear-gradient(top, #6900ea 0, #5e00d1 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #6900ea), to(#5e00d1));background-image:linear-gradient(to bottom, #6900ea 0, #5e00d1 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6900ea', endColorstr='#ff5e00d1', GradientType=0)}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-o-linear-gradient(top, #dff0d8 0, #d0e9c6 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #dff0d8), to(#d0e9c6));background-image:linear-gradient(to bottom, #dff0d8 0, #d0e9c6 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0)}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-o-linear-gradient(top, #d9edf7 0, #c4e3f3 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #d9edf7), to(#c4e3f3));background-image:linear-gradient(to bottom, #d9edf7 0, #c4e3f3 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0)}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-o-linear-gradient(top, #fcf8e3 0, #faf2cc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #fcf8e3), to(#faf2cc));background-image:linear-gradient(to bottom, #fcf8e3 0, #faf2cc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0)}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-o-linear-gradient(top, #f2dede 0, #ebcccc 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #f2dede), to(#ebcccc));background-image:linear-gradient(to bottom, #f2dede 0, #ebcccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0)}.well{background-image:-webkit-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-o-linear-gradient(top, #e8e8e8 0, #f5f5f5 100%);background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #e8e8e8), to(#f5f5f5));background-image:linear-gradient(to bottom, #e8e8e8 0, #f5f5f5 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 3px rgba(0,0,0,0.05),0 1px 0 rgba(255,255,255,0.1)} \ No newline at end of file diff --git a/docs/_static/bootstrap/css/bootstrap.css b/docs/_static/bootstrap/css/bootstrap.css deleted file mode 100644 index 2019d0c..0000000 --- a/docs/_static/bootstrap/css/bootstrap.css +++ /dev/null @@ -1,6759 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - */ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ -html { - font-family: sans-serif; - -ms-text-size-adjust: 100%; - -webkit-text-size-adjust: 100%; -} -body { - margin: 0; -} -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -main, -menu, -nav, -section, -summary { - display: block; -} -audio, -canvas, -progress, -video { - display: inline-block; - vertical-align: baseline; -} -audio:not([controls]) { - display: none; - height: 0; -} -[hidden], -template { - display: none; -} -a { - background-color: transparent; -} -a:active, -a:hover { - outline: 0; -} -abbr[title] { - border-bottom: 1px dotted; -} -b, -strong { - font-weight: bold; -} -dfn { - font-style: italic; -} -h1 { - font-size: 2em; - margin: 0.67em 0; -} -mark { - background: #ff0; - color: #000; -} -small { - font-size: 80%; -} -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} -sup { - top: -0.5em; -} -sub { - bottom: -0.25em; -} -img { - border: 0; -} -svg:not(:root) { - overflow: hidden; -} -figure { - margin: 1em 40px; -} -hr { - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; - height: 0; -} -pre { - overflow: auto; -} -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} -button { - overflow: visible; -} -button, -select { - text-transform: none; -} -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} -button[disabled], -html input[disabled] { - cursor: default; -} -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} -input { - line-height: normal; -} -input[type="checkbox"], -input[type="radio"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; - padding: 0; -} -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} -input[type="search"] { - -webkit-appearance: textfield; - -webkit-box-sizing: content-box; - -moz-box-sizing: content-box; - box-sizing: content-box; -} -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} -fieldset { - border: 1px solid #c0c0c0; - margin: 0 2px; - padding: 0.35em 0.625em 0.75em; -} -legend { - border: 0; - padding: 0; -} -textarea { - overflow: auto; -} -optgroup { - font-weight: bold; -} -table { - border-collapse: collapse; - border-spacing: 0; -} -td, -th { - padding: 0; -} -/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ -@media print { - *, - *:before, - *:after { - background: transparent !important; - color: #000 !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - text-shadow: none !important; - } - a, - a:visited { - text-decoration: underline; - } - a[href]:after { - content: " (" attr(href) ")"; - } - abbr[title]:after { - content: " (" attr(title) ")"; - } - a[href^="#"]:after, - a[href^="javascript:"]:after { - content: ""; - } - pre, - blockquote { - border: 1px solid #999; - page-break-inside: avoid; - } - thead { - display: table-header-group; - } - tr, - img { - page-break-inside: avoid; - } - img { - max-width: 100% !important; - } - p, - h2, - h3 { - orphans: 3; - widows: 3; - } - h2, - h3 { - page-break-after: avoid; - } - .navbar { - display: none; - } - .btn > .caret, - .dropup > .btn > .caret { - border-top-color: #000 !important; - } - .label { - border: 1px solid #000; - } - .table { - border-collapse: collapse !important; - } - .table td, - .table th { - background-color: #fff !important; - } - .table-bordered th, - .table-bordered td { - border: 1px solid #ddd !important; - } -} -@font-face { - font-family: 'Glyphicons Halflings'; - src: url('../fonts/glyphicons-halflings-regular.eot'); - src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); -} -.glyphicon { - position: relative; - top: 1px; - display: inline-block; - font-family: 'Glyphicons Halflings'; - font-style: normal; - font-weight: normal; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} -.glyphicon-asterisk:before { - content: "\002a"; -} -.glyphicon-plus:before { - content: "\002b"; -} -.glyphicon-euro:before, -.glyphicon-eur:before { - content: "\20ac"; -} -.glyphicon-minus:before { - content: "\2212"; -} -.glyphicon-cloud:before { - content: "\2601"; -} -.glyphicon-envelope:before { - content: "\2709"; -} -.glyphicon-pencil:before { - content: "\270f"; -} -.glyphicon-glass:before { - content: "\e001"; -} -.glyphicon-music:before { - content: "\e002"; -} -.glyphicon-search:before { - content: "\e003"; -} -.glyphicon-heart:before { - content: "\e005"; -} -.glyphicon-star:before { - content: "\e006"; -} -.glyphicon-star-empty:before { - content: "\e007"; -} -.glyphicon-user:before { - content: "\e008"; -} -.glyphicon-film:before { - content: "\e009"; -} -.glyphicon-th-large:before { - content: "\e010"; -} -.glyphicon-th:before { - content: "\e011"; -} -.glyphicon-th-list:before { - content: "\e012"; -} -.glyphicon-ok:before { - content: "\e013"; -} -.glyphicon-remove:before { - content: "\e014"; -} -.glyphicon-zoom-in:before { - content: "\e015"; -} -.glyphicon-zoom-out:before { - content: "\e016"; -} -.glyphicon-off:before { - content: "\e017"; -} -.glyphicon-signal:before { - content: "\e018"; -} -.glyphicon-cog:before { - content: "\e019"; -} -.glyphicon-trash:before { - content: "\e020"; -} -.glyphicon-home:before { - content: "\e021"; -} -.glyphicon-file:before { - content: "\e022"; -} -.glyphicon-time:before { - content: "\e023"; -} -.glyphicon-road:before { - content: "\e024"; -} -.glyphicon-download-alt:before { - content: "\e025"; -} -.glyphicon-download:before { - content: "\e026"; -} -.glyphicon-upload:before { - content: "\e027"; -} -.glyphicon-inbox:before { - content: "\e028"; -} -.glyphicon-play-circle:before { - content: "\e029"; -} -.glyphicon-repeat:before { - content: "\e030"; -} -.glyphicon-refresh:before { - content: "\e031"; -} -.glyphicon-list-alt:before { - content: "\e032"; -} -.glyphicon-lock:before { - content: "\e033"; -} -.glyphicon-flag:before { - content: "\e034"; -} -.glyphicon-headphones:before { - content: "\e035"; -} -.glyphicon-volume-off:before { - content: "\e036"; -} -.glyphicon-volume-down:before { - content: "\e037"; -} -.glyphicon-volume-up:before { - content: "\e038"; -} -.glyphicon-qrcode:before { - content: "\e039"; -} -.glyphicon-barcode:before { - content: "\e040"; -} -.glyphicon-tag:before { - content: "\e041"; -} -.glyphicon-tags:before { - content: "\e042"; -} -.glyphicon-book:before { - content: "\e043"; -} -.glyphicon-bookmark:before { - content: "\e044"; -} -.glyphicon-print:before { - content: "\e045"; -} -.glyphicon-camera:before { - content: "\e046"; -} -.glyphicon-font:before { - content: "\e047"; -} -.glyphicon-bold:before { - content: "\e048"; -} -.glyphicon-italic:before { - content: "\e049"; -} -.glyphicon-text-height:before { - content: "\e050"; -} -.glyphicon-text-width:before { - content: "\e051"; -} -.glyphicon-align-left:before { - content: "\e052"; -} -.glyphicon-align-center:before { - content: "\e053"; -} -.glyphicon-align-right:before { - content: "\e054"; -} -.glyphicon-align-justify:before { - content: "\e055"; -} -.glyphicon-list:before { - content: "\e056"; -} -.glyphicon-indent-left:before { - content: "\e057"; -} -.glyphicon-indent-right:before { - content: "\e058"; -} -.glyphicon-facetime-video:before { - content: "\e059"; -} -.glyphicon-picture:before { - content: "\e060"; -} -.glyphicon-map-marker:before { - content: "\e062"; -} -.glyphicon-adjust:before { - content: "\e063"; -} -.glyphicon-tint:before { - content: "\e064"; -} -.glyphicon-edit:before { - content: "\e065"; -} -.glyphicon-share:before { - content: "\e066"; -} -.glyphicon-check:before { - content: "\e067"; -} -.glyphicon-move:before { - content: "\e068"; -} -.glyphicon-step-backward:before { - content: "\e069"; -} -.glyphicon-fast-backward:before { - content: "\e070"; -} -.glyphicon-backward:before { - content: "\e071"; -} -.glyphicon-play:before { - content: "\e072"; -} -.glyphicon-pause:before { - content: "\e073"; -} -.glyphicon-stop:before { - content: "\e074"; -} -.glyphicon-forward:before { - content: "\e075"; -} -.glyphicon-fast-forward:before { - content: "\e076"; -} -.glyphicon-step-forward:before { - content: "\e077"; -} -.glyphicon-eject:before { - content: "\e078"; -} -.glyphicon-chevron-left:before { - content: "\e079"; -} -.glyphicon-chevron-right:before { - content: "\e080"; -} -.glyphicon-plus-sign:before { - content: "\e081"; -} -.glyphicon-minus-sign:before { - content: "\e082"; -} -.glyphicon-remove-sign:before { - content: "\e083"; -} -.glyphicon-ok-sign:before { - content: "\e084"; -} -.glyphicon-question-sign:before { - content: "\e085"; -} -.glyphicon-info-sign:before { - content: "\e086"; -} -.glyphicon-screenshot:before { - content: "\e087"; -} -.glyphicon-remove-circle:before { - content: "\e088"; -} -.glyphicon-ok-circle:before { - content: "\e089"; -} -.glyphicon-ban-circle:before { - content: "\e090"; -} -.glyphicon-arrow-left:before { - content: "\e091"; -} -.glyphicon-arrow-right:before { - content: "\e092"; -} -.glyphicon-arrow-up:before { - content: "\e093"; -} -.glyphicon-arrow-down:before { - content: "\e094"; -} -.glyphicon-share-alt:before { - content: "\e095"; -} -.glyphicon-resize-full:before { - content: "\e096"; -} -.glyphicon-resize-small:before { - content: "\e097"; -} -.glyphicon-exclamation-sign:before { - content: "\e101"; -} -.glyphicon-gift:before { - content: "\e102"; -} -.glyphicon-leaf:before { - content: "\e103"; -} -.glyphicon-fire:before { - content: "\e104"; -} -.glyphicon-eye-open:before { - content: "\e105"; -} -.glyphicon-eye-close:before { - content: "\e106"; -} -.glyphicon-warning-sign:before { - content: "\e107"; -} -.glyphicon-plane:before { - content: "\e108"; -} -.glyphicon-calendar:before { - content: "\e109"; -} -.glyphicon-random:before { - content: "\e110"; -} -.glyphicon-comment:before { - content: "\e111"; -} -.glyphicon-magnet:before { - content: "\e112"; -} -.glyphicon-chevron-up:before { - content: "\e113"; -} -.glyphicon-chevron-down:before { - content: "\e114"; -} -.glyphicon-retweet:before { - content: "\e115"; -} -.glyphicon-shopping-cart:before { - content: "\e116"; -} -.glyphicon-folder-close:before { - content: "\e117"; -} -.glyphicon-folder-open:before { - content: "\e118"; -} -.glyphicon-resize-vertical:before { - content: "\e119"; -} -.glyphicon-resize-horizontal:before { - content: "\e120"; -} -.glyphicon-hdd:before { - content: "\e121"; -} -.glyphicon-bullhorn:before { - content: "\e122"; -} -.glyphicon-bell:before { - content: "\e123"; -} -.glyphicon-certificate:before { - content: "\e124"; -} -.glyphicon-thumbs-up:before { - content: "\e125"; -} -.glyphicon-thumbs-down:before { - content: "\e126"; -} -.glyphicon-hand-right:before { - content: "\e127"; -} -.glyphicon-hand-left:before { - content: "\e128"; -} -.glyphicon-hand-up:before { - content: "\e129"; -} -.glyphicon-hand-down:before { - content: "\e130"; -} -.glyphicon-circle-arrow-right:before { - content: "\e131"; -} -.glyphicon-circle-arrow-left:before { - content: "\e132"; -} -.glyphicon-circle-arrow-up:before { - content: "\e133"; -} -.glyphicon-circle-arrow-down:before { - content: "\e134"; -} -.glyphicon-globe:before { - content: "\e135"; -} -.glyphicon-wrench:before { - content: "\e136"; -} -.glyphicon-tasks:before { - content: "\e137"; -} -.glyphicon-filter:before { - content: "\e138"; -} -.glyphicon-briefcase:before { - content: "\e139"; -} -.glyphicon-fullscreen:before { - content: "\e140"; -} -.glyphicon-dashboard:before { - content: "\e141"; -} -.glyphicon-paperclip:before { - content: "\e142"; -} -.glyphicon-heart-empty:before { - content: "\e143"; -} -.glyphicon-link:before { - content: "\e144"; -} -.glyphicon-phone:before { - content: "\e145"; -} -.glyphicon-pushpin:before { - content: "\e146"; -} -.glyphicon-usd:before { - content: "\e148"; -} -.glyphicon-gbp:before { - content: "\e149"; -} -.glyphicon-sort:before { - content: "\e150"; -} -.glyphicon-sort-by-alphabet:before { - content: "\e151"; -} -.glyphicon-sort-by-alphabet-alt:before { - content: "\e152"; -} -.glyphicon-sort-by-order:before { - content: "\e153"; -} -.glyphicon-sort-by-order-alt:before { - content: "\e154"; -} -.glyphicon-sort-by-attributes:before { - content: "\e155"; -} -.glyphicon-sort-by-attributes-alt:before { - content: "\e156"; -} -.glyphicon-unchecked:before { - content: "\e157"; -} -.glyphicon-expand:before { - content: "\e158"; -} -.glyphicon-collapse-down:before { - content: "\e159"; -} -.glyphicon-collapse-up:before { - content: "\e160"; -} -.glyphicon-log-in:before { - content: "\e161"; -} -.glyphicon-flash:before { - content: "\e162"; -} -.glyphicon-log-out:before { - content: "\e163"; -} -.glyphicon-new-window:before { - content: "\e164"; -} -.glyphicon-record:before { - content: "\e165"; -} -.glyphicon-save:before { - content: "\e166"; -} -.glyphicon-open:before { - content: "\e167"; -} -.glyphicon-saved:before { - content: "\e168"; -} -.glyphicon-import:before { - content: "\e169"; -} -.glyphicon-export:before { - content: "\e170"; -} -.glyphicon-send:before { - content: "\e171"; -} -.glyphicon-floppy-disk:before { - content: "\e172"; -} -.glyphicon-floppy-saved:before { - content: "\e173"; -} -.glyphicon-floppy-remove:before { - content: "\e174"; -} -.glyphicon-floppy-save:before { - content: "\e175"; -} -.glyphicon-floppy-open:before { - content: "\e176"; -} -.glyphicon-credit-card:before { - content: "\e177"; -} -.glyphicon-transfer:before { - content: "\e178"; -} -.glyphicon-cutlery:before { - content: "\e179"; -} -.glyphicon-header:before { - content: "\e180"; -} -.glyphicon-compressed:before { - content: "\e181"; -} -.glyphicon-earphone:before { - content: "\e182"; -} -.glyphicon-phone-alt:before { - content: "\e183"; -} -.glyphicon-tower:before { - content: "\e184"; -} -.glyphicon-stats:before { - content: "\e185"; -} -.glyphicon-sd-video:before { - content: "\e186"; -} -.glyphicon-hd-video:before { - content: "\e187"; -} -.glyphicon-subtitles:before { - content: "\e188"; -} -.glyphicon-sound-stereo:before { - content: "\e189"; -} -.glyphicon-sound-dolby:before { - content: "\e190"; -} -.glyphicon-sound-5-1:before { - content: "\e191"; -} -.glyphicon-sound-6-1:before { - content: "\e192"; -} -.glyphicon-sound-7-1:before { - content: "\e193"; -} -.glyphicon-copyright-mark:before { - content: "\e194"; -} -.glyphicon-registration-mark:before { - content: "\e195"; -} -.glyphicon-cloud-download:before { - content: "\e197"; -} -.glyphicon-cloud-upload:before { - content: "\e198"; -} -.glyphicon-tree-conifer:before { - content: "\e199"; -} -.glyphicon-tree-deciduous:before { - content: "\e200"; -} -.glyphicon-cd:before { - content: "\e201"; -} -.glyphicon-save-file:before { - content: "\e202"; -} -.glyphicon-open-file:before { - content: "\e203"; -} -.glyphicon-level-up:before { - content: "\e204"; -} -.glyphicon-copy:before { - content: "\e205"; -} -.glyphicon-paste:before { - content: "\e206"; -} -.glyphicon-alert:before { - content: "\e209"; -} -.glyphicon-equalizer:before { - content: "\e210"; -} -.glyphicon-king:before { - content: "\e211"; -} -.glyphicon-queen:before { - content: "\e212"; -} -.glyphicon-pawn:before { - content: "\e213"; -} -.glyphicon-bishop:before { - content: "\e214"; -} -.glyphicon-knight:before { - content: "\e215"; -} -.glyphicon-baby-formula:before { - content: "\e216"; -} -.glyphicon-tent:before { - content: "\26fa"; -} -.glyphicon-blackboard:before { - content: "\e218"; -} -.glyphicon-bed:before { - content: "\e219"; -} -.glyphicon-apple:before { - content: "\f8ff"; -} -.glyphicon-erase:before { - content: "\e221"; -} -.glyphicon-hourglass:before { - content: "\231b"; -} -.glyphicon-lamp:before { - content: "\e223"; -} -.glyphicon-duplicate:before { - content: "\e224"; -} -.glyphicon-piggy-bank:before { - content: "\e225"; -} -.glyphicon-scissors:before { - content: "\e226"; -} -.glyphicon-bitcoin:before { - content: "\e227"; -} -.glyphicon-btc:before { - content: "\e227"; -} -.glyphicon-xbt:before { - content: "\e227"; -} -.glyphicon-yen:before { - content: "\00a5"; -} -.glyphicon-jpy:before { - content: "\00a5"; -} -.glyphicon-ruble:before { - content: "\20bd"; -} -.glyphicon-rub:before { - content: "\20bd"; -} -.glyphicon-scale:before { - content: "\e230"; -} -.glyphicon-ice-lolly:before { - content: "\e231"; -} -.glyphicon-ice-lolly-tasted:before { - content: "\e232"; -} -.glyphicon-education:before { - content: "\e233"; -} -.glyphicon-option-horizontal:before { - content: "\e234"; -} -.glyphicon-option-vertical:before { - content: "\e235"; -} -.glyphicon-menu-hamburger:before { - content: "\e236"; -} -.glyphicon-modal-window:before { - content: "\e237"; -} -.glyphicon-oil:before { - content: "\e238"; -} -.glyphicon-grain:before { - content: "\e239"; -} -.glyphicon-sunglasses:before { - content: "\e240"; -} -.glyphicon-text-size:before { - content: "\e241"; -} -.glyphicon-text-color:before { - content: "\e242"; -} -.glyphicon-text-background:before { - content: "\e243"; -} -.glyphicon-object-align-top:before { - content: "\e244"; -} -.glyphicon-object-align-bottom:before { - content: "\e245"; -} -.glyphicon-object-align-horizontal:before { - content: "\e246"; -} -.glyphicon-object-align-left:before { - content: "\e247"; -} -.glyphicon-object-align-vertical:before { - content: "\e248"; -} -.glyphicon-object-align-right:before { - content: "\e249"; -} -.glyphicon-triangle-right:before { - content: "\e250"; -} -.glyphicon-triangle-left:before { - content: "\e251"; -} -.glyphicon-triangle-bottom:before { - content: "\e252"; -} -.glyphicon-triangle-top:before { - content: "\e253"; -} -.glyphicon-console:before { - content: "\e254"; -} -.glyphicon-superscript:before { - content: "\e255"; -} -.glyphicon-subscript:before { - content: "\e256"; -} -.glyphicon-menu-left:before { - content: "\e257"; -} -.glyphicon-menu-right:before { - content: "\e258"; -} -.glyphicon-menu-down:before { - content: "\e259"; -} -.glyphicon-menu-up:before { - content: "\e260"; -} -* { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -*:before, -*:after { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -html { - font-size: 10px; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} -body { - font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 16px; - line-height: 1.5; - color: #333333; - background-color: #f7f7f7; -} -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} -a { - color: #6900ea; - text-decoration: none; -} -a:hover, -a:focus { - color: #47009e; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -figure { - margin: 0; -} -img { - vertical-align: middle; -} -.img-responsive, -.thumbnail > img, -.thumbnail a > img, -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - display: block; - max-width: 100%; - height: auto; -} -.img-rounded { - border-radius: 0px; -} -.img-thumbnail { - padding: 4px; - line-height: 1.5; - background-color: #f7f7f7; - border: 1px solid #dddddd; - border-radius: 0px; - -webkit-transition: all 0.2s ease-in-out; - -o-transition: all 0.2s ease-in-out; - transition: all 0.2s ease-in-out; - display: inline-block; - max-width: 100%; - height: auto; -} -.img-circle { - border-radius: 50%; -} -hr { - margin-top: 24px; - margin-bottom: 24px; - border: 0; - border-top: 1px solid #ffffff; -} -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} -.sr-only-focusable:active, -.sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} -[role="button"] { - cursor: pointer; -} -h1, -h2, -h3, -h4, -h5, -h6, -.h1, -.h2, -.h3, -.h4, -.h5, -.h6 { - font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 600; - line-height: 1.1; - color: #333333; -} -h1 small, -h2 small, -h3 small, -h4 small, -h5 small, -h6 small, -.h1 small, -.h2 small, -.h3 small, -.h4 small, -.h5 small, -.h6 small, -h1 .small, -h2 .small, -h3 .small, -h4 .small, -h5 .small, -h6 .small, -.h1 .small, -.h2 .small, -.h3 .small, -.h4 .small, -.h5 .small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #888888; -} -h1, -.h1, -h2, -.h2, -h3, -.h3 { - margin-top: 24px; - margin-bottom: 12px; -} -h1 small, -.h1 small, -h2 small, -.h2 small, -h3 small, -.h3 small, -h1 .small, -.h1 .small, -h2 .small, -.h2 .small, -h3 .small, -.h3 .small { - font-size: 65%; -} -h4, -.h4, -h5, -.h5, -h6, -.h6 { - margin-top: 12px; - margin-bottom: 12px; -} -h4 small, -.h4 small, -h5 small, -.h5 small, -h6 small, -.h6 small, -h4 .small, -.h4 .small, -h5 .small, -.h5 .small, -h6 .small, -.h6 .small { - font-size: 75%; -} -h1, -.h1 { - font-size: 41px; -} -h2, -.h2 { - font-size: 34px; -} -h3, -.h3 { - font-size: 28px; -} -h4, -.h4 { - font-size: 20px; -} -h5, -.h5 { - font-size: 16px; -} -h6, -.h6 { - font-size: 14px; -} -p { - margin: 0 0 12px; -} -.lead { - margin-bottom: 24px; - font-size: 18px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 24px; - } -} -small, -.small { - font-size: 87%; -} -mark, -.mark { - background-color: #fcf8e3; - padding: .2em; -} -.text-left { - text-align: left; -} -.text-right { - text-align: right; -} -.text-center { - text-align: center; -} -.text-justify { - text-align: justify; -} -.text-nowrap { - white-space: nowrap; -} -.text-lowercase { - text-transform: lowercase; -} -.text-uppercase { - text-transform: uppercase; -} -.text-capitalize { - text-transform: capitalize; -} -.text-muted { - color: #888888; -} -.text-primary { - color: #6900ea; -} -a.text-primary:hover, -a.text-primary:focus { - color: #5200b7; -} -.text-success { - color: #3c763d; -} -a.text-success:hover, -a.text-success:focus { - color: #2b542c; -} -.text-info { - color: #31708f; -} -a.text-info:hover, -a.text-info:focus { - color: #245269; -} -.text-warning { - color: #8a6d3b; -} -a.text-warning:hover, -a.text-warning:focus { - color: #66512c; -} -.text-danger { - color: #a94442; -} -a.text-danger:hover, -a.text-danger:focus { - color: #843534; -} -.bg-primary { - color: #fff; - background-color: #6900ea; -} -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #5200b7; -} -.bg-success { - background-color: #dff0d8; -} -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} -.bg-info { - background-color: #d9edf7; -} -a.bg-info:hover, -a.bg-info:focus { - background-color: #afd9ee; -} -.bg-warning { - background-color: #fcf8e3; -} -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #f7ecb5; -} -.bg-danger { - background-color: #f2dede; -} -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #e4b9b9; -} -.page-header { - padding-bottom: 11px; - margin: 48px 0 24px; - border-bottom: 1px solid #ffffff; -} -ul, -ol { - margin-top: 0; - margin-bottom: 12px; -} -ul ul, -ol ul, -ul ol, -ol ol { - margin-bottom: 0; -} -.list-unstyled { - padding-left: 0; - list-style: none; -} -.list-inline { - padding-left: 0; - list-style: none; - margin-left: -5px; -} -.list-inline > li { - display: inline-block; - padding-left: 5px; - padding-right: 5px; -} -dl { - margin-top: 0; - margin-bottom: 24px; -} -dt, -dd { - line-height: 1.5; -} -dt { - font-weight: bold; -} -dd { - margin-left: 0; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #888888; -} -.initialism { - font-size: 90%; - text-transform: uppercase; -} -blockquote { - padding: 12px 24px; - margin: 0 0 24px; - font-size: 20px; - border-left: 5px solid #ffffff; -} -blockquote p:last-child, -blockquote ul:last-child, -blockquote ol:last-child { - margin-bottom: 0; -} -blockquote footer, -blockquote small, -blockquote .small { - display: block; - font-size: 80%; - line-height: 1.5; - color: #888888; -} -blockquote footer:before, -blockquote small:before, -blockquote .small:before { - content: '\2014 \00A0'; -} -.blockquote-reverse, -blockquote.pull-right { - padding-right: 15px; - padding-left: 0; - border-right: 5px solid #ffffff; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -blockquote.pull-right footer:before, -.blockquote-reverse small:before, -blockquote.pull-right small:before, -.blockquote-reverse .small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -blockquote.pull-right footer:after, -.blockquote-reverse small:after, -blockquote.pull-right small:after, -.blockquote-reverse .small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} -address { - margin-bottom: 24px; - font-style: normal; - line-height: 1.5; -} -code, -kbd, -pre, -samp { - font-family: "Fira Code", monospace; -} -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 0px; -} -kbd { - padding: 2px 4px; - font-size: 90%; - color: #ffffff; - background-color: #333333; - border-radius: 0px; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - -webkit-box-shadow: none; - box-shadow: none; -} -pre { - display: block; - padding: 11.5px; - margin: 0 0 12px; - font-size: 15px; - line-height: 1.5; - word-break: break-all; - word-wrap: break-word; - color: #444444; - background-color: #f5f5f5; - border: 1px solid #cccccc; - border-radius: 0px; -} -pre code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; -} -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} -.container { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1030px; - } -} -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.row { - margin-left: -15px; - margin-right: -15px; -} -.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { - position: relative; - min-height: 1px; - padding-left: 15px; - padding-right: 15px; -} -.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { - float: left; -} -.col-xs-12 { - width: 100%; -} -.col-xs-11 { - width: 91.66666667%; -} -.col-xs-10 { - width: 83.33333333%; -} -.col-xs-9 { - width: 75%; -} -.col-xs-8 { - width: 66.66666667%; -} -.col-xs-7 { - width: 58.33333333%; -} -.col-xs-6 { - width: 50%; -} -.col-xs-5 { - width: 41.66666667%; -} -.col-xs-4 { - width: 33.33333333%; -} -.col-xs-3 { - width: 25%; -} -.col-xs-2 { - width: 16.66666667%; -} -.col-xs-1 { - width: 8.33333333%; -} -.col-xs-pull-12 { - right: 100%; -} -.col-xs-pull-11 { - right: 91.66666667%; -} -.col-xs-pull-10 { - right: 83.33333333%; -} -.col-xs-pull-9 { - right: 75%; -} -.col-xs-pull-8 { - right: 66.66666667%; -} -.col-xs-pull-7 { - right: 58.33333333%; -} -.col-xs-pull-6 { - right: 50%; -} -.col-xs-pull-5 { - right: 41.66666667%; -} -.col-xs-pull-4 { - right: 33.33333333%; -} -.col-xs-pull-3 { - right: 25%; -} -.col-xs-pull-2 { - right: 16.66666667%; -} -.col-xs-pull-1 { - right: 8.33333333%; -} -.col-xs-pull-0 { - right: auto; -} -.col-xs-push-12 { - left: 100%; -} -.col-xs-push-11 { - left: 91.66666667%; -} -.col-xs-push-10 { - left: 83.33333333%; -} -.col-xs-push-9 { - left: 75%; -} -.col-xs-push-8 { - left: 66.66666667%; -} -.col-xs-push-7 { - left: 58.33333333%; -} -.col-xs-push-6 { - left: 50%; -} -.col-xs-push-5 { - left: 41.66666667%; -} -.col-xs-push-4 { - left: 33.33333333%; -} -.col-xs-push-3 { - left: 25%; -} -.col-xs-push-2 { - left: 16.66666667%; -} -.col-xs-push-1 { - left: 8.33333333%; -} -.col-xs-push-0 { - left: auto; -} -.col-xs-offset-12 { - margin-left: 100%; -} -.col-xs-offset-11 { - margin-left: 91.66666667%; -} -.col-xs-offset-10 { - margin-left: 83.33333333%; -} -.col-xs-offset-9 { - margin-left: 75%; -} -.col-xs-offset-8 { - margin-left: 66.66666667%; -} -.col-xs-offset-7 { - margin-left: 58.33333333%; -} -.col-xs-offset-6 { - margin-left: 50%; -} -.col-xs-offset-5 { - margin-left: 41.66666667%; -} -.col-xs-offset-4 { - margin-left: 33.33333333%; -} -.col-xs-offset-3 { - margin-left: 25%; -} -.col-xs-offset-2 { - margin-left: 16.66666667%; -} -.col-xs-offset-1 { - margin-left: 8.33333333%; -} -.col-xs-offset-0 { - margin-left: 0%; -} -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - .col-sm-12 { - width: 100%; - } - .col-sm-11 { - width: 91.66666667%; - } - .col-sm-10 { - width: 83.33333333%; - } - .col-sm-9 { - width: 75%; - } - .col-sm-8 { - width: 66.66666667%; - } - .col-sm-7 { - width: 58.33333333%; - } - .col-sm-6 { - width: 50%; - } - .col-sm-5 { - width: 41.66666667%; - } - .col-sm-4 { - width: 33.33333333%; - } - .col-sm-3 { - width: 25%; - } - .col-sm-2 { - width: 16.66666667%; - } - .col-sm-1 { - width: 8.33333333%; - } - .col-sm-pull-12 { - right: 100%; - } - .col-sm-pull-11 { - right: 91.66666667%; - } - .col-sm-pull-10 { - right: 83.33333333%; - } - .col-sm-pull-9 { - right: 75%; - } - .col-sm-pull-8 { - right: 66.66666667%; - } - .col-sm-pull-7 { - right: 58.33333333%; - } - .col-sm-pull-6 { - right: 50%; - } - .col-sm-pull-5 { - right: 41.66666667%; - } - .col-sm-pull-4 { - right: 33.33333333%; - } - .col-sm-pull-3 { - right: 25%; - } - .col-sm-pull-2 { - right: 16.66666667%; - } - .col-sm-pull-1 { - right: 8.33333333%; - } - .col-sm-pull-0 { - right: auto; - } - .col-sm-push-12 { - left: 100%; - } - .col-sm-push-11 { - left: 91.66666667%; - } - .col-sm-push-10 { - left: 83.33333333%; - } - .col-sm-push-9 { - left: 75%; - } - .col-sm-push-8 { - left: 66.66666667%; - } - .col-sm-push-7 { - left: 58.33333333%; - } - .col-sm-push-6 { - left: 50%; - } - .col-sm-push-5 { - left: 41.66666667%; - } - .col-sm-push-4 { - left: 33.33333333%; - } - .col-sm-push-3 { - left: 25%; - } - .col-sm-push-2 { - left: 16.66666667%; - } - .col-sm-push-1 { - left: 8.33333333%; - } - .col-sm-push-0 { - left: auto; - } - .col-sm-offset-12 { - margin-left: 100%; - } - .col-sm-offset-11 { - margin-left: 91.66666667%; - } - .col-sm-offset-10 { - margin-left: 83.33333333%; - } - .col-sm-offset-9 { - margin-left: 75%; - } - .col-sm-offset-8 { - margin-left: 66.66666667%; - } - .col-sm-offset-7 { - margin-left: 58.33333333%; - } - .col-sm-offset-6 { - margin-left: 50%; - } - .col-sm-offset-5 { - margin-left: 41.66666667%; - } - .col-sm-offset-4 { - margin-left: 33.33333333%; - } - .col-sm-offset-3 { - margin-left: 25%; - } - .col-sm-offset-2 { - margin-left: 16.66666667%; - } - .col-sm-offset-1 { - margin-left: 8.33333333%; - } - .col-sm-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - .col-md-12 { - width: 100%; - } - .col-md-11 { - width: 91.66666667%; - } - .col-md-10 { - width: 83.33333333%; - } - .col-md-9 { - width: 75%; - } - .col-md-8 { - width: 66.66666667%; - } - .col-md-7 { - width: 58.33333333%; - } - .col-md-6 { - width: 50%; - } - .col-md-5 { - width: 41.66666667%; - } - .col-md-4 { - width: 33.33333333%; - } - .col-md-3 { - width: 25%; - } - .col-md-2 { - width: 16.66666667%; - } - .col-md-1 { - width: 8.33333333%; - } - .col-md-pull-12 { - right: 100%; - } - .col-md-pull-11 { - right: 91.66666667%; - } - .col-md-pull-10 { - right: 83.33333333%; - } - .col-md-pull-9 { - right: 75%; - } - .col-md-pull-8 { - right: 66.66666667%; - } - .col-md-pull-7 { - right: 58.33333333%; - } - .col-md-pull-6 { - right: 50%; - } - .col-md-pull-5 { - right: 41.66666667%; - } - .col-md-pull-4 { - right: 33.33333333%; - } - .col-md-pull-3 { - right: 25%; - } - .col-md-pull-2 { - right: 16.66666667%; - } - .col-md-pull-1 { - right: 8.33333333%; - } - .col-md-pull-0 { - right: auto; - } - .col-md-push-12 { - left: 100%; - } - .col-md-push-11 { - left: 91.66666667%; - } - .col-md-push-10 { - left: 83.33333333%; - } - .col-md-push-9 { - left: 75%; - } - .col-md-push-8 { - left: 66.66666667%; - } - .col-md-push-7 { - left: 58.33333333%; - } - .col-md-push-6 { - left: 50%; - } - .col-md-push-5 { - left: 41.66666667%; - } - .col-md-push-4 { - left: 33.33333333%; - } - .col-md-push-3 { - left: 25%; - } - .col-md-push-2 { - left: 16.66666667%; - } - .col-md-push-1 { - left: 8.33333333%; - } - .col-md-push-0 { - left: auto; - } - .col-md-offset-12 { - margin-left: 100%; - } - .col-md-offset-11 { - margin-left: 91.66666667%; - } - .col-md-offset-10 { - margin-left: 83.33333333%; - } - .col-md-offset-9 { - margin-left: 75%; - } - .col-md-offset-8 { - margin-left: 66.66666667%; - } - .col-md-offset-7 { - margin-left: 58.33333333%; - } - .col-md-offset-6 { - margin-left: 50%; - } - .col-md-offset-5 { - margin-left: 41.66666667%; - } - .col-md-offset-4 { - margin-left: 33.33333333%; - } - .col-md-offset-3 { - margin-left: 25%; - } - .col-md-offset-2 { - margin-left: 16.66666667%; - } - .col-md-offset-1 { - margin-left: 8.33333333%; - } - .col-md-offset-0 { - margin-left: 0%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - .col-lg-12 { - width: 100%; - } - .col-lg-11 { - width: 91.66666667%; - } - .col-lg-10 { - width: 83.33333333%; - } - .col-lg-9 { - width: 75%; - } - .col-lg-8 { - width: 66.66666667%; - } - .col-lg-7 { - width: 58.33333333%; - } - .col-lg-6 { - width: 50%; - } - .col-lg-5 { - width: 41.66666667%; - } - .col-lg-4 { - width: 33.33333333%; - } - .col-lg-3 { - width: 25%; - } - .col-lg-2 { - width: 16.66666667%; - } - .col-lg-1 { - width: 8.33333333%; - } - .col-lg-pull-12 { - right: 100%; - } - .col-lg-pull-11 { - right: 91.66666667%; - } - .col-lg-pull-10 { - right: 83.33333333%; - } - .col-lg-pull-9 { - right: 75%; - } - .col-lg-pull-8 { - right: 66.66666667%; - } - .col-lg-pull-7 { - right: 58.33333333%; - } - .col-lg-pull-6 { - right: 50%; - } - .col-lg-pull-5 { - right: 41.66666667%; - } - .col-lg-pull-4 { - right: 33.33333333%; - } - .col-lg-pull-3 { - right: 25%; - } - .col-lg-pull-2 { - right: 16.66666667%; - } - .col-lg-pull-1 { - right: 8.33333333%; - } - .col-lg-pull-0 { - right: auto; - } - .col-lg-push-12 { - left: 100%; - } - .col-lg-push-11 { - left: 91.66666667%; - } - .col-lg-push-10 { - left: 83.33333333%; - } - .col-lg-push-9 { - left: 75%; - } - .col-lg-push-8 { - left: 66.66666667%; - } - .col-lg-push-7 { - left: 58.33333333%; - } - .col-lg-push-6 { - left: 50%; - } - .col-lg-push-5 { - left: 41.66666667%; - } - .col-lg-push-4 { - left: 33.33333333%; - } - .col-lg-push-3 { - left: 25%; - } - .col-lg-push-2 { - left: 16.66666667%; - } - .col-lg-push-1 { - left: 8.33333333%; - } - .col-lg-push-0 { - left: auto; - } - .col-lg-offset-12 { - margin-left: 100%; - } - .col-lg-offset-11 { - margin-left: 91.66666667%; - } - .col-lg-offset-10 { - margin-left: 83.33333333%; - } - .col-lg-offset-9 { - margin-left: 75%; - } - .col-lg-offset-8 { - margin-left: 66.66666667%; - } - .col-lg-offset-7 { - margin-left: 58.33333333%; - } - .col-lg-offset-6 { - margin-left: 50%; - } - .col-lg-offset-5 { - margin-left: 41.66666667%; - } - .col-lg-offset-4 { - margin-left: 33.33333333%; - } - .col-lg-offset-3 { - margin-left: 25%; - } - .col-lg-offset-2 { - margin-left: 16.66666667%; - } - .col-lg-offset-1 { - margin-left: 8.33333333%; - } - .col-lg-offset-0 { - margin-left: 0%; - } -} -table { - background-color: transparent; -} -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #888888; - text-align: left; -} -th { - text-align: left; -} -.table { - width: 100%; - max-width: 100%; - margin-bottom: 24px; -} -.table > thead > tr > th, -.table > tbody > tr > th, -.table > tfoot > tr > th, -.table > thead > tr > td, -.table > tbody > tr > td, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.5; - vertical-align: top; - border-top: 1px solid #dddddd; -} -.table > thead > tr > th { - vertical-align: bottom; - border-bottom: 2px solid #dddddd; -} -.table > caption + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > th, -.table > thead:first-child > tr:first-child > th, -.table > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #dddddd; -} -.table .table { - background-color: #f7f7f7; -} -.table-condensed > thead > tr > th, -.table-condensed > tbody > tr > th, -.table-condensed > tfoot > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > td { - padding: 5px; -} -.table-bordered { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > tbody > tr > th, -.table-bordered > tfoot > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > td { - border: 1px solid #dddddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td { - border-bottom-width: 2px; -} -.table-striped > tbody > tr:nth-of-type(odd) { - background-color: #f9f9f9; -} -.table-hover > tbody > tr:hover { - background-color: #f5f5f5; -} -table col[class*="col-"] { - position: static; - float: none; - display: table-column; -} -table td[class*="col-"], -table th[class*="col-"] { - position: static; - float: none; - display: table-cell; -} -.table > thead > tr > td.active, -.table > tbody > tr > td.active, -.table > tfoot > tr > td.active, -.table > thead > tr > th.active, -.table > tbody > tr > th.active, -.table > tfoot > tr > th.active, -.table > thead > tr.active > td, -.table > tbody > tr.active > td, -.table > tfoot > tr.active > td, -.table > thead > tr.active > th, -.table > tbody > tr.active > th, -.table > tfoot > tr.active > th { - background-color: #f5f5f5; -} -.table-hover > tbody > tr > td.active:hover, -.table-hover > tbody > tr > th.active:hover, -.table-hover > tbody > tr.active:hover > td, -.table-hover > tbody > tr:hover > .active, -.table-hover > tbody > tr.active:hover > th { - background-color: #e8e8e8; -} -.table > thead > tr > td.success, -.table > tbody > tr > td.success, -.table > tfoot > tr > td.success, -.table > thead > tr > th.success, -.table > tbody > tr > th.success, -.table > tfoot > tr > th.success, -.table > thead > tr.success > td, -.table > tbody > tr.success > td, -.table > tfoot > tr.success > td, -.table > thead > tr.success > th, -.table > tbody > tr.success > th, -.table > tfoot > tr.success > th { - background-color: #dff0d8; -} -.table-hover > tbody > tr > td.success:hover, -.table-hover > tbody > tr > th.success:hover, -.table-hover > tbody > tr.success:hover > td, -.table-hover > tbody > tr:hover > .success, -.table-hover > tbody > tr.success:hover > th { - background-color: #d0e9c6; -} -.table > thead > tr > td.info, -.table > tbody > tr > td.info, -.table > tfoot > tr > td.info, -.table > thead > tr > th.info, -.table > tbody > tr > th.info, -.table > tfoot > tr > th.info, -.table > thead > tr.info > td, -.table > tbody > tr.info > td, -.table > tfoot > tr.info > td, -.table > thead > tr.info > th, -.table > tbody > tr.info > th, -.table > tfoot > tr.info > th { - background-color: #d9edf7; -} -.table-hover > tbody > tr > td.info:hover, -.table-hover > tbody > tr > th.info:hover, -.table-hover > tbody > tr.info:hover > td, -.table-hover > tbody > tr:hover > .info, -.table-hover > tbody > tr.info:hover > th { - background-color: #c4e3f3; -} -.table > thead > tr > td.warning, -.table > tbody > tr > td.warning, -.table > tfoot > tr > td.warning, -.table > thead > tr > th.warning, -.table > tbody > tr > th.warning, -.table > tfoot > tr > th.warning, -.table > thead > tr.warning > td, -.table > tbody > tr.warning > td, -.table > tfoot > tr.warning > td, -.table > thead > tr.warning > th, -.table > tbody > tr.warning > th, -.table > tfoot > tr.warning > th { - background-color: #fcf8e3; -} -.table-hover > tbody > tr > td.warning:hover, -.table-hover > tbody > tr > th.warning:hover, -.table-hover > tbody > tr.warning:hover > td, -.table-hover > tbody > tr:hover > .warning, -.table-hover > tbody > tr.warning:hover > th { - background-color: #faf2cc; -} -.table > thead > tr > td.danger, -.table > tbody > tr > td.danger, -.table > tfoot > tr > td.danger, -.table > thead > tr > th.danger, -.table > tbody > tr > th.danger, -.table > tfoot > tr > th.danger, -.table > thead > tr.danger > td, -.table > tbody > tr.danger > td, -.table > tfoot > tr.danger > td, -.table > thead > tr.danger > th, -.table > tbody > tr.danger > th, -.table > tfoot > tr.danger > th { - background-color: #f2dede; -} -.table-hover > tbody > tr > td.danger:hover, -.table-hover > tbody > tr > th.danger:hover, -.table-hover > tbody > tr.danger:hover > td, -.table-hover > tbody > tr:hover > .danger, -.table-hover > tbody > tr.danger:hover > th { - background-color: #ebcccc; -} -.table-responsive { - overflow-x: auto; - min-height: 0.01%; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 18px; - overflow-y: hidden; - -ms-overflow-style: -ms-autohiding-scrollbar; - border: 1px solid #dddddd; - } - .table-responsive > .table { - margin-bottom: 0; - } - .table-responsive > .table > thead > tr > th, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tfoot > tr > th, - .table-responsive > .table > thead > tr > td, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > td { - white-space: nowrap; - } - .table-responsive > .table-bordered { - border: 0; - } - .table-responsive > .table-bordered > thead > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tfoot > tr > th:first-child, - .table-responsive > .table-bordered > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; - } - .table-responsive > .table-bordered > thead > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tfoot > tr > th:last-child, - .table-responsive > .table-bordered > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; - } - .table-responsive > .table-bordered > tbody > tr:last-child > th, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .table-responsive > .table-bordered > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > td { - border-bottom: 0; - } -} -fieldset { - padding: 0; - margin: 0; - border: 0; - min-width: 0; -} -legend { - display: block; - width: 100%; - padding: 0; - margin-bottom: 24px; - font-size: 24px; - line-height: inherit; - color: #444444; - border: 0; - border-bottom: 1px solid #e5e5e5; -} -label { - display: inline-block; - max-width: 100%; - margin-bottom: 5px; - font-weight: bold; -} -input[type="search"] { - -webkit-box-sizing: border-box; - -moz-box-sizing: border-box; - box-sizing: border-box; -} -input[type="radio"], -input[type="checkbox"] { - margin: 4px 0 0; - margin-top: 1px \9; - line-height: normal; -} -input[type="file"] { - display: block; -} -input[type="range"] { - display: block; - width: 100%; -} -select[multiple], -select[size] { - height: auto; -} -input[type="file"]:focus, -input[type="radio"]:focus, -input[type="checkbox"]:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -output { - display: block; - padding-top: 7px; - font-size: 16px; - line-height: 1.5; - color: #666666; -} -.form-control { - display: block; - width: 100%; - height: 38px; - padding: 6px 12px; - font-size: 16px; - line-height: 1.5; - color: #666666; - background-color: none; - background-image: none; - border: 1px solid #111111; - border-radius: 0px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; - -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} -.form-control:focus { - border-color: #6900ea; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(105, 0, 234, 0.6); - box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(105, 0, 234, 0.6); -} -.form-control::-moz-placeholder { - color: #999999; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #999999; -} -.form-control::-webkit-input-placeholder { - color: #999999; -} -.form-control::-ms-expand { - border: 0; - background-color: transparent; -} -.form-control[disabled], -.form-control[readonly], -fieldset[disabled] .form-control { - background-color: #ffffff; - opacity: 1; -} -.form-control[disabled], -fieldset[disabled] .form-control { - cursor: not-allowed; -} -textarea.form-control { - height: auto; -} -input[type="search"] { - -webkit-appearance: none; -} -@media screen and (-webkit-min-device-pixel-ratio: 0) { - input[type="date"].form-control, - input[type="time"].form-control, - input[type="datetime-local"].form-control, - input[type="month"].form-control { - line-height: 38px; - } - input[type="date"].input-sm, - input[type="time"].input-sm, - input[type="datetime-local"].input-sm, - input[type="month"].input-sm, - .input-group-sm input[type="date"], - .input-group-sm input[type="time"], - .input-group-sm input[type="datetime-local"], - .input-group-sm input[type="month"] { - line-height: 33px; - } - input[type="date"].input-lg, - input[type="time"].input-lg, - input[type="datetime-local"].input-lg, - input[type="month"].input-lg, - .input-group-lg input[type="date"], - .input-group-lg input[type="time"], - .input-group-lg input[type="datetime-local"], - .input-group-lg input[type="month"] { - line-height: 49px; - } -} -.form-group { - margin-bottom: 15px; -} -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 24px; - padding-left: 20px; - margin-bottom: 0; - font-weight: normal; - cursor: pointer; -} -.radio input[type="radio"], -.radio-inline input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: absolute; - margin-left: -20px; - margin-top: 4px \9; -} -.radio + .radio, -.checkbox + .checkbox { - margin-top: -5px; -} -.radio-inline, -.checkbox-inline { - position: relative; - display: inline-block; - padding-left: 20px; - margin-bottom: 0; - vertical-align: middle; - font-weight: normal; - cursor: pointer; -} -.radio-inline + .radio-inline, -.checkbox-inline + .checkbox-inline { - margin-top: 0; - margin-left: 10px; -} -input[type="radio"][disabled], -input[type="checkbox"][disabled], -input[type="radio"].disabled, -input[type="checkbox"].disabled, -fieldset[disabled] input[type="radio"], -fieldset[disabled] input[type="checkbox"] { - cursor: not-allowed; -} -.radio-inline.disabled, -.checkbox-inline.disabled, -fieldset[disabled] .radio-inline, -fieldset[disabled] .checkbox-inline { - cursor: not-allowed; -} -.radio.disabled label, -.checkbox.disabled label, -fieldset[disabled] .radio label, -fieldset[disabled] .checkbox label { - cursor: not-allowed; -} -.form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; - min-height: 40px; -} -.form-control-static.input-lg, -.form-control-static.input-sm { - padding-left: 0; - padding-right: 0; -} -.input-sm { - height: 33px; - padding: 5px 10px; - font-size: 14px; - line-height: 1.5; - border-radius: 0px; -} -select.input-sm { - height: 33px; - line-height: 33px; -} -textarea.input-sm, -select[multiple].input-sm { - height: auto; -} -.form-group-sm .form-control { - height: 33px; - padding: 5px 10px; - font-size: 14px; - line-height: 1.5; - border-radius: 0px; -} -.form-group-sm select.form-control { - height: 33px; - line-height: 33px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 33px; - min-height: 38px; - padding: 6px 10px; - font-size: 14px; - line-height: 1.5; -} -.input-lg { - height: 49px; - padding: 10px 16px; - font-size: 20px; - line-height: 1.3333333; - border-radius: 0px; -} -select.input-lg { - height: 49px; - line-height: 49px; -} -textarea.input-lg, -select[multiple].input-lg { - height: auto; -} -.form-group-lg .form-control { - height: 49px; - padding: 10px 16px; - font-size: 20px; - line-height: 1.3333333; - border-radius: 0px; -} -.form-group-lg select.form-control { - height: 49px; - line-height: 49px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 49px; - min-height: 44px; - padding: 11px 16px; - font-size: 20px; - line-height: 1.3333333; -} -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 47.5px; -} -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 38px; - height: 38px; - line-height: 38px; - text-align: center; - pointer-events: none; -} -.input-lg + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 49px; - height: 49px; - line-height: 49px; -} -.input-sm + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 33px; - height: 33px; - line-height: 33px; -} -.has-success .help-block, -.has-success .control-label, -.has-success .radio, -.has-success .checkbox, -.has-success .radio-inline, -.has-success .checkbox-inline, -.has-success.radio label, -.has-success.checkbox label, -.has-success.radio-inline label, -.has-success.checkbox-inline label { - color: #3c763d; -} -.has-success .form-control { - border-color: #3c763d; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-success .form-control:focus { - border-color: #2b542c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; -} -.has-success .input-group-addon { - color: #3c763d; - border-color: #3c763d; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #3c763d; -} -.has-warning .help-block, -.has-warning .control-label, -.has-warning .radio, -.has-warning .checkbox, -.has-warning .radio-inline, -.has-warning .checkbox-inline, -.has-warning.radio label, -.has-warning.checkbox label, -.has-warning.radio-inline label, -.has-warning.checkbox-inline label { - color: #8a6d3b; -} -.has-warning .form-control { - border-color: #8a6d3b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-warning .form-control:focus { - border-color: #66512c; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; -} -.has-warning .input-group-addon { - color: #8a6d3b; - border-color: #8a6d3b; - background-color: #fcf8e3; -} -.has-warning .form-control-feedback { - color: #8a6d3b; -} -.has-error .help-block, -.has-error .control-label, -.has-error .radio, -.has-error .checkbox, -.has-error .radio-inline, -.has-error .checkbox-inline, -.has-error.radio label, -.has-error.checkbox label, -.has-error.radio-inline label, -.has-error.checkbox-inline label { - color: #a94442; -} -.has-error .form-control { - border-color: #a94442; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -} -.has-error .form-control:focus { - border-color: #843534; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; -} -.has-error .input-group-addon { - color: #a94442; - border-color: #a94442; - background-color: #f2dede; -} -.has-error .form-control-feedback { - color: #a94442; -} -.has-feedback label ~ .form-control-feedback { - top: 29px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #737373; -} -@media (min-width: 768px) { - .form-inline .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-static { - display: inline-block; - } - .form-inline .input-group { - display: inline-table; - vertical-align: middle; - } - .form-inline .input-group .input-group-addon, - .form-inline .input-group .input-group-btn, - .form-inline .input-group .form-control { - width: auto; - } - .form-inline .input-group > .form-control { - width: 100%; - } - .form-inline .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio, - .form-inline .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .form-inline .radio label, - .form-inline .checkbox label { - padding-left: 0; - } - .form-inline .radio input[type="radio"], - .form-inline .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .form-inline .has-feedback .form-control-feedback { - top: 0; - } -} -.form-horizontal .radio, -.form-horizontal .checkbox, -.form-horizontal .radio-inline, -.form-horizontal .checkbox-inline { - margin-top: 0; - margin-bottom: 0; - padding-top: 7px; -} -.form-horizontal .radio, -.form-horizontal .checkbox { - min-height: 31px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 20px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 14px; - } -} -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - -ms-touch-action: manipulation; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 12px; - font-size: 16px; - line-height: 1.5; - border-radius: 0px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, -.btn:active:focus, -.btn.active:focus, -.btn.focus, -.btn:active.focus, -.btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, -.btn:focus, -.btn.focus { - color: #333333; - text-decoration: none; -} -.btn:active, -.btn.active { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn.disabled, -.btn[disabled], -fieldset[disabled] .btn { - cursor: not-allowed; - opacity: 0.65; - filter: alpha(opacity=65); - -webkit-box-shadow: none; - box-shadow: none; -} -a.btn.disabled, -fieldset[disabled] a.btn { - pointer-events: none; -} -.btn-default { - color: #333333; - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default:focus, -.btn-default.focus { - color: #333333; - background-color: #e6e6e6; - border-color: #8c8c8c; -} -.btn-default:hover { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - color: #333333; - background-color: #e6e6e6; - border-color: #adadad; -} -.btn-default:active:hover, -.btn-default.active:hover, -.open > .dropdown-toggle.btn-default:hover, -.btn-default:active:focus, -.btn-default.active:focus, -.open > .dropdown-toggle.btn-default:focus, -.btn-default:active.focus, -.btn-default.active.focus, -.open > .dropdown-toggle.btn-default.focus { - color: #333333; - background-color: #d4d4d4; - border-color: #8c8c8c; -} -.btn-default:active, -.btn-default.active, -.open > .dropdown-toggle.btn-default { - background-image: none; -} -.btn-default.disabled:hover, -.btn-default[disabled]:hover, -fieldset[disabled] .btn-default:hover, -.btn-default.disabled:focus, -.btn-default[disabled]:focus, -fieldset[disabled] .btn-default:focus, -.btn-default.disabled.focus, -.btn-default[disabled].focus, -fieldset[disabled] .btn-default.focus { - background-color: #ffffff; - border-color: #cccccc; -} -.btn-default .badge { - color: #ffffff; - background-color: #333333; -} -.btn-primary { - color: #ffffff; - background-color: #6900ea; - border-color: #5e00d1; -} -.btn-primary:focus, -.btn-primary.focus { - color: #ffffff; - background-color: #5200b7; - border-color: #240051; -} -.btn-primary:hover { - color: #ffffff; - background-color: #5200b7; - border-color: #420093; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - color: #ffffff; - background-color: #5200b7; - border-color: #420093; -} -.btn-primary:active:hover, -.btn-primary.active:hover, -.open > .dropdown-toggle.btn-primary:hover, -.btn-primary:active:focus, -.btn-primary.active:focus, -.open > .dropdown-toggle.btn-primary:focus, -.btn-primary:active.focus, -.btn-primary.active.focus, -.open > .dropdown-toggle.btn-primary.focus { - color: #ffffff; - background-color: #420093; - border-color: #240051; -} -.btn-primary:active, -.btn-primary.active, -.open > .dropdown-toggle.btn-primary { - background-image: none; -} -.btn-primary.disabled:hover, -.btn-primary[disabled]:hover, -fieldset[disabled] .btn-primary:hover, -.btn-primary.disabled:focus, -.btn-primary[disabled]:focus, -fieldset[disabled] .btn-primary:focus, -.btn-primary.disabled.focus, -.btn-primary[disabled].focus, -fieldset[disabled] .btn-primary.focus { - background-color: #6900ea; - border-color: #5e00d1; -} -.btn-primary .badge { - color: #6900ea; - background-color: #ffffff; -} -.btn-success { - color: #ffffff; - background-color: #579e00; - border-color: #498500; -} -.btn-success:focus, -.btn-success.focus { - color: #ffffff; - background-color: #3b6b00; - border-color: #030500; -} -.btn-success:hover { - color: #ffffff; - background-color: #3b6b00; - border-color: #274700; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - color: #ffffff; - background-color: #3b6b00; - border-color: #274700; -} -.btn-success:active:hover, -.btn-success.active:hover, -.open > .dropdown-toggle.btn-success:hover, -.btn-success:active:focus, -.btn-success.active:focus, -.open > .dropdown-toggle.btn-success:focus, -.btn-success:active.focus, -.btn-success.active.focus, -.open > .dropdown-toggle.btn-success.focus { - color: #ffffff; - background-color: #274700; - border-color: #030500; -} -.btn-success:active, -.btn-success.active, -.open > .dropdown-toggle.btn-success { - background-image: none; -} -.btn-success.disabled:hover, -.btn-success[disabled]:hover, -fieldset[disabled] .btn-success:hover, -.btn-success.disabled:focus, -.btn-success[disabled]:focus, -fieldset[disabled] .btn-success:focus, -.btn-success.disabled.focus, -.btn-success[disabled].focus, -fieldset[disabled] .btn-success.focus { - background-color: #579e00; - border-color: #498500; -} -.btn-success .badge { - color: #579e00; - background-color: #ffffff; -} -.btn-info { - color: #ffffff; - background-color: #6900ea; - border-color: #5e00d1; -} -.btn-info:focus, -.btn-info.focus { - color: #ffffff; - background-color: #5200b7; - border-color: #240051; -} -.btn-info:hover { - color: #ffffff; - background-color: #5200b7; - border-color: #420093; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - color: #ffffff; - background-color: #5200b7; - border-color: #420093; -} -.btn-info:active:hover, -.btn-info.active:hover, -.open > .dropdown-toggle.btn-info:hover, -.btn-info:active:focus, -.btn-info.active:focus, -.open > .dropdown-toggle.btn-info:focus, -.btn-info:active.focus, -.btn-info.active.focus, -.open > .dropdown-toggle.btn-info.focus { - color: #ffffff; - background-color: #420093; - border-color: #240051; -} -.btn-info:active, -.btn-info.active, -.open > .dropdown-toggle.btn-info { - background-image: none; -} -.btn-info.disabled:hover, -.btn-info[disabled]:hover, -fieldset[disabled] .btn-info:hover, -.btn-info.disabled:focus, -.btn-info[disabled]:focus, -fieldset[disabled] .btn-info:focus, -.btn-info.disabled.focus, -.btn-info[disabled].focus, -fieldset[disabled] .btn-info.focus { - background-color: #6900ea; - border-color: #5e00d1; -} -.btn-info .badge { - color: #6900ea; - background-color: #ffffff; -} -.btn-warning { - color: #ffffff; - background-color: #e8d63c; - border-color: #e5d125; -} -.btn-warning:focus, -.btn-warning.focus { - color: #ffffff; - background-color: #d8c419; - border-color: #7c710f; -} -.btn-warning:hover { - color: #ffffff; - background-color: #d8c419; - border-color: #b8a716; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - color: #ffffff; - background-color: #d8c419; - border-color: #b8a716; -} -.btn-warning:active:hover, -.btn-warning.active:hover, -.open > .dropdown-toggle.btn-warning:hover, -.btn-warning:active:focus, -.btn-warning.active:focus, -.open > .dropdown-toggle.btn-warning:focus, -.btn-warning:active.focus, -.btn-warning.active.focus, -.open > .dropdown-toggle.btn-warning.focus { - color: #ffffff; - background-color: #b8a716; - border-color: #7c710f; -} -.btn-warning:active, -.btn-warning.active, -.open > .dropdown-toggle.btn-warning { - background-image: none; -} -.btn-warning.disabled:hover, -.btn-warning[disabled]:hover, -fieldset[disabled] .btn-warning:hover, -.btn-warning.disabled:focus, -.btn-warning[disabled]:focus, -fieldset[disabled] .btn-warning:focus, -.btn-warning.disabled.focus, -.btn-warning[disabled].focus, -fieldset[disabled] .btn-warning.focus { - background-color: #e8d63c; - border-color: #e5d125; -} -.btn-warning .badge { - color: #e8d63c; - background-color: #ffffff; -} -.btn-danger { - color: #ffffff; - background-color: #e40434; - border-color: #cb042e; -} -.btn-danger:focus, -.btn-danger.focus { - color: #ffffff; - background-color: #b20329; - border-color: #4e0112; -} -.btn-danger:hover { - color: #ffffff; - background-color: #b20329; - border-color: #8f0321; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - color: #ffffff; - background-color: #b20329; - border-color: #8f0321; -} -.btn-danger:active:hover, -.btn-danger.active:hover, -.open > .dropdown-toggle.btn-danger:hover, -.btn-danger:active:focus, -.btn-danger.active:focus, -.open > .dropdown-toggle.btn-danger:focus, -.btn-danger:active.focus, -.btn-danger.active.focus, -.open > .dropdown-toggle.btn-danger.focus { - color: #ffffff; - background-color: #8f0321; - border-color: #4e0112; -} -.btn-danger:active, -.btn-danger.active, -.open > .dropdown-toggle.btn-danger { - background-image: none; -} -.btn-danger.disabled:hover, -.btn-danger[disabled]:hover, -fieldset[disabled] .btn-danger:hover, -.btn-danger.disabled:focus, -.btn-danger[disabled]:focus, -fieldset[disabled] .btn-danger:focus, -.btn-danger.disabled.focus, -.btn-danger[disabled].focus, -fieldset[disabled] .btn-danger.focus { - background-color: #e40434; - border-color: #cb042e; -} -.btn-danger .badge { - color: #e40434; - background-color: #ffffff; -} -.btn-link { - color: #6900ea; - font-weight: normal; - border-radius: 0; -} -.btn-link, -.btn-link:active, -.btn-link.active, -.btn-link[disabled], -fieldset[disabled] .btn-link { - background-color: transparent; - -webkit-box-shadow: none; - box-shadow: none; -} -.btn-link, -.btn-link:hover, -.btn-link:focus, -.btn-link:active { - border-color: transparent; -} -.btn-link:hover, -.btn-link:focus { - color: #47009e; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, -fieldset[disabled] .btn-link:hover, -.btn-link[disabled]:focus, -fieldset[disabled] .btn-link:focus { - color: #888888; - text-decoration: none; -} -.btn-lg, -.btn-group-lg > .btn { - padding: 10px 16px; - font-size: 20px; - line-height: 1.3333333; - border-radius: 0px; -} -.btn-sm, -.btn-group-sm > .btn { - padding: 5px 10px; - font-size: 14px; - line-height: 1.5; - border-radius: 0px; -} -.btn-xs, -.btn-group-xs > .btn { - padding: 1px 5px; - font-size: 14px; - line-height: 1.5; - border-radius: 0px; -} -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 5px; -} -input[type="submit"].btn-block, -input[type="reset"].btn-block, -input[type="button"].btn-block { - width: 100%; -} -.fade { - opacity: 0; - -webkit-transition: opacity 0.15s linear; - -o-transition: opacity 0.15s linear; - transition: opacity 0.15s linear; -} -.fade.in { - opacity: 1; -} -.collapse { - display: none; -} -.collapse.in { - display: block; -} -tr.collapse.in { - display: table-row; -} -tbody.collapse.in { - display: table-row-group; -} -.collapsing { - position: relative; - height: 0; - overflow: hidden; - -webkit-transition-property: height, visibility; - -o-transition-property: height, visibility; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - -o-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - -o-transition-timing-function: ease; - transition-timing-function: ease; -} -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} -.dropup, -.dropdown { - position: relative; -} -.dropdown-toggle:focus { - outline: 0; -} -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 160px; - padding: 5px 0; - margin: 2px 0 0; - list-style: none; - font-size: 16px; - text-align: left; - background-color: #ffffff; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - -webkit-background-clip: padding-box; - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 11px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.5; - color: #444444; - white-space: nowrap; -} -.dropdown-menu > li > a:hover, -.dropdown-menu > li > a:focus { - text-decoration: none; - color: #373737; - background-color: #f5f5f5; -} -.dropdown-menu > .active > a, -.dropdown-menu > .active > a:hover, -.dropdown-menu > .active > a:focus { - color: #ffffff; - text-decoration: none; - outline: 0; - background-color: #6900ea; -} -.dropdown-menu > .disabled > a, -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - color: #888888; -} -.dropdown-menu > .disabled > a:hover, -.dropdown-menu > .disabled > a:focus { - text-decoration: none; - background-color: transparent; - background-image: none; - filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); - cursor: not-allowed; -} -.open > .dropdown-menu { - display: block; -} -.open > a { - outline: 0; -} -.dropdown-menu-right { - left: auto; - right: 0; -} -.dropdown-menu-left { - left: 0; - right: auto; -} -.dropdown-header { - display: block; - padding: 3px 20px; - font-size: 14px; - line-height: 1.5; - color: #888888; - white-space: nowrap; -} -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; - content: ""; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - left: auto; - right: 0; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-block; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - float: left; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover, -.btn-group > .btn:focus, -.btn-group-vertical > .btn:focus, -.btn-group > .btn:active, -.btn-group-vertical > .btn:active, -.btn-group > .btn.active, -.btn-group-vertical > .btn.active { - z-index: 2; -} -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: -1px; -} -.btn-toolbar { - margin-left: -5px; -} -.btn-toolbar .btn, -.btn-toolbar .btn-group, -.btn-toolbar .input-group { - float: left; -} -.btn-toolbar > .btn, -.btn-toolbar > .btn-group, -.btn-toolbar > .input-group { - margin-left: 5px; -} -.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; -} -.btn-group > .btn:first-child { - margin-left: 0; -} -.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn:last-child:not(:first-child), -.btn-group > .dropdown-toggle:not(:first-child) { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group > .btn-group { - float: left; -} -.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.btn-group .dropdown-toggle:active, -.btn-group.open .dropdown-toggle { - outline: 0; -} -.btn-group > .btn + .dropdown-toggle { - padding-left: 8px; - padding-right: 8px; -} -.btn-group > .btn-lg + .dropdown-toggle { - padding-left: 12px; - padding-right: 12px; -} -.btn-group.open .dropdown-toggle { - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.btn-group.open .dropdown-toggle.btn-link { - -webkit-box-shadow: none; - box-shadow: none; -} -.btn .caret { - margin-left: 0; -} -.btn-lg .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} -.dropup .btn-lg .caret { - border-width: 0 5px 5px; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group, -.btn-group-vertical > .btn-group > .btn { - display: block; - float: none; - width: 100%; - max-width: 100%; -} -.btn-group-vertical > .btn-group > .btn { - float: none; -} -.btn-group-vertical > .btn + .btn, -.btn-group-vertical > .btn + .btn-group, -.btn-group-vertical > .btn-group + .btn, -.btn-group-vertical > .btn-group + .btn-group { - margin-top: -1px; - margin-left: 0; -} -.btn-group-vertical > .btn:not(:first-child):not(:last-child) { - border-radius: 0; -} -.btn-group-vertical > .btn:first-child:not(:last-child) { - border-top-right-radius: 0px; - border-top-left-radius: 0px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:last-child:not(:first-child) { - border-top-right-radius: 0; - border-top-left-radius: 0; - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; -} -.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { - border-radius: 0; -} -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, -.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; -} -.btn-group-justified > .btn, -.btn-group-justified > .btn-group { - float: none; - display: table-cell; - width: 1%; -} -.btn-group-justified > .btn-group .btn { - width: 100%; -} -.btn-group-justified > .btn-group .dropdown-menu { - left: auto; -} -[data-toggle="buttons"] > .btn input[type="radio"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[data-toggle="buttons"] > .btn input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} -.input-group { - position: relative; - display: table; - border-collapse: separate; -} -.input-group[class*="col-"] { - float: none; - padding-left: 0; - padding-right: 0; -} -.input-group .form-control { - position: relative; - z-index: 2; - float: left; - width: 100%; - margin-bottom: 0; -} -.input-group .form-control:focus { - z-index: 3; -} -.input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 49px; - padding: 10px 16px; - font-size: 20px; - line-height: 1.3333333; - border-radius: 0px; -} -select.input-group-lg > .form-control, -select.input-group-lg > .input-group-addon, -select.input-group-lg > .input-group-btn > .btn { - height: 49px; - line-height: 49px; -} -textarea.input-group-lg > .form-control, -textarea.input-group-lg > .input-group-addon, -textarea.input-group-lg > .input-group-btn > .btn, -select[multiple].input-group-lg > .form-control, -select[multiple].input-group-lg > .input-group-addon, -select[multiple].input-group-lg > .input-group-btn > .btn { - height: auto; -} -.input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 33px; - padding: 5px 10px; - font-size: 14px; - line-height: 1.5; - border-radius: 0px; -} -select.input-group-sm > .form-control, -select.input-group-sm > .input-group-addon, -select.input-group-sm > .input-group-btn > .btn { - height: 33px; - line-height: 33px; -} -textarea.input-group-sm > .form-control, -textarea.input-group-sm > .input-group-addon, -textarea.input-group-sm > .input-group-btn > .btn, -select[multiple].input-group-sm > .form-control, -select[multiple].input-group-sm > .input-group-addon, -select[multiple].input-group-sm > .input-group-btn > .btn { - height: auto; -} -.input-group-addon, -.input-group-btn, -.input-group .form-control { - display: table-cell; -} -.input-group-addon:not(:first-child):not(:last-child), -.input-group-btn:not(:first-child):not(:last-child), -.input-group .form-control:not(:first-child):not(:last-child) { - border-radius: 0; -} -.input-group-addon, -.input-group-btn { - width: 1%; - white-space: nowrap; - vertical-align: middle; -} -.input-group-addon { - padding: 6px 12px; - font-size: 16px; - font-weight: normal; - line-height: 1; - color: #666666; - text-align: center; - background-color: #ffffff; - border: 1px solid #111111; - border-radius: 0px; -} -.input-group-addon.input-sm { - padding: 5px 10px; - font-size: 14px; - border-radius: 0px; -} -.input-group-addon.input-lg { - padding: 10px 16px; - font-size: 20px; - border-radius: 0px; -} -.input-group-addon input[type="radio"], -.input-group-addon input[type="checkbox"] { - margin-top: 0; -} -.input-group .form-control:first-child, -.input-group-addon:first-child, -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group > .btn, -.input-group-btn:first-child > .dropdown-toggle, -.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-top-right-radius: 0; -} -.input-group-addon:first-child { - border-right: 0; -} -.input-group .form-control:last-child, -.input-group-addon:last-child, -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group > .btn, -.input-group-btn:last-child > .dropdown-toggle, -.input-group-btn:first-child > .btn:not(:first-child), -.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { - border-bottom-left-radius: 0; - border-top-left-radius: 0; -} -.input-group-addon:last-child { - border-left: 0; -} -.input-group-btn { - position: relative; - font-size: 0; - white-space: nowrap; -} -.input-group-btn > .btn { - position: relative; -} -.input-group-btn > .btn + .btn { - margin-left: -1px; -} -.input-group-btn > .btn:hover, -.input-group-btn > .btn:focus, -.input-group-btn > .btn:active { - z-index: 2; -} -.input-group-btn:first-child > .btn, -.input-group-btn:first-child > .btn-group { - margin-right: -1px; -} -.input-group-btn:last-child > .btn, -.input-group-btn:last-child > .btn-group { - z-index: 2; - margin-left: -1px; -} -.nav { - margin-bottom: 0; - padding-left: 0; - list-style: none; -} -.nav > li { - position: relative; - display: block; -} -.nav > li > a { - position: relative; - display: block; - padding: 10px 15px; -} -.nav > li > a:hover, -.nav > li > a:focus { - text-decoration: none; - background-color: #ffffff; -} -.nav > li.disabled > a { - color: #888888; -} -.nav > li.disabled > a:hover, -.nav > li.disabled > a:focus { - color: #888888; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open > a, -.nav .open > a:hover, -.nav .open > a:focus { - background-color: #ffffff; - border-color: #6900ea; -} -.nav .nav-divider { - height: 1px; - margin: 11px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} -.nav-tabs { - border-bottom: 1px solid #dddddd; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.5; - border: 1px solid transparent; - border-radius: 0px 0px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #ffffff #ffffff #dddddd; -} -.nav-tabs > li.active > a, -.nav-tabs > li.active > a:hover, -.nav-tabs > li.active > a:focus { - color: #666666; - background-color: #f7f7f7; - border: 1px solid #dddddd; - border-bottom-color: transparent; - cursor: default; -} -.nav-tabs.nav-justified { - width: 100%; - border-bottom: 0; -} -.nav-tabs.nav-justified > li { - float: none; -} -.nav-tabs.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-tabs.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 0px; -} -.nav-tabs.nav-justified > .active > a, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid #dddddd; -} -@media (min-width: 768px) { - .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid #dddddd; - border-radius: 0px 0px 0 0; - } - .nav-tabs.nav-justified > .active > a, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #f7f7f7; - } -} -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 0px; -} -.nav-pills > li + li { - margin-left: 2px; -} -.nav-pills > li.active > a, -.nav-pills > li.active > a:hover, -.nav-pills > li.active > a:focus { - color: #ffffff; - background-color: #6900ea; -} -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} -.nav-justified { - width: 100%; -} -.nav-justified > li { - float: none; -} -.nav-justified > li > a { - text-align: center; - margin-bottom: 5px; -} -.nav-justified > .dropdown .dropdown-menu { - top: auto; - left: auto; -} -@media (min-width: 768px) { - .nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a { - margin-bottom: 0; - } -} -.nav-tabs-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a { - margin-right: 0; - border-radius: 0px; -} -.nav-tabs-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus { - border: 1px solid #dddddd; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a { - border-bottom: 1px solid #dddddd; - border-radius: 0px 0px 0 0; - } - .nav-tabs-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus { - border-bottom-color: #f7f7f7; - } -} -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar { - position: relative; - min-height: 50px; - margin-bottom: 24px; - border: 1px solid transparent; -} -@media (min-width: 768px) { - .navbar { - border-radius: 0px; - } -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} -.navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-collapse.collapse { - display: block !important; - height: auto !important; - padding-bottom: 0; - overflow: visible !important; - } - .navbar-collapse.in { - overflow-y: visible; - } - .navbar-fixed-top .navbar-collapse, - .navbar-static-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - padding-left: 0; - padding-right: 0; - } -} -.navbar-fixed-top .navbar-collapse, -.navbar-fixed-bottom .navbar-collapse { - max-height: 340px; -} -@media (max-device-width: 480px) and (orientation: landscape) { - .navbar-fixed-top .navbar-collapse, - .navbar-fixed-bottom .navbar-collapse { - max-height: 200px; - } -} -.container > .navbar-header, -.container-fluid > .navbar-header, -.container > .navbar-collapse, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container-fluid > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-collapse { - margin-right: 0; - margin-left: 0; - } -} -.navbar-static-top { - z-index: 1000; - border-width: 0 0 1px; -} -@media (min-width: 768px) { - .navbar-static-top { - border-radius: 0; - } -} -.navbar-fixed-top, -.navbar-fixed-bottom { - position: fixed; - right: 0; - left: 0; - z-index: 1030; -} -@media (min-width: 768px) { - .navbar-fixed-top, - .navbar-fixed-bottom { - border-radius: 0; - } -} -.navbar-fixed-top { - top: 0; - border-width: 0 0 1px; -} -.navbar-fixed-bottom { - bottom: 0; - margin-bottom: 0; - border-width: 1px 0 0; -} -.navbar-brand { - float: left; - padding: 13px 15px; - font-size: 20px; - line-height: 24px; - height: 50px; -} -.navbar-brand:hover, -.navbar-brand:focus { - text-decoration: none; -} -.navbar-brand > img { - display: block; -} -@media (min-width: 768px) { - .navbar > .container .navbar-brand, - .navbar > .container-fluid .navbar-brand { - margin-left: -15px; - } -} -.navbar-toggle { - position: relative; - float: right; - margin-right: 15px; - padding: 9px 10px; - margin-top: 8px; - margin-bottom: 8px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 0px; -} -.navbar-toggle:focus { - outline: 0; -} -.navbar-toggle .icon-bar { - display: block; - width: 22px; - height: 2px; - border-radius: 1px; -} -.navbar-toggle .icon-bar + .icon-bar { - margin-top: 4px; -} -@media (min-width: 768px) { - .navbar-toggle { - display: none; - } -} -.navbar-nav { - margin: 6.5px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 24px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - -webkit-box-shadow: none; - box-shadow: none; - } - .navbar-nav .open .dropdown-menu > li > a, - .navbar-nav .open .dropdown-menu .dropdown-header { - padding: 5px 15px 5px 25px; - } - .navbar-nav .open .dropdown-menu > li > a { - line-height: 24px; - } - .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-nav .open .dropdown-menu > li > a:focus { - background-image: none; - } -} -@media (min-width: 768px) { - .navbar-nav { - float: left; - margin: 0; - } - .navbar-nav > li { - float: left; - } - .navbar-nav > li > a { - padding-top: 13px; - padding-bottom: 13px; - } -} -.navbar-form { - margin-left: -15px; - margin-right: -15px; - padding: 10px 15px; - border-top: 1px solid transparent; - border-bottom: 1px solid transparent; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); - margin-top: 6px; - margin-bottom: 6px; -} -@media (min-width: 768px) { - .navbar-form .form-group { - display: inline-block; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .navbar-form .form-control-static { - display: inline-block; - } - .navbar-form .input-group { - display: inline-table; - vertical-align: middle; - } - .navbar-form .input-group .input-group-addon, - .navbar-form .input-group .input-group-btn, - .navbar-form .input-group .form-control { - width: auto; - } - .navbar-form .input-group > .form-control { - width: 100%; - } - .navbar-form .control-label { - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio, - .navbar-form .checkbox { - display: inline-block; - margin-top: 0; - margin-bottom: 0; - vertical-align: middle; - } - .navbar-form .radio label, - .navbar-form .checkbox label { - padding-left: 0; - } - .navbar-form .radio input[type="radio"], - .navbar-form .checkbox input[type="checkbox"] { - position: relative; - margin-left: 0; - } - .navbar-form .has-feedback .form-control-feedback { - top: 0; - } -} -@media (max-width: 767px) { - .navbar-form .form-group { - margin-bottom: 5px; - } - .navbar-form .form-group:last-child { - margin-bottom: 0; - } -} -@media (min-width: 768px) { - .navbar-form { - width: auto; - border: 0; - margin-left: 0; - margin-right: 0; - padding-top: 0; - padding-bottom: 0; - -webkit-box-shadow: none; - box-shadow: none; - } -} -.navbar-nav > li > .dropdown-menu { - margin-top: 0; - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { - margin-bottom: 0; - border-top-right-radius: 0px; - border-top-left-radius: 0px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.navbar-btn { - margin-top: 6px; - margin-bottom: 6px; -} -.navbar-btn.btn-sm { - margin-top: 8.5px; - margin-bottom: 8.5px; -} -.navbar-btn.btn-xs { - margin-top: 14px; - margin-bottom: 14px; -} -.navbar-text { - margin-top: 13px; - margin-bottom: 13px; -} -@media (min-width: 768px) { - .navbar-text { - float: left; - margin-left: 15px; - margin-right: 15px; - } -} -@media (min-width: 768px) { - .navbar-left { - float: left !important; - } - .navbar-right { - float: right !important; - margin-right: -15px; - } - .navbar-right ~ .navbar-right { - margin-right: 0; - } -} -.navbar-default { - background-color: #f7f7f7; - border-color: #e6e6e6; -} -.navbar-default .navbar-brand { - color: #777777; -} -.navbar-default .navbar-brand:hover, -.navbar-default .navbar-brand:focus { - color: #5e5e5e; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #111111; -} -.navbar-default .navbar-nav > li > a { - color: #777777; -} -.navbar-default .navbar-nav > li > a:hover, -.navbar-default .navbar-nav > li > a:focus { - color: #333333; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, -.navbar-default .navbar-nav > .active > a:hover, -.navbar-default .navbar-nav > .active > a:focus { - color: #555555; - background-color: #e6e6e6; -} -.navbar-default .navbar-nav > .disabled > a, -.navbar-default .navbar-nav > .disabled > a:hover, -.navbar-default .navbar-nav > .disabled > a:focus { - color: #cccccc; - background-color: transparent; -} -.navbar-default .navbar-toggle { - border-color: #dddddd; -} -.navbar-default .navbar-toggle:hover, -.navbar-default .navbar-toggle:focus { - background-color: #dddddd; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: #888888; -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: #e6e6e6; -} -.navbar-default .navbar-nav > .open > a, -.navbar-default .navbar-nav > .open > a:hover, -.navbar-default .navbar-nav > .open > a:focus { - background-color: #e6e6e6; - color: #555555; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #777777; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #333333; - background-color: transparent; - } - .navbar-default .navbar-nav .open .dropdown-menu > .active > a, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #555555; - background-color: #e6e6e6; - } - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #cccccc; - background-color: transparent; - } -} -.navbar-default .navbar-link { - color: #777777; -} -.navbar-default .navbar-link:hover { - color: #333333; -} -.navbar-default .btn-link { - color: #777777; -} -.navbar-default .btn-link:hover, -.navbar-default .btn-link:focus { - color: #333333; -} -.navbar-default .btn-link[disabled]:hover, -fieldset[disabled] .navbar-default .btn-link:hover, -.navbar-default .btn-link[disabled]:focus, -fieldset[disabled] .navbar-default .btn-link:focus { - color: #cccccc; -} -.navbar-inverse { - background-color: #111111; - border-color: #000000; -} -.navbar-inverse .navbar-brand { - color: #aeaeae; -} -.navbar-inverse .navbar-brand:hover, -.navbar-inverse .navbar-brand:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #f7f7f7; -} -.navbar-inverse .navbar-nav > li > a { - color: #aeaeae; -} -.navbar-inverse .navbar-nav > li > a:hover, -.navbar-inverse .navbar-nav > li > a:focus { - color: #ffffff; - background-color: transparent; -} -.navbar-inverse .navbar-nav > .active > a, -.navbar-inverse .navbar-nav > .active > a:hover, -.navbar-inverse .navbar-nav > .active > a:focus { - color: #ffffff; - background-color: #000000; -} -.navbar-inverse .navbar-nav > .disabled > a, -.navbar-inverse .navbar-nav > .disabled > a:hover, -.navbar-inverse .navbar-nav > .disabled > a:focus { - color: #444444; - background-color: transparent; -} -.navbar-inverse .navbar-toggle { - border-color: #333333; -} -.navbar-inverse .navbar-toggle:hover, -.navbar-inverse .navbar-toggle:focus { - background-color: #333333; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: #ffffff; -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #000000; -} -.navbar-inverse .navbar-nav > .open > a, -.navbar-inverse .navbar-nav > .open > a:hover, -.navbar-inverse .navbar-nav > .open > a:focus { - background-color: #000000; - color: #ffffff; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: #000000; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: #000000; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #aeaeae; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { - color: #ffffff; - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { - color: #ffffff; - background-color: #000000; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, - .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { - color: #444444; - background-color: transparent; - } -} -.navbar-inverse .navbar-link { - color: #aeaeae; -} -.navbar-inverse .navbar-link:hover { - color: #ffffff; -} -.navbar-inverse .btn-link { - color: #aeaeae; -} -.navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link:focus { - color: #ffffff; -} -.navbar-inverse .btn-link[disabled]:hover, -fieldset[disabled] .navbar-inverse .btn-link:hover, -.navbar-inverse .btn-link[disabled]:focus, -fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444444; -} -.breadcrumb { - padding: 8px 15px; - margin-bottom: 24px; - list-style: none; - background-color: #f5f5f5; - border-radius: 0px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - content: "/\00a0"; - padding: 0 5px; - color: #cccccc; -} -.breadcrumb > .active { - color: #888888; -} -.pagination { - display: inline-block; - padding-left: 0; - margin: 24px 0; - border-radius: 0px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 12px; - line-height: 1.5; - text-decoration: none; - color: #6900ea; - background-color: #ffffff; - border: 1px solid #dddddd; - margin-left: -1px; -} -.pagination > li:first-child > a, -.pagination > li:first-child > span { - margin-left: 0; - border-bottom-left-radius: 0px; - border-top-left-radius: 0px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-bottom-right-radius: 0px; - border-top-right-radius: 0px; -} -.pagination > li > a:hover, -.pagination > li > span:hover, -.pagination > li > a:focus, -.pagination > li > span:focus { - z-index: 2; - color: #47009e; - background-color: #ffffff; - border-color: #dddddd; -} -.pagination > .active > a, -.pagination > .active > span, -.pagination > .active > a:hover, -.pagination > .active > span:hover, -.pagination > .active > a:focus, -.pagination > .active > span:focus { - z-index: 3; - color: #ffffff; - background-color: #6900ea; - border-color: #6900ea; - cursor: default; -} -.pagination > .disabled > span, -.pagination > .disabled > span:hover, -.pagination > .disabled > span:focus, -.pagination > .disabled > a, -.pagination > .disabled > a:hover, -.pagination > .disabled > a:focus { - color: #888888; - background-color: #ffffff; - border-color: #dddddd; - cursor: not-allowed; -} -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 20px; - line-height: 1.3333333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-bottom-left-radius: 0px; - border-top-left-radius: 0px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-bottom-right-radius: 0px; - border-top-right-radius: 0px; -} -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 14px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-bottom-left-radius: 0px; - border-top-left-radius: 0px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-bottom-right-radius: 0px; - border-top-right-radius: 0px; -} -.pager { - padding-left: 0; - margin: 24px 0; - list-style: none; - text-align: center; -} -.pager li { - display: inline; -} -.pager li > a, -.pager li > span { - display: inline-block; - padding: 5px 14px; - background-color: #ffffff; - border: 1px solid #dddddd; - border-radius: 15px; -} -.pager li > a:hover, -.pager li > a:focus { - text-decoration: none; - background-color: #ffffff; -} -.pager .next > a, -.pager .next > span { - float: right; -} -.pager .previous > a, -.pager .previous > span { - float: left; -} -.pager .disabled > a, -.pager .disabled > a:hover, -.pager .disabled > a:focus, -.pager .disabled > span { - color: #888888; - background-color: #ffffff; - cursor: not-allowed; -} -.label { - display: inline; - padding: .2em .6em .3em; - font-size: 75%; - font-weight: bold; - line-height: 1; - color: #ffffff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: .25em; -} -a.label:hover, -a.label:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} -.label-default { - background-color: #888888; -} -.label-default[href]:hover, -.label-default[href]:focus { - background-color: #6f6f6f; -} -.label-primary { - background-color: #6900ea; -} -.label-primary[href]:hover, -.label-primary[href]:focus { - background-color: #5200b7; -} -.label-success { - background-color: #579e00; -} -.label-success[href]:hover, -.label-success[href]:focus { - background-color: #3b6b00; -} -.label-info { - background-color: #6900ea; -} -.label-info[href]:hover, -.label-info[href]:focus { - background-color: #5200b7; -} -.label-warning { - background-color: #e8d63c; -} -.label-warning[href]:hover, -.label-warning[href]:focus { - background-color: #d8c419; -} -.label-danger { - background-color: #e40434; -} -.label-danger[href]:hover, -.label-danger[href]:focus { - background-color: #b20329; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 14px; - font-weight: bold; - color: #ffffff; - line-height: 1; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: #888888; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, -.btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -a.badge:hover, -a.badge:focus { - color: #ffffff; - text-decoration: none; - cursor: pointer; -} -.list-group-item.active > .badge, -.nav-pills > .active > a > .badge { - color: #6900ea; - background-color: #ffffff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #ffffff; -} -.jumbotron h1, -.jumbotron .h1 { - color: inherit; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 24px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #e6e6e6; -} -.container .jumbotron, -.container-fluid .jumbotron { - border-radius: 0px; - padding-left: 15px; - padding-right: 15px; -} -.jumbotron .container { - max-width: 100%; -} -@media screen and (min-width: 768px) { - .jumbotron { - padding-top: 48px; - padding-bottom: 48px; - } - .container .jumbotron, - .container-fluid .jumbotron { - padding-left: 60px; - padding-right: 60px; - } - .jumbotron h1, - .jumbotron .h1 { - font-size: 72px; - } -} -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 24px; - line-height: 1.5; - background-color: #f7f7f7; - border: 1px solid #dddddd; - border-radius: 0px; - -webkit-transition: border 0.2s ease-in-out; - -o-transition: border 0.2s ease-in-out; - transition: border 0.2s ease-in-out; -} -.thumbnail > img, -.thumbnail a > img { - margin-left: auto; - margin-right: auto; -} -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #6900ea; -} -.thumbnail .caption { - padding: 9px; - color: #333333; -} -.alert { - padding: 15px; - margin-bottom: 24px; - border: 1px solid transparent; - border-radius: 0px; -} -.alert h4 { - margin-top: 0; - color: inherit; -} -.alert .alert-link { - font-weight: bold; -} -.alert > p, -.alert > ul { - margin-bottom: 0; -} -.alert > p + p { - margin-top: 5px; -} -.alert-dismissable, -.alert-dismissible { - padding-right: 35px; -} -.alert-dismissable .close, -.alert-dismissible .close { - position: relative; - top: -2px; - right: -21px; - color: inherit; -} -.alert-success { - background-color: #dff0d8; - border-color: #d6e9c6; - color: #3c763d; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #2b542c; -} -.alert-info { - background-color: #d9edf7; - border-color: #bce8f1; - color: #31708f; -} -.alert-info hr { - border-top-color: #a6e1ec; -} -.alert-info .alert-link { - color: #245269; -} -.alert-warning { - background-color: #fcf8e3; - border-color: #faebcc; - color: #8a6d3b; -} -.alert-warning hr { - border-top-color: #f7e1b5; -} -.alert-warning .alert-link { - color: #66512c; -} -.alert-danger { - background-color: #f2dede; - border-color: #ebccd1; - color: #a94442; -} -.alert-danger hr { - border-top-color: #e4b9c0; -} -.alert-danger .alert-link { - color: #843534; -} -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@-o-keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -@keyframes progress-bar-stripes { - from { - background-position: 40px 0; - } - to { - background-position: 0 0; - } -} -.progress { - overflow: hidden; - height: 24px; - margin-bottom: 24px; - background-color: #f5f5f5; - border-radius: 0px; - -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); - box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -} -.progress-bar { - float: left; - width: 0%; - height: 100%; - font-size: 14px; - line-height: 24px; - color: #ffffff; - text-align: center; - background-color: #6900ea; - -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); - -webkit-transition: width 0.6s ease; - -o-transition: width 0.6s ease; - transition: width 0.6s ease; -} -.progress-striped .progress-bar, -.progress-bar-striped { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - -webkit-background-size: 40px 40px; - background-size: 40px 40px; -} -.progress.active .progress-bar, -.progress-bar.active { - -webkit-animation: progress-bar-stripes 2s linear infinite; - -o-animation: progress-bar-stripes 2s linear infinite; - animation: progress-bar-stripes 2s linear infinite; -} -.progress-bar-success { - background-color: #579e00; -} -.progress-striped .progress-bar-success { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-info { - background-color: #6900ea; -} -.progress-striped .progress-bar-info { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-warning { - background-color: #e8d63c; -} -.progress-striped .progress-bar-warning { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.progress-bar-danger { - background-color: #e40434; -} -.progress-striped .progress-bar-danger { - background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); -} -.media { - margin-top: 15px; -} -.media:first-child { - margin-top: 0; -} -.media, -.media-body { - zoom: 1; - overflow: hidden; -} -.media-body { - width: 10000px; -} -.media-object { - display: block; -} -.media-object.img-thumbnail { - max-width: none; -} -.media-right, -.media > .pull-right { - padding-left: 10px; -} -.media-left, -.media > .pull-left { - padding-right: 10px; -} -.media-left, -.media-right, -.media-body { - display: table-cell; - vertical-align: top; -} -.media-middle { - vertical-align: middle; -} -.media-bottom { - vertical-align: bottom; -} -.media-heading { - margin-top: 0; - margin-bottom: 5px; -} -.media-list { - padding-left: 0; - list-style: none; -} -.list-group { - margin-bottom: 20px; - padding-left: 0; -} -.list-group-item { - position: relative; - display: block; - padding: 10px 15px; - margin-bottom: -1px; - background-color: #ffffff; - border: 1px solid #dddddd; -} -.list-group-item:first-child { - border-top-right-radius: 0px; - border-top-left-radius: 0px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 0px; - border-bottom-left-radius: 0px; -} -a.list-group-item, -button.list-group-item { - color: #555555; -} -a.list-group-item .list-group-item-heading, -button.list-group-item .list-group-item-heading { - color: #333333; -} -a.list-group-item:hover, -button.list-group-item:hover, -a.list-group-item:focus, -button.list-group-item:focus { - text-decoration: none; - color: #555555; - background-color: #f5f5f5; -} -button.list-group-item { - width: 100%; - text-align: left; -} -.list-group-item.disabled, -.list-group-item.disabled:hover, -.list-group-item.disabled:focus { - background-color: #ffffff; - color: #888888; - cursor: not-allowed; -} -.list-group-item.disabled .list-group-item-heading, -.list-group-item.disabled:hover .list-group-item-heading, -.list-group-item.disabled:focus .list-group-item-heading { - color: inherit; -} -.list-group-item.disabled .list-group-item-text, -.list-group-item.disabled:hover .list-group-item-text, -.list-group-item.disabled:focus .list-group-item-text { - color: #888888; -} -.list-group-item.active, -.list-group-item.active:hover, -.list-group-item.active:focus { - z-index: 2; - color: #ffffff; - background-color: #6900ea; - border-color: #6900ea; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:focus .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:focus .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, -.list-group-item.active:hover .list-group-item-heading > .small, -.list-group-item.active:focus .list-group-item-heading > .small { - color: inherit; -} -.list-group-item.active .list-group-item-text, -.list-group-item.active:hover .list-group-item-text, -.list-group-item.active:focus .list-group-item-text { - color: #d7b7ff; -} -.list-group-item-success { - color: #3c763d; - background-color: #dff0d8; -} -a.list-group-item-success, -button.list-group-item-success { - color: #3c763d; -} -a.list-group-item-success .list-group-item-heading, -button.list-group-item-success .list-group-item-heading { - color: inherit; -} -a.list-group-item-success:hover, -button.list-group-item-success:hover, -a.list-group-item-success:focus, -button.list-group-item-success:focus { - color: #3c763d; - background-color: #d0e9c6; -} -a.list-group-item-success.active, -button.list-group-item-success.active, -a.list-group-item-success.active:hover, -button.list-group-item-success.active:hover, -a.list-group-item-success.active:focus, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #3c763d; - border-color: #3c763d; -} -.list-group-item-info { - color: #31708f; - background-color: #d9edf7; -} -a.list-group-item-info, -button.list-group-item-info { - color: #31708f; -} -a.list-group-item-info .list-group-item-heading, -button.list-group-item-info .list-group-item-heading { - color: inherit; -} -a.list-group-item-info:hover, -button.list-group-item-info:hover, -a.list-group-item-info:focus, -button.list-group-item-info:focus { - color: #31708f; - background-color: #c4e3f3; -} -a.list-group-item-info.active, -button.list-group-item-info.active, -a.list-group-item-info.active:hover, -button.list-group-item-info.active:hover, -a.list-group-item-info.active:focus, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #31708f; - border-color: #31708f; -} -.list-group-item-warning { - color: #8a6d3b; - background-color: #fcf8e3; -} -a.list-group-item-warning, -button.list-group-item-warning { - color: #8a6d3b; -} -a.list-group-item-warning .list-group-item-heading, -button.list-group-item-warning .list-group-item-heading { - color: inherit; -} -a.list-group-item-warning:hover, -button.list-group-item-warning:hover, -a.list-group-item-warning:focus, -button.list-group-item-warning:focus { - color: #8a6d3b; - background-color: #faf2cc; -} -a.list-group-item-warning.active, -button.list-group-item-warning.active, -a.list-group-item-warning.active:hover, -button.list-group-item-warning.active:hover, -a.list-group-item-warning.active:focus, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #8a6d3b; - border-color: #8a6d3b; -} -.list-group-item-danger { - color: #a94442; - background-color: #f2dede; -} -a.list-group-item-danger, -button.list-group-item-danger { - color: #a94442; -} -a.list-group-item-danger .list-group-item-heading, -button.list-group-item-danger .list-group-item-heading { - color: inherit; -} -a.list-group-item-danger:hover, -button.list-group-item-danger:hover, -a.list-group-item-danger:focus, -button.list-group-item-danger:focus { - color: #a94442; - background-color: #ebcccc; -} -a.list-group-item-danger.active, -button.list-group-item-danger.active, -a.list-group-item-danger.active:hover, -button.list-group-item-danger.active:hover, -a.list-group-item-danger.active:focus, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #a94442; - border-color: #a94442; -} -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} -.panel { - margin-bottom: 24px; - background-color: #ffffff; - border: 1px solid transparent; - border-radius: 0px; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); -} -.panel-body { - padding: 15px; -} -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: -1px; - border-top-left-radius: -1px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 18px; - color: inherit; -} -.panel-title > a, -.panel-title > small, -.panel-title > .small, -.panel-title > small > a, -.panel-title > .small > a { - color: inherit; -} -.panel-footer { - padding: 10px 15px; - background-color: #f5f5f5; - border-top: 1px solid #dddddd; - border-bottom-right-radius: -1px; - border-bottom-left-radius: -1px; -} -.panel > .list-group, -.panel > .panel-collapse > .list-group { - margin-bottom: 0; -} -.panel > .list-group .list-group-item, -.panel > .panel-collapse > .list-group .list-group-item { - border-width: 1px 0; - border-radius: 0; -} -.panel > .list-group:first-child .list-group-item:first-child, -.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { - border-top: 0; - border-top-right-radius: -1px; - border-top-left-radius: -1px; -} -.panel > .list-group:last-child .list-group-item:last-child, -.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { - border-bottom: 0; - border-bottom-right-radius: -1px; - border-bottom-left-radius: -1px; -} -.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { - border-top-right-radius: 0; - border-top-left-radius: 0; -} -.panel-heading + .list-group .list-group-item:first-child { - border-top-width: 0; -} -.list-group + .panel-footer { - border-top-width: 0; -} -.panel > .table, -.panel > .table-responsive > .table, -.panel > .panel-collapse > .table { - margin-bottom: 0; -} -.panel > .table caption, -.panel > .table-responsive > .table caption, -.panel > .panel-collapse > .table caption { - padding-left: 15px; - padding-right: 15px; -} -.panel > .table:first-child, -.panel > .table-responsive:first-child > .table:first-child { - border-top-right-radius: -1px; - border-top-left-radius: -1px; -} -.panel > .table:first-child > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: -1px; - border-top-right-radius: -1px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: -1px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: -1px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: -1px; - border-bottom-left-radius: -1px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-left-radius: -1px; - border-bottom-right-radius: -1px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: -1px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: -1px; -} -.panel > .panel-body + .table, -.panel > .panel-body + .table-responsive, -.panel > .table + .panel-body, -.panel > .table-responsive + .panel-body { - border-top: 1px solid #dddddd; -} -.panel > .table > tbody:first-child > tr:first-child th, -.panel > .table > tbody:first-child > tr:first-child td { - border-top: 0; -} -.panel > .table-bordered, -.panel > .table-responsive > .table-bordered { - border: 0; -} -.panel > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { - border-left: 0; -} -.panel > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { - border-right: 0; -} -.panel > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} -.panel-group { - margin-bottom: 24px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 0px; -} -.panel-group .panel + .panel { - margin-top: 5px; -} -.panel-group .panel-heading { - border-bottom: 0; -} -.panel-group .panel-heading + .panel-collapse > .panel-body, -.panel-group .panel-heading + .panel-collapse > .list-group { - border-top: 1px solid #dddddd; -} -.panel-group .panel-footer { - border-top: 0; -} -.panel-group .panel-footer + .panel-collapse .panel-body { - border-bottom: 1px solid #dddddd; -} -.panel-default { - border-color: #dddddd; -} -.panel-default > .panel-heading { - color: #444444; - background-color: #f5f5f5; - border-color: #dddddd; -} -.panel-default > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #dddddd; -} -.panel-default > .panel-heading .badge { - color: #f5f5f5; - background-color: #444444; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #dddddd; -} -.panel-primary { - border-color: #6900ea; -} -.panel-primary > .panel-heading { - color: #ffffff; - background-color: #6900ea; - border-color: #6900ea; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #6900ea; -} -.panel-primary > .panel-heading .badge { - color: #6900ea; - background-color: #ffffff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #6900ea; -} -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #3c763d; - background-color: #dff0d8; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #dff0d8; - background-color: #3c763d; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} -.panel-info { - border-color: #bce8f1; -} -.panel-info > .panel-heading { - color: #31708f; - background-color: #d9edf7; - border-color: #bce8f1; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #bce8f1; -} -.panel-info > .panel-heading .badge { - color: #d9edf7; - background-color: #31708f; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #bce8f1; -} -.panel-warning { - border-color: #faebcc; -} -.panel-warning > .panel-heading { - color: #8a6d3b; - background-color: #fcf8e3; - border-color: #faebcc; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #faebcc; -} -.panel-warning > .panel-heading .badge { - color: #fcf8e3; - background-color: #8a6d3b; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #faebcc; -} -.panel-danger { - border-color: #ebccd1; -} -.panel-danger > .panel-heading { - color: #a94442; - background-color: #f2dede; - border-color: #ebccd1; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ebccd1; -} -.panel-danger > .panel-heading .badge { - color: #f2dede; - background-color: #a94442; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ebccd1; -} -.embed-responsive { - position: relative; - display: block; - height: 0; - padding: 0; - overflow: hidden; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - left: 0; - bottom: 0; - height: 100%; - width: 100%; - border: 0; -} -.embed-responsive-16by9 { - padding-bottom: 56.25%; -} -.embed-responsive-4by3 { - padding-bottom: 75%; -} -.well { - min-height: 20px; - padding: 19px; - margin-bottom: 20px; - background-color: #f5f5f5; - border: 1px solid #e3e3e3; - border-radius: 0px; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); -} -.well blockquote { - border-color: #ddd; - border-color: rgba(0, 0, 0, 0.15); -} -.well-lg { - padding: 24px; - border-radius: 0px; -} -.well-sm { - padding: 9px; - border-radius: 0px; -} -.close { - float: right; - font-size: 24px; - font-weight: bold; - line-height: 1; - color: #000000; - text-shadow: 0 1px 0 #ffffff; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover, -.close:focus { - color: #000000; - text-decoration: none; - cursor: pointer; - opacity: 0.5; - filter: alpha(opacity=50); -} -button.close { - padding: 0; - cursor: pointer; - background: transparent; - border: 0; - -webkit-appearance: none; -} -.modal-open { - overflow: hidden; -} -.modal { - display: none; - overflow: hidden; - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1050; - -webkit-overflow-scrolling: touch; - outline: 0; -} -.modal.fade .modal-dialog { - -webkit-transform: translate(0, -25%); - -ms-transform: translate(0, -25%); - -o-transform: translate(0, -25%); - transform: translate(0, -25%); - -webkit-transition: -webkit-transform 0.3s ease-out; - -o-transition: -o-transform 0.3s ease-out; - transition: transform 0.3s ease-out; -} -.modal.in .modal-dialog { - -webkit-transform: translate(0, 0); - -ms-transform: translate(0, 0); - -o-transform: translate(0, 0); - transform: translate(0, 0); -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} -.modal-dialog { - position: relative; - width: auto; - margin: 10px; -} -.modal-content { - position: relative; - background-color: #ffffff; - border: 1px solid #999999; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - -webkit-background-clip: padding-box; - background-clip: padding-box; - outline: 0; -} -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: 0.5; - filter: alpha(opacity=50); -} -.modal-header { - padding: 15px; - border-bottom: 1px solid #e5e5e5; -} -.modal-header .close { - margin-top: -2px; -} -.modal-title { - margin: 0; - line-height: 1.5; -} -.modal-body { - position: relative; - padding: 15px; -} -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid #e5e5e5; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); - } - .modal-sm { - width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg { - width: 900px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - white-space: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - font-size: 14px; - opacity: 0; - filter: alpha(opacity=0); -} -.tooltip.in { - opacity: 0.9; - filter: alpha(opacity=90); -} -.tooltip.top { - margin-top: -3px; - padding: 5px 0; -} -.tooltip.right { - margin-left: 3px; - padding: 0 5px; -} -.tooltip.bottom { - margin-top: 3px; - padding: 5px 0; -} -.tooltip.left { - margin-left: -3px; - padding: 0 5px; -} -.tooltip-inner { - max-width: 200px; - padding: 3px 8px; - color: #ffffff; - text-align: center; - background-color: #000000; - border-radius: 0px; -} -.tooltip-arrow { - position: absolute; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.tooltip.top .tooltip-arrow { - bottom: 0; - left: 50%; - margin-left: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - right: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #000000; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #000000; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #000000; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #000000; -} -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - white-space: normal; - word-break: normal; - word-spacing: normal; - word-wrap: normal; - font-size: 16px; - background-color: #ffffff; - -webkit-background-clip: padding-box; - background-clip: padding-box; - border: 1px solid #cccccc; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0px; - -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); - box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); -} -.popover.top { - margin-top: -10px; -} -.popover.right { - margin-left: 10px; -} -.popover.bottom { - margin-top: 10px; -} -.popover.left { - margin-left: -10px; -} -.popover-title { - margin: 0; - padding: 8px 14px; - font-size: 16px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: -1px -1px 0 0; -} -.popover-content { - padding: 9px 14px; -} -.popover > .arrow, -.popover > .arrow:after { - position: absolute; - display: block; - width: 0; - height: 0; - border-color: transparent; - border-style: solid; -} -.popover > .arrow { - border-width: 11px; -} -.popover > .arrow:after { - border-width: 10px; - content: ""; -} -.popover.top > .arrow { - left: 50%; - margin-left: -11px; - border-bottom-width: 0; - border-top-color: #999999; - border-top-color: rgba(0, 0, 0, 0.25); - bottom: -11px; -} -.popover.top > .arrow:after { - content: " "; - bottom: 1px; - margin-left: -10px; - border-bottom-width: 0; - border-top-color: #ffffff; -} -.popover.right > .arrow { - top: 50%; - left: -11px; - margin-top: -11px; - border-left-width: 0; - border-right-color: #999999; - border-right-color: rgba(0, 0, 0, 0.25); -} -.popover.right > .arrow:after { - content: " "; - left: 1px; - bottom: -10px; - border-left-width: 0; - border-right-color: #ffffff; -} -.popover.bottom > .arrow { - left: 50%; - margin-left: -11px; - border-top-width: 0; - border-bottom-color: #999999; - border-bottom-color: rgba(0, 0, 0, 0.25); - top: -11px; -} -.popover.bottom > .arrow:after { - content: " "; - top: 1px; - margin-left: -10px; - border-top-width: 0; - border-bottom-color: #ffffff; -} -.popover.left > .arrow { - top: 50%; - right: -11px; - margin-top: -11px; - border-right-width: 0; - border-left-color: #999999; - border-left-color: rgba(0, 0, 0, 0.25); -} -.popover.left > .arrow:after { - content: " "; - right: 1px; - border-right-width: 0; - border-left-color: #ffffff; - bottom: -10px; -} -.carousel { - position: relative; -} -.carousel-inner { - position: relative; - overflow: hidden; - width: 100%; -} -.carousel-inner > .item { - display: none; - position: relative; - -webkit-transition: 0.6s ease-in-out left; - -o-transition: 0.6s ease-in-out left; - transition: 0.6s ease-in-out left; -} -.carousel-inner > .item > img, -.carousel-inner > .item > a > img { - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -o-transition: -o-transform 0.6s ease-in-out; - transition: transform 0.6s ease-in-out; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - perspective: 1000px; - } - .carousel-inner > .item.next, - .carousel-inner > .item.active.right { - -webkit-transform: translate3d(100%, 0, 0); - transform: translate3d(100%, 0, 0); - left: 0; - } - .carousel-inner > .item.prev, - .carousel-inner > .item.active.left { - -webkit-transform: translate3d(-100%, 0, 0); - transform: translate3d(-100%, 0, 0); - left: 0; - } - .carousel-inner > .item.next.left, - .carousel-inner > .item.prev.right, - .carousel-inner > .item.active { - -webkit-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); - left: 0; - } -} -.carousel-inner > .active, -.carousel-inner > .next, -.carousel-inner > .prev { - display: block; -} -.carousel-inner > .active { - left: 0; -} -.carousel-inner > .next, -.carousel-inner > .prev { - position: absolute; - top: 0; - width: 100%; -} -.carousel-inner > .next { - left: 100%; -} -.carousel-inner > .prev { - left: -100%; -} -.carousel-inner > .next.left, -.carousel-inner > .prev.right { - left: 0; -} -.carousel-inner > .active.left { - left: -100%; -} -.carousel-inner > .active.right { - left: 100%; -} -.carousel-control { - position: absolute; - top: 0; - left: 0; - bottom: 0; - width: 15%; - opacity: 0.5; - filter: alpha(opacity=50); - font-size: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: rgba(0, 0, 0, 0); -} -.carousel-control.left { - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); -} -.carousel-control.right { - left: auto; - right: 0; - background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); - background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); - background-repeat: repeat-x; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); -} -.carousel-control:hover, -.carousel-control:focus { - outline: 0; - color: #ffffff; - text-decoration: none; - opacity: 0.9; - filter: alpha(opacity=90); -} -.carousel-control .icon-prev, -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-left, -.carousel-control .glyphicon-chevron-right { - position: absolute; - top: 50%; - margin-top: -10px; - z-index: 5; - display: inline-block; -} -.carousel-control .icon-prev, -.carousel-control .glyphicon-chevron-left { - left: 50%; - margin-left: -10px; -} -.carousel-control .icon-next, -.carousel-control .glyphicon-chevron-right { - right: 50%; - margin-right: -10px; -} -.carousel-control .icon-prev, -.carousel-control .icon-next { - width: 20px; - height: 20px; - line-height: 1; - font-family: serif; -} -.carousel-control .icon-prev:before { - content: '\2039'; -} -.carousel-control .icon-next:before { - content: '\203a'; -} -.carousel-indicators { - position: absolute; - bottom: 10px; - left: 50%; - z-index: 15; - width: 60%; - margin-left: -30%; - padding-left: 0; - list-style: none; - text-align: center; -} -.carousel-indicators li { - display: inline-block; - width: 10px; - height: 10px; - margin: 1px; - text-indent: -999px; - border: 1px solid #ffffff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: rgba(0, 0, 0, 0); -} -.carousel-indicators .active { - margin: 0; - width: 12px; - height: 12px; - background-color: #ffffff; -} -.carousel-caption { - position: absolute; - left: 15%; - right: 15%; - bottom: 20px; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #ffffff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); -} -.carousel-caption .btn { - text-shadow: none; -} -@media screen and (min-width: 768px) { - .carousel-control .glyphicon-chevron-left, - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-prev, - .carousel-control .icon-next { - width: 30px; - height: 30px; - margin-top: -10px; - font-size: 30px; - } - .carousel-control .glyphicon-chevron-left, - .carousel-control .icon-prev { - margin-left: -10px; - } - .carousel-control .glyphicon-chevron-right, - .carousel-control .icon-next { - margin-right: -10px; - } - .carousel-caption { - left: 20%; - right: 20%; - padding-bottom: 30px; - } - .carousel-indicators { - bottom: 20px; - } -} -.clearfix:before, -.clearfix:after, -.dl-horizontal dd:before, -.dl-horizontal dd:after, -.container:before, -.container:after, -.container-fluid:before, -.container-fluid:after, -.row:before, -.row:after, -.form-horizontal .form-group:before, -.form-horizontal .form-group:after, -.btn-toolbar:before, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:before, -.btn-group-vertical > .btn-group:after, -.nav:before, -.nav:after, -.navbar:before, -.navbar:after, -.navbar-header:before, -.navbar-header:after, -.navbar-collapse:before, -.navbar-collapse:after, -.pager:before, -.pager:after, -.panel-body:before, -.panel-body:after, -.modal-header:before, -.modal-header:after, -.modal-footer:before, -.modal-footer:after { - content: " "; - display: table; -} -.clearfix:after, -.dl-horizontal dd:after, -.container:after, -.container-fluid:after, -.row:after, -.form-horizontal .form-group:after, -.btn-toolbar:after, -.btn-group-vertical > .btn-group:after, -.nav:after, -.navbar:after, -.navbar-header:after, -.navbar-collapse:after, -.pager:after, -.panel-body:after, -.modal-header:after, -.modal-footer:after { - clear: both; -} -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} -.pull-right { - float: right !important; -} -.pull-left { - float: left !important; -} -.hide { - display: none !important; -} -.show { - display: block !important; -} -.invisible { - visibility: hidden; -} -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} -.hidden { - display: none !important; -} -.affix { - position: fixed; -} -@-ms-viewport { - width: device-width; -} -.visible-xs, -.visible-sm, -.visible-md, -.visible-lg { - display: none !important; -} -.visible-xs-block, -.visible-xs-inline, -.visible-xs-inline-block, -.visible-sm-block, -.visible-sm-inline, -.visible-sm-inline-block, -.visible-md-block, -.visible-md-inline, -.visible-md-inline-block, -.visible-lg-block, -.visible-lg-inline, -.visible-lg-inline-block { - display: none !important; -} -@media (max-width: 767px) { - .visible-xs { - display: block !important; - } - table.visible-xs { - display: table !important; - } - tr.visible-xs { - display: table-row !important; - } - th.visible-xs, - td.visible-xs { - display: table-cell !important; - } -} -@media (max-width: 767px) { - .visible-xs-block { - display: block !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline { - display: inline !important; - } -} -@media (max-width: 767px) { - .visible-xs-inline-block { - display: inline-block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm { - display: block !important; - } - table.visible-sm { - display: table !important; - } - tr.visible-sm { - display: table-row !important; - } - th.visible-sm, - td.visible-sm { - display: table-cell !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-block { - display: block !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline { - display: inline !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .visible-sm-inline-block { - display: inline-block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md { - display: block !important; - } - table.visible-md { - display: table !important; - } - tr.visible-md { - display: table-row !important; - } - th.visible-md, - td.visible-md { - display: table-cell !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-block { - display: block !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline { - display: inline !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .visible-md-inline-block { - display: inline-block !important; - } -} -@media (min-width: 1200px) { - .visible-lg { - display: block !important; - } - table.visible-lg { - display: table !important; - } - tr.visible-lg { - display: table-row !important; - } - th.visible-lg, - td.visible-lg { - display: table-cell !important; - } -} -@media (min-width: 1200px) { - .visible-lg-block { - display: block !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline { - display: inline !important; - } -} -@media (min-width: 1200px) { - .visible-lg-inline-block { - display: inline-block !important; - } -} -@media (max-width: 767px) { - .hidden-xs { - display: none !important; - } -} -@media (min-width: 768px) and (max-width: 991px) { - .hidden-sm { - display: none !important; - } -} -@media (min-width: 992px) and (max-width: 1199px) { - .hidden-md { - display: none !important; - } -} -@media (min-width: 1200px) { - .hidden-lg { - display: none !important; - } -} -.visible-print { - display: none !important; -} -@media print { - .visible-print { - display: block !important; - } - table.visible-print { - display: table !important; - } - tr.visible-print { - display: table-row !important; - } - th.visible-print, - td.visible-print { - display: table-cell !important; - } -} -.visible-print-block { - display: none !important; -} -@media print { - .visible-print-block { - display: block !important; - } -} -.visible-print-inline { - display: none !important; -} -@media print { - .visible-print-inline { - display: inline !important; - } -} -.visible-print-inline-block { - display: none !important; -} -@media print { - .visible-print-inline-block { - display: inline-block !important; - } -} -@media print { - .hidden-print { - display: none !important; - } -} diff --git a/docs/_static/bootstrap/css/bootstrap.min.css b/docs/_static/bootstrap/css/bootstrap.min.css deleted file mode 100644 index 52cca54..0000000 --- a/docs/_static/bootstrap/css/bootstrap.min.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - *//*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Fira Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:16px;line-height:1.5;color:#333;background-color:#f7f7f7}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#6900ea;text-decoration:none}a:hover,a:focus{color:#47009e;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:0}.img-thumbnail{padding:4px;line-height:1.5;background-color:#f7f7f7;border:1px solid #ddd;border-radius:0;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:24px;margin-bottom:24px;border:0;border-top:1px solid #fff}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Fira Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:600;line-height:1.1;color:#333}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#888}h1,.h1,h2,.h2,h3,.h3{margin-top:24px;margin-bottom:12px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:12px;margin-bottom:12px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:41px}h2,.h2{font-size:34px}h3,.h3{font-size:28px}h4,.h4{font-size:20px}h5,.h5{font-size:16px}h6,.h6{font-size:14px}p{margin:0 0 12px}.lead{margin-bottom:24px;font-size:18px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:24px}}small,.small{font-size:87%}mark,.mark{background-color:#fcf8e3;padding:.2em}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#888}.text-primary{color:#6900ea}a.text-primary:hover,a.text-primary:focus{color:#5200b7}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#6900ea}a.bg-primary:hover,a.bg-primary:focus{background-color:#5200b7}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:11px;margin:48px 0 24px;border-bottom:1px solid #fff}ul,ol{margin-top:0;margin-bottom:12px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none;margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:24px}dt,dd{line-height:1.5}dt{font-weight:bold}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #888}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:12px 24px;margin:0 0 24px;font-size:20px;border-left:5px solid #fff}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.5;color:#888}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #fff;border-left:0;text-align:right}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:24px;font-style:normal;line-height:1.5}code,kbd,pre,samp{font-family:"Fira Code",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:0}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:0;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:11.5px;margin:0 0 12px;font-size:15px;line-height:1.5;word-break:break-all;word-wrap:break-word;color:#444;background-color:#f5f5f5;border:1px solid #ccc;border-radius:0}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1030px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#888;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:24px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.5;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#f7f7f7}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:18px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:24px;font-size:24px;line-height:inherit;color:#444;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:16px;line-height:1.5;color:#666}.form-control{display:block;width:100%;height:38px;padding:6px 12px;font-size:16px;line-height:1.5;color:#666;background-color:none;background-image:none;border:1px solid #111;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s}.form-control:focus{border-color:#6900ea;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(105, 0, 234, 0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(105, 0, 234, 0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#fff;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:38px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:33px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:49px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:24px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-left:-20px;margin-top:4px \9}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:40px}.form-control-static.input-lg,.form-control-static.input-sm{padding-left:0;padding-right:0}.input-sm{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-sm{height:33px;line-height:33px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.form-group-sm select.form-control{height:33px;line-height:33px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:33px;min-height:38px;padding:6px 10px;font-size:14px;line-height:1.5}.input-lg{height:49px;padding:10px 16px;font-size:20px;line-height:1.3333333;border-radius:0}select.input-lg{height:49px;line-height:49px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:49px;padding:10px 16px;font-size:20px;line-height:1.3333333;border-radius:0}.form-group-lg select.form-control{height:49px;line-height:49px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:49px;min-height:44px;padding:11px 16px;font-size:20px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:47.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:38px;height:38px;line-height:38px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:49px;height:49px;line-height:49px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:33px;height:33px;line-height:33px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:29px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:31px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}@media (min-width:768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:20px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:14px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:16px;line-height:1.5;border-radius:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.btn.active{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#6900ea;border-color:#5e00d1}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#5200b7;border-color:#240051}.btn-primary:hover{color:#fff;background-color:#5200b7;border-color:#420093}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#5200b7;border-color:#420093}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#420093;border-color:#240051}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#6900ea;border-color:#5e00d1}.btn-primary .badge{color:#6900ea;background-color:#fff}.btn-success{color:#fff;background-color:#579e00;border-color:#498500}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#3b6b00;border-color:#030500}.btn-success:hover{color:#fff;background-color:#3b6b00;border-color:#274700}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#3b6b00;border-color:#274700}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#274700;border-color:#030500}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#579e00;border-color:#498500}.btn-success .badge{color:#579e00;background-color:#fff}.btn-info{color:#fff;background-color:#6900ea;border-color:#5e00d1}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#5200b7;border-color:#240051}.btn-info:hover{color:#fff;background-color:#5200b7;border-color:#420093}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#5200b7;border-color:#420093}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#420093;border-color:#240051}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#6900ea;border-color:#5e00d1}.btn-info .badge{color:#6900ea;background-color:#fff}.btn-warning{color:#fff;background-color:#e8d63c;border-color:#e5d125}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#d8c419;border-color:#7c710f}.btn-warning:hover{color:#fff;background-color:#d8c419;border-color:#b8a716}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#d8c419;border-color:#b8a716}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#b8a716;border-color:#7c710f}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#e8d63c;border-color:#e5d125}.btn-warning .badge{color:#e8d63c;background-color:#fff}.btn-danger{color:#fff;background-color:#e40434;border-color:#cb042e}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#b20329;border-color:#4e0112}.btn-danger:hover{color:#fff;background-color:#b20329;border-color:#8f0321}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#b20329;border-color:#8f0321}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#8f0321;border-color:#4e0112}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#e40434;border-color:#cb042e}.btn-danger .badge{color:#e40434;background-color:#fff}.btn-link{color:#6900ea;font-weight:normal;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#47009e;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#888;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:20px;line-height:1.3333333;border-radius:0}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:14px;line-height:1.5;border-radius:0}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:16px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:0;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);-webkit-background-clip:padding-box;background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:11px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.5;color:#444;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#373737;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#6900ea}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#888}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:14px;line-height:1.5;color:#888;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{left:auto;right:0}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:49px;padding:10px 16px;font-size:20px;line-height:1.3333333;border-radius:0}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:49px;line-height:49px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:33px;padding:5px 10px;font-size:14px;line-height:1.5;border-radius:0}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:33px;line-height:33px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:16px;font-weight:normal;line-height:1;color:#666;text-align:center;background-color:#fff;border:1px solid #111;border-radius:0}.input-group-addon.input-sm{padding:5px 10px;font-size:14px;border-radius:0}.input-group-addon.input-lg{padding:10px 16px;font-size:20px;border-radius:0}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#fff}.nav>li.disabled>a{color:#888}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#888;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#fff;border-color:#6900ea}.nav .nav-divider{height:1px;margin:11px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.5;border:1px solid transparent;border-radius:0 0 0 0}.nav-tabs>li>a:hover{border-color:#fff #fff #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#666;background-color:#f7f7f7;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#f7f7f7}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:0}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#6900ea}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:0 0 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#f7f7f7}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:24px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:0}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-left:0;padding-right:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:13px 15px;font-size:20px;line-height:24px;height:50px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:0}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:6.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:24px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:24px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:13px;padding-bottom:13px}}.navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:6px;margin-bottom:6px}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:6px;margin-bottom:6px}.navbar-btn.btn-sm{margin-top:8.5px;margin-bottom:8.5px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:13px;margin-bottom:13px}@media (min-width:768px){.navbar-text{float:left;margin-left:15px;margin-right:15px}}@media (min-width:768px){.navbar-left{float:left !important}.navbar-right{float:right !important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f7f7f7;border-color:#e6e6e6}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#111}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e6e6e6}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e6e6e6}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#e6e6e6;color:#555}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e6e6e6}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#111;border-color:#000}.navbar-inverse .navbar-brand{color:#aeaeae}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#f7f7f7}.navbar-inverse .navbar-nav>li>a{color:#aeaeae}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#000}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#000}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#000;color:#fff}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#aeaeae}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#000}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#aeaeae}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#aeaeae}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:24px;list-style:none;background-color:#f5f5f5;border-radius:0}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/\00a0";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#888}.pagination{display:inline-block;padding-left:0;margin:24px 0;border-radius:0}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.5;text-decoration:none;color:#6900ea;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:0;border-top-left-radius:0}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#47009e;background-color:#fff;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#6900ea;border-color:#6900ea;cursor:default}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#888;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:20px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:14px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:0;border-top-left-radius:0}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:0;border-top-right-radius:0}.pager{padding-left:0;margin:24px 0;list-style:none;text-align:center}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#fff}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#888;background-color:#fff;cursor:not-allowed}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#888}.label-default[href]:hover,.label-default[href]:focus{background-color:#6f6f6f}.label-primary{background-color:#6900ea}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#5200b7}.label-success{background-color:#579e00}.label-success[href]:hover,.label-success[href]:focus{background-color:#3b6b00}.label-info{background-color:#6900ea}.label-info[href]:hover,.label-info[href]:focus{background-color:#5200b7}.label-warning{background-color:#e8d63c}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#d8c419}.label-danger{background-color:#e40434}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#b20329}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:14px;font-weight:bold;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#888;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#6900ea;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#fff}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:24px;font-weight:200}.jumbotron>hr{border-top-color:#e6e6e6}.container .jumbotron,.container-fluid .jumbotron{border-radius:0;padding-left:15px;padding-right:15px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-left:60px;padding-right:60px}.jumbotron h1,.jumbotron .h1{font-size:72px}}.thumbnail{display:block;padding:4px;margin-bottom:24px;line-height:1.5;background-color:#f7f7f7;border:1px solid #ddd;border-radius:0;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail>img,.thumbnail a>img{margin-left:auto;margin-right:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#6900ea}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:24px;border:1px solid transparent;border-radius:0}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:24px;margin-bottom:24px;background-color:#f5f5f5;border-radius:0;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:14px;line-height:24px;color:#fff;text-align:center;background-color:#6900ea;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar,.progress-bar-striped{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#579e00}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#6900ea}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#e8d63c}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#e40434}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{zoom:1;overflow:hidden}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{text-decoration:none;color:#555;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{background-color:#fff;color:#888;cursor:not-allowed}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#888}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#6900ea;border-color:#6900ea}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#d7b7ff}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:24px;background-color:#fff;border:1px solid transparent;border-radius:0;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:18px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-left:15px;padding-right:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:-1px;border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:-1px;border-top-right-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:-1px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:-1px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:-1px;border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:-1px;border-bottom-right-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:-1px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:-1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:24px}.panel-group .panel{margin-bottom:0;border-radius:0}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#444;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#444}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#6900ea}.panel-primary>.panel-heading{color:#fff;background-color:#6900ea;border-color:#6900ea}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#6900ea}.panel-primary>.panel-heading .badge{color:#6900ea;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#6900ea}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;left:0;bottom:0;height:100%;width:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:0}.well-sm{padding:9px;border-radius:0}.close{float:right;font-size:24px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:hidden;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);-webkit-background-clip:padding-box;background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.5}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Fira Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:0}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Fira Sans","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:16px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:0;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:16px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:-1px -1px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-o-transition:-o-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);left:0}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0);left:0}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);background-color:rgba(0,0,0,0)}.carousel-control.left{background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.5)), to(rgba(0,0,0,0.0001)));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-o-linear-gradient(left, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, color-stop(0, rgba(0,0,0,0.0001)), to(rgba(0,0,0,0.5)));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:0;color:#fff;text-decoration:none;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;margin-top:-10px;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;line-height:1;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0)}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{content:" ";display:table}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}} \ No newline at end of file diff --git a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.eot b/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.eot deleted file mode 100644 index b93a495..0000000 Binary files a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.eot and /dev/null differ diff --git a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.svg b/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.svg deleted file mode 100644 index 94fb549..0000000 --- a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.svg +++ /dev/null @@ -1,288 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.ttf b/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.ttf deleted file mode 100644 index 1413fc6..0000000 Binary files a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.ttf and /dev/null differ diff --git a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff b/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff deleted file mode 100644 index 9e61285..0000000 Binary files a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff and /dev/null differ diff --git a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff2 b/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff2 deleted file mode 100644 index 64539b5..0000000 Binary files a/docs/_static/bootstrap/fonts/glyphicons-halflings-regular.woff2 and /dev/null differ diff --git a/docs/_static/bootstrap/js/bootstrap.js b/docs/_static/bootstrap/js/bootstrap.js deleted file mode 100644 index fd956df..0000000 --- a/docs/_static/bootstrap/js/bootstrap.js +++ /dev/null @@ -1,2380 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - */ -if (typeof jQuery === 'undefined') { - throw new Error('Bootstrap\'s JavaScript requires jQuery') -} -+function ($) { - 'use strict'; - var version = $.fn.jquery.split(' ')[0].split('.') - if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 3)) { - throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4') - } -}(jQuery); - -/* ======================================================================== - * Bootstrap: alert.js v3.3.7 - * http://getbootstrap.com/javascript/#alerts - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // ALERT CLASS DEFINITION - // ====================== - - var dismiss = '[data-dismiss="alert"]' - var Alert = function (el) { - $(el).on('click', dismiss, this.close) - } - - Alert.VERSION = '3.3.7' - - Alert.TRANSITION_DURATION = 150 - - Alert.prototype.close = function (e) { - var $this = $(this) - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = $(selector === '#' ? [] : selector) - - if (e) e.preventDefault() - - if (!$parent.length) { - $parent = $this.closest('.alert') - } - - $parent.trigger(e = $.Event('close.bs.alert')) - - if (e.isDefaultPrevented()) return - - $parent.removeClass('in') - - function removeElement() { - // detach from parent, fire event then clean up data - $parent.detach().trigger('closed.bs.alert').remove() - } - - $.support.transition && $parent.hasClass('fade') ? - $parent - .one('bsTransitionEnd', removeElement) - .emulateTransitionEnd(Alert.TRANSITION_DURATION) : - removeElement() - } - - - // ALERT PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.alert') - - if (!data) $this.data('bs.alert', (data = new Alert(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.alert - - $.fn.alert = Plugin - $.fn.alert.Constructor = Alert - - - // ALERT NO CONFLICT - // ================= - - $.fn.alert.noConflict = function () { - $.fn.alert = old - return this - } - - - // ALERT DATA-API - // ============== - - $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: button.js v3.3.7 - * http://getbootstrap.com/javascript/#buttons - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // BUTTON PUBLIC CLASS DEFINITION - // ============================== - - var Button = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Button.DEFAULTS, options) - this.isLoading = false - } - - Button.VERSION = '3.3.7' - - Button.DEFAULTS = { - loadingText: 'loading...' - } - - Button.prototype.setState = function (state) { - var d = 'disabled' - var $el = this.$element - var val = $el.is('input') ? 'val' : 'html' - var data = $el.data() - - state += 'Text' - - if (data.resetText == null) $el.data('resetText', $el[val]()) - - // push to event loop to allow forms to submit - setTimeout($.proxy(function () { - $el[val](data[state] == null ? this.options[state] : data[state]) - - if (state == 'loadingText') { - this.isLoading = true - $el.addClass(d).attr(d, d).prop(d, true) - } else if (this.isLoading) { - this.isLoading = false - $el.removeClass(d).removeAttr(d).prop(d, false) - } - }, this), 0) - } - - Button.prototype.toggle = function () { - var changed = true - var $parent = this.$element.closest('[data-toggle="buttons"]') - - if ($parent.length) { - var $input = this.$element.find('input') - if ($input.prop('type') == 'radio') { - if ($input.prop('checked')) changed = false - $parent.find('.active').removeClass('active') - this.$element.addClass('active') - } else if ($input.prop('type') == 'checkbox') { - if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false - this.$element.toggleClass('active') - } - $input.prop('checked', this.$element.hasClass('active')) - if (changed) $input.trigger('change') - } else { - this.$element.attr('aria-pressed', !this.$element.hasClass('active')) - this.$element.toggleClass('active') - } - } - - - // BUTTON PLUGIN DEFINITION - // ======================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.button') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.button', (data = new Button(this, options))) - - if (option == 'toggle') data.toggle() - else if (option) data.setState(option) - }) - } - - var old = $.fn.button - - $.fn.button = Plugin - $.fn.button.Constructor = Button - - - // BUTTON NO CONFLICT - // ================== - - $.fn.button.noConflict = function () { - $.fn.button = old - return this - } - - - // BUTTON DATA-API - // =============== - - $(document) - .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { - var $btn = $(e.target).closest('.btn') - Plugin.call($btn, 'toggle') - if (!($(e.target).is('input[type="radio"], input[type="checkbox"]'))) { - // Prevent double click on radios, and the double selections (so cancellation) on checkboxes - e.preventDefault() - // The target component still receive the focus - if ($btn.is('input,button')) $btn.trigger('focus') - else $btn.find('input:visible,button:visible').first().trigger('focus') - } - }) - .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { - $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: carousel.js v3.3.7 - * http://getbootstrap.com/javascript/#carousel - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CAROUSEL CLASS DEFINITION - // ========================= - - var Carousel = function (element, options) { - this.$element = $(element) - this.$indicators = this.$element.find('.carousel-indicators') - this.options = options - this.paused = null - this.sliding = null - this.interval = null - this.$active = null - this.$items = null - - this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) - - this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element - .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) - .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) - } - - Carousel.VERSION = '3.3.7' - - Carousel.TRANSITION_DURATION = 600 - - Carousel.DEFAULTS = { - interval: 5000, - pause: 'hover', - wrap: true, - keyboard: true - } - - Carousel.prototype.keydown = function (e) { - if (/input|textarea/i.test(e.target.tagName)) return - switch (e.which) { - case 37: this.prev(); break - case 39: this.next(); break - default: return - } - - e.preventDefault() - } - - Carousel.prototype.cycle = function (e) { - e || (this.paused = false) - - this.interval && clearInterval(this.interval) - - this.options.interval - && !this.paused - && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) - - return this - } - - Carousel.prototype.getItemIndex = function (item) { - this.$items = item.parent().children('.item') - return this.$items.index(item || this.$active) - } - - Carousel.prototype.getItemForDirection = function (direction, active) { - var activeIndex = this.getItemIndex(active) - var willWrap = (direction == 'prev' && activeIndex === 0) - || (direction == 'next' && activeIndex == (this.$items.length - 1)) - if (willWrap && !this.options.wrap) return active - var delta = direction == 'prev' ? -1 : 1 - var itemIndex = (activeIndex + delta) % this.$items.length - return this.$items.eq(itemIndex) - } - - Carousel.prototype.to = function (pos) { - var that = this - var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) - - if (pos > (this.$items.length - 1) || pos < 0) return - - if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" - if (activeIndex == pos) return this.pause().cycle() - - return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) - } - - Carousel.prototype.pause = function (e) { - e || (this.paused = true) - - if (this.$element.find('.next, .prev').length && $.support.transition) { - this.$element.trigger($.support.transition.end) - this.cycle(true) - } - - this.interval = clearInterval(this.interval) - - return this - } - - Carousel.prototype.next = function () { - if (this.sliding) return - return this.slide('next') - } - - Carousel.prototype.prev = function () { - if (this.sliding) return - return this.slide('prev') - } - - Carousel.prototype.slide = function (type, next) { - var $active = this.$element.find('.item.active') - var $next = next || this.getItemForDirection(type, $active) - var isCycling = this.interval - var direction = type == 'next' ? 'left' : 'right' - var that = this - - if ($next.hasClass('active')) return (this.sliding = false) - - var relatedTarget = $next[0] - var slideEvent = $.Event('slide.bs.carousel', { - relatedTarget: relatedTarget, - direction: direction - }) - this.$element.trigger(slideEvent) - if (slideEvent.isDefaultPrevented()) return - - this.sliding = true - - isCycling && this.pause() - - if (this.$indicators.length) { - this.$indicators.find('.active').removeClass('active') - var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) - $nextIndicator && $nextIndicator.addClass('active') - } - - var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" - if ($.support.transition && this.$element.hasClass('slide')) { - $next.addClass(type) - $next[0].offsetWidth // force reflow - $active.addClass(direction) - $next.addClass(direction) - $active - .one('bsTransitionEnd', function () { - $next.removeClass([type, direction].join(' ')).addClass('active') - $active.removeClass(['active', direction].join(' ')) - that.sliding = false - setTimeout(function () { - that.$element.trigger(slidEvent) - }, 0) - }) - .emulateTransitionEnd(Carousel.TRANSITION_DURATION) - } else { - $active.removeClass('active') - $next.addClass('active') - this.sliding = false - this.$element.trigger(slidEvent) - } - - isCycling && this.cycle() - - return this - } - - - // CAROUSEL PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.carousel') - var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) - var action = typeof option == 'string' ? option : options.slide - - if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) - if (typeof option == 'number') data.to(option) - else if (action) data[action]() - else if (options.interval) data.pause().cycle() - }) - } - - var old = $.fn.carousel - - $.fn.carousel = Plugin - $.fn.carousel.Constructor = Carousel - - - // CAROUSEL NO CONFLICT - // ==================== - - $.fn.carousel.noConflict = function () { - $.fn.carousel = old - return this - } - - - // CAROUSEL DATA-API - // ================= - - var clickHandler = function (e) { - var href - var $this = $(this) - var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 - if (!$target.hasClass('carousel')) return - var options = $.extend({}, $target.data(), $this.data()) - var slideIndex = $this.attr('data-slide-to') - if (slideIndex) options.interval = false - - Plugin.call($target, options) - - if (slideIndex) { - $target.data('bs.carousel').to(slideIndex) - } - - e.preventDefault() - } - - $(document) - .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) - .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) - - $(window).on('load', function () { - $('[data-ride="carousel"]').each(function () { - var $carousel = $(this) - Plugin.call($carousel, $carousel.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: dropdown.js v3.3.7 - * http://getbootstrap.com/javascript/#dropdowns - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // DROPDOWN CLASS DEFINITION - // ========================= - - var backdrop = '.dropdown-backdrop' - var toggle = '[data-toggle="dropdown"]' - var Dropdown = function (element) { - $(element).on('click.bs.dropdown', this.toggle) - } - - Dropdown.VERSION = '3.3.7' - - function getParent($this) { - var selector = $this.attr('data-target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - var $parent = selector && $(selector) - - return $parent && $parent.length ? $parent : $this.parent() - } - - function clearMenus(e) { - if (e && e.which === 3) return - $(backdrop).remove() - $(toggle).each(function () { - var $this = $(this) - var $parent = getParent($this) - var relatedTarget = { relatedTarget: this } - - if (!$parent.hasClass('open')) return - - if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return - - $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this.attr('aria-expanded', 'false') - $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget)) - }) - } - - Dropdown.prototype.toggle = function (e) { - var $this = $(this) - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - clearMenus() - - if (!isActive) { - if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { - // if mobile we use a backdrop because click events don't delegate - $(document.createElement('div')) - .addClass('dropdown-backdrop') - .insertAfter($(this)) - .on('click', clearMenus) - } - - var relatedTarget = { relatedTarget: this } - $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) - - if (e.isDefaultPrevented()) return - - $this - .trigger('focus') - .attr('aria-expanded', 'true') - - $parent - .toggleClass('open') - .trigger($.Event('shown.bs.dropdown', relatedTarget)) - } - - return false - } - - Dropdown.prototype.keydown = function (e) { - if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return - - var $this = $(this) - - e.preventDefault() - e.stopPropagation() - - if ($this.is('.disabled, :disabled')) return - - var $parent = getParent($this) - var isActive = $parent.hasClass('open') - - if (!isActive && e.which != 27 || isActive && e.which == 27) { - if (e.which == 27) $parent.find(toggle).trigger('focus') - return $this.trigger('click') - } - - var desc = ' li:not(.disabled):visible a' - var $items = $parent.find('.dropdown-menu' + desc) - - if (!$items.length) return - - var index = $items.index(e.target) - - if (e.which == 38 && index > 0) index-- // up - if (e.which == 40 && index < $items.length - 1) index++ // down - if (!~index) index = 0 - - $items.eq(index).trigger('focus') - } - - - // DROPDOWN PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.dropdown') - - if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) - if (typeof option == 'string') data[option].call($this) - }) - } - - var old = $.fn.dropdown - - $.fn.dropdown = Plugin - $.fn.dropdown.Constructor = Dropdown - - - // DROPDOWN NO CONFLICT - // ==================== - - $.fn.dropdown.noConflict = function () { - $.fn.dropdown = old - return this - } - - - // APPLY TO STANDARD DROPDOWN ELEMENTS - // =================================== - - $(document) - .on('click.bs.dropdown.data-api', clearMenus) - .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) - .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) - .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown) - .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: modal.js v3.3.7 - * http://getbootstrap.com/javascript/#modals - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // MODAL CLASS DEFINITION - // ====================== - - var Modal = function (element, options) { - this.options = options - this.$body = $(document.body) - this.$element = $(element) - this.$dialog = this.$element.find('.modal-dialog') - this.$backdrop = null - this.isShown = null - this.originalBodyPad = null - this.scrollbarWidth = 0 - this.ignoreBackdropClick = false - - if (this.options.remote) { - this.$element - .find('.modal-content') - .load(this.options.remote, $.proxy(function () { - this.$element.trigger('loaded.bs.modal') - }, this)) - } - } - - Modal.VERSION = '3.3.7' - - Modal.TRANSITION_DURATION = 300 - Modal.BACKDROP_TRANSITION_DURATION = 150 - - Modal.DEFAULTS = { - backdrop: true, - keyboard: true, - show: true - } - - Modal.prototype.toggle = function (_relatedTarget) { - return this.isShown ? this.hide() : this.show(_relatedTarget) - } - - Modal.prototype.show = function (_relatedTarget) { - var that = this - var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) - - this.$element.trigger(e) - - if (this.isShown || e.isDefaultPrevented()) return - - this.isShown = true - - this.checkScrollbar() - this.setScrollbar() - this.$body.addClass('modal-open') - - this.escape() - this.resize() - - this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) - - this.$dialog.on('mousedown.dismiss.bs.modal', function () { - that.$element.one('mouseup.dismiss.bs.modal', function (e) { - if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true - }) - }) - - this.backdrop(function () { - var transition = $.support.transition && that.$element.hasClass('fade') - - if (!that.$element.parent().length) { - that.$element.appendTo(that.$body) // don't move modals dom position - } - - that.$element - .show() - .scrollTop(0) - - that.adjustDialog() - - if (transition) { - that.$element[0].offsetWidth // force reflow - } - - that.$element.addClass('in') - - that.enforceFocus() - - var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) - - transition ? - that.$dialog // wait for modal to slide in - .one('bsTransitionEnd', function () { - that.$element.trigger('focus').trigger(e) - }) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - that.$element.trigger('focus').trigger(e) - }) - } - - Modal.prototype.hide = function (e) { - if (e) e.preventDefault() - - e = $.Event('hide.bs.modal') - - this.$element.trigger(e) - - if (!this.isShown || e.isDefaultPrevented()) return - - this.isShown = false - - this.escape() - this.resize() - - $(document).off('focusin.bs.modal') - - this.$element - .removeClass('in') - .off('click.dismiss.bs.modal') - .off('mouseup.dismiss.bs.modal') - - this.$dialog.off('mousedown.dismiss.bs.modal') - - $.support.transition && this.$element.hasClass('fade') ? - this.$element - .one('bsTransitionEnd', $.proxy(this.hideModal, this)) - .emulateTransitionEnd(Modal.TRANSITION_DURATION) : - this.hideModal() - } - - Modal.prototype.enforceFocus = function () { - $(document) - .off('focusin.bs.modal') // guard against infinite focus loop - .on('focusin.bs.modal', $.proxy(function (e) { - if (document !== e.target && - this.$element[0] !== e.target && - !this.$element.has(e.target).length) { - this.$element.trigger('focus') - } - }, this)) - } - - Modal.prototype.escape = function () { - if (this.isShown && this.options.keyboard) { - this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { - e.which == 27 && this.hide() - }, this)) - } else if (!this.isShown) { - this.$element.off('keydown.dismiss.bs.modal') - } - } - - Modal.prototype.resize = function () { - if (this.isShown) { - $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this)) - } else { - $(window).off('resize.bs.modal') - } - } - - Modal.prototype.hideModal = function () { - var that = this - this.$element.hide() - this.backdrop(function () { - that.$body.removeClass('modal-open') - that.resetAdjustments() - that.resetScrollbar() - that.$element.trigger('hidden.bs.modal') - }) - } - - Modal.prototype.removeBackdrop = function () { - this.$backdrop && this.$backdrop.remove() - this.$backdrop = null - } - - Modal.prototype.backdrop = function (callback) { - var that = this - var animate = this.$element.hasClass('fade') ? 'fade' : '' - - if (this.isShown && this.options.backdrop) { - var doAnimate = $.support.transition && animate - - this.$backdrop = $(document.createElement('div')) - .addClass('modal-backdrop ' + animate) - .appendTo(this.$body) - - this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { - if (this.ignoreBackdropClick) { - this.ignoreBackdropClick = false - return - } - if (e.target !== e.currentTarget) return - this.options.backdrop == 'static' - ? this.$element[0].focus() - : this.hide() - }, this)) - - if (doAnimate) this.$backdrop[0].offsetWidth // force reflow - - this.$backdrop.addClass('in') - - if (!callback) return - - doAnimate ? - this.$backdrop - .one('bsTransitionEnd', callback) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callback() - - } else if (!this.isShown && this.$backdrop) { - this.$backdrop.removeClass('in') - - var callbackRemove = function () { - that.removeBackdrop() - callback && callback() - } - $.support.transition && this.$element.hasClass('fade') ? - this.$backdrop - .one('bsTransitionEnd', callbackRemove) - .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : - callbackRemove() - - } else if (callback) { - callback() - } - } - - // these following methods are used to handle overflowing modals - - Modal.prototype.handleUpdate = function () { - this.adjustDialog() - } - - Modal.prototype.adjustDialog = function () { - var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight - - this.$element.css({ - paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', - paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' - }) - } - - Modal.prototype.resetAdjustments = function () { - this.$element.css({ - paddingLeft: '', - paddingRight: '' - }) - } - - Modal.prototype.checkScrollbar = function () { - var fullWindowWidth = window.innerWidth - if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8 - var documentElementRect = document.documentElement.getBoundingClientRect() - fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left) - } - this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth - this.scrollbarWidth = this.measureScrollbar() - } - - Modal.prototype.setScrollbar = function () { - var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) - this.originalBodyPad = document.body.style.paddingRight || '' - if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) - } - - Modal.prototype.resetScrollbar = function () { - this.$body.css('padding-right', this.originalBodyPad) - } - - Modal.prototype.measureScrollbar = function () { // thx walsh - var scrollDiv = document.createElement('div') - scrollDiv.className = 'modal-scrollbar-measure' - this.$body.append(scrollDiv) - var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth - this.$body[0].removeChild(scrollDiv) - return scrollbarWidth - } - - - // MODAL PLUGIN DEFINITION - // ======================= - - function Plugin(option, _relatedTarget) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.modal') - var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data) $this.data('bs.modal', (data = new Modal(this, options))) - if (typeof option == 'string') data[option](_relatedTarget) - else if (options.show) data.show(_relatedTarget) - }) - } - - var old = $.fn.modal - - $.fn.modal = Plugin - $.fn.modal.Constructor = Modal - - - // MODAL NO CONFLICT - // ================= - - $.fn.modal.noConflict = function () { - $.fn.modal = old - return this - } - - - // MODAL DATA-API - // ============== - - $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { - var $this = $(this) - var href = $this.attr('href') - var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 - var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) - - if ($this.is('a')) e.preventDefault() - - $target.one('show.bs.modal', function (showEvent) { - if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown - $target.one('hidden.bs.modal', function () { - $this.is(':visible') && $this.trigger('focus') - }) - }) - Plugin.call($target, option, this) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tooltip.js v3.3.7 - * http://getbootstrap.com/javascript/#tooltip - * Inspired by the original jQuery.tipsy by Jason Frame - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TOOLTIP PUBLIC CLASS DEFINITION - // =============================== - - var Tooltip = function (element, options) { - this.type = null - this.options = null - this.enabled = null - this.timeout = null - this.hoverState = null - this.$element = null - this.inState = null - - this.init('tooltip', element, options) - } - - Tooltip.VERSION = '3.3.7' - - Tooltip.TRANSITION_DURATION = 150 - - Tooltip.DEFAULTS = { - animation: true, - placement: 'top', - selector: false, - template: '', - trigger: 'hover focus', - title: '', - delay: 0, - html: false, - container: false, - viewport: { - selector: 'body', - padding: 0 - } - } - - Tooltip.prototype.init = function (type, element, options) { - this.enabled = true - this.type = type - this.$element = $(element) - this.options = this.getOptions(options) - this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) - this.inState = { click: false, hover: false, focus: false } - - if (this.$element[0] instanceof document.constructor && !this.options.selector) { - throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') - } - - var triggers = this.options.trigger.split(' ') - - for (var i = triggers.length; i--;) { - var trigger = triggers[i] - - if (trigger == 'click') { - this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) - } else if (trigger != 'manual') { - var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' - var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' - - this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) - this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) - } - } - - this.options.selector ? - (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : - this.fixTitle() - } - - Tooltip.prototype.getDefaults = function () { - return Tooltip.DEFAULTS - } - - Tooltip.prototype.getOptions = function (options) { - options = $.extend({}, this.getDefaults(), this.$element.data(), options) - - if (options.delay && typeof options.delay == 'number') { - options.delay = { - show: options.delay, - hide: options.delay - } - } - - return options - } - - Tooltip.prototype.getDelegateOptions = function () { - var options = {} - var defaults = this.getDefaults() - - this._options && $.each(this._options, function (key, value) { - if (defaults[key] != value) options[key] = value - }) - - return options - } - - Tooltip.prototype.enter = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true - } - - if (self.tip().hasClass('in') || self.hoverState == 'in') { - self.hoverState = 'in' - return - } - - clearTimeout(self.timeout) - - self.hoverState = 'in' - - if (!self.options.delay || !self.options.delay.show) return self.show() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'in') self.show() - }, self.options.delay.show) - } - - Tooltip.prototype.isInStateTrue = function () { - for (var key in this.inState) { - if (this.inState[key]) return true - } - - return false - } - - Tooltip.prototype.leave = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false - } - - if (self.isInStateTrue()) return - - clearTimeout(self.timeout) - - self.hoverState = 'out' - - if (!self.options.delay || !self.options.delay.hide) return self.hide() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'out') self.hide() - }, self.options.delay.hide) - } - - Tooltip.prototype.show = function () { - var e = $.Event('show.bs.' + this.type) - - if (this.hasContent() && this.enabled) { - this.$element.trigger(e) - - var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) - if (e.isDefaultPrevented() || !inDom) return - var that = this - - var $tip = this.tip() - - var tipId = this.getUID(this.type) - - this.setContent() - $tip.attr('id', tipId) - this.$element.attr('aria-describedby', tipId) - - if (this.options.animation) $tip.addClass('fade') - - var placement = typeof this.options.placement == 'function' ? - this.options.placement.call(this, $tip[0], this.$element[0]) : - this.options.placement - - var autoToken = /\s?auto?\s?/i - var autoPlace = autoToken.test(placement) - if (autoPlace) placement = placement.replace(autoToken, '') || 'top' - - $tip - .detach() - .css({ top: 0, left: 0, display: 'block' }) - .addClass(placement) - .data('bs.' + this.type, this) - - this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) - this.$element.trigger('inserted.bs.' + this.type) - - var pos = this.getPosition() - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (autoPlace) { - var orgPlacement = placement - var viewportDim = this.getPosition(this.$viewport) - - placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : - placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : - placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : - placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : - placement - - $tip - .removeClass(orgPlacement) - .addClass(placement) - } - - var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) - - this.applyPlacement(calculatedOffset, placement) - - var complete = function () { - var prevHoverState = that.hoverState - that.$element.trigger('shown.bs.' + that.type) - that.hoverState = null - - if (prevHoverState == 'out') that.leave(that) - } - - $.support.transition && this.$tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - } - } - - Tooltip.prototype.applyPlacement = function (offset, placement) { - var $tip = this.tip() - var width = $tip[0].offsetWidth - var height = $tip[0].offsetHeight - - // manually read margins because getBoundingClientRect includes difference - var marginTop = parseInt($tip.css('margin-top'), 10) - var marginLeft = parseInt($tip.css('margin-left'), 10) - - // we must check for NaN for ie 8/9 - if (isNaN(marginTop)) marginTop = 0 - if (isNaN(marginLeft)) marginLeft = 0 - - offset.top += marginTop - offset.left += marginLeft - - // $.fn.offset doesn't round pixel values - // so we use setOffset directly with our own function B-0 - $.offset.setOffset($tip[0], $.extend({ - using: function (props) { - $tip.css({ - top: Math.round(props.top), - left: Math.round(props.left) - }) - } - }, offset), 0) - - $tip.addClass('in') - - // check to see if placing tip in new offset caused the tip to resize itself - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (placement == 'top' && actualHeight != height) { - offset.top = offset.top + height - actualHeight - } - - var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) - - if (delta.left) offset.left += delta.left - else offset.top += delta.top - - var isVertical = /top|bottom/.test(placement) - var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight - var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' - - $tip.offset(offset) - this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) - } - - Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { - this.arrow() - .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') - .css(isVertical ? 'top' : 'left', '') - } - - Tooltip.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - - $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) - $tip.removeClass('fade in top bottom left right') - } - - Tooltip.prototype.hide = function (callback) { - var that = this - var $tip = $(this.$tip) - var e = $.Event('hide.bs.' + this.type) - - function complete() { - if (that.hoverState != 'in') $tip.detach() - if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary. - that.$element - .removeAttr('aria-describedby') - .trigger('hidden.bs.' + that.type) - } - callback && callback() - } - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - $tip.removeClass('in') - - $.support.transition && $tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - - this.hoverState = null - - return this - } - - Tooltip.prototype.fixTitle = function () { - var $e = this.$element - if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { - $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') - } - } - - Tooltip.prototype.hasContent = function () { - return this.getTitle() - } - - Tooltip.prototype.getPosition = function ($element) { - $element = $element || this.$element - - var el = $element[0] - var isBody = el.tagName == 'BODY' - - var elRect = el.getBoundingClientRect() - if (elRect.width == null) { - // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 - elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) - } - var isSvg = window.SVGElement && el instanceof window.SVGElement - // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3. - // See https://github.com/twbs/bootstrap/issues/20280 - var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset()) - var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } - var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null - - return $.extend({}, elRect, scroll, outerDims, elOffset) - } - - Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { - return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : - /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } - - } - - Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { - var delta = { top: 0, left: 0 } - if (!this.$viewport) return delta - - var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 - var viewportDimensions = this.getPosition(this.$viewport) - - if (/right|left/.test(placement)) { - var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll - var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight - if (topEdgeOffset < viewportDimensions.top) { // top overflow - delta.top = viewportDimensions.top - topEdgeOffset - } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow - delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset - } - } else { - var leftEdgeOffset = pos.left - viewportPadding - var rightEdgeOffset = pos.left + viewportPadding + actualWidth - if (leftEdgeOffset < viewportDimensions.left) { // left overflow - delta.left = viewportDimensions.left - leftEdgeOffset - } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow - delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset - } - } - - return delta - } - - Tooltip.prototype.getTitle = function () { - var title - var $e = this.$element - var o = this.options - - title = $e.attr('data-original-title') - || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) - - return title - } - - Tooltip.prototype.getUID = function (prefix) { - do prefix += ~~(Math.random() * 1000000) - while (document.getElementById(prefix)) - return prefix - } - - Tooltip.prototype.tip = function () { - if (!this.$tip) { - this.$tip = $(this.options.template) - if (this.$tip.length != 1) { - throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') - } - } - return this.$tip - } - - Tooltip.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) - } - - Tooltip.prototype.enable = function () { - this.enabled = true - } - - Tooltip.prototype.disable = function () { - this.enabled = false - } - - Tooltip.prototype.toggleEnabled = function () { - this.enabled = !this.enabled - } - - Tooltip.prototype.toggle = function (e) { - var self = this - if (e) { - self = $(e.currentTarget).data('bs.' + this.type) - if (!self) { - self = new this.constructor(e.currentTarget, this.getDelegateOptions()) - $(e.currentTarget).data('bs.' + this.type, self) - } - } - - if (e) { - self.inState.click = !self.inState.click - if (self.isInStateTrue()) self.enter(self) - else self.leave(self) - } else { - self.tip().hasClass('in') ? self.leave(self) : self.enter(self) - } - } - - Tooltip.prototype.destroy = function () { - var that = this - clearTimeout(this.timeout) - this.hide(function () { - that.$element.off('.' + that.type).removeData('bs.' + that.type) - if (that.$tip) { - that.$tip.detach() - } - that.$tip = null - that.$arrow = null - that.$viewport = null - that.$element = null - }) - } - - - // TOOLTIP PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tooltip') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tooltip - - $.fn.tooltip = Plugin - $.fn.tooltip.Constructor = Tooltip - - - // TOOLTIP NO CONFLICT - // =================== - - $.fn.tooltip.noConflict = function () { - $.fn.tooltip = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: popover.js v3.3.7 - * http://getbootstrap.com/javascript/#popovers - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // POPOVER PUBLIC CLASS DEFINITION - // =============================== - - var Popover = function (element, options) { - this.init('popover', element, options) - } - - if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') - - Popover.VERSION = '3.3.7' - - Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { - placement: 'right', - trigger: 'click', - content: '', - template: '' - }) - - - // NOTE: POPOVER EXTENDS tooltip.js - // ================================ - - Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) - - Popover.prototype.constructor = Popover - - Popover.prototype.getDefaults = function () { - return Popover.DEFAULTS - } - - Popover.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - var content = this.getContent() - - $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) - $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events - this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' - ](content) - - $tip.removeClass('fade top bottom left right in') - - // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do - // this manually by checking the contents. - if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() - } - - Popover.prototype.hasContent = function () { - return this.getTitle() || this.getContent() - } - - Popover.prototype.getContent = function () { - var $e = this.$element - var o = this.options - - return $e.attr('data-content') - || (typeof o.content == 'function' ? - o.content.call($e[0]) : - o.content) - } - - Popover.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.arrow')) - } - - - // POPOVER PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.popover') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.popover', (data = new Popover(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.popover - - $.fn.popover = Plugin - $.fn.popover.Constructor = Popover - - - // POPOVER NO CONFLICT - // =================== - - $.fn.popover.noConflict = function () { - $.fn.popover = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: tab.js v3.3.7 - * http://getbootstrap.com/javascript/#tabs - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // TAB CLASS DEFINITION - // ==================== - - var Tab = function (element) { - // jscs:disable requireDollarBeforejQueryAssignment - this.element = $(element) - // jscs:enable requireDollarBeforejQueryAssignment - } - - Tab.VERSION = '3.3.7' - - Tab.TRANSITION_DURATION = 150 - - Tab.prototype.show = function () { - var $this = this.element - var $ul = $this.closest('ul:not(.dropdown-menu)') - var selector = $this.data('target') - - if (!selector) { - selector = $this.attr('href') - selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 - } - - if ($this.parent('li').hasClass('active')) return - - var $previous = $ul.find('.active:last a') - var hideEvent = $.Event('hide.bs.tab', { - relatedTarget: $this[0] - }) - var showEvent = $.Event('show.bs.tab', { - relatedTarget: $previous[0] - }) - - $previous.trigger(hideEvent) - $this.trigger(showEvent) - - if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return - - var $target = $(selector) - - this.activate($this.closest('li'), $ul) - this.activate($target, $target.parent(), function () { - $previous.trigger({ - type: 'hidden.bs.tab', - relatedTarget: $this[0] - }) - $this.trigger({ - type: 'shown.bs.tab', - relatedTarget: $previous[0] - }) - }) - } - - Tab.prototype.activate = function (element, container, callback) { - var $active = container.find('> .active') - var transition = callback - && $.support.transition - && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length) - - function next() { - $active - .removeClass('active') - .find('> .dropdown-menu > .active') - .removeClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', false) - - element - .addClass('active') - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - - if (transition) { - element[0].offsetWidth // reflow for transition - element.addClass('in') - } else { - element.removeClass('fade') - } - - if (element.parent('.dropdown-menu').length) { - element - .closest('li.dropdown') - .addClass('active') - .end() - .find('[data-toggle="tab"]') - .attr('aria-expanded', true) - } - - callback && callback() - } - - $active.length && transition ? - $active - .one('bsTransitionEnd', next) - .emulateTransitionEnd(Tab.TRANSITION_DURATION) : - next() - - $active.removeClass('in') - } - - - // TAB PLUGIN DEFINITION - // ===================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tab') - - if (!data) $this.data('bs.tab', (data = new Tab(this))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tab - - $.fn.tab = Plugin - $.fn.tab.Constructor = Tab - - - // TAB NO CONFLICT - // =============== - - $.fn.tab.noConflict = function () { - $.fn.tab = old - return this - } - - - // TAB DATA-API - // ============ - - var clickHandler = function (e) { - e.preventDefault() - Plugin.call($(this), 'show') - } - - $(document) - .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler) - .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: affix.js v3.3.7 - * http://getbootstrap.com/javascript/#affix - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // AFFIX CLASS DEFINITION - // ====================== - - var Affix = function (element, options) { - this.options = $.extend({}, Affix.DEFAULTS, options) - - this.$target = $(this.options.target) - .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) - .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) - - this.$element = $(element) - this.affixed = null - this.unpin = null - this.pinnedOffset = null - - this.checkPosition() - } - - Affix.VERSION = '3.3.7' - - Affix.RESET = 'affix affix-top affix-bottom' - - Affix.DEFAULTS = { - offset: 0, - target: window - } - - Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - var targetHeight = this.$target.height() - - if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false - - if (this.affixed == 'bottom') { - if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' - return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' - } - - var initializing = this.affixed == null - var colliderTop = initializing ? scrollTop : position.top - var colliderHeight = initializing ? targetHeight : height - - if (offsetTop != null && scrollTop <= offsetTop) return 'top' - if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' - - return false - } - - Affix.prototype.getPinnedOffset = function () { - if (this.pinnedOffset) return this.pinnedOffset - this.$element.removeClass(Affix.RESET).addClass('affix') - var scrollTop = this.$target.scrollTop() - var position = this.$element.offset() - return (this.pinnedOffset = position.top - scrollTop) - } - - Affix.prototype.checkPositionWithEventLoop = function () { - setTimeout($.proxy(this.checkPosition, this), 1) - } - - Affix.prototype.checkPosition = function () { - if (!this.$element.is(':visible')) return - - var height = this.$element.height() - var offset = this.options.offset - var offsetTop = offset.top - var offsetBottom = offset.bottom - var scrollHeight = Math.max($(document).height(), $(document.body).height()) - - if (typeof offset != 'object') offsetBottom = offsetTop = offset - if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) - if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) - - var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) - - if (this.affixed != affix) { - if (this.unpin != null) this.$element.css('top', '') - - var affixType = 'affix' + (affix ? '-' + affix : '') - var e = $.Event(affixType + '.bs.affix') - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - this.affixed = affix - this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null - - this.$element - .removeClass(Affix.RESET) - .addClass(affixType) - .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') - } - - if (affix == 'bottom') { - this.$element.offset({ - top: scrollHeight - height - offsetBottom - }) - } - } - - - // AFFIX PLUGIN DEFINITION - // ======================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.affix') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.affix', (data = new Affix(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.affix - - $.fn.affix = Plugin - $.fn.affix.Constructor = Affix - - - // AFFIX NO CONFLICT - // ================= - - $.fn.affix.noConflict = function () { - $.fn.affix = old - return this - } - - - // AFFIX DATA-API - // ============== - - $(window).on('load', function () { - $('[data-spy="affix"]').each(function () { - var $spy = $(this) - var data = $spy.data() - - data.offset = data.offset || {} - - if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom - if (data.offsetTop != null) data.offset.top = data.offsetTop - - Plugin.call($spy, data) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: collapse.js v3.3.7 - * http://getbootstrap.com/javascript/#collapse - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - -/* jshint latedef: false */ - -+function ($) { - 'use strict'; - - // COLLAPSE PUBLIC CLASS DEFINITION - // ================================ - - var Collapse = function (element, options) { - this.$element = $(element) - this.options = $.extend({}, Collapse.DEFAULTS, options) - this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + - '[data-toggle="collapse"][data-target="#' + element.id + '"]') - this.transitioning = null - - if (this.options.parent) { - this.$parent = this.getParent() - } else { - this.addAriaAndCollapsedClass(this.$element, this.$trigger) - } - - if (this.options.toggle) this.toggle() - } - - Collapse.VERSION = '3.3.7' - - Collapse.TRANSITION_DURATION = 350 - - Collapse.DEFAULTS = { - toggle: true - } - - Collapse.prototype.dimension = function () { - var hasWidth = this.$element.hasClass('width') - return hasWidth ? 'width' : 'height' - } - - Collapse.prototype.show = function () { - if (this.transitioning || this.$element.hasClass('in')) return - - var activesData - var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing') - - if (actives && actives.length) { - activesData = actives.data('bs.collapse') - if (activesData && activesData.transitioning) return - } - - var startEvent = $.Event('show.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - if (actives && actives.length) { - Plugin.call(actives, 'hide') - activesData || actives.data('bs.collapse', null) - } - - var dimension = this.dimension() - - this.$element - .removeClass('collapse') - .addClass('collapsing')[dimension](0) - .attr('aria-expanded', true) - - this.$trigger - .removeClass('collapsed') - .attr('aria-expanded', true) - - this.transitioning = 1 - - var complete = function () { - this.$element - .removeClass('collapsing') - .addClass('collapse in')[dimension]('') - this.transitioning = 0 - this.$element - .trigger('shown.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - var scrollSize = $.camelCase(['scroll', dimension].join('-')) - - this.$element - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) - } - - Collapse.prototype.hide = function () { - if (this.transitioning || !this.$element.hasClass('in')) return - - var startEvent = $.Event('hide.bs.collapse') - this.$element.trigger(startEvent) - if (startEvent.isDefaultPrevented()) return - - var dimension = this.dimension() - - this.$element[dimension](this.$element[dimension]())[0].offsetHeight - - this.$element - .addClass('collapsing') - .removeClass('collapse in') - .attr('aria-expanded', false) - - this.$trigger - .addClass('collapsed') - .attr('aria-expanded', false) - - this.transitioning = 1 - - var complete = function () { - this.transitioning = 0 - this.$element - .removeClass('collapsing') - .addClass('collapse') - .trigger('hidden.bs.collapse') - } - - if (!$.support.transition) return complete.call(this) - - this.$element - [dimension](0) - .one('bsTransitionEnd', $.proxy(complete, this)) - .emulateTransitionEnd(Collapse.TRANSITION_DURATION) - } - - Collapse.prototype.toggle = function () { - this[this.$element.hasClass('in') ? 'hide' : 'show']() - } - - Collapse.prototype.getParent = function () { - return $(this.options.parent) - .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') - .each($.proxy(function (i, element) { - var $element = $(element) - this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) - }, this)) - .end() - } - - Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { - var isOpen = $element.hasClass('in') - - $element.attr('aria-expanded', isOpen) - $trigger - .toggleClass('collapsed', !isOpen) - .attr('aria-expanded', isOpen) - } - - function getTargetFromTrigger($trigger) { - var href - var target = $trigger.attr('data-target') - || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 - - return $(target) - } - - - // COLLAPSE PLUGIN DEFINITION - // ========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.collapse') - var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) - - if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false - if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.collapse - - $.fn.collapse = Plugin - $.fn.collapse.Constructor = Collapse - - - // COLLAPSE NO CONFLICT - // ==================== - - $.fn.collapse.noConflict = function () { - $.fn.collapse = old - return this - } - - - // COLLAPSE DATA-API - // ================= - - $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { - var $this = $(this) - - if (!$this.attr('data-target')) e.preventDefault() - - var $target = getTargetFromTrigger($this) - var data = $target.data('bs.collapse') - var option = data ? 'toggle' : $this.data() - - Plugin.call($target, option) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: scrollspy.js v3.3.7 - * http://getbootstrap.com/javascript/#scrollspy - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // SCROLLSPY CLASS DEFINITION - // ========================== - - function ScrollSpy(element, options) { - this.$body = $(document.body) - this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) - this.options = $.extend({}, ScrollSpy.DEFAULTS, options) - this.selector = (this.options.target || '') + ' .nav li > a' - this.offsets = [] - this.targets = [] - this.activeTarget = null - this.scrollHeight = 0 - - this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) - this.refresh() - this.process() - } - - ScrollSpy.VERSION = '3.3.7' - - ScrollSpy.DEFAULTS = { - offset: 10 - } - - ScrollSpy.prototype.getScrollHeight = function () { - return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) - } - - ScrollSpy.prototype.refresh = function () { - var that = this - var offsetMethod = 'offset' - var offsetBase = 0 - - this.offsets = [] - this.targets = [] - this.scrollHeight = this.getScrollHeight() - - if (!$.isWindow(this.$scrollElement[0])) { - offsetMethod = 'position' - offsetBase = this.$scrollElement.scrollTop() - } - - this.$body - .find(this.selector) - .map(function () { - var $el = $(this) - var href = $el.data('target') || $el.attr('href') - var $href = /^#./.test(href) && $(href) - - return ($href - && $href.length - && $href.is(':visible') - && [[$href[offsetMethod]().top + offsetBase, href]]) || null - }) - .sort(function (a, b) { return a[0] - b[0] }) - .each(function () { - that.offsets.push(this[0]) - that.targets.push(this[1]) - }) - } - - ScrollSpy.prototype.process = function () { - var scrollTop = this.$scrollElement.scrollTop() + this.options.offset - var scrollHeight = this.getScrollHeight() - var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() - var offsets = this.offsets - var targets = this.targets - var activeTarget = this.activeTarget - var i - - if (this.scrollHeight != scrollHeight) { - this.refresh() - } - - if (scrollTop >= maxScroll) { - return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) - } - - if (activeTarget && scrollTop < offsets[0]) { - this.activeTarget = null - return this.clear() - } - - for (i = offsets.length; i--;) { - activeTarget != targets[i] - && scrollTop >= offsets[i] - && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) - && this.activate(targets[i]) - } - } - - ScrollSpy.prototype.activate = function (target) { - this.activeTarget = target - - this.clear() - - var selector = this.selector + - '[data-target="' + target + '"],' + - this.selector + '[href="' + target + '"]' - - var active = $(selector) - .parents('li') - .addClass('active') - - if (active.parent('.dropdown-menu').length) { - active = active - .closest('li.dropdown') - .addClass('active') - } - - active.trigger('activate.bs.scrollspy') - } - - ScrollSpy.prototype.clear = function () { - $(this.selector) - .parentsUntil(this.options.target, '.active') - .removeClass('active') - } - - - // SCROLLSPY PLUGIN DEFINITION - // =========================== - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.scrollspy') - var options = typeof option == 'object' && option - - if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.scrollspy - - $.fn.scrollspy = Plugin - $.fn.scrollspy.Constructor = ScrollSpy - - - // SCROLLSPY NO CONFLICT - // ===================== - - $.fn.scrollspy.noConflict = function () { - $.fn.scrollspy = old - return this - } - - - // SCROLLSPY DATA-API - // ================== - - $(window).on('load.bs.scrollspy.data-api', function () { - $('[data-spy="scroll"]').each(function () { - var $spy = $(this) - Plugin.call($spy, $spy.data()) - }) - }) - -}(jQuery); - -/* ======================================================================== - * Bootstrap: transition.js v3.3.7 - * http://getbootstrap.com/javascript/#transitions - * ======================================================================== - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) - // ============================================================ - - function transitionEnd() { - var el = document.createElement('bootstrap') - - var transEndEventNames = { - WebkitTransition : 'webkitTransitionEnd', - MozTransition : 'transitionend', - OTransition : 'oTransitionEnd otransitionend', - transition : 'transitionend' - } - - for (var name in transEndEventNames) { - if (el.style[name] !== undefined) { - return { end: transEndEventNames[name] } - } - } - - return false // explicit for ie8 ( ._.) - } - - // http://blog.alexmaccaw.com/css-transitions - $.fn.emulateTransitionEnd = function (duration) { - var called = false - var $el = this - $(this).one('bsTransitionEnd', function () { called = true }) - var callback = function () { if (!called) $($el).trigger($.support.transition.end) } - setTimeout(callback, duration) - return this - } - - $(function () { - $.support.transition = transitionEnd() - - if (!$.support.transition) return - - $.event.special.bsTransitionEnd = { - bindType: $.support.transition.end, - delegateType: $.support.transition.end, - handle: function (e) { - if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) - } - } - }) - -}(jQuery); diff --git a/docs/_static/bootstrap/js/bootstrap.min.js b/docs/_static/bootstrap/js/bootstrap.min.js deleted file mode 100644 index 6017627..0000000 --- a/docs/_static/bootstrap/js/bootstrap.min.js +++ /dev/null @@ -1,12 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2017 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=b3f2cd81a7864f098f224da1ee336eb3) - * Config saved to config.json and https://gist.github.com/b3f2cd81a7864f098f224da1ee336eb3 - */ -if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(t){"use strict";var e=t.fn.jquery.split(" ")[0].split(".");if(e[0]<2&&e[1]<9||1==e[0]&&9==e[1]&&e[2]<1||e[0]>3)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4")}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var i=t(this),n=i.data("bs.alert");n||i.data("bs.alert",n=new o(this)),"string"==typeof e&&n[e].call(i)})}var i='[data-dismiss="alert"]',o=function(e){t(e).on("click",i,this.close)};o.VERSION="3.3.7",o.TRANSITION_DURATION=150,o.prototype.close=function(e){function i(){a.detach().trigger("closed.bs.alert").remove()}var n=t(this),s=n.attr("data-target");s||(s=n.attr("href"),s=s&&s.replace(/.*(?=#[^\s]*$)/,""));var a=t("#"===s?[]:s);e&&e.preventDefault(),a.length||(a=n.closest(".alert")),a.trigger(e=t.Event("close.bs.alert")),e.isDefaultPrevented()||(a.removeClass("in"),t.support.transition&&a.hasClass("fade")?a.one("bsTransitionEnd",i).emulateTransitionEnd(o.TRANSITION_DURATION):i())};var n=t.fn.alert;t.fn.alert=e,t.fn.alert.Constructor=o,t.fn.alert.noConflict=function(){return t.fn.alert=n,this},t(document).on("click.bs.alert.data-api",i,o.prototype.close)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.button"),s="object"==typeof e&&e;n||o.data("bs.button",n=new i(this,s)),"toggle"==e?n.toggle():e&&n.setState(e)})}var i=function(e,o){this.$element=t(e),this.options=t.extend({},i.DEFAULTS,o),this.isLoading=!1};i.VERSION="3.3.7",i.DEFAULTS={loadingText:"loading..."},i.prototype.setState=function(e){var i="disabled",o=this.$element,n=o.is("input")?"val":"html",s=o.data();e+="Text",null==s.resetText&&o.data("resetText",o[n]()),setTimeout(t.proxy(function(){o[n](null==s[e]?this.options[e]:s[e]),"loadingText"==e?(this.isLoading=!0,o.addClass(i).attr(i,i).prop(i,!0)):this.isLoading&&(this.isLoading=!1,o.removeClass(i).removeAttr(i).prop(i,!1))},this),0)},i.prototype.toggle=function(){var t=!0,e=this.$element.closest('[data-toggle="buttons"]');if(e.length){var i=this.$element.find("input");"radio"==i.prop("type")?(i.prop("checked")&&(t=!1),e.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==i.prop("type")&&(i.prop("checked")!==this.$element.hasClass("active")&&(t=!1),this.$element.toggleClass("active")),i.prop("checked",this.$element.hasClass("active")),t&&i.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var o=t.fn.button;t.fn.button=e,t.fn.button.Constructor=i,t.fn.button.noConflict=function(){return t.fn.button=o,this},t(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(i){var o=t(i.target).closest(".btn");e.call(o,"toggle"),t(i.target).is('input[type="radio"], input[type="checkbox"]')||(i.preventDefault(),o.is("input,button")?o.trigger("focus"):o.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(e){t(e.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(e.type))})}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.carousel"),s=t.extend({},i.DEFAULTS,o.data(),"object"==typeof e&&e),a="string"==typeof e?e:s.slide;n||o.data("bs.carousel",n=new i(this,s)),"number"==typeof e?n.to(e):a?n[a]():s.interval&&n.pause().cycle()})}var i=function(e,i){this.$element=t(e),this.$indicators=this.$element.find(".carousel-indicators"),this.options=i,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",t.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",t.proxy(this.pause,this)).on("mouseleave.bs.carousel",t.proxy(this.cycle,this))};i.VERSION="3.3.7",i.TRANSITION_DURATION=600,i.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},i.prototype.keydown=function(t){if(!/input|textarea/i.test(t.target.tagName)){switch(t.which){case 37:this.prev();break;case 39:this.next();break;default:return}t.preventDefault()}},i.prototype.cycle=function(e){return e||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(t.proxy(this.next,this),this.options.interval)),this},i.prototype.getItemIndex=function(t){return this.$items=t.parent().children(".item"),this.$items.index(t||this.$active)},i.prototype.getItemForDirection=function(t,e){var i=this.getItemIndex(e),o="prev"==t&&0===i||"next"==t&&i==this.$items.length-1;if(o&&!this.options.wrap)return e;var n="prev"==t?-1:1,s=(i+n)%this.$items.length;return this.$items.eq(s)},i.prototype.to=function(t){var e=this,i=this.getItemIndex(this.$active=this.$element.find(".item.active"));return t>this.$items.length-1||0>t?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){e.to(t)}):i==t?this.pause().cycle():this.slide(t>i?"next":"prev",this.$items.eq(t))},i.prototype.pause=function(e){return e||(this.paused=!0),this.$element.find(".next, .prev").length&&t.support.transition&&(this.$element.trigger(t.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},i.prototype.next=function(){return this.sliding?void 0:this.slide("next")},i.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},i.prototype.slide=function(e,o){var n=this.$element.find(".item.active"),s=o||this.getItemForDirection(e,n),a=this.interval,r="next"==e?"left":"right",l=this;if(s.hasClass("active"))return this.sliding=!1;var h=s[0],d=t.Event("slide.bs.carousel",{relatedTarget:h,direction:r});if(this.$element.trigger(d),!d.isDefaultPrevented()){if(this.sliding=!0,a&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var p=t(this.$indicators.children()[this.getItemIndex(s)]);p&&p.addClass("active")}var c=t.Event("slid.bs.carousel",{relatedTarget:h,direction:r});return t.support.transition&&this.$element.hasClass("slide")?(s.addClass(e),s[0].offsetWidth,n.addClass(r),s.addClass(r),n.one("bsTransitionEnd",function(){s.removeClass([e,r].join(" ")).addClass("active"),n.removeClass(["active",r].join(" ")),l.sliding=!1,setTimeout(function(){l.$element.trigger(c)},0)}).emulateTransitionEnd(i.TRANSITION_DURATION)):(n.removeClass("active"),s.addClass("active"),this.sliding=!1,this.$element.trigger(c)),a&&this.cycle(),this}};var o=t.fn.carousel;t.fn.carousel=e,t.fn.carousel.Constructor=i,t.fn.carousel.noConflict=function(){return t.fn.carousel=o,this};var n=function(i){var o,n=t(this),s=t(n.attr("data-target")||(o=n.attr("href"))&&o.replace(/.*(?=#[^\s]+$)/,""));if(s.hasClass("carousel")){var a=t.extend({},s.data(),n.data()),r=n.attr("data-slide-to");r&&(a.interval=!1),e.call(s,a),r&&s.data("bs.carousel").to(r),i.preventDefault()}};t(document).on("click.bs.carousel.data-api","[data-slide]",n).on("click.bs.carousel.data-api","[data-slide-to]",n),t(window).on("load",function(){t('[data-ride="carousel"]').each(function(){var i=t(this);e.call(i,i.data())})})}(jQuery),+function(t){"use strict";function e(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A-Za-z]/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""));var o=i&&t(i);return o&&o.length?o:e.parent()}function i(i){i&&3===i.which||(t(n).remove(),t(s).each(function(){var o=t(this),n=e(o),s={relatedTarget:this};n.hasClass("open")&&(i&&"click"==i.type&&/input|textarea/i.test(i.target.tagName)&&t.contains(n[0],i.target)||(n.trigger(i=t.Event("hide.bs.dropdown",s)),i.isDefaultPrevented()||(o.attr("aria-expanded","false"),n.removeClass("open").trigger(t.Event("hidden.bs.dropdown",s)))))}))}function o(e){return this.each(function(){var i=t(this),o=i.data("bs.dropdown");o||i.data("bs.dropdown",o=new a(this)),"string"==typeof e&&o[e].call(i)})}var n=".dropdown-backdrop",s='[data-toggle="dropdown"]',a=function(e){t(e).on("click.bs.dropdown",this.toggle)};a.VERSION="3.3.7",a.prototype.toggle=function(o){var n=t(this);if(!n.is(".disabled, :disabled")){var s=e(n),a=s.hasClass("open");if(i(),!a){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",i);var r={relatedTarget:this};if(s.trigger(o=t.Event("show.bs.dropdown",r)),o.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger(t.Event("shown.bs.dropdown",r))}return!1}},a.prototype.keydown=function(i){if(/(38|40|27|32)/.test(i.which)&&!/input|textarea/i.test(i.target.tagName)){var o=t(this);if(i.preventDefault(),i.stopPropagation(),!o.is(".disabled, :disabled")){var n=e(o),a=n.hasClass("open");if(!a&&27!=i.which||a&&27==i.which)return 27==i.which&&n.find(s).trigger("focus"),o.trigger("click");var r=" li:not(.disabled):visible a",l=n.find(".dropdown-menu"+r);if(l.length){var h=l.index(i.target);38==i.which&&h>0&&h--,40==i.which&&hdocument.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&t?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!t?this.scrollbarWidth:""})},i.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},i.prototype.checkScrollbar=function(){var t=window.innerWidth;if(!t){var e=document.documentElement.getBoundingClientRect();t=e.right-Math.abs(e.left)}this.bodyIsOverflowing=document.body.clientWidth
',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},i.prototype.init=function(e,i,o){if(this.enabled=!0,this.type=e,this.$element=t(i),this.options=this.getOptions(o),this.$viewport=this.options.viewport&&t(t.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var n=this.options.trigger.split(" "),s=n.length;s--;){var a=n[s];if("click"==a)this.$element.on("click."+this.type,this.options.selector,t.proxy(this.toggle,this));else if("manual"!=a){var r="hover"==a?"mouseenter":"focusin",l="hover"==a?"mouseleave":"focusout";this.$element.on(r+"."+this.type,this.options.selector,t.proxy(this.enter,this)),this.$element.on(l+"."+this.type,this.options.selector,t.proxy(this.leave,this))}}this.options.selector?this._options=t.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.getOptions=function(e){return e=t.extend({},this.getDefaults(),this.$element.data(),e),e.delay&&"number"==typeof e.delay&&(e.delay={show:e.delay,hide:e.delay}),e},i.prototype.getDelegateOptions=function(){var e={},i=this.getDefaults();return this._options&&t.each(this._options,function(t,o){i[t]!=o&&(e[t]=o)}),e},i.prototype.enter=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusin"==e.type?"focus":"hover"]=!0),i.tip().hasClass("in")||"in"==i.hoverState?void(i.hoverState="in"):(clearTimeout(i.timeout),i.hoverState="in",i.options.delay&&i.options.delay.show?void(i.timeout=setTimeout(function(){"in"==i.hoverState&&i.show()},i.options.delay.show)):i.show())},i.prototype.isInStateTrue=function(){for(var t in this.inState)if(this.inState[t])return!0;return!1},i.prototype.leave=function(e){var i=e instanceof this.constructor?e:t(e.currentTarget).data("bs."+this.type);return i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i)),e instanceof t.Event&&(i.inState["focusout"==e.type?"focus":"hover"]=!1),i.isInStateTrue()?void 0:(clearTimeout(i.timeout),i.hoverState="out",i.options.delay&&i.options.delay.hide?void(i.timeout=setTimeout(function(){"out"==i.hoverState&&i.hide()},i.options.delay.hide)):i.hide())},i.prototype.show=function(){var e=t.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(e);var o=t.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(e.isDefaultPrevented()||!o)return;var n=this,s=this.tip(),a=this.getUID(this.type);this.setContent(),s.attr("id",a),this.$element.attr("aria-describedby",a),this.options.animation&&s.addClass("fade");var r="function"==typeof this.options.placement?this.options.placement.call(this,s[0],this.$element[0]):this.options.placement,l=/\s?auto?\s?/i,h=l.test(r);h&&(r=r.replace(l,"")||"top"),s.detach().css({top:0,left:0,display:"block"}).addClass(r).data("bs."+this.type,this),this.options.container?s.appendTo(this.options.container):s.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var d=this.getPosition(),p=s[0].offsetWidth,c=s[0].offsetHeight;if(h){var f=r,u=this.getPosition(this.$viewport);r="bottom"==r&&d.bottom+c>u.bottom?"top":"top"==r&&d.top-cu.width?"left":"left"==r&&d.left-pa.top+a.height&&(n.top=a.top+a.height-l)}else{var h=e.left-s,d=e.left+s+i;ha.right&&(n.left=a.left+a.width-d)}return n},i.prototype.getTitle=function(){var t,e=this.$element,i=this.options;return t=e.attr("data-original-title")||("function"==typeof i.title?i.title.call(e[0]):i.title)},i.prototype.getUID=function(t){do t+=~~(1e6*Math.random());while(document.getElementById(t));return t},i.prototype.tip=function(){if(!this.$tip&&(this.$tip=t(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},i.prototype.enable=function(){this.enabled=!0},i.prototype.disable=function(){this.enabled=!1},i.prototype.toggleEnabled=function(){this.enabled=!this.enabled},i.prototype.toggle=function(e){var i=this;e&&(i=t(e.currentTarget).data("bs."+this.type),i||(i=new this.constructor(e.currentTarget,this.getDelegateOptions()),t(e.currentTarget).data("bs."+this.type,i))),e?(i.inState.click=!i.inState.click,i.isInStateTrue()?i.enter(i):i.leave(i)):i.tip().hasClass("in")?i.leave(i):i.enter(i)},i.prototype.destroy=function(){var t=this;clearTimeout(this.timeout),this.hide(function(){t.$element.off("."+t.type).removeData("bs."+t.type),t.$tip&&t.$tip.detach(),t.$tip=null,t.$arrow=null,t.$viewport=null,t.$element=null})};var o=t.fn.tooltip;t.fn.tooltip=e,t.fn.tooltip.Constructor=i,t.fn.tooltip.noConflict=function(){return t.fn.tooltip=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.popover"),s="object"==typeof e&&e;!n&&/destroy|hide/.test(e)||(n||o.data("bs.popover",n=new i(this,s)),"string"==typeof e&&n[e]())})}var i=function(t,e){this.init("popover",t,e)};if(!t.fn.tooltip)throw new Error("Popover requires tooltip.js");i.VERSION="3.3.7",i.DEFAULTS=t.extend({},t.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:''}),i.prototype=t.extend({},t.fn.tooltip.Constructor.prototype),i.prototype.constructor=i,i.prototype.getDefaults=function(){return i.DEFAULTS},i.prototype.setContent=function(){var t=this.tip(),e=this.getTitle(),i=this.getContent();t.find(".popover-title")[this.options.html?"html":"text"](e),t.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof i?"html":"append":"text"](i),t.removeClass("fade top bottom left right in"),t.find(".popover-title").html()||t.find(".popover-title").hide()},i.prototype.hasContent=function(){return this.getTitle()||this.getContent()},i.prototype.getContent=function(){var t=this.$element,e=this.options;return t.attr("data-content")||("function"==typeof e.content?e.content.call(t[0]):e.content)},i.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var o=t.fn.popover;t.fn.popover=e,t.fn.popover.Constructor=i,t.fn.popover.noConflict=function(){return t.fn.popover=o,this}}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tab");n||o.data("bs.tab",n=new i(this)),"string"==typeof e&&n[e]()})}var i=function(e){this.element=t(e)};i.VERSION="3.3.7",i.TRANSITION_DURATION=150,i.prototype.show=function(){var e=this.element,i=e.closest("ul:not(.dropdown-menu)"),o=e.data("target");if(o||(o=e.attr("href"),o=o&&o.replace(/.*(?=#[^\s]*$)/,"")),!e.parent("li").hasClass("active")){var n=i.find(".active:last a"),s=t.Event("hide.bs.tab",{relatedTarget:e[0]}),a=t.Event("show.bs.tab",{relatedTarget:n[0]});if(n.trigger(s),e.trigger(a),!a.isDefaultPrevented()&&!s.isDefaultPrevented()){var r=t(o);this.activate(e.closest("li"),i),this.activate(r,r.parent(),function(){n.trigger({type:"hidden.bs.tab",relatedTarget:e[0]}),e.trigger({type:"shown.bs.tab",relatedTarget:n[0]})})}}},i.prototype.activate=function(e,o,n){function s(){a.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),e.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),r?(e[0].offsetWidth,e.addClass("in")):e.removeClass("fade"),e.parent(".dropdown-menu").length&&e.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),n&&n()}var a=o.find("> .active"),r=n&&t.support.transition&&(a.length&&a.hasClass("fade")||!!o.find("> .fade").length);a.length&&r?a.one("bsTransitionEnd",s).emulateTransitionEnd(i.TRANSITION_DURATION):s(),a.removeClass("in")};var o=t.fn.tab;t.fn.tab=e,t.fn.tab.Constructor=i,t.fn.tab.noConflict=function(){return t.fn.tab=o,this};var n=function(i){i.preventDefault(),e.call(t(this),"show")};t(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',n).on("click.bs.tab.data-api",'[data-toggle="pill"]',n)}(jQuery),+function(t){"use strict";function e(e){return this.each(function(){var o=t(this),n=o.data("bs.affix"),s="object"==typeof e&&e;n||o.data("bs.affix",n=new i(this,s)),"string"==typeof e&&n[e]()})}var i=function(e,o){this.options=t.extend({},i.DEFAULTS,o),this.$target=t(this.options.target).on("scroll.bs.affix.data-api",t.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",t.proxy(this.checkPositionWithEventLoop,this)),this.$element=t(e),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};i.VERSION="3.3.7",i.RESET="affix affix-top affix-bottom",i.DEFAULTS={offset:0,target:window},i.prototype.getState=function(t,e,i,o){var n=this.$target.scrollTop(),s=this.$element.offset(),a=this.$target.height();if(null!=i&&"top"==this.affixed)return i>n?"top":!1;if("bottom"==this.affixed)return null!=i?n+this.unpin<=s.top?!1:"bottom":t-o>=n+a?!1:"bottom";var r=null==this.affixed,l=r?n:s.top,h=r?a:e;return null!=i&&i>=n?"top":null!=o&&l+h>=t-o?"bottom":!1},i.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(i.RESET).addClass("affix");var t=this.$target.scrollTop(),e=this.$element.offset();return this.pinnedOffset=e.top-t},i.prototype.checkPositionWithEventLoop=function(){setTimeout(t.proxy(this.checkPosition,this),1)},i.prototype.checkPosition=function(){if(this.$element.is(":visible")){var e=this.$element.height(),o=this.options.offset,n=o.top,s=o.bottom,a=Math.max(t(document).height(),t(document.body).height());"object"!=typeof o&&(s=n=o),"function"==typeof n&&(n=o.top(this.$element)),"function"==typeof s&&(s=o.bottom(this.$element));var r=this.getState(a,e,n,s);if(this.affixed!=r){null!=this.unpin&&this.$element.css("top","");var l="affix"+(r?"-"+r:""),h=t.Event(l+".bs.affix");if(this.$element.trigger(h),h.isDefaultPrevented())return;this.affixed=r,this.unpin="bottom"==r?this.getPinnedOffset():null,this.$element.removeClass(i.RESET).addClass(l).trigger(l.replace("affix","affixed")+".bs.affix")}"bottom"==r&&this.$element.offset({top:a-e-s})}};var o=t.fn.affix;t.fn.affix=e,t.fn.affix.Constructor=i,t.fn.affix.noConflict=function(){return t.fn.affix=o,this},t(window).on("load",function(){t('[data-spy="affix"]').each(function(){var i=t(this),o=i.data();o.offset=o.offset||{},null!=o.offsetBottom&&(o.offset.bottom=o.offsetBottom),null!=o.offsetTop&&(o.offset.top=o.offsetTop),e.call(i,o)})})}(jQuery),+function(t){"use strict";function e(e){var i,o=e.attr("data-target")||(i=e.attr("href"))&&i.replace(/.*(?=#[^\s]+$)/,"");return t(o)}function i(e){return this.each(function(){var i=t(this),n=i.data("bs.collapse"),s=t.extend({},o.DEFAULTS,i.data(),"object"==typeof e&&e);!n&&s.toggle&&/show|hide/.test(e)&&(s.toggle=!1),n||i.data("bs.collapse",n=new o(this,s)),"string"==typeof e&&n[e]()})}var o=function(e,i){this.$element=t(e),this.options=t.extend({},o.DEFAULTS,i),this.$trigger=t('[data-toggle="collapse"][href="#'+e.id+'"],[data-toggle="collapse"][data-target="#'+e.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};o.VERSION="3.3.7",o.TRANSITION_DURATION=350,o.DEFAULTS={toggle:!0},o.prototype.dimension=function(){var t=this.$element.hasClass("width");return t?"width":"height"},o.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var e,n=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(n&&n.length&&(e=n.data("bs.collapse"),e&&e.transitioning))){var s=t.Event("show.bs.collapse");if(this.$element.trigger(s),!s.isDefaultPrevented()){n&&n.length&&(i.call(n,"hide"),e||n.data("bs.collapse",null));var a=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[a](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var r=function(){this.$element.removeClass("collapsing").addClass("collapse in")[a](""),this.transitioning=0, -this.$element.trigger("shown.bs.collapse")};if(!t.support.transition)return r.call(this);var l=t.camelCase(["scroll",a].join("-"));this.$element.one("bsTransitionEnd",t.proxy(r,this)).emulateTransitionEnd(o.TRANSITION_DURATION)[a](this.$element[0][l])}}}},o.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var e=t.Event("hide.bs.collapse");if(this.$element.trigger(e),!e.isDefaultPrevented()){var i=this.dimension();this.$element[i](this.$element[i]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var n=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return t.support.transition?void this.$element[i](0).one("bsTransitionEnd",t.proxy(n,this)).emulateTransitionEnd(o.TRANSITION_DURATION):n.call(this)}}},o.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},o.prototype.getParent=function(){return t(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(t.proxy(function(i,o){var n=t(o);this.addAriaAndCollapsedClass(e(n),n)},this)).end()},o.prototype.addAriaAndCollapsedClass=function(t,e){var i=t.hasClass("in");t.attr("aria-expanded",i),e.toggleClass("collapsed",!i).attr("aria-expanded",i)};var n=t.fn.collapse;t.fn.collapse=i,t.fn.collapse.Constructor=o,t.fn.collapse.noConflict=function(){return t.fn.collapse=n,this},t(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(o){var n=t(this);n.attr("data-target")||o.preventDefault();var s=e(n),a=s.data("bs.collapse"),r=a?"toggle":n.data();i.call(s,r)})}(jQuery),+function(t){"use strict";function e(i,o){this.$body=t(document.body),this.$scrollElement=t(t(i).is(document.body)?window:i),this.options=t.extend({},e.DEFAULTS,o),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",t.proxy(this.process,this)),this.refresh(),this.process()}function i(i){return this.each(function(){var o=t(this),n=o.data("bs.scrollspy"),s="object"==typeof i&&i;n||o.data("bs.scrollspy",n=new e(this,s)),"string"==typeof i&&n[i]()})}e.VERSION="3.3.7",e.DEFAULTS={offset:10},e.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},e.prototype.refresh=function(){var e=this,i="offset",o=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),t.isWindow(this.$scrollElement[0])||(i="position",o=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var e=t(this),n=e.data("target")||e.attr("href"),s=/^#./.test(n)&&t(n);return s&&s.length&&s.is(":visible")&&[[s[i]().top+o,n]]||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]),e.targets.push(this[1])})},e.prototype.process=function(){var t,e=this.$scrollElement.scrollTop()+this.options.offset,i=this.getScrollHeight(),o=this.options.offset+i-this.$scrollElement.height(),n=this.offsets,s=this.targets,a=this.activeTarget;if(this.scrollHeight!=i&&this.refresh(),e>=o)return a!=(t=s[s.length-1])&&this.activate(t);if(a&&e=n[t]&&(void 0===n[t+1]||e Keyword <]*/ -.highlight .o { color: #666666 } /* Operator */ -.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */ -.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */ -.highlight .cp { color: #007020 } /* Comment.Preproc */ -.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */ -.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */ -.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */ -.highlight .gd { color: #A00000 } /* Generic.Deleted */ -.highlight .ge { font-style: italic } /* Generic.Emph */ -.highlight .gr { color: #FF0000 } /* Generic.Error */ -.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */ -.highlight .gi { color: #00A000 } /* Generic.Inserted */ -.highlight .go { color: #333333 } /* Generic.Output */ -.highlight .gp { color: #c65d09; font-weight: bold } /* Generic.Prompt */ -.highlight .gs { font-weight: bold } /* Generic.Strong */ -.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ -.highlight .gt { color: #0044DD } /* Generic.Traceback */ -.highlight .kc { color: #007020; font-weight: bold } /* Keyword.Constant */ -.highlight .kd { color: #007020; font-weight: bold } /* Keyword.Declaration */ -.highlight .kn { color: #007020; font-weight: bold } /* Keyword.Namespace */ -.highlight .kp { color: #007020 } /* Keyword.Pseudo */ -.highlight .kr { color: #007020; font-weight: bold } /* Keyword.Reserved */ -.highlight .kt { color: #902000 } /* Keyword.Type */ -.highlight .m { color: #208050 } /* Literal.Number */ -.highlight .s { color: #4070a0 } /* Literal.String */ -.highlight .na { color: #4070a0 } /* Name.Attribute */ -.highlight .nb { color: #007020 } /* Name.Builtin */ -.highlight .nc { color: #0e84b5; font-weight: bold } /* Name.Class */ -.highlight .no { color: #60add5 } /* Name.Constant */ -.highlight .nd { color: #555555; font-weight: bold } /* Name.Decorator */ -.highlight .ni { color: #d55537; font-weight: bold } /* Name.Entity */ -.highlight .ne { color: #007020 } /* Name.Exception */ -.highlight .nf { color: #06287e } /* Name.Function */ -.highlight .nl { color: #002070; font-weight: bold } /* Name.Label */ -.highlight .nn { color: #0e84b5; font-weight: bold } /* Name.Namespace */ -.highlight .nt { color: #062873; font-weight: bold } /* Name.Tag */ -.highlight .nv { color: #bb60d5 } /* Name.Variable */ -.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */ -.highlight .w { color: #bbbbbb } /* Text.Whitespace */ -.highlight .mb { color: #208050 } /* Literal.Number.Bin */ -.highlight .mf { color: #208050 } /* Literal.Number.Float */ -.highlight .mh { color: #208050 } /* Literal.Number.Hex */ -.highlight .mi { color: #208050 } /* Literal.Number.Integer */ -.highlight .mo { color: #208050 } /* Literal.Number.Oct */ -.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */ -.highlight .sc { color: #4070a0 } /* Literal.String.Char */ -.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */ -.highlight .s2 { color: #4070a0 } /* Literal.String.Double */ -.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */ -.highlight .sh { color: #4070a0 } /* Literal.String.Heredoc */ -.highlight .si { color: #70a0d0; font-style: italic } /* Literal.String.Interpol */ -.highlight .sx { color: #c65d09 } /* Literal.String.Other */ -.highlight .sr { color: #235388 } /* Literal.String.Regex */ -.highlight .s1 { color: #4070a0 } /* Literal.String.Single */ -.highlight .ss { color: #517918 } /* Literal.String.Symbol */ -.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */ -.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */ -.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */ -.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */ -.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */ diff --git a/docs/_static/doctools.js b/docs/_static/doctools.js deleted file mode 100644 index 5654977..0000000 --- a/docs/_static/doctools.js +++ /dev/null @@ -1,287 +0,0 @@ -/* - * doctools.js - * ~~~~~~~~~~~ - * - * Sphinx JavaScript utilities for all documentation. - * - * :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS. - * :license: BSD, see LICENSE for details. - * - */ - -/** - * select a different prefix for underscore - */ -$u = _.noConflict(); - -/** - * make the code below compatible with browsers without - * an installed firebug like debugger -if (!window.console || !console.firebug) { - var names = ["log", "debug", "info", "warn", "error", "assert", "dir", - "dirxml", "group", "groupEnd", "time", "timeEnd", "count", "trace", - "profile", "profileEnd"]; - window.console = {}; - for (var i = 0; i < names.length; ++i) - window.console[names[i]] = function() {}; -} - */ - -/** - * small helper function to urldecode strings - */ -jQuery.urldecode = function(x) { - return decodeURIComponent(x).replace(/\+/g, ' '); -}; - -/** - * small helper function to urlencode strings - */ -jQuery.urlencode = encodeURIComponent; - -/** - * This function returns the parsed url parameters of the - * current request. Multiple values per key are supported, - * it will always return arrays of strings for the value parts. - */ -jQuery.getQueryParameters = function(s) { - if (typeof s == 'undefined') - s = document.location.search; - var parts = s.substr(s.indexOf('?') + 1).split('&'); - var result = {}; - for (var i = 0; i < parts.length; i++) { - var tmp = parts[i].split('=', 2); - var key = jQuery.urldecode(tmp[0]); - var value = jQuery.urldecode(tmp[1]); - if (key in result) - result[key].push(value); - else - result[key] = [value]; - } - return result; -}; - -/** - * highlight a given string on a jquery object by wrapping it in - * span elements with the given class name. - */ -jQuery.fn.highlightText = function(text, className) { - function highlight(node) { - if (node.nodeType == 3) { - var val = node.nodeValue; - var pos = val.toLowerCase().indexOf(text); - if (pos >= 0 && !jQuery(node.parentNode).hasClass(className)) { - var span = document.createElement("span"); - span.className = className; - span.appendChild(document.createTextNode(val.substr(pos, text.length))); - node.parentNode.insertBefore(span, node.parentNode.insertBefore( - document.createTextNode(val.substr(pos + text.length)), - node.nextSibling)); - node.nodeValue = val.substr(0, pos); - } - } - else if (!jQuery(node).is("button, select, textarea")) { - jQuery.each(node.childNodes, function() { - highlight(this); - }); - } - } - return this.each(function() { - highlight(this); - }); -}; - -/* - * backward compatibility for jQuery.browser - * This will be supported until firefox bug is fixed. - */ -if (!jQuery.browser) { - jQuery.uaMatch = function(ua) { - ua = ua.toLowerCase(); - - var match = /(chrome)[ \/]([\w.]+)/.exec(ua) || - /(webkit)[ \/]([\w.]+)/.exec(ua) || - /(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) || - /(msie) ([\w.]+)/.exec(ua) || - ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) || - []; - - return { - browser: match[ 1 ] || "", - version: match[ 2 ] || "0" - }; - }; - jQuery.browser = {}; - jQuery.browser[jQuery.uaMatch(navigator.userAgent).browser] = true; -} - -/** - * Small JavaScript module for the documentation. - */ -var Documentation = { - - init : function() { - this.fixFirefoxAnchorBug(); - this.highlightSearchWords(); - this.initIndexTable(); - - }, - - /** - * i18n support - */ - TRANSLATIONS : {}, - PLURAL_EXPR : function(n) { return n == 1 ? 0 : 1; }, - LOCALE : 'unknown', - - // gettext and ngettext don't access this so that the functions - // can safely bound to a different name (_ = Documentation.gettext) - gettext : function(string) { - var translated = Documentation.TRANSLATIONS[string]; - if (typeof translated == 'undefined') - return string; - return (typeof translated == 'string') ? translated : translated[0]; - }, - - ngettext : function(singular, plural, n) { - var translated = Documentation.TRANSLATIONS[singular]; - if (typeof translated == 'undefined') - return (n == 1) ? singular : plural; - return translated[Documentation.PLURALEXPR(n)]; - }, - - addTranslations : function(catalog) { - for (var key in catalog.messages) - this.TRANSLATIONS[key] = catalog.messages[key]; - this.PLURAL_EXPR = new Function('n', 'return +(' + catalog.plural_expr + ')'); - this.LOCALE = catalog.locale; - }, - - /** - * add context elements like header anchor links - */ - addContextElements : function() { - $('div[id] > :header:first').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this headline')). - appendTo(this); - }); - $('dt[id]').each(function() { - $('\u00B6'). - attr('href', '#' + this.id). - attr('title', _('Permalink to this definition')). - appendTo(this); - }); - }, - - /** - * workaround a firefox stupidity - * see: https://bugzilla.mozilla.org/show_bug.cgi?id=645075 - */ - fixFirefoxAnchorBug : function() { - if (document.location.hash) - window.setTimeout(function() { - document.location.href += ''; - }, 10); - }, - - /** - * highlight the search words provided in the url in the text - */ - highlightSearchWords : function() { - var params = $.getQueryParameters(); - var terms = (params.highlight) ? params.highlight[0].split(/\s+/) : []; - if (terms.length) { - var body = $('div.body'); - if (!body.length) { - body = $('body'); - } - window.setTimeout(function() { - $.each(terms, function() { - body.highlightText(this.toLowerCase(), 'highlighted'); - }); - }, 10); - $('') - .appendTo($('#searchbox')); - } - }, - - /** - * init the domain index toggle buttons - */ - initIndexTable : function() { - var togglers = $('img.toggler').click(function() { - var src = $(this).attr('src'); - var idnum = $(this).attr('id').substr(7); - $('tr.cg-' + idnum).toggle(); - if (src.substr(-9) == 'minus.png') - $(this).attr('src', src.substr(0, src.length-9) + 'plus.png'); - else - $(this).attr('src', src.substr(0, src.length-8) + 'minus.png'); - }).css('display', ''); - if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) { - togglers.click(); - } - }, - - /** - * helper function to hide the search marks again - */ - hideSearchWords : function() { - $('#searchbox .highlight-link').fadeOut(300); - $('span.highlighted').removeClass('highlighted'); - }, - - /** - * make the url absolute - */ - makeURL : function(relativeURL) { - return DOCUMENTATION_OPTIONS.URL_ROOT + '/' + relativeURL; - }, - - /** - * get the current relative url - */ - getCurrentURL : function() { - var path = document.location.pathname; - var parts = path.split(/\//); - $.each(DOCUMENTATION_OPTIONS.URL_ROOT.split(/\//), function() { - if (this == '..') - parts.pop(); - }); - var url = parts.join('/'); - return path.substring(url.lastIndexOf('/') + 1, path.length - 1); - }, - - initOnKeyListeners: function() { - $(document).keyup(function(event) { - var activeElementType = document.activeElement.tagName; - // don't navigate when in search box or textarea - if (activeElementType !== 'TEXTAREA' && activeElementType !== 'INPUT' && activeElementType !== 'SELECT') { - switch (event.keyCode) { - case 37: // left - var prevHref = $('link[rel="prev"]').prop('href'); - if (prevHref) { - window.location.href = prevHref; - return false; - } - case 39: // right - var nextHref = $('link[rel="next"]').prop('href'); - if (nextHref) { - window.location.href = nextHref; - return false; - } - } - } - }); - } -}; - -// quick alias for translations -_ = Documentation.gettext; - -$(document).ready(function() { - Documentation.init(); -}); \ No newline at end of file diff --git a/docs/_static/down-pressed.png b/docs/_static/down-pressed.png deleted file mode 100644 index 5756c8c..0000000 Binary files a/docs/_static/down-pressed.png and /dev/null differ diff --git a/docs/_static/down.png b/docs/_static/down.png deleted file mode 100644 index 1b3bdad..0000000 Binary files a/docs/_static/down.png and /dev/null differ diff --git a/docs/_static/favicon.png b/docs/_static/favicon.png deleted file mode 100644 index 2044a89..0000000 Binary files a/docs/_static/favicon.png and /dev/null differ diff --git a/docs/_static/favicon.svg b/docs/_static/favicon.svg deleted file mode 100644 index 0722d79..0000000 --- a/docs/_static/favicon.svg +++ /dev/null @@ -1 +0,0 @@ -favicon!! \ No newline at end of file diff --git a/docs/_static/file.png b/docs/_static/file.png deleted file mode 100644 index a858a41..0000000 Binary files a/docs/_static/file.png and /dev/null differ diff --git a/docs/_static/fira-code/eot/FiraCode-Bold.eot b/docs/_static/fira-code/eot/FiraCode-Bold.eot deleted file mode 100644 index 87e9519..0000000 Binary files a/docs/_static/fira-code/eot/FiraCode-Bold.eot and /dev/null differ diff --git a/docs/_static/fira-code/eot/FiraCode-Light.eot b/docs/_static/fira-code/eot/FiraCode-Light.eot deleted file mode 100644 index cef0cc0..0000000 Binary files a/docs/_static/fira-code/eot/FiraCode-Light.eot and /dev/null differ diff --git a/docs/_static/fira-code/eot/FiraCode-Medium.eot b/docs/_static/fira-code/eot/FiraCode-Medium.eot deleted file mode 100644 index 4f96e7f..0000000 Binary files a/docs/_static/fira-code/eot/FiraCode-Medium.eot and /dev/null differ diff --git a/docs/_static/fira-code/eot/FiraCode-Regular.eot b/docs/_static/fira-code/eot/FiraCode-Regular.eot deleted file mode 100644 index 46fb1b7..0000000 Binary files a/docs/_static/fira-code/eot/FiraCode-Regular.eot and /dev/null differ diff --git a/docs/_static/fira-code/fira_code.css b/docs/_static/fira-code/fira_code.css deleted file mode 100644 index f8e4a5b..0000000 --- a/docs/_static/fira-code/fira_code.css +++ /dev/null @@ -1,43 +0,0 @@ -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Light.eot'); - src: url('eot/FiraCode-Light.eot') format('embedded-opentype'), - url('woff2/FiraCode-Light.woff2') format('woff2'), - url('woff/FiraCode-Light.woff') format('woff'), - url('ttf/FiraCode-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Regular.eot'); - src: url('eot/FiraCode-Regular.eot') format('embedded-opentype'), - url('woff2/FiraCode-Regular.woff2') format('woff2'), - url('woff/FiraCode-Regular.woff') format('woff'), - url('ttf/FiraCode-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Medium.eot'); - src: url('eot/FiraCode-Medium.eot') format('embedded-opentype'), - url('woff2/FiraCode-Medium.woff2') format('woff2'), - url('woff/FiraCode-Medium.woff') format('woff'), - url('ttf/FiraCode-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Code'; - src: url('eot/FiraCode-Bold.eot'); - src: url('eot/FiraCode-Bold.eot') format('embedded-opentype'), - url('woff2/FiraCode-Bold.woff2') format('woff2'), - url('woff/FiraCode-Bold.woff') format('woff'), - url('ttf/FiraCode-Bold.ttf') format('truetype'); - font-weight: 700; - font-style: normal; -} \ No newline at end of file diff --git a/docs/_static/fira-code/otf/FiraCode-Bold.otf b/docs/_static/fira-code/otf/FiraCode-Bold.otf deleted file mode 100644 index 37fe2b5..0000000 Binary files a/docs/_static/fira-code/otf/FiraCode-Bold.otf and /dev/null differ diff --git a/docs/_static/fira-code/otf/FiraCode-Light.otf b/docs/_static/fira-code/otf/FiraCode-Light.otf deleted file mode 100644 index 1eb728b..0000000 Binary files a/docs/_static/fira-code/otf/FiraCode-Light.otf and /dev/null differ diff --git a/docs/_static/fira-code/otf/FiraCode-Medium.otf b/docs/_static/fira-code/otf/FiraCode-Medium.otf deleted file mode 100644 index 89f0e33..0000000 Binary files a/docs/_static/fira-code/otf/FiraCode-Medium.otf and /dev/null differ diff --git a/docs/_static/fira-code/otf/FiraCode-Regular.otf b/docs/_static/fira-code/otf/FiraCode-Regular.otf deleted file mode 100644 index 6a4f953..0000000 Binary files a/docs/_static/fira-code/otf/FiraCode-Regular.otf and /dev/null differ diff --git a/docs/_static/fira-code/otf/FiraCode-Retina.otf b/docs/_static/fira-code/otf/FiraCode-Retina.otf deleted file mode 100644 index 82210b5..0000000 Binary files a/docs/_static/fira-code/otf/FiraCode-Retina.otf and /dev/null differ diff --git a/docs/_static/fira-code/specimen.html b/docs/_static/fira-code/specimen.html deleted file mode 100644 index f5982fc..0000000 --- a/docs/_static/fira-code/specimen.html +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - Fira Code Specimen - - - - - -
# Fira Code Light - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Regular - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Medium - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
- - -
# Fira Code Bold - -take = (n, [x, ...xs]:list) --> - | n <= 0 => [] - | empty list => [] - | otherwise => [x] ++ take n-1, xs - -last3 = reverse >> take 3 >> reverse
diff --git a/docs/_static/fira-code/ttf/FiraCode-Bold.ttf b/docs/_static/fira-code/ttf/FiraCode-Bold.ttf deleted file mode 100644 index b919d6b..0000000 Binary files a/docs/_static/fira-code/ttf/FiraCode-Bold.ttf and /dev/null differ diff --git a/docs/_static/fira-code/ttf/FiraCode-Light.ttf b/docs/_static/fira-code/ttf/FiraCode-Light.ttf deleted file mode 100644 index 50fe033..0000000 Binary files a/docs/_static/fira-code/ttf/FiraCode-Light.ttf and /dev/null differ diff --git a/docs/_static/fira-code/ttf/FiraCode-Medium.ttf b/docs/_static/fira-code/ttf/FiraCode-Medium.ttf deleted file mode 100644 index 88a6750..0000000 Binary files a/docs/_static/fira-code/ttf/FiraCode-Medium.ttf and /dev/null differ diff --git a/docs/_static/fira-code/ttf/FiraCode-Regular.ttf b/docs/_static/fira-code/ttf/FiraCode-Regular.ttf deleted file mode 100644 index 575c21b..0000000 Binary files a/docs/_static/fira-code/ttf/FiraCode-Regular.ttf and /dev/null differ diff --git a/docs/_static/fira-code/ttf/FiraCode-Retina.ttf b/docs/_static/fira-code/ttf/FiraCode-Retina.ttf deleted file mode 100644 index 95fbbc6..0000000 Binary files a/docs/_static/fira-code/ttf/FiraCode-Retina.ttf and /dev/null differ diff --git a/docs/_static/fira-code/woff/FiraCode-Bold.woff b/docs/_static/fira-code/woff/FiraCode-Bold.woff deleted file mode 100644 index 3e8a8e6..0000000 Binary files a/docs/_static/fira-code/woff/FiraCode-Bold.woff and /dev/null differ diff --git a/docs/_static/fira-code/woff/FiraCode-Light.woff b/docs/_static/fira-code/woff/FiraCode-Light.woff deleted file mode 100644 index 6d2c9e4..0000000 Binary files a/docs/_static/fira-code/woff/FiraCode-Light.woff and /dev/null differ diff --git a/docs/_static/fira-code/woff/FiraCode-Medium.woff b/docs/_static/fira-code/woff/FiraCode-Medium.woff deleted file mode 100644 index a4c30f7..0000000 Binary files a/docs/_static/fira-code/woff/FiraCode-Medium.woff and /dev/null differ diff --git a/docs/_static/fira-code/woff/FiraCode-Regular.woff b/docs/_static/fira-code/woff/FiraCode-Regular.woff deleted file mode 100644 index 7233c3f..0000000 Binary files a/docs/_static/fira-code/woff/FiraCode-Regular.woff and /dev/null differ diff --git a/docs/_static/fira-code/woff2/FiraCode-Bold.woff2 b/docs/_static/fira-code/woff2/FiraCode-Bold.woff2 deleted file mode 100644 index 7dc70b7..0000000 Binary files a/docs/_static/fira-code/woff2/FiraCode-Bold.woff2 and /dev/null differ diff --git a/docs/_static/fira-code/woff2/FiraCode-Light.woff2 b/docs/_static/fira-code/woff2/FiraCode-Light.woff2 deleted file mode 100644 index 1938cfc..0000000 Binary files a/docs/_static/fira-code/woff2/FiraCode-Light.woff2 and /dev/null differ diff --git a/docs/_static/fira-code/woff2/FiraCode-Medium.woff2 b/docs/_static/fira-code/woff2/FiraCode-Medium.woff2 deleted file mode 100644 index be09f4e..0000000 Binary files a/docs/_static/fira-code/woff2/FiraCode-Medium.woff2 and /dev/null differ diff --git a/docs/_static/fira-code/woff2/FiraCode-Regular.woff2 b/docs/_static/fira-code/woff2/FiraCode-Regular.woff2 deleted file mode 100644 index e93ffe3..0000000 Binary files a/docs/_static/fira-code/woff2/FiraCode-Regular.woff2 and /dev/null differ diff --git a/docs/_static/fira/LICENSE b/docs/_static/fira/LICENSE deleted file mode 100644 index 37c4a30..0000000 --- a/docs/_static/fira/LICENSE +++ /dev/null @@ -1,94 +0,0 @@ -Digitized data copyright (c) 2012-2015, The Mozilla Foundation and Telefonica S.A. -with Reserved Font Name < Fira >, - -This Font Software is licensed under the SIL Open Font License, Version 1.1. -This license is copied below, and is also available with a FAQ at: -http://scripts.sil.org/OFL - - ------------------------------------------------------------ -SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 ------------------------------------------------------------ - -PREAMBLE -The goals of the Open Font License (OFL) are to stimulate worldwide -development of collaborative font projects, to support the font creation -efforts of academic and linguistic communities, and to provide a free and -open framework in which fonts may be shared and improved in partnership -with others. - -The OFL allows the licensed fonts to be used, studied, modified and -redistributed freely as long as they are not sold by themselves. The -fonts, including any derivative works, can be bundled, embedded, -redistributed and/or sold with any software provided that any reserved -names are not used by derivative works. The fonts and derivatives, -however, cannot be released under any other type of license. The -requirement for fonts to remain under this license does not apply -to any document created using the fonts or their derivatives. - -DEFINITIONS -"Font Software" refers to the set of files released by the Copyright -Holder(s) under this license and clearly marked as such. This may -include source files, build scripts and documentation. - -"Reserved Font Name" refers to any names specified as such after the -copyright statement(s). - -"Original Version" refers to the collection of Font Software components as -distributed by the Copyright Holder(s). - -"Modified Version" refers to any derivative made by adding to, deleting, -or substituting -- in part or in whole -- any of the components of the -Original Version, by changing formats or by porting the Font Software to a -new environment. - -"Author" refers to any designer, engineer, programmer, technical -writer or other person who contributed to the Font Software. - -PERMISSION & CONDITIONS -Permission is hereby granted, free of charge, to any person obtaining -a copy of the Font Software, to use, study, copy, merge, embed, modify, -redistribute, and sell modified and unmodified copies of the Font -Software, subject to the following conditions: - -1) Neither the Font Software nor any of its individual components, -in Original or Modified Versions, may be sold by itself. - -2) Original or Modified Versions of the Font Software may be bundled, -redistributed and/or sold with any software, provided that each copy -contains the above copyright notice and this license. These can be -included either as stand-alone text files, human-readable headers or -in the appropriate machine-readable metadata fields within text or -binary files as long as those fields can be easily viewed by the user. - -3) No Modified Version of the Font Software may use the Reserved Font -Name(s) unless explicit written permission is granted by the corresponding -Copyright Holder. This restriction only applies to the primary font name as -presented to the users. - -4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font -Software shall not be used to promote, endorse or advertise any -Modified Version, except to acknowledge the contribution(s) of the -Copyright Holder(s) and the Author(s) or with their explicit written -permission. - -5) The Font Software, modified or unmodified, in part or in whole, -must be distributed entirely under this license, and must not be -distributed under any other license. The requirement for fonts to -remain under this license does not apply to any document created -using the Font Software. - -TERMINATION -This license becomes null and void if any of the above conditions are -not met. - -DISCLAIMER -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE -COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/docs/_static/fira/eot/FiraMono-Bold.eot b/docs/_static/fira/eot/FiraMono-Bold.eot deleted file mode 100644 index 87013fa..0000000 Binary files a/docs/_static/fira/eot/FiraMono-Bold.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraMono-Medium.eot b/docs/_static/fira/eot/FiraMono-Medium.eot deleted file mode 100644 index 41a3d10..0000000 Binary files a/docs/_static/fira/eot/FiraMono-Medium.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraMono-Regular.eot b/docs/_static/fira/eot/FiraMono-Regular.eot deleted file mode 100644 index 4c5eba2..0000000 Binary files a/docs/_static/fira/eot/FiraMono-Regular.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Bold.eot b/docs/_static/fira/eot/FiraSans-Bold.eot deleted file mode 100644 index f9228cb..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Bold.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-BoldItalic.eot b/docs/_static/fira/eot/FiraSans-BoldItalic.eot deleted file mode 100644 index f91569a..0000000 Binary files a/docs/_static/fira/eot/FiraSans-BoldItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Book.eot b/docs/_static/fira/eot/FiraSans-Book.eot deleted file mode 100644 index 007bf7f..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Book.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-BookItalic.eot b/docs/_static/fira/eot/FiraSans-BookItalic.eot deleted file mode 100644 index bcb5291..0000000 Binary files a/docs/_static/fira/eot/FiraSans-BookItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Eight.eot b/docs/_static/fira/eot/FiraSans-Eight.eot deleted file mode 100644 index 485ff3a..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Eight.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-EightItalic.eot b/docs/_static/fira/eot/FiraSans-EightItalic.eot deleted file mode 100644 index 73ec42a..0000000 Binary files a/docs/_static/fira/eot/FiraSans-EightItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-ExtraBold.eot b/docs/_static/fira/eot/FiraSans-ExtraBold.eot deleted file mode 100644 index 3729e93..0000000 Binary files a/docs/_static/fira/eot/FiraSans-ExtraBold.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-ExtraBoldItalic.eot b/docs/_static/fira/eot/FiraSans-ExtraBoldItalic.eot deleted file mode 100644 index dc812bf..0000000 Binary files a/docs/_static/fira/eot/FiraSans-ExtraBoldItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-ExtraLight.eot b/docs/_static/fira/eot/FiraSans-ExtraLight.eot deleted file mode 100644 index c8776ef..0000000 Binary files a/docs/_static/fira/eot/FiraSans-ExtraLight.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-ExtraLightItalic.eot b/docs/_static/fira/eot/FiraSans-ExtraLightItalic.eot deleted file mode 100644 index 211c8fc..0000000 Binary files a/docs/_static/fira/eot/FiraSans-ExtraLightItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Four.eot b/docs/_static/fira/eot/FiraSans-Four.eot deleted file mode 100644 index 2c21641..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Four.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-FourItalic.eot b/docs/_static/fira/eot/FiraSans-FourItalic.eot deleted file mode 100644 index aa16cc8..0000000 Binary files a/docs/_static/fira/eot/FiraSans-FourItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Hair.eot b/docs/_static/fira/eot/FiraSans-Hair.eot deleted file mode 100644 index a1b1f0d..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Hair.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-HairItalic.eot b/docs/_static/fira/eot/FiraSans-HairItalic.eot deleted file mode 100644 index 45b9d9d..0000000 Binary files a/docs/_static/fira/eot/FiraSans-HairItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Heavy.eot b/docs/_static/fira/eot/FiraSans-Heavy.eot deleted file mode 100644 index 6323009..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Heavy.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-HeavyItalic.eot b/docs/_static/fira/eot/FiraSans-HeavyItalic.eot deleted file mode 100644 index c13ae43..0000000 Binary files a/docs/_static/fira/eot/FiraSans-HeavyItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Italic.eot b/docs/_static/fira/eot/FiraSans-Italic.eot deleted file mode 100644 index 0519f1b..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Italic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Light.eot b/docs/_static/fira/eot/FiraSans-Light.eot deleted file mode 100644 index 3f4c7f6..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Light.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-LightItalic.eot b/docs/_static/fira/eot/FiraSans-LightItalic.eot deleted file mode 100644 index b4c103c..0000000 Binary files a/docs/_static/fira/eot/FiraSans-LightItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Medium.eot b/docs/_static/fira/eot/FiraSans-Medium.eot deleted file mode 100644 index 6e0666a..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Medium.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-MediumItalic.eot b/docs/_static/fira/eot/FiraSans-MediumItalic.eot deleted file mode 100644 index 50691ee..0000000 Binary files a/docs/_static/fira/eot/FiraSans-MediumItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Regular.eot b/docs/_static/fira/eot/FiraSans-Regular.eot deleted file mode 100644 index 5605f2a..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Regular.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-SemiBold.eot b/docs/_static/fira/eot/FiraSans-SemiBold.eot deleted file mode 100644 index fa865f9..0000000 Binary files a/docs/_static/fira/eot/FiraSans-SemiBold.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-SemiBoldItalic.eot b/docs/_static/fira/eot/FiraSans-SemiBoldItalic.eot deleted file mode 100644 index 79ebb0d..0000000 Binary files a/docs/_static/fira/eot/FiraSans-SemiBoldItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Thin.eot b/docs/_static/fira/eot/FiraSans-Thin.eot deleted file mode 100644 index ce47de2..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Thin.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-ThinItalic.eot b/docs/_static/fira/eot/FiraSans-ThinItalic.eot deleted file mode 100644 index 68c56c0..0000000 Binary files a/docs/_static/fira/eot/FiraSans-ThinItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Two.eot b/docs/_static/fira/eot/FiraSans-Two.eot deleted file mode 100644 index 99030c4..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Two.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-TwoItalic.eot b/docs/_static/fira/eot/FiraSans-TwoItalic.eot deleted file mode 100644 index a7d47fe..0000000 Binary files a/docs/_static/fira/eot/FiraSans-TwoItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-Ultra.eot b/docs/_static/fira/eot/FiraSans-Ultra.eot deleted file mode 100644 index 9e5a194..0000000 Binary files a/docs/_static/fira/eot/FiraSans-Ultra.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-UltraItalic.eot b/docs/_static/fira/eot/FiraSans-UltraItalic.eot deleted file mode 100644 index 7cc4ac5..0000000 Binary files a/docs/_static/fira/eot/FiraSans-UltraItalic.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-UltraLight.eot b/docs/_static/fira/eot/FiraSans-UltraLight.eot deleted file mode 100644 index 6321f6f..0000000 Binary files a/docs/_static/fira/eot/FiraSans-UltraLight.eot and /dev/null differ diff --git a/docs/_static/fira/eot/FiraSans-UltraLightItalic.eot b/docs/_static/fira/eot/FiraSans-UltraLightItalic.eot deleted file mode 100644 index 8f76781..0000000 Binary files a/docs/_static/fira/eot/FiraSans-UltraLightItalic.eot and /dev/null differ diff --git a/docs/_static/fira/fira.css b/docs/_static/fira/fira.css deleted file mode 100644 index 500412e..0000000 --- a/docs/_static/fira/fira.css +++ /dev/null @@ -1,221 +0,0 @@ -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Hair.eot'); - src: local('Fira Sans Hair'), - url('eot/FiraSans-Hair.eot') format('embedded-opentype'), - url('woff/FiraSans-Hair.woff') format('woff'), - url('ttf/FiraSans-Hair.ttf') format('truetype'); - font-weight: 100; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-HairItalic.eot'); - src: local('Fira Sans Hair Italic'), - url('eot/FiraSans-HairItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-HairItalic.woff') format('woff'), - url('ttf/FiraSans-HairItalic.ttf') format('truetype'); - font-weight: 100; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-UltraLight.eot'); - src: local('Fira Sans UltraLight'), - url('eot/FiraSans-UltraLight.eot') format('embedded-opentype'), - url('woff/FiraSans-UltraLight.woff') format('woff'), - url('ttf/FiraSans-UltraLight.ttf') format('truetype'); - font-weight: 200; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-UltraLightItalic.eot'); - src: local('Fira Sans UltraLight Italic'), - url('eot/FiraSans-UltraLightItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-UltraLightItalic.woff') format('woff'), - url('ttf/FiraSans-UltraLightItalic.ttf') format('truetype'); - font-weight: 200; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Light.eot'); - src: local('Fira Sans Light'), - url('eot/FiraSans-Light.eot') format('embedded-opentype'), - url('woff/FiraSans-Light.woff') format('woff'), - url('ttf/FiraSans-Light.ttf') format('truetype'); - font-weight: 300; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-LightItalic.eot'); - src: local('Fira Sans Light Italic'), - url('eot/FiraSans-LightItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-LightItalic.woff') format('woff'), - url('ttf/FiraSans-LightItalic.ttf') format('truetype'); - font-weight: 300; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Regular.eot'); - src: local('Fira Sans Regular'), - url('eot/FiraSans-Regular.eot') format('embedded-opentype'), - url('woff/FiraSans-Regular.woff') format('woff'), - url('ttf/FiraSans-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Italic.eot'); - src: local('Fira Sans Regular Italic'), - url('eot/FiraSans-Italic.eot') format('embedded-opentype'), - url('woff/FiraSans-Italic.woff') format('woff'), - url('ttf/FiraSans-Italic.ttf') format('truetype'); - font-weight: 400; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Medium.eot'); - src: local('Fira Sans Medium'), - url('eot/FiraSans-Medium.eot') format('embedded-opentype'), - url('woff/FiraSans-Medium.woff') format('woff'), - url('ttf/FiraSans-Medium.ttf') format('truetype'); - font-weight: 500; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-MediumItalic.eot'); - src: local('Fira Sans Medium Italic'), - url('eot/FiraSans-MediumItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-MediumItalic.woff') format('woff'), - url('ttf/FiraSans-MediumItalic.ttf') format('truetype'); - font-weight: 500; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-SemiBold.eot'); - src: local('Fira Sans SemiBold'), - url('eot/FiraSans-SemiBold.eot') format('embedded-opentype'), - url('woff/FiraSans-SemiBold.woff') format('woff'), - url('ttf/FiraSans-SemiBold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-SemiBoldItalic.eot'); - src: local('Fira Sans SemiBold Italic'), - url('eot/FiraSans-SemiBoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-SemiBoldItalic.woff') format('woff'), - url('ttf/FiraSans-SemiBoldItalic.ttf') format('truetype'); - font-weight: 600; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Bold.eot'); - src: local('Fira Sans Bold'), - url('eot/FiraSans-Bold.eot') format('embedded-opentype'), - url('woff/FiraSans-Bold.woff') format('woff'), - url('ttf/FiraSans-Bold.ttf') format('truetype'); - font-weight: 700; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-BoldItalic.eot'); - src: local('Fira Sans Bold Italic'), - url('eot/FiraSans-BoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-BoldItalic.woff') format('woff'), - url('ttf/FiraSans-BoldItalic.ttf') format('truetype'); - font-weight: 700; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-ExtraBold.eot'); - src: local('Fira Sans ExtraBold'), - url('eot/FiraSans-ExtraBold.eot') format('embedded-opentype'), - url('woff/FiraSans-ExtraBold.woff') format('woff'), - url('ttf/FiraSans-ExtraBold.ttf') format('truetype'); - font-weight: 800; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-ExtraBoldItalic.eot'); - src: local('Fira Sans ExtraBold Italic'), - url('eot/FiraSans-ExtraBoldItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-ExtraBoldItalic.woff') format('woff'), - url('ttf/FiraSans-ExtraBoldItalic.ttf') format('truetype'); - font-weight: 800; - font-style: italic; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-Heavy.eot'); - src: local('Fira Sans Heavy'), - url('eot/FiraSans-Heavy.eot') format('embedded-opentype'), - url('woff/FiraSans-Heavy.woff') format('woff'), - url('ttf/FiraSans-Heavy.ttf') format('truetype'); - font-weight: 900; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Sans'; - src: url('eot/FiraSans-HeavyItalic.eot'); - src: local('Fira Sans Heavy Italic'), - url('eot/FiraSans-HeavyItalic.eot') format('embedded-opentype'), - url('woff/FiraSans-HeavyItalic.woff') format('woff'), - url('ttf/FiraSans-HeavyItalic.ttf') format('truetype'); - font-weight: 900; - font-style: italic; -} - - -@font-face{ - font-family: 'Fira Mono'; - src: url('eot/FiraMono-Regular.eot'); - src: local('Fira Mono'), - url('eot/FiraMono-Regular.eot') format('embedded-opentype'), - url('woff/FiraMono-Regular.woff') format('woff'), - url('ttf/FiraMono-Regular.ttf') format('truetype'); - font-weight: 400; - font-style: normal; -} - -@font-face{ - font-family: 'Fira Mono'; - src: url('eot/FiraMono-Bold.eot'); - src: local('Fira Mono Bold'), - url('eot/FiraMono-Bold.eot') format('embedded-opentype'), - url('woff/FiraMono-Bold.woff') format('woff'), - url('ttf/FiraMono-Bold.ttf') format('truetype'); - font-weight: 600; - font-style: normal; -} - diff --git a/docs/_static/fira/index.html b/docs/_static/fira/index.html deleted file mode 100644 index 092ea15..0000000 --- a/docs/_static/fira/index.html +++ /dev/null @@ -1,232 +0,0 @@ - - - - - - Fira - - - - -
-

Fira Sans

- - -

Hair

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

UltraLight

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Light

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Regular

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Medium

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

SemiBold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Bold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

ExtraBold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Heavy

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -
-
-
- -

Fira Mono

- -

Regular

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Medium

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- -

Bold

-

- The quick brown Firefox jumps over the lazy dog.
- abcdefghijklmnopqrstuvwxyz
- ABCDEFGHIJKLMNOPQRSTUVWXYZ
- 1234567890!@#$%^&*()`~{}[]+=:;'"‘’“” -

- - Fira on GitHub - -
- -
- - diff --git a/docs/_static/fira/otf/FiraMono-Bold.otf b/docs/_static/fira/otf/FiraMono-Bold.otf deleted file mode 100644 index 4ad726a..0000000 Binary files a/docs/_static/fira/otf/FiraMono-Bold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraMono-Medium.otf b/docs/_static/fira/otf/FiraMono-Medium.otf deleted file mode 100644 index 4f208e9..0000000 Binary files a/docs/_static/fira/otf/FiraMono-Medium.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraMono-Regular.otf b/docs/_static/fira/otf/FiraMono-Regular.otf deleted file mode 100644 index c30b25b..0000000 Binary files a/docs/_static/fira/otf/FiraMono-Regular.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Bold.otf b/docs/_static/fira/otf/FiraSans-Bold.otf deleted file mode 100644 index 3e586b4..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Bold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-BoldItalic.otf b/docs/_static/fira/otf/FiraSans-BoldItalic.otf deleted file mode 100644 index 211d6e8..0000000 Binary files a/docs/_static/fira/otf/FiraSans-BoldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Book.otf b/docs/_static/fira/otf/FiraSans-Book.otf deleted file mode 100644 index 20bc9a1..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Book.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-BookItalic.otf b/docs/_static/fira/otf/FiraSans-BookItalic.otf deleted file mode 100644 index 948c96f..0000000 Binary files a/docs/_static/fira/otf/FiraSans-BookItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Eight.otf b/docs/_static/fira/otf/FiraSans-Eight.otf deleted file mode 100644 index a06e1f6..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Eight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-EightItalic.otf b/docs/_static/fira/otf/FiraSans-EightItalic.otf deleted file mode 100644 index 162375d..0000000 Binary files a/docs/_static/fira/otf/FiraSans-EightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-ExtraBold.otf b/docs/_static/fira/otf/FiraSans-ExtraBold.otf deleted file mode 100644 index c356745..0000000 Binary files a/docs/_static/fira/otf/FiraSans-ExtraBold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-ExtraBoldItalic.otf b/docs/_static/fira/otf/FiraSans-ExtraBoldItalic.otf deleted file mode 100644 index 965e330..0000000 Binary files a/docs/_static/fira/otf/FiraSans-ExtraBoldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-ExtraLight.otf b/docs/_static/fira/otf/FiraSans-ExtraLight.otf deleted file mode 100644 index ca30971..0000000 Binary files a/docs/_static/fira/otf/FiraSans-ExtraLight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-ExtraLightItalic.otf b/docs/_static/fira/otf/FiraSans-ExtraLightItalic.otf deleted file mode 100644 index dc6a254..0000000 Binary files a/docs/_static/fira/otf/FiraSans-ExtraLightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Four.otf b/docs/_static/fira/otf/FiraSans-Four.otf deleted file mode 100644 index 97afc1c..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Four.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-FourItalic.otf b/docs/_static/fira/otf/FiraSans-FourItalic.otf deleted file mode 100644 index a8b18f0..0000000 Binary files a/docs/_static/fira/otf/FiraSans-FourItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Hair.otf b/docs/_static/fira/otf/FiraSans-Hair.otf deleted file mode 100644 index 1853f5e..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Hair.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-HairItalic.otf b/docs/_static/fira/otf/FiraSans-HairItalic.otf deleted file mode 100644 index ddc2a23..0000000 Binary files a/docs/_static/fira/otf/FiraSans-HairItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Heavy.otf b/docs/_static/fira/otf/FiraSans-Heavy.otf deleted file mode 100644 index 1bd9320..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Heavy.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-HeavyItalic.otf b/docs/_static/fira/otf/FiraSans-HeavyItalic.otf deleted file mode 100644 index a748090..0000000 Binary files a/docs/_static/fira/otf/FiraSans-HeavyItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Italic.otf b/docs/_static/fira/otf/FiraSans-Italic.otf deleted file mode 100644 index b5b9e85..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Italic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Light.otf b/docs/_static/fira/otf/FiraSans-Light.otf deleted file mode 100644 index 02fa607..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Light.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-LightItalic.otf b/docs/_static/fira/otf/FiraSans-LightItalic.otf deleted file mode 100644 index 6ccf6f5..0000000 Binary files a/docs/_static/fira/otf/FiraSans-LightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Medium.otf b/docs/_static/fira/otf/FiraSans-Medium.otf deleted file mode 100644 index 4bc55e9..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Medium.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-MediumItalic.otf b/docs/_static/fira/otf/FiraSans-MediumItalic.otf deleted file mode 100644 index d443b46..0000000 Binary files a/docs/_static/fira/otf/FiraSans-MediumItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Regular.otf b/docs/_static/fira/otf/FiraSans-Regular.otf deleted file mode 100644 index fad0098..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Regular.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-SemiBold.otf b/docs/_static/fira/otf/FiraSans-SemiBold.otf deleted file mode 100644 index f077fff..0000000 Binary files a/docs/_static/fira/otf/FiraSans-SemiBold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-SemiBoldItalic.otf b/docs/_static/fira/otf/FiraSans-SemiBoldItalic.otf deleted file mode 100644 index 661511a..0000000 Binary files a/docs/_static/fira/otf/FiraSans-SemiBoldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Thin.otf b/docs/_static/fira/otf/FiraSans-Thin.otf deleted file mode 100644 index 259686f..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Thin.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-ThinItalic.otf b/docs/_static/fira/otf/FiraSans-ThinItalic.otf deleted file mode 100644 index 20da974..0000000 Binary files a/docs/_static/fira/otf/FiraSans-ThinItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Two.otf b/docs/_static/fira/otf/FiraSans-Two.otf deleted file mode 100644 index e2c7f6d..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Two.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-TwoItalic.otf b/docs/_static/fira/otf/FiraSans-TwoItalic.otf deleted file mode 100644 index f62e99a..0000000 Binary files a/docs/_static/fira/otf/FiraSans-TwoItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-Ultra.otf b/docs/_static/fira/otf/FiraSans-Ultra.otf deleted file mode 100644 index c44ed09..0000000 Binary files a/docs/_static/fira/otf/FiraSans-Ultra.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-UltraItalic.otf b/docs/_static/fira/otf/FiraSans-UltraItalic.otf deleted file mode 100644 index c448514..0000000 Binary files a/docs/_static/fira/otf/FiraSans-UltraItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-UltraLight.otf b/docs/_static/fira/otf/FiraSans-UltraLight.otf deleted file mode 100644 index 6328b6f..0000000 Binary files a/docs/_static/fira/otf/FiraSans-UltraLight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSans-UltraLightItalic.otf b/docs/_static/fira/otf/FiraSans-UltraLightItalic.otf deleted file mode 100644 index 9aba4e0..0000000 Binary files a/docs/_static/fira/otf/FiraSans-UltraLightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Bold.otf b/docs/_static/fira/otf/FiraSansCondensed-Bold.otf deleted file mode 100644 index 94e4925..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Bold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-BoldItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-BoldItalic.otf deleted file mode 100644 index 6786cee..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-BoldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Book.otf b/docs/_static/fira/otf/FiraSansCondensed-Book.otf deleted file mode 100644 index 51d3a4a..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Book.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-BookItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-BookItalic.otf deleted file mode 100644 index 9407a02..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-BookItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Eight.otf b/docs/_static/fira/otf/FiraSansCondensed-Eight.otf deleted file mode 100644 index e56c9c0..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Eight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-EightItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-EightItalic.otf deleted file mode 100644 index 792620d..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-EightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-ExtraBold.otf b/docs/_static/fira/otf/FiraSansCondensed-ExtraBold.otf deleted file mode 100644 index 661f3f4..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-ExtraBold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-ExtraLight.otf b/docs/_static/fira/otf/FiraSansCondensed-ExtraLight.otf deleted file mode 100644 index dd7c0e5..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-ExtraLight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf deleted file mode 100644 index 53add7c..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-ExtraLightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf deleted file mode 100644 index 9409996..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-ExtraboldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Four.otf b/docs/_static/fira/otf/FiraSansCondensed-Four.otf deleted file mode 100644 index f96f35a..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Four.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-FourItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-FourItalic.otf deleted file mode 100644 index a99cf18..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-FourItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Hair.otf b/docs/_static/fira/otf/FiraSansCondensed-Hair.otf deleted file mode 100644 index 48ac39a..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Hair.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-HairItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-HairItalic.otf deleted file mode 100644 index 8ed7bf3..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-HairItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Heavy.otf b/docs/_static/fira/otf/FiraSansCondensed-Heavy.otf deleted file mode 100644 index 368a0c0..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Heavy.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-HeavyItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-HeavyItalic.otf deleted file mode 100644 index 4cf3ff2..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-HeavyItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Italic.otf b/docs/_static/fira/otf/FiraSansCondensed-Italic.otf deleted file mode 100644 index 4995910..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Italic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Light.otf b/docs/_static/fira/otf/FiraSansCondensed-Light.otf deleted file mode 100644 index 70b907b..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Light.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-LightItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-LightItalic.otf deleted file mode 100644 index 2619acb..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-LightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Medium.otf b/docs/_static/fira/otf/FiraSansCondensed-Medium.otf deleted file mode 100644 index 23abc50..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Medium.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-MediumItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-MediumItalic.otf deleted file mode 100644 index 3fe6121..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-MediumItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Regular.otf b/docs/_static/fira/otf/FiraSansCondensed-Regular.otf deleted file mode 100644 index 7f6d7c1..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Regular.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-SemiBold.otf b/docs/_static/fira/otf/FiraSansCondensed-SemiBold.otf deleted file mode 100644 index 37737d7..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-SemiBold.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-SemiboldItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-SemiboldItalic.otf deleted file mode 100644 index 057912d..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-SemiboldItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Thin.otf b/docs/_static/fira/otf/FiraSansCondensed-Thin.otf deleted file mode 100644 index 55ce585..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Thin.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-ThinItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-ThinItalic.otf deleted file mode 100644 index e8dbaa9..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-ThinItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Two.otf b/docs/_static/fira/otf/FiraSansCondensed-Two.otf deleted file mode 100644 index 2757c49..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Two.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-TwoItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-TwoItalic.otf deleted file mode 100644 index eb25158..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-TwoItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-Ultra.otf b/docs/_static/fira/otf/FiraSansCondensed-Ultra.otf deleted file mode 100644 index 5c10e96..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-Ultra.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-UltraItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-UltraItalic.otf deleted file mode 100644 index a1cf979..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-UltraItalic.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-UltraLight.otf b/docs/_static/fira/otf/FiraSansCondensed-UltraLight.otf deleted file mode 100644 index 12b7188..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-UltraLight.otf and /dev/null differ diff --git a/docs/_static/fira/otf/FiraSansCondensed-UltraLightItalic.otf b/docs/_static/fira/otf/FiraSansCondensed-UltraLightItalic.otf deleted file mode 100644 index 6b0dc2d..0000000 Binary files a/docs/_static/fira/otf/FiraSansCondensed-UltraLightItalic.otf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraMono-Bold.ttf b/docs/_static/fira/ttf/FiraMono-Bold.ttf deleted file mode 100644 index 6d4ffb0..0000000 Binary files a/docs/_static/fira/ttf/FiraMono-Bold.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraMono-Medium.ttf b/docs/_static/fira/ttf/FiraMono-Medium.ttf deleted file mode 100644 index 1e95ced..0000000 Binary files a/docs/_static/fira/ttf/FiraMono-Medium.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraMono-Regular.ttf b/docs/_static/fira/ttf/FiraMono-Regular.ttf deleted file mode 100644 index 59e1e1a..0000000 Binary files a/docs/_static/fira/ttf/FiraMono-Regular.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Bold.ttf b/docs/_static/fira/ttf/FiraSans-Bold.ttf deleted file mode 100644 index 95e1660..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Bold.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-BoldItalic.ttf b/docs/_static/fira/ttf/FiraSans-BoldItalic.ttf deleted file mode 100644 index 97b52ef..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-BoldItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Book.ttf b/docs/_static/fira/ttf/FiraSans-Book.ttf deleted file mode 100644 index 4834eed..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Book.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-BookItalic.ttf b/docs/_static/fira/ttf/FiraSans-BookItalic.ttf deleted file mode 100644 index 4d19d52..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-BookItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Eight.ttf b/docs/_static/fira/ttf/FiraSans-Eight.ttf deleted file mode 100644 index 2aa2ff0..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Eight.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-EightItalic.ttf b/docs/_static/fira/ttf/FiraSans-EightItalic.ttf deleted file mode 100644 index 84c6697..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-EightItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-ExtraBold.ttf b/docs/_static/fira/ttf/FiraSans-ExtraBold.ttf deleted file mode 100644 index 1367883..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-ExtraBold.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-ExtraBoldItalic.ttf b/docs/_static/fira/ttf/FiraSans-ExtraBoldItalic.ttf deleted file mode 100644 index edb8bba..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-ExtraBoldItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-ExtraLight.ttf b/docs/_static/fira/ttf/FiraSans-ExtraLight.ttf deleted file mode 100644 index 2402422..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-ExtraLight.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-ExtraLightItalic.ttf b/docs/_static/fira/ttf/FiraSans-ExtraLightItalic.ttf deleted file mode 100644 index b199fed..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-ExtraLightItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Four.ttf b/docs/_static/fira/ttf/FiraSans-Four.ttf deleted file mode 100644 index aed0f89..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Four.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-FourItalic.ttf b/docs/_static/fira/ttf/FiraSans-FourItalic.ttf deleted file mode 100644 index af669aa..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-FourItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Hair.ttf b/docs/_static/fira/ttf/FiraSans-Hair.ttf deleted file mode 100644 index d108ba0..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Hair.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-HairItalic.ttf b/docs/_static/fira/ttf/FiraSans-HairItalic.ttf deleted file mode 100644 index c5242ad..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-HairItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Heavy.ttf b/docs/_static/fira/ttf/FiraSans-Heavy.ttf deleted file mode 100644 index d26f388..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Heavy.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-HeavyItalic.ttf b/docs/_static/fira/ttf/FiraSans-HeavyItalic.ttf deleted file mode 100644 index 7ae7493..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-HeavyItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Italic.ttf b/docs/_static/fira/ttf/FiraSans-Italic.ttf deleted file mode 100644 index f5e4914..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Italic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Light.ttf b/docs/_static/fira/ttf/FiraSans-Light.ttf deleted file mode 100644 index 2ad0374..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Light.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-LightItalic.ttf b/docs/_static/fira/ttf/FiraSans-LightItalic.ttf deleted file mode 100644 index 4b4c3a2..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-LightItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Medium.ttf b/docs/_static/fira/ttf/FiraSans-Medium.ttf deleted file mode 100644 index c454f73..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Medium.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-MediumItalic.ttf b/docs/_static/fira/ttf/FiraSans-MediumItalic.ttf deleted file mode 100644 index 5416cfa..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-MediumItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Regular.ttf b/docs/_static/fira/ttf/FiraSans-Regular.ttf deleted file mode 100644 index d9fdc0e..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Regular.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-SemiBold.ttf b/docs/_static/fira/ttf/FiraSans-SemiBold.ttf deleted file mode 100644 index 821a43d..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-SemiBold.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-SemiBoldItalic.ttf b/docs/_static/fira/ttf/FiraSans-SemiBoldItalic.ttf deleted file mode 100644 index 48c346f..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-SemiBoldItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Thin.ttf b/docs/_static/fira/ttf/FiraSans-Thin.ttf deleted file mode 100644 index 69bad63..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Thin.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-ThinItalic.ttf b/docs/_static/fira/ttf/FiraSans-ThinItalic.ttf deleted file mode 100644 index f44307f..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-ThinItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Two.ttf b/docs/_static/fira/ttf/FiraSans-Two.ttf deleted file mode 100644 index 551672f..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Two.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-TwoItalic.ttf b/docs/_static/fira/ttf/FiraSans-TwoItalic.ttf deleted file mode 100644 index 1af78f2..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-TwoItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-Ultra.ttf b/docs/_static/fira/ttf/FiraSans-Ultra.ttf deleted file mode 100644 index ecd7974..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-Ultra.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-UltraItalic.ttf b/docs/_static/fira/ttf/FiraSans-UltraItalic.ttf deleted file mode 100644 index 07902d5..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-UltraItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-UltraLight.ttf b/docs/_static/fira/ttf/FiraSans-UltraLight.ttf deleted file mode 100644 index 6d2b2e0..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-UltraLight.ttf and /dev/null differ diff --git a/docs/_static/fira/ttf/FiraSans-UltraLightItalic.ttf b/docs/_static/fira/ttf/FiraSans-UltraLightItalic.ttf deleted file mode 100644 index 037bdbc..0000000 Binary files a/docs/_static/fira/ttf/FiraSans-UltraLightItalic.ttf and /dev/null differ diff --git a/docs/_static/fira/woff/FiraMono-Bold.woff b/docs/_static/fira/woff/FiraMono-Bold.woff deleted file mode 100644 index 735352f..0000000 Binary files a/docs/_static/fira/woff/FiraMono-Bold.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraMono-Medium.woff b/docs/_static/fira/woff/FiraMono-Medium.woff deleted file mode 100644 index a33c724..0000000 Binary files a/docs/_static/fira/woff/FiraMono-Medium.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraMono-Regular.woff b/docs/_static/fira/woff/FiraMono-Regular.woff deleted file mode 100644 index b38ee14..0000000 Binary files a/docs/_static/fira/woff/FiraMono-Regular.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Bold.woff b/docs/_static/fira/woff/FiraSans-Bold.woff deleted file mode 100644 index a8dba64..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Bold.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-BoldItalic.woff b/docs/_static/fira/woff/FiraSans-BoldItalic.woff deleted file mode 100644 index 54895de..0000000 Binary files a/docs/_static/fira/woff/FiraSans-BoldItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Book.woff b/docs/_static/fira/woff/FiraSans-Book.woff deleted file mode 100644 index 3d39706..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Book.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-BookItalic.woff b/docs/_static/fira/woff/FiraSans-BookItalic.woff deleted file mode 100644 index ae9a33e..0000000 Binary files a/docs/_static/fira/woff/FiraSans-BookItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Eight.woff b/docs/_static/fira/woff/FiraSans-Eight.woff deleted file mode 100644 index 4fcce27..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Eight.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-EightItalic.woff b/docs/_static/fira/woff/FiraSans-EightItalic.woff deleted file mode 100644 index 4510262..0000000 Binary files a/docs/_static/fira/woff/FiraSans-EightItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-ExtraBold.woff b/docs/_static/fira/woff/FiraSans-ExtraBold.woff deleted file mode 100644 index 7160357..0000000 Binary files a/docs/_static/fira/woff/FiraSans-ExtraBold.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-ExtraBoldItalic.woff b/docs/_static/fira/woff/FiraSans-ExtraBoldItalic.woff deleted file mode 100644 index 7914f0e..0000000 Binary files a/docs/_static/fira/woff/FiraSans-ExtraBoldItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-ExtraLight.woff b/docs/_static/fira/woff/FiraSans-ExtraLight.woff deleted file mode 100644 index 005d0b7..0000000 Binary files a/docs/_static/fira/woff/FiraSans-ExtraLight.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-ExtraLightItalic.woff b/docs/_static/fira/woff/FiraSans-ExtraLightItalic.woff deleted file mode 100644 index fef3e38..0000000 Binary files a/docs/_static/fira/woff/FiraSans-ExtraLightItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Four.woff b/docs/_static/fira/woff/FiraSans-Four.woff deleted file mode 100644 index 4da1db7..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Four.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-FourItalic.woff b/docs/_static/fira/woff/FiraSans-FourItalic.woff deleted file mode 100644 index a3f8468..0000000 Binary files a/docs/_static/fira/woff/FiraSans-FourItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Hair.woff b/docs/_static/fira/woff/FiraSans-Hair.woff deleted file mode 100644 index 5fbacb7..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Hair.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-HairItalic.woff b/docs/_static/fira/woff/FiraSans-HairItalic.woff deleted file mode 100644 index f2d7f98..0000000 Binary files a/docs/_static/fira/woff/FiraSans-HairItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Heavy.woff b/docs/_static/fira/woff/FiraSans-Heavy.woff deleted file mode 100644 index ad5de4b..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Heavy.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-HeavyItalic.woff b/docs/_static/fira/woff/FiraSans-HeavyItalic.woff deleted file mode 100644 index 7914da9..0000000 Binary files a/docs/_static/fira/woff/FiraSans-HeavyItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Italic.woff b/docs/_static/fira/woff/FiraSans-Italic.woff deleted file mode 100644 index 2980194..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Italic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Light.woff b/docs/_static/fira/woff/FiraSans-Light.woff deleted file mode 100644 index 747071e..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Light.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-LightItalic.woff b/docs/_static/fira/woff/FiraSans-LightItalic.woff deleted file mode 100644 index e19720a..0000000 Binary files a/docs/_static/fira/woff/FiraSans-LightItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Medium.woff b/docs/_static/fira/woff/FiraSans-Medium.woff deleted file mode 100644 index 7d742c5..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Medium.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-MediumItalic.woff b/docs/_static/fira/woff/FiraSans-MediumItalic.woff deleted file mode 100644 index dd5bbe6..0000000 Binary files a/docs/_static/fira/woff/FiraSans-MediumItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Regular.woff b/docs/_static/fira/woff/FiraSans-Regular.woff deleted file mode 100644 index d8e0363..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Regular.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-SemiBold.woff b/docs/_static/fira/woff/FiraSans-SemiBold.woff deleted file mode 100644 index 8b408d4..0000000 Binary files a/docs/_static/fira/woff/FiraSans-SemiBold.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-SemiBoldItalic.woff b/docs/_static/fira/woff/FiraSans-SemiBoldItalic.woff deleted file mode 100644 index 2592e4f..0000000 Binary files a/docs/_static/fira/woff/FiraSans-SemiBoldItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Thin.woff b/docs/_static/fira/woff/FiraSans-Thin.woff deleted file mode 100644 index f986fb5..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Thin.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-ThinItalic.woff b/docs/_static/fira/woff/FiraSans-ThinItalic.woff deleted file mode 100644 index c90247e..0000000 Binary files a/docs/_static/fira/woff/FiraSans-ThinItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Two.woff b/docs/_static/fira/woff/FiraSans-Two.woff deleted file mode 100644 index f1db0fb..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Two.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-TwoItalic.woff b/docs/_static/fira/woff/FiraSans-TwoItalic.woff deleted file mode 100644 index f5ddbf6..0000000 Binary files a/docs/_static/fira/woff/FiraSans-TwoItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-Ultra.woff b/docs/_static/fira/woff/FiraSans-Ultra.woff deleted file mode 100644 index b42f714..0000000 Binary files a/docs/_static/fira/woff/FiraSans-Ultra.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-UltraItalic.woff b/docs/_static/fira/woff/FiraSans-UltraItalic.woff deleted file mode 100644 index 3486307..0000000 Binary files a/docs/_static/fira/woff/FiraSans-UltraItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-UltraLight.woff b/docs/_static/fira/woff/FiraSans-UltraLight.woff deleted file mode 100644 index 2c22e94..0000000 Binary files a/docs/_static/fira/woff/FiraSans-UltraLight.woff and /dev/null differ diff --git a/docs/_static/fira/woff/FiraSans-UltraLightItalic.woff b/docs/_static/fira/woff/FiraSans-UltraLightItalic.woff deleted file mode 100644 index 421f933..0000000 Binary files a/docs/_static/fira/woff/FiraSans-UltraLightItalic.woff and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraMono-Bold.woff2 b/docs/_static/fira/woff2/FiraMono-Bold.woff2 deleted file mode 100644 index 832aaab..0000000 Binary files a/docs/_static/fira/woff2/FiraMono-Bold.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraMono-Medium.woff2 b/docs/_static/fira/woff2/FiraMono-Medium.woff2 deleted file mode 100644 index 610e9b2..0000000 Binary files a/docs/_static/fira/woff2/FiraMono-Medium.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraMono-Regular.woff2 b/docs/_static/fira/woff2/FiraMono-Regular.woff2 deleted file mode 100644 index 9fa44b7..0000000 Binary files a/docs/_static/fira/woff2/FiraMono-Regular.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Bold.woff2 b/docs/_static/fira/woff2/FiraSans-Bold.woff2 deleted file mode 100644 index 4c550c7..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Bold.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-BoldItalic.woff2 b/docs/_static/fira/woff2/FiraSans-BoldItalic.woff2 deleted file mode 100644 index 9e66901..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-BoldItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Book.woff2 b/docs/_static/fira/woff2/FiraSans-Book.woff2 deleted file mode 100644 index 9d5db65..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Book.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-BookItalic.woff2 b/docs/_static/fira/woff2/FiraSans-BookItalic.woff2 deleted file mode 100644 index 84f272c..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-BookItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Eight.woff2 b/docs/_static/fira/woff2/FiraSans-Eight.woff2 deleted file mode 100644 index b5b1dfe..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Eight.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-EightItalic.woff2 b/docs/_static/fira/woff2/FiraSans-EightItalic.woff2 deleted file mode 100644 index 48dc9f9..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-EightItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-ExtraBold.woff2 b/docs/_static/fira/woff2/FiraSans-ExtraBold.woff2 deleted file mode 100644 index c343ae9..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-ExtraBold.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 b/docs/_static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 deleted file mode 100644 index 88aaaba..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-ExtraBoldItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-ExtraLight.woff2 b/docs/_static/fira/woff2/FiraSans-ExtraLight.woff2 deleted file mode 100644 index 447bc7d..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-ExtraLight.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-ExtraLightItalic.woff2 b/docs/_static/fira/woff2/FiraSans-ExtraLightItalic.woff2 deleted file mode 100644 index 54016b9..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-ExtraLightItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Four.woff2 b/docs/_static/fira/woff2/FiraSans-Four.woff2 deleted file mode 100644 index 95ebb7e..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Four.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-FourItalic.woff2 b/docs/_static/fira/woff2/FiraSans-FourItalic.woff2 deleted file mode 100644 index cf40809..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-FourItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Hair.woff2 b/docs/_static/fira/woff2/FiraSans-Hair.woff2 deleted file mode 100644 index 10e7287..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Hair.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-HairItalic.woff2 b/docs/_static/fira/woff2/FiraSans-HairItalic.woff2 deleted file mode 100644 index 6027bad..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-HairItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Heavy.woff2 b/docs/_static/fira/woff2/FiraSans-Heavy.woff2 deleted file mode 100644 index b61bf0d..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Heavy.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-HeavyItalic.woff2 b/docs/_static/fira/woff2/FiraSans-HeavyItalic.woff2 deleted file mode 100644 index f12daf3..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-HeavyItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Italic.woff2 b/docs/_static/fira/woff2/FiraSans-Italic.woff2 deleted file mode 100644 index 3f63664..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Italic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Light.woff2 b/docs/_static/fira/woff2/FiraSans-Light.woff2 deleted file mode 100644 index 5c0e34d..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Light.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-LightItalic.woff2 b/docs/_static/fira/woff2/FiraSans-LightItalic.woff2 deleted file mode 100644 index 0e9b453..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-LightItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Medium.woff2 b/docs/_static/fira/woff2/FiraSans-Medium.woff2 deleted file mode 100644 index 7a1e5fc..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Medium.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-MediumItalic.woff2 b/docs/_static/fira/woff2/FiraSans-MediumItalic.woff2 deleted file mode 100644 index 2d08f9f..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-MediumItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Regular.woff2 b/docs/_static/fira/woff2/FiraSans-Regular.woff2 deleted file mode 100644 index e766e06..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Regular.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-SemiBold.woff2 b/docs/_static/fira/woff2/FiraSans-SemiBold.woff2 deleted file mode 100644 index bafabb5..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-SemiBold.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-SemiBoldItalic.woff2 b/docs/_static/fira/woff2/FiraSans-SemiBoldItalic.woff2 deleted file mode 100644 index a256463..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-SemiBoldItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Thin.woff2 b/docs/_static/fira/woff2/FiraSans-Thin.woff2 deleted file mode 100644 index 73e2d82..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Thin.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-ThinItalic.woff2 b/docs/_static/fira/woff2/FiraSans-ThinItalic.woff2 deleted file mode 100644 index c8d3b36..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-ThinItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Two.woff2 b/docs/_static/fira/woff2/FiraSans-Two.woff2 deleted file mode 100644 index 6b389c7..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Two.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-TwoItalic.woff2 b/docs/_static/fira/woff2/FiraSans-TwoItalic.woff2 deleted file mode 100644 index 479ca9f..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-TwoItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-Ultra.woff2 b/docs/_static/fira/woff2/FiraSans-Ultra.woff2 deleted file mode 100644 index ea4c78b..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-Ultra.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-UltraItalic.woff2 b/docs/_static/fira/woff2/FiraSans-UltraItalic.woff2 deleted file mode 100644 index 5afeecc..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-UltraItalic.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-UltraLight.woff2 b/docs/_static/fira/woff2/FiraSans-UltraLight.woff2 deleted file mode 100644 index 02eb286..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-UltraLight.woff2 and /dev/null differ diff --git a/docs/_static/fira/woff2/FiraSans-UltraLightItalic.woff2 b/docs/_static/fira/woff2/FiraSans-UltraLightItalic.woff2 deleted file mode 100644 index 7c48ba0..0000000 Binary files a/docs/_static/fira/woff2/FiraSans-UltraLightItalic.woff2 and /dev/null differ diff --git a/docs/_static/hyper-inverse.png b/docs/_static/hyper-inverse.png deleted file mode 100644 index fabc705..0000000 Binary files a/docs/_static/hyper-inverse.png and /dev/null differ diff --git a/docs/_static/hyper-inverse.svg b/docs/_static/hyper-inverse.svg deleted file mode 100644 index c335850..0000000 --- a/docs/_static/hyper-inverse.svg +++ /dev/null @@ -1 +0,0 @@ -hyper-inverse!!YPER \ No newline at end of file diff --git a/docs/_static/hyper-inverse@2x.png b/docs/_static/hyper-inverse@2x.png deleted file mode 100644 index 1cc1264..0000000 Binary files a/docs/_static/hyper-inverse@2x.png and /dev/null differ diff --git a/docs/_static/hyper.png b/docs/_static/hyper.png deleted file mode 100644 index decd852..0000000 Binary files a/docs/_static/hyper.png and /dev/null differ diff --git a/docs/_static/hyper.svg b/docs/_static/hyper.svg deleted file mode 100644 index a59e6da..0000000 --- a/docs/_static/hyper.svg +++ /dev/null @@ -1 +0,0 @@ -hyper!!YPER \ No newline at end of file diff --git a/docs/_static/hyper@2x.png b/docs/_static/hyper@2x.png deleted file mode 100644 index 07930ed..0000000 Binary files a/docs/_static/hyper@2x.png and /dev/null differ diff --git a/docs/_static/icon-large.png b/docs/_static/icon-large.png deleted file mode 100644 index ecf45c4..0000000 Binary files a/docs/_static/icon-large.png and /dev/null differ diff --git a/docs/_static/jquery-3.1.0.js b/docs/_static/jquery-3.1.0.js deleted file mode 100644 index f2fc274..0000000 --- a/docs/_static/jquery-3.1.0.js +++ /dev/null @@ -1,10074 +0,0 @@ -/*eslint-disable no-unused-vars*/ -/*! - * jQuery JavaScript Library v3.1.0 - * https://jquery.com/ - * - * Includes Sizzle.js - * https://sizzlejs.com/ - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license - * https://jquery.org/license - * - * Date: 2016-07-07T21:44Z - */ -( function( global, factory ) { - - "use strict"; - - if ( typeof module === "object" && typeof module.exports === "object" ) { - - // For CommonJS and CommonJS-like environments where a proper `window` - // is present, execute the factory and get jQuery. - // For environments that do not have a `window` with a `document` - // (such as Node.js), expose a factory as module.exports. - // This accentuates the need for the creation of a real `window`. - // e.g. var jQuery = require("jquery")(window); - // See ticket #14549 for more info. - module.exports = global.document ? - factory( global, true ) : - function( w ) { - if ( !w.document ) { - throw new Error( "jQuery requires a window with a document" ); - } - return factory( w ); - }; - } else { - factory( global ); - } - -// Pass this if window is not defined yet -} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) { - -// Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1 -// throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode -// arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common -// enough that all such attempts are guarded in a try block. -"use strict"; - -var arr = []; - -var document = window.document; - -var getProto = Object.getPrototypeOf; - -var slice = arr.slice; - -var concat = arr.concat; - -var push = arr.push; - -var indexOf = arr.indexOf; - -var class2type = {}; - -var toString = class2type.toString; - -var hasOwn = class2type.hasOwnProperty; - -var fnToString = hasOwn.toString; - -var ObjectFunctionString = fnToString.call( Object ); - -var support = {}; - - - - function DOMEval( code, doc ) { - doc = doc || document; - - var script = doc.createElement( "script" ); - - script.text = code; - doc.head.appendChild( script ).parentNode.removeChild( script ); - } -/* global Symbol */ -// Defining this global in .eslintrc would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - - - -var - version = "3.1.0", - - // Define a local copy of jQuery - jQuery = function( selector, context ) { - - // The jQuery object is actually just the init constructor 'enhanced' - // Need init if jQuery is called (just allow error to be thrown if not included) - return new jQuery.fn.init( selector, context ); - }, - - // Support: Android <=4.0 only - // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, - - // Matches dashed string for camelizing - rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g, - - // Used by jQuery.camelCase as callback to replace() - fcamelCase = function( all, letter ) { - return letter.toUpperCase(); - }; - -jQuery.fn = jQuery.prototype = { - - // The current version of jQuery being used - jquery: version, - - constructor: jQuery, - - // The default length of a jQuery object is 0 - length: 0, - - toArray: function() { - return slice.call( this ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num != null ? - - // Return just the one element from the set - ( num < 0 ? this[ num + this.length ] : this[ num ] ) : - - // Return all the elements in a clean array - slice.call( this ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems ) { - - // Build a new jQuery matched element set - var ret = jQuery.merge( this.constructor(), elems ); - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { - return callback.call( elem, i, elem ); - } ) ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ) ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - eq: function( i ) { - var len = this.length, - j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); - }, - - end: function() { - return this.prevObject || this.constructor(); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: arr.sort, - splice: arr.splice -}; - -jQuery.extend = jQuery.fn.extend = function() { - var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, - i = 1, - length = arguments.length, - deep = false; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - - // Skip the boolean and the target - target = arguments[ i ] || {}; - i++; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction( target ) ) { - target = {}; - } - - // Extend jQuery itself if only one argument is passed - if ( i === length ) { - target = this; - i--; - } - - for ( ; i < length; i++ ) { - - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = jQuery.isArray( copy ) ) ) ) { - - if ( copyIsArray ) { - copyIsArray = false; - clone = src && jQuery.isArray( src ) ? src : []; - - } else { - clone = src && jQuery.isPlainObject( src ) ? src : {}; - } - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend( { - - // Unique for each copy of jQuery on the page - expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), - - // Assume jQuery is ready without the ready module - isReady: true, - - error: function( msg ) { - throw new Error( msg ); - }, - - noop: function() {}, - - isFunction: function( obj ) { - return jQuery.type( obj ) === "function"; - }, - - isArray: Array.isArray, - - isWindow: function( obj ) { - return obj != null && obj === obj.window; - }, - - isNumeric: function( obj ) { - - // As of jQuery 3.0, isNumeric is limited to - // strings and numbers (primitives or objects) - // that can be coerced to finite numbers (gh-2662) - var type = jQuery.type( obj ); - return ( type === "number" || type === "string" ) && - - // parseFloat NaNs numeric-cast false positives ("") - // ...but misinterprets leading-number strings, particularly hex literals ("0x...") - // subtraction forces infinities to NaN - !isNaN( obj - parseFloat( obj ) ); - }, - - isPlainObject: function( obj ) { - var proto, Ctor; - - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { - return false; - } - - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; - } - - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; - }, - - isEmptyObject: function( obj ) { - - /* eslint-disable no-unused-vars */ - // See https://github.com/eslint/eslint/issues/6125 - var name; - - for ( name in obj ) { - return false; - } - return true; - }, - - type: function( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; - }, - - // Evaluates a script in a global context - globalEval: function( code ) { - DOMEval( code ); - }, - - // Convert dashed to camelCase; used by the css and data modules - // Support: IE <=9 - 11, Edge 12 - 13 - // Microsoft forgot to hump their vendor prefix (#9572) - camelCase: function( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - }, - - each: function( obj, callback ) { - var length, i = 0; - - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; - } - } - } - - return obj; - }, - - // Support: Android <=4.0 only - trim: function( text ) { - return text == null ? - "" : - ( text + "" ).replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( arr, results ) { - var ret = results || []; - - if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { - jQuery.merge( ret, - typeof arr === "string" ? - [ arr ] : arr - ); - } else { - push.call( ret, arr ); - } - } - - return ret; - }, - - inArray: function( elem, arr, i ) { - return arr == null ? -1 : indexOf.call( arr, elem, i ); - }, - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - merge: function( first, second ) { - var len = +second.length, - j = 0, - i = first.length; - - for ( ; j < len; j++ ) { - first[ i++ ] = second[ j ]; - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, invert ) { - var callbackInverse, - matches = [], - i = 0, - length = elems.length, - callbackExpect = !invert; - - // Go through the array, only saving the items - // that pass the validator function - for ( ; i < length; i++ ) { - callbackInverse = !callback( elems[ i ], i ); - if ( callbackInverse !== callbackExpect ) { - matches.push( elems[ i ] ); - } - } - - return matches; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var length, value, - i = 0, - ret = []; - - // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; - for ( ; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - - // Go through every key on the object, - } else { - for ( i in elems ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret.push( value ); - } - } - } - - // Flatten any nested arrays - return concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - // Bind a function to a context, optionally partially applying any - // arguments. - proxy: function( fn, context ) { - var tmp, args, proxy; - - if ( typeof context === "string" ) { - tmp = fn[ context ]; - context = fn; - fn = tmp; - } - - // Quick check to determine if target is callable, in the spec - // this throws a TypeError, but we will just return undefined. - if ( !jQuery.isFunction( fn ) ) { - return undefined; - } - - // Simulated bind - args = slice.call( arguments, 2 ); - proxy = function() { - return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); - }; - - // Set the guid of unique handler to the same of original handler, so it can be removed - proxy.guid = fn.guid = fn.guid || jQuery.guid++; - - return proxy; - }, - - now: Date.now, - - // jQuery.support is not used in Core but other projects attach their - // properties to it so it needs to exist. - support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} - -// Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { - class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { - - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = jQuery.type( obj ); - - if ( type === "function" || jQuery.isWindow( obj ) ) { - return false; - } - - return type === "array" || length === 0 || - typeof length === "number" && length > 0 && ( length - 1 ) in obj; -} -var Sizzle = -/*! - * Sizzle CSS Selector Engine v2.3.0 - * https://sizzlejs.com/ - * - * Copyright jQuery Foundation and other contributors - * Released under the MIT license - * http://jquery.org/license - * - * Date: 2016-01-04 - */ -(function( window ) { - -var i, - support, - Expr, - getText, - isXML, - tokenize, - compile, - select, - outermostContext, - sortInput, - hasDuplicate, - - // Local document vars - setDocument, - document, - docElem, - documentIsHTML, - rbuggyQSA, - rbuggyMatches, - matches, - contains, - - // Instance-specific data - expando = "sizzle" + 1 * new Date(), - preferredDoc = window.document, - dirruns = 0, - done = 0, - classCache = createCache(), - tokenCache = createCache(), - compilerCache = createCache(), - sortOrder = function( a, b ) { - if ( a === b ) { - hasDuplicate = true; - } - return 0; - }, - - // Instance methods - hasOwn = ({}).hasOwnProperty, - arr = [], - pop = arr.pop, - push_native = arr.push, - push = arr.push, - slice = arr.slice, - // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 - indexOf = function( list, elem ) { - var i = 0, - len = list.length; - for ( ; i < len; i++ ) { - if ( list[i] === elem ) { - return i; - } - } - return -1; - }, - - booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", - - // Regular expressions - - // http://www.w3.org/TR/css3-selectors/#whitespace - whitespace = "[\\x20\\t\\r\\n\\f]", - - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", - - // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + - // Operator (capture 2) - "*([*^$|!~]?=)" + whitespace + - // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" - "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + - "*\\]", - - pseudos = ":(" + identifier + ")(?:\\((" + - // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: - // 1. quoted (capture 3; capture 4 or capture 5) - "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + - // 2. simple (capture 6) - "((?:\\\\.|[^\\\\()[\\]]|" + attributes + ")*)|" + - // 3. anything else (capture 2) - ".*" + - ")\\)|)", - - // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter - rwhitespace = new RegExp( whitespace + "+", "g" ), - rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), - - rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), - rcombinators = new RegExp( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ), - - rattributeQuotes = new RegExp( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]", "g" ), - - rpseudo = new RegExp( pseudos ), - ridentifier = new RegExp( "^" + identifier + "$" ), - - matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), - "ATTR": new RegExp( "^" + attributes ), - "PSEUDO": new RegExp( "^" + pseudos ), - "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + - "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + - "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), - "bool": new RegExp( "^(?:" + booleans + ")$", "i" ), - // For use in libraries implementing .is() - // We use this for POS matching in `select` - "needsContext": new RegExp( "^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + - whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)", "i" ) - }, - - rinputs = /^(?:input|select|textarea|button)$/i, - rheader = /^h\d$/i, - - rnative = /^[^{]+\{\s*\[native \w/, - - // Easily-parseable/retrievable ID or TAG or CLASS selectors - rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, - - rsibling = /[+~]/, - - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters - runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), - funescape = function( _, escaped, escapedWhitespace ) { - var high = "0x" + escaped - 0x10000; - // NaN means non-codepoint - // Support: Firefox<24 - // Workaround erroneous numeric interpretation of +"0x" - return high !== high || escapedWhitespace ? - escaped : - high < 0 ? - // BMP codepoint - String.fromCharCode( high + 0x10000 ) : - // Supplemental Plane codepoint (surrogate pair) - String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); - }, - - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - - // Used for iframes - // See setDocument() - // Removing the function wrapper causes a "Permission Denied" - // error in IE - unloadHandler = function() { - setDocument(); - }, - - disabledAncestor = addCombinator( - function( elem ) { - return elem.disabled === true; - }, - { dir: "parentNode", next: "legend" } - ); - -// Optimize for push.apply( _, NodeList ) -try { - push.apply( - (arr = slice.call( preferredDoc.childNodes )), - preferredDoc.childNodes - ); - // Support: Android<4.0 - // Detect silently failing push.apply - arr[ preferredDoc.childNodes.length ].nodeType; -} catch ( e ) { - push = { apply: arr.length ? - - // Leverage slice if possible - function( target, els ) { - push_native.apply( target, slice.call(els) ); - } : - - // Support: IE<9 - // Otherwise append directly - function( target, els ) { - var j = target.length, - i = 0; - // Can't trust NodeList.length - while ( (target[j++] = els[i++]) ) {} - target.length = j - 1; - } - }; -} - -function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, - - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; - - results = results || []; - - // Return early from calls with invalid selector or context - if ( typeof selector !== "string" || !selector || - nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { - - return results; - } - - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { - - // ID selector - if ( (m = match[1]) ) { - - // Document context - if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && - contains( context, elem ) && - elem.id === m ) { - - results.push( elem ); - return results; - } - } - - // Type selector - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; - } - } - - // Take advantage of querySelectorAll - if ( support.qsa && - !compilerCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { - - if ( nodeType !== 1 ) { - newContext = context; - newSelector = selector; - - // qSA looks outside Element context, which is not what we want - // Thanks to Andrew Dupont for this workaround technique - // Support: IE <=8 - // Exclude object elements - } else if ( context.nodeName.toLowerCase() !== "object" ) { - - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", (nid = expando) ); - } - - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[i] = "#" + nid + " " + toSelector( groups[i] ); - } - newSelector = groups.join( "," ); - - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; - } - - if ( newSelector ) { - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } - } - } - } - } - } - - // All others - return select( selector.replace( rtrim, "$1" ), context, results, seed ); -} - -/** - * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with - * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) - * deleting the oldest entry - */ -function createCache() { - var keys = []; - - function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) - if ( keys.push( key + " " ) > Expr.cacheLength ) { - // Only keep the most recent entries - delete cache[ keys.shift() ]; - } - return (cache[ key + " " ] = value); - } - return cache; -} - -/** - * Mark a function for special use by Sizzle - * @param {Function} fn The function to mark - */ -function markFunction( fn ) { - fn[ expando ] = true; - return fn; -} - -/** - * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result - */ -function assert( fn ) { - var el = document.createElement("fieldset"); - - try { - return !!fn( el ); - } catch (e) { - return false; - } finally { - // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); - } - // release memory in IE - el = null; - } -} - -/** - * Adds the same handler for all of the specified attrs - * @param {String} attrs Pipe-separated list of attributes - * @param {Function} handler The method that will be applied - */ -function addHandle( attrs, handler ) { - var arr = attrs.split("|"), - i = arr.length; - - while ( i-- ) { - Expr.attrHandle[ arr[i] ] = handler; - } -} - -/** - * Checks document order of two siblings - * @param {Element} a - * @param {Element} b - * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b - */ -function siblingCheck( a, b ) { - var cur = b && a, - diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; - - // Use IE sourceIndex if available on both nodes - if ( diff ) { - return diff; - } - - // Check if b follows a - if ( cur ) { - while ( (cur = cur.nextSibling) ) { - if ( cur === b ) { - return -1; - } - } - } - - return a ? 1 : -1; -} - -/** - * Returns a function to use in pseudos for input types - * @param {String} type - */ -function createInputPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return name === "input" && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for buttons - * @param {String} type - */ -function createButtonPseudo( type ) { - return function( elem ) { - var name = elem.nodeName.toLowerCase(); - return (name === "input" || name === "button") && elem.type === type; - }; -} - -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - // Known :disabled false positives: - // IE: *[disabled]:not(button, input, select, textarea, optgroup, option, menuitem, fieldset) - // not IE: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Check form elements and option elements for explicit disabling - return "label" in elem && elem.disabled === disabled || - "form" in elem && elem.disabled === disabled || - - // Check non-disabled form elements for fieldset[disabled] ancestors - "form" in elem && elem.disabled === false && ( - // Support: IE6-11+ - // Ancestry is covered for us - elem.isDisabled === disabled || - - // Otherwise, assume any non-