diff --git a/.gitignore b/.gitignore index 8963f9d..60d6eb5 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ .DS_Store *.swp *.sqlite3 +/docker-compose.yml /env/ /venv/ /static/ @@ -15,3 +16,4 @@ /docs/_build/ /node_modules/ /publichealth/static/libs/ +/mockup/assets/css/*.css diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f4b099b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +## [v0.0.2](https://github.com/datalets/public-health-ch/tree/v0.0.2) (2017-05-05) +[Full Changelog](https://github.com/datalets/public-health-ch/compare/v0.0.2...v0.0.1) + +- Social media networks snippet +- Update to Wagtail 1.10, Django 1.11 + +## [v0.0.1](https://github.com/datalets/public-health-ch/tree/v0.0.1) (2017-05-04) + +- Initial release diff --git a/Gruntfile.js b/Gruntfile.js index e09733e..8beddd5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -29,7 +29,7 @@ module.exports = function(grunt) { sourcemap: 'none' }, files: { // Dictionary of files - "publichealth/static/mockup/assets/css/main.css": "publichealth/static/css/main.scss" + "./assets/css/main.css": "publichealth/static/css/main.scss" } }, dist: { @@ -38,7 +38,7 @@ module.exports = function(grunt) { sourcemap: 'none' }, files: { - "publichealth/static/mockup/assets/css/main.min.css": "publichealth/static/css/main.scss" + "./assets/css/main.min.css": "publichealth/static/css/main.scss" } } }, @@ -58,8 +58,8 @@ module.exports = function(grunt) { dev: { bsFiles: { src: [ - "publichealth/static/mockup/assets/css/*.css", - "publichealth/static/mockup/*.html" + "./assets/css/*.css", + "./*.html" ] }, options: { diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..fc4d0c2 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,52 @@ +# Wagtail + +Copyright (C) 2014 Torchbox Ltd and individual contributors +https://github.com/wagtail/wagtail/blob/master/LICENSE +BSD 3-clause "New" or "Revised" License + +# Puput + +Copyright (c) 2015 Marc Tudurí - APSL +https://github.com/APSL/puput/blob/master/LICENSE +MIT License + +# Bootstrap + +Copyright (c) 2011-2016 Twitter, Inc. +https://github.com/twbs/bootstrap/blob/v3-dev/LICENSE +MIT License + +# Bootswatch + +Copyright (c) 2013 Thomas Park +https://github.com/thomaspark/bootswatch/blob/gh-pages/LICENSE +MIT License + +# Slick + +Copyright (c) 2013-2016 Ken Wheeler +https://github.com/kenwheeler/slick/blob/master/LICENSE +MIT License + +# public-health-ch + +Copyright (c) 2017 Public Health Schweiz + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/Makefile b/Makefile index 14e90ad..b3a7aa2 100644 --- a/Makefile +++ b/Makefile @@ -9,14 +9,14 @@ build-cached: build: docker-compose build --no-cache -run: +run-here: docker-compose stop web # for restart cases, when already running docker-compose up -run-detached: - docker-compose up -d +run: + docker-compose up -d # detach by default -django-restart-detached: +restart: docker-compose stop web docker-compose up -d web @@ -27,7 +27,7 @@ migrate: docker-compose exec web ./manage.py migrate migrations: - docker-compose exec web ./manage.py makemigrations + docker-compose exec web ./manage.py makemigrations --merge apply-migrations: migrations migrate @@ -38,13 +38,21 @@ setup: docker-compose exec web ./manage.py collectstatic release: + sudo docker-compose build web docker-compose stop web docker-compose kill web - docker-compose build web docker-compose up -d web + docker-compose exec web ./manage.py collectstatic --noinput + docker-compose exec web ./manage.py compress + +reindex: + docker-compose exec web ./manage.py update_index + +clear_index: + docker-compose exec elasticsearch curl -XDELETE localhost:9200/_all django-exec-bash: - # execute bash in the currently running container + # execute bash in the currently running container docker-compose exec web bash django-run-bash: @@ -57,21 +65,40 @@ django-shell: logs: docker-compose logs -f --tail=500 +backup: + docker-compose exec web ./manage.py dumpdata --natural-foreign --indent=4 -e contenttypes -e auth.Permission -e sessions -e wagtailcore.pagerevision -e wagtailcore.groupcollectionpermission > ~/publichealth.home.json + zip ~/publichealth.home.json.`date +"%d%m%Y-%H%M"`.zip ~/publichealth.home.json + rm ~/publichealth.home.json + +django-loaddata: + gunzip ~/publichealth.home.json.gz + docker-compose exec web ./manage.py loaddata ~/publichealth.home.json + +restore: django-loaddata restart + +psql: + docker-compose exec postgres psql -U postgres -d postgres + pg-run-detached: - # start pg service - docker-compose up -d pg_database + # start pg service + docker-compose up -d postgres pg-exec: - docker-compose exec pg_database bash + docker-compose exec postgres bash pg-dump: - docker-compose exec pg_database bash -c 'pg_dump -U "$$POSTGRES_USER" -d "$$POSTGRES_DB" -f ./dumps/latest.sql' + docker-compose exec postgres bash -c 'pg_dump -U postgres -d postgres -f ./latest.sql' + +pg-backup: + docker-compose exec postgres bash -c 'pg_dump -U postgres -d postgres' > ~/pg-backup.sql + zip ~/pg-backup.sql.`date +"%d%m%Y-%H%M"`.zip ~/pg-backup.sql + rm ~/pg-backup.sql pg-restore: - docker-compose exec pg_database bash -c 'psql -U "$$POSTGRES_USER" -d "$$POSTGRES_DB" -f ./dumps/latest.sql' + docker-compose exec postgres bash -c 'psql -U postgres -d postgres -f ./latest.sql' pg-surefire-drop-restore-db: - # drop existing database, recreate it, and then restore its content from backup. - -docker-compose exec pg_database bash -c 'dropdb -h localhost -U "$$POSTGRES_USER" "$$POSTGRES_DB"' - docker-compose exec pg_database bash -c 'createdb -h localhost -U "$$POSTGRES_USER" "$$POSTGRES_DB"' + # drop existing database, recreate it, and then restore its content from backup. + -docker-compose exec postgres bash -c 'dropdb -h localhost -U postgres postgres' + docker-compose exec postgres bash -c 'createdb -h localhost -U postgres postgres' make pg-restore diff --git a/README.md b/README.md index 0684b42..962a69b 100644 --- a/README.md +++ b/README.md @@ -1,43 +1,27 @@ Public Health Schweiz ===================== -Website of the Swiss Society for Public Health +New website of the [Swiss Society for Public Health](http://public-health.ch), developed by [datalets,ch](http://datalets.ch) using the open source, [Django](https://www.djangoproject.com/)-based [Wagtail CMS](http://wagtail.io). The frontend has been implemented by [moving water](http://www.movingwater.ch/) using [Bootstrap](https://getbootstrap.com) framework. + +This project is open source under the [MIT License](LICENSE.md). + +[![Dependency Status](https://dependencyci.com/github/datalets/public-health-ch/badge)](https://dependencyci.com/github/datalets/public-health-ch) ## Development environment -The easiest way to set up your machine would be to use [Vagrant](https://vagrantup.com), then in the project folder in the terminal type: +The easiest way to set up your machine would be to use [Vagrant](https://vagrantup.com), then in the project folder in the terminal type: `vagrant up`. Then when it is ready, follow instructions for *Database setup*. -``` -vagrant liverun -``` - -**Backend setup** - -After installing Python 3, from the project folder: - -``` -sudo apt-get install python3-venv python3-dev libjpeg-dev -pyvenv env -. env/bin/activate - -pip install -U pip -pip install -r requirements.txt - -./manage.py migrate -./manage.py createsuperuser -``` - -You will be asked a few questions to create an administrator account. +To set up a full development environment, follow all these instructions. **Frontend setup** -You will need to have Ruby and SASS installed on your system, e.g.: +If not using Vagrant, you will need to have Ruby and SASS installed on your system, e.g.: ``` -sudo yum install rubygem-sass +sudo apt-get install ruby-sass ``` -Make sure a recent version of node.js, then: +Make sure a recent version of node.js (we recommend using [nave.sh](https://github.com/isaacs/nave)), then: ``` npm install -g bower grunt-cli @@ -45,20 +29,54 @@ npm install bower install ``` -If you have one installed, also start your local redis server (`service redis start`). +The first command (`..install -g..`) may require `sudo` if you installed node.js as a system package. + +If you are only working on the frontend, you can start a local webserver and work on frontend assets without the backend setup described below. Mock content is at `mockup`, and there is a `grunt browser-sync` setup for working with frontend assets. + +**Backend setup** + +If not using Vagrant: after installing Python 3, from the project folder, deploy system packages and create a virtual environment as detailed (for Ubuntu users) below: + +``` +sudo apt-get install python3-venv python3-dev libjpeg-dev + +pyvenv env +. env/bin/activate + +pip install -U pip +pip install -r requirements.txt +``` + +At this point your backup is ready to be deployed. + +## Database setup + +Once your installation is ready, you can get a blank database set up and add a user to login with. + +If you are using Vagrant, enter the shell of your virtual machine now with `vagrant ssh` + +Run these commands: + +``` +./manage.py migrate +./manage.py createsuperuser +``` + +You will be asked a few questions to create an administrator account. **Starting up** -Run this after completing setup: +If you have one installed, also start your local redis server (`service redis start`). + +After completing setup, you can use: ``` -./manage.py runserver & -grunt browser-sync +./manage.py runserver ``` -A default browser should open pointing to the default home page. +(In a Vagrant shell, just use `djrun`) -Now access the admin panel with the user account you created earlier: http://localhost:3000/admin/ +Now access the admin panel with the user account you created earlier: http://localhost:8000/admin/ ## Troubleshooting @@ -66,8 +84,63 @@ Now access the admin panel with the user account you created earlier: http://loc ## Production notes -We use Ansible for automated deployment. You need to obtain an SSH and vault keys and place these in a `.keys` folder, then: +We use [Ansible](https://www.ansible.com) and [Docker Compose](https://docs.docker.com/compose/reference/overview/) for automated deployment. + +To use Docker Compose to deploy the site, copy `ansible/roles/web/templates/docker-compose.j2` to `/docker-compose.yml` and fill in all `{{ variables }}`. This is done automatically in Ansible. + +To do production deployments, you need to obtain SSH and vault keys from your system administrator (who has followed the Ansible guide to set up a vault..), and place these in a `.keys` folder. To deploy a site: ``` -ansible-playbook -s ansible/docker.yaml -i ansible/inventories/production +ansible-playbook -s ansible/<*.yaml> -i ansible/inventories/production ``` + +For an update release with a specific version, use: + +``` +ansible-playbook -s ansible/site.yaml -i ansible/inventories/production --tags release -e gitversion= +``` + +We use a StackScript to deploy to Linode, the basic system set up is to have a user in the sudoers and docker group, and a few basic system packages ready. + +For example, on Ubuntu: + +``` +apt-get install -q -y zip git nginx python-virtualenv python-dev +``` + +The order of deployment is: + +- docker.yaml (base system) +- node.yaml +- site.yaml +- harden.yaml +- certbot.yaml + +The last line adds support for Let's Encrypt, which you can configure and enable (updating your Nginx setup) with: + +``` +sudo /opt/certbot/certbot-auto --nginx certonly +``` + +If you do **not** wish to use SSL, delete the last part of your nginx site configuration (/etc/nginx/sites-enabled/...). + +### Production releases + +For further deployment and system maintenance we have a `Makefile` which automates Docker Compose tasks. This should be converted to use [Ansible Container](http://docs.ansible.com/ansible-container/getting_started.html). In the meantime, start a release with Ansible, then complete it using `make`, i.e.: + +``` +ansible-playbook -s ansible/site.yaml -i ansible/inventories/production --tags release +ssh -i .keys/ansible.pem ansible@ "cd && make release" +``` + +### Restoring a data backup + +For development, it's handy to have access to a copy of the production data. To delete your local database and restore from a file backup, run: + +``` +rm publichealth-dev.sqlite3 +python manage.py migrate +python manage.py loaddata publichealth.home.json +``` + +You might want to `createsuperuser` again at this point. diff --git a/ansible/certbot.yaml b/ansible/certbot.yaml new file mode 100644 index 0000000..a99130c --- /dev/null +++ b/ansible/certbot.yaml @@ -0,0 +1,13 @@ +- hosts: webservers + become: true + become_method: 'sudo' + gather_facts: yes + vars: + certbot_auto_renew_user: ansible + certbot_auto_renew_minute: 20 + certbot_auto_renew_hour: 5 + certbot_dir: /opt/certbot + certbot_install_from_source: yes + certbot_version: v0.14.2 + roles: + - geerlingguy.certbot diff --git a/ansible/harden.yaml b/ansible/harden.yaml index 26fe918..134414c 100644 --- a/ansible/harden.yaml +++ b/ansible/harden.yaml @@ -3,8 +3,6 @@ gather_facts: True roles: - role: dev-sec.os-hardening - - role: dev-sec.ssh-hardening become: yes - - dev-sec.nginx-hardening diff --git a/ansible/inventories/production/group_vars/webservers/vault.yaml b/ansible/inventories/production/group_vars/webservers/vault.yaml index f5d367d..fe6b9b5 100644 --- a/ansible/inventories/production/group_vars/webservers/vault.yaml +++ b/ansible/inventories/production/group_vars/webservers/vault.yaml @@ -1,18 +1,18 @@ $ANSIBLE_VAULT;1.1;AES256 -62653363616638643933303063396435316366376466643563316461343162633661346638343836 -6232346565306638373931396164303438373261396630610a343536386335336634663239626637 -36376137393433343636366137333336303764616536643864353630366535653936663531373439 -3966363565633630620a373238363535653936383365656366306231666365656265303638393864 -33323363373365613134393261393139656261323036656632366562316264346434393366656165 -35363861303036316465326134653163303835376333633132633332303438666363386330303463 -66376132396666396163306566663534646261653139343432663332323837666165653235633538 -34613037306339623032613939663639663161336539333832333438306466653439306535343134 -64363833666138626561363263323338376261343333623839366236343464363737616232633566 -62633934323463623834653539613039636138666539666665333434663165636639303532333233 -30363437633762366230326231653961373462383330336462313935643761316334666232613261 -64613538363763666666303832393632373934343162613439616535663666373434333632633664 -64623531383239636464393036346565373564356666626632613437303335653465386639623366 -61636231383561336238336334303462643137633465303466633764336630636462626535666633 -61386263316437346666633164616162636234623530343038343338373439616131333538343835 -39386435373035633837383264346266643433366363653566363863393434356337633366363635 -64666465613164353238626165623931633534666438386264633431356332616264 +65303737656632326238636231303166643730313665343038366330623866643834656263303936 +6365633063373036663532356539366535393339343834650a343930366435653561666666333561 +65323333396164323863333262613937313437373232393434643337363638366332663765663037 +3432643961653264300a626234333966343963616461366439643138633633393435343863646138 +66666632366666326632353865636565646435316339643761623235643235643930636435653433 +61363035316462613265616236383531633930393034396661613562306234306261383261666432 +37303332633466646537366139653266303532346437623863326635336535643366346236356562 +66643033353335653961376365363432363563343461386134306137636636643538353232393237 +61333932653134633738326435353564393835353334653732663737323935613837626132396434 +39646334313132623039646432373537633938353638376666663238633631373063323636333733 +31656563316362333138383232326532323832646639386333376330643535666639323834383363 +66383431333834393535353539623730623764373363326431333866636666366637373639666437 +36643665343965303131356336656362333564633161306638356166663963643235353166333131 +33386566356664313837333565613239636233626462333532656566343661323938373338633264 +30376264363566383435363765323864626264646331383162313235633463316532636634356630 +30306666313961613839653939613737316339313932636266666530636463633963306635306665 +62353966313762376333306564633665613632396339616564303433626265633262 diff --git a/ansible/inventories/production/webservers b/ansible/inventories/production/webservers index 66f65f9..ec03451 100644 --- a/ansible/inventories/production/webservers +++ b/ansible/inventories/production/webservers @@ -1,7 +1,13 @@ -[webservers] -172.104.150.7 - -[all:vars] -ansible_connection=ssh -ansible_ssh_user=ansible -ansible_ssh_private_key_file=.keys/ansible.pem +$ANSIBLE_VAULT;1.1;AES256 +33346132656133323263366630316265383032356264303236306562366336346133303931366363 +6166623234393661383738316361653639353863323062660a333966363436333031363936396438 +31333262343961646537623534373165363735316566653133626435633538306636616162306535 +3336396134363466350a363839663636313862643531633762626563396333646136376430643634 +39383738613433643139323263613061353464383864636334313865313162316236343261333237 +36303836313661336534613630663161633163646131376238643335303663653338363261633165 +62623833626462633563386631643962393936646563663738623530666332353836303062376635 +64326237663737316438633063343935383463663937373634303236376635643062666664633132 +63633236373462376637363563363564643433356138636233363034306130306139306461373331 +39396564303963633135303536383862336562623663336636373435373366353934613964353863 +36313638623335356562626135383337656632333530333561623265323930323732333736343532 +31366239663161663562 diff --git a/ansible/roles/geerlingguy.certbot/.gitignore b/ansible/roles/geerlingguy.certbot/.gitignore new file mode 100644 index 0000000..c9b2377 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/.gitignore @@ -0,0 +1,2 @@ +*.retry +tests/test.sh diff --git a/ansible/roles/geerlingguy.certbot/.travis.yml b/ansible/roles/geerlingguy.certbot/.travis.yml new file mode 100644 index 0000000..47ab110 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/.travis.yml @@ -0,0 +1,23 @@ +--- +services: docker + +env: + - distro: centos7 + - distro: centos6 + playbook: test-source-install.yml + - distro: ubuntu1604 + - distro: ubuntu1404 + playbook: test-source-install.yml + - distro: debian8 + playbook: test-source-install.yml + +script: + # Download test shim. + - wget -O ${PWD}/tests/test.sh https://gist.githubusercontent.com/geerlingguy/73ef1e5ee45d8694570f334be385e181/raw/ + - chmod +x ${PWD}/tests/test.sh + + # Run tests. + - ${PWD}/tests/test.sh + +notifications: + webhooks: https://galaxy.ansible.com/api/v1/notifications/ diff --git a/ansible/roles/geerlingguy.certbot/LICENSE b/ansible/roles/geerlingguy.certbot/LICENSE new file mode 100644 index 0000000..4275cf3 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2017 Jeff Geerling + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/ansible/roles/geerlingguy.certbot/README.md b/ansible/roles/geerlingguy.certbot/README.md new file mode 100644 index 0000000..482c55b --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/README.md @@ -0,0 +1,75 @@ +# Ansible Role: Certbot (for Let's Encrypt) + +[![Build Status](https://travis-ci.org/geerlingguy/ansible-role-certbot.svg?branch=master)](https://travis-ci.org/geerlingguy/ansible-role-certbot) + +Installs and configures Certbot (for Let's Encrypt). + +## Requirements + +If installing from source, Git is required. You can install Git using the `geerlingguy.git` role. + +## Role Variables + +The variable `certbot_install_from_source` controls whether to install Certbot from Git or package management. The latter is the default, so the variable defaults to `no`. + + certbot_auto_renew: true + certbot_auto_renew_user: "{{ ansible_user }}" + certbot_auto_renew_hour: 3 + certbot_auto_renew_minute: 30 + +By default, this role configures a cron job to run under the provided user account at the given hour and minute, every day. The defaults run `certbot renew` (or `certbot-auto renew`) via cron every day at 03:30:00 by the user you use in your Ansible playbook. It's preferred that you set a custom user/hour/minute so the renewal is during a low-traffic period and done by a non-root user account. + +### Source Installation from Git + +You can install Certbot from it's Git source repository if desired. This might be useful in several cases, but especially when older distributions don't have Certbot packages available (e.g. CentOS < 7, Ubuntu < 16.10 and Debian < 8). + + certbot_install_from_source: no + certbot_repo: https://github.com/certbot/certbot.git + certbot_version: master + certbot_keep_updated: yes + +Certbot Git repository options. To install from source, set `certbot_install_from_source` to `yes`. This clones the configured `certbot_repo`, respecting the `certbot_version` setting. If `certbot_keep_updated` is set to `yes`, the repository is updated every time this role runs. + + certbot_dir: /opt/certbot + +The directory inside which Certbot will be cloned. + +## Dependencies + +None. + +## Example Playbook + + - hosts: servers + + vars: + certbot_auto_renew_user: your_username_here + certbot_auto_renew_minute: 20 + certbot_auto_renew_hour: 5 + + roles: + - geerlingguy.certbot + +After installation, you can create certificates using the `certbot` (or `certbot-auto`) script, which by default is installed inside the configured `certbot_dir` (when using Git). Here are some example commands to configure certificates with Certbot: + + # Automatically add certs for all Apache virtualhosts (use with caution!). + /opt/certbot/certbot-auto --apache + + # Generate certs, but don't modify Apache configuration (safer). + /opt/certbot/certbot-auto --apache certonly + +By default, this role adds a cron job that will renew all installed certificates once per day at the hour and minute of your choosing. + +You can test the auto-renewal (without actually renewing the cert) with the command: + + /opt/certbot/certbot-auto renew --dry-run + +See full documentation and options on the [Certbot website](https://certbot.eff.org/). + +## License + +MIT / BSD + +## Author Information + +This role was created in 2016 by [Jeff Geerling](https://www.jeffgeerling.com/), author of [Ansible for DevOps](https://www.ansiblefordevops.com/). diff --git a/ansible/roles/geerlingguy.certbot/defaults/main.yml b/ansible/roles/geerlingguy.certbot/defaults/main.yml new file mode 100644 index 0000000..7f6f0d3 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/defaults/main.yml @@ -0,0 +1,16 @@ +--- +# Certbot auto-renew cron job configuration (for certificate renewals). +certbot_auto_renew: true +certbot_auto_renew_user: "{{ ansible_user }}" +certbot_auto_renew_hour: 3 +certbot_auto_renew_minute: 30 + +# To install from source (on older OSes or if you need a specific or newer +# version of Certbot), set this variable to `yes` and configure other options. +certbot_install_from_source: no +certbot_repo: https://github.com/certbot/certbot.git +certbot_version: master +certbot_keep_updated: yes + +# Where to put Certbot when installing from source. +certbot_dir: /opt/certbot diff --git a/ansible/roles/geerlingguy.certbot/meta/.galaxy_install_info b/ansible/roles/geerlingguy.certbot/meta/.galaxy_install_info new file mode 100644 index 0000000..55d1c6e --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/meta/.galaxy_install_info @@ -0,0 +1 @@ +{install_date: 'Fri Jun 2 09:43:15 2017', version: 2.0.0} diff --git a/ansible/roles/geerlingguy.certbot/meta/main.yml b/ansible/roles/geerlingguy.certbot/meta/main.yml new file mode 100644 index 0000000..aa00a88 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/meta/main.yml @@ -0,0 +1,33 @@ +--- +dependencies: [] + +galaxy_info: + author: geerlingguy + description: "Installs and configures Certbot (for Let's Encrypt)." + company: "Midwestern Mac, LLC" + license: "license (BSD, MIT)" + min_ansible_version: 2.0 + platforms: + - name: EL + versions: + - 6 + - 7 + - name: Fedora + versions: + - all + - name: Ubuntu + versions: + - all + - name: Debian + versions: + - all + galaxy_tags: + - networking + - system + - web + - certbot + - letsencrypt + - encryption + - certificates + - ssl + - https diff --git a/ansible/roles/geerlingguy.certbot/tasks/include-vars.yml b/ansible/roles/geerlingguy.certbot/tasks/include-vars.yml new file mode 100644 index 0000000..0a70e50 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tasks/include-vars.yml @@ -0,0 +1,8 @@ +--- +- name: Load a variable file based on the OS type, or a default if not found. + include_vars: "{{ item }}" + with_first_found: + - "{{ ansible_distribution }}-{{ ansible_distribution_version }}.yml" + - "{{ ansible_distribution }}.yml" + - "{{ ansible_os_family }}.yml" + - "default.yml" diff --git a/ansible/roles/geerlingguy.certbot/tasks/install-from-source.yml b/ansible/roles/geerlingguy.certbot/tasks/install-from-source.yml new file mode 100644 index 0000000..7d97f9b --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tasks/install-from-source.yml @@ -0,0 +1,17 @@ +--- +- name: Clone Certbot into configured directory. + git: + repo: "{{ certbot_repo }}" + dest: "{{ certbot_dir }}" + version: "{{ certbot_version }}" + update: "{{ certbot_keep_updated }}" + force: yes + +- name: Set Certbot script variable. + set_fact: + certbot_script: "{{ certbot_dir }}/certbot-auto" + +- name: Ensure certbot-auto is executable. + file: + path: "{{ certbot_script }}" + mode: 0755 diff --git a/ansible/roles/geerlingguy.certbot/tasks/install-with-package.yml b/ansible/roles/geerlingguy.certbot/tasks/install-with-package.yml new file mode 100644 index 0000000..10490ff --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tasks/install-with-package.yml @@ -0,0 +1,7 @@ +--- +- name: Install Certbot. + package: "name={{ certbot_package }} state=present" + +- name: Set Certbot script variable. + set_fact: + certbot_script: "{{ certbot_package }}" diff --git a/ansible/roles/geerlingguy.certbot/tasks/main.yml b/ansible/roles/geerlingguy.certbot/tasks/main.yml new file mode 100644 index 0000000..5324ff9 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tasks/main.yml @@ -0,0 +1,11 @@ +--- +- include: include-vars.yml + +- include: install-with-package.yml + when: not certbot_install_from_source + +- include: install-from-source.yml + when: certbot_install_from_source + +- include: renew-cron.yml + when: certbot_auto_renew diff --git a/ansible/roles/geerlingguy.certbot/tasks/renew-cron.yml b/ansible/roles/geerlingguy.certbot/tasks/renew-cron.yml new file mode 100644 index 0000000..7678a7c --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tasks/renew-cron.yml @@ -0,0 +1,8 @@ +--- +- name: Add cron job for certbot renewal (if configured). + cron: + name: Certbot automatic renewal. + job: "{{ certbot_script }} renew --quiet --no-self-upgrade" + minute: "{{ certbot_auto_renew_minute }}" + hour: "{{ certbot_auto_renew_hour }}" + user: "{{ certbot_auto_renew_user }}" diff --git a/ansible/roles/geerlingguy.certbot/tests/README.md b/ansible/roles/geerlingguy.certbot/tests/README.md new file mode 100644 index 0000000..6fb2117 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tests/README.md @@ -0,0 +1,11 @@ +# Ansible Role tests + +To run the test playbook(s) in this directory: + + 1. Install and start Docker. + 1. Download the test shim (see .travis.yml file for the URL) into `tests/test.sh`: + - `wget -O tests/test.sh https://gist.githubusercontent.com/geerlingguy/73ef1e5ee45d8694570f334be385e181/raw/` + 1. Make the test shim executable: `chmod +x tests/test.sh`. + 1. Run (from the role root directory) `distro=[distro] playbook=[playbook] ./tests/test.sh` + +If you don't want the container to be automatically deleted after the test playbook is run, add the following environment variables: `cleanup=false container_id=$(date +%s)` diff --git a/ansible/roles/geerlingguy.certbot/tests/requirements.yml b/ansible/roles/geerlingguy.certbot/tests/requirements.yml new file mode 100644 index 0000000..6208520 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tests/requirements.yml @@ -0,0 +1,2 @@ +--- +- src: geerlingguy.git diff --git a/ansible/roles/geerlingguy.certbot/tests/test-source-install.yml b/ansible/roles/geerlingguy.certbot/tests/test-source-install.yml new file mode 100644 index 0000000..d2a3d73 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tests/test-source-install.yml @@ -0,0 +1,23 @@ +--- +- hosts: all + + vars: + certbot_install_from_source: yes + + pre_tasks: + - name: Update apt cache. + apt: update_cache=yes cache_valid_time=600 + when: ansible_os_family == 'Debian' + changed_when: false + + - name: Install cron (RedHat). + yum: name=cronie state=present + when: ansible_os_family == 'RedHat' + + - name: Install cron (Debian). + apt: name=cron state=present + when: ansible_os_family == 'Debian' + + roles: + - geerlingguy.git + - role_under_test diff --git a/ansible/roles/geerlingguy.certbot/tests/test.yml b/ansible/roles/geerlingguy.certbot/tests/test.yml new file mode 100644 index 0000000..217fc45 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/tests/test.yml @@ -0,0 +1,19 @@ +--- +- hosts: all + + pre_tasks: + - name: Update apt cache. + apt: update_cache=yes cache_valid_time=600 + when: ansible_os_family == 'Debian' + changed_when: false + + - name: Install cron (RedHat). + yum: name=cronie state=present + when: ansible_os_family == 'RedHat' + + - name: Install cron (Debian). + apt: name=cron state=present + when: ansible_os_family == 'Debian' + + roles: + - role_under_test diff --git a/ansible/roles/geerlingguy.certbot/vars/Ubuntu-16.04.yml b/ansible/roles/geerlingguy.certbot/vars/Ubuntu-16.04.yml new file mode 100644 index 0000000..90e9138 --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/vars/Ubuntu-16.04.yml @@ -0,0 +1 @@ +certbot_package: letsencrypt diff --git a/ansible/roles/geerlingguy.certbot/vars/default.yml b/ansible/roles/geerlingguy.certbot/vars/default.yml new file mode 100644 index 0000000..d88f2dc --- /dev/null +++ b/ansible/roles/geerlingguy.certbot/vars/default.yml @@ -0,0 +1,2 @@ +--- +certbot_package: certbot diff --git a/ansible/roles/web/tasks/install.yaml b/ansible/roles/web/tasks/install.yaml index 173d9ad..de7edc4 100644 --- a/ansible/roles/web/tasks/install.yaml +++ b/ansible/roles/web/tasks/install.yaml @@ -16,4 +16,6 @@ dest: "{{ release_dir }}/docker-compose.yml" - name: Deploy Docker site - shell: docker-compose build + shell: make setup + args: + chdir: "{{ release_dir }}" diff --git a/ansible/roles/web/tasks/main.yaml b/ansible/roles/web/tasks/main.yaml index ba55afd..7cf0ac2 100644 --- a/ansible/roles/web/tasks/main.yaml +++ b/ansible/roles/web/tasks/main.yaml @@ -17,9 +17,6 @@ - nodejs - setup -- include: manage.yaml +- include: release.yaml tags: - - manage - - docker - - setup - - run + - release diff --git a/ansible/roles/web/tasks/manage.yaml b/ansible/roles/web/tasks/manage.yaml deleted file mode 100644 index 2e041d6..0000000 --- a/ansible/roles/web/tasks/manage.yaml +++ /dev/null @@ -1,19 +0,0 @@ ---- - -#- name: Build a current site -# shell: "docker-compose build web" - -- name: Migrate the site data - shell: "docker-compose exec web ./manage.py migrate" - -- name: Create administrative user - shell: "docker-compose exec web ./manage.py createsuperuser" - -- name: Compress site frontend - shell: "docker-compose exec web ./manage.py compress" - -- name: Collect static frontend files - shell: "docker-compose exec web ./manage.py collectstatic --noinput" - -- name: Start Docker site - shell: "docker-compose up -d" diff --git a/ansible/roles/web/tasks/nginx.yaml b/ansible/roles/web/tasks/nginx.yaml index c3d93dd..71c752c 100644 --- a/ansible/roles/web/tasks/nginx.yaml +++ b/ansible/roles/web/tasks/nginx.yaml @@ -7,6 +7,12 @@ src: nginx.conf.j2 dest: /etc/nginx/sites-available/{{ domain }} +- name: Copy extra Nginx site config + become: true + template: + src: ph-extra-nginx.conf.j2 + dest: /etc/nginx/sites-available/extra-{{ domain }} + - name: Activate Nginx site config become: true file: diff --git a/ansible/roles/web/tasks/release.yaml b/ansible/roles/web/tasks/release.yaml new file mode 100644 index 0000000..4e9ba20 --- /dev/null +++ b/ansible/roles/web/tasks/release.yaml @@ -0,0 +1,17 @@ +--- + +- name: Checkout code branch from git + git: + repo: 'https://github.com/datalets/public-health-ch' + dest: "{{ release_dir }}" + force: yes + version: "{{ gitversion }}" + +- name: Copy Docker site configuration + template: + src: docker-compose.j2 + dest: "{{ release_dir }}/docker-compose.yml" + +- name: Update Docker site + debug: + msg: "Please run 'make release' in {{ release_dir }} to finish updating the site" diff --git a/ansible/roles/web/templates/docker-compose.j2 b/ansible/roles/web/templates/docker-compose.j2 index 88fe9a8..836bbd0 100644 --- a/ansible/roles/web/templates/docker-compose.j2 +++ b/ansible/roles/web/templates/docker-compose.j2 @@ -31,6 +31,6 @@ postgres: ports: - "5432:5432" elasticsearch: - image: orchardup/elasticsearch + image: elasticsearch:2 ports: - "9200:9200" diff --git a/ansible/roles/web/templates/nginx.conf.j2 b/ansible/roles/web/templates/nginx.conf.j2 index 2882c0c..b351e07 100644 --- a/ansible/roles/web/templates/nginx.conf.j2 +++ b/ansible/roles/web/templates/nginx.conf.j2 @@ -6,7 +6,7 @@ upstream wagtail-site { server { listen [::]:80; listen 80; - server_name {{ domain }} www.{{ domain }}; + server_name {{ domain }}; client_max_body_size 16M; @@ -19,26 +19,28 @@ server { gzip_vary on; location /static/ { - access_log off; - expires 3600; + access_log off; expires 36000; alias {{ release_dir }}/static/; - add_header Cache-Control "public"; - add_header Access-Control-Allow-Origin https://{{ domain }}; + add_header Cache-Control "public"; + add_header Access-Control-Allow-Origin https://{{ domain }}; } # Set a longer expiry for CACHE/, because the filenames are unique. location /static/CACHE/ { - access_log off; - expires 864000; + access_log off; expires 864000; alias {{ release_dir }}/static/CACHE/; } + location /favicon.ico { + access_log off; expires max; + alias {{ release_dir }}/static/images/favicon.ico; + } + # Only serve /media/images by default, not e.g. original_images/. location /media/images { alias {{ release_dir }}/media/images; - access_log off; - expires max; - add_header Cache-Control "public"; + access_log off; expires max; + add_header Cache-Control "public"; } location / { @@ -48,23 +50,17 @@ server { proxy_redirect off; proxy_pass http://wagtail-site; } -} -# TODO: parameterize -server { - listen 80; listen 443 ssl; - server_name conference.public-health.ch; - location /fr { - return 301 $scheme://sph17.organizers-congress.org/frontend/index.php?sub=89; - } - location / { - return 301 $scheme://sph17.organizers-congress.org; - } -} + # Enable secure site support + listen [::]:443; + listen 443 ssl; + ssl on; + ssl_certificate /etc/letsencrypt/live/{{ domain }}/fullchain.pem; + ssl_certificate_key /etc/letsencrypt/live/{{ domain }}/privkey.pem; + include /etc/letsencrypt/options-ssl-nginx.conf; + + if ($scheme != "https") { + return 301 https://$host$request_uri; + } -# TODO: parameterize -server { - listen 80; listen 443 ssl; - server_name sphc.ch; - return 301 $scheme://sph17.organizers-congress.org; } diff --git a/ansible/roles/web/templates/ph-extra-nginx.conf.j2 b/ansible/roles/web/templates/ph-extra-nginx.conf.j2 new file mode 100644 index 0000000..abe43b4 --- /dev/null +++ b/ansible/roles/web/templates/ph-extra-nginx.conf.j2 @@ -0,0 +1,32 @@ +#{{ ansible_managed }} + +# Web archive and other special configurations for public-health.ch + +server { + listen 80; + server_name www-old.{{ domain }}; + index index.html index.htm; + root {{ archive_dir }}; + location / { + try_files $uri $uri/ =404; + } +} + +# TODO: parameterize +server { + listen 80; + server_name conference.{{ domain }}; + location /fr { + return 301 $scheme://sph17.organizers-congress.org/frontend/index.php?sub=89; + } + location / { + return 301 $scheme://sph17.organizers-congress.org; + } +} + +# TODO: parameterize +server { + listen 80; + server_name sphc.ch; + return 301 $scheme://sph17.organizers-congress.org; +} diff --git a/ansible/site.yaml b/ansible/site.yaml index f95e684..94c8163 100644 --- a/ansible/site.yaml +++ b/ansible/site.yaml @@ -3,6 +3,7 @@ gather_facts: True vars: release_dir: /opt/publichealth + archive_dir: /opt/www-old django_log_dir: /var/log/publichealth ipv4_addresses: "{{ ansible_all_ipv4_addresses }}" environment: diff --git a/config.codekit3 b/config.codekit3 deleted file mode 100644 index ca15963..0000000 --- a/config.codekit3 +++ /dev/null @@ -1,5423 +0,0 @@ -{ -"AAInfo": "This is a CodeKit 3 project config file. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. Doing so will cause CodeKit to crash and\/or corrupt your project. I know it looks like JSON, but it is *not*. Many numbers in this file are 64-bit long long bitFlags, which JSON does not support. These numbers *cannot* be treated as discrete values and if you attempt to parse this file as standard JSON with any public JSON parser, these values will be corrupted. This file is not backwards-compatible with CodeKit 1 or 2. For more information, see https:\/\/codekitapp.com\/", -"buildSteps": [ - { - "name": "Process All Remaining Files and Folders", - "stepType": 1, - "uuidString": "0F980939-F438-4FD0-A285-8ECBB562D22C" - } - ], -"creatorBuild": "25504", -"files": { - "\/.bowerrc": { - "ft": 8192, - "oA": 2, - "oAP": "\/.bowerrc", - "oF": 0 - }, - "\/.editorconfig": { - "ft": 8192, - "oA": 2, - "oAP": "\/.editorconfig", - "oF": 0 - }, - "\/.gitignore": { - "ft": 8192, - "oA": 2, - "oAP": "\/.gitignore", - "oF": 0 - }, - "\/bin\/post_compile": { - "ft": 8192, - "oA": 2, - "oAP": "\/bin\/post_compile", - "oF": 0 - }, - "\/bitbucket-pipelines.yml": { - "ft": 8192, - "oA": 2, - "oAP": "\/bitbucket-pipelines.yml", - "oF": 0 - }, - "\/bower.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/bower-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/docs\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/docs\/__init__.py", - "oF": 0 - }, - "\/docs\/conf.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/conf.py", - "oF": 0 - }, - "\/docs\/deploy.rst": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/deploy.rst", - "oF": 0 - }, - "\/docs\/index.rst": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/index.rst", - "oF": 0 - }, - "\/docs\/install.rst": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/install.rst", - "oF": 0 - }, - "\/docs\/make.bat": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/make.bat", - "oF": 0 - }, - "\/docs\/Makefile": { - "ft": 8192, - "oA": 2, - "oAP": "\/docs\/Makefile", - "oF": 0 - }, - "\/fabfile.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/fabfile.py", - "oF": 0 - }, - "\/Gruntfile.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/min\/Gruntfile-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/manage.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/manage.py", - "oF": 0 - }, - "\/package.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/package-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/Procfile": { - "ft": 8192, - "oA": 2, - "oAP": "\/Procfile", - "oF": 0 - }, - "\/publichealth\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/publichealth\/__init__.py", - "oF": 0 - }, - "\/publichealth\/home\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/publichealth\/home\/__init__.py", - "oF": 0 - }, - "\/publichealth\/home\/migrations\/0001_initial.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/migrations\/0001_initial.py", - "oF": 0 - }, - "\/publichealth\/home\/migrations\/0002_create_homepage.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/migrations\/0002_create_homepage.py", - "oF": 0 - }, - "\/publichealth\/home\/migrations\/0003_auto_20161209_0655.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/migrations\/0003_auto_20161209_0655.py", - "oF": 0 - }, - "\/publichealth\/home\/migrations\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/publichealth\/home\/migrations\/__init__.py", - "oF": 0 - }, - "\/publichealth\/home\/models.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/models.py", - "oF": 0 - }, - "\/publichealth\/home\/templates\/header.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/templates\/header.html", - "oF": 0 - }, - "\/publichealth\/home\/templates\/home\/home_page.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/templates\/home\/home_page.html", - "oF": 0 - }, - "\/publichealth\/home\/util.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/home\/util.py", - "oF": 0 - }, - "\/publichealth\/search\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/publichealth\/search\/__init__.py", - "oF": 0 - }, - "\/publichealth\/search\/templates\/search\/search.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/search\/templates\/search\/search.html", - "oF": 0 - }, - "\/publichealth\/search\/views.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/search\/views.py", - "oF": 0 - }, - "\/publichealth\/settings\/.gitignore": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/settings\/.gitignore", - "oF": 0 - }, - "\/publichealth\/settings\/__init__.py": { - "ft": 8192, - "oA": 1, - "oAP": "\/publichealth\/settings\/__init__.py", - "oF": 0 - }, - "\/publichealth\/settings\/base.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/settings\/base.py", - "oF": 0 - }, - "\/publichealth\/settings\/dev.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/settings\/dev.py", - "oF": 0 - }, - "\/publichealth\/settings\/production.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/settings\/production.py", - "oF": 0 - }, - "\/publichealth\/static\/css\/main.scss": { - "aP": 1, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/main.css", - "oF": 2, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_banner.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_banner.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_footer.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_footer.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_mixins.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_mixins.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_modules.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_modules.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_navbar.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_navbar.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/modules\/_news.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_news.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/paper\/_bootswatch.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_bootswatch.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/paper\/_variables.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/_variables.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/paper\/bootstrap.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/css\/paper\/bootstrap-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/css\/paper\/bootstrap.min.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/css\/paper\/bootstrap.min-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/css\/paper\/bootswatch.less": { - "aP": 0, - "bl": 0, - "dJ": 0, - "ft": 1, - "ie": 1, - "iI": 0, - "ma": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/css\/css\/bootswatch.css", - "oF": 0, - "oS": 0, - "rU": 0, - "sI": 0, - "sM": 0, - "sU": 0 - }, - "\/publichealth\/static\/css\/paper\/thumbnail.png": { - "ft": 32768, - "iS": 25645, - "oA": 0, - "oAP": "\/publichealth\/static\/css\/paper\/thumbnail.png", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/css\/paper\/variables.less": { - "aP": 0, - "bl": 0, - "dJ": 0, - "ft": 1, - "ie": 1, - "iI": 0, - "ma": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/css\/css\/variables.css", - "oF": 0, - "oS": 0, - "rU": 0, - "sI": 0, - "sM": 0, - "sU": 0 - }, - "\/publichealth\/static\/css\/slick.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick.css", - "oF": 2, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/slick\/slick-theme.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/slick-theme.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/css\/slick\/slick.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/css\/css\/slick.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/fonts\/slick.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/fonts\/slick.eot", - "oF": 0 - }, - "\/publichealth\/static\/fonts\/slick.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/fonts\/slick.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/fonts\/slick.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/fonts\/slick.ttf", - "oF": 0 - }, - "\/publichealth\/static\/fonts\/slick.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/fonts\/slick.woff", - "oF": 0 - }, - "\/publichealth\/static\/js\/main.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/js\/min\/main-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/.bower.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/.bower-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.eot", - "oF": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.ttf", - "oF": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff", - "oF": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff2": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff2", - "oF": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap-sprockets.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/min\/bootstrap-sprockets-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/min\/bootstrap-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/min\/bootstrap.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/affix.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/affix-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/alert.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/alert-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/button.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/button-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/carousel.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/carousel-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/collapse.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/collapse-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/dropdown.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/dropdown-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/modal.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/modal-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/popover.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/popover-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/scrollspy.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/scrollspy-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/tab.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/tab-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/tooltip.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/tooltip-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/transition.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/javascripts\/bootstrap\/min\/transition-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/_bootstrap-compass.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/css\/_bootstrap-compass.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/_bootstrap-mincer.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/css\/_bootstrap-mincer.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/_bootstrap-sprockets.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/css\/_bootstrap-sprockets.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/_bootstrap.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/css\/_bootstrap.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_alerts.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_alerts.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_badges.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_badges.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_breadcrumbs.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_breadcrumbs.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_button-groups.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_button-groups.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_buttons.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_buttons.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_carousel.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_carousel.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_close.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_close.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_code.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_code.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_component-animations.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_component-animations.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_dropdowns.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_dropdowns.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_forms.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_forms.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_glyphicons.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_glyphicons.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_grid.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_grid.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_input-groups.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_input-groups.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_jumbotron.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_jumbotron.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_labels.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_labels.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_list-group.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_list-group.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_media.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_media.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_mixins.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_mixins.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_modals.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_modals.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_navbar.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_navbar.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_navs.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_navs.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_normalize.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_normalize.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_pager.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_pager.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_pagination.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_pagination.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_panels.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_panels.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_popovers.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_popovers.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_print.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_print.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_progress-bars.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_progress-bars.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_responsive-embed.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_responsive-embed.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_responsive-utilities.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_responsive-utilities.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_scaffolding.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_scaffolding.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_tables.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_tables.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_theme.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_theme.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_thumbnails.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_thumbnails.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_tooltip.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_tooltip.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_type.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_type.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_utilities.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_utilities.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_variables.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_variables.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/_wells.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/css\/_wells.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_alerts.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_alerts.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_background-variant.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_background-variant.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_border-radius.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_border-radius.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_buttons.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_buttons.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_center-block.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_center-block.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_clearfix.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_clearfix.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_forms.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_forms.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_gradients.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_gradients.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_grid-framework.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_grid-framework.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_grid.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_grid.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_hide-text.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_hide-text.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_image.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_image.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_labels.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_labels.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_list-group.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_list-group.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_nav-divider.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_nav-divider.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_nav-vertical-align.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_nav-vertical-align.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_opacity.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_opacity.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_pagination.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_pagination.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_panels.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_panels.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_progress-bar.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_progress-bar.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_reset-filter.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_reset-filter.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_reset-text.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_reset-text.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_resize.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_resize.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_responsive-visibility.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_responsive-visibility.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_size.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_size.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_tab-focus.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_tab-focus.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_table-row.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_table-row.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_text-emphasis.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_text-emphasis.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_text-overflow.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_text-overflow.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/mixins\/_vendor-prefixes.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/assets\/stylesheets\/bootstrap\/css\/_vendor-prefixes.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/bower.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/bower-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/CHANGELOG.md": { - "cS": 0, - "eF": 1, - "eL": 1, - "eLB": 0, - "ema": 1, - "eSQ": 1, - "ft": 4096, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/CHANGELOG.html", - "oF": 0, - "oFM": 0, - "oS": 0, - "pHT": 0, - "pME": 1, - "rFN": 0, - "uCM": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/composer.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/composer-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/CONTRIBUTING.md": { - "cS": 0, - "eF": 1, - "eL": 1, - "eLB": 0, - "ema": 1, - "eSQ": 1, - "ft": 4096, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/CONTRIBUTING.html", - "oF": 0, - "oFM": 0, - "oS": 0, - "pHT": 0, - "pME": 1, - "rFN": 0, - "uCM": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/eyeglass-exports.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/min\/eyeglass-exports-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/LICENSE": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/LICENSE", - "oF": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/package.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/package-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/README.md": { - "cS": 0, - "eF": 1, - "eL": 1, - "eLB": 0, - "ema": 1, - "eSQ": 1, - "ft": 4096, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/README.html", - "oF": 0, - "oFM": 0, - "oS": 0, - "pHT": 0, - "pME": 1, - "rFN": 0, - "uCM": 0 - }, - "\/publichealth\/static\/libs\/bootstrap-sass\/sache.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/bootstrap-sass\/sache-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/jquery\/.bower.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/jquery\/.bower-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/jquery\/AUTHORS.txt": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/AUTHORS.txt", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/bower.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/jquery\/bower-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/core.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/min\/core-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/min\/jquery-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/min\/jquery.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.min.map": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/jquery.min.map", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.slim.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/min\/jquery.slim-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.slim.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/min\/jquery.slim.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/dist\/jquery.slim.min.map": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/dist\/jquery.slim.min.map", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/sizzle.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/min\/sizzle-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/sizzle.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/min\/sizzle.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/sizzle.min.map": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/dist\/sizzle.min.map", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/LICENSE.txt": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/external\/sizzle\/LICENSE.txt", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/LICENSE.txt": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/libs\/jquery\/LICENSE.txt", - "oF": 0 - }, - "\/publichealth\/static\/libs\/jquery\/README.md": { - "cS": 0, - "eF": 1, - "eL": 1, - "eLB": 0, - "ema": 1, - "eSQ": 1, - "ft": 4096, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/README.html", - "oF": 0, - "oFM": 0, - "oS": 0, - "pHT": 0, - "pME": 1, - "rFN": 0, - "uCM": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/.eslintrc.json": { - "ft": 524288, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/.eslintrc-min.json", - "oF": 0, - "oO": 0, - "oS": 1 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/ajax-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/jsonp.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/min\/jsonp-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/load.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/min\/load-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/parseXML.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/min\/parseXML-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/script.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/min\/script-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/location.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/min\/location-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/nonce.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/min\/nonce-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/rquery.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/var\/min\/rquery-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/ajax\/xhr.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/ajax\/min\/xhr-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/attributes-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes\/attr.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/attributes\/min\/attr-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes\/classes.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/attributes\/min\/classes-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes\/prop.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/attributes\/min\/prop-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/attributes\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/attributes\/val.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/attributes\/min\/val-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/callbacks.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/callbacks-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/core-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/access.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/access-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/DOMEval.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/DOMEval-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/init.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/init-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/parseHTML.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/parseHTML-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/ready-no-deferred.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/ready-no-deferred-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/ready.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/ready-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/readyException.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/readyException-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/stripAndCollapse.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/stripAndCollapse-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/core\/var\/rsingleTag.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/core\/var\/min\/rsingleTag-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/css-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/addGetHookIf.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/addGetHookIf-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/adjustCSS.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/adjustCSS-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/curCSS.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/curCSS-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/hiddenVisibleSelectors.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/hiddenVisibleSelectors-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/showHide.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/showHide-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/cssExpand.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/cssExpand-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/getStyles.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/getStyles-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/isHiddenWithinTree.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/isHiddenWithinTree-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/rmargin.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/rmargin-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/rnumnonpx.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/rnumnonpx-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/swap.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/css\/var\/min\/swap-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/data.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/data-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/data\/Data.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/data\/min\/Data-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/acceptData.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/min\/acceptData-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/dataPriv.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/min\/dataPriv-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/dataUser.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/data\/var\/min\/dataUser-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/deferred.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/deferred-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/deferred\/exceptionHook.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/deferred\/min\/exceptionHook-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/deprecated.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/deprecated-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/dimensions.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/dimensions-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/effects.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/effects-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/effects\/animatedSelector.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/effects\/min\/animatedSelector-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/effects\/Tween.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/effects\/min\/Tween-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/event-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event\/ajax.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/event\/min\/ajax-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event\/alias.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/event\/min\/alias-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event\/focusin.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/event\/min\/focusin-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/event\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/event\/trigger.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/event\/min\/trigger-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/exports\/amd.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/exports\/min\/amd-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/exports\/global.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/exports\/min\/global-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/jquery.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/jquery-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/manipulation-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/_evalUrl.js": { - "ft": 64, - "mi": 1, - "oA": 1, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/_evalUrl-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/buildFragment.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/buildFragment-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/getAll.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/getAll-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/setGlobalEval.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/setGlobalEval-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/rcheckableType.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/min\/rcheckableType-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/rscriptType.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/min\/rscriptType-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/rtagName.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/var\/min\/rtagName-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/wrapMap.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/manipulation\/min\/wrapMap-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/offset.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/offset-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/queue.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/queue-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/queue\/delay.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/queue\/min\/delay-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/selector-native.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/selector-native-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/selector-sizzle.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/selector-sizzle-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/selector.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/selector-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/serialize.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/serialize-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/traversing.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/traversing-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/traversing\/findFilter.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/traversing\/min\/findFilter-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/dir.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/min\/dir-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/rneedsContext.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/min\/rneedsContext-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/siblings.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/traversing\/var\/min\/siblings-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/arr.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/arr-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/class2type.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/class2type-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/concat.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/concat-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/document.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/document-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/documentElement.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/documentElement-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/fnToString.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/fnToString-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/getProto.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/getProto-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/hasOwn.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/hasOwn-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/indexOf.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/indexOf-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/ObjectFunctionString.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/ObjectFunctionString-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/pnum.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/pnum-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/push.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/push-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/rcssNum.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/rcssNum-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/rnothtmlwhite.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/rnothtmlwhite-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/slice.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/slice-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/support.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/support-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/var\/toString.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/var\/min\/toString-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/libs\/jquery\/src\/wrap.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/libs\/jquery\/src\/min\/wrap-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/css\/ajax-loader.gif": { - "ft": 4194304, - "iS": 4178, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/ajax-loader.gif", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/assets\/css\/font-awesome.min.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/font-awesome.min-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/css\/main.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/main-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/css\/slick.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.eot", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.ttf", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff2": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/bootstrap\/glyphicons-halflings-regular.woff2", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.eot", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.ttf", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.woff", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.woff2": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/fontawesome-webfont.woff2", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/FontAwesome.otf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/FontAwesome.otf", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/slick.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/slick.eot", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/slick.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/slick.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/slick.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/slick.ttf", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/fonts\/slick.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/fonts\/slick.woff", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/js\/bootstrap.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/js\/min\/bootstrap.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/js\/jquery.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/js\/min\/jquery.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/js\/main.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/js\/min\/main-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/js\/skel.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/js\/min\/skel.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/js\/util.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/js\/min\/util-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/ajax-loader.gif": { - "ft": 4194304, - "iS": 4178, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/ajax-loader.gif", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/config.rb": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/config.rb", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.eot": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.eot", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.svg": { - "ft": 2097152, - "miP": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.svg", - "oF": 0, - "opt": 0, - "plM": 3758088159, - "prP": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.ttf": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.ttf", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.woff": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/fonts\/slick.woff", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick-theme.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/slick-theme-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick-theme.less": { - "aP": 0, - "bl": 0, - "dJ": 0, - "ft": 1, - "ie": 1, - "iI": 0, - "ma": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick-theme.css", - "oF": 0, - "oS": 0, - "rU": 0, - "sI": 0, - "sM": 0, - "sU": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick-theme.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick-theme.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick.css": { - "aP": 0, - "bl": 0, - "ft": 16, - "ma": 0, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/slick-min.css", - "oF": 0, - "oS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/min\/slick-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick.less": { - "aP": 0, - "bl": 0, - "dJ": 0, - "ft": 1, - "ie": 1, - "iI": 0, - "ma": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick.css", - "oF": 0, - "oS": 0, - "rU": 0, - "sI": 0, - "sM": 0, - "sU": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick.min.js": { - "ft": 64, - "mi": 1, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/slick\/min\/slick.min-min.js", - "oF": 0, - "sC": 1, - "tS": 0 - }, - "\/publichealth\/static\/mockup\/assets\/slick\/slick.scss": { - "aP": 0, - "bl": 0, - "dP": 10, - "dS": 0, - "ft": 4, - "ma": 0, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/assets\/css\/slick.css", - "oF": 0, - "oS": 0, - "uL": 1 - }, - "\/publichealth\/static\/mockup\/images\/banner_0.jpg": { - "ft": 16384, - "iS": 56500, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/banner_0.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/banner_1.jpg": { - "ft": 16384, - "iS": 93170, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/banner_1.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/banner_2.jpg": { - "ft": 16384, - "iS": 88434, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/banner_2.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/banner_3.jpg": { - "ft": 16384, - "iS": 72163, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/banner_3.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/banner_4.jpg": { - "ft": 16384, - "iS": 341200, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/banner_4.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/ipad.jpg": { - "ft": 16384, - "iS": 11743, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/ipad.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/konf.jpg": { - "ft": 16384, - "iS": 14918, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/konf.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/lit.jpg": { - "ft": 16384, - "iS": 12587, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/lit.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/news_1.jpg": { - "ft": 16384, - "iS": 189948, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/news_1.jpg", - "oF": 0, - "opt": 1 - }, - "\/publichealth\/static\/mockup\/images\/public-health-bg.png": { - "ft": 32768, - "iS": 42822, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/public-health-bg.png", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/public-health-logo-sign.png": { - "ft": 32768, - "iS": 2615, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/public-health-logo-sign.png", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/public-health-logo.png": { - "ft": 32768, - "iS": 42474, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/public-health-logo.png", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/steth.jpg": { - "ft": 16384, - "iS": 10282, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/steth.jpg", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/static\/mockup\/images\/thumb_news_1.jpg": { - "ft": 16384, - "iS": 173465, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/thumb_news_1.jpg", - "oF": 0, - "opt": 1 - }, - "\/publichealth\/static\/mockup\/images\/thumb_news_2.jpg": { - "ft": 16384, - "iS": 72163, - "oA": 0, - "oAP": "\/publichealth\/static\/mockup\/images\/thumb_news_2.jpg", - "oF": 0, - "opt": 1 - }, - "\/publichealth\/static\/mockup\/index.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/index.html", - "oF": 0 - }, - "\/publichealth\/static\/mockup\/news-details.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/static\/mockup\/news-details.html", - "oF": 0 - }, - "\/publichealth\/static\/org\/public-health-bg.png": { - "ft": 32768, - "iS": 42822, - "oA": 0, - "oAP": "\/publichealth\/static\/org\/public-health-bg.png", - "oF": 0, - "opt": 0 - }, - "\/publichealth\/templates\/404.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/templates\/404.html", - "oF": 0 - }, - "\/publichealth\/templates\/500.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/templates\/500.html", - "oF": 0 - }, - "\/publichealth\/templates\/base.html": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/templates\/base.html", - "oF": 0 - }, - "\/publichealth\/urls.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/urls.py", - "oF": 0 - }, - "\/publichealth\/wsgi.py": { - "ft": 8192, - "oA": 2, - "oAP": "\/publichealth\/wsgi.py", - "oF": 0 - }, - "\/readme.md": { - "cS": 0, - "eF": 1, - "eL": 1, - "eLB": 0, - "ema": 1, - "eSQ": 1, - "ft": 4096, - "oA": 0, - "oAP": "\/readme.html", - "oF": 0, - "oFM": 0, - "oS": 0, - "pHT": 0, - "pME": 1, - "rFN": 0, - "uCM": 0 - }, - "\/requirements.txt": { - "ft": 8192, - "oA": 2, - "oAP": "\/requirements.txt", - "oF": 0 - }, - "\/runtime.txt": { - "ft": 8192, - "oA": 2, - "oAP": "\/runtime.txt", - "oF": 0 - }, - "\/stellar.yaml": { - "ft": 8192, - "oA": 2, - "oAP": "\/stellar.yaml", - "oF": 0 - }, - "\/vagrant\/provision.sh": { - "ft": 8192, - "oA": 2, - "oAP": "\/vagrant\/provision.sh", - "oF": 0 - }, - "\/Vagrantfile": { - "ft": 8192, - "oA": 2, - "oAP": "\/Vagrantfile", - "oF": 0 - } - }, -"hooks": [ - ], -"manualImportLinks": { - }, -"projectAttributes": { - "creationDate": 504188722, - "displayValue": "public-health-ch", - "displayValueWasSetByUser": 0, - "iconImageName": "brackets_teal" - }, -"projectSettings": { - "abortBuildOnError": 1, - "alwaysUseExternalServer": 0, - "animateCSSInjections": 1, - "autoBuildNewItems": 1, - "autoprefixerBrowserString": "> 1%, last 2 versions, Firefox ESR, Opera 12.1", - "babelAuxiliaryCommentAfter": "", - "babelAuxiliaryCommentBefore": "", - "babelConfigFileHandlingType": 0, - "babelCustomPluginsList": "", - "babelCustomPresetsList": "", - "babelInsertModuleIDs": 0, - "babelModuleID": "", - "babelNoComments": 0, - "babelPlugins": { - "async-generator-functions": { - "active": 0 - }, - "async-to-generator": { - "active": 0 - }, - "async-to-module-method": { - "active": 0 - }, - "class-properties": { - "active": 0 - }, - "decorators": { - "active": 0 - }, - "decorators-legacy": { - "active": 0 - }, - "do-expressions": { - "active": 0 - }, - "es2015-arrow-functions": { - "active": 0 - }, - "es2015-block-scoped-functions": { - "active": 0 - }, - "es2015-block-scoping": { - "active": 0 - }, - "es2015-classes": { - "active": 0 - }, - "es2015-computed-properties": { - "active": 0 - }, - "es2015-constants": { - "active": 0 - }, - "es2015-destructuring": { - "active": 0 - }, - "es2015-duplicate-keys": { - "active": 0 - }, - "es2015-for-of": { - "active": 0 - }, - "es2015-function-name": { - "active": 0 - }, - "es2015-literals": { - "active": 0 - }, - "es2015-modules-amd": { - "active": 0 - }, - "es2015-modules-commonjs": { - "active": 0 - }, - "es2015-modules-systemjs": { - "active": 0 - }, - "es2015-modules-umd": { - "active": 0 - }, - "es2015-object-super": { - "active": 0 - }, - "es2015-parameters": { - "active": 0 - }, - "es2015-shorthand-properties": { - "active": 0 - }, - "es2015-spread": { - "active": 0 - }, - "es2015-sticky-regex": { - "active": 0 - }, - "es2015-template-literals": { - "active": 0 - }, - "es2015-typeof-symbol": { - "active": 0 - }, - "es2015-unicode-regex": { - "active": 0 - }, - "es3-member-expression-literals": { - "active": 0 - }, - "es3-property-literals": { - "active": 0 - }, - "es5-property-mutators": { - "active": 0 - }, - "eval": { - "active": 0 - }, - "exponentiation-operator": { - "active": 0 - }, - "export-extensions": { - "active": 0 - }, - "external-helpers": { - "active": 0 - }, - "flow-comments": { - "active": 0 - }, - "flow-strip-types": { - "active": 0 - }, - "function-bind": { - "active": 0 - }, - "inline-environment-variables": { - "active": 0 - }, - "jscript": { - "active": 0 - }, - "member-expression-literals": { - "active": 0 - }, - "merge-sibling-variables": { - "active": 0 - }, - "minify-booleans": { - "active": 0 - }, - "node-env-inline": { - "active": 0 - }, - "object-assign": { - "active": 0 - }, - "object-rest-spread": { - "active": 0 - }, - "object-set-prototype-of-to-assign": { - "active": 0 - }, - "property-literals": { - "active": 0 - }, - "proto-to-assign": { - "active": 0 - }, - "react-constant-elements": { - "active": 0 - }, - "react-display-name": { - "active": 0 - }, - "react-inline-elements": { - "active": 0 - }, - "react-jsx": { - "active": 0 - }, - "react-jsx-compat": { - "active": 0 - }, - "react-jsx-self": { - "active": 0 - }, - "react-jsx-source": { - "active": 0 - }, - "regenerator": { - "active": 0 - }, - "remove-console": { - "active": 0 - }, - "remove-debugger": { - "active": 0 - }, - "runtime": { - "active": 0 - }, - "simplify-comparison-operators": { - "active": 0 - }, - "strict-mode": { - "active": 0 - }, - "syntax-async-generators": { - "active": 0 - }, - "syntax-class-properties": { - "active": 0 - }, - "syntax-decorators": { - "active": 0 - }, - "syntax-do-expressions": { - "active": 0 - }, - "syntax-export-extensions": { - "active": 0 - }, - "syntax-flow": { - "active": 0 - }, - "syntax-function-bind": { - "active": 0 - }, - "syntax-function-sent": { - "active": 0 - }, - "syntax-jsx": { - "active": 0 - }, - "syntax-object-rest-spread": { - "active": 0 - }, - "undeclared-variables-check": { - "active": 0 - }, - "undefined-to-void": { - "active": 0 - } - }, - "babelPresetType": 193, - "babelRetainLines": 0, - "bowerAbbreviatedPath": "bower_components", - "bowerAutoCreateInfoFile": 1, - "bowerInstallDevDependencies": 0, - "bowerSaveDependencies": 1, - "bowerSaveDevDependencies": 0, - "bowerUseExactVersion": 0, - "browserRefreshDelay": 0, - "buildFolderActive": 0, - "buildFolderName": "build", - "cleanBuild": 1, - "coffeeLintFlags2": { - "arrow_spacing": { - "active": 0, - "flagValue": -1 - }, - "camel_case_classes": { - "active": 1, - "flagValue": -1 - }, - "colon_assignment_spacing": { - "active": 0, - "flagValue": 1 - }, - "cyclomatic_complexity": { - "active": 0, - "flagValue": 10 - }, - "duplicate_key": { - "active": 1, - "flagValue": -1 - }, - "empty_constructor_needs_parens": { - "active": 0, - "flagValue": -1 - }, - "ensure_comprehensions": { - "active": 1, - "flagValue": -1 - }, - "indentation": { - "active": 1, - "flagValue": 2 - }, - "line_endings": { - "active": 0, - "flagValue": 0 - }, - "max_line_length": { - "active": 0, - "flagValue": 150 - }, - "missing_fat_arrows": { - "active": 0, - "flagValue": -1 - }, - "newlines_after_classes": { - "active": 0, - "flagValue": 3 - }, - "no_backticks": { - "active": 1, - "flagValue": -1 - }, - "no_debugger": { - "active": 1, - "flagValue": -1 - }, - "no_empty_functions": { - "active": 0, - "flagValue": -1 - }, - "no_empty_param_list": { - "active": 0, - "flagValue": -1 - }, - "no_implicit_braces": { - "active": 1, - "flagValue": -1 - }, - "no_implicit_parens": { - "active": 0, - "flagValue": -1 - }, - "no_interpolation_in_single_quotes": { - "active": 0, - "flagValue": -1 - }, - "no_nested_string_interpolation": { - "active": 1, - "flagValue": -1 - }, - "no_plusplus": { - "active": 0, - "flagValue": -1 - }, - "no_private_function_fat_arrows": { - "active": 1, - "flagValue": -1 - }, - "no_stand_alone_at": { - "active": 1, - "flagValue": -1 - }, - "no_tabs": { - "active": 1, - "flagValue": -1 - }, - "no_this": { - "active": 0, - "flagValue": -1 - }, - "no_throwing_strings": { - "active": 1, - "flagValue": -1 - }, - "no_trailing_semicolons": { - "active": 1, - "flagValue": -1 - }, - "no_trailing_whitespace": { - "active": 1, - "flagValue": -1 - }, - "no_unnecessary_double_quotes": { - "active": 0, - "flagValue": -1 - }, - "no_unnecessary_fat_arrows": { - "active": 1, - "flagValue": -1 - }, - "non_empty_constructor_needs_parens": { - "active": 0, - "flagValue": -1 - }, - "prefer_english_operator": { - "active": 0, - "flagValue": -1 - }, - "space_operators": { - "active": 0, - "flagValue": -1 - }, - "spacing_after_comma": { - "active": 1, - "flagValue": -1 - } - }, - "esLintConfigFileHandlingType": 0, - "esLintECMAVersion": 7, - "esLintEnvironmentsMask": 1, - "esLintRules": { - "accessor-pairs": { - "active": 0, - "optionString": "{'setWithoutGet': true, 'getWithoutSet': false}" - }, - "array-bracket-spacing": { - "active": 0, - "optionString": "'never', {'singleValue': false, 'objectsInArrays': false, 'arraysInArrays': false}" - }, - "array-callback-return": { - "active": 0, - "optionString": "" - }, - "arrow-body-style": { - "active": 0, - "optionString": "'as-needed', {'requireReturnForObjectLiteral': false}" - }, - "arrow-parens": { - "active": 0, - "optionString": "'always'" - }, - "arrow-spacing": { - "active": 0, - "optionString": "{'before': true, 'after': true}" - }, - "block-scoped-var": { - "active": 0, - "optionString": "" - }, - "block-spacing": { - "active": 0, - "optionString": "'always'" - }, - "brace-style": { - "active": 0, - "optionString": "'1tbs', {'allowSingleLine': true}" - }, - "callback-return": { - "active": 0, - "optionString": "['callback', 'cb', 'next']" - }, - "camelcase": { - "active": 0, - "optionString": "{'properties': 'always'}" - }, - "capitalized-comments": { - "active": 0, - "optionString": "'always', {'ignoreInlineComments': false, 'ignoreConsecutiveComments': false}" - }, - "class-methods-use-this": { - "active": 0, - "optionString": "{'exceptMethods': []}" - }, - "comma-dangle": { - "active": 1, - "optionString": "'never'" - }, - "comma-spacing": { - "active": 0, - "optionString": "{'before': false, 'after': true}" - }, - "comma-style": { - "active": 0, - "optionString": "'last'" - }, - "complexity": { - "active": 0, - "optionString": "20" - }, - "computed-property-spacing": { - "active": 0, - "optionString": "'never'" - }, - "consistent-return": { - "active": 0, - "optionString": "{'treatUndefinedAsUnspecified': false}" - }, - "consistent-this": { - "active": 0, - "optionString": "'that'" - }, - "constructor-super": { - "active": 1, - "optionString": "" - }, - "curly": { - "active": 0, - "optionString": "'all'" - }, - "default-case": { - "active": 0, - "optionString": "" - }, - "dot-location": { - "active": 0, - "optionString": "'object'" - }, - "dot-notation": { - "active": 0, - "optionString": "{'allowKeywords': false}" - }, - "eol-last": { - "active": 0, - "optionString": "'always'" - }, - "eqeqeq": { - "active": 0, - "optionString": "'always', {'null': 'always'}" - }, - "func-call-spacing": { - "active": 0, - "optionString": "'never'" - }, - "func-name-matching": { - "active": 0, - "optionString": "'always', {'includeCommonJSModuleExports': false}" - }, - "func-names": { - "active": 0, - "optionString": "'always'" - }, - "func-style": { - "active": 0, - "optionString": "'expression'" - }, - "generator-star-spacing": { - "active": 0, - "optionString": "{'before': true, 'after': false}" - }, - "global-require": { - "active": 0, - "optionString": "" - }, - "guard-for-in": { - "active": 0, - "optionString": "" - }, - "handle-callback-err": { - "active": 0, - "optionString": "'err'" - }, - "id-blacklist": { - "active": 0, - "optionString": "'data', 'err', 'e', 'cb', 'callback'" - }, - "id-length": { - "active": 0, - "optionString": "{'min': 2, 'max': 1000, 'properties': 'always', 'exceptions': ['x', 'i', 'y']}" - }, - "id-match": { - "active": 0, - "optionString": "'^[a-z]+([A-Z][a-z]+)*$', {'properties': false, 'onlyDeclarations': true}" - }, - "indent": { - "active": 0, - "optionString": "4, {'SwitchCase': 0, 'VariableDeclarator': 1, 'outerIIFEBody': 1, }" - }, - "init-declarations": { - "active": 0, - "optionString": "'always', {'ignoreForLoopInit': true}" - }, - "jsx-quotes": { - "active": 0, - "optionString": "'prefer-double'" - }, - "key-spacing": { - "active": 0, - "optionString": "{'singleLine': {'beforeColon': false, 'afterColon': true, 'mode':'strict'}, 'multiLine': {'beforeColon': false, 'afterColon': true, 'align': 'value', 'mode':'minimum'}}" - }, - "keyword-spacing": { - "active": 0, - "optionString": "{'before': true, 'after': true, 'overrides': {}}" - }, - "line-comment-position": { - "active": 0, - "optionString": "{'position': 'above'}" - }, - "linebreak-style": { - "active": 0, - "optionString": "'unix'" - }, - "lines-around-comment": { - "active": 0, - "optionString": "{'beforeBlockComment': true}" - }, - "lines-around-directive": { - "active": 0, - "optionString": "{'before': 'always', 'after': 'always'}" - }, - "max-depth": { - "active": 0, - "optionString": "{'max': 4}" - }, - "max-len": { - "active": 0, - "optionString": "{'code': 80, 'comments': 80, 'tabWidth': 4, 'ignoreUrls': true, 'ignoreStrings': true, 'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true}" - }, - "max-lines": { - "active": 0, - "optionString": "{'max': 300, 'skipBlankLines': true, 'skipComments': true}" - }, - "max-nested-callbacks": { - "active": 0, - "optionString": "{'max': 10}" - }, - "max-params": { - "active": 0, - "optionString": "{'max': 4}" - }, - "max-statements": { - "active": 0, - "optionString": "{'max': 10}, {'ignoreTopLevelFunctions': true}" - }, - "max-statements-per-line": { - "active": 0, - "optionString": "{'max': 1}" - }, - "multiline-ternary": { - "active": 0, - "optionString": "'always'" - }, - "new-cap": { - "active": 0, - "optionString": "{'newIsCap': true, 'capIsNew': true, 'newIsCapExceptions': [], 'capIsNewExceptions': ['Array', 'Boolean', 'Date', 'Error', 'Function', 'Number', 'Object', 'RegExp', 'String', 'Symbol'], 'properties': true}" - }, - "new-parens": { - "active": 0, - "optionString": "" - }, - "newline-after-var": { - "active": 0, - "optionString": "'always'" - }, - "newline-before-return": { - "active": 0, - "optionString": "" - }, - "newline-per-chained-call": { - "active": 0, - "optionString": "{'ignoreChainWithDepth': 2}" - }, - "no-alert": { - "active": 0, - "optionString": "" - }, - "no-array-constructor": { - "active": 0, - "optionString": "" - }, - "no-await-in-loop": { - "active": 0, - "optionString": "" - }, - "no-bitwise": { - "active": 0, - "optionString": "{'allow': ['~'], 'int32Hint': true}" - }, - "no-caller": { - "active": 0, - "optionString": "" - }, - "no-case-declarations": { - "active": 1, - "optionString": "" - }, - "no-catch-shadow": { - "active": 0, - "optionString": "" - }, - "no-class-assign": { - "active": 1, - "optionString": "" - }, - "no-cond-assign": { - "active": 1, - "optionString": "'except-parens'" - }, - "no-confusing-arrow": { - "active": 0, - "optionString": "{'allowParens': false}" - }, - "no-console": { - "active": 1, - "optionString": "{'allow': ['warn', 'error']}" - }, - "no-const-assign": { - "active": 1, - "optionString": "" - }, - "no-constant-condition": { - "active": 1, - "optionString": "{'checkLoops': true}" - }, - "no-continue": { - "active": 0, - "optionString": "" - }, - "no-control-regex": { - "active": 1, - "optionString": "" - }, - "no-debugger": { - "active": 1, - "optionString": "" - }, - "no-delete-var": { - "active": 1, - "optionString": "" - }, - "no-div-regex": { - "active": 0, - "optionString": "" - }, - "no-dupe-args": { - "active": 1, - "optionString": "" - }, - "no-dupe-class-members": { - "active": 1, - "optionString": "" - }, - "no-dupe-keys": { - "active": 1, - "optionString": "" - }, - "no-duplicate-imports": { - "active": 0, - "optionString": "{'includeExports': false}" - }, - "no-else-return": { - "active": 0, - "optionString": "" - }, - "no-empty": { - "active": 1, - "optionString": "{'allowEmptyCatch': false}" - }, - "no-empty-character-class": { - "active": 1, - "optionString": "" - }, - "no-empty-function": { - "active": 0, - "optionString": "{'allow': []}" - }, - "no-empty-pattern": { - "active": 1, - "optionString": "" - }, - "no-eq-null": { - "active": 0, - "optionString": "" - }, - "no-eval": { - "active": 0, - "optionString": "{'allowIndirect': false}" - }, - "no-ex-assign": { - "active": 1, - "optionString": "" - }, - "no-extend-native": { - "active": 0, - "optionString": "{'exceptions': []}" - }, - "no-extra-bind": { - "active": 0, - "optionString": "" - }, - "no-extra-boolean-cast": { - "active": 1, - "optionString": "" - }, - "no-extra-labels": { - "active": 0, - "optionString": "" - }, - "no-extra-parens": { - "active": 1, - "optionString": "'all', {'conditionalAssign': false, 'returnAssign': false, 'nestedBinaryExpressions': false}" - }, - "no-extra-semi": { - "active": 1, - "optionString": "" - }, - "no-fallthrough": { - "active": 1, - "optionString": "" - }, - "no-floating-decimal": { - "active": 0, - "optionString": "" - }, - "no-func-assign": { - "active": 1, - "optionString": "" - }, - "no-global-assign": { - "active": 0, - "optionString": "{'exceptions': []}" - }, - "no-implicit-coercion": { - "active": 0, - "optionString": "{'boolean': true, 'number': true, 'string': true, 'allow': []}" - }, - "no-implicit-globals": { - "active": 0, - "optionString": "" - }, - "no-implied-eval": { - "active": 0, - "optionString": "" - }, - "no-inline-comments": { - "active": 0, - "optionString": "" - }, - "no-inner-declarations": { - "active": 1, - "optionString": "'functions'" - }, - "no-invalid-regexp": { - "active": 1, - "optionString": "{'allowConstructorFlags': ['u', 'y']}" - }, - "no-invalid-this": { - "active": 0, - "optionString": "" - }, - "no-irregular-whitespace": { - "active": 1, - "optionString": "{'skipStrings': true, 'skipComments': false, 'skipRegExps': true, 'skipTemplates': true}" - }, - "no-iterator": { - "active": 0, - "optionString": "" - }, - "no-label-var": { - "active": 0, - "optionString": "" - }, - "no-labels": { - "active": 0, - "optionString": "{'allowLoop': false, 'allowSwitch': false}" - }, - "no-lone-blocks": { - "active": 0, - "optionString": "" - }, - "no-lonely-if": { - "active": 0, - "optionString": "" - }, - "no-loop-func": { - "active": 0, - "optionString": "" - }, - "no-magic-numbers": { - "active": 0, - "optionString": "{'ignore': [], 'ignoreArrayIndexes': true, 'enforceConst': false, 'detectObjects': false}" - }, - "no-mixed-operators": { - "active": 0, - "optionString": "{'groups': [['+', '-', '*', '\/', '%', '**'], ['&', '|', '^', '~', '<<', '>>', '>>>'], ['==', '!=', '===', '!==', '>', '>=', '<', '<='], ['&&', '||'], ['in', 'instanceof']], 'allowSamePrecedence': true}" - }, - "no-mixed-requires": { - "active": 0, - "optionString": "{'grouping': false, 'allowCall': false }" - }, - "no-mixed-spaces-and-tabs": { - "active": 0, - "optionString": "" - }, - "no-multi-spaces": { - "active": 0, - "optionString": "{'exceptions': {'Property': true, 'BinaryExpression': false, 'VariableDeclarator': false, 'ImportDeclaration': false}}" - }, - "no-multi-str": { - "active": 0, - "optionString": "" - }, - "no-multiple-empty-lines": { - "active": 0, - "optionString": "{'max': 2, 'maxBOF': 2, 'maxEOF': 2}" - }, - "no-negated-condition": { - "active": 0, - "optionString": "" - }, - "no-nested-ternary": { - "active": 0, - "optionString": "" - }, - "no-new": { - "active": 0, - "optionString": "" - }, - "no-new-func": { - "active": 0, - "optionString": "" - }, - "no-new-object": { - "active": 0, - "optionString": "" - }, - "no-new-require": { - "active": 0, - "optionString": "" - }, - "no-new-symbol": { - "active": 1, - "optionString": "" - }, - "no-new-wrappers": { - "active": 0, - "optionString": "" - }, - "no-obj-calls": { - "active": 1, - "optionString": "" - }, - "no-octal": { - "active": 1, - "optionString": "" - }, - "no-octal-escape": { - "active": 0, - "optionString": "" - }, - "no-param-reassign": { - "active": 0, - "optionString": "{'props': false}" - }, - "no-path-concat": { - "active": 0, - "optionString": "" - }, - "no-plusplus": { - "active": 0, - "optionString": "{'allowForLoopAfterthoughts': false}" - }, - "no-process-env": { - "active": 0, - "optionString": "" - }, - "no-process-exit": { - "active": 0, - "optionString": "" - }, - "no-proto": { - "active": 0, - "optionString": "" - }, - "no-redeclare": { - "active": 1, - "optionString": "{'builtinGlobals': false}" - }, - "no-regex-spaces": { - "active": 1, - "optionString": "" - }, - "no-restricted-globals": { - "active": 0, - "optionString": "'event', 'fdescribe'" - }, - "no-restricted-imports": { - "active": 0, - "optionString": "" - }, - "no-restricted-modules": { - "active": 0, - "optionString": "" - }, - "no-restricted-properties": { - "active": 0, - "optionString": "[{'object': 'disallowedObjectName', 'property': 'disallowedPropertyName'}, {'object': 'disallowedObjectName', 'property': 'anotherDisallowedPropertyName', 'message': 'Please use allowedObjectName.allowedPropertyName.'}]" - }, - "no-restricted-syntax": { - "active": 0, - "optionString": "'FunctionExpression', 'WithStatement'" - }, - "no-return-assign": { - "active": 0, - "optionString": "'except-parens'" - }, - "no-return-await": { - "active": 0, - "optionString": "" - }, - "no-script-url": { - "active": 0, - "optionString": "" - }, - "no-self-assign": { - "active": 1, - "optionString": "{'props': false}" - }, - "no-self-compare": { - "active": 1, - "optionString": "" - }, - "no-sequences": { - "active": 0, - "optionString": "" - }, - "no-shadow": { - "active": 0, - "optionString": "{'builtinGlobals': false, 'hoist': 'functions', 'allow': []}" - }, - "no-shadow-restricted-names": { - "active": 0, - "optionString": "" - }, - "no-sparse-arrays": { - "active": 1, - "optionString": "" - }, - "no-sync": { - "active": 0, - "optionString": "" - }, - "no-tabs": { - "active": 0, - "optionString": "" - }, - "no-template-curly-in-string": { - "active": 1, - "optionString": "" - }, - "no-ternary": { - "active": 0, - "optionString": "" - }, - "no-this-before-super": { - "active": 1, - "optionString": "" - }, - "no-throw-literal": { - "active": 0, - "optionString": "" - }, - "no-trailing-spaces": { - "active": 0, - "optionString": "{'skipBlankLines': false}" - }, - "no-undef": { - "active": 1, - "optionString": "{'typeof': false}" - }, - "no-undef-init": { - "active": 0, - "optionString": "" - }, - "no-undefined": { - "active": 0, - "optionString": "" - }, - "no-underscore-dangle": { - "active": 0, - "optionString": "{'allow': [], 'allowAfterThis': false, 'allowAfterSuper': false}" - }, - "no-unexpected-multiline": { - "active": 1, - "optionString": "" - }, - "no-unmodified-loop-condition": { - "active": 0, - "optionString": "" - }, - "no-unneeded-ternary": { - "active": 0, - "optionString": "{'defaultAssignment': true}" - }, - "no-unreachable": { - "active": 1, - "optionString": "" - }, - "no-unsafe-finally": { - "active": 1, - "optionString": "" - }, - "no-unsafe-negation": { - "active": 0, - "optionString": "" - }, - "no-unused-expressions": { - "active": 0, - "optionString": "{'allowShortCircuit': false, 'allowTernary': false}" - }, - "no-unused-labels": { - "active": 1, - "optionString": "" - }, - "no-unused-vars": { - "active": 1, - "optionString": "{'vars': 'all', 'args': 'after-used', 'caughtErrors': 'none'}" - }, - "no-use-before-define": { - "active": 0, - "optionString": "{'functions': true, 'classes': true}" - }, - "no-useless-call": { - "active": 0, - "optionString": "" - }, - "no-useless-computed-key": { - "active": 1, - "optionString": "" - }, - "no-useless-concat": { - "active": 0, - "optionString": "" - }, - "no-useless-constructor": { - "active": 0, - "optionString": "" - }, - "no-useless-escape": { - "active": 0, - "optionString": "" - }, - "no-useless-rename": { - "active": 0, - "optionString": "{'ignoreDestructuring': false, 'ignoreImport': false, 'ignoreExport': false}" - }, - "no-useless-return": { - "active": 0, - "optionString": "" - }, - "no-var": { - "active": 0, - "optionString": "" - }, - "no-void": { - "active": 0, - "optionString": "" - }, - "no-warning-comments": { - "active": 0, - "optionString": "{'terms': ['todo', 'fixme', 'xxx'], 'location': 'start'}" - }, - "no-whitespace-before-property": { - "active": 0, - "optionString": "" - }, - "no-with": { - "active": 0, - "optionString": "" - }, - "object-curly-newline": { - "active": 0, - "optionString": "{'ObjectExpression': {'multiline': true}, 'ObjectPattern': {'multiline': true}}" - }, - "object-curly-spacing": { - "active": 0, - "optionString": "'never'" - }, - "object-property-newline": { - "active": 0, - "optionString": "{'allowMultiplePropertiesPerLine': true}" - }, - "object-shorthand": { - "active": 0, - "optionString": "'always', {'avoidQuotes': false, 'ignoreConstructors': false}" - }, - "one-var": { - "active": 0, - "optionString": "'always'" - }, - "one-var-declaration-per-line": { - "active": 0, - "optionString": "'always'" - }, - "operator-assignment": { - "active": 0, - "optionString": "'always'" - }, - "operator-linebreak": { - "active": 0, - "optionString": "'after', {'overrides': {'?': 'after', '+=': 'none'}}" - }, - "padded-blocks": { - "active": 0, - "optionString": "{'blocks': 'always', 'switches': 'always', 'classes': 'always'}" - }, - "prefer-arrow-callback": { - "active": 0, - "optionString": "" - }, - "prefer-const": { - "active": 0, - "optionString": "{'destructuring': 'any', 'ignoreReadBeforeAssign': false}" - }, - "prefer-destructuring": { - "active": 0, - "optionString": "{'array': true, 'object': true}, {'enforceForRenamedProperties': false}" - }, - "prefer-numeric-literals": { - "active": 0, - "optionString": "" - }, - "prefer-rest-params": { - "active": 0, - "optionString": "" - }, - "prefer-spread": { - "active": 0, - "optionString": "" - }, - "prefer-template": { - "active": 0, - "optionString": "" - }, - "quote-props": { - "active": 0, - "optionString": "'always'" - }, - "quotes": { - "active": 0, - "optionString": "'double', {'avoidEscape': true, 'allowTemplateLiterals': true}" - }, - "radix": { - "active": 0, - "optionString": "'always'" - }, - "require-await": { - "active": 0, - "optionString": "" - }, - "require-jsdoc": { - "active": 0, - "optionString": "{'require': {'FunctionDeclaration': true, 'MethodDefinition': false, 'ClassDeclaration': false, 'ArrowFunctionExpression': false}}" - }, - "require-yield": { - "active": 0, - "optionString": "" - }, - "rest-spread-spacing": { - "active": 0, - "optionString": "'never'" - }, - "semi": { - "active": 0, - "optionString": "'always', {'omitLastInOneLineBlock': false}" - }, - "semi-spacing": { - "active": 0, - "optionString": "{'before': false, 'after': true}" - }, - "sort-imports": { - "active": 0, - "optionString": "{'ignoreCase': false, 'ignoreMemberSort': true, 'memberSyntaxSortOrder': ['none', 'all', 'multiple', 'single']}" - }, - "sort-keys": { - "active": 0, - "optionString": "'asc', {'caseSensitive': true, 'natural': false}" - }, - "sort-vars": { - "active": 0, - "optionString": "{'ignoreCase': false}" - }, - "space-before-blocks": { - "active": 0, - "optionString": "{'functions': 'always', 'keywords': 'always', 'classes': 'always'}" - }, - "space-before-function-paren": { - "active": 0, - "optionString": "{'anonymous': 'always', 'named': 'never'}" - }, - "space-in-parens": { - "active": 0, - "optionString": "'never', {'exceptions': []}" - }, - "space-infix-ops": { - "active": 0, - "optionString": "{'int32Hint': false}" - }, - "space-unary-ops": { - "active": 0, - "optionString": "{'words': true, 'nonwords': false, 'overrides': {}}" - }, - "spaced-comment": { - "active": 0, - "optionString": "'always', {'line': {'markers': ['\/'], 'exceptions': ['-', '+']}, 'block': {'markers': ['!'], 'exceptions': ['*'], 'balanced': false}}" - }, - "strict": { - "active": 0, - "optionString": "'safe'" - }, - "symbol-description": { - "active": 0, - "optionString": "" - }, - "template-curly-spacing": { - "active": 0, - "optionString": "'never'" - }, - "unicode-bom": { - "active": 0, - "optionString": "'never'" - }, - "use-isnan": { - "active": 1, - "optionString": "" - }, - "valid-jsdoc": { - "active": 0, - "optionString": "{'prefer': {'return': 'returns'}, 'requireReturn': true, 'requireReturnDescription': true, 'requireReturnType': true, 'requireParamDescription': true}" - }, - "valid-typeof": { - "active": 1, - "optionString": "{'requireStringLiterals': true}" - }, - "vars-on-top": { - "active": 0, - "optionString": "" - }, - "wrap-iife": { - "active": 0, - "optionString": "'outside'" - }, - "wrap-regex": { - "active": 0, - "optionString": "" - }, - "yield-star-spacing": { - "active": 0, - "optionString": "{'before': false, 'after': true}" - }, - "yoda": { - "active": 0, - "optionString": "'never', {'exceptRange': false, 'onlyEquality': false}" - } - }, - "esLintSourceType": 0, - "externalServerAddress": "http:\/\/localhost:8888", - "gitIgnoreBuildFolder": 1, - "hideConfigFile": 0, - "jsCheckerReservedNamesString": "", - "jsHintFlags2": { - "asi": { - "active": 0, - "flagValue": -1 - }, - "bitwise": { - "active": 1, - "flagValue": -1 - }, - "boss": { - "active": 0, - "flagValue": -1 - }, - "browser": { - "active": 1, - "flagValue": -1 - }, - "browserify": { - "active": 0, - "flagValue": -1 - }, - "camelcase": { - "active": 0, - "flagValue": -1 - }, - "couch": { - "active": 0, - "flagValue": -1 - }, - "curly": { - "active": 1, - "flagValue": -1 - }, - "debug": { - "active": 0, - "flagValue": -1 - }, - "devel": { - "active": 0, - "flagValue": -1 - }, - "dojo": { - "active": 0, - "flagValue": -1 - }, - "elision": { - "active": 1, - "flagValue": -1 - }, - "eqeqeq": { - "active": 1, - "flagValue": -1 - }, - "eqnull": { - "active": 0, - "flagValue": -1 - }, - "es3": { - "active": 0, - "flagValue": -1 - }, - "esnext": { - "active": 0, - "flagValue": -1 - }, - "evil": { - "active": 0, - "flagValue": -1 - }, - "expr": { - "active": 0, - "flagValue": -1 - }, - "forin": { - "active": 0, - "flagValue": -1 - }, - "freeze": { - "active": 1, - "flagValue": -1 - }, - "funcscope": { - "active": 0, - "flagValue": -1 - }, - "futurehostile": { - "active": 0, - "flagValue": -1 - }, - "globalstrict": { - "active": 0, - "flagValue": -1 - }, - "immed": { - "active": 0, - "flagValue": -1 - }, - "indent": { - "active": 0, - "flagValue": 4 - }, - "iterator": { - "active": 0, - "flagValue": -1 - }, - "jasmine": { - "active": 0, - "flagValue": -1 - }, - "jquery": { - "active": 1, - "flagValue": -1 - }, - "lastsemic": { - "active": 0, - "flagValue": -1 - }, - "latedef": { - "active": 1, - "flagValue": -1 - }, - "laxbreak": { - "active": 0, - "flagValue": -1 - }, - "laxcomma": { - "active": 0, - "flagValue": -1 - }, - "loopfunc": { - "active": 0, - "flagValue": -1 - }, - "maxcomplexity": { - "active": 0, - "flagValue": 10 - }, - "maxdepth": { - "active": 0, - "flagValue": 3 - }, - "maxlen": { - "active": 0, - "flagValue": 150 - }, - "maxparams": { - "active": 0, - "flagValue": 3 - }, - "maxstatements": { - "active": 0, - "flagValue": 4 - }, - "mocha": { - "active": 0, - "flagValue": -1 - }, - "mootools": { - "active": 0, - "flagValue": -1 - }, - "moz": { - "active": 0, - "flagValue": -1 - }, - "multistr": { - "active": 0, - "flagValue": -1 - }, - "newcap": { - "active": 1, - "flagValue": -1 - }, - "noarg": { - "active": 1, - "flagValue": -1 - }, - "nocomma": { - "active": 0, - "flagValue": -1 - }, - "node": { - "active": 0, - "flagValue": -1 - }, - "noempty": { - "active": 0, - "flagValue": -1 - }, - "nonbsp": { - "active": 0, - "flagValue": -1 - }, - "nonew": { - "active": 1, - "flagValue": -1 - }, - "nonstandard": { - "active": 0, - "flagValue": -1 - }, - "notypeof": { - "active": 1, - "flagValue": -1 - }, - "noyield": { - "active": 0, - "flagValue": -1 - }, - "onecase": { - "active": 0, - "flagValue": -1 - }, - "phantom": { - "active": 0, - "flagValue": -1 - }, - "plusplus": { - "active": 0, - "flagValue": -1 - }, - "proto": { - "active": 0, - "flagValue": -1 - }, - "prototypejs": { - "active": 0, - "flagValue": -1 - }, - "qunit": { - "active": 0, - "flagValue": -1 - }, - "regexp": { - "active": 1, - "flagValue": -1 - }, - "rhino": { - "active": 0, - "flagValue": -1 - }, - "scripturl": { - "active": 0, - "flagValue": -1 - }, - "shadow": { - "active": 0, - "flagValue": -1 - }, - "shelljs": { - "active": 0, - "flagValue": -1 - }, - "singleGroups": { - "active": 0, - "flagValue": -1 - }, - "strict": { - "active": 0, - "flagValue": -1 - }, - "sub": { - "active": 0, - "flagValue": -1 - }, - "supernew": { - "active": 0, - "flagValue": -1 - }, - "typed": { - "active": 0, - "flagValue": -1 - }, - "undef": { - "active": 1, - "flagValue": -1 - }, - "unused": { - "active": 1, - "flagValue": -1 - }, - "varstmt": { - "active": 0, - "flagValue": -1 - }, - "withstmt": { - "active": 0, - "flagValue": -1 - }, - "worker": { - "active": 0, - "flagValue": -1 - }, - "wsh": { - "active": 0, - "flagValue": -1 - }, - "yui": { - "active": 0, - "flagValue": -1 - } - }, - "jsLintFlags2": { - "bitwise": { - "active": 0, - "flagValue": -1 - }, - "browser": { - "active": 1, - "flagValue": -1 - }, - "couch": { - "active": 0, - "flagValue": -1 - }, - "devel": { - "active": 0, - "flagValue": -1 - }, - "es6": { - "active": 0, - "flagValue": -1 - }, - "eval": { - "active": 0, - "flagValue": -1 - }, - "for": { - "active": 0, - "flagValue": -1 - }, - "maxlen": { - "active": 0, - "flagValue": 150 - }, - "node": { - "active": 0, - "flagValue": -1 - }, - "this": { - "active": 0, - "flagValue": -1 - }, - "white": { - "active": 0, - "flagValue": -1 - } - }, - "languageDefaultsCOFFEE": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.js", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "createSourceMap": 0, - "minifyOutput": 1, - "outputStyle": 0, - "syntaxCheckerStyle": 1 - }, - "languageDefaultsCSS": { - "autoOutputAction": 2, - "autoOutputPathFilenamePattern": "*-min.css", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "createSourceMap": 0, - "outputStyle": 3, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0 - }, - "languageDefaultsGIF": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.gif", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0 - }, - "languageDefaultsHAML": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.html", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "escapeHTMLCharacters": 0, - "noEscapeInAttributes": 0, - "outputFormat": 2, - "outputStyle": 0, - "useCDATA": 0, - "useDoubleQuotes": 0, - "useUnixNewlines": 0 - }, - "languageDefaultsJPG": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.jpg", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0 - }, - "languageDefaultsJS": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*-min.js", - "autoOutputPathRelativePath": "\/min", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 2, - "createSourceMap": 0, - "minifyOutput": 1, - "syntaxCheckerStyle": 1, - "transpilerStyle": 0 - }, - "languageDefaultsJSON": { - "autoOutputAction": 1, - "autoOutputPathFilenamePattern": "*-min.json", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "orderOutput": 0, - "outputStyle": 1 - }, - "languageDefaultsJSX": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.js", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "jsx", - "autoOutputPathReplace2": "js", - "autoOutputPathStyle": 0 - }, - "languageDefaultsKIT": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.html", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "kit", - "autoOutputPathReplace2": "html", - "autoOutputPathStyle": 0 - }, - "languageDefaultsLESS": { - "allowInsecureImports": 0, - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.css", - "autoOutputPathRelativePath": "..\/css", - "autoOutputPathReplace1": "less", - "autoOutputPathReplace2": "css", - "autoOutputPathStyle": 2, - "createSourceMap": 1, - "disableJavascript": 0, - "ieCompatibility": 1, - "outputStyle": 0, - "relativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "strictImports": 0, - "strictMath": 0, - "strictUnits": 0 - }, - "languageDefaultsMARKDOWN": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.html", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "criticStyle": 0, - "enableFootnotes": 1, - "enableLabels": 1, - "enableSmartQuotes": 1, - "escapeLineBreaks": 0, - "maskEmailAddresses": 1, - "outputFormat": 0, - "outputStyle": 0, - "parseMetadata": 1, - "processHTML": 0, - "randomFootnoteNumbers": 0, - "useCompatibilityMode": 0 - }, - "languageDefaultsOTHER": { - "autoOutputAction": 2, - "autoOutputPathFilenamePattern": "*.*", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0 - }, - "languageDefaultsPNG": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.png", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0 - }, - "languageDefaultsPUG": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.html", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "compileDebug": 1, - "outputStyle": 0 - }, - "languageDefaultsSASS": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.css", - "autoOutputPathRelativePath": "..\/css", - "autoOutputPathReplace1": "sass", - "autoOutputPathReplace2": "css", - "autoOutputPathStyle": 2, - "createSourceMap": 0, - "debugStyle": 0, - "decimalPrecision": 10, - "outputStyle": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0, - "useLibsass": 1 - }, - "languageDefaultsSLIM": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.html", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "compileOnly": 0, - "logicless": 0, - "outputFormat": 0, - "outputStyle": 1, - "railsCompatible": 0 - }, - "languageDefaultsSTYLUS": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.css", - "autoOutputPathRelativePath": "..\/css", - "autoOutputPathReplace1": "stylus", - "autoOutputPathReplace2": "css", - "autoOutputPathStyle": 2, - "createSourceMap": 0, - "debugStyle": 0, - "importCSS": 0, - "outputStyle": 0, - "resolveRelativeURLS": 0, - "shouldRunAutoprefixer": 0, - "shouldRunBless": 0 - }, - "languageDefaultsSVG": { - "autoOutputAction": 2, - "autoOutputPathFilenamePattern": "*.svg", - "autoOutputPathRelativePath": "", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 0, - "pluginMask": 3758088159 - }, - "languageDefaultsTS": { - "autoOutputAction": 0, - "autoOutputPathFilenamePattern": "*.js", - "autoOutputPathRelativePath": "\/js", - "autoOutputPathReplace1": "", - "autoOutputPathReplace2": "", - "autoOutputPathStyle": 2, - "createDeclarationFile": 0, - "createSourceMap": 0, - "jsxMode": 0, - "minifyOutput": 0, - "moduleResolutionType": 0, - "moduleType": 2, - "noImplicitAny": 0, - "preserveConstEnums": 0, - "removeComments": 0, - "suppressImplicitAnyIndexErrors": 0, - "targetECMAVersion": 0 - }, - "languageDefaultsUserDefined": [ - ], - "previewPathAddition": "", - "skippedFoldersString": "log, _logs, logs, _cache, cache, \/storage\/framework\/sessions, node_modules", - "sourceFolderName": "source", - "uglifyDefinesString": "", - "uglifyFlags2": { - "ascii-only": { - "active": 0, - "flagValue": -1 - }, - "bare-returns": { - "active": 0, - "flagValue": -1 - }, - "booleans": { - "active": 1, - "flagValue": -1 - }, - "bracketize": { - "active": 0, - "flagValue": -1 - }, - "cascade": { - "active": 1, - "flagValue": -1 - }, - "comments": { - "active": 1, - "flagValue": -1 - }, - "comparisons": { - "active": 1, - "flagValue": -1 - }, - "compress": { - "active": 1, - "flagValue": -1 - }, - "conditionals": { - "active": 1, - "flagValue": -1 - }, - "dead_code": { - "active": 0, - "flagValue": -1 - }, - "drop_console": { - "active": 0, - "flagValue": -1 - }, - "drop_debugger": { - "active": 1, - "flagValue": -1 - }, - "eval": { - "active": 0, - "flagValue": -1 - }, - "evaluate": { - "active": 1, - "flagValue": -1 - }, - "hoist_funs": { - "active": 1, - "flagValue": -1 - }, - "hoist_vars": { - "active": 0, - "flagValue": -1 - }, - "if_return": { - "active": 1, - "flagValue": -1 - }, - "indent-level": { - "active": 0, - "flagValue": 4 - }, - "indent-start": { - "active": 0, - "flagValue": 0 - }, - "inline-script": { - "active": 0, - "flagValue": -1 - }, - "join_vars": { - "active": 1, - "flagValue": -1 - }, - "keep_fargs": { - "active": 0, - "flagValue": -1 - }, - "keep_fnames": { - "active": 0, - "flagValue": -1 - }, - "loops": { - "active": 1, - "flagValue": -1 - }, - "mangle": { - "active": 1, - "flagValue": -1 - }, - "max-line-len": { - "active": 1, - "flagValue": 32000 - }, - "negate_iife": { - "active": 1, - "flagValue": -1 - }, - "properties": { - "active": 1, - "flagValue": -1 - }, - "pure_getters": { - "active": 0, - "flagValue": -1 - }, - "quote-keys": { - "active": 0, - "flagValue": -1 - }, - "screw-ie8": { - "active": 1, - "flagValue": -1 - }, - "semicolons": { - "active": 1, - "flagValue": -1 - }, - "sequences": { - "active": 1, - "flagValue": -1 - }, - "sort": { - "active": 0, - "flagValue": -1 - }, - "space-colon": { - "active": 1, - "flagValue": -1 - }, - "support-ie8": { - "active": 0, - "flagValue": -1 - }, - "toplevel": { - "active": 0, - "flagValue": -1 - }, - "unsafe": { - "active": 0, - "flagValue": -1 - }, - "unused": { - "active": 0, - "flagValue": -1 - }, - "warnings": { - "active": 0, - "flagValue": -1 - }, - "width": { - "active": 1, - "flagValue": 80 - } - }, - "uglifyReservedNamesString": "$", - "websiteRelativeRoot": "publichealth\/static\/mockup" - }, -"settingsFileVersion": "3" -} \ No newline at end of file diff --git a/docs/public-health.conf b/docs/public-health.conf deleted file mode 100644 index 790dcac..0000000 --- a/docs/public-health.conf +++ /dev/null @@ -1,57 +0,0 @@ -# Public Health CMS stage -upstream wagtail-stage { - server localhost:5000; -} -server { - listen 80; - server_name ph-alpha.nebula1.public-health.ch; - client_max_body_size 64M; - - gzip on; - gzip_types text/plain text/css application/x-javascript image/svg+xml; - gzip_comp_level 1; - gzip_disable msie6; - gzip_http_version 1.0; - gzip_proxied any; - gzip_vary on; - - location /static/ { - access_log off; - expires 3600; - alias /opt/public-health-ch/static/; - } - - # Set a longer expiry for CACHE/, because the filenames are unique. - location /static/CACHE/ { - access_log off; - expires 864000; - alias /opt/public-health-ch/static/CACHE/; - } - - # Only server /media/images by default, not e.g. original_images/. - location /media/images { - expires 864000; - alias /opt/public-health-ch/media/images; - } - - location / { - proxy_set_header X-Real-IP $remote_addr; - proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; - proxy_set_header Host $http_host; - proxy_redirect off; - proxy_pass http://wagtail-stage; - } -} - -server { - listen 80; listen 443 ssl; - server_name conference.public-health.ch; - location /fr { - return 301 $scheme://sph17.organizers-congress.org/frontend/index.php?sub=89; - } - location / { - return 301 $scheme://sph17.organizers-congress.org; - } -} - - diff --git a/feedler/__init__.py b/feedler/__init__.py new file mode 100644 index 0000000..a522364 --- /dev/null +++ b/feedler/__init__.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- + +__author__ = 'Oleg Lavrovsky' +__email__ = 'oleg@datalets.ch' +__version__ = '0.1' + +FEEDLER_APPS = ( + # Wagtail apps + 'wagtail.wagtailcore', + 'wagtail.wagtailadmin', + 'wagtail.contrib.modeladmin', + 'wagtail.contrib.wagtailroutablepage', + 'wagtail.api.v2', + + # Third-party apps + 'rest_framework', + + # My apps + 'feedler', +) diff --git a/feedler/api.py b/feedler/api.py new file mode 100644 index 0000000..9dbcffc --- /dev/null +++ b/feedler/api.py @@ -0,0 +1,7 @@ +from wagtail.api.v2.router import WagtailAPIRouter +from .endpoints import EntriesAPIEndpoint + +# Create the router. "wagtailapi" is the URL namespace +api_router = WagtailAPIRouter('wagtailapi') + +api_router.register_endpoint('entries', EntriesAPIEndpoint) diff --git a/feedler/apps.py b/feedler/apps.py new file mode 100644 index 0000000..7bc8f1e --- /dev/null +++ b/feedler/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class FeedlerConfig(AppConfig): + name = 'feedler' diff --git a/feedler/endpoints.py b/feedler/endpoints.py new file mode 100644 index 0000000..3bafe75 --- /dev/null +++ b/feedler/endpoints.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- + +from wagtail.contrib.wagtailapi.endpoints import BaseAPIEndpoint +from wagtail.contrib.wagtailapi.serializers import BaseSerializer +from wagtail.contrib.wagtailapi.filters import FieldsFilter, OrderingFilter, SearchFilter +from wagtail.contrib.wagtailapi.pagination import WagtailPagination + +from .models import Entry + +class EntrySerializer(BaseSerializer): + pass + +class EntriesAPIEndpoint(BaseAPIEndpoint): + base_serializer_class = EntrySerializer + filter_backends = [FieldsFilter, OrderingFilter, SearchFilter] + extra_api_fields = [ + 'title', + 'author', + 'link', + 'visual', + 'content', + 'tags', + 'published', + ] + name = 'entries' + model = Entry diff --git a/feedler/feedparser.py b/feedler/feedparser.py new file mode 100644 index 0000000..bc39f98 --- /dev/null +++ b/feedler/feedparser.py @@ -0,0 +1,60 @@ +# -*- coding: utf-8 -*- + +from datetime import datetime + +def parse(obj, raw, stream): + """ + Parse raw JSON implementation from the Feedly API + """ + obj.raw = raw + obj.stream = stream + obj.entry_id = raw['id'] + + # Date stamp handling + ts = raw['published'] / 1000 + obj.published = datetime.fromtimestamp(ts) + + # Authorship and title + obj.title = raw['title'] + if 'author' in raw['origin']: + obj.author = raw['author'] + elif 'title' in raw['origin']: + obj.author = raw['origin']['title'] + + # Parse links and references + if len(raw['alternate']) > 0: + obj.link = raw['alternate'][0]['href'] + if 'thumbnail' in raw and len(raw['thumbnail']) > 0: + if 'url' in raw['thumbnail'][0]: + obj.visual = raw['thumbnail'][0]['url'] + elif 'enclosure' in raw and len(raw['enclosure']) > 0: + if 'href' in raw['enclosure'][0]: + obj.visual = raw['enclosure'][0]['href'] + elif 'visual' in raw and 'url' in raw['visual']: + obj.visual = raw['visual']['url'] + if obj.visual.lower().strip() == 'none': + obj.visual = '' + + # Collect text in nested JSON content + if 'content' in obj.raw: + obj.content = obj.raw['content'] + else: + if 'summary' in obj.raw: + if 'content' in obj.raw['summary']: + obj.content = obj.raw['summary']['content'] + else: + obj.content = obj.raw['summary'] + else: + obj.content = '' + + # Collect tags + tags = [] + for tag in obj.raw['tags']: + if 'label' in tag: + label = tag['label'].replace(',','-') + label = label.strip().lower() + if len(label) > 3 and not label in tags: + tags.append(label) + obj.tags = ','.join(tags) + + return obj diff --git a/feedler/migrations/0001_initial.py b/feedler/migrations/0001_initial.py new file mode 100644 index 0000000..bf8fadc --- /dev/null +++ b/feedler/migrations/0001_initial.py @@ -0,0 +1,71 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-03 13:46 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('wagtailcore', '__latest__'), + ] + + operations = [ + migrations.CreateModel( + name='Entry', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('raw', models.TextField(blank=True, editable=False)), + ('updated', models.DateTimeField(auto_now=True)), + ('published', models.DateTimeField(auto_now_add=True)), + ('entry_id', models.CharField(blank=True, editable=False, max_length=255, unique=True)), + ('title', models.CharField(max_length=255)), + ('author', models.CharField(blank=True, max_length=255)), + ('link', models.URLField()), + ('visual', models.URLField(blank=True)), + ('content', models.TextField()), + ('tags', models.TextField(blank=True)), + ], + options={ + 'verbose_name_plural': 'Entries', + }, + ), + migrations.CreateModel( + name='FeedlySettings', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('feedly_auth', models.TextField(blank=True, help_text='Your developer authorization key')), + ('feedly_pages', models.IntegerField(blank=True, choices=[(1, '2'), (2, '5'), (3, '10'), (4, '50')], help_text='How many pages to fetch?', null=True)), + ], + options={ + 'verbose_name': 'Feedly', + }, + ), + migrations.CreateModel( + name='Stream', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('title', models.CharField(max_length=255)), + ('ident', models.CharField(max_length=255)), + ], + ), + migrations.AddField( + model_name='feedlysettings', + name='feedly_stream', + field=models.ManyToManyField(to='feedler.Stream'), + ), + migrations.AddField( + model_name='feedlysettings', + name='site', + field=models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, to='wagtailcore.Site'), + ), + migrations.AddField( + model_name='entry', + name='stream', + field=models.ForeignKey(blank=True, on_delete=django.db.models.deletion.CASCADE, to='feedler.Stream', verbose_name='Original stream'), + ), + ] diff --git a/feedler/migrations/0002_feedpage.py b/feedler/migrations/0002_feedpage.py new file mode 100644 index 0000000..63263d4 --- /dev/null +++ b/feedler/migrations/0002_feedpage.py @@ -0,0 +1,29 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-03 15:21 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion +import wagtail.wagtailcore.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('feedler', '0001_initial'), + ] + + operations = [ + migrations.CreateModel( + name='FeedPage', + fields=[ + ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), + ('intro', wagtail.wagtailcore.fields.RichTextField(blank=True, default='')), + ('stream', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='feedler.Stream', verbose_name='Filter to stream (optional)')), + ], + options={ + 'verbose_name': 'Feeds', + }, + bases=('wagtailcore.page',), + ), + ] diff --git a/feedler/migrations/__init__.py b/feedler/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/feedler/models/__init__.py b/feedler/models/__init__.py new file mode 100644 index 0000000..012e5e5 --- /dev/null +++ b/feedler/models/__init__.py @@ -0,0 +1,2 @@ +from .models import * +from .admin import * diff --git a/feedler/models/admin.py b/feedler/models/admin.py new file mode 100644 index 0000000..604b92f --- /dev/null +++ b/feedler/models/admin.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- + +import requests, json, codecs + +from django.contrib import admin + +from django.db import models +from django.db.models.signals import pre_save +from django.dispatch import receiver +from django.core.mail import send_mail + +from wagtail.contrib.settings.models import BaseSetting, register_setting + +from .models import Entry, Stream +import feedler.feedparser as feedparser + +import logging +logger = logging.getLogger('feedler') + +# Feedly integration module + +@register_setting +class FeedlySettings(BaseSetting): + feedly_auth = models.TextField( + help_text='Your developer authorization key', blank=True) + feedly_pages = models.IntegerField( + choices=( + (1, '2'), + (2, '5'), + (3, '10'), + (4, '50'), + ), blank=True, null=True, + help_text='How many pages to fetch?' + ) + feedly_stream = models.ManyToManyField(Stream) + class Meta: + verbose_name = 'Feedly' + +API_BASEURL = 'https://cloud.feedly.com/v3/streams/contents?streamId=' + +@receiver(pre_save, sender=FeedlySettings) +def handle_save_settings(sender, instance, *args, **kwargs): + if instance.feedly_auth: + streams = instance.feedly_stream.all() + for stream in streams: + # Start a request to download the feed + logger.info("Processing stream %s" % stream.title) + url = API_BASEURL + stream.ident + headers = { + 'Authorization': 'OAuth ' + instance.feedly_auth + } + contents = requests.get(url, headers=headers).json() + if 'errorMessage' in contents: + raise PermissionError(contents['errorMessage']) + for raw_entry in contents['items']: + eid = raw_entry['id'] + # Create or update data + try: + entry = Entry.objects.get(entry_id=eid) + logger.info("Updating entry '%s'" % eid) + except Entry.DoesNotExist: + logger.info("Adding entry '%s'" % eid) + entry = Entry() + entry = feedparser.parse(entry, raw_entry, stream) + entry.save() diff --git a/feedler/models/models.py b/feedler/models/models.py new file mode 100644 index 0000000..8777e58 --- /dev/null +++ b/feedler/models/models.py @@ -0,0 +1,67 @@ +# -*- coding: utf-8 -*- + +from django.db import models + +from wagtail.wagtailcore.models import Page, Orderable +from wagtail.wagtailadmin.edit_handlers import FieldPanel +from wagtail.wagtailcore.fields import RichTextField + +class Stream(models.Model): + title = models.CharField(max_length=255) + ident = models.CharField(max_length=255) + + def __str__(self): + return self.title + +class Entry(models.Model): + """Implementation of the Entry from the feedly API as generic Django model + """ + raw = models.TextField(blank=True, editable=False) + updated = models.DateTimeField(auto_now=True, editable=False) + published = models.DateTimeField(auto_now_add=True, editable=False) + entry_id = models.CharField(max_length=255, unique=True, blank=True, editable=False) + + title = models.CharField(max_length=255) + author = models.CharField(max_length=255, blank=True) + link = models.URLField() + visual = models.URLField(blank=True) + + content = models.TextField() + tags = models.TextField(blank=True) + + stream = models.ForeignKey(Stream, + blank=True, on_delete=models.CASCADE, + verbose_name='Original stream') + + class Meta: + verbose_name_plural = 'Entries' + +class FeedPage(Page): + intro = RichTextField(default='', blank=True) + stream = models.ForeignKey(Stream, on_delete=models.PROTECT, + null=True, blank=True, verbose_name='Filter to stream (optional)') + + content_panels = [ + FieldPanel('title'), + FieldPanel('intro'), + FieldPanel('stream'), + ] + + @property + def feedentries(self): + if self.stream: + entries = Entry.objects.filter(stream=self.stream) + else: + entries = Entry.objects.all() + # Order by most recent date first + entries = entries.order_by('-published') + return entries[:10] + + def get_context(self, request): + # Update template context + context = super(FeedPage, self).get_context(request) + context['feedentries'] = self.feedentries + return context + + class Meta: + verbose_name = "Feeds" diff --git a/feedler/templates/feedler/feed_page.html b/feedler/templates/feedler/feed_page.html new file mode 100644 index 0000000..df5c33e --- /dev/null +++ b/feedler/templates/feedler/feed_page.html @@ -0,0 +1,52 @@ +{% extends "base.html" %} +{% load static wagtailcore_tags %} + +{% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %} + +{% block extra_css %} +{% endblock %} + +{% block title %}Feeds{% endblock %} + +{% block content %} + +
+
+

{{ page.title }}

+ {% if page.intro %} +

{{ page.intro|richtext }}

+ {% endif %} +
+
+ + +
+
+
+ {% for entry in feedentries %} +
+ {% if entry.visual %} +
+ + {% else %} +
+ {% endif %} +
+

{{ entry.title|striptags|truncatewords_html:10 }}

+

+ {{ entry.author }}

+ {{ entry.content|striptags|truncatewords_html:25 }} +

+
+ +
+
+ + {% empty %} + + {% endfor %} +
+
+
+ +{% endblock %} diff --git a/feedler/tests.py b/feedler/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/feedler/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/feedler/urls.py b/feedler/urls.py new file mode 100644 index 0000000..5289b17 --- /dev/null +++ b/feedler/urls.py @@ -0,0 +1,10 @@ +from django.conf.urls import include, url +from django.conf import settings +from django.contrib import admin +from django.conf.urls.i18n import i18n_patterns + +from .api import api_router + +urlpatterns = [ + url(r'^api/v2/', api_router.urls), +] diff --git a/feedler/wagtail_hooks.py b/feedler/wagtail_hooks.py new file mode 100644 index 0000000..ed8abd5 --- /dev/null +++ b/feedler/wagtail_hooks.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- + +from wagtail.contrib.modeladmin.options import ( + ModelAdmin, modeladmin_register) + +from .models import Entry, Stream + +class EntryModelAdmin(ModelAdmin): + model = Entry + menu_icon = 'date' + menu_order = 200 + add_to_settings_menu = False + exclude_from_explorer = True + list_display = ('published', 'title', 'author', 'tags') + list_filter = ('author', 'tags') + search_fields = ('title', 'author', 'content', 'tags') + +modeladmin_register(EntryModelAdmin) + +class StreamModelAdmin(ModelAdmin): + model = Stream + menu_icon = 'date' + menu_order = 1000 + add_to_settings_menu = True + exclude_from_explorer = True + list_display = ('title', 'ident') + +modeladmin_register(StreamModelAdmin) diff --git a/publichealth/static/mockup/assets/css/ajax-loader.gif b/mockup/assets/css/ajax-loader.gif similarity index 100% rename from publichealth/static/mockup/assets/css/ajax-loader.gif rename to mockup/assets/css/ajax-loader.gif diff --git a/publichealth/static/mockup/assets/fonts/FontAwesome.otf b/mockup/assets/fonts/FontAwesome.otf similarity index 100% rename from publichealth/static/mockup/assets/fonts/FontAwesome.otf rename to mockup/assets/fonts/FontAwesome.otf diff --git a/publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.eot b/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.eot similarity index 100% rename from publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.eot rename to mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.eot diff --git a/publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.svg b/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.svg similarity index 100% rename from publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.svg rename to mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.svg diff --git a/publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf b/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf similarity index 100% rename from publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf rename to mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf diff --git a/publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff b/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff similarity index 100% rename from publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff rename to mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff diff --git a/publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 b/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 similarity index 100% rename from publichealth/static/mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 rename to mockup/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 diff --git a/publichealth/static/mockup/assets/fonts/fontawesome-webfont.eot b/mockup/assets/fonts/fontawesome-webfont.eot similarity index 100% rename from publichealth/static/mockup/assets/fonts/fontawesome-webfont.eot rename to mockup/assets/fonts/fontawesome-webfont.eot diff --git a/publichealth/static/mockup/assets/fonts/fontawesome-webfont.svg b/mockup/assets/fonts/fontawesome-webfont.svg similarity index 100% rename from publichealth/static/mockup/assets/fonts/fontawesome-webfont.svg rename to mockup/assets/fonts/fontawesome-webfont.svg diff --git a/publichealth/static/mockup/assets/fonts/fontawesome-webfont.ttf b/mockup/assets/fonts/fontawesome-webfont.ttf similarity index 100% rename from publichealth/static/mockup/assets/fonts/fontawesome-webfont.ttf rename to mockup/assets/fonts/fontawesome-webfont.ttf diff --git a/publichealth/static/mockup/assets/fonts/fontawesome-webfont.woff b/mockup/assets/fonts/fontawesome-webfont.woff similarity index 100% rename from publichealth/static/mockup/assets/fonts/fontawesome-webfont.woff rename to mockup/assets/fonts/fontawesome-webfont.woff diff --git a/publichealth/static/mockup/assets/fonts/fontawesome-webfont.woff2 b/mockup/assets/fonts/fontawesome-webfont.woff2 similarity index 100% rename from publichealth/static/mockup/assets/fonts/fontawesome-webfont.woff2 rename to mockup/assets/fonts/fontawesome-webfont.woff2 diff --git a/publichealth/static/mockup/assets/fonts/slick.eot b/mockup/assets/fonts/slick.eot similarity index 100% rename from publichealth/static/mockup/assets/fonts/slick.eot rename to mockup/assets/fonts/slick.eot diff --git a/publichealth/static/mockup/assets/fonts/slick.svg b/mockup/assets/fonts/slick.svg similarity index 100% rename from publichealth/static/mockup/assets/fonts/slick.svg rename to mockup/assets/fonts/slick.svg diff --git a/publichealth/static/mockup/assets/fonts/slick.ttf b/mockup/assets/fonts/slick.ttf similarity index 100% rename from publichealth/static/mockup/assets/fonts/slick.ttf rename to mockup/assets/fonts/slick.ttf diff --git a/publichealth/static/mockup/assets/fonts/slick.woff b/mockup/assets/fonts/slick.woff similarity index 100% rename from publichealth/static/mockup/assets/fonts/slick.woff rename to mockup/assets/fonts/slick.woff diff --git a/publichealth/static/mockup/assets/js/bootstrap.min.js b/mockup/assets/js/bootstrap.min.js similarity index 100% rename from publichealth/static/mockup/assets/js/bootstrap.min.js rename to mockup/assets/js/bootstrap.min.js diff --git a/publichealth/static/mockup/assets/js/jquery.min.js b/mockup/assets/js/jquery.min.js similarity index 100% rename from publichealth/static/mockup/assets/js/jquery.min.js rename to mockup/assets/js/jquery.min.js diff --git a/publichealth/static/mockup/assets/js/main.js b/mockup/assets/js/main.js similarity index 100% rename from publichealth/static/mockup/assets/js/main.js rename to mockup/assets/js/main.js diff --git a/publichealth/static/mockup/assets/js/skel.min.js b/mockup/assets/js/skel.min.js similarity index 100% rename from publichealth/static/mockup/assets/js/skel.min.js rename to mockup/assets/js/skel.min.js diff --git a/publichealth/static/mockup/assets/js/util.js b/mockup/assets/js/util.js similarity index 100% rename from publichealth/static/mockup/assets/js/util.js rename to mockup/assets/js/util.js diff --git a/publichealth/static/mockup/assets/slick/ajax-loader.gif b/mockup/assets/slick/ajax-loader.gif similarity index 100% rename from publichealth/static/mockup/assets/slick/ajax-loader.gif rename to mockup/assets/slick/ajax-loader.gif diff --git a/publichealth/static/mockup/assets/slick/config.rb b/mockup/assets/slick/config.rb similarity index 100% rename from publichealth/static/mockup/assets/slick/config.rb rename to mockup/assets/slick/config.rb diff --git a/publichealth/static/mockup/assets/slick/fonts/slick.eot b/mockup/assets/slick/fonts/slick.eot similarity index 100% rename from publichealth/static/mockup/assets/slick/fonts/slick.eot rename to mockup/assets/slick/fonts/slick.eot diff --git a/publichealth/static/mockup/assets/slick/fonts/slick.svg b/mockup/assets/slick/fonts/slick.svg similarity index 100% rename from publichealth/static/mockup/assets/slick/fonts/slick.svg rename to mockup/assets/slick/fonts/slick.svg diff --git a/publichealth/static/mockup/assets/slick/fonts/slick.ttf b/mockup/assets/slick/fonts/slick.ttf similarity index 100% rename from publichealth/static/mockup/assets/slick/fonts/slick.ttf rename to mockup/assets/slick/fonts/slick.ttf diff --git a/publichealth/static/mockup/assets/slick/fonts/slick.woff b/mockup/assets/slick/fonts/slick.woff similarity index 100% rename from publichealth/static/mockup/assets/slick/fonts/slick.woff rename to mockup/assets/slick/fonts/slick.woff diff --git a/publichealth/static/mockup/assets/slick/slick-theme.css b/mockup/assets/slick/slick-theme.css similarity index 100% rename from publichealth/static/mockup/assets/slick/slick-theme.css rename to mockup/assets/slick/slick-theme.css diff --git a/publichealth/static/mockup/assets/slick/slick-theme.less b/mockup/assets/slick/slick-theme.less similarity index 100% rename from publichealth/static/mockup/assets/slick/slick-theme.less rename to mockup/assets/slick/slick-theme.less diff --git a/publichealth/static/mockup/assets/slick/slick-theme.scss b/mockup/assets/slick/slick-theme.scss similarity index 100% rename from publichealth/static/mockup/assets/slick/slick-theme.scss rename to mockup/assets/slick/slick-theme.scss diff --git a/publichealth/static/mockup/assets/slick/slick.css b/mockup/assets/slick/slick.css similarity index 100% rename from publichealth/static/mockup/assets/slick/slick.css rename to mockup/assets/slick/slick.css diff --git a/publichealth/static/mockup/assets/slick/slick.js b/mockup/assets/slick/slick.js similarity index 100% rename from publichealth/static/mockup/assets/slick/slick.js rename to mockup/assets/slick/slick.js diff --git a/publichealth/static/mockup/assets/slick/slick.less b/mockup/assets/slick/slick.less similarity index 100% rename from publichealth/static/mockup/assets/slick/slick.less rename to mockup/assets/slick/slick.less diff --git a/publichealth/static/mockup/assets/slick/slick.min.js b/mockup/assets/slick/slick.min.js similarity index 100% rename from publichealth/static/mockup/assets/slick/slick.min.js rename to mockup/assets/slick/slick.min.js diff --git a/publichealth/static/mockup/assets/slick/slick.scss b/mockup/assets/slick/slick.scss similarity index 100% rename from publichealth/static/mockup/assets/slick/slick.scss rename to mockup/assets/slick/slick.scss diff --git a/publichealth/static/images/banner_0.jpg b/mockup/images/banner_0.jpg similarity index 100% rename from publichealth/static/images/banner_0.jpg rename to mockup/images/banner_0.jpg diff --git a/publichealth/static/images/banner_1.jpg b/mockup/images/banner_1.jpg similarity index 100% rename from publichealth/static/images/banner_1.jpg rename to mockup/images/banner_1.jpg diff --git a/publichealth/static/images/banner_2.jpg b/mockup/images/banner_2.jpg similarity index 100% rename from publichealth/static/images/banner_2.jpg rename to mockup/images/banner_2.jpg diff --git a/publichealth/static/images/banner_3.jpg b/mockup/images/banner_3.jpg similarity index 100% rename from publichealth/static/images/banner_3.jpg rename to mockup/images/banner_3.jpg diff --git a/publichealth/static/images/banner_4.jpg b/mockup/images/banner_4.jpg similarity index 100% rename from publichealth/static/images/banner_4.jpg rename to mockup/images/banner_4.jpg diff --git a/publichealth/static/images/ipad.jpg b/mockup/images/ipad.jpg similarity index 100% rename from publichealth/static/images/ipad.jpg rename to mockup/images/ipad.jpg diff --git a/publichealth/static/images/konf.jpg b/mockup/images/konf.jpg similarity index 100% rename from publichealth/static/images/konf.jpg rename to mockup/images/konf.jpg diff --git a/publichealth/static/images/lit.jpg b/mockup/images/lit.jpg similarity index 100% rename from publichealth/static/images/lit.jpg rename to mockup/images/lit.jpg diff --git a/publichealth/static/images/news_1.jpg b/mockup/images/news_1.jpg similarity index 100% rename from publichealth/static/images/news_1.jpg rename to mockup/images/news_1.jpg diff --git a/publichealth/static/images/public-health-bg.png b/mockup/images/public-health-bg.png similarity index 100% rename from publichealth/static/images/public-health-bg.png rename to mockup/images/public-health-bg.png diff --git a/publichealth/static/images/public-health-logo.png b/mockup/images/public-health-logo.png similarity index 100% rename from publichealth/static/images/public-health-logo.png rename to mockup/images/public-health-logo.png diff --git a/publichealth/static/images/steth.jpg b/mockup/images/steth.jpg similarity index 100% rename from publichealth/static/images/steth.jpg rename to mockup/images/steth.jpg diff --git a/publichealth/static/images/thumb_news_1.jpg b/mockup/images/thumb_news_1.jpg similarity index 100% rename from publichealth/static/images/thumb_news_1.jpg rename to mockup/images/thumb_news_1.jpg diff --git a/publichealth/static/images/thumb_news_2.jpg b/mockup/images/thumb_news_2.jpg similarity index 100% rename from publichealth/static/images/thumb_news_2.jpg rename to mockup/images/thumb_news_2.jpg diff --git a/publichealth/static/mockup/index-compressed.html b/mockup/index-compressed.html similarity index 100% rename from publichealth/static/mockup/index-compressed.html rename to mockup/index-compressed.html diff --git a/publichealth/static/mockup/index.html b/mockup/index.html similarity index 100% rename from publichealth/static/mockup/index.html rename to mockup/index.html diff --git a/publichealth/static/mockup/news-details.html b/mockup/news-details.html similarity index 100% rename from publichealth/static/mockup/news-details.html rename to mockup/news-details.html diff --git a/publichealth/home/migrations/0015_dataletssettings.py b/publichealth/home/migrations/0015_dataletssettings.py index 7c1a728..f0c97cf 100644 --- a/publichealth/home/migrations/0015_dataletssettings.py +++ b/publichealth/home/migrations/0015_dataletssettings.py @@ -9,7 +9,6 @@ import django.db.models.deletion class Migration(migrations.Migration): dependencies = [ - ('wagtailcore', '0033_auto_20170425_0944'), ('home', '0014_auto_20170421_1426'), ] diff --git a/publichealth/home/migrations/0016_socialcontact.py b/publichealth/home/migrations/0016_socialcontact.py new file mode 100644 index 0000000..ff5a64c --- /dev/null +++ b/publichealth/home/migrations/0016_socialcontact.py @@ -0,0 +1,23 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-05-05 08:43 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0015_dataletssettings'), + ] + + operations = [ + migrations.CreateModel( + name='SocialContact', + fields=[ + ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('network', models.CharField(choices=[('twitter', 'Twitter'), ('facebook', 'Facebook')], default='twitter', max_length=16)), + ('profile', models.CharField(default='', help_text='Name of the account, e.g. @myaccount', max_length=255)), + ], + ), + ] diff --git a/publichealth/home/migrations/0017_auto_20170510_1627.py b/publichealth/home/migrations/0017_auto_20170510_1627.py new file mode 100644 index 0000000..2b6af9a --- /dev/null +++ b/publichealth/home/migrations/0017_auto_20170510_1627.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2017-05-10 14:27 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0016_socialcontact'), + ] + + operations = [ + migrations.AddField( + model_name='contact', + name='analytics', + field=models.CharField(blank=True, default='', help_text='Optional web analytics property code', max_length=60), + ), + migrations.AddField( + model_name='contact', + name='map_url', + field=models.URLField(blank=True, help_text='Optional link of address to mapping provider', null=True), + ), + migrations.AlterField( + model_name='socialcontact', + name='profile', + field=models.CharField(default='', help_text='Name of the account, e.g. @myaccount, or full URL', max_length=255), + ), + ] diff --git a/publichealth/home/migrations/0018_contact_contact_form.py b/publichealth/home/migrations/0018_contact_contact_form.py new file mode 100644 index 0000000..c412115 --- /dev/null +++ b/publichealth/home/migrations/0018_contact_contact_form.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.7 on 2017-05-11 08:01 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0017_auto_20170510_1627'), + ] + + operations = [ + migrations.AddField( + model_name='contact', + name='contact_form', + field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='home.ContactForm'), + ), + ] diff --git a/publichealth/home/migrations/0019_auto_20170703_1244.py b/publichealth/home/migrations/0019_auto_20170703_1244.py new file mode 100644 index 0000000..6565d9d --- /dev/null +++ b/publichealth/home/migrations/0019_auto_20170703_1244.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.3 on 2017-07-03 10:44 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('home', '0018_contact_contact_form'), + ] + + operations = [ + migrations.AlterModelOptions( + name='dataletssettings', + options={'verbose_name': 'Get support'}, + ), + ] diff --git a/publichealth/home/models/__init__.py b/publichealth/home/models/__init__.py index 472bee0..52e04bb 100644 --- a/publichealth/home/models/__init__.py +++ b/publichealth/home/models/__init__.py @@ -1,4 +1,4 @@ from .forms import * from .models import * from .snippets import * -from .settings import * +from .admin import * diff --git a/publichealth/home/models/settings.py b/publichealth/home/models/admin.py similarity index 93% rename from publichealth/home/models/settings.py rename to publichealth/home/models/admin.py index 8dfaa0a..8cf4eec 100644 --- a/publichealth/home/models/settings.py +++ b/publichealth/home/models/admin.py @@ -7,6 +7,8 @@ from django.core.mail import send_mail from wagtail.contrib.settings.models import BaseSetting, register_setting +# A simple feedback module built into the site admin + @register_setting class DataletsSettings(BaseSetting): feedback_question = models.TextField( @@ -23,7 +25,7 @@ class DataletsSettings(BaseSetting): feedback_comment = models.TextField( help_text='Any general feedback', blank=True) class Meta: - verbose_name = 'Datalets' + verbose_name = 'Get support' @receiver(pre_save, sender=DataletsSettings) def handle_save_settings(sender, instance, *args, **kwargs): diff --git a/publichealth/home/models/forms.py b/publichealth/home/models/forms.py index 620ac4d..41e2f2c 100644 --- a/publichealth/home/models/forms.py +++ b/publichealth/home/models/forms.py @@ -2,16 +2,16 @@ from modelcluster.fields import ParentalKey -from wagtail.wagtailadmin.edit_handlers import ( - FieldPanel, FieldRowPanel, - InlinePanel, MultiFieldPanel -) - from django.db.models import CharField + from wagtail.wagtailcore.fields import RichTextField from wagtail.wagtailforms.models import ( AbstractEmailForm, AbstractFormField ) +from wagtail.wagtailadmin.edit_handlers import ( + FieldPanel, FieldRowPanel, + InlinePanel, MultiFieldPanel +) from ..util import TranslatedField diff --git a/publichealth/home/models/models.py b/publichealth/home/models/models.py index 3fde000..7283987 100644 --- a/publichealth/home/models/models.py +++ b/publichealth/home/models/models.py @@ -3,9 +3,11 @@ from __future__ import unicode_literals from django.db import models +from django.utils import translation + from modelcluster.fields import ParentalKey -from wagtail.wagtailcore import blocks +from wagtail.wagtailcore.blocks import StructBlock, CharBlock, URLBlock, RichTextBlock from wagtail.wagtailcore.models import Page, Orderable from wagtail.wagtailcore.fields import StreamField, RichTextField from wagtail.wagtailadmin.edit_handlers import FieldPanel, StreamFieldPanel, InlinePanel, MultiFieldPanel @@ -13,16 +15,16 @@ from wagtail.wagtailimages.blocks import ImageChooserBlock from wagtail.wagtailimages.edit_handlers import ImageChooserPanel from wagtail.wagtailsearch import index -from puput.models import EntryPage +from puput.models import EntryPage, BlogPage from ..util import TranslatedField -class InfoBlock(blocks.StructBlock): - title = blocks.CharBlock(required=True) +class InfoBlock(StructBlock): + title = CharBlock(required=True) photo = ImageChooserBlock(required=True) - summary = blocks.RichTextBlock(required=True) - action = blocks.CharBlock(required=False) - url = blocks.URLBlock(required=False) + summary = RichTextBlock(required=True) + action = CharBlock(required=False) + url = URLBlock(required=False) class ArticleIndexPage(Page): title_fr = models.CharField(max_length=255, default="") @@ -60,10 +62,15 @@ class ArticleIndexPage(Page): context['subcategories'] = subcategories return context + parent_page_types = [ + 'home.ArticleIndexPage', + 'home.HomePage' + ] subpage_types = [ 'home.ArticlePage', 'home.ArticleIndexPage', - 'home.ContactForm' + 'home.ContactForm', + 'wagtailcore.Page' ] class Meta: verbose_name = "Rubrik" @@ -83,15 +90,15 @@ class ArticlePage(Page): ) body_de = StreamField([ - ('paragraph', blocks.RichTextBlock()), + ('paragraph', RichTextBlock()), ('image', ImageChooserBlock()), - ('section', blocks.CharBlock(classname="full title")), + ('section', CharBlock(classname="full title")), ('info', InfoBlock()), ], null=True, blank=True) body_fr = StreamField([ - ('paragraph', blocks.RichTextBlock()), + ('paragraph', RichTextBlock()), ('image', ImageChooserBlock()), - ('section', blocks.CharBlock(classname="full title")), + ('section', CharBlock(classname="full title")), ('info', InfoBlock()), ], null=True, blank=True) trans_body = TranslatedField( @@ -112,25 +119,27 @@ class ArticlePage(Page): ) search_fields = Page.search_fields + [ - index.SearchField('body_de'), - index.SearchField('body_fr'), - index.SearchField('title'), - index.SearchField('title_fr'), - index.SearchField('intro_de'), - index.SearchField('intro_fr'), + index.SearchField('title', partial_match=True, boost=10), + index.SearchField('title_fr', partial_match=True, boost=10), + index.SearchField('body_de', partial_match=True), + index.SearchField('body_fr', partial_match=True), + index.SearchField('intro_de', partial_match=True), + index.SearchField('intro_fr', partial_match=True), ] content_panels = [ MultiFieldPanel([ FieldPanel('title'), FieldPanel('intro_de'), - StreamFieldPanel('body_de'), ], heading="Deutsch"), + StreamFieldPanel('body_de'), MultiFieldPanel([ FieldPanel('title_fr'), FieldPanel('intro_fr'), - StreamFieldPanel('body_fr'), ], heading="Français"), - ImageChooserPanel('feed_image'), + StreamFieldPanel('body_fr'), + MultiFieldPanel([ + ImageChooserPanel('feed_image'), + ], heading="Images"), ] promote_panels = [ InlinePanel('related_links', label="Links"), @@ -141,6 +150,10 @@ class ArticlePage(Page): MultiFieldPanel(Page.promote_panels, "Einstellungen"), ] + parent_page_types = [ + 'home.ArticleIndexPage', + 'home.HomePage' + ] subpage_types = [] class Meta: verbose_name = "Artikel" @@ -180,13 +193,18 @@ class HomePage(Page): 'infos_fr', ) + # news_home_de = models.ForeignKey( + # 'puput.EntryPage', + # null=True, blank=True, on_delete=models.SET_NULL, + # ) + content_panels = Page.content_panels + [ MultiFieldPanel([ FieldPanel('intro_de', classname="full"), FieldPanel('body_de', classname="full"), StreamFieldPanel('infos_de'), ], heading="Deutsch"), - MultiFieldPanel([ + MultiFieldPanel([ FieldPanel('intro_fr', classname="full"), FieldPanel('body_fr', classname="full"), StreamFieldPanel('infos_fr'), @@ -203,21 +221,24 @@ class HomePage(Page): return articles[:4] @property - def newsfeed(self): + def blogentries(self): # Get list of latest news - # TODO: fetch children of 'News (DE)' - entries = EntryPage.objects.live().descendant_of(self) + curlang = translation.get_language() + if not curlang in ['de', 'fr']: curlang = 'de' # Default language + parent = BlogPage.objects.filter(slug='news-%s' % curlang) + if not parent: return [] + entries = EntryPage.objects.live().descendant_of(parent[0]) # Order by most recent date first entries = entries.order_by('-date') - return entries[:4] + return entries[:6] def get_context(self, request): # Update template context context = super(HomePage, self).get_context(request) context['featured'] = self.featured - context['newsfeed'] = self.newsfeed + context['blogentries'] = self.blogentries return context - parent_page_types = [] + parent_page_types = ['wagtailcore.Page'] class Meta: verbose_name = "Frontpage" diff --git a/publichealth/home/models/snippets.py b/publichealth/home/models/snippets.py index f9f1255..045d2a8 100644 --- a/publichealth/home/models/snippets.py +++ b/publichealth/home/models/snippets.py @@ -7,12 +7,49 @@ from django.db import models from wagtail.wagtailsnippets.models import register_snippet from wagtail.wagtailcore.models import Page -from wagtail.wagtailadmin.edit_handlers import FieldPanel +from wagtail.wagtailadmin.edit_handlers import FieldPanel, PageChooserPanel +from .forms import ContactForm from ..util import TranslatedField +# List of supported social networks +SOCIAL_NETWORK_SUPPORTED = ( + ('twitter', 'Twitter'), + ('facebook', 'Facebook'), +) + +@register_snippet +class SocialContact(models.Model): + """ + Adds contact options through social networks + """ + network = models.CharField(max_length=16, default="twitter", + choices=SOCIAL_NETWORK_SUPPORTED) + profile = models.CharField(max_length=255, default="", + help_text="Name of the account, e.g. @myaccount, or full URL") + panels = [ + FieldPanel('network'), + FieldPanel('profile'), + ] + social_networks = dict(SOCIAL_NETWORK_SUPPORTED) + def network_title(self): + return self.social_networks[self.network] + def network_url(self): + if '://' in self.profile: + return self.profile + if self.network == 'twitter': + return "https://twitter.com/%s" % self.profile + elif self.network == 'facebook': + return "https://facebook.com/%s" % self.profile + return "#" + def __str__(self): + return "%s" % self.network + @register_snippet class Contact(models.Model): + """ + Defines contact options for the organisation, usually shown in footer + """ title = models.CharField(max_length=255, default="") title_fr = models.CharField(max_length=255, default="") trans_title = TranslatedField( @@ -24,12 +61,27 @@ class Contact(models.Model): email = models.EmailField(max_length=100, default="") www = models.URLField(null=True, blank=True) + map_url = models.URLField(null=True, blank=True, + help_text="Optional link of address to mapping provider") + analytics = models.CharField(max_length=60, default="", blank=True, + help_text="Optional web analytics property code") + + contact_form = models.ForeignKey( + 'home.ContactForm', + null=True, blank=True, + on_delete=models.SET_NULL, + related_name='+', + ) + panels = Page.content_panels + [ FieldPanel('title_fr'), FieldPanel('address'), FieldPanel('phone'), FieldPanel('email'), FieldPanel('www'), + FieldPanel('map_url'), + FieldPanel('analytics'), + PageChooserPanel('contact_form', 'home.ContactForm'), ] def phone_link(self): @@ -38,6 +90,13 @@ class Contact(models.Model): return 'mailto:%s' % self.email def www_domain(self): return self.www.replace('http://', '').replace('https://', '') + def is_google_analytics(self): + return self.analytics.startswith('UA-') + def get_piwik_analytics(self): + # When formatted as "server|site_id", assume Piwik + if not '|' in self.analytics: return False + sa = self.analytics.split('|') + return { 'server': sa[0], 'site': sa[1] } def trans_title_styled(self): v = self.trans_title.split(' ') if len(v) != 3: return v diff --git a/publichealth/home/templates/banner.html b/publichealth/home/templates/banner.html index 7475b16..c60f2b2 100644 --- a/publichealth/home/templates/banner.html +++ b/publichealth/home/templates/banner.html @@ -9,7 +9,7 @@ diff --git a/publichealth/home/templates/home/article_content.html b/publichealth/home/templates/home/article_content.html index 3e410ce..d8b778d 100644 --- a/publichealth/home/templates/home/article_content.html +++ b/publichealth/home/templates/home/article_content.html @@ -28,7 +28,7 @@ -
+
{% for block in page.trans_body %} {% if block.block_type == 'info' %} {% endif %} diff --git a/publichealth/home/templates/home/article_index_page.html b/publichealth/home/templates/home/article_index_page.html index 5ae239a..1c9e9a2 100644 --- a/publichealth/home/templates/home/article_index_page.html +++ b/publichealth/home/templates/home/article_index_page.html @@ -5,33 +5,35 @@ {% block content %} -{% if articles|length > 1 %} -
-
-

{{ page.trans_title }}

-

{{ page.trans_intro|richtext }}

-
- {% for entry in articles %} -
-
-

{{ entry.trans_title }}

-

{{ entry.trans_intro|richtext }}

-
-
- {% endfor %} -
-
-
+{% if articles|length is 1 %} -{% elif articles|length > 0 %} - -
+
{% for page in articles %} {% include 'home/page_content.html' %} {% endfor %}
+ +{% else %} + +
+
+

{{ page.trans_title }}

+

{{ page.trans_intro|richtext }}

+
+ {% for entry in articles %} +
+
+

{{ entry.trans_title }}

+ {{ entry.trans_intro|richtext }} +
+
+ {% endfor %} +
+
+
+ {% endif %} {% if subcategories %} @@ -41,14 +43,13 @@ {% for block in subcategories %} {% endfor %}
diff --git a/publichealth/home/templates/home/article_page.html b/publichealth/home/templates/home/article_page.html index 7c38f31..71336e8 100644 --- a/publichealth/home/templates/home/article_page.html +++ b/publichealth/home/templates/home/article_page.html @@ -4,7 +4,7 @@ {% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %} {% block content %} -
+
{% include 'home/page_content.html' %} diff --git a/publichealth/home/templates/home/contact_form_landing.html b/publichealth/home/templates/home/contact_form_landing.html index c68f4b8..d56d479 100644 --- a/publichealth/home/templates/home/contact_form_landing.html +++ b/publichealth/home/templates/home/contact_form_landing.html @@ -6,10 +6,8 @@ {% block content %}
- -

{{ page.title }}

-
+

{{ page.title }}

{{ page.thanks|richtext }}

diff --git a/publichealth/home/templates/home/home_page.html b/publichealth/home/templates/home/home_page.html index 575146a..4c5e3ff 100644 --- a/publichealth/home/templates/home/home_page.html +++ b/publichealth/home/templates/home/home_page.html @@ -1,8 +1,13 @@ {% extends "base.html" %} -{% load wagtailcore_tags %} +{% load static wagtailcore_tags %} {% block body_class %}template-{{ self.get_verbose_name|slugify }}{% endblock %} +{% block extra_css %} + + +{% endblock %} + {% block content %} diff --git a/publichealth/home/templates/home/page_content.html b/publichealth/home/templates/home/page_content.html index 001c18a..db2dd41 100644 --- a/publichealth/home/templates/home/page_content.html +++ b/publichealth/home/templates/home/page_content.html @@ -6,9 +6,9 @@
{% endif %} -

{{ page.trans_title }}

+

{{ page.trans_title }}

-

{{ page.trans_intro|richtext }}

+
{{ page.trans_intro|richtext }}
{% if page.date %}

{{ page.date }}

@@ -28,7 +28,7 @@
-
+
{% for block in page.trans_body %} {% if block.block_type == 'info' %}
diff --git a/publichealth/home/templates/infos.html b/publichealth/home/templates/infos.html index ec40989..0a845c9 100644 --- a/publichealth/home/templates/infos.html +++ b/publichealth/home/templates/infos.html @@ -2,21 +2,25 @@
-
+
{% for block in page.trans_infos %} {% endfor %}
-
\ No newline at end of file + diff --git a/publichealth/home/templates/news.html b/publichealth/home/templates/news.html index c6b1fa7..91bbb18 100644 --- a/publichealth/home/templates/news.html +++ b/publichealth/home/templates/news.html @@ -3,7 +3,7 @@
- {% for entry in newsfeed %} + {% for entry in blogentries %}
{% if entry.header_image %} @@ -13,10 +13,10 @@

{{ entry.title }}

{% if entry.excerpt %} - {{ entry.excerpt|richtext }} - {% else %} - {{ entry.body|richtext|truncatewords_html:70 }} - {% endif %} + {{ entry.excerpt|striptags }} + {% else %} + {{ entry.body|striptags|truncatewords_html:40 }} + {% endif %}

Mehr erfahren
@@ -24,8 +24,8 @@
{% empty %} - No news today - {% endfor %} + + {% endfor %}
diff --git a/publichealth/home/templates/puput/blog_page.html b/publichealth/home/templates/puput/blog_page.html index 38d342f..7a2ccbc 100644 --- a/publichealth/home/templates/puput/blog_page.html +++ b/publichealth/home/templates/puput/blog_page.html @@ -20,6 +20,7 @@ + {% endblock social_share %} {% block content %} @@ -56,4 +57,8 @@
{% endwith %} + + + RSS Feed + {% endblock content %} diff --git a/publichealth/home/templates/tags/contact_form.html b/publichealth/home/templates/tags/contact_form.html deleted file mode 100644 index 47bd038..0000000 --- a/publichealth/home/templates/tags/contact_form.html +++ /dev/null @@ -1,12 +0,0 @@ -
-
- -
-
- -
-
- -
- -
diff --git a/publichealth/home/templates/tags/contact_info.html b/publichealth/home/templates/tags/contact_info.html index dbecca3..6bb9838 100644 --- a/publichealth/home/templates/tags/contact_info.html +++ b/publichealth/home/templates/tags/contact_info.html @@ -1,8 +1,47 @@

{{ contact.trans_title }}
- {{ contact.address }} + {% if contact.map_url %} + {{ contact.address }} + {% else %} + {{ contact.address }} + {% endif %}

Tel. {{ contact.phone }}
{{ contact.email }}
{{ contact.www_domain }}

+ + + +{% if contact.is_google_analytics %} + +{% elif contact.get_piwik_analytics %} + +{% endif %} diff --git a/publichealth/home/templates/tags/contact_links.html b/publichealth/home/templates/tags/contact_links.html index 1fbe73f..42442f0 100644 --- a/publichealth/home/templates/tags/contact_links.html +++ b/publichealth/home/templates/tags/contact_links.html @@ -1,7 +1,15 @@ - + + +{% endfor %} + + + - - + + + + diff --git a/publichealth/home/templates/tags/footer_form.html b/publichealth/home/templates/tags/footer_form.html new file mode 100644 index 0000000..a85c6d3 --- /dev/null +++ b/publichealth/home/templates/tags/footer_form.html @@ -0,0 +1,16 @@ +{% load wagtailcore_tags %} +{% if form %} +
+ {% csrf_token %} +
+ +
+
+ +
+
+ +
+ +
+{% endif %} diff --git a/publichealth/home/templatetags/information.py b/publichealth/home/templatetags/information.py index 090ce05..6bebdc1 100644 --- a/publichealth/home/templatetags/information.py +++ b/publichealth/home/templatetags/information.py @@ -2,7 +2,7 @@ from django import template from django.utils import translation -from ..models.snippets import Contact +from ..models.snippets import Contact, SocialContact register = template.Library() @@ -11,20 +11,23 @@ register = template.Library() def contact_info(): return { 'contact': Contact.objects.last(), + 'socials': SocialContact.objects.all() } # Contact form (footer) -@register.inclusion_tag('tags/contact_form.html') -def contact_form(): - return { - 'contact': Contact.objects.last(), - } +@register.inclusion_tag('tags/footer_form.html') +def footer_form(): + if Contact.objects.last(): + return { + 'form': Contact.objects.last().contact_form, + } # Contact links (header) @register.inclusion_tag('tags/contact_links.html') def contact_links(): return { 'contact': Contact.objects.last(), + 'socials': SocialContact.objects.all() } # Styled contact name (header) diff --git a/publichealth/home/templatetags/navigation.py b/publichealth/home/templatetags/navigation.py index 523f310..78e1ebd 100644 --- a/publichealth/home/templatetags/navigation.py +++ b/publichealth/home/templatetags/navigation.py @@ -7,11 +7,16 @@ register = template.Library() # Language switcher @register.inclusion_tag('tags/language.html', takes_context=True) def language_switcher(context): - url = context['page'].url + url = '/$lang$' + if 'page' in context: + url = context['page'].url.split('/') + if len(url) > 2 and len(url[1]) >= 2: + url[1] = '$lang$' + url = '/'.join(url) return { 'languages': [ - { 'code': 'de', 'title': 'De', 'url': url.replace('/fr/','/de/') }, - { 'code': 'fr', 'title': 'Fr', 'url': url.replace('/de/','/fr/') } + { 'code': 'de', 'title': 'De', 'url': url.replace('$lang$','de') }, + { 'code': 'fr', 'title': 'Fr', 'url': url.replace('$lang$','fr') } ], 'currentlangcode': translation.get_language(), 'request': context['request'], @@ -34,7 +39,10 @@ def top_menu(context, parent, calling_page=None): menuitem.show_dropdown = has_menu_children(menuitem) menuitem.active = (calling_page.url.startswith(menuitem.url) if calling_page else False) - menuitem.title = menuitem.trans_title + try: + menuitem.title = menuitem.trans_title + except AttributeError: + pass return { 'calling_page': calling_page, 'menuitems': menuitems, @@ -44,7 +52,10 @@ def top_menu(context, parent, calling_page=None): def menuitems_children(parent): menuitems_children = parent.get_children().live().in_menu().specific() for menuitem in menuitems_children: - menuitem.title = menuitem.trans_title + try: + menuitem.title = menuitem.trans_title + except AttributeError: + pass return menuitems_children # Retrieves the children of the top menu items for the drop downs diff --git a/publichealth/search/templates/search/search.html b/publichealth/search/templates/search/search.html index faa5d37..93f36c2 100644 --- a/publichealth/search/templates/search/search.html +++ b/publichealth/search/templates/search/search.html @@ -10,7 +10,7 @@
- + @@ -53,7 +53,7 @@ {{ search_results.next_page_number }} {% endif %} {% elif search_query %} - Leider keine Ergebnisse / Désolé, aucun résultat n'a été trouvé +
Leider keine Ergebnisse gefunden

Désolé, aucun résultat n'a été trouvé
{% endif %}
diff --git a/publichealth/settings/base.py b/publichealth/settings/base.py index 01f7441..13a16c0 100644 --- a/publichealth/settings/base.py +++ b/publichealth/settings/base.py @@ -28,6 +28,7 @@ INSTALLED_APPS = [ 'wagtail.contrib.wagtailsearchpromotions', 'wagtail.contrib.wagtailroutablepage', 'wagtail.contrib.wagtailsitemaps', + 'wagtail.contrib.modeladmin', 'wagtail.contrib.settings', 'wagtail.wagtailforms', 'wagtail.wagtailredirects', @@ -41,11 +42,15 @@ INSTALLED_APPS = [ 'wagtail.wagtailadmin', 'wagtail.wagtailcore', + 'wagtail.api.v2', + 'rest_framework', + 'modelcluster', 'compressor', 'taggit', 'puput', 'anymail', + 'feedler', 'django.contrib.admin', 'django.contrib.auth', @@ -126,14 +131,12 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/1.8/topics/i18n/ -LANGUAGE_CODE = 'de-DE' +LANGUAGE_CODE = 'de' # default language TIME_ZONE = 'Europe/Zurich' USE_I18N = True - USE_L10N = True - USE_TZ = True diff --git a/publichealth/settings/production.py b/publichealth/settings/production.py index 661ad2f..5d06f81 100644 --- a/publichealth/settings/production.py +++ b/publichealth/settings/production.py @@ -145,7 +145,7 @@ if REDIS_LOCATION is not None: if 'ELASTICSEARCH_URL' in env: WAGTAILSEARCH_BACKENDS = { 'default': { - 'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch5', + 'BACKEND': 'wagtail.wagtailsearch.backends.elasticsearch2', 'URLS': [env['ELASTICSEARCH_URL']], 'INDEX': APP_NAME, 'ATOMIC_REBUILD': True, @@ -178,7 +178,7 @@ LOGGING = { }, 'wagtail': { 'handlers': [], - 'level': 'INFO', + 'level': 'WARNING', 'propagate': False, 'formatter': 'verbose', }, @@ -211,7 +211,7 @@ if 'LOG_DIR' in env: # Wagtail log LOGGING['handlers']['wagtail_file'] = { - 'level': 'INFO', + 'level': 'WARNING', 'class': 'cloghandler.ConcurrentRotatingFileHandler', 'filename': os.path.join(env['LOG_DIR'], 'wagtail.log'), 'maxBytes': 5242880, # 5MB diff --git a/publichealth/static/css/main.scss b/publichealth/static/css/main.scss index a65d8bb..8bd1115 100644 --- a/publichealth/static/css/main.scss +++ b/publichealth/static/css/main.scss @@ -4,7 +4,6 @@ @import '../libs/bootstrap-sass/assets/stylesheets/bootstrap'; @import 'paper/bootswatch'; - // Modules @import "modules/modules"; @@ -12,43 +11,6 @@ body { margin-top: 104px; } -section { - padding: 6em 0; - &:nth-child(odd) { - background-color: $gray-lighter; - } - - h2 { - text-align: center; - margin-bottom: 1.5em; - text-transform: uppercase; - } -} - -/* Responsive image/video classes */ -.rich-text img { - max-width: 100%; - height: auto; -} -.richtext-image.left{ - float:left; -} -.richtext-image.right{ - float:right; -} -.responsive-object { - position: relative; -} -.responsive-object iframe, -.responsive-object object, -.responsive-object embed { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -article footer .btn { - margin-bottom: 1em; +@include mid-screen($screen-sm-min, $screen-md-min) { + body { margin-top: 200px; } } diff --git a/publichealth/static/css/modules/_articles.scss b/publichealth/static/css/modules/_articles.scss new file mode 100644 index 0000000..f3d6fe5 --- /dev/null +++ b/publichealth/static/css/modules/_articles.scss @@ -0,0 +1,76 @@ +// Article sections +section { + padding: 3em 0; + + &:nth-child(odd) { + background-color: $gray-lighter; + color: black; + } + + h1 { + font-size: 40px; + text-align: center; + margin-bottom: 1.5em; + text-transform: uppercase; + } +} + +.article-body { + h2 { font-size: 35px; } + h3 { font-size: 30px; } + h4 { font-size: 25px; } + h5 { font-size: 22px; } + + line-height: 1.5; + + img.full-width { + width: 100%; + } +} + +// Article content blocks +.article-body > div { + clear: both; +} +.infoblocks { + .image img { + width: 300px; height: 300px; + } + article:nth-child(3n+1) { + clear: left; + } +} + +// Article index blocks +.article-subcategories article { + margin-bottom: 1.5em; +} + +// Special article layout +.article-page .lead { + h2,h3,h4,h5 { text-align: center; } +} + +// Responsive image/video classes +.rich-text img { + max-width: 100%; + height: auto; +} +.richtext-image.left{ + float:left; +} +.richtext-image.right{ + float:right; +} +.responsive-object { + position: relative; +} +.responsive-object iframe, +.responsive-object object, +.responsive-object embed { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} diff --git a/publichealth/static/css/modules/_banner.scss b/publichealth/static/css/modules/_banner.scss index f7b23f8..38b279a 100644 --- a/publichealth/static/css/modules/_banner.scss +++ b/publichealth/static/css/modules/_banner.scss @@ -194,6 +194,9 @@ $banner-height: 700px; } @include max-screen(480px) { .navbar-pre .navbar-nav, - #carousel-banner { display: none !important; } - #banner { margin-top: 100px; } + #carousel-banner { + .carousel-caption { left: 0px; right: 0px; overflow-x: hidden; } + .carousel-inner { margin-bottom: 0px; } + } + //#banner { margin-top: 100px; } } diff --git a/publichealth/static/css/modules/_footer.scss b/publichealth/static/css/modules/_footer.scss index 95ef034..ef942c2 100644 --- a/publichealth/static/css/modules/_footer.scss +++ b/publichealth/static/css/modules/_footer.scss @@ -5,7 +5,11 @@ footer#footer { color: white; a { - color: lighten($brand-secondary, 10%); + color: lighten($brand-secondary, 25%); + } + + form { + margin-bottom: 2em; } } @@ -15,3 +19,51 @@ footer#footer { text-align: center; font-size: 70%; } + +article footer .btn { + margin-bottom: 1em; +} + +// Footer search form +#search-form { + + input { + float: left; + width: auto; + color: white; + } + button { + background: none; border: none; + padding-top: 0.5em; + } + +} + +// Footer contact information +#contact-info { + address { + margin-bottom: 0px; + } + + .social-networks > a { + border: 2px solid white; + width: 32px; height: 32px; + } +} + +// Footer contact form +#footer #contact-form { + textarea.form-control, input.form-control { + color: white; + } +} + +// Base style for social network buttons as used in header +.social-networks > a { + width: 14px; height: 14px; + font-size: 0px !important; + display: inline-block; + background-size: auto 70%; + background-repeat: no-repeat; + background-position: center; +} diff --git a/publichealth/static/css/modules/_forms.scss b/publichealth/static/css/modules/_forms.scss index e61b78e..0d91356 100644 --- a/publichealth/static/css/modules/_forms.scss +++ b/publichealth/static/css/modules/_forms.scss @@ -1,10 +1,10 @@ -// Contact page +// Contact page form #contact-page { form { label { width: 15em; - border-bottom: 1px dashed #ccc; + border-bottom: 1px dashed $gray-light; line-height: 166%; vertical-align: top; } @@ -24,21 +24,28 @@ display: block; font-size: 90%; } + input[type='text'], textarea { + border: 1px solid $gray-light; + padding: 3px; + } + + // Full width comment on mobile screens + @include max-screen($screen-xs-max) { + textarea { width: 100%; } + } } } -// Footer search form -#search-form { - - input { - float: left; - width: auto; - color: white; +// Search result form +#search-page { + input[type='text'] { + font-size: 110%; } - button { - background: none; border: none; - padding-top: 0.5em; + h4 { + margin-bottom: 0px; + } + .container > center { + margin-bottom: 3em; } - } diff --git a/publichealth/static/css/modules/_mixins.scss b/publichealth/static/css/modules/_mixins.scss index a50f50f..a55bb87 100644 --- a/publichealth/static/css/modules/_mixins.scss +++ b/publichealth/static/css/modules/_mixins.scss @@ -5,3 +5,10 @@ @content; } } + +// mid-screen +@mixin mid-screen($min, $max) { + @media only screen and (min-width: $min) and (max-width: $max) { + @content; + } +} diff --git a/publichealth/static/css/modules/_modules.scss b/publichealth/static/css/modules/_modules.scss index 76e1ab3..cbd4df5 100644 --- a/publichealth/static/css/modules/_modules.scss +++ b/publichealth/static/css/modules/_modules.scss @@ -4,3 +4,4 @@ @import "footer"; @import "news"; @import "forms"; +@import "articles"; diff --git a/publichealth/static/css/modules/_navbar.scss b/publichealth/static/css/modules/_navbar.scss index e656e6b..c4687b8 100644 --- a/publichealth/static/css/modules/_navbar.scss +++ b/publichealth/static/css/modules/_navbar.scss @@ -18,6 +18,13 @@ &.link { text-transform: uppercase; } + &:hover { + text-decoration: none; + } + } + .social-networks { + top: -1px; position: relative; + a { margin: 0 10px; } } } .language-nav { diff --git a/publichealth/static/css/modules/_news.scss b/publichealth/static/css/modules/_news.scss index ea71ef4..b3edf6a 100644 --- a/publichealth/static/css/modules/_news.scss +++ b/publichealth/static/css/modules/_news.scss @@ -2,21 +2,13 @@ // News overview #news { - .panel-default { + .panel-default, .panel-fulltext { font-size: 90%; padding-top: 75%; /* 1:1 Aspect Ratio */ position: relative; /* If you want text inside of it */ overflow: hidden; background: lighten($brand-primary, 10%); - img { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - } - .panel-body { position: absolute; top: 0; @@ -24,10 +16,7 @@ width: 100%; height: 100%; padding: 0; - transform: translateY(60%); background-color: rgba($brand-primary, .8); - transition: transform .65s; - h3, p { color: white; } @@ -58,9 +47,6 @@ text-align: center; } } - &:hover .panel-body { - transform: rotateY(0); - } // expand link over the thumbnail a.fill { @@ -72,6 +58,23 @@ font-size: 0; } } + + .panel-default { + img { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: auto; + } + .panel-body { + transform: translateY(60%); + transition: transform .65s; + } + &:hover .panel-body { + transform: rotateY(0); + } + } } // News detail article diff --git a/publichealth/static/images/favicon.ico b/publichealth/static/images/favicon.ico new file mode 100644 index 0000000..65a4fe6 Binary files /dev/null and b/publichealth/static/images/favicon.ico differ diff --git a/publichealth/static/images/social/facebook.png b/publichealth/static/images/social/facebook.png new file mode 100644 index 0000000..01837d2 Binary files /dev/null and b/publichealth/static/images/social/facebook.png differ diff --git a/publichealth/static/images/social/twitter.png b/publichealth/static/images/social/twitter.png new file mode 100644 index 0000000..5dfb627 Binary files /dev/null and b/publichealth/static/images/social/twitter.png differ diff --git a/publichealth/static/js/main.js b/publichealth/static/js/main.js index 1eafc03..3c51033 100644 --- a/publichealth/static/js/main.js +++ b/publichealth/static/js/main.js @@ -1,5 +1,11 @@ $(document).ready(function() { + // All external links in a new window + $('a[href^="http"]').filter(function() { + return this.hostname && this.hostname !== location.hostname; + }).attr('target', '_blank'); + + // Initialise front page carousel component $('.carousel-inner.slick').slick({ autoplay: true, autoplaySpeed: '10000', @@ -12,4 +18,11 @@ $(document).ready(function() { nextArrow: '', }); + // Formatting of live news + $('.feedpage-body .panel').each(function() { + var hue = Math.floor(Math.random() * 360); + var pastel = 'hsl(' + hue + ', 100%, 87.5%)'; + $(this).css('border-top', '3px solid ' + pastel); + }); + }); diff --git a/publichealth/static/mockup/assets/css/font-awesome.min.css b/publichealth/static/mockup/assets/css/font-awesome.min.css deleted file mode 100755 index 9b27f8e..0000000 --- a/publichealth/static/mockup/assets/css/font-awesome.min.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.6.3');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;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} diff --git a/publichealth/static/mockup/assets/css/main.css b/publichealth/static/mockup/assets/css/main.css deleted file mode 100755 index 0e81756..0000000 --- a/publichealth/static/mockup/assets/css/main.css +++ /dev/null @@ -1,8608 +0,0 @@ -@charset "UTF-8"; -/*! - * 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 */ -@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700"); -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 { - box-sizing: content-box; - height: 0; -} - -pre { - overflow: auto; -} - -code, -kbd, -pre, -samp { - font-family: monospace, monospace; - font-size: 1em; -} - -button, -input, -optgroup, -select, -textarea { - color: inherit; - font: inherit; - margin: 0; -} - -button { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -button, -html input[type="button"], -input[type="reset"], -input[type="submit"] { - -webkit-appearance: button; - cursor: pointer; -} - -button[disabled], -html input[disabled] { - cursor: default; -} - -button::-moz-focus-inner, -input::-moz-focus-inner { - border: 0; - padding: 0; -} - -input { - line-height: normal; -} - -input[type="checkbox"], -input[type="radio"] { - box-sizing: border-box; - padding: 0; -} - -input[type="number"]::-webkit-inner-spin-button, -input[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -input[type="search"] { - -webkit-appearance: textfield; - box-sizing: content-box; -} - -input[type="search"]::-webkit-search-cancel-button, -input[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -fieldset { - border: 1px solid #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; - 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("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot"); - src: url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"), url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"), url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"), url("../libs/bootstrap-sass/assets/fonts/bootstrap/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: transparent; -} - -body { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-size: 20px; - line-height: 1.846; - color: #666; - background-color: #fff; -} - -input, -button, -select, -textarea { - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -a { - color: #2643A9; - text-decoration: none; -} -a:hover, a:focus { - color: #182a6b; - text-decoration: underline; -} -a:focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} - -figure { - margin: 0; -} - -img { - vertical-align: middle; -} - -.img-responsive { - display: block; - max-width: 100%; - height: auto; -} - -.img-rounded { - border-radius: 3px; -} - -.img-thumbnail { - padding: 4px; - line-height: 1.846; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 3px; - -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: 36px; - margin-bottom: 36px; - border: 0; - border-top: 1px solid #eeeeee; -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - margin: -1px; - padding: 0; - overflow: hidden; - clip: rect(0, 0, 0, 0); - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - margin: 0; - overflow: visible; - clip: auto; -} - -[role="button"] { - cursor: pointer; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - font-family: inherit; - font-weight: 400; - line-height: 1.1; - color: #444; -} -h1 small, -h1 .small, h2 small, -h2 .small, h3 small, -h3 .small, h4 small, -h4 .small, h5 small, -h5 .small, h6 small, -h6 .small, -.h1 small, -.h1 .small, .h2 small, -.h2 .small, .h3 small, -.h3 .small, .h4 small, -.h4 .small, .h5 small, -.h5 .small, .h6 small, -.h6 .small { - font-weight: normal; - line-height: 1; - color: #bbb; -} - -h1, .h1, -h2, .h2, -h3, .h3 { - margin-top: 36px; - margin-bottom: 18px; -} -h1 small, -h1 .small, .h1 small, -.h1 .small, -h2 small, -h2 .small, .h2 small, -.h2 .small, -h3 small, -h3 .small, .h3 small, -.h3 .small { - font-size: 65%; -} - -h4, .h4, -h5, .h5, -h6, .h6 { - margin-top: 18px; - margin-bottom: 18px; -} -h4 small, -h4 .small, .h4 small, -.h4 .small, -h5 small, -h5 .small, .h5 small, -.h5 .small, -h6 small, -h6 .small, .h6 small, -.h6 .small { - font-size: 75%; -} - -h1, .h1 { - font-size: 56px; -} - -h2, .h2 { - font-size: 45px; -} - -h3, .h3 { - font-size: 34px; -} - -h4, .h4 { - font-size: 24px; -} - -h5, .h5 { - font-size: 20px; -} - -h6, .h6 { - font-size: 14px; -} - -p { - margin: 0 0 18px; -} - -.lead { - margin-bottom: 36px; - font-size: 23px; - font-weight: 300; - line-height: 1.4; -} -@media (min-width: 768px) { - .lead { - font-size: 30px; - } -} - -small, -.small { - font-size: 85%; -} - -mark, -.mark { - background-color: #ffe0b2; - 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, .initialism { - text-transform: uppercase; -} - -.text-capitalize { - text-transform: capitalize; -} - -.text-muted { - color: #bbb; -} - -.text-primary { - color: #2643A9; -} - -a.text-primary:hover, -a.text-primary:focus { - color: #1d327f; -} - -.text-success { - color: #4CAF50; -} - -a.text-success:hover, -a.text-success:focus { - color: #3d8b40; -} - -.text-info { - color: #9C27B0; -} - -a.text-info:hover, -a.text-info:focus { - color: #771e86; -} - -.text-warning { - color: #ff9800; -} - -a.text-warning:hover, -a.text-warning:focus { - color: #cc7a00; -} - -.text-danger { - color: #e51c23; -} - -a.text-danger:hover, -a.text-danger:focus { - color: #b9151b; -} - -.bg-primary { - color: #fff; -} - -.bg-primary { - background-color: #2643A9; -} - -a.bg-primary:hover, -a.bg-primary:focus { - background-color: #1d327f; -} - -.bg-success { - background-color: #dff0d8; -} - -a.bg-success:hover, -a.bg-success:focus { - background-color: #c1e2b3; -} - -.bg-info { - background-color: #e1bee7; -} - -a.bg-info:hover, -a.bg-info:focus { - background-color: #d099d9; -} - -.bg-warning { - background-color: #ffe0b2; -} - -a.bg-warning:hover, -a.bg-warning:focus { - background-color: #ffcb7f; -} - -.bg-danger { - background-color: #f9bdbb; -} - -a.bg-danger:hover, -a.bg-danger:focus { - background-color: #f5908c; -} - -.page-header { - padding-bottom: 17px; - margin: 72px 0 36px; - border-bottom: 1px solid #eeeeee; -} - -ul, -ol { - margin-top: 0; - margin-bottom: 18px; -} -ul ul, -ul ol, -ol ul, -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: 36px; -} - -dt, -dd { - line-height: 1.846; -} - -dt { - font-weight: bold; -} - -dd { - margin-left: 0; -} - -.dl-horizontal dd:before, .dl-horizontal dd:after { - content: " "; - display: table; -} -.dl-horizontal dd:after { - clear: both; -} -@media (min-width: 768px) { - .dl-horizontal dt { - float: left; - width: 160px; - clear: left; - text-align: right; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - .dl-horizontal dd { - margin-left: 180px; - } -} - -abbr[title], -abbr[data-original-title] { - cursor: help; - border-bottom: 1px dotted #bbb; -} - -.initialism { - font-size: 90%; -} - -blockquote { - padding: 18px 36px; - margin: 0 0 36px; - font-size: 25px; - border-left: 5px solid #eeeeee; -} -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.846; - color: #bbb; -} -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 #eeeeee; - border-left: 0; - text-align: right; -} -.blockquote-reverse footer:before, -.blockquote-reverse small:before, -.blockquote-reverse .small:before, -blockquote.pull-right footer:before, -blockquote.pull-right small:before, -blockquote.pull-right .small:before { - content: ''; -} -.blockquote-reverse footer:after, -.blockquote-reverse small:after, -.blockquote-reverse .small:after, -blockquote.pull-right footer:after, -blockquote.pull-right small:after, -blockquote.pull-right .small:after { - content: '\00A0 \2014'; -} - -address { - margin-bottom: 36px; - font-style: normal; - line-height: 1.846; -} - -code, -kbd, -pre, -samp { - font-family: Menlo, Monaco, Consolas, "Courier New", monospace; -} - -code { - padding: 2px 4px; - font-size: 90%; - color: #c7254e; - background-color: #f9f2f4; - border-radius: 3px; -} - -kbd { - padding: 2px 4px; - font-size: 90%; - color: #fff; - background-color: #333; - border-radius: 3px; - box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: bold; - box-shadow: none; -} - -pre { - display: block; - padding: 17.5px; - margin: 0 0 18px; - font-size: 19px; - line-height: 1.846; - word-break: break-all; - word-wrap: break-word; - color: #212121; - background-color: #f5f5f5; - border: 1px solid #ccc; - border-radius: 3px; -} -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; -} -.container:before, .container:after { - content: " "; - display: table; -} -.container:after { - clear: both; -} -@media (min-width: 768px) { - .container { - width: 750px; - } -} -@media (min-width: 992px) { - .container { - width: 970px; - } -} -@media (min-width: 1200px) { - .container { - width: 1170px; - } -} - -.container-fluid { - margin-right: auto; - margin-left: auto; - padding-left: 15px; - padding-right: 15px; -} -.container-fluid:before, .container-fluid:after { - content: " "; - display: table; -} -.container-fluid:after { - clear: both; -} - -.row { - margin-left: -15px; - margin-right: -15px; -} -.row:before, .row:after { - content: " "; - display: table; -} -.row:after { - clear: both; -} - -.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-1 { - width: 8.33333%; -} - -.col-xs-2 { - width: 16.66667%; -} - -.col-xs-3 { - width: 25%; -} - -.col-xs-4 { - width: 33.33333%; -} - -.col-xs-5 { - width: 41.66667%; -} - -.col-xs-6 { - width: 50%; -} - -.col-xs-7 { - width: 58.33333%; -} - -.col-xs-8 { - width: 66.66667%; -} - -.col-xs-9 { - width: 75%; -} - -.col-xs-10 { - width: 83.33333%; -} - -.col-xs-11 { - width: 91.66667%; -} - -.col-xs-12 { - width: 100%; -} - -.col-xs-pull-0 { - right: auto; -} - -.col-xs-pull-1 { - right: 8.33333%; -} - -.col-xs-pull-2 { - right: 16.66667%; -} - -.col-xs-pull-3 { - right: 25%; -} - -.col-xs-pull-4 { - right: 33.33333%; -} - -.col-xs-pull-5 { - right: 41.66667%; -} - -.col-xs-pull-6 { - right: 50%; -} - -.col-xs-pull-7 { - right: 58.33333%; -} - -.col-xs-pull-8 { - right: 66.66667%; -} - -.col-xs-pull-9 { - right: 75%; -} - -.col-xs-pull-10 { - right: 83.33333%; -} - -.col-xs-pull-11 { - right: 91.66667%; -} - -.col-xs-pull-12 { - right: 100%; -} - -.col-xs-push-0 { - left: auto; -} - -.col-xs-push-1 { - left: 8.33333%; -} - -.col-xs-push-2 { - left: 16.66667%; -} - -.col-xs-push-3 { - left: 25%; -} - -.col-xs-push-4 { - left: 33.33333%; -} - -.col-xs-push-5 { - left: 41.66667%; -} - -.col-xs-push-6 { - left: 50%; -} - -.col-xs-push-7 { - left: 58.33333%; -} - -.col-xs-push-8 { - left: 66.66667%; -} - -.col-xs-push-9 { - left: 75%; -} - -.col-xs-push-10 { - left: 83.33333%; -} - -.col-xs-push-11 { - left: 91.66667%; -} - -.col-xs-push-12 { - left: 100%; -} - -.col-xs-offset-0 { - margin-left: 0%; -} - -.col-xs-offset-1 { - margin-left: 8.33333%; -} - -.col-xs-offset-2 { - margin-left: 16.66667%; -} - -.col-xs-offset-3 { - margin-left: 25%; -} - -.col-xs-offset-4 { - margin-left: 33.33333%; -} - -.col-xs-offset-5 { - margin-left: 41.66667%; -} - -.col-xs-offset-6 { - margin-left: 50%; -} - -.col-xs-offset-7 { - margin-left: 58.33333%; -} - -.col-xs-offset-8 { - margin-left: 66.66667%; -} - -.col-xs-offset-9 { - margin-left: 75%; -} - -.col-xs-offset-10 { - margin-left: 83.33333%; -} - -.col-xs-offset-11 { - margin-left: 91.66667%; -} - -.col-xs-offset-12 { - margin-left: 100%; -} - -@media (min-width: 768px) { - .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { - float: left; - } - - .col-sm-1 { - width: 8.33333%; - } - - .col-sm-2 { - width: 16.66667%; - } - - .col-sm-3 { - width: 25%; - } - - .col-sm-4 { - width: 33.33333%; - } - - .col-sm-5 { - width: 41.66667%; - } - - .col-sm-6 { - width: 50%; - } - - .col-sm-7 { - width: 58.33333%; - } - - .col-sm-8 { - width: 66.66667%; - } - - .col-sm-9 { - width: 75%; - } - - .col-sm-10 { - width: 83.33333%; - } - - .col-sm-11 { - width: 91.66667%; - } - - .col-sm-12 { - width: 100%; - } - - .col-sm-pull-0 { - right: auto; - } - - .col-sm-pull-1 { - right: 8.33333%; - } - - .col-sm-pull-2 { - right: 16.66667%; - } - - .col-sm-pull-3 { - right: 25%; - } - - .col-sm-pull-4 { - right: 33.33333%; - } - - .col-sm-pull-5 { - right: 41.66667%; - } - - .col-sm-pull-6 { - right: 50%; - } - - .col-sm-pull-7 { - right: 58.33333%; - } - - .col-sm-pull-8 { - right: 66.66667%; - } - - .col-sm-pull-9 { - right: 75%; - } - - .col-sm-pull-10 { - right: 83.33333%; - } - - .col-sm-pull-11 { - right: 91.66667%; - } - - .col-sm-pull-12 { - right: 100%; - } - - .col-sm-push-0 { - left: auto; - } - - .col-sm-push-1 { - left: 8.33333%; - } - - .col-sm-push-2 { - left: 16.66667%; - } - - .col-sm-push-3 { - left: 25%; - } - - .col-sm-push-4 { - left: 33.33333%; - } - - .col-sm-push-5 { - left: 41.66667%; - } - - .col-sm-push-6 { - left: 50%; - } - - .col-sm-push-7 { - left: 58.33333%; - } - - .col-sm-push-8 { - left: 66.66667%; - } - - .col-sm-push-9 { - left: 75%; - } - - .col-sm-push-10 { - left: 83.33333%; - } - - .col-sm-push-11 { - left: 91.66667%; - } - - .col-sm-push-12 { - left: 100%; - } - - .col-sm-offset-0 { - margin-left: 0%; - } - - .col-sm-offset-1 { - margin-left: 8.33333%; - } - - .col-sm-offset-2 { - margin-left: 16.66667%; - } - - .col-sm-offset-3 { - margin-left: 25%; - } - - .col-sm-offset-4 { - margin-left: 33.33333%; - } - - .col-sm-offset-5 { - margin-left: 41.66667%; - } - - .col-sm-offset-6 { - margin-left: 50%; - } - - .col-sm-offset-7 { - margin-left: 58.33333%; - } - - .col-sm-offset-8 { - margin-left: 66.66667%; - } - - .col-sm-offset-9 { - margin-left: 75%; - } - - .col-sm-offset-10 { - margin-left: 83.33333%; - } - - .col-sm-offset-11 { - margin-left: 91.66667%; - } - - .col-sm-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 992px) { - .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { - float: left; - } - - .col-md-1 { - width: 8.33333%; - } - - .col-md-2 { - width: 16.66667%; - } - - .col-md-3 { - width: 25%; - } - - .col-md-4 { - width: 33.33333%; - } - - .col-md-5 { - width: 41.66667%; - } - - .col-md-6 { - width: 50%; - } - - .col-md-7 { - width: 58.33333%; - } - - .col-md-8 { - width: 66.66667%; - } - - .col-md-9 { - width: 75%; - } - - .col-md-10 { - width: 83.33333%; - } - - .col-md-11 { - width: 91.66667%; - } - - .col-md-12 { - width: 100%; - } - - .col-md-pull-0 { - right: auto; - } - - .col-md-pull-1 { - right: 8.33333%; - } - - .col-md-pull-2 { - right: 16.66667%; - } - - .col-md-pull-3 { - right: 25%; - } - - .col-md-pull-4 { - right: 33.33333%; - } - - .col-md-pull-5 { - right: 41.66667%; - } - - .col-md-pull-6 { - right: 50%; - } - - .col-md-pull-7 { - right: 58.33333%; - } - - .col-md-pull-8 { - right: 66.66667%; - } - - .col-md-pull-9 { - right: 75%; - } - - .col-md-pull-10 { - right: 83.33333%; - } - - .col-md-pull-11 { - right: 91.66667%; - } - - .col-md-pull-12 { - right: 100%; - } - - .col-md-push-0 { - left: auto; - } - - .col-md-push-1 { - left: 8.33333%; - } - - .col-md-push-2 { - left: 16.66667%; - } - - .col-md-push-3 { - left: 25%; - } - - .col-md-push-4 { - left: 33.33333%; - } - - .col-md-push-5 { - left: 41.66667%; - } - - .col-md-push-6 { - left: 50%; - } - - .col-md-push-7 { - left: 58.33333%; - } - - .col-md-push-8 { - left: 66.66667%; - } - - .col-md-push-9 { - left: 75%; - } - - .col-md-push-10 { - left: 83.33333%; - } - - .col-md-push-11 { - left: 91.66667%; - } - - .col-md-push-12 { - left: 100%; - } - - .col-md-offset-0 { - margin-left: 0%; - } - - .col-md-offset-1 { - margin-left: 8.33333%; - } - - .col-md-offset-2 { - margin-left: 16.66667%; - } - - .col-md-offset-3 { - margin-left: 25%; - } - - .col-md-offset-4 { - margin-left: 33.33333%; - } - - .col-md-offset-5 { - margin-left: 41.66667%; - } - - .col-md-offset-6 { - margin-left: 50%; - } - - .col-md-offset-7 { - margin-left: 58.33333%; - } - - .col-md-offset-8 { - margin-left: 66.66667%; - } - - .col-md-offset-9 { - margin-left: 75%; - } - - .col-md-offset-10 { - margin-left: 83.33333%; - } - - .col-md-offset-11 { - margin-left: 91.66667%; - } - - .col-md-offset-12 { - margin-left: 100%; - } -} -@media (min-width: 1200px) { - .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { - float: left; - } - - .col-lg-1 { - width: 8.33333%; - } - - .col-lg-2 { - width: 16.66667%; - } - - .col-lg-3 { - width: 25%; - } - - .col-lg-4 { - width: 33.33333%; - } - - .col-lg-5 { - width: 41.66667%; - } - - .col-lg-6 { - width: 50%; - } - - .col-lg-7 { - width: 58.33333%; - } - - .col-lg-8 { - width: 66.66667%; - } - - .col-lg-9 { - width: 75%; - } - - .col-lg-10 { - width: 83.33333%; - } - - .col-lg-11 { - width: 91.66667%; - } - - .col-lg-12 { - width: 100%; - } - - .col-lg-pull-0 { - right: auto; - } - - .col-lg-pull-1 { - right: 8.33333%; - } - - .col-lg-pull-2 { - right: 16.66667%; - } - - .col-lg-pull-3 { - right: 25%; - } - - .col-lg-pull-4 { - right: 33.33333%; - } - - .col-lg-pull-5 { - right: 41.66667%; - } - - .col-lg-pull-6 { - right: 50%; - } - - .col-lg-pull-7 { - right: 58.33333%; - } - - .col-lg-pull-8 { - right: 66.66667%; - } - - .col-lg-pull-9 { - right: 75%; - } - - .col-lg-pull-10 { - right: 83.33333%; - } - - .col-lg-pull-11 { - right: 91.66667%; - } - - .col-lg-pull-12 { - right: 100%; - } - - .col-lg-push-0 { - left: auto; - } - - .col-lg-push-1 { - left: 8.33333%; - } - - .col-lg-push-2 { - left: 16.66667%; - } - - .col-lg-push-3 { - left: 25%; - } - - .col-lg-push-4 { - left: 33.33333%; - } - - .col-lg-push-5 { - left: 41.66667%; - } - - .col-lg-push-6 { - left: 50%; - } - - .col-lg-push-7 { - left: 58.33333%; - } - - .col-lg-push-8 { - left: 66.66667%; - } - - .col-lg-push-9 { - left: 75%; - } - - .col-lg-push-10 { - left: 83.33333%; - } - - .col-lg-push-11 { - left: 91.66667%; - } - - .col-lg-push-12 { - left: 100%; - } - - .col-lg-offset-0 { - margin-left: 0%; - } - - .col-lg-offset-1 { - margin-left: 8.33333%; - } - - .col-lg-offset-2 { - margin-left: 16.66667%; - } - - .col-lg-offset-3 { - margin-left: 25%; - } - - .col-lg-offset-4 { - margin-left: 33.33333%; - } - - .col-lg-offset-5 { - margin-left: 41.66667%; - } - - .col-lg-offset-6 { - margin-left: 50%; - } - - .col-lg-offset-7 { - margin-left: 58.33333%; - } - - .col-lg-offset-8 { - margin-left: 66.66667%; - } - - .col-lg-offset-9 { - margin-left: 75%; - } - - .col-lg-offset-10 { - margin-left: 83.33333%; - } - - .col-lg-offset-11 { - margin-left: 91.66667%; - } - - .col-lg-offset-12 { - margin-left: 100%; - } -} -table { - background-color: transparent; -} - -caption { - padding-top: 8px; - padding-bottom: 8px; - color: #bbb; - text-align: left; -} - -th { - text-align: left; -} - -.table { - width: 100%; - max-width: 100%; - margin-bottom: 36px; -} -.table > thead > tr > th, -.table > thead > tr > td, -.table > tbody > tr > th, -.table > tbody > tr > td, -.table > tfoot > tr > th, -.table > tfoot > tr > td { - padding: 8px; - line-height: 1.846; - 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 > caption + thead > tr:first-child > td, -.table > colgroup + thead > tr:first-child > th, -.table > colgroup + thead > tr:first-child > td, -.table > thead:first-child > tr:first-child > th, -.table > thead:first-child > tr:first-child > td { - border-top: 0; -} -.table > tbody + tbody { - border-top: 2px solid #ddd; -} -.table .table { - background-color: #fff; -} - -.table-condensed > thead > tr > th, -.table-condensed > thead > tr > td, -.table-condensed > tbody > tr > th, -.table-condensed > tbody > tr > td, -.table-condensed > tfoot > tr > th, -.table-condensed > tfoot > tr > td { - padding: 5px; -} - -.table-bordered { - border: 1px solid #ddd; -} -.table-bordered > thead > tr > th, -.table-bordered > thead > tr > td, -.table-bordered > tbody > tr > th, -.table-bordered > tbody > tr > td, -.table-bordered > tfoot > tr > th, -.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 > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, -.table > tbody > tr > td.active, -.table > tbody > tr > th.active, -.table > tbody > tr.active > td, -.table > tbody > tr.active > th, -.table > tfoot > tr > td.active, -.table > tfoot > tr > th.active, -.table > tfoot > tr.active > td, -.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 > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, -.table > tbody > tr > td.success, -.table > tbody > tr > th.success, -.table > tbody > tr.success > td, -.table > tbody > tr.success > th, -.table > tfoot > tr > td.success, -.table > tfoot > tr > th.success, -.table > tfoot > tr.success > td, -.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 > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, -.table > tbody > tr > td.info, -.table > tbody > tr > th.info, -.table > tbody > tr.info > td, -.table > tbody > tr.info > th, -.table > tfoot > tr > td.info, -.table > tfoot > tr > th.info, -.table > tfoot > tr.info > td, -.table > tfoot > tr.info > th { - background-color: #e1bee7; -} - -.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: #d8abe0; -} - -.table > thead > tr > td.warning, -.table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, -.table > tbody > tr > td.warning, -.table > tbody > tr > th.warning, -.table > tbody > tr.warning > td, -.table > tbody > tr.warning > th, -.table > tfoot > tr > td.warning, -.table > tfoot > tr > th.warning, -.table > tfoot > tr.warning > td, -.table > tfoot > tr.warning > th { - background-color: #ffe0b2; -} - -.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: #ffd699; -} - -.table > thead > tr > td.danger, -.table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, -.table > tbody > tr > td.danger, -.table > tbody > tr > th.danger, -.table > tbody > tr.danger > td, -.table > tbody > tr.danger > th, -.table > tfoot > tr > td.danger, -.table > tfoot > tr > th.danger, -.table > tfoot > tr.danger > td, -.table > tfoot > tr.danger > th { - background-color: #f9bdbb; -} - -.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: #f7a6a4; -} - -.table-responsive { - overflow-x: auto; - min-height: 0.01%; -} -@media screen and (max-width: 767px) { - .table-responsive { - width: 100%; - margin-bottom: 27px; - 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 > thead > tr > td, - .table-responsive > .table > tbody > tr > th, - .table-responsive > .table > tbody > tr > td, - .table-responsive > .table > tfoot > tr > th, - .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 > thead > tr > td:first-child, - .table-responsive > .table-bordered > tbody > tr > th:first-child, - .table-responsive > .table-bordered > tbody > tr > td:first-child, - .table-responsive > .table-bordered > tfoot > tr > th: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 > thead > tr > td:last-child, - .table-responsive > .table-bordered > tbody > tr > th:last-child, - .table-responsive > .table-bordered > tbody > tr > td:last-child, - .table-responsive > .table-bordered > tfoot > tr > th: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 > tbody > tr:last-child > td, - .table-responsive > .table-bordered > tfoot > tr:last-child > th, - .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: 36px; - font-size: 30px; - line-height: inherit; - color: #212121; - 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: 20px; - line-height: 1.846; - color: #666; -} - -.form-control { - display: block; - width: 100%; - height: 50px; - padding: 6px 16px; - font-size: 20px; - line-height: 1.846; - color: #666; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 3px; - -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 0.15s, box-shadow ease-in-out 0.15s; - -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; - transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; -} -.form-control:focus { - border-color: #66afe9; - outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); -} -.form-control::-moz-placeholder { - color: #bbb; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #bbb; -} -.form-control::-webkit-input-placeholder { - color: #bbb; -} -.form-control::-ms-expand { - border: 0; - background-color: transparent; -} -.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { - background-color: transparent; - 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: 50px; - } - input[type="date"].input-sm, .input-group-sm > input[type="date"].form-control, - .input-group-sm > input[type="date"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="date"].btn, .input-group-sm input[type="date"], - input[type="time"].input-sm, - .input-group-sm > input[type="time"].form-control, - .input-group-sm > input[type="time"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="time"].btn, .input-group-sm - input[type="time"], - input[type="datetime-local"].input-sm, - .input-group-sm > input[type="datetime-local"].form-control, - .input-group-sm > input[type="datetime-local"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="datetime-local"].btn, .input-group-sm - input[type="datetime-local"], - input[type="month"].input-sm, - .input-group-sm > input[type="month"].form-control, - .input-group-sm > input[type="month"].input-group-addon, - .input-group-sm > .input-group-btn > input[type="month"].btn, .input-group-sm - input[type="month"] { - line-height: 37px; - } - input[type="date"].input-lg, .input-group-lg > input[type="date"].form-control, - .input-group-lg > input[type="date"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="date"].btn, .input-group-lg input[type="date"], - input[type="time"].input-lg, - .input-group-lg > input[type="time"].form-control, - .input-group-lg > input[type="time"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="time"].btn, .input-group-lg - input[type="time"], - input[type="datetime-local"].input-lg, - .input-group-lg > input[type="datetime-local"].form-control, - .input-group-lg > input[type="datetime-local"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="datetime-local"].btn, .input-group-lg - input[type="datetime-local"], - input[type="month"].input-lg, - .input-group-lg > input[type="month"].form-control, - .input-group-lg > input[type="month"].input-group-addon, - .input-group-lg > .input-group-btn > input[type="month"].btn, .input-group-lg - input[type="month"] { - line-height: 56px; - } -} -.form-group { - margin-bottom: 15px; -} - -.radio, -.checkbox { - position: relative; - display: block; - margin-top: 10px; - margin-bottom: 10px; -} -.radio label, -.checkbox label { - min-height: 36px; - 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="radio"].disabled, fieldset[disabled] input[type="radio"], -input[type="checkbox"][disabled], -input[type="checkbox"].disabled, fieldset[disabled] -input[type="checkbox"] { - cursor: not-allowed; -} - -.radio-inline.disabled, fieldset[disabled] .radio-inline, -.checkbox-inline.disabled, fieldset[disabled] -.checkbox-inline { - cursor: not-allowed; -} - -.radio.disabled label, fieldset[disabled] .radio label, -.checkbox.disabled label, fieldset[disabled] -.checkbox label { - cursor: not-allowed; -} - -.form-control-static { - padding-top: 7px; - padding-bottom: 7px; - margin-bottom: 0; - min-height: 56px; -} -.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, -.input-group-lg > .form-control-static.input-group-addon, -.input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, -.input-group-sm > .form-control-static.input-group-addon, -.input-group-sm > .input-group-btn > .form-control-static.btn { - padding-left: 0; - padding-right: 0; -} - -.input-sm, .input-group-sm > .form-control, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .btn { - height: 37px; - padding: 5px 10px; - font-size: 17px; - line-height: 1.5; - border-radius: 3px; -} - -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn { - height: 37px; - line-height: 37px; -} - -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -select[multiple].input-sm, -.input-group-sm > select[multiple].form-control, -.input-group-sm > select[multiple].input-group-addon, -.input-group-sm > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-sm .form-control { - height: 37px; - padding: 5px 10px; - font-size: 17px; - line-height: 1.5; - border-radius: 3px; -} -.form-group-sm select.form-control { - height: 37px; - line-height: 37px; -} -.form-group-sm textarea.form-control, -.form-group-sm select[multiple].form-control { - height: auto; -} -.form-group-sm .form-control-static { - height: 37px; - min-height: 53px; - padding: 6px 10px; - font-size: 17px; - line-height: 1.5; -} - -.input-lg, .input-group-lg > .form-control, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .btn { - height: 56px; - padding: 10px 16px; - font-size: 25px; - line-height: 1.33333; - border-radius: 3px; -} - -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn { - height: 56px; - line-height: 56px; -} - -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -select[multiple].input-lg, -.input-group-lg > select[multiple].form-control, -.input-group-lg > select[multiple].input-group-addon, -.input-group-lg > .input-group-btn > select[multiple].btn { - height: auto; -} - -.form-group-lg .form-control { - height: 56px; - padding: 10px 16px; - font-size: 25px; - line-height: 1.33333; - border-radius: 3px; -} -.form-group-lg select.form-control { - height: 56px; - line-height: 56px; -} -.form-group-lg textarea.form-control, -.form-group-lg select[multiple].form-control { - height: auto; -} -.form-group-lg .form-control-static { - height: 56px; - min-height: 61px; - padding: 11px 16px; - font-size: 25px; - line-height: 1.33333; -} - -.has-feedback { - position: relative; -} -.has-feedback .form-control { - padding-right: 62.5px; -} - -.form-control-feedback { - position: absolute; - top: 0; - right: 0; - z-index: 2; - display: block; - width: 50px; - height: 50px; - line-height: 50px; - text-align: center; - pointer-events: none; -} - -.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, -.input-group-lg > .input-group-addon + .form-control-feedback, -.input-group-lg > .input-group-btn > .btn + .form-control-feedback, -.input-group-lg + .form-control-feedback, -.form-group-lg .form-control + .form-control-feedback { - width: 56px; - height: 56px; - line-height: 56px; -} - -.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, -.input-group-sm > .input-group-addon + .form-control-feedback, -.input-group-sm > .input-group-btn > .btn + .form-control-feedback, -.input-group-sm + .form-control-feedback, -.form-group-sm .form-control + .form-control-feedback { - width: 37px; - height: 37px; - line-height: 37px; -} - -.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: #4CAF50; -} -.has-success .form-control { - border-color: #4CAF50; - -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: #3d8b40; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #92cf94; -} -.has-success .input-group-addon { - color: #4CAF50; - border-color: #4CAF50; - background-color: #dff0d8; -} -.has-success .form-control-feedback { - color: #4CAF50; -} - -.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: #ff9800; -} -.has-warning .form-control { - border-color: #ff9800; - -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: #cc7a00; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ffc166; -} -.has-warning .input-group-addon { - color: #ff9800; - border-color: #ff9800; - background-color: #ffe0b2; -} -.has-warning .form-control-feedback { - color: #ff9800; -} - -.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: #e51c23; -} -.has-error .form-control { - border-color: #e51c23; - -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: #b9151b; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ef787c; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ef787c; -} -.has-error .input-group-addon { - color: #e51c23; - border-color: #e51c23; - background-color: #f9bdbb; -} -.has-error .form-control-feedback { - color: #e51c23; -} - -.has-feedback label ~ .form-control-feedback { - top: 41px; -} -.has-feedback label.sr-only ~ .form-control-feedback { - top: 0; -} - -.help-block { - display: block; - margin-top: 5px; - margin-bottom: 10px; - color: #a6a6a6; -} - -@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: 43px; -} -.form-horizontal .form-group { - margin-left: -15px; - margin-right: -15px; -} -.form-horizontal .form-group:before, .form-horizontal .form-group:after { - content: " "; - display: table; -} -.form-horizontal .form-group:after { - clear: both; -} -@media (min-width: 768px) { - .form-horizontal .control-label { - text-align: right; - margin-bottom: 0; - padding-top: 7px; - } -} -.form-horizontal .has-feedback .form-control-feedback { - right: 15px; -} -@media (min-width: 768px) { - .form-horizontal .form-group-lg .control-label { - padding-top: 11px; - font-size: 25px; - } -} -@media (min-width: 768px) { - .form-horizontal .form-group-sm .control-label { - padding-top: 6px; - font-size: 17px; - } -} - -.btn { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - touch-action: manipulation; - cursor: pointer; - background-image: none; - border: 1px solid transparent; - white-space: nowrap; - padding: 6px 16px; - font-size: 20px; - line-height: 1.846; - border-radius: 3px; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} -.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus { - outline: 5px auto -webkit-focus-ring-color; - outline-offset: -2px; -} -.btn:hover, .btn:focus, .btn.focus { - color: #444; - 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: #444; - background-color: #fff; - border-color: transparent; -} -.btn-default:focus, .btn-default.focus { - color: #444; - background-color: #e6e6e6; - border-color: transparent; -} -.btn-default:hover { - color: #444; - background-color: #e6e6e6; - border-color: transparent; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - color: #444; - background-color: #e6e6e6; - border-color: transparent; -} -.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus { - color: #444; - background-color: #d4d4d4; - border-color: transparent; -} -.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle { - background-image: none; -} -.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus { - background-color: #fff; - border-color: transparent; -} -.btn-default .badge { - color: #fff; - background-color: #444; -} - -.btn-primary { - color: #fff; - background-color: #2643A9; - border-color: transparent; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #1d327f; - border-color: transparent; -} -.btn-primary:hover { - color: #fff; - background-color: #1d327f; - border-color: transparent; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #1d327f; - border-color: transparent; -} -.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus { - color: #fff; - background-color: #162762; - border-color: transparent; -} -.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle { - background-image: none; -} -.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus { - background-color: #2643A9; - border-color: transparent; -} -.btn-primary .badge { - color: #2643A9; - background-color: #fff; -} - -.btn-success { - color: #fff; - background-color: #4CAF50; - border-color: transparent; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #3d8b40; - border-color: transparent; -} -.btn-success:hover { - color: #fff; - background-color: #3d8b40; - border-color: transparent; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - color: #fff; - background-color: #3d8b40; - border-color: transparent; -} -.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus { - color: #fff; - background-color: #327334; - border-color: transparent; -} -.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle { - background-image: none; -} -.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus { - background-color: #4CAF50; - border-color: transparent; -} -.btn-success .badge { - color: #4CAF50; - background-color: #fff; -} - -.btn-info { - color: #fff; - background-color: #9C27B0; - border-color: transparent; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #771e86; - border-color: transparent; -} -.btn-info:hover { - color: #fff; - background-color: #771e86; - border-color: transparent; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - color: #fff; - background-color: #771e86; - border-color: transparent; -} -.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus { - color: #fff; - background-color: #5d1769; - border-color: transparent; -} -.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle { - background-image: none; -} -.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus { - background-color: #9C27B0; - border-color: transparent; -} -.btn-info .badge { - color: #9C27B0; - background-color: #fff; -} - -.btn-warning { - color: #fff; - background-color: #ff9800; - border-color: transparent; -} -.btn-warning:focus, .btn-warning.focus { - color: #fff; - background-color: #cc7a00; - border-color: transparent; -} -.btn-warning:hover { - color: #fff; - background-color: #cc7a00; - border-color: transparent; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - color: #fff; - background-color: #cc7a00; - border-color: transparent; -} -.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus { - color: #fff; - background-color: #a86400; - border-color: transparent; -} -.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle { - background-image: none; -} -.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus { - background-color: #ff9800; - border-color: transparent; -} -.btn-warning .badge { - color: #ff9800; - background-color: #fff; -} - -.btn-danger { - color: #fff; - background-color: #e51c23; - border-color: transparent; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #b9151b; - border-color: transparent; -} -.btn-danger:hover { - color: #fff; - background-color: #b9151b; - border-color: transparent; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #b9151b; - border-color: transparent; -} -.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus { - color: #fff; - background-color: #991216; - border-color: transparent; -} -.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle { - background-image: none; -} -.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus { - background-color: #e51c23; - border-color: transparent; -} -.btn-danger .badge { - color: #e51c23; - background-color: #fff; -} - -.btn-link { - color: #2643A9; - 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: #182a6b; - text-decoration: underline; - background-color: transparent; -} -.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus { - color: #bbb; - text-decoration: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 10px 16px; - font-size: 25px; - line-height: 1.33333; - border-radius: 3px; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 5px 10px; - font-size: 17px; - line-height: 1.5; - border-radius: 3px; -} - -.btn-xs, .btn-group-xs > .btn { - padding: 1px 5px; - font-size: 17px; - line-height: 1.5; - border-radius: 3px; -} - -.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; - transition-property: height, visibility; - -webkit-transition-duration: 0.35s; - transition-duration: 0.35s; - -webkit-transition-timing-function: ease; - transition-timing-function: ease; -} - -.caret { - display: inline-block; - width: 0; - height: 0; - margin-left: 2px; - vertical-align: middle; - border-top: 4px dashed; - border-top: 4px solid \9; - border-right: 4px solid transparent; - border-left: 4px solid transparent; -} - -.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: 20px; - text-align: left; - background-color: #fff; - border: 1px solid #ccc; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 3px; - -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); - background-clip: padding-box; -} -.dropdown-menu.pull-right { - right: 0; - left: auto; -} -.dropdown-menu .divider { - height: 1px; - margin: 17px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.dropdown-menu > li > a { - display: block; - padding: 3px 20px; - clear: both; - font-weight: normal; - line-height: 1.846; - color: #666; - white-space: nowrap; -} - -.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - text-decoration: none; - color: #141414; - background-color: #eeeeee; -} - -.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { - color: #fff; - text-decoration: none; - outline: 0; - background-color: #2643A9; -} - -.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { - color: #bbb; -} -.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: 17px; - line-height: 1.846; - color: #bbb; - white-space: nowrap; -} - -.dropdown-backdrop { - position: fixed; - left: 0; - right: 0; - bottom: 0; - top: 0; - z-index: 990; -} - -.pull-right > .dropdown-menu { - right: 0; - left: auto; -} - -.dropup .caret, -.navbar-fixed-bottom .dropdown .caret { - border-top: 0; - border-bottom: 4px dashed; - border-bottom: 4px solid \9; - content: ""; -} -.dropup .dropdown-menu, -.navbar-fixed-bottom .dropdown .dropdown-menu { - top: auto; - bottom: 100%; - margin-bottom: 2px; -} - -@media (min-width: 768px) { - .navbar-right .dropdown-menu { - right: 0; - left: auto; - } - .navbar-right .dropdown-menu-left { - left: 0; - right: auto; - } -} -.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 > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:hover, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .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:before, .btn-toolbar:after { - content: " "; - display: table; -} -.btn-toolbar:after { - clear: both; -} -.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, .btn-group-lg.btn-group > .btn + .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, .btn-group-lg > .btn .caret { - border-width: 5px 5px 0; - border-bottom-width: 0; -} - -.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after { - content: " "; - display: table; -} -.btn-group-vertical > .btn-group:after { - clear: both; -} -.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: 3px; - border-top-left-radius: 3px; - 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: 3px; - border-bottom-left-radius: 3px; -} - -.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 input[type="checkbox"], -[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], -[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-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 16px; - font-size: 20px; - font-weight: normal; - line-height: 1; - color: #666; - text-align: center; - background-color: transparent; - border: 1px solid transparent; - border-radius: 3px; -} -.input-group-addon.input-sm, -.input-group-sm > .input-group-addon, -.input-group-sm > .input-group-btn > .input-group-addon.btn { - padding: 5px 10px; - font-size: 17px; - border-radius: 3px; -} -.input-group-addon.input-lg, -.input-group-lg > .input-group-addon, -.input-group-lg > .input-group-btn > .input-group-addon.btn { - padding: 10px 16px; - font-size: 25px; - border-radius: 3px; -} -.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:before, .nav:after { - content: " "; - display: table; -} -.nav:after { - clear: both; -} -.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: #eeeeee; -} -.nav > li.disabled > a { - color: #bbb; -} -.nav > li.disabled > a:hover, .nav > li.disabled > a:focus { - color: #bbb; - text-decoration: none; - background-color: transparent; - cursor: not-allowed; -} -.nav .open > a, .nav .open > a:hover, .nav .open > a:focus { - background-color: #eeeeee; - border-color: #2643A9; -} -.nav .nav-divider { - height: 1px; - margin: 17px 0; - overflow: hidden; - background-color: #e5e5e5; -} -.nav > li > a > img { - max-width: none; -} - -.nav-tabs { - border-bottom: 1px solid transparent; -} -.nav-tabs > li { - float: left; - margin-bottom: -1px; -} -.nav-tabs > li > a { - margin-right: 2px; - line-height: 1.846; - border: 1px solid transparent; - border-radius: 3px 3px 0 0; -} -.nav-tabs > li > a:hover { - border-color: #eeeeee #eeeeee transparent; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { - color: #666; - background-color: transparent; - border: 1px solid transparent; - border-bottom-color: transparent; - cursor: default; -} - -.nav-pills > li { - float: left; -} -.nav-pills > li > a { - border-radius: 3px; -} -.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: #2643A9; -} - -.nav-stacked > li { - float: none; -} -.nav-stacked > li + li { - margin-top: 2px; - margin-left: 0; -} - -.nav-justified, .nav-tabs.nav-justified { - width: 100%; -} -.nav-justified > li, .nav-tabs.nav-justified > li { - float: none; -} -.nav-justified > li > a, .nav-tabs.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, .nav-tabs.nav-justified > li { - display: table-cell; - width: 1%; - } - .nav-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-bottom: 0; - } -} - -.nav-tabs-justified, .nav-tabs.nav-justified { - border-bottom: 0; -} -.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - margin-right: 0; - border-radius: 3px; -} -.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, -.nav-tabs-justified > .active > a:hover, -.nav-tabs.nav-justified > .active > a:hover, -.nav-tabs-justified > .active > a:focus, -.nav-tabs.nav-justified > .active > a:focus { - border: 1px solid transparent; -} -@media (min-width: 768px) { - .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a { - border-bottom: 1px solid transparent; - border-radius: 3px 3px 0 0; - } - .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, - .nav-tabs-justified > .active > a:hover, - .nav-tabs.nav-justified > .active > a:hover, - .nav-tabs-justified > .active > a:focus, - .nav-tabs.nav-justified > .active > a:focus { - border-bottom-color: #fff; - } -} - -.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: 64px; - margin-bottom: 36px; - border: 1px solid transparent; -} -.navbar:before, .navbar:after { - content: " "; - display: table; -} -.navbar:after { - clear: both; -} -@media (min-width: 768px) { - .navbar { - border-radius: 3px; - } -} - -.navbar-header:before, .navbar-header:after { - content: " "; - display: table; -} -.navbar-header:after { - clear: both; -} -@media (min-width: 768px) { - .navbar-header { - float: left; - } -} - -.navbar-collapse { - overflow-x: visible; - padding-right: 15px; - padding-left: 15px; - border-top: 1px solid transparent; - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); - -webkit-overflow-scrolling: touch; -} -.navbar-collapse:before, .navbar-collapse:after { - content: " "; - display: table; -} -.navbar-collapse:after { - clear: both; -} -.navbar-collapse.in { - overflow-y: auto; -} -@media (min-width: 768px) { - .navbar-collapse { - width: auto; - border-top: 0; - 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 > .navbar-collapse, -.container-fluid > .navbar-header, -.container-fluid > .navbar-collapse { - margin-right: -15px; - margin-left: -15px; -} -@media (min-width: 768px) { - .container > .navbar-header, - .container > .navbar-collapse, - .container-fluid > .navbar-header, - .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: 14px 15px; - font-size: 25px; - line-height: 36px; - height: 64px; -} -.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: 15px; - margin-bottom: 15px; - background-color: transparent; - background-image: none; - border: 1px solid transparent; - border-radius: 3px; -} -.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: 7px -15px; -} -.navbar-nav > li > a { - padding-top: 10px; - padding-bottom: 10px; - line-height: 36px; -} -@media (max-width: 767px) { - .navbar-nav .open .dropdown-menu { - position: static; - float: none; - width: auto; - margin-top: 0; - background-color: transparent; - border: 0; - 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: 36px; - } - .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: 14px; - padding-bottom: 14px; - } -} - -.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: 7px; - margin-bottom: 7px; -} -@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: 3px; - border-top-left-radius: 3px; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} - -.navbar-btn { - margin-top: 7px; - margin-bottom: 7px; -} -.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn { - margin-top: 13.5px; - margin-bottom: 13.5px; -} -.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn { - margin-top: 21px; - margin-bottom: 21px; -} - -.navbar-text { - margin-top: 14px; - margin-bottom: 14px; -} -@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: #fff; - border-color: transparent; -} -.navbar-default .navbar-brand { - color: #666; -} -.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { - color: #212121; - background-color: transparent; -} -.navbar-default .navbar-text { - color: #bbb; -} -.navbar-default .navbar-nav > li > a { - color: #666; -} -.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { - color: #212121; - background-color: transparent; -} -.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { - color: #212121; - background-color: #eeeeee; -} -.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: transparent; -} -.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { - background-color: transparent; -} -.navbar-default .navbar-toggle .icon-bar { - background-color: rgba(0, 0, 0, 0.5); -} -.navbar-default .navbar-collapse, -.navbar-default .navbar-form { - border-color: transparent; -} -.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { - background-color: #eeeeee; - color: #212121; -} -@media (max-width: 767px) { - .navbar-default .navbar-nav .open .dropdown-menu > li > a { - color: #666; - } - .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { - color: #212121; - 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: #212121; - background-color: #eeeeee; - } - .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: #666; -} -.navbar-default .navbar-link:hover { - color: #212121; -} -.navbar-default .btn-link { - color: #666; -} -.navbar-default .btn-link:hover, .navbar-default .btn-link:focus { - color: #212121; -} -.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:hover, fieldset[disabled] .navbar-default .btn-link:focus { - color: #ccc; -} - -.navbar-inverse { - background-color: #2643A9; - border-color: transparent; -} -.navbar-inverse .navbar-brand { - color: #859ae3; -} -.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { - color: #fff; - background-color: transparent; -} -.navbar-inverse .navbar-text { - color: #bbb; -} -.navbar-inverse .navbar-nav > li > a { - color: #859ae3; -} -.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: #1d327f; -} -.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: transparent; -} -.navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { - background-color: transparent; -} -.navbar-inverse .navbar-toggle .icon-bar { - background-color: rgba(0, 0, 0, 0.5); -} -.navbar-inverse .navbar-collapse, -.navbar-inverse .navbar-form { - border-color: #1f378c; -} -.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { - background-color: #1d327f; - color: #fff; -} -@media (max-width: 767px) { - .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { - border-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu .divider { - background-color: transparent; - } - .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { - color: #859ae3; - } - .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: #1d327f; - } - .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: #859ae3; -} -.navbar-inverse .navbar-link:hover { - color: #fff; -} -.navbar-inverse .btn-link { - color: #859ae3; -} -.navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { - color: #fff; -} -.navbar-inverse .btn-link[disabled]:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:hover, fieldset[disabled] .navbar-inverse .btn-link:focus { - color: #444; -} - -.breadcrumb { - padding: 8px 15px; - margin-bottom: 36px; - list-style: none; - background-color: #f5f5f5; - border-radius: 3px; -} -.breadcrumb > li { - display: inline-block; -} -.breadcrumb > li + li:before { - content: "/ "; - padding: 0 5px; - color: #ccc; -} -.breadcrumb > .active { - color: #bbb; -} - -.pagination { - display: inline-block; - padding-left: 0; - margin: 36px 0; - border-radius: 3px; -} -.pagination > li { - display: inline; -} -.pagination > li > a, -.pagination > li > span { - position: relative; - float: left; - padding: 6px 16px; - line-height: 1.846; - text-decoration: none; - color: #2643A9; - 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: 3px; - border-top-left-radius: 3px; -} -.pagination > li:last-child > a, -.pagination > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} -.pagination > li > a:hover, .pagination > li > a:focus, -.pagination > li > span:hover, -.pagination > li > span:focus { - z-index: 2; - color: #182a6b; - background-color: #eeeeee; - border-color: #ddd; -} -.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, -.pagination > .active > span, -.pagination > .active > span:hover, -.pagination > .active > span:focus { - z-index: 3; - color: #fff; - background-color: #2643A9; - border-color: #2643A9; - 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: #bbb; - background-color: #fff; - border-color: #ddd; - cursor: not-allowed; -} - -.pagination-lg > li > a, -.pagination-lg > li > span { - padding: 10px 16px; - font-size: 25px; - line-height: 1.33333; -} -.pagination-lg > li:first-child > a, -.pagination-lg > li:first-child > span { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination-lg > li:last-child > a, -.pagination-lg > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} - -.pagination-sm > li > a, -.pagination-sm > li > span { - padding: 5px 10px; - font-size: 17px; - line-height: 1.5; -} -.pagination-sm > li:first-child > a, -.pagination-sm > li:first-child > span { - border-bottom-left-radius: 3px; - border-top-left-radius: 3px; -} -.pagination-sm > li:last-child > a, -.pagination-sm > li:last-child > span { - border-bottom-right-radius: 3px; - border-top-right-radius: 3px; -} - -.pager { - padding-left: 0; - margin: 36px 0; - list-style: none; - text-align: center; -} -.pager:before, .pager:after { - content: " "; - display: table; -} -.pager:after { - clear: both; -} -.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: #eeeeee; -} -.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: #bbb; - 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; -} -.label:empty { - display: none; -} -.btn .label { - position: relative; - top: -1px; -} - -a.label:hover, a.label:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.label-default { - background-color: #bbb; -} -.label-default[href]:hover, .label-default[href]:focus { - background-color: #a2a2a2; -} - -.label-primary { - background-color: #2643A9; -} -.label-primary[href]:hover, .label-primary[href]:focus { - background-color: #1d327f; -} - -.label-success { - background-color: #4CAF50; -} -.label-success[href]:hover, .label-success[href]:focus { - background-color: #3d8b40; -} - -.label-info { - background-color: #9C27B0; -} -.label-info[href]:hover, .label-info[href]:focus { - background-color: #771e86; -} - -.label-warning { - background-color: #ff9800; -} -.label-warning[href]:hover, .label-warning[href]:focus { - background-color: #cc7a00; -} - -.label-danger { - background-color: #e51c23; -} -.label-danger[href]:hover, .label-danger[href]:focus { - background-color: #b9151b; -} - -.badge { - display: inline-block; - min-width: 10px; - padding: 3px 7px; - font-size: 17px; - font-weight: normal; - color: #fff; - line-height: 1; - vertical-align: middle; - white-space: nowrap; - text-align: center; - background-color: #bbb; - border-radius: 10px; -} -.badge:empty { - display: none; -} -.btn .badge { - position: relative; - top: -1px; -} -.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge { - top: 0; - padding: 1px 5px; -} -.list-group-item.active > .badge, .nav-pills > .active > a > .badge { - color: #2643A9; - background-color: #fff; -} -.list-group-item > .badge { - float: right; -} -.list-group-item > .badge + .badge { - margin-right: 5px; -} -.nav-pills > li > a > .badge { - margin-left: 3px; -} - -a.badge:hover, a.badge:focus { - color: #fff; - text-decoration: none; - cursor: pointer; -} - -.jumbotron { - padding-top: 30px; - padding-bottom: 30px; - margin-bottom: 30px; - color: inherit; - background-color: #eeeeee; -} -.jumbotron h1, -.jumbotron .h1 { - color: #444; -} -.jumbotron p { - margin-bottom: 15px; - font-size: 30px; - font-weight: 200; -} -.jumbotron > hr { - border-top-color: #d5d5d5; -} -.container .jumbotron, .container-fluid .jumbotron { - border-radius: 3px; - 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: 90px; - } -} - -.thumbnail { - display: block; - padding: 4px; - margin-bottom: 36px; - line-height: 1.846; - background-color: #fff; - border: 1px solid #ddd; - border-radius: 3px; - -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 { - display: block; - max-width: 100%; - height: auto; - margin-left: auto; - margin-right: auto; -} -.thumbnail .caption { - padding: 9px; - color: #666; -} - -a.thumbnail:hover, -a.thumbnail:focus, -a.thumbnail.active { - border-color: #2643A9; -} - -.alert { - padding: 15px; - margin-bottom: 36px; - border: 1px solid transparent; - border-radius: 3px; -} -.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: #4CAF50; -} -.alert-success hr { - border-top-color: #c9e2b3; -} -.alert-success .alert-link { - color: #3d8b40; -} - -.alert-info { - background-color: #e1bee7; - border-color: #cba4dd; - color: #9C27B0; -} -.alert-info hr { - border-top-color: #c191d6; -} -.alert-info .alert-link { - color: #771e86; -} - -.alert-warning { - background-color: #ffe0b2; - border-color: #ffc599; - color: #ff9800; -} -.alert-warning hr { - border-top-color: #ffb67f; -} -.alert-warning .alert-link { - color: #cc7a00; -} - -.alert-danger { - background-color: #f9bdbb; - border-color: #f7a4af; - color: #e51c23; -} -.alert-danger hr { - border-top-color: #f58c9a; -} -.alert-danger .alert-link { - color: #b9151b; -} - -@-webkit-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: 36px; - margin-bottom: 36px; - background-color: #f5f5f5; - border-radius: 3px; - -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: 17px; - line-height: 36px; - color: #fff; - text-align: center; - background-color: #2643A9; - -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); - 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: #4CAF50; -} -.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: #9C27B0; -} -.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: #ff9800; -} -.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: #e51c23; -} -.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: 3px; - border-top-left-radius: 3px; -} -.list-group-item:last-child { - margin-bottom: 0; - border-bottom-right-radius: 3px; - border-bottom-left-radius: 3px; -} - -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, a.list-group-item:focus, -button.list-group-item:hover, -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: #eeeeee; - color: #bbb; - 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: #bbb; -} -.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { - z-index: 2; - color: #fff; - background-color: #2643A9; - border-color: #2643A9; -} -.list-group-item.active .list-group-item-heading, -.list-group-item.active .list-group-item-heading > small, -.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, -.list-group-item.active:hover .list-group-item-heading > small, -.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, -.list-group-item.active:focus .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: #aebced; -} - -.list-group-item-success { - color: #4CAF50; - background-color: #dff0d8; -} - -a.list-group-item-success, -button.list-group-item-success { - color: #4CAF50; -} -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, a.list-group-item-success:focus, -button.list-group-item-success:hover, -button.list-group-item-success:focus { - color: #4CAF50; - background-color: #d0e9c6; -} -a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, -button.list-group-item-success.active, -button.list-group-item-success.active:hover, -button.list-group-item-success.active:focus { - color: #fff; - background-color: #4CAF50; - border-color: #4CAF50; -} - -.list-group-item-info { - color: #9C27B0; - background-color: #e1bee7; -} - -a.list-group-item-info, -button.list-group-item-info { - color: #9C27B0; -} -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, a.list-group-item-info:focus, -button.list-group-item-info:hover, -button.list-group-item-info:focus { - color: #9C27B0; - background-color: #d8abe0; -} -a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, -button.list-group-item-info.active, -button.list-group-item-info.active:hover, -button.list-group-item-info.active:focus { - color: #fff; - background-color: #9C27B0; - border-color: #9C27B0; -} - -.list-group-item-warning { - color: #ff9800; - background-color: #ffe0b2; -} - -a.list-group-item-warning, -button.list-group-item-warning { - color: #ff9800; -} -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, a.list-group-item-warning:focus, -button.list-group-item-warning:hover, -button.list-group-item-warning:focus { - color: #ff9800; - background-color: #ffd699; -} -a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, -button.list-group-item-warning.active, -button.list-group-item-warning.active:hover, -button.list-group-item-warning.active:focus { - color: #fff; - background-color: #ff9800; - border-color: #ff9800; -} - -.list-group-item-danger { - color: #e51c23; - background-color: #f9bdbb; -} - -a.list-group-item-danger, -button.list-group-item-danger { - color: #e51c23; -} -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, a.list-group-item-danger:focus, -button.list-group-item-danger:hover, -button.list-group-item-danger:focus { - color: #e51c23; - background-color: #f7a6a4; -} -a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, -button.list-group-item-danger.active, -button.list-group-item-danger.active:hover, -button.list-group-item-danger.active:focus { - color: #fff; - background-color: #e51c23; - border-color: #e51c23; -} - -.list-group-item-heading { - margin-top: 0; - margin-bottom: 5px; -} - -.list-group-item-text { - margin-bottom: 0; - line-height: 1.3; -} - -.panel { - margin-bottom: 36px; - background-color: #fff; - border: 1px solid transparent; - border-radius: 3px; - -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-body:before, .panel-body:after { - content: " "; - display: table; -} -.panel-body:after { - clear: both; -} - -.panel-heading { - padding: 10px 15px; - border-bottom: 1px solid transparent; - border-top-right-radius: 2px; - border-top-left-radius: 2px; -} -.panel-heading > .dropdown .dropdown-toggle { - color: inherit; -} - -.panel-title { - margin-top: 0; - margin-bottom: 0; - font-size: 23px; - 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: 2px; - border-bottom-left-radius: 2px; -} - -.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: 2px; - border-top-left-radius: 2px; -} -.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: 2px; - border-bottom-left-radius: 2px; -} -.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: 2px; - border-top-left-radius: 2px; -} -.panel > .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 > thead:first-child > tr:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { - border-top-left-radius: 2px; - border-top-right-radius: 2px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { - border-top-left-radius: 2px; -} -.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, -.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { - border-top-right-radius: 2px; -} -.panel > .table:last-child, -.panel > .table-responsive:last-child > .table:last-child { - border-bottom-right-radius: 2px; - border-bottom-left-radius: 2px; -} -.panel > .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 > tbody:last-child > tr:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { - border-bottom-left-radius: 2px; -} -.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, -.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { - border-bottom-right-radius: 2px; -} -.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-bordered > thead > tr > td:first-child, -.panel > .table-bordered > tbody > tr > th:first-child, -.panel > .table-bordered > tbody > tr > td:first-child, -.panel > .table-bordered > tfoot > tr > th:first-child, -.panel > .table-bordered > tfoot > tr > td:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr > td:last-child, -.panel > .table-bordered > tbody > tr > th:last-child, -.panel > .table-bordered > tbody > tr > td:last-child, -.panel > .table-bordered > tfoot > tr > th:last-child, -.panel > .table-bordered > tfoot > tr > td:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, -.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, -.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, -.panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr:first-child > th, -.panel > .table-bordered > tbody > tr:first-child > td, -.panel > .table-bordered > tbody > tr:first-child > th, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, -.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { - border-bottom: 0; -} -.panel > .table-bordered > tbody > tr:last-child > td, -.panel > .table-bordered > tbody > tr:last-child > th, -.panel > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-bordered > tfoot > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, -.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { - border-bottom: 0; -} -.panel > .table-responsive { - border: 0; - margin-bottom: 0; -} - -.panel-group { - margin-bottom: 36px; -} -.panel-group .panel { - margin-bottom: 0; - border-radius: 3px; -} -.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: #212121; - 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: #212121; -} -.panel-default > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ddd; -} - -.panel-primary { - border-color: #2643A9; -} -.panel-primary > .panel-heading { - color: #fff; - background-color: #2643A9; - border-color: #2643A9; -} -.panel-primary > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #2643A9; -} -.panel-primary > .panel-heading .badge { - color: #2643A9; - background-color: #fff; -} -.panel-primary > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #2643A9; -} - -.panel-success { - border-color: #d6e9c6; -} -.panel-success > .panel-heading { - color: #fff; - background-color: #4CAF50; - border-color: #d6e9c6; -} -.panel-success > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #d6e9c6; -} -.panel-success > .panel-heading .badge { - color: #4CAF50; - background-color: #fff; -} -.panel-success > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #d6e9c6; -} - -.panel-info { - border-color: #cba4dd; -} -.panel-info > .panel-heading { - color: #fff; - background-color: #9C27B0; - border-color: #cba4dd; -} -.panel-info > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #cba4dd; -} -.panel-info > .panel-heading .badge { - color: #9C27B0; - background-color: #fff; -} -.panel-info > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #cba4dd; -} - -.panel-warning { - border-color: #ffc599; -} -.panel-warning > .panel-heading { - color: #fff; - background-color: #ff9800; - border-color: #ffc599; -} -.panel-warning > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #ffc599; -} -.panel-warning > .panel-heading .badge { - color: #ff9800; - background-color: #fff; -} -.panel-warning > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #ffc599; -} - -.panel-danger { - border-color: #f7a4af; -} -.panel-danger > .panel-heading { - color: #fff; - background-color: #e51c23; - border-color: #f7a4af; -} -.panel-danger > .panel-heading + .panel-collapse > .panel-body { - border-top-color: #f7a4af; -} -.panel-danger > .panel-heading .badge { - color: #e51c23; - background-color: #fff; -} -.panel-danger > .panel-footer + .panel-collapse > .panel-body { - border-bottom-color: #f7a4af; -} - -.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: #f9f9f9; - border: 1px solid transparent; - border-radius: 3px; - -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: 3px; -} - -.well-sm { - padding: 9px; - border-radius: 3px; -} - -.close { - float: right; - font-size: 30px; - font-weight: normal; - line-height: 1; - color: #000; - text-shadow: none; - opacity: 0.2; - filter: alpha(opacity=20); -} -.close:hover, .close:focus { - color: #000; - 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; - -moz-transition: -moz-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 transparent; - border-radius: 3px; - -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); - background-clip: padding-box; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1040; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; - filter: alpha(opacity=0); -} -.modal-backdrop.in { - opacity: 0.5; - filter: alpha(opacity=50); -} - -.modal-header { - padding: 15px; - border-bottom: 1px solid transparent; -} -.modal-header:before, .modal-header:after { - content: " "; - display: table; -} -.modal-header:after { - clear: both; -} - -.modal-header .close { - margin-top: -2px; -} - -.modal-title { - margin: 0; - line-height: 1.846; -} - -.modal-body { - position: relative; - padding: 15px; -} - -.modal-footer { - padding: 15px; - text-align: right; - border-top: 1px solid transparent; -} -.modal-footer:before, .modal-footer:after { - content: " "; - display: table; -} -.modal-footer:after { - clear: both; -} -.modal-footer .btn + .btn { - margin-left: 5px; - margin-bottom: 0; -} -.modal-footer .btn-group .btn + .btn { - margin-left: -1px; -} -.modal-footer .btn-block + .btn-block { - margin-left: 0; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 768px) { - .modal-dialog { - width: 600px; - margin: 30px auto; - } - - .modal-content { - -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 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: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.846; - 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: 17px; - 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: #fff; - text-align: center; - background-color: #727272; - border-radius: 3px; -} - -.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: #727272; -} -.tooltip.top-left .tooltip-arrow { - bottom: 0; - right: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #727272; -} -.tooltip.top-right .tooltip-arrow { - bottom: 0; - left: 5px; - margin-bottom: -5px; - border-width: 5px 5px 0; - border-top-color: #727272; -} -.tooltip.right .tooltip-arrow { - top: 50%; - left: 0; - margin-top: -5px; - border-width: 5px 5px 5px 0; - border-right-color: #727272; -} -.tooltip.left .tooltip-arrow { - top: 50%; - right: 0; - margin-top: -5px; - border-width: 5px 0 5px 5px; - border-left-color: #727272; -} -.tooltip.bottom .tooltip-arrow { - top: 0; - left: 50%; - margin-left: -5px; - border-width: 0 5px 5px; - border-bottom-color: #727272; -} -.tooltip.bottom-left .tooltip-arrow { - top: 0; - right: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #727272; -} -.tooltip.bottom-right .tooltip-arrow { - top: 0; - left: 5px; - margin-top: -5px; - border-width: 0 5px 5px; - border-bottom-color: #727272; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: none; - max-width: 276px; - padding: 1px; - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - font-style: normal; - font-weight: normal; - letter-spacing: normal; - line-break: auto; - line-height: 1.846; - 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: 20px; - background-color: #fff; - background-clip: padding-box; - border: 1px solid transparent; - border: 1px solid transparent; - border-radius: 3px; - -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: 20px; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-radius: 2px 2px 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: transparent; - border-top-color: fadein(transparent, 7.5%); - 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: transparent; - border-right-color: fadein(transparent, 7.5%); -} -.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: transparent; - border-bottom-color: fadein(transparent, 7.5%); - 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: transparent; - border-left-color: fadein(transparent, 7.5%); -} -.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: 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 { - display: block; - max-width: 100%; - height: auto; - line-height: 1; -} -@media all and (transform-3d), (-webkit-transform-3d) { - .carousel-inner > .item { - -webkit-transition: -webkit-transform 0.6s ease-in-out; - -moz-transition: -moz-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; - -moz-backface-visibility: hidden; - backface-visibility: hidden; - -webkit-perspective: 1000px; - -moz-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: #fff; - text-align: center; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - background-color: transparent; -} -.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: 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: 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: 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 #fff; - border-radius: 10px; - cursor: pointer; - background-color: #000 \9; - background-color: transparent; -} -.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 { - content: " "; - display: table; -} -.clearfix:after { - clear: both; -} - -.center-block { - display: block; - margin-left: auto; - margin-right: auto; -} - -.pull-right { - float: right !important; -} - -.pull-left { - float: left !important; -} - -.hide { - display: none !important; -} - -.show { - display: block !important; -} - -.invisible { - visibility: hidden; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.hidden { - display: none !important; -} - -.affix { - position: fixed; -} - -@-ms-viewport { - width: device-width; -} -.visible-xs { - display: none !important; -} - -.visible-sm { - display: none !important; -} - -.visible-md { - display: none !important; -} - -.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; - } -} -.navbar { - border: none; - -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); -} -.navbar-brand { - font-size: 24px; -} -.navbar-inverse .navbar-form input[type=text], -.navbar-inverse .navbar-form input[type=password] { - color: #fff; - -webkit-box-shadow: inset 0 -1px 0 #859ae3; - box-shadow: inset 0 -1px 0 #859ae3; -} -.navbar-inverse .navbar-form input[type=text]::-moz-placeholder, -.navbar-inverse .navbar-form input[type=password]::-moz-placeholder { - color: #859ae3; - opacity: 1; -} -.navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder, -.navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder { - color: #859ae3; -} -.navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder, -.navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder { - color: #859ae3; -} -.navbar-inverse .navbar-form input[type=text]:focus, -.navbar-inverse .navbar-form input[type=password]:focus { - -webkit-box-shadow: inset 0 -2px 0 #fff; - box-shadow: inset 0 -2px 0 #fff; -} - -.btn-default { - background-size: 200% 200%; - background-position: 50%; -} -.btn-default:focus { - background-color: #fff; -} -.btn-default:hover, .btn-default:active:hover { - background-color: #f0f0f0; -} -.btn-default:active { - background-color: #e0e0e0; - background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #fff 11%); - background-image: radial-gradient(circle, #e0e0e0 10%, #fff 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-primary { - background-size: 200% 200%; - background-position: 50%; -} -.btn-primary:focus { - background-color: #2643A9; -} -.btn-primary:hover, .btn-primary:active:hover { - background-color: #203990; -} -.btn-primary:active { - background-color: #1b2f77; - background-image: -webkit-radial-gradient(circle, #1b2f77 10%, #2643A9 11%); - background-image: radial-gradient(circle, #1b2f77 10%, #2643A9 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-success { - background-size: 200% 200%; - background-position: 50%; -} -.btn-success:focus { - background-color: #4CAF50; -} -.btn-success:hover, .btn-success:active:hover { - background-color: #439a46; -} -.btn-success:active { - background-color: #39843c; - background-image: -webkit-radial-gradient(circle, #39843c 10%, #4CAF50 11%); - background-image: radial-gradient(circle, #39843c 10%, #4CAF50 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-info { - background-size: 200% 200%; - background-position: 50%; -} -.btn-info:focus { - background-color: #9C27B0; -} -.btn-info:hover, .btn-info:active:hover { - background-color: #862197; -} -.btn-info:active { - background-color: #701c7e; - background-image: -webkit-radial-gradient(circle, #701c7e 10%, #9C27B0 11%); - background-image: radial-gradient(circle, #701c7e 10%, #9C27B0 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-warning { - background-size: 200% 200%; - background-position: 50%; -} -.btn-warning:focus { - background-color: #ff9800; -} -.btn-warning:hover, .btn-warning:active:hover { - background-color: #e08600; -} -.btn-warning:active { - background-color: #c27400; - background-image: -webkit-radial-gradient(circle, #c27400 10%, #ff9800 11%); - background-image: radial-gradient(circle, #c27400 10%, #ff9800 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-danger { - background-size: 200% 200%; - background-position: 50%; -} -.btn-danger:focus { - background-color: #e51c23; -} -.btn-danger:hover, .btn-danger:active:hover { - background-color: #cb171e; -} -.btn-danger:active { - background-color: #b0141a; - background-image: -webkit-radial-gradient(circle, #b0141a 10%, #e51c23 11%); - background-image: radial-gradient(circle, #b0141a 10%, #e51c23 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn-link { - background-size: 200% 200%; - background-position: 50%; -} -.btn-link:focus { - background-color: #fff; -} -.btn-link:hover, .btn-link:active:hover { - background-color: #f0f0f0; -} -.btn-link:active { - background-color: #e0e0e0; - background-image: -webkit-radial-gradient(circle, #e0e0e0 10%, #fff 11%); - background-image: radial-gradient(circle, #e0e0e0 10%, #fff 11%); - background-repeat: no-repeat; - background-size: 1000% 1000%; - -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); - box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); -} - -.btn { - text-transform: uppercase; - border: none; - -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); - box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); - -webkit-transition: all 0.4s; - -o-transition: all 0.4s; - transition: all 0.4s; -} -.btn-link { - border-radius: 3px; - -webkit-box-shadow: none; - box-shadow: none; - color: #444; -} -.btn-link:hover, .btn-link:focus { - -webkit-box-shadow: none; - box-shadow: none; - color: #444; - text-decoration: none; -} -.btn-default.disabled { - background-color: rgba(0, 0, 0, 0.1); - color: rgba(0, 0, 0, 0.4); - opacity: 1; -} - -.btn-group .btn + .btn, -.btn-group .btn + .btn-group, -.btn-group .btn-group + .btn, -.btn-group .btn-group + .btn-group { - margin-left: 0; -} -.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: 0; -} - -body { - -webkit-font-smoothing: antialiased; - letter-spacing: .1px; -} - -p { - margin: 0 0 1em; -} - -input, -button { - -webkit-font-smoothing: antialiased; - letter-spacing: .1px; -} - -a { - -webkit-transition: all 0.2s; - -o-transition: all 0.2s; - transition: all 0.2s; -} - -.table-hover > tbody > tr, -.table-hover > tbody > tr > th, -.table-hover > tbody > tr > td { - -webkit-transition: all 0.2s; - -o-transition: all 0.2s; - transition: all 0.2s; -} - -label { - font-weight: normal; -} - -textarea, -textarea.form-control, -input.form-control, -input[type=text], -input[type=password], -input[type=email], -input[type=number], -[type=text].form-control, -[type=password].form-control, -[type=email].form-control, -[type=tel].form-control, -[contenteditable].form-control { - padding: 0; - border: none; - border-radius: 0; - -webkit-appearance: none; - -webkit-box-shadow: inset 0 -1px 0 #ddd; - box-shadow: inset 0 -1px 0 #ddd; - font-size: 16px; -} -textarea:focus, -textarea.form-control:focus, -input.form-control:focus, -input[type=text]:focus, -input[type=password]:focus, -input[type=email]:focus, -input[type=number]:focus, -[type=text].form-control:focus, -[type=password].form-control:focus, -[type=email].form-control:focus, -[type=tel].form-control:focus, -[contenteditable].form-control:focus { - -webkit-box-shadow: inset 0 -2px 0 #2643A9; - box-shadow: inset 0 -2px 0 #2643A9; -} -textarea[disabled], textarea[readonly], -textarea.form-control[disabled], -textarea.form-control[readonly], -input.form-control[disabled], -input.form-control[readonly], -input[type=text][disabled], -input[type=text][readonly], -input[type=password][disabled], -input[type=password][readonly], -input[type=email][disabled], -input[type=email][readonly], -input[type=number][disabled], -input[type=number][readonly], -[type=text].form-control[disabled], -[type=text].form-control[readonly], -[type=password].form-control[disabled], -[type=password].form-control[readonly], -[type=email].form-control[disabled], -[type=email].form-control[readonly], -[type=tel].form-control[disabled], -[type=tel].form-control[readonly], -[contenteditable].form-control[disabled], -[contenteditable].form-control[readonly] { - -webkit-box-shadow: none; - box-shadow: none; - border-bottom: 1px dotted #ddd; -} -textarea.input-sm, .input-group-sm > textarea.form-control, -.input-group-sm > textarea.input-group-addon, -.input-group-sm > .input-group-btn > textarea.btn, -textarea.form-control.input-sm, -.input-group-sm > textarea.form-control, -.input-group-sm > .input-group-btn > textarea.form-control.btn, -input.form-control.input-sm, -.input-group-sm > input.form-control, -.input-group-sm > .input-group-btn > input.form-control.btn, -input[type=text].input-sm, -.input-group-sm > input[type=text].form-control, -.input-group-sm > input[type=text].input-group-addon, -.input-group-sm > .input-group-btn > input[type=text].btn, -input[type=password].input-sm, -.input-group-sm > input[type=password].form-control, -.input-group-sm > input[type=password].input-group-addon, -.input-group-sm > .input-group-btn > input[type=password].btn, -input[type=email].input-sm, -.input-group-sm > input[type=email].form-control, -.input-group-sm > input[type=email].input-group-addon, -.input-group-sm > .input-group-btn > input[type=email].btn, -input[type=number].input-sm, -.input-group-sm > input[type=number].form-control, -.input-group-sm > input[type=number].input-group-addon, -.input-group-sm > .input-group-btn > input[type=number].btn, -[type=text].form-control.input-sm, -.input-group-sm > [type=text].form-control, -.input-group-sm > .input-group-btn > [type=text].form-control.btn, -[type=password].form-control.input-sm, -.input-group-sm > [type=password].form-control, -.input-group-sm > .input-group-btn > [type=password].form-control.btn, -[type=email].form-control.input-sm, -.input-group-sm > [type=email].form-control, -.input-group-sm > .input-group-btn > [type=email].form-control.btn, -[type=tel].form-control.input-sm, -.input-group-sm > [type=tel].form-control, -.input-group-sm > .input-group-btn > [type=tel].form-control.btn, -[contenteditable].form-control.input-sm, -.input-group-sm > [contenteditable].form-control, -.input-group-sm > .input-group-btn > [contenteditable].form-control.btn { - font-size: 17px; -} -textarea.input-lg, .input-group-lg > textarea.form-control, -.input-group-lg > textarea.input-group-addon, -.input-group-lg > .input-group-btn > textarea.btn, -textarea.form-control.input-lg, -.input-group-lg > textarea.form-control, -.input-group-lg > .input-group-btn > textarea.form-control.btn, -input.form-control.input-lg, -.input-group-lg > input.form-control, -.input-group-lg > .input-group-btn > input.form-control.btn, -input[type=text].input-lg, -.input-group-lg > input[type=text].form-control, -.input-group-lg > input[type=text].input-group-addon, -.input-group-lg > .input-group-btn > input[type=text].btn, -input[type=password].input-lg, -.input-group-lg > input[type=password].form-control, -.input-group-lg > input[type=password].input-group-addon, -.input-group-lg > .input-group-btn > input[type=password].btn, -input[type=email].input-lg, -.input-group-lg > input[type=email].form-control, -.input-group-lg > input[type=email].input-group-addon, -.input-group-lg > .input-group-btn > input[type=email].btn, -input[type=number].input-lg, -.input-group-lg > input[type=number].form-control, -.input-group-lg > input[type=number].input-group-addon, -.input-group-lg > .input-group-btn > input[type=number].btn, -[type=text].form-control.input-lg, -.input-group-lg > [type=text].form-control, -.input-group-lg > .input-group-btn > [type=text].form-control.btn, -[type=password].form-control.input-lg, -.input-group-lg > [type=password].form-control, -.input-group-lg > .input-group-btn > [type=password].form-control.btn, -[type=email].form-control.input-lg, -.input-group-lg > [type=email].form-control, -.input-group-lg > .input-group-btn > [type=email].form-control.btn, -[type=tel].form-control.input-lg, -.input-group-lg > [type=tel].form-control, -.input-group-lg > .input-group-btn > [type=tel].form-control.btn, -[contenteditable].form-control.input-lg, -.input-group-lg > [contenteditable].form-control, -.input-group-lg > .input-group-btn > [contenteditable].form-control.btn { - font-size: 25px; -} - -select, -select.form-control { - border: 0; - border-radius: 0; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; - padding-left: 0; - padding-right: 0\9; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); - background-size: 13px; - background-repeat: no-repeat; - background-position: right center; - -webkit-box-shadow: inset 0 -1px 0 #ddd; - box-shadow: inset 0 -1px 0 #ddd; - font-size: 16px; - line-height: 1.5; -} -select::-ms-expand, -select.form-control::-ms-expand { - display: none; -} -select.input-sm, .input-group-sm > select.form-control, -.input-group-sm > select.input-group-addon, -.input-group-sm > .input-group-btn > select.btn, -select.form-control.input-sm, -.input-group-sm > select.form-control, -.input-group-sm > .input-group-btn > select.form-control.btn { - font-size: 17px; -} -select.input-lg, .input-group-lg > select.form-control, -.input-group-lg > select.input-group-addon, -.input-group-lg > .input-group-btn > select.btn, -select.form-control.input-lg, -.input-group-lg > select.form-control, -.input-group-lg > .input-group-btn > select.form-control.btn { - font-size: 25px; -} -select:focus, -select.form-control:focus { - -webkit-box-shadow: inset 0 -2px 0 #2643A9; - box-shadow: inset 0 -2px 0 #2643A9; - background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEUhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISF8S9ewAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=); -} -select[multiple], -select.form-control[multiple] { - background: none; -} - -.radio label, -.radio-inline label, -.checkbox label, -.checkbox-inline label { - padding-left: 25px; -} -.radio input[type="radio"], -.radio input[type="checkbox"], -.radio-inline input[type="radio"], -.radio-inline input[type="checkbox"], -.checkbox input[type="radio"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="radio"], -.checkbox-inline input[type="checkbox"] { - margin-left: -25px; -} - -input[type="radio"], -.radio input[type="radio"], -.radio-inline input[type="radio"] { - position: relative; - margin-top: 6px; - margin-right: 4px; - vertical-align: top; - border: none; - background-color: transparent; - -webkit-appearance: none; - appearance: none; - cursor: pointer; -} -input[type="radio"]:focus, -.radio input[type="radio"]:focus, -.radio-inline input[type="radio"]:focus { - outline: none; -} -input[type="radio"]:before, input[type="radio"]:after, -.radio input[type="radio"]:before, -.radio input[type="radio"]:after, -.radio-inline input[type="radio"]:before, -.radio-inline input[type="radio"]:after { - content: ""; - display: block; - width: 18px; - height: 18px; - border-radius: 50%; - -webkit-transition: 240ms; - -o-transition: 240ms; - transition: 240ms; -} -input[type="radio"]:before, -.radio input[type="radio"]:before, -.radio-inline input[type="radio"]:before { - position: absolute; - left: 0; - top: -3px; - background-color: #2643A9; - -webkit-transform: scale(0); - -ms-transform: scale(0); - -o-transform: scale(0); - transform: scale(0); -} -input[type="radio"]:after, -.radio input[type="radio"]:after, -.radio-inline input[type="radio"]:after { - position: relative; - top: -3px; - border: 2px solid #666; -} -input[type="radio"]:checked:before, -.radio input[type="radio"]:checked:before, -.radio-inline input[type="radio"]:checked:before { - -webkit-transform: scale(0.5); - -ms-transform: scale(0.5); - -o-transform: scale(0.5); - transform: scale(0.5); -} -input[type="radio"]:disabled:checked:before, -.radio input[type="radio"]:disabled:checked:before, -.radio-inline input[type="radio"]:disabled:checked:before { - background-color: #bbb; -} -input[type="radio"]:checked:after, -.radio input[type="radio"]:checked:after, -.radio-inline input[type="radio"]:checked:after { - border-color: #2643A9; -} -input[type="radio"]:disabled:after, input[type="radio"]:disabled:checked:after, -.radio input[type="radio"]:disabled:after, -.radio input[type="radio"]:disabled:checked:after, -.radio-inline input[type="radio"]:disabled:after, -.radio-inline input[type="radio"]:disabled:checked:after { - border-color: #bbb; -} - -input[type="checkbox"], -.checkbox input[type="checkbox"], -.checkbox-inline input[type="checkbox"] { - position: relative; - border: none; - margin-bottom: -4px; - -webkit-appearance: none; - appearance: none; - cursor: pointer; -} -input[type="checkbox"]:focus, -.checkbox input[type="checkbox"]:focus, -.checkbox-inline input[type="checkbox"]:focus { - outline: none; -} -input[type="checkbox"]:focus:after, -.checkbox input[type="checkbox"]:focus:after, -.checkbox-inline input[type="checkbox"]:focus:after { - border-color: #2643A9; -} -input[type="checkbox"]:after, -.checkbox input[type="checkbox"]:after, -.checkbox-inline input[type="checkbox"]:after { - content: ""; - display: block; - width: 18px; - height: 18px; - margin-top: -2px; - margin-right: 5px; - border: 2px solid #666; - border-radius: 2px; - -webkit-transition: 240ms; - -o-transition: 240ms; - transition: 240ms; -} -input[type="checkbox"]:checked:before, -.checkbox input[type="checkbox"]:checked:before, -.checkbox-inline input[type="checkbox"]:checked:before { - content: ""; - position: absolute; - top: 0; - left: 6px; - display: table; - width: 6px; - height: 12px; - border: 2px solid #fff; - border-top-width: 0; - border-left-width: 0; - -webkit-transform: rotate(45deg); - -ms-transform: rotate(45deg); - -o-transform: rotate(45deg); - transform: rotate(45deg); -} -input[type="checkbox"]:checked:after, -.checkbox input[type="checkbox"]:checked:after, -.checkbox-inline input[type="checkbox"]:checked:after { - background-color: #2643A9; - border-color: #2643A9; -} -input[type="checkbox"]:disabled:after, -.checkbox input[type="checkbox"]:disabled:after, -.checkbox-inline input[type="checkbox"]:disabled:after { - border-color: #bbb; -} -input[type="checkbox"]:disabled:checked:after, -.checkbox input[type="checkbox"]:disabled:checked:after, -.checkbox-inline input[type="checkbox"]:disabled:checked:after { - background-color: #bbb; - border-color: transparent; -} - -.has-warning input:not([type=checkbox]), -.has-warning .form-control, -.has-warning input.form-control[readonly], -.has-warning input[type=text][readonly], -.has-warning [type=text].form-control[readonly], -.has-warning input:not([type=checkbox]):focus, -.has-warning .form-control:focus { - border-bottom: none; - -webkit-box-shadow: inset 0 -2px 0 #ff9800; - box-shadow: inset 0 -2px 0 #ff9800; -} - -.has-error input:not([type=checkbox]), -.has-error .form-control, -.has-error input.form-control[readonly], -.has-error input[type=text][readonly], -.has-error [type=text].form-control[readonly], -.has-error input:not([type=checkbox]):focus, -.has-error .form-control:focus { - border-bottom: none; - -webkit-box-shadow: inset 0 -2px 0 #e51c23; - box-shadow: inset 0 -2px 0 #e51c23; -} - -.has-success input:not([type=checkbox]), -.has-success .form-control, -.has-success input.form-control[readonly], -.has-success input[type=text][readonly], -.has-success [type=text].form-control[readonly], -.has-success input:not([type=checkbox]):focus, -.has-success .form-control:focus { - border-bottom: none; - -webkit-box-shadow: inset 0 -2px 0 #4CAF50; - box-shadow: inset 0 -2px 0 #4CAF50; -} - -.has-warning .input-group-addon, .has-error .input-group-addon, .has-success .input-group-addon { - color: #666; - border-color: transparent; - background-color: transparent; -} - -.form-group-lg select, -.form-group-lg select.form-control { - line-height: 1.5; -} - -.nav-tabs > li > a, -.nav-tabs > li > a:focus { - margin-right: 0; - background-color: transparent; - border: none; - color: #666; - -webkit-box-shadow: inset 0 -1px 0 #ddd; - box-shadow: inset 0 -1px 0 #ddd; - -webkit-transition: all 0.2s; - -o-transition: all 0.2s; - transition: all 0.2s; -} -.nav-tabs > li > a:hover, -.nav-tabs > li > a:focus:hover { - background-color: transparent; - -webkit-box-shadow: inset 0 -2px 0 #2643A9; - box-shadow: inset 0 -2px 0 #2643A9; - color: #2643A9; -} -.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus { - border: none; - -webkit-box-shadow: inset 0 -2px 0 #2643A9; - box-shadow: inset 0 -2px 0 #2643A9; - color: #2643A9; -} -.nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus:hover { - border: none; - color: #2643A9; -} -.nav-tabs > li.disabled > a { - -webkit-box-shadow: inset 0 -1px 0 #ddd; - box-shadow: inset 0 -1px 0 #ddd; -} -.nav-tabs.nav-justified > li > a, .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { - border: none; -} -.nav-tabs .dropdown-menu { - margin-top: 0; -} - -.dropdown-menu { - margin-top: 0; - border: none; - -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -} - -.alert { - border: none; - color: #fff; -} -.alert-success { - background-color: #4CAF50; -} -.alert-info { - background-color: #9C27B0; -} -.alert-warning { - background-color: #ff9800; -} -.alert-danger { - background-color: #e51c23; -} -.alert a:not(.close):not(.btn), -.alert .alert-link { - color: #fff; - font-weight: bold; -} -.alert .close { - color: #fff; -} - -.badge { - padding: 4px 6px 4px; -} - -.progress { - position: relative; - z-index: 1; - height: 6px; - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; -} -.progress-bar { - -webkit-box-shadow: none; - box-shadow: none; -} -.progress-bar:last-child { - border-radius: 0 3px 3px 0; -} -.progress-bar:last-child:before { - display: block; - content: ""; - position: absolute; - width: 100%; - height: 100%; - left: 0; - right: 0; - z-index: -1; - background-color: #99abe8; -} -.progress-bar-success:last-child.progress-bar:before { - background-color: #c7e7c8; -} -.progress-bar-info:last-child.progress-bar:before { - background-color: #edc9f3; -} -.progress-bar-warning:last-child.progress-bar:before { - background-color: #ffe0b3; -} -.progress-bar-danger:last-child.progress-bar:before { - background-color: #f28e92; -} - -.close { - font-size: 34px; - font-weight: 300; - line-height: 24px; - opacity: 0.6; - -webkit-transition: all 0.2s; - -o-transition: all 0.2s; - transition: all 0.2s; -} -.close:hover { - opacity: 1; -} - -.list-group-item { - padding: 15px; -} -.list-group-item-text { - color: #bbb; -} - -.well { - border-radius: 0; - -webkit-box-shadow: none; - box-shadow: none; -} - -.panel { - border: none; - border-radius: 2px; - -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -} -.panel-heading { - border-bottom: none; -} -.panel-footer { - border-top: none; -} - -.popover { - border: none; - -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -} - -.carousel-caption h1, .carousel-caption h2, .carousel-caption h3, .carousel-caption h4, .carousel-caption h5, .carousel-caption h6 { - color: inherit; -} - -.navbar-pre { - background-color: #2643A9; - height: 40px; -} -.navbar-pre .nav { - text-align: right; -} -.navbar-pre .nav a { - color: white; - padding: 10px; - line-height: 40px; - vertical-align: middle; -} -.navbar-pre .nav .contact-nav { - margin-right: 1em; -} -.navbar-pre .nav .contact-nav a { - margin: 0 5px; - font-size: .7em; -} -.navbar-pre .nav .contact-nav a.link { - text-transform: uppercase; -} -.navbar-pre .nav .language-nav { - text-transform: uppercase; -} -.navbar-pre .nav .language-nav a { - margin: 0; -} -.navbar-pre .nav .language-nav a.active, .navbar-pre .nav .language-nav a:hover { - background-color: white; - color: #2643A9; -} -@media only screen and (max-width: 767px) { - .navbar-pre .nav .contact-nav a { - font-size: .9em; - padding: 10px 5px; - } -} - -.navbar-default.navbar-main { - top: 40px; -} -.navbar-default .navbar-header .navbar-brand { - text-transform: uppercase; - font-size: 1em; -} -.navbar-default .navbar-header .navbar-brand img { - display: inline; - width: auto; - height: 28px; - margin-top: -5px; - margin-right: .5em; -} - -#myCarousel { - background: #eeeeee; -} -#myCarousel .item { - background-color: #3155d1; - min-height: 300px; -} -#myCarousel .item img { - height: 300px; - background-size: cover; - background-position: center; - width: 100%; -} -#myCarousel .item h3 { - text-transform: uppercase; - font-weight: 300; -} -#myCarousel .item p { - line-height: 1.2; - width: 80%; - margin: 0 auto; -} -#myCarousel .item .btn { - margin-top: 20px; -} -#myCarousel .nav-thumbs { - list-style: none; - display: flex; - margin: 0; - padding: 0; - text-align: center; -} -#myCarousel .nav-thumbs li { - float: left; - width: 25%; -} -#myCarousel .nav-thumbs li.active { - background-color: #2643A9; -} -#myCarousel .nav-thumbs li.active a { - color: white; -} -#myCarousel .nav-thumbs li .glyphicon { - display: block; -} -#myCarousel .nav-thumbs .title { - text-transform: uppercase; - font-weight: 300; - text-decoration: none; - width: 100%; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -#myCarousel .nav-thumbs .title small { - font-weight: 500; - text-transform: none; - display: block; - font-size: .7em; - width: 100%; - text-overflow: ellipsis; - white-space: nowrap; - overflow: hidden; -} -#myCarousel .nav-thumbs.nav-justified > li > a { - border-radius: 0px; -} -@media only screen and (max-width: 767px) { - #myCarousel .nav-thumbs .title { - font-size: .7em; - } -} - -/* Page header */ -#banner, #carousel-banner { - padding-top: 0 !important; - padding-bottom: 0em; -} -#banner .carousel-inner, #carousel-banner .carousel-inner { - padding-bottom: 2.5em; -} -#banner .carousel-inner .item, #carousel-banner .carousel-inner .item { - height: 700px; - position: relative; - background-color: white; -} -#banner .carousel-inner .item img, #carousel-banner .carousel-inner .item img { - width: 100%; - height: 700px; - overflow: hidden; - display: block; - background-size: cover; - background-position: center; - opacity: 1; -} -#banner .carousel-inner .item .carousel-caption, #carousel-banner .carousel-inner .item .carousel-caption { - background-color: white; - padding: 2em; - bottom: -2em; - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); -} -#banner .carousel-inner .item .carousel-caption h3, #carousel-banner .carousel-inner .item .carousel-caption h3 { - margin-top: 0; -} -#banner .carousel-inner .item .carousel-caption p:last-child, #carousel-banner .carousel-inner .item .carousel-caption p:last-child { - margin-bottom: 0; -} -#banner .carousel-inner .slick-dots, #carousel-banner .carousel-inner .slick-dots { - bottom: 50px; -} -#banner .carousel-inner .slick-dots li, #carousel-banner .carousel-inner .slick-dots li { - margin: 0; -} -#banner .carousel-inner .slick-dots li button, #carousel-banner .carousel-inner .slick-dots li button { - box-shadow: none; -} -#banner h3, #banner p, #banner button, #carousel-banner h3, #carousel-banner p, #carousel-banner button { - color: #333; - text-shadow: none; - text-align: left; -} -#banner p, #carousel-banner p { - font-size: 90%; - -webkit-hyphens: manual; - -ms-hyphens: manual; - hyphens: manual; -} -#banner footer p, #carousel-banner footer p { - color: black; - text-align: left; - font-size: 110%; - margin-top: 2em; -} - -.arrow { - color: white; - text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3); - z-index: 1; - position: absolute; - display: block; - height: 30px; - width: 30px; - line-height: 0px; - font-size: 0px; - cursor: pointer; - background: transparent; - top: 50%; - -webkit-transform: translate(0, -50%); - -ms-transform: translate(0, -50%); - transform: translate(0, -50%); - padding: 0; - border: none; - outline: none; -} -.arrow.left { - left: 30px; -} -.arrow.right { - right: 30px; -} -.arrow:before { - font-size: 30px; -} - -.slick-list { - overflow: visible; -} - -.slick-prev::before, .slick-next::before { - color: inherit; -} - -@media only screen and (max-width: 1000px) { - .slick-dots { - display: none !important; - } -} -@media only screen and (max-width: 480px) { - .navbar-pre .navbar-nav, - #carousel-banner { - display: none !important; - } - - #banner { - margin-top: 100px; - } -} -footer#footer { - padding: 6em 0; - background-color: #2643A9; - color: white; -} -footer#footer a { - color: #bab3e9; -} - -.copyright { - background-color: #182a6b; - color: white; - text-align: center; - font-size: 70%; -} - -#news .panel-default { - font-size: 90%; - padding-top: 75%; - /* 1:1 Aspect Ratio */ - position: relative; - /* If you want text inside of it */ - overflow: hidden; - background: #3155d1; -} -#news .panel-default img { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} -#news .panel-default .panel-body { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - padding: 0; - transform: translateY(60%); - background-color: rgba(38, 67, 169, 0.8); - transition: transform .65s; -} -#news .panel-default .panel-body h3, #news .panel-default .panel-body p { - color: white; -} -#news .panel-default .panel-body h3 { - padding: 15px; - font-size: 1.2em; - margin: 0; - height: 40%; - display: table; -} -#news .panel-default .panel-body h3 span { - display: table-cell; - vertical-align: bottom; -} -#news .panel-default .panel-body p, #news .panel-default .panel-body a { - font-size: .8em; -} -#news .panel-default .panel-body p { - padding: 0 15px; - line-height: 1.2; - margin: 0; -} -#news .panel-default .panel-body a { - margin: 10px 0 0 15px; - text-align: center; -} -#news .panel-default:hover .panel-body { - transform: rotateY(0); -} -#news .panel-default a.fill { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - font-size: 0; -} - -#news-details { - background: white; - padding-top: 0; -} -#news-details .category { - margin-top: 2em; - display: inline-block; - text-transform: uppercase; - font-size: 80%; - letter-spacing: 2px; -} -#news-details .category span { - border-bottom: 1px solid #666; -} -#news-details .date { - color: #999999; - font-size: 90%; - text-transform: uppercase; - margin-bottom: .5em; -} -#news-details hr { - margin-left: 0; - width: 100px; -} -#news-details .author { - color: #999999; - font-size: 90%; - text-transform: uppercase; - font-style: italic; -} -#news-details .backlink { - margin-top: 3em; -} -#news-details .img-responsive { - width: 100%; -} -#news-details .links { - display: inline-block; - border-bottom: 1px solid #999; - padding: 1em; - margin: 0em; - list-style-type: none; -} -#news-details .links li:first-child { - display: none; -} - -#contact-page form label { - width: 15em; - border-bottom: 1px dashed #ccc; - line-height: 166%; - vertical-align: top; -} -#contact-page form label:only-child { - width: auto; - border: none; -} -#contact-page form > p label { - font-weight: bold; -} -#contact-page form ul { - list-style: none; -} -#contact-page form ul label { - width: auto; -} -#contact-page form .helptext { - margin-bottom: 1em; - display: block; - font-size: 90%; -} - -#search-form input { - float: left; - width: auto; - color: white; -} -#search-form button { - background: none; - border: none; - padding-top: 0.5em; -} - -body { - margin-top: 104px; -} - -section { - padding: 6em 0; -} -section:nth-child(odd) { - background-color: #eeeeee; -} -section h2 { - text-align: center; - margin-bottom: 1.5em; - text-transform: uppercase; -} - -/* Responsive image/video classes */ -.rich-text img { - max-width: 100%; - height: auto; -} - -.richtext-image.left { - float: left; -} - -.richtext-image.right { - float: right; -} - -.responsive-object { - position: relative; -} - -.responsive-object iframe, -.responsive-object object, -.responsive-object embed { - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; -} - -article footer .btn { - margin-bottom: 1em; -} diff --git a/publichealth/static/mockup/assets/css/main.min.css b/publichealth/static/mockup/assets/css/main.min.css deleted file mode 100644 index 730356c..0000000 --- a/publichealth/static/mockup/assets/css/main.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * 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 */@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");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{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #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;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("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot");src:url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"),url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2") format("woff2"),url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.woff") format("woff"),url("../libs/bootstrap-sass/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf") format("truetype"),url("../libs/bootstrap-sass/assets/fonts/bootstrap/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:transparent}body{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-size:20px;line-height:1.846;color:#666;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#2643A9;text-decoration:none}a:hover,a:focus{color:#182a6b;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:3px}.img-thumbnail{padding:4px;line-height:1.846;background-color:#fff;border:1px solid #ddd;border-radius:3px;-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:36px;margin-bottom:36px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:400;line-height:1.1;color:#444}h1 small,h1 .small,h2 small,h2 .small,h3 small,h3 .small,h4 small,h4 .small,h5 small,h5 .small,h6 small,h6 .small,.h1 small,.h1 .small,.h2 small,.h2 .small,.h3 small,.h3 .small,.h4 small,.h4 .small,.h5 small,.h5 .small,.h6 small,.h6 .small{font-weight:normal;line-height:1;color:#bbb}h1,.h1,h2,.h2,h3,.h3{margin-top:36px;margin-bottom:18px}h1 small,h1 .small,.h1 small,.h1 .small,h2 small,h2 .small,.h2 small,.h2 .small,h3 small,h3 .small,.h3 small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:18px;margin-bottom:18px}h4 small,h4 .small,.h4 small,.h4 .small,h5 small,h5 .small,.h5 small,.h5 .small,h6 small,h6 .small,.h6 small,.h6 .small{font-size:75%}h1,.h1{font-size:56px}h2,.h2{font-size:45px}h3,.h3{font-size:34px}h4,.h4{font-size:24px}h5,.h5{font-size:20px}h6,.h6{font-size:14px}p{margin:0 0 18px}.lead{margin-bottom:36px;font-size:23px;font-weight:300;line-height:1.4}@media (min-width: 768px){.lead{font-size:30px}}small,.small{font-size:85%}mark,.mark{background-color:#ffe0b2;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,.initialism{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#bbb}.text-primary{color:#2643A9}a.text-primary:hover,a.text-primary:focus{color:#1d327f}.text-success{color:#4CAF50}a.text-success:hover,a.text-success:focus{color:#3d8b40}.text-info{color:#9C27B0}a.text-info:hover,a.text-info:focus{color:#771e86}.text-warning{color:#ff9800}a.text-warning:hover,a.text-warning:focus{color:#cc7a00}.text-danger{color:#e51c23}a.text-danger:hover,a.text-danger:focus{color:#b9151b}.bg-primary{color:#fff}.bg-primary{background-color:#2643A9}a.bg-primary:hover,a.bg-primary:focus{background-color:#1d327f}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#e1bee7}a.bg-info:hover,a.bg-info:focus{background-color:#d099d9}.bg-warning{background-color:#ffe0b2}a.bg-warning:hover,a.bg-warning:focus{background-color:#ffcb7f}.bg-danger{background-color:#f9bdbb}a.bg-danger:hover,a.bg-danger:focus{background-color:#f5908c}.page-header{padding-bottom:17px;margin:72px 0 36px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:18px}ul ul,ul ol,ol ul,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:36px}dt,dd{line-height:1.846}dt{font-weight:bold}dd{margin-left:0}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #bbb}.initialism{font-size:90%}blockquote{padding:18px 36px;margin:0 0 36px;font-size:25px;border-left:5px solid #eee}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.846;color:#bbb}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 #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:36px;font-style:normal;line-height:1.846}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:3px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;box-shadow:none}pre{display:block;padding:17.5px;margin:0 0 18px;font-size:19px;line-height:1.846;word-break:break-all;word-wrap:break-word;color:#212121;background-color:#f5f5f5;border:1px solid #ccc;border-radius:3px}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}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.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-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:auto}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:auto}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:auto}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:auto}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:auto}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:auto}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:auto}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:auto}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#bbb;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:36px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.846;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>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.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>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.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>thead>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>tfoot>tr.success>td,.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>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#e1bee7}.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:#d8abe0}.table>thead>tr>td.warning,.table>thead>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th{background-color:#ffe0b2}.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:#ffd699}.table>thead>tr>td.danger,.table>thead>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th{background-color:#f9bdbb}.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:#f7a6a4}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width: 767px){.table-responsive{width:100%;margin-bottom:27px;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>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.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>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th: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>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th: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>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.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:36px;font-size:30px;line-height:inherit;color:#212121;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:20px;line-height:1.846;color:#666}.form-control{display:block;width:100%;height:50px;padding:6px 16px;font-size:20px;line-height:1.846;color:#666;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:3px;-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 0.15s,box-shadow ease-in-out 0.15s;-o-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control::-moz-placeholder{color:#bbb;opacity:1}.form-control:-ms-input-placeholder{color:#bbb}.form-control::-webkit-input-placeholder{color:#bbb}.form-control::-ms-expand{border:0;background-color:transparent}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:transparent;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:50px}input[type="date"].input-sm,.input-group-sm>input[type="date"].form-control,.input-group-sm>input[type="date"].input-group-addon,.input-group-sm>.input-group-btn>input[type="date"].btn,.input-group-sm input[type="date"],input[type="time"].input-sm,.input-group-sm>input[type="time"].form-control,.input-group-sm>input[type="time"].input-group-addon,.input-group-sm>.input-group-btn>input[type="time"].btn,.input-group-sm input[type="time"],input[type="datetime-local"].input-sm,.input-group-sm>input[type="datetime-local"].form-control,.input-group-sm>input[type="datetime-local"].input-group-addon,.input-group-sm>.input-group-btn>input[type="datetime-local"].btn,.input-group-sm input[type="datetime-local"],input[type="month"].input-sm,.input-group-sm>input[type="month"].form-control,.input-group-sm>input[type="month"].input-group-addon,.input-group-sm>.input-group-btn>input[type="month"].btn,.input-group-sm input[type="month"]{line-height:37px}input[type="date"].input-lg,.input-group-lg>input[type="date"].form-control,.input-group-lg>input[type="date"].input-group-addon,.input-group-lg>.input-group-btn>input[type="date"].btn,.input-group-lg input[type="date"],input[type="time"].input-lg,.input-group-lg>input[type="time"].form-control,.input-group-lg>input[type="time"].input-group-addon,.input-group-lg>.input-group-btn>input[type="time"].btn,.input-group-lg input[type="time"],input[type="datetime-local"].input-lg,.input-group-lg>input[type="datetime-local"].form-control,.input-group-lg>input[type="datetime-local"].input-group-addon,.input-group-lg>.input-group-btn>input[type="datetime-local"].btn,.input-group-lg input[type="datetime-local"],input[type="month"].input-lg,.input-group-lg>input[type="month"].form-control,.input-group-lg>input[type="month"].input-group-addon,.input-group-lg>.input-group-btn>input[type="month"].btn,.input-group-lg input[type="month"]{line-height:56px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:36px;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="radio"].disabled,fieldset[disabled] input[type="radio"],input[type="checkbox"][disabled],input[type="checkbox"].disabled,fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,fieldset[disabled] .radio-inline,.checkbox-inline.disabled,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,fieldset[disabled] .radio label,.checkbox.disabled label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{padding-top:7px;padding-bottom:7px;margin-bottom:0;min-height:56px}.form-control-static.input-lg,.input-group-lg>.form-control-static.form-control,.input-group-lg>.form-control-static.input-group-addon,.input-group-lg>.input-group-btn>.form-control-static.btn,.form-control-static.input-sm,.input-group-sm>.form-control-static.form-control,.input-group-sm>.form-control-static.input-group-addon,.input-group-sm>.input-group-btn>.form-control-static.btn{padding-left:0;padding-right:0}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:37px;padding:5px 10px;font-size:17px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:37px;line-height:37px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.form-group-sm .form-control{height:37px;padding:5px 10px;font-size:17px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:37px;line-height:37px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:37px;min-height:53px;padding:6px 10px;font-size:17px;line-height:1.5}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:56px;padding:10px 16px;font-size:25px;line-height:1.33333;border-radius:3px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:56px;line-height:56px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.form-group-lg .form-control{height:56px;padding:10px 16px;font-size:25px;line-height:1.33333;border-radius:3px}.form-group-lg select.form-control{height:56px;line-height:56px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:56px;min-height:61px;padding:11px 16px;font-size:25px;line-height:1.33333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:62.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:50px;height:50px;line-height:50px;text-align:center;pointer-events:none}.input-lg+.form-control-feedback,.input-group-lg>.form-control+.form-control-feedback,.input-group-lg>.input-group-addon+.form-control-feedback,.input-group-lg>.input-group-btn>.btn+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:56px;height:56px;line-height:56px}.input-sm+.form-control-feedback,.input-group-sm>.form-control+.form-control-feedback,.input-group-sm>.input-group-addon+.form-control-feedback,.input-group-sm>.input-group-btn>.btn+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:37px;height:37px;line-height:37px}.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:#4CAF50}.has-success .form-control{border-color:#4CAF50;-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:#3d8b40;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #92cf94;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #92cf94}.has-success .input-group-addon{color:#4CAF50;border-color:#4CAF50;background-color:#dff0d8}.has-success .form-control-feedback{color:#4CAF50}.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:#ff9800}.has-warning .form-control{border-color:#ff9800;-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:#cc7a00;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffc166;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ffc166}.has-warning .input-group-addon{color:#ff9800;border-color:#ff9800;background-color:#ffe0b2}.has-warning .form-control-feedback{color:#ff9800}.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:#e51c23}.has-error .form-control{border-color:#e51c23;-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:#b9151b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ef787c;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ef787c}.has-error .input-group-addon{color:#e51c23;border-color:#e51c23;background-color:#f9bdbb}.has-error .form-control-feedback{color:#e51c23}.has-feedback label ~ .form-control-feedback{top:41px}.has-feedback label.sr-only ~ .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#a6a6a6}@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:43px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}@media (min-width: 768px){.form-horizontal .control-label{text-align:right;margin-bottom:0;padding-top:7px}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width: 768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:25px}}@media (min-width: 768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:17px}}.btn{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;touch-action:manipulation;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 16px;font-size:20px;line-height:1.846;border-radius:3px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,.btn.focus,.btn:active:focus,.btn:active.focus,.btn.active:focus,.btn.active.focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#444;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:#444;background-color:#fff;border-color:transparent}.btn-default:focus,.btn-default.focus{color:#444;background-color:#e6e6e6;border-color:transparent}.btn-default:hover{color:#444;background-color:#e6e6e6;border-color:transparent}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{color:#444;background-color:#e6e6e6;border-color:transparent}.btn-default:active:hover,.btn-default:active:focus,.btn-default:active.focus,.btn-default.active:hover,.btn-default.active:focus,.btn-default.active.focus,.open>.btn-default.dropdown-toggle:hover,.open>.btn-default.dropdown-toggle:focus,.open>.btn-default.dropdown-toggle.focus{color:#444;background-color:#d4d4d4;border-color:transparent}.btn-default:active,.btn-default.active,.open>.btn-default.dropdown-toggle{background-image:none}.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled.focus,.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:transparent}.btn-default .badge{color:#fff;background-color:#444}.btn-primary{color:#fff;background-color:#2643A9;border-color:transparent}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#1d327f;border-color:transparent}.btn-primary:hover{color:#fff;background-color:#1d327f;border-color:transparent}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{color:#fff;background-color:#1d327f;border-color:transparent}.btn-primary:active:hover,.btn-primary:active:focus,.btn-primary:active.focus,.btn-primary.active:hover,.btn-primary.active:focus,.btn-primary.active.focus,.open>.btn-primary.dropdown-toggle:hover,.open>.btn-primary.dropdown-toggle:focus,.open>.btn-primary.dropdown-toggle.focus{color:#fff;background-color:#162762;border-color:transparent}.btn-primary:active,.btn-primary.active,.open>.btn-primary.dropdown-toggle{background-image:none}.btn-primary.disabled:hover,.btn-primary.disabled:focus,.btn-primary.disabled.focus,.btn-primary[disabled]:hover,.btn-primary[disabled]:focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary.focus{background-color:#2643A9;border-color:transparent}.btn-primary .badge{color:#2643A9;background-color:#fff}.btn-success{color:#fff;background-color:#4CAF50;border-color:transparent}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#3d8b40;border-color:transparent}.btn-success:hover{color:#fff;background-color:#3d8b40;border-color:transparent}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{color:#fff;background-color:#3d8b40;border-color:transparent}.btn-success:active:hover,.btn-success:active:focus,.btn-success:active.focus,.btn-success.active:hover,.btn-success.active:focus,.btn-success.active.focus,.open>.btn-success.dropdown-toggle:hover,.open>.btn-success.dropdown-toggle:focus,.open>.btn-success.dropdown-toggle.focus{color:#fff;background-color:#327334;border-color:transparent}.btn-success:active,.btn-success.active,.open>.btn-success.dropdown-toggle{background-image:none}.btn-success.disabled:hover,.btn-success.disabled:focus,.btn-success.disabled.focus,.btn-success[disabled]:hover,.btn-success[disabled]:focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success.focus{background-color:#4CAF50;border-color:transparent}.btn-success .badge{color:#4CAF50;background-color:#fff}.btn-info{color:#fff;background-color:#9C27B0;border-color:transparent}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#771e86;border-color:transparent}.btn-info:hover{color:#fff;background-color:#771e86;border-color:transparent}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{color:#fff;background-color:#771e86;border-color:transparent}.btn-info:active:hover,.btn-info:active:focus,.btn-info:active.focus,.btn-info.active:hover,.btn-info.active:focus,.btn-info.active.focus,.open>.btn-info.dropdown-toggle:hover,.open>.btn-info.dropdown-toggle:focus,.open>.btn-info.dropdown-toggle.focus{color:#fff;background-color:#5d1769;border-color:transparent}.btn-info:active,.btn-info.active,.open>.btn-info.dropdown-toggle{background-image:none}.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled.focus,.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info.focus{background-color:#9C27B0;border-color:transparent}.btn-info .badge{color:#9C27B0;background-color:#fff}.btn-warning{color:#fff;background-color:#ff9800;border-color:transparent}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#cc7a00;border-color:transparent}.btn-warning:hover{color:#fff;background-color:#cc7a00;border-color:transparent}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{color:#fff;background-color:#cc7a00;border-color:transparent}.btn-warning:active:hover,.btn-warning:active:focus,.btn-warning:active.focus,.btn-warning.active:hover,.btn-warning.active:focus,.btn-warning.active.focus,.open>.btn-warning.dropdown-toggle:hover,.open>.btn-warning.dropdown-toggle:focus,.open>.btn-warning.dropdown-toggle.focus{color:#fff;background-color:#a86400;border-color:transparent}.btn-warning:active,.btn-warning.active,.open>.btn-warning.dropdown-toggle{background-image:none}.btn-warning.disabled:hover,.btn-warning.disabled:focus,.btn-warning.disabled.focus,.btn-warning[disabled]:hover,.btn-warning[disabled]:focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning.focus{background-color:#ff9800;border-color:transparent}.btn-warning .badge{color:#ff9800;background-color:#fff}.btn-danger{color:#fff;background-color:#e51c23;border-color:transparent}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#b9151b;border-color:transparent}.btn-danger:hover{color:#fff;background-color:#b9151b;border-color:transparent}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{color:#fff;background-color:#b9151b;border-color:transparent}.btn-danger:active:hover,.btn-danger:active:focus,.btn-danger:active.focus,.btn-danger.active:hover,.btn-danger.active:focus,.btn-danger.active.focus,.open>.btn-danger.dropdown-toggle:hover,.open>.btn-danger.dropdown-toggle:focus,.open>.btn-danger.dropdown-toggle.focus{color:#fff;background-color:#991216;border-color:transparent}.btn-danger:active,.btn-danger.active,.open>.btn-danger.dropdown-toggle{background-image:none}.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled.focus,.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger.focus{background-color:#e51c23;border-color:transparent}.btn-danger .badge{color:#e51c23;background-color:#fff}.btn-link{color:#2643A9;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:#182a6b;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:#bbb;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:25px;line-height:1.33333;border-radius:3px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:17px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:17px;line-height:1.5;border-radius:3px}.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;transition-property:height,visibility;-webkit-transition-duration:0.35s;transition-duration:0.35s;-webkit-transition-timing-function:ease;transition-timing-function:ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid \9;border-right:4px solid transparent;border-left:4px solid transparent}.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:20px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:3px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:17px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.846;color:#666;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#141414;background-color:#eee}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#2643A9}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#bbb}.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:17px;line-height:1.846;color:#bbb;white-space:nowrap}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width: 768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.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>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.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:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.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,.btn-group-lg.btn-group>.btn+.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,.btn-group-lg>.btn .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .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:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.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:3px;border-top-left-radius:3px;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:3px;border-bottom-left-radius:3px}.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 input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[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-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 16px;font-size:20px;font-weight:normal;line-height:1;color:#666;text-align:center;background-color:transparent;border:1px solid transparent;border-radius:3px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn{padding:5px 10px;font-size:17px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn{padding:10px 16px;font-size:25px;border-radius:3px}.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:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.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:#eee}.nav>li.disabled>a{color:#bbb}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#bbb;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#2643A9}.nav .nav-divider{height:1px;margin:17px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid transparent}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.846;border:1px solid transparent;border-radius:3px 3px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee transparent}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#666;background-color:transparent;border:1px solid transparent;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:3px}.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:#2643A9}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.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,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:3px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border:1px solid transparent}@media (min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid transparent;border-radius:3px 3px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.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:64px;margin-bottom:36px;border:1px solid transparent}.navbar:before,.navbar:after{content:" ";display:table}.navbar:after{clear:both}@media (min-width: 768px){.navbar{border-radius:3px}}.navbar-header:before,.navbar-header:after{content:" ";display:table}.navbar-header:after{clear:both}@media (min-width: 768px){.navbar-header{float:left}}.navbar-collapse{overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{content:" ";display:table}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media (min-width: 768px){.navbar-collapse{width:auto;border-top:0;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>.navbar-collapse,.container-fluid>.navbar-header,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media (min-width: 768px){.container>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-header,.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:14px 15px;font-size:25px;line-height:36px;height:64px}.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:15px;margin-bottom:15px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:3px}.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:7px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:36px}@media (max-width: 767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;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:36px}.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:14px;padding-bottom:14px}}.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:7px;margin-bottom:7px}@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:3px;border-top-left-radius:3px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:7px;margin-bottom:7px}.navbar-btn.btn-sm,.btn-group-sm>.navbar-btn.btn{margin-top:13.5px;margin-bottom:13.5px}.navbar-btn.btn-xs,.btn-group-xs>.navbar-btn.btn{margin-top:21px;margin-bottom:21px}.navbar-text{margin-top:14px;margin-bottom:14px}@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:#fff;border-color:transparent}.navbar-default .navbar-brand{color:#666}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#212121;background-color:transparent}.navbar-default .navbar-text{color:#bbb}.navbar-default .navbar-nav>li>a{color:#666}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#212121;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#212121;background-color:#eee}.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:transparent}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:transparent}.navbar-default .navbar-toggle .icon-bar{background-color:rgba(0,0,0,0.5)}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:transparent}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{background-color:#eee;color:#212121}@media (max-width: 767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#666}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#212121;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:#212121;background-color:#eee}.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:#666}.navbar-default .navbar-link:hover{color:#212121}.navbar-default .btn-link{color:#666}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#212121}.navbar-default .btn-link[disabled]:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:hover,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#2643A9;border-color:transparent}.navbar-inverse .navbar-brand{color:#859ae3}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#bbb}.navbar-inverse .navbar-nav>li>a{color:#859ae3}.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:#1d327f}.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:transparent}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:transparent}.navbar-inverse .navbar-toggle .icon-bar{background-color:rgba(0,0,0,0.5)}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#1f378c}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{background-color:#1d327f;color:#fff}@media (max-width: 767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#859ae3}.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:#1d327f}.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:#859ae3}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#859ae3}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:hover,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:36px;list-style:none;background-color:#f5f5f5;border-radius:3px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{content:"/ ";padding:0 5px;color:#ccc}.breadcrumb>.active{color:#bbb}.pagination{display:inline-block;padding-left:0;margin:36px 0;border-radius:3px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 16px;line-height:1.846;text-decoration:none;color:#2643A9;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:3px;border-top-left-radius:3px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination>li>a:hover,.pagination>li>a:focus,.pagination>li>span:hover,.pagination>li>span:focus{z-index:2;color:#182a6b;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:hover,.pagination>.active>a:focus,.pagination>.active>span,.pagination>.active>span:hover,.pagination>.active>span:focus{z-index:3;color:#fff;background-color:#2643A9;border-color:#2643A9;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:#bbb;background-color:#fff;border-color:#ddd;cursor:not-allowed}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:25px;line-height:1.33333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:17px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.pager{padding-left:0;margin:36px 0;list-style:none;text-align:center}.pager:before,.pager:after{content:" ";display:table}.pager:after{clear:both}.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:#eee}.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:#bbb;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}.label:empty{display:none}.btn .label{position:relative;top:-1px}a.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label-default{background-color:#bbb}.label-default[href]:hover,.label-default[href]:focus{background-color:#a2a2a2}.label-primary{background-color:#2643A9}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#1d327f}.label-success{background-color:#4CAF50}.label-success[href]:hover,.label-success[href]:focus{background-color:#3d8b40}.label-info{background-color:#9C27B0}.label-info[href]:hover,.label-info[href]:focus{background-color:#771e86}.label-warning{background-color:#ff9800}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#cc7a00}.label-danger{background-color:#e51c23}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#b9151b}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:17px;font-weight:normal;color:#fff;line-height:1;vertical-align:middle;white-space:nowrap;text-align:center;background-color:#bbb;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#2643A9;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:#444}.jumbotron p{margin-bottom:15px;font-size:30px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{border-radius:3px;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:90px}}.thumbnail{display:block;padding:4px;margin-bottom:36px;line-height:1.846;background-color:#fff;border:1px solid #ddd;border-radius:3px;-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{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#666}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#2643A9}.alert{padding:15px;margin-bottom:36px;border:1px solid transparent;border-radius:3px}.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:#4CAF50}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#3d8b40}.alert-info{background-color:#e1bee7;border-color:#cba4dd;color:#9C27B0}.alert-info hr{border-top-color:#c191d6}.alert-info .alert-link{color:#771e86}.alert-warning{background-color:#ffe0b2;border-color:#ffc599;color:#ff9800}.alert-warning hr{border-top-color:#ffb67f}.alert-warning .alert-link{color:#cc7a00}.alert-danger{background-color:#f9bdbb;border-color:#f7a4af;color:#e51c23}.alert-danger hr{border-top-color:#f58c9a}.alert-danger .alert-link{color:#b9151b}@-webkit-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:36px;margin-bottom:36px;background-color:#f5f5f5;border-radius:3px;-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:17px;line-height:36px;color:#fff;text-align:center;background-color:#2643A9;-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);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:#4CAF50}.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:#9C27B0}.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:#ff9800}.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:#e51c23}.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:3px;border-top-left-radius:3px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}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,a.list-group-item:focus,button.list-group-item:hover,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:#eee;color:#bbb;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:#bbb}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#2643A9;border-color:#2643A9}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .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:#aebced}.list-group-item-success{color:#4CAF50;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#4CAF50}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,a.list-group-item-success:focus,button.list-group-item-success:hover,button.list-group-item-success:focus{color:#4CAF50;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active,button.list-group-item-success.active:hover,button.list-group-item-success.active:focus{color:#fff;background-color:#4CAF50;border-color:#4CAF50}.list-group-item-info{color:#9C27B0;background-color:#e1bee7}a.list-group-item-info,button.list-group-item-info{color:#9C27B0}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,a.list-group-item-info:focus,button.list-group-item-info:hover,button.list-group-item-info:focus{color:#9C27B0;background-color:#d8abe0}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active,button.list-group-item-info.active:hover,button.list-group-item-info.active:focus{color:#fff;background-color:#9C27B0;border-color:#9C27B0}.list-group-item-warning{color:#ff9800;background-color:#ffe0b2}a.list-group-item-warning,button.list-group-item-warning{color:#ff9800}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,a.list-group-item-warning:focus,button.list-group-item-warning:hover,button.list-group-item-warning:focus{color:#ff9800;background-color:#ffd699}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active,button.list-group-item-warning.active:hover,button.list-group-item-warning.active:focus{color:#fff;background-color:#ff9800;border-color:#ff9800}.list-group-item-danger{color:#e51c23;background-color:#f9bdbb}a.list-group-item-danger,button.list-group-item-danger{color:#e51c23}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,a.list-group-item-danger:focus,button.list-group-item-danger:hover,button.list-group-item-danger:focus{color:#e51c23;background-color:#f7a6a4}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active,button.list-group-item-danger.active:hover,button.list-group-item-danger.active:focus{color:#fff;background-color:#e51c23;border-color:#e51c23}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:36px;background-color:#fff;border:1px solid transparent;border-radius:3px;-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-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:2px;border-top-left-radius:2px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:23px;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:2px;border-bottom-left-radius:2px}.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:2px;border-top-left-radius:2px}.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:2px;border-bottom-left-radius:2px}.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:2px;border-top-left-radius:2px}.panel>.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>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:2px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:2px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.panel>.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>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:2px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:2px}.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-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th: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-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th: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-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:36px}.panel-group .panel{margin-bottom:0;border-radius:3px}.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:#212121;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:#212121}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#2643A9}.panel-primary>.panel-heading{color:#fff;background-color:#2643A9;border-color:#2643A9}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#2643A9}.panel-primary>.panel-heading .badge{color:#2643A9;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#2643A9}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#fff;background-color:#4CAF50;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#4CAF50;background-color:#fff}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#cba4dd}.panel-info>.panel-heading{color:#fff;background-color:#9C27B0;border-color:#cba4dd}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#cba4dd}.panel-info>.panel-heading .badge{color:#9C27B0;background-color:#fff}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#cba4dd}.panel-warning{border-color:#ffc599}.panel-warning>.panel-heading{color:#fff;background-color:#ff9800;border-color:#ffc599}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ffc599}.panel-warning>.panel-heading .badge{color:#ff9800;background-color:#fff}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ffc599}.panel-danger{border-color:#f7a4af}.panel-danger>.panel-heading{color:#fff;background-color:#e51c23;border-color:#f7a4af}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#f7a4af}.panel-danger>.panel-heading .badge{color:#e51c23;background-color:#fff}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#f7a4af}.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:#f9f9f9;border:1px solid transparent;border-radius:3px;-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:3px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:30px;font-weight:normal;line-height:1;color:#000;text-shadow:none;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;-moz-transition:-moz-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 transparent;border-radius:3px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:0}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid transparent}.modal-header:before,.modal-header:after{content:" ";display:table}.modal-header:after{clear:both}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.846}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid transparent}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,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:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.846;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:17px;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:#727272;border-radius:3px}.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:#727272}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#727272}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#727272}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#727272}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#727272}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#727272}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#727272}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#727272}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.846;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:20px;background-color:#fff;background-clip:padding-box;border:1px solid transparent;border:1px solid transparent;border-radius:3px;-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:20px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:2px 2px 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:transparent;border-top-color:fadein(transparent, 7.5%);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:transparent;border-right-color:fadein(transparent, 7.5%)}.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:transparent;border-bottom-color:fadein(transparent, 7.5%);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:transparent;border-left-color:fadein(transparent, 7.5%)}.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: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{display:block;max-width:100%;height:auto;line-height:1}@media all and (transform-3d), (-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform 0.6s ease-in-out;-moz-transition:-moz-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;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;-moz-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:transparent}.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: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: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:transparent}.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{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs{display:none !important}.visible-sm{display:none !important}.visible-md{display:none !important}.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}}.navbar{border:none;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.3);box-shadow:0 1px 2px rgba(0,0,0,0.3)}.navbar-brand{font-size:24px}.navbar-inverse .navbar-form input[type=text],.navbar-inverse .navbar-form input[type=password]{color:#fff;-webkit-box-shadow:inset 0 -1px 0 #859ae3;box-shadow:inset 0 -1px 0 #859ae3}.navbar-inverse .navbar-form input[type=text]::-moz-placeholder,.navbar-inverse .navbar-form input[type=password]::-moz-placeholder{color:#859ae3;opacity:1}.navbar-inverse .navbar-form input[type=text]:-ms-input-placeholder,.navbar-inverse .navbar-form input[type=password]:-ms-input-placeholder{color:#859ae3}.navbar-inverse .navbar-form input[type=text]::-webkit-input-placeholder,.navbar-inverse .navbar-form input[type=password]::-webkit-input-placeholder{color:#859ae3}.navbar-inverse .navbar-form input[type=text]:focus,.navbar-inverse .navbar-form input[type=password]:focus{-webkit-box-shadow:inset 0 -2px 0 #fff;box-shadow:inset 0 -2px 0 #fff}.btn-default{background-size:200% 200%;background-position:50%}.btn-default:focus{background-color:#fff}.btn-default:hover,.btn-default:active:hover{background-color:#f0f0f0}.btn-default:active{background-color:#e0e0e0;background-image:-webkit-radial-gradient(circle, #e0e0e0 10%, #fff 11%);background-image:radial-gradient(circle, #e0e0e0 10%, #fff 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-primary{background-size:200% 200%;background-position:50%}.btn-primary:focus{background-color:#2643A9}.btn-primary:hover,.btn-primary:active:hover{background-color:#203990}.btn-primary:active{background-color:#1b2f77;background-image:-webkit-radial-gradient(circle, #1b2f77 10%, #2643A9 11%);background-image:radial-gradient(circle, #1b2f77 10%, #2643A9 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-success{background-size:200% 200%;background-position:50%}.btn-success:focus{background-color:#4CAF50}.btn-success:hover,.btn-success:active:hover{background-color:#439a46}.btn-success:active{background-color:#39843c;background-image:-webkit-radial-gradient(circle, #39843c 10%, #4CAF50 11%);background-image:radial-gradient(circle, #39843c 10%, #4CAF50 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-info{background-size:200% 200%;background-position:50%}.btn-info:focus{background-color:#9C27B0}.btn-info:hover,.btn-info:active:hover{background-color:#862197}.btn-info:active{background-color:#701c7e;background-image:-webkit-radial-gradient(circle, #701c7e 10%, #9C27B0 11%);background-image:radial-gradient(circle, #701c7e 10%, #9C27B0 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-warning{background-size:200% 200%;background-position:50%}.btn-warning:focus{background-color:#ff9800}.btn-warning:hover,.btn-warning:active:hover{background-color:#e08600}.btn-warning:active{background-color:#c27400;background-image:-webkit-radial-gradient(circle, #c27400 10%, #ff9800 11%);background-image:radial-gradient(circle, #c27400 10%, #ff9800 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-danger{background-size:200% 200%;background-position:50%}.btn-danger:focus{background-color:#e51c23}.btn-danger:hover,.btn-danger:active:hover{background-color:#cb171e}.btn-danger:active{background-color:#b0141a;background-image:-webkit-radial-gradient(circle, #b0141a 10%, #e51c23 11%);background-image:radial-gradient(circle, #b0141a 10%, #e51c23 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn-link{background-size:200% 200%;background-position:50%}.btn-link:focus{background-color:#fff}.btn-link:hover,.btn-link:active:hover{background-color:#f0f0f0}.btn-link:active{background-color:#e0e0e0;background-image:-webkit-radial-gradient(circle, #e0e0e0 10%, #fff 11%);background-image:radial-gradient(circle, #e0e0e0 10%, #fff 11%);background-repeat:no-repeat;background-size:1000% 1000%;-webkit-box-shadow:2px 2px 4px rgba(0,0,0,0.4);box-shadow:2px 2px 4px rgba(0,0,0,0.4)}.btn{text-transform:uppercase;border:none;-webkit-box-shadow:1px 1px 4px rgba(0,0,0,0.4);box-shadow:1px 1px 4px rgba(0,0,0,0.4);-webkit-transition:all 0.4s;-o-transition:all 0.4s;transition:all 0.4s}.btn-link{border-radius:3px;-webkit-box-shadow:none;box-shadow:none;color:#444}.btn-link:hover,.btn-link:focus{-webkit-box-shadow:none;box-shadow:none;color:#444;text-decoration:none}.btn-default.disabled{background-color:rgba(0,0,0,0.1);color:rgba(0,0,0,0.4);opacity:1}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:0}.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:0}body{-webkit-font-smoothing:antialiased;letter-spacing:.1px}p{margin:0 0 1em}input,button{-webkit-font-smoothing:antialiased;letter-spacing:.1px}a{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.table-hover>tbody>tr,.table-hover>tbody>tr>th,.table-hover>tbody>tr>td{-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}label{font-weight:normal}textarea,textarea.form-control,input.form-control,input[type=text],input[type=password],input[type=email],input[type=number],[type=text].form-control,[type=password].form-control,[type=email].form-control,[type=tel].form-control,[contenteditable].form-control{padding:0;border:none;border-radius:0;-webkit-appearance:none;-webkit-box-shadow:inset 0 -1px 0 #ddd;box-shadow:inset 0 -1px 0 #ddd;font-size:16px}textarea:focus,textarea.form-control:focus,input.form-control:focus,input[type=text]:focus,input[type=password]:focus,input[type=email]:focus,input[type=number]:focus,[type=text].form-control:focus,[type=password].form-control:focus,[type=email].form-control:focus,[type=tel].form-control:focus,[contenteditable].form-control:focus{-webkit-box-shadow:inset 0 -2px 0 #2643A9;box-shadow:inset 0 -2px 0 #2643A9}textarea[disabled],textarea[readonly],textarea.form-control[disabled],textarea.form-control[readonly],input.form-control[disabled],input.form-control[readonly],input[type=text][disabled],input[type=text][readonly],input[type=password][disabled],input[type=password][readonly],input[type=email][disabled],input[type=email][readonly],input[type=number][disabled],input[type=number][readonly],[type=text].form-control[disabled],[type=text].form-control[readonly],[type=password].form-control[disabled],[type=password].form-control[readonly],[type=email].form-control[disabled],[type=email].form-control[readonly],[type=tel].form-control[disabled],[type=tel].form-control[readonly],[contenteditable].form-control[disabled],[contenteditable].form-control[readonly]{-webkit-box-shadow:none;box-shadow:none;border-bottom:1px dotted #ddd}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,textarea.form-control.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>.input-group-btn>textarea.form-control.btn,input.form-control.input-sm,.input-group-sm>input.form-control,.input-group-sm>.input-group-btn>input.form-control.btn,input[type=text].input-sm,.input-group-sm>input[type=text].form-control,.input-group-sm>input[type=text].input-group-addon,.input-group-sm>.input-group-btn>input[type=text].btn,input[type=password].input-sm,.input-group-sm>input[type=password].form-control,.input-group-sm>input[type=password].input-group-addon,.input-group-sm>.input-group-btn>input[type=password].btn,input[type=email].input-sm,.input-group-sm>input[type=email].form-control,.input-group-sm>input[type=email].input-group-addon,.input-group-sm>.input-group-btn>input[type=email].btn,input[type=number].input-sm,.input-group-sm>input[type=number].form-control,.input-group-sm>input[type=number].input-group-addon,.input-group-sm>.input-group-btn>input[type=number].btn,[type=text].form-control.input-sm,.input-group-sm>[type=text].form-control,.input-group-sm>.input-group-btn>[type=text].form-control.btn,[type=password].form-control.input-sm,.input-group-sm>[type=password].form-control,.input-group-sm>.input-group-btn>[type=password].form-control.btn,[type=email].form-control.input-sm,.input-group-sm>[type=email].form-control,.input-group-sm>.input-group-btn>[type=email].form-control.btn,[type=tel].form-control.input-sm,.input-group-sm>[type=tel].form-control,.input-group-sm>.input-group-btn>[type=tel].form-control.btn,[contenteditable].form-control.input-sm,.input-group-sm>[contenteditable].form-control,.input-group-sm>.input-group-btn>[contenteditable].form-control.btn{font-size:17px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,textarea.form-control.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>.input-group-btn>textarea.form-control.btn,input.form-control.input-lg,.input-group-lg>input.form-control,.input-group-lg>.input-group-btn>input.form-control.btn,input[type=text].input-lg,.input-group-lg>input[type=text].form-control,.input-group-lg>input[type=text].input-group-addon,.input-group-lg>.input-group-btn>input[type=text].btn,input[type=password].input-lg,.input-group-lg>input[type=password].form-control,.input-group-lg>input[type=password].input-group-addon,.input-group-lg>.input-group-btn>input[type=password].btn,input[type=email].input-lg,.input-group-lg>input[type=email].form-control,.input-group-lg>input[type=email].input-group-addon,.input-group-lg>.input-group-btn>input[type=email].btn,input[type=number].input-lg,.input-group-lg>input[type=number].form-control,.input-group-lg>input[type=number].input-group-addon,.input-group-lg>.input-group-btn>input[type=number].btn,[type=text].form-control.input-lg,.input-group-lg>[type=text].form-control,.input-group-lg>.input-group-btn>[type=text].form-control.btn,[type=password].form-control.input-lg,.input-group-lg>[type=password].form-control,.input-group-lg>.input-group-btn>[type=password].form-control.btn,[type=email].form-control.input-lg,.input-group-lg>[type=email].form-control,.input-group-lg>.input-group-btn>[type=email].form-control.btn,[type=tel].form-control.input-lg,.input-group-lg>[type=tel].form-control,.input-group-lg>.input-group-btn>[type=tel].form-control.btn,[contenteditable].form-control.input-lg,.input-group-lg>[contenteditable].form-control,.input-group-lg>.input-group-btn>[contenteditable].form-control.btn{font-size:25px}select,select.form-control{border:0;border-radius:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding-left:0;padding-right:0\9;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEVmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmaP/QSjAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=);background-size:13px;background-repeat:no-repeat;background-position:right center;-webkit-box-shadow:inset 0 -1px 0 #ddd;box-shadow:inset 0 -1px 0 #ddd;font-size:16px;line-height:1.5}select::-ms-expand,select.form-control::-ms-expand{display:none}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn,select.form-control.input-sm,.input-group-sm>select.form-control,.input-group-sm>.input-group-btn>select.form-control.btn{font-size:17px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn,select.form-control.input-lg,.input-group-lg>select.form-control,.input-group-lg>.input-group-btn>select.form-control.btn{font-size:25px}select:focus,select.form-control:focus{-webkit-box-shadow:inset 0 -2px 0 #2643A9;box-shadow:inset 0 -2px 0 #2643A9;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAMAAACelLz8AAAAJ1BMVEUhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISEhISF8S9ewAAAADHRSTlMAAgMJC0uWpKa6wMxMdjkoAAAANUlEQVR4AeXJyQEAERAAsNl7Hf3X6xt0QL6JpZWq30pdvdadme+0PMdzvHm8YThHcT1H7K0BtOMDniZhWOgAAAAASUVORK5CYII=)}select[multiple],select.form-control[multiple]{background:none}.radio label,.radio-inline label,.checkbox label,.checkbox-inline label{padding-left:25px}.radio input[type="radio"],.radio input[type="checkbox"],.radio-inline input[type="radio"],.radio-inline input[type="checkbox"],.checkbox input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="radio"],.checkbox-inline input[type="checkbox"]{margin-left:-25px}input[type="radio"],.radio input[type="radio"],.radio-inline input[type="radio"]{position:relative;margin-top:6px;margin-right:4px;vertical-align:top;border:none;background-color:transparent;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="radio"]:focus,.radio input[type="radio"]:focus,.radio-inline input[type="radio"]:focus{outline:none}input[type="radio"]:before,input[type="radio"]:after,.radio input[type="radio"]:before,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:before,.radio-inline input[type="radio"]:after{content:"";display:block;width:18px;height:18px;border-radius:50%;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="radio"]:before,.radio input[type="radio"]:before,.radio-inline input[type="radio"]:before{position:absolute;left:0;top:-3px;background-color:#2643A9;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0)}input[type="radio"]:after,.radio input[type="radio"]:after,.radio-inline input[type="radio"]:after{position:relative;top:-3px;border:2px solid #666}input[type="radio"]:checked:before,.radio input[type="radio"]:checked:before,.radio-inline input[type="radio"]:checked:before{-webkit-transform:scale(0.5);-ms-transform:scale(0.5);-o-transform:scale(0.5);transform:scale(0.5)}input[type="radio"]:disabled:checked:before,.radio input[type="radio"]:disabled:checked:before,.radio-inline input[type="radio"]:disabled:checked:before{background-color:#bbb}input[type="radio"]:checked:after,.radio input[type="radio"]:checked:after,.radio-inline input[type="radio"]:checked:after{border-color:#2643A9}input[type="radio"]:disabled:after,input[type="radio"]:disabled:checked:after,.radio input[type="radio"]:disabled:after,.radio input[type="radio"]:disabled:checked:after,.radio-inline input[type="radio"]:disabled:after,.radio-inline input[type="radio"]:disabled:checked:after{border-color:#bbb}input[type="checkbox"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:relative;border:none;margin-bottom:-4px;-webkit-appearance:none;appearance:none;cursor:pointer}input[type="checkbox"]:focus,.checkbox input[type="checkbox"]:focus,.checkbox-inline input[type="checkbox"]:focus{outline:none}input[type="checkbox"]:focus:after,.checkbox input[type="checkbox"]:focus:after,.checkbox-inline input[type="checkbox"]:focus:after{border-color:#2643A9}input[type="checkbox"]:after,.checkbox input[type="checkbox"]:after,.checkbox-inline input[type="checkbox"]:after{content:"";display:block;width:18px;height:18px;margin-top:-2px;margin-right:5px;border:2px solid #666;border-radius:2px;-webkit-transition:240ms;-o-transition:240ms;transition:240ms}input[type="checkbox"]:checked:before,.checkbox input[type="checkbox"]:checked:before,.checkbox-inline input[type="checkbox"]:checked:before{content:"";position:absolute;top:0;left:6px;display:table;width:6px;height:12px;border:2px solid #fff;border-top-width:0;border-left-width:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}input[type="checkbox"]:checked:after,.checkbox input[type="checkbox"]:checked:after,.checkbox-inline input[type="checkbox"]:checked:after{background-color:#2643A9;border-color:#2643A9}input[type="checkbox"]:disabled:after,.checkbox input[type="checkbox"]:disabled:after,.checkbox-inline input[type="checkbox"]:disabled:after{border-color:#bbb}input[type="checkbox"]:disabled:checked:after,.checkbox input[type="checkbox"]:disabled:checked:after,.checkbox-inline input[type="checkbox"]:disabled:checked:after{background-color:#bbb;border-color:transparent}.has-warning input:not([type=checkbox]),.has-warning .form-control,.has-warning input.form-control[readonly],.has-warning input[type=text][readonly],.has-warning [type=text].form-control[readonly],.has-warning input:not([type=checkbox]):focus,.has-warning .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #ff9800;box-shadow:inset 0 -2px 0 #ff9800}.has-error input:not([type=checkbox]),.has-error .form-control,.has-error input.form-control[readonly],.has-error input[type=text][readonly],.has-error [type=text].form-control[readonly],.has-error input:not([type=checkbox]):focus,.has-error .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #e51c23;box-shadow:inset 0 -2px 0 #e51c23}.has-success input:not([type=checkbox]),.has-success .form-control,.has-success input.form-control[readonly],.has-success input[type=text][readonly],.has-success [type=text].form-control[readonly],.has-success input:not([type=checkbox]):focus,.has-success .form-control:focus{border-bottom:none;-webkit-box-shadow:inset 0 -2px 0 #4CAF50;box-shadow:inset 0 -2px 0 #4CAF50}.has-warning .input-group-addon,.has-error .input-group-addon,.has-success .input-group-addon{color:#666;border-color:transparent;background-color:transparent}.form-group-lg select,.form-group-lg select.form-control{line-height:1.5}.nav-tabs>li>a,.nav-tabs>li>a:focus{margin-right:0;background-color:transparent;border:none;color:#666;-webkit-box-shadow:inset 0 -1px 0 #ddd;box-shadow:inset 0 -1px 0 #ddd;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.nav-tabs>li>a:hover,.nav-tabs>li>a:focus:hover{background-color:transparent;-webkit-box-shadow:inset 0 -2px 0 #2643A9;box-shadow:inset 0 -2px 0 #2643A9;color:#2643A9}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus{border:none;-webkit-box-shadow:inset 0 -2px 0 #2643A9;box-shadow:inset 0 -2px 0 #2643A9;color:#2643A9}.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus:hover{border:none;color:#2643A9}.nav-tabs>li.disabled>a{-webkit-box-shadow:inset 0 -1px 0 #ddd;box-shadow:inset 0 -1px 0 #ddd}.nav-tabs.nav-justified>li>a,.nav-tabs.nav-justified>li>a:hover,.nav-tabs.nav-justified>li>a:focus,.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:none}.nav-tabs .dropdown-menu{margin-top:0}.dropdown-menu{margin-top:0;border:none;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.3);box-shadow:0 1px 4px rgba(0,0,0,0.3)}.alert{border:none;color:#fff}.alert-success{background-color:#4CAF50}.alert-info{background-color:#9C27B0}.alert-warning{background-color:#ff9800}.alert-danger{background-color:#e51c23}.alert a:not(.close):not(.btn),.alert .alert-link{color:#fff;font-weight:bold}.alert .close{color:#fff}.badge{padding:4px 6px 4px}.progress{position:relative;z-index:1;height:6px;border-radius:0;-webkit-box-shadow:none;box-shadow:none}.progress-bar{-webkit-box-shadow:none;box-shadow:none}.progress-bar:last-child{border-radius:0 3px 3px 0}.progress-bar:last-child:before{display:block;content:"";position:absolute;width:100%;height:100%;left:0;right:0;z-index:-1;background-color:#99abe8}.progress-bar-success:last-child.progress-bar:before{background-color:#c7e7c8}.progress-bar-info:last-child.progress-bar:before{background-color:#edc9f3}.progress-bar-warning:last-child.progress-bar:before{background-color:#ffe0b3}.progress-bar-danger:last-child.progress-bar:before{background-color:#f28e92}.close{font-size:34px;font-weight:300;line-height:24px;opacity:0.6;-webkit-transition:all 0.2s;-o-transition:all 0.2s;transition:all 0.2s}.close:hover{opacity:1}.list-group-item{padding:15px}.list-group-item-text{color:#bbb}.well{border-radius:0;-webkit-box-shadow:none;box-shadow:none}.panel{border:none;border-radius:2px;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.3);box-shadow:0 1px 4px rgba(0,0,0,0.3)}.panel-heading{border-bottom:none}.panel-footer{border-top:none}.popover{border:none;-webkit-box-shadow:0 1px 4px rgba(0,0,0,0.3);box-shadow:0 1px 4px rgba(0,0,0,0.3)}.carousel-caption h1,.carousel-caption h2,.carousel-caption h3,.carousel-caption h4,.carousel-caption h5,.carousel-caption h6{color:inherit}.navbar-pre{background-color:#2643A9;height:40px}.navbar-pre .nav{text-align:right}.navbar-pre .nav a{color:white;padding:10px;line-height:40px;vertical-align:middle}.navbar-pre .nav .contact-nav{margin-right:1em}.navbar-pre .nav .contact-nav a{margin:0 5px;font-size:.7em}.navbar-pre .nav .contact-nav a.link{text-transform:uppercase}.navbar-pre .nav .language-nav{text-transform:uppercase}.navbar-pre .nav .language-nav a{margin:0}.navbar-pre .nav .language-nav a.active,.navbar-pre .nav .language-nav a:hover{background-color:white;color:#2643A9}@media only screen and (max-width: 767px){.navbar-pre .nav .contact-nav a{font-size:.9em;padding:10px 5px}}.navbar-default.navbar-main{top:40px}.navbar-default .navbar-header .navbar-brand{text-transform:uppercase;font-size:1em}.navbar-default .navbar-header .navbar-brand img{display:inline;width:auto;height:28px;margin-top:-5px;margin-right:.5em}#myCarousel{background:#eee}#myCarousel .item{background-color:#3155d1;min-height:300px}#myCarousel .item img{height:300px;background-size:cover;background-position:center;width:100%}#myCarousel .item h3{text-transform:uppercase;font-weight:300}#myCarousel .item p{line-height:1.2;width:80%;margin:0 auto}#myCarousel .item .btn{margin-top:20px}#myCarousel .nav-thumbs{list-style:none;display:flex;margin:0;padding:0;text-align:center}#myCarousel .nav-thumbs li{float:left;width:25%}#myCarousel .nav-thumbs li.active{background-color:#2643A9}#myCarousel .nav-thumbs li.active a{color:white}#myCarousel .nav-thumbs li .glyphicon{display:block}#myCarousel .nav-thumbs .title{text-transform:uppercase;font-weight:300;text-decoration:none;width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#myCarousel .nav-thumbs .title small{font-weight:500;text-transform:none;display:block;font-size:.7em;width:100%;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}#myCarousel .nav-thumbs.nav-justified>li>a{border-radius:0px}@media only screen and (max-width: 767px){#myCarousel .nav-thumbs .title{font-size:.7em}}#banner,#carousel-banner{padding-top:0 !important;padding-bottom:0em}#banner .carousel-inner,#carousel-banner .carousel-inner{padding-bottom:2.5em}#banner .carousel-inner .item,#carousel-banner .carousel-inner .item{height:700px;position:relative;background-color:white}#banner .carousel-inner .item img,#carousel-banner .carousel-inner .item img{width:100%;height:700px;overflow:hidden;display:block;background-size:cover;background-position:center;opacity:1}#banner .carousel-inner .item .carousel-caption,#carousel-banner .carousel-inner .item .carousel-caption{background-color:white;padding:2em;bottom:-2em;box-shadow:0 1px 4px rgba(0,0,0,0.3)}#banner .carousel-inner .item .carousel-caption h3,#carousel-banner .carousel-inner .item .carousel-caption h3{margin-top:0}#banner .carousel-inner .item .carousel-caption p:last-child,#carousel-banner .carousel-inner .item .carousel-caption p:last-child{margin-bottom:0}#banner .carousel-inner .slick-dots,#carousel-banner .carousel-inner .slick-dots{bottom:50px}#banner .carousel-inner .slick-dots li,#carousel-banner .carousel-inner .slick-dots li{margin:0}#banner .carousel-inner .slick-dots li button,#carousel-banner .carousel-inner .slick-dots li button{box-shadow:none}#banner h3,#banner p,#banner button,#carousel-banner h3,#carousel-banner p,#carousel-banner button{color:#333;text-shadow:none;text-align:left}#banner p,#carousel-banner p{font-size:90%;-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual}#banner footer p,#carousel-banner footer p{color:black;text-align:left;font-size:110%;margin-top:2em}.arrow{color:white;text-shadow:0 1px 4px rgba(0,0,0,0.3);z-index:1;position:absolute;display:block;height:30px;width:30px;line-height:0px;font-size:0px;cursor:pointer;background:transparent;top:50%;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);padding:0;border:none;outline:none}.arrow.left{left:30px}.arrow.right{right:30px}.arrow:before{font-size:30px}.slick-list{overflow:visible}.slick-prev::before,.slick-next::before{color:inherit}@media only screen and (max-width: 1000px){.slick-dots{display:none !important}}@media only screen and (max-width: 480px){.navbar-pre .navbar-nav,#carousel-banner{display:none !important}#banner{margin-top:100px}}footer#footer{padding:6em 0;background-color:#2643A9;color:white}footer#footer a{color:#bab3e9}.copyright{background-color:#182a6b;color:white;text-align:center;font-size:70%}#news .panel-default{font-size:90%;padding-top:75%;position:relative;overflow:hidden;background:#3155d1}#news .panel-default img{position:absolute;top:0;left:0;width:100%;height:100%}#news .panel-default .panel-body{position:absolute;top:0;left:0;width:100%;height:100%;padding:0;transform:translateY(60%);background-color:rgba(38,67,169,0.8);transition:transform .65s}#news .panel-default .panel-body h3,#news .panel-default .panel-body p{color:white}#news .panel-default .panel-body h3{padding:15px;font-size:1.2em;margin:0;height:40%;display:table}#news .panel-default .panel-body h3 span{display:table-cell;vertical-align:bottom}#news .panel-default .panel-body p,#news .panel-default .panel-body a{font-size:.8em}#news .panel-default .panel-body p{padding:0 15px;line-height:1.2;margin:0}#news .panel-default .panel-body a{margin:10px 0 0 15px;text-align:center}#news .panel-default:hover .panel-body{transform:rotateY(0)}#news .panel-default a.fill{position:absolute;top:0;left:0;width:100%;height:100%;font-size:0}#news-details{background:white;padding-top:0}#news-details .category{margin-top:2em;display:inline-block;text-transform:uppercase;font-size:80%;letter-spacing:2px}#news-details .category span{border-bottom:1px solid #666}#news-details .date{color:#999;font-size:90%;text-transform:uppercase;margin-bottom:.5em}#news-details hr{margin-left:0;width:100px}#news-details .author{color:#999;font-size:90%;text-transform:uppercase;font-style:italic}#news-details .backlink{margin-top:3em}#news-details .img-responsive{width:100%}#news-details .links{display:inline-block;border-bottom:1px solid #999;padding:1em;margin:0em;list-style-type:none}#news-details .links li:first-child{display:none}#contact-page form label{width:15em;border-bottom:1px dashed #ccc;line-height:166%;vertical-align:top}#contact-page form label:only-child{width:auto;border:none}#contact-page form>p label{font-weight:bold}#contact-page form ul{list-style:none}#contact-page form ul label{width:auto}#contact-page form .helptext{margin-bottom:1em;display:block;font-size:90%}#search-form input{float:left;width:auto;color:white}#search-form button{background:none;border:none;padding-top:0.5em}body{margin-top:104px}section{padding:6em 0}section:nth-child(odd){background-color:#eee}section h2{text-align:center;margin-bottom:1.5em;text-transform:uppercase}.rich-text img{max-width:100%;height:auto}.richtext-image.left{float:left}.richtext-image.right{float:right}.responsive-object{position:relative}.responsive-object iframe,.responsive-object object,.responsive-object embed{position:absolute;top:0;left:0;width:100%;height:100%}article footer .btn{margin-bottom:1em} diff --git a/publichealth/static/mockup/assets/css/slick.css b/publichealth/static/mockup/assets/css/slick.css deleted file mode 100644 index a922930..0000000 --- a/publichealth/static/mockup/assets/css/slick.css +++ /dev/null @@ -1,204 +0,0 @@ -@charset "UTF-8"; -/* Slider */ -.slick-slider { - position: relative; - display: block; - box-sizing: border-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - -ms-touch-action: pan-y; - touch-action: pan-y; - -webkit-tap-highlight-color: transparent; } - -.slick-list { - position: relative; - overflow: hidden; - display: block; - margin: 0; - padding: 0; } - .slick-list:focus { - outline: none; } - .slick-list.dragging { - cursor: pointer; - cursor: hand; } - -.slick-slider .slick-track, -.slick-slider .slick-list { - -webkit-transform: translate3d(0, 0, 0); - -moz-transform: translate3d(0, 0, 0); - -ms-transform: translate3d(0, 0, 0); - -o-transform: translate3d(0, 0, 0); - transform: translate3d(0, 0, 0); } - -.slick-track { - position: relative; - left: 0; - top: 0; - display: block; } - .slick-track:before, .slick-track:after { - content: ""; - display: table; } - .slick-track:after { - clear: both; } - .slick-loading .slick-track { - visibility: hidden; } - -.slick-slide { - float: left; - height: 100%; - min-height: 1px; - display: none; } - [dir="rtl"] .slick-slide { - float: right; } - .slick-slide img { - display: block; } - .slick-slide.slick-loading img { - display: none; } - .slick-slide.dragging img { - pointer-events: none; } - .slick-initialized .slick-slide { - display: block; } - .slick-loading .slick-slide { - visibility: hidden; } - .slick-vertical .slick-slide { - display: block; - height: auto; - border: 1px solid transparent; } - -.slick-arrow.slick-hidden { - display: none; } - -/* Slider */ -.slick-loading .slick-list { - background: #fff url("./ajax-loader.gif") center center no-repeat; } - -/* Icons */ -@font-face { - font-family: "slick"; - src: url("../fonts/slick.eot"); - src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg"); - font-weight: normal; - font-style: normal; } - -/* Arrows */ -.slick-prev, -.slick-next { - z-index: 1; - position: absolute; - display: block; - height: 30px; - width: 30px; - line-height: 0px; - font-size: 0px; - cursor: pointer; - background: transparent; - color: transparent; - top: 50%; - -webkit-transform: translate(0, -50%); - -ms-transform: translate(0, -50%); - transform: translate(0, -50%); - padding: 0; - border: none; - outline: none; } - .slick-prev:hover, .slick-prev:focus, - .slick-next:hover, - .slick-next:focus { - outline: none; - background: transparent; - color: transparent; } - .slick-prev:hover:before, .slick-prev:focus:before, - .slick-next:hover:before, - .slick-next:focus:before { - opacity: 1; } - .slick-prev.slick-disabled:before, - .slick-next.slick-disabled:before { - opacity: 0.25; } - .slick-prev:before, - .slick-next:before { - font-family: "slick"; - font-size: 30px; - line-height: 1; - color: white; - opacity: 0.75; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - -.slick-prev { - left: 25px; } - [dir="rtl"] .slick-prev { - left: auto; - right: -25px; } - .slick-prev:before { - content: "←"; } - [dir="rtl"] .slick-prev:before { - content: "→"; } - -.slick-next { - right: 25px; } - [dir="rtl"] .slick-next { - left: -25px; - right: auto; } - .slick-next:before { - content: "→"; } - [dir="rtl"] .slick-next:before { - content: "←"; } - -/* Dots */ -.slick-dotted.slick-slider { - margin-bottom: 30px; } - -.slick-dots { - position: absolute; - bottom: -25px; - list-style: none; - display: block; - text-align: center; - padding: 0; - margin: 0; - width: 100%; } - .slick-dots li { - position: relative; - display: inline-block; - height: 20px; - width: 20px; - margin: 0 5px; - padding: 0; - cursor: pointer; } - .slick-dots li button { - border: 0; - background: transparent; - display: block; - height: 20px; - width: 20px; - outline: none; - line-height: 0px; - font-size: 0px; - color: transparent; - padding: 5px; - cursor: pointer; } - .slick-dots li button:hover, .slick-dots li button:focus { - outline: none; } - .slick-dots li button:hover:before, .slick-dots li button:focus:before { - opacity: 1; } - .slick-dots li button:before { - position: absolute; - top: 0; - left: 0; - content: "•"; - width: 20px; - height: 20px; - font-family: "slick"; - font-size: 13px; - line-height: 20px; - text-align: center; - color: black; - opacity: 0.25; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; } - .slick-dots li.slick-active button:before { - color: black; - opacity: 0.75; } diff --git a/publichealth/static/mockup/assets/libs b/publichealth/static/mockup/assets/libs deleted file mode 120000 index 2ce3479..0000000 --- a/publichealth/static/mockup/assets/libs +++ /dev/null @@ -1 +0,0 @@ -../../../static/libs \ No newline at end of file diff --git a/publichealth/static/mockup/images b/publichealth/static/mockup/images deleted file mode 120000 index 5e67573..0000000 --- a/publichealth/static/mockup/images +++ /dev/null @@ -1 +0,0 @@ -../images \ No newline at end of file diff --git a/publichealth/templates/500.html b/publichealth/templates/500.html index 2a5be4c..3542ce4 100644 --- a/publichealth/templates/500.html +++ b/publichealth/templates/500.html @@ -1,8 +1,5 @@ - - - - + diff --git a/publichealth/templates/base.html b/publichealth/templates/base.html index df87e5f..7680ee9 100644 --- a/publichealth/templates/base.html +++ b/publichealth/templates/base.html @@ -1,11 +1,6 @@ {% load compress static wagtailuserbar %} - - - - - - + @@ -14,14 +9,15 @@ {% compress css %} - - + {% block extra_css %}{% endblock %} {% endcompress %} - {% block extra_css %} - - {% endblock %} + + diff --git a/publichealth/templates/footer.html b/publichealth/templates/footer.html index 3ecc0fe..3bcb9e2 100644 --- a/publichealth/templates/footer.html +++ b/publichealth/templates/footer.html @@ -17,11 +17,13 @@ + +
{% contact_info %}
- {% contact_form %} + {% footer_form %}
diff --git a/publichealth/templates/header.html b/publichealth/templates/header.html index 8d5f9c8..8b56123 100644 --- a/publichealth/templates/header.html +++ b/publichealth/templates/header.html @@ -1,11 +1,14 @@ -{% load wagtailcore_tags navigation information %} +{% load static wagtailcore_tags navigation information %} {% get_site_root as site_root %}