From 46135addee8708dc5e21692319e7d449e373a2bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=AC=E7=9D=80=E6=83=85=E6=AD=8C=E6=B5=81=E6=B3=AA?= Date: Sun, 5 Jun 2016 13:05:28 +0800 Subject: [PATCH 01/22] Update 2016-06-05T05:05:23.274Z --- .gitignore | 33 -- docs/CNAME => CNAME | 0 LICENSE | 201 --------- README.md | 1 - assets/images/.gitkeep | 0 docs.css | 6 + docs/_config.yml | 12 - docs/_data/.gitkeep | 0 docs/_includes/sidenav.html | 8 - docs/_plugins/example.rb | 78 ---- docs/guide.md | 7 - docs/index.md | 25 -- docs/less/main.less | 94 ---- docs/pcui.md | 7 - docs/svn.md | 7 - docs/team.md | 19 - .../_layouts/default.html => guide/index.html | 43 +- gulpfile.js | 177 -------- index.html | 99 ++++ index.js | 21 - less/components/alerts.less | 51 --- less/components/badges.less | 35 -- less/components/blankslate.less | 66 --- less/components/button-dropdown.less | 323 ------------- less/components/button-groups.less | 101 ----- less/components/buttons.less | 215 --------- less/components/code.less | 60 --- less/components/filter-list.less | 36 -- less/components/forms.less | 149 ------ less/components/input-groups.less | 166 ------- less/components/labels.less | 43 -- less/components/links.less | 42 -- less/components/list-groups.less | 101 ----- less/components/markdown.less | 6 - less/components/modals.less | 117 ----- less/components/pagehead.less | 159 ------- less/components/pagination.less | 73 --- less/components/panels.less | 234 ---------- less/components/spinner.less | 55 --- less/components/switch.less | 121 ----- less/components/tables.less | 218 --------- less/components/tabs.less | 81 ---- less/components/tooltips.less | 100 ----- less/fonts/octicons.less | 38 -- {docs/less => less}/highlight.less | 0 less/layout/body.less | 8 - less/layout/footer.less | 47 -- less/layout/header.less | 85 ---- less/layout/wrapper.less | 10 - less/main.less | 147 +++--- less/utils/flex.less | 136 ------ less/utils/grid.less | 93 ---- less/utils/highlight.less | 89 ---- less/utils/mixins.less | 196 -------- less/utils/pull.less | 7 - less/utils/reset.less | 424 ------------------ less/utils/sr.less | 10 - less/utils/typography.less | 278 ------------ less/variables.less | 393 ---------------- package.json | 40 -- pcui/index.html | 81 ++++ svn/index.html | 81 ++++ team/index.html | 93 ++++ 63 files changed, 473 insertions(+), 5173 deletions(-) delete mode 100644 .gitignore rename docs/CNAME => CNAME (100%) delete mode 100755 LICENSE delete mode 100755 README.md delete mode 100755 assets/images/.gitkeep create mode 100755 docs.css delete mode 100755 docs/_config.yml delete mode 100755 docs/_data/.gitkeep delete mode 100755 docs/_includes/sidenav.html delete mode 100755 docs/_plugins/example.rb delete mode 100644 docs/guide.md delete mode 100755 docs/index.md delete mode 100755 docs/less/main.less delete mode 100644 docs/pcui.md delete mode 100644 docs/svn.md delete mode 100644 docs/team.md rename docs/_layouts/default.html => guide/index.html (63%) mode change 100755 => 100644 delete mode 100755 gulpfile.js create mode 100644 index.html delete mode 100755 index.js delete mode 100755 less/components/alerts.less delete mode 100755 less/components/badges.less delete mode 100755 less/components/blankslate.less delete mode 100755 less/components/button-dropdown.less delete mode 100755 less/components/button-groups.less delete mode 100755 less/components/buttons.less delete mode 100755 less/components/code.less delete mode 100755 less/components/filter-list.less delete mode 100755 less/components/forms.less delete mode 100755 less/components/input-groups.less delete mode 100755 less/components/labels.less delete mode 100755 less/components/links.less delete mode 100755 less/components/list-groups.less delete mode 100755 less/components/markdown.less delete mode 100755 less/components/modals.less delete mode 100755 less/components/pagehead.less delete mode 100755 less/components/pagination.less delete mode 100755 less/components/panels.less delete mode 100755 less/components/spinner.less delete mode 100755 less/components/switch.less delete mode 100755 less/components/tables.less delete mode 100755 less/components/tabs.less delete mode 100755 less/components/tooltips.less delete mode 100755 less/fonts/octicons.less rename {docs/less => less}/highlight.less (100%) delete mode 100755 less/layout/body.less delete mode 100755 less/layout/footer.less delete mode 100755 less/layout/header.less delete mode 100755 less/layout/wrapper.less delete mode 100755 less/utils/flex.less delete mode 100755 less/utils/grid.less delete mode 100755 less/utils/highlight.less delete mode 100755 less/utils/mixins.less delete mode 100755 less/utils/pull.less delete mode 100755 less/utils/reset.less delete mode 100755 less/utils/sr.less delete mode 100755 less/utils/typography.less delete mode 100755 less/variables.less delete mode 100644 package.json create mode 100644 pcui/index.html create mode 100644 svn/index.html create mode 100644 team/index.html diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 340274d..0000000 --- a/.gitignore +++ /dev/null @@ -1,33 +0,0 @@ -# Logs -logs -*.log - -# Runtime data -pids -*.pid -*.seed - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Compiled binary addons (http://nodejs.org/api/addons.html) -build/Release - -# Dependency directory -# Deployed apps should consider commenting this line out: -# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git -node_modules - -.publish -.release -docs/_site -docs/_data/* -!docs/_data/.gitkeep -assets/fonts/octicons -assets/images/logo diff --git a/docs/CNAME b/CNAME similarity index 100% rename from docs/CNAME rename to CNAME diff --git a/LICENSE b/LICENSE deleted file mode 100755 index 3e53c4e..0000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ -Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "{}" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright 2014 FriendCode Inc. - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/README.md b/README.md deleted file mode 100755 index 2efe28d..0000000 --- a/README.md +++ /dev/null @@ -1 +0,0 @@ -# FED Guide diff --git a/assets/images/.gitkeep b/assets/images/.gitkeep deleted file mode 100755 index e69de29..0000000 diff --git a/docs.css b/docs.css new file mode 100755 index 0000000..925d67c --- /dev/null +++ b/docs.css @@ -0,0 +1,6 @@ +/*! + * FED Guide v1.0.0 + * Copyright 2016 + */ +@font-face{font-family:octicons;src:url(/assets/fonts/octicons/octicons.eot?#iefix&v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('embedded-opentype'),url(/assets/fonts/octicons/octicons.woff?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('woff'),url(/assets/fonts/octicons/octicons.ttf?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('truetype'),url(/assets/fonts/octicons/octicons.svg?v=83cf61c381c06806e0a3925d1a13c772b25161d2#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-bold:before{content:'\f0e2'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-italic:before{content:'\f0e4'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-gist:before{content:'\f0ad'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-smiley:before{content:'\f0e7'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-tasklist:before{content:'\f0e5'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-text-size:before{content:'\f0e3'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-verified:before{content:'\f0e6'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body .octicon{font-size:inherit;line-height:inherit}.icon-spin{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.icon-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:500}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:500}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.btn-toolbar,.clearfix,.dl-horizontal dd{zoom:1}.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.dl-horizontal dd:after,.dl-horizontal dd:before{content:"";display:table}.btn-toolbar:after,.clearfix:after,.dl-horizontal dd:after{clear:both}.hidden{display:none}.container{position:relative;width:100%;max-width:1200px;margin:0;padding:0;margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.container.container-fluid{padding:0}.container [class*=col-]{float:left;width:100%;padding-left:15px;padding-right:15px}@media (min-width:510px){.container{max-width:510px}.container .col-xs-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-0{margin-left:0}.container .col-xs-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-1{margin-left:8.33333333%}.container .col-xs-3{width:25%;padding-left:15px;padding-right:15px}.container .col-xs-offset-2{margin-left:16.66666667%}.container .col-xs-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-3{margin-left:25%}.container .col-xs-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-4{margin-left:33.33333333%}.container .col-xs-6{width:50%;padding-left:15px;padding-right:15px}.container .col-xs-offset-5{margin-left:41.66666667%}.container .col-xs-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-6{margin-left:50%}.container .col-xs-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-7{margin-left:58.33333333%}.container .col-xs-9{width:75%;padding-left:15px;padding-right:15px}.container .col-xs-offset-8{margin-left:66.66666667%}.container .col-xs-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-9{margin-left:75%}.container .col-xs-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-10{margin-left:83.33333333%}.container .col-xs-12{width:100%;padding-left:15px;padding-right:15px}.container .col-xs-offset-11{margin-left:91.66666667%}}@media (min-width:750px){.container{max-width:750px}.container .col-sm-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-0{margin-left:0}.container .col-sm-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-1{margin-left:8.33333333%}.container .col-sm-3{width:25%;padding-left:15px;padding-right:15px}.container .col-sm-offset-2{margin-left:16.66666667%}.container .col-sm-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-3{margin-left:25%}.container .col-sm-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-4{margin-left:33.33333333%}.container .col-sm-6{width:50%;padding-left:15px;padding-right:15px}.container .col-sm-offset-5{margin-left:41.66666667%}.container .col-sm-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-6{margin-left:50%}.container .col-sm-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-7{margin-left:58.33333333%}.container .col-sm-9{width:75%;padding-left:15px;padding-right:15px}.container .col-sm-offset-8{margin-left:66.66666667%}.container .col-sm-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-9{margin-left:75%}.container .col-sm-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-10{margin-left:83.33333333%}.container .col-sm-12{width:100%;padding-left:15px;padding-right:15px}.container .col-sm-offset-11{margin-left:91.66666667%}}@media (min-width:970px){.container{max-width:970px}.container .col-md-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-0{margin-left:0}.container .col-md-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-1{margin-left:8.33333333%}.container .col-md-3{width:25%;padding-left:15px;padding-right:15px}.container .col-md-offset-2{margin-left:16.66666667%}.container .col-md-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-3{margin-left:25%}.container .col-md-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-4{margin-left:33.33333333%}.container .col-md-6{width:50%;padding-left:15px;padding-right:15px}.container .col-md-offset-5{margin-left:41.66666667%}.container .col-md-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-6{margin-left:50%}.container .col-md-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-7{margin-left:58.33333333%}.container .col-md-9{width:75%;padding-left:15px;padding-right:15px}.container .col-md-offset-8{margin-left:66.66666667%}.container .col-md-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-9{margin-left:75%}.container .col-md-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-10{margin-left:83.33333333%}.container .col-md-12{width:100%;padding-left:15px;padding-right:15px}.container .col-md-offset-11{margin-left:91.66666667%}}@media (min-width:1200px){.container{max-width:1200px}.container .col-lg-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-0{margin-left:0}.container .col-lg-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-1{margin-left:8.33333333%}.container .col-lg-3{width:25%;padding-left:15px;padding-right:15px}.container .col-lg-offset-2{margin-left:16.66666667%}.container .col-lg-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-3{margin-left:25%}.container .col-lg-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-4{margin-left:33.33333333%}.container .col-lg-6{width:50%;padding-left:15px;padding-right:15px}.container .col-lg-offset-5{margin-left:41.66666667%}.container .col-lg-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-6{margin-left:50%}.container .col-lg-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-7{margin-left:58.33333333%}.container .col-lg-9{width:75%;padding-left:15px;padding-right:15px}.container .col-lg-offset-8{margin-left:66.66666667%}.container .col-lg-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-9{margin-left:75%}.container .col-lg-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-10{margin-left:83.33333333%}.container .col-lg-12{width:100%;padding-left:15px;padding-right:15px}.container .col-lg-offset-11{margin-left:91.66666667%}}.row{margin-left:-15px;margin-right:-15px;zoom:1}.row:after,.row:before{content:"";display:table}.row:after{clear:both}@media (min-width:0) and (max-width:749px){.visible-xs{display:block!important}.hidden-xs{display:none!important}}@media (min-width:750px) and (max-width:969px){.visible-sm{display:block!important}.hidden-sm{display:none!important}}@media (min-width:970px) and (max-width:1199px){.visible-md{display:block!important}.hidden-md{display:none!important}}@media (min-width:970px){.visible-lg{display:block!important}.hidden-lg{display:none!important}}.hljs-comment,.hljs-title{color:#8e908c}.css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title{color:#c82829}.hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor{color:#f5871f}.css .hljs-rules .hljs-attribute,.ruby .hljs-class .hljs-title{color:#eab700}.hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{background:#fff;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript{opacity:.5}.pull-right{float:right!important}.pull-left{float:left!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#737373}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}b,strong{font-weight:700}p{margin:0 0 10px}p.after{margin:0;margin-top:10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:750px){.lead{font-size:21px}}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap,.text-overflow{white-space:nowrap}.text-overflow{overflow:hidden;text-overflow:ellipsis}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-warning{color:#8d7726}.text-danger{color:#911}.text-info{color:#246}.text-success{color:#3c763d}.text-muted{color:#737373}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:500}dd{margin-left:0}@media (min-width:750px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #737373}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#737373}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.checkbox-switch,.checkbox.checkbox-switch,.form-group .checkbox.checkbox-switch{padding-left:0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.checkbox-switch.switch-right,.checkbox.checkbox-switch.switch-right,.form-group .checkbox.checkbox-switch.switch-right{zoom:1}.checkbox-switch.switch-right:after,.checkbox-switch.switch-right:before,.checkbox.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:before,.form-group .checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:before{content:"";display:table}.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:after{clear:both}.checkbox-switch.switch-right input+span,.checkbox.checkbox-switch.switch-right input+span,.form-group .checkbox.checkbox-switch.switch-right input+span{float:right}.checkbox-switch.switch-xs input+span,.checkbox.checkbox-switch.switch-xs input+span,.form-group .checkbox.checkbox-switch.switch-xs input+span{font-size:12px}.checkbox-switch.switch-lg input+span,.checkbox.checkbox-switch.switch-lg input+span,.form-group .checkbox.checkbox-switch.switch-lg input+span{font-size:18px}.checkbox-switch input,.checkbox.checkbox-switch input,.form-group .checkbox.checkbox-switch input{opacity:0;position:absolute}.checkbox-switch input+span,.checkbox.checkbox-switch input+span,.form-group .checkbox.checkbox-switch input+span{font-size:16px;position:relative;display:inline-block;width:1.65em;height:1em;background:#fff;box-shadow:inset 0 0 0 .0625em #d4d4d4;border-radius:.5em;vertical-align:-.15em;transition:all .4s cubic-bezier(.17,.67,.43,.98)}.checkbox-switch:active input+span,.checkbox-switch input+span:active,.checkbox.checkbox-switch:active input+span,.checkbox.checkbox-switch input+span:active,.form-group .checkbox.checkbox-switch:active input+span,.form-group .checkbox.checkbox-switch input+span:active{box-shadow:inset 0 0 0 .73em #d4d4d4}.checkbox-switch input+span:after,.checkbox.checkbox-switch input+span:after,.form-group .checkbox.checkbox-switch input+span:after{position:absolute;display:block;content:'';width:.875em;height:.875em;border-radius:.4375em;top:.0625em;left:.0625em;background:#fff;box-shadow:inset 0 0 0 .03em rgba(0,0,0,.4),0 0 .05em rgba(0,0,0,.35),0 .1em .2em rgba(0,0,0,.4);transition:all .25s ease-out}.checkbox-switch:active input+span:after,.checkbox-switch input+span:active:after,.checkbox.checkbox-switch:active input+span:after,.checkbox.checkbox-switch input+span:active:after,.form-group .checkbox.checkbox-switch:active input+span:after,.form-group .checkbox.checkbox-switch input+span:active:after{width:1.15em}.checkbox-switch input:checked+span,.checkbox.checkbox-switch input:checked+span,.form-group .checkbox.checkbox-switch input:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}.checkbox-switch input:disabled+span,.checkbox.checkbox-switch input:disabled+span,.form-group .checkbox.checkbox-switch input:disabled+span{opacity:.6}.checkbox-switch input:checked+span:after,.checkbox.checkbox-switch input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:after{left:.7125em}.checkbox-switch:active input:checked+span:after,.checkbox-switch input:checked+span:active:after,.checkbox.checkbox-switch:active input:checked+span:after,.checkbox.checkbox-switch input:checked+span:active:after,.form-group .checkbox.checkbox-switch:active input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:active:after{left:.4375em}.checkbox-switch input:focus+span:after,.checkbox.checkbox-switch input:focus+span:after,.form-group .checkbox.checkbox-switch input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.15),0 0 .05em rgba(0,0,0,.08),0 .1em .2em rgba(0,0,0,.3);background:#fff}.checkbox-switch input:focus+span,.checkbox.checkbox-switch input:focus+span,.form-group .checkbox.checkbox-switch input:focus+span{box-shadow:inset 0 0 0 .0625em #dadada}.checkbox-switch input:focus:checked+span,.checkbox.checkbox-switch input:focus:checked+span,.form-group .checkbox.checkbox-switch input:focus:checked+span{box-shadow:inset 0 0 0 .73em #33be4b}.checkbox-switch:hover input:focus+span:after,.checkbox.checkbox-switch:hover input:focus+span:after,.form-group .checkbox.checkbox-switch:hover input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.1),0 0 .05em rgba(0,0,0,.05),0 .1em .2em rgba(0,0,0,.2);background:#fff}.checkbox-switch:hover input:focus+span,.checkbox.checkbox-switch:hover input:focus+span,.form-group .checkbox.checkbox-switch:hover input:focus+span{box-shadow:inset 0 0 0 .0625em #e9e9e9}.checkbox-switch:hover input:focus:checked+span,.checkbox.checkbox-switch:hover input:focus:checked+span,.form-group .checkbox.checkbox-switch:hover input:focus:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:3px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:500;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;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}a{text-decoration:none;color:#428bca}a:focus,a:hover{text-decoration:underline}a:visited{color:#428bca}.gb-markdown .muted-link,.gb-markdown .muted-link:visited,.muted-link,.muted-link:visited{color:#737373}.gb-markdown .muted-link:focus,.gb-markdown .muted-link:hover,.muted-link:focus,.muted-link:hover{text-decoration:none;color:#428bca}.gb-markdown .underlined-link,.underlined-link{color:inherit;text-decoration:underline}.gb-markdown .underlined-link:visited,.underlined-link:visited{color:inherit}.gb-markdown .underlined-link:focus,.gb-markdown .underlined-link:hover,.underlined-link:focus,.underlined-link:hover{text-decoration:underline;color:inherit}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#737373}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #d4d4d4;word-break:break-all}.table>thead>tr>th{vertical-align:bottom;background:#f5f5f5;border-bottom:1px solid #d4d4d4}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid #d4d4d4}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d4d4d4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#fcfcfc}.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-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:510px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d4d4d4}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.button-nobackground{background:transparent;border-color:transparent}.button-nobackground:focus,.button-nobackground:hover{color:#428bca;background:none;box-shadow:none}.button-nobackground.active{background:none;box-shadow:none;font-weight:500}.btn,.gb-markdown .btn,a.btn{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;cursor:pointer;display:inline-block;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.btn .caret,.gb-markdown .btn .caret,a.btn .caret{border-top-color:#333}.btn .octicon,.gb-markdown .btn .octicon,a.btn .octicon{line-height:1em}.btn.dropdown-toggle.open,.btn:focus,.btn:hover,.gb-markdown .btn.dropdown-toggle.open,.gb-markdown .btn:focus,.gb-markdown .btn:hover,a.btn.dropdown-toggle.open,a.btn:focus,a.btn:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}.btn.active,.btn:active,.gb-markdown .btn.active,.gb-markdown .btn:active,a.btn.active,a.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,.gb-markdown .btn.disabled,.gb-markdown .btn:disabled,a.btn.disabled,a.btn:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}.btn.disabled.tooltipped:after,.btn.disabled.tooltipped:before,.btn:disabled.tooltipped:after,.btn:disabled.tooltipped:before,.gb-markdown .btn.disabled.tooltipped:after,.gb-markdown .btn.disabled.tooltipped:before,.gb-markdown .btn:disabled.tooltipped:after,.gb-markdown .btn:disabled.tooltipped:before,a.btn.disabled.tooltipped:after,a.btn.disabled.tooltipped:before,a.btn:disabled.tooltipped:after,a.btn:disabled.tooltipped:before{display:none}.btn.btn-lg,.gb-markdown .btn.btn-lg,a.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.btn.btn-sm,.gb-markdown .btn.btn-sm,a.btn.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-xs,.gb-markdown .btn.btn-xs,a.btn.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-right,.gb-markdown .btn.btn-right,a.btn.btn-right{float:right!important;margin-left:16px}.btn.btn-left,.gb-markdown .btn.btn-left,a.btn.btn-left{float:left!important;margin-right:16px}.btn.btn-block,.gb-markdown .btn.btn-block,a.btn.btn-block{display:block;width:100%;text-align:center}.btn.btn-block+.btn-block,.gb-markdown .btn.btn-block+.btn-block,a.btn.btn-block+.btn-block{margin-top:5px}.btn.btn-link,.gb-markdown .btn.btn-link,a.btn.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-link .caret,.gb-markdown .btn.btn-link .caret,a.btn.btn-link .caret{border-top-color:#fff}.btn.btn-link.btn-link,.btn.btn-link.btn-noborder,.gb-markdown .btn.btn-link.btn-link,.gb-markdown .btn.btn-link.btn-noborder,a.btn.btn-link.btn-link,a.btn.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-link.btn-link:focus,.btn.btn-link.btn-link:hover,.btn.btn-link.btn-noborder:focus,.btn.btn-link.btn-noborder:hover,.gb-markdown .btn.btn-link.btn-link:focus,.gb-markdown .btn.btn-link.btn-link:hover,.gb-markdown .btn.btn-link.btn-noborder:focus,.gb-markdown .btn.btn-link.btn-noborder:hover,a.btn.btn-link.btn-link:focus,a.btn.btn-link.btn-link:hover,a.btn.btn-link.btn-noborder:focus,a.btn.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-link.active,.gb-markdown .btn.btn-link.active,a.btn.btn-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-text-link,.gb-markdown .btn.btn-text-link,a.btn.btn-text-link{background:transparent;border-color:transparent;color:inherit}.btn.btn-text-link:focus,.btn.btn-text-link:hover,.gb-markdown .btn.btn-text-link:focus,.gb-markdown .btn.btn-text-link:hover,a.btn.btn-text-link:focus,a.btn.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-text-link.active,.gb-markdown .btn.btn-text-link.active,a.btn.btn-text-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-count,.gb-markdown .btn.btn-count,a.btn.btn-count{color:#333;background:#fff}.btn.btn-count:focus,.btn.btn-count:hover,.gb-markdown .btn.btn-count:focus,.gb-markdown .btn.btn-count:hover,a.btn.btn-count:focus,a.btn.btn-count:hover{background:#fff;color:#428bca}.btn.btn-count.disabled,.btn.btn-count:disabled,.gb-markdown .btn.btn-count.disabled,.gb-markdown .btn.btn-count:disabled,a.btn.btn-count.disabled,a.btn.btn-count:disabled{background:#fff;color:#333}.btn.btn-count .caret,.gb-markdown .btn.btn-count .caret,a.btn.btn-count .caret{border-top-color:#333}.btn.btn-success,.gb-markdown .btn.btn-success,a.btn.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}.btn.btn-success:focus,.btn.btn-success:hover,.gb-markdown .btn.btn-success:focus,.gb-markdown .btn.btn-success:hover,a.btn.btn-success:focus,a.btn.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}.btn.btn-success .caret,.gb-markdown .btn.btn-success .caret,a.btn.btn-success .caret{border-top-color:#fff}.btn.btn-success.btn-link,.btn.btn-success.btn-noborder,.gb-markdown .btn.btn-success.btn-link,.gb-markdown .btn.btn-success.btn-noborder,a.btn.btn-success.btn-link,a.btn.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}.btn.btn-success.btn-link:focus,.btn.btn-success.btn-link:hover,.btn.btn-success.btn-noborder:focus,.btn.btn-success.btn-noborder:hover,.gb-markdown .btn.btn-success.btn-link:focus,.gb-markdown .btn.btn-success.btn-link:hover,.gb-markdown .btn.btn-success.btn-noborder:focus,.gb-markdown .btn.btn-success.btn-noborder:hover,a.btn.btn-success.btn-link:focus,a.btn.btn-success.btn-link:hover,a.btn.btn-success.btn-noborder:focus,a.btn.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}.btn.btn-success.btn-outline,.gb-markdown .btn.btn-success.btn-outline,a.btn.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}.btn.btn-success.btn-outline .caret,.gb-markdown .btn.btn-success.btn-outline .caret,a.btn.btn-success.btn-outline .caret{border-top-color:#5cb85c}.btn.btn-success.btn-outline:focus,.btn.btn-success.btn-outline:hover,.gb-markdown .btn.btn-success.btn-outline:focus,.gb-markdown .btn.btn-success.btn-outline:hover,a.btn.btn-success.btn-outline:focus,a.btn.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}.btn.btn-success.btn-outline:focus .caret,.btn.btn-success.btn-outline:hover .caret,.gb-markdown .btn.btn-success.btn-outline:focus .caret,.gb-markdown .btn.btn-success.btn-outline:hover .caret,a.btn.btn-success.btn-outline:focus .caret,a.btn.btn-success.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-success,.gb-markdown .btn.btn-text-success,a.btn.btn-text-success{color:#449d44}.btn.btn-primary,.gb-markdown .btn.btn-primary,a.btn.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover,.gb-markdown .btn.btn-primary:focus,.gb-markdown .btn.btn-primary:hover,a.btn.btn-primary:focus,a.btn.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-primary .caret,.gb-markdown .btn.btn-primary .caret,a.btn.btn-primary .caret{border-top-color:#fff}.btn.btn-primary.btn-link,.btn.btn-primary.btn-noborder,.gb-markdown .btn.btn-primary.btn-link,.gb-markdown .btn.btn-primary.btn-noborder,a.btn.btn-primary.btn-link,a.btn.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-primary.btn-link:focus,.btn.btn-primary.btn-link:hover,.btn.btn-primary.btn-noborder:focus,.btn.btn-primary.btn-noborder:hover,.gb-markdown .btn.btn-primary.btn-link:focus,.gb-markdown .btn.btn-primary.btn-link:hover,.gb-markdown .btn.btn-primary.btn-noborder:focus,.gb-markdown .btn.btn-primary.btn-noborder:hover,a.btn.btn-primary.btn-link:focus,a.btn.btn-primary.btn-link:hover,a.btn.btn-primary.btn-noborder:focus,a.btn.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-primary.btn-outline,.gb-markdown .btn.btn-primary.btn-outline,a.btn.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}.btn.btn-primary.btn-outline .caret,.gb-markdown .btn.btn-primary.btn-outline .caret,a.btn.btn-primary.btn-outline .caret{border-top-color:#428bca}.btn.btn-primary.btn-outline:focus,.btn.btn-primary.btn-outline:hover,.gb-markdown .btn.btn-primary.btn-outline:focus,.gb-markdown .btn.btn-primary.btn-outline:hover,a.btn.btn-primary.btn-outline:focus,a.btn.btn-primary.btn-outline:hover{background:#428bca;color:#fff}.btn.btn-primary.btn-outline:focus .caret,.btn.btn-primary.btn-outline:hover .caret,.gb-markdown .btn.btn-primary.btn-outline:focus .caret,.gb-markdown .btn.btn-primary.btn-outline:hover .caret,a.btn.btn-primary.btn-outline:focus .caret,a.btn.btn-primary.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-primary,.gb-markdown .btn.btn-text-primary,a.btn.btn-text-primary{color:#3071a9}.btn.btn-danger,.gb-markdown .btn.btn-danger,a.btn.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}.btn.btn-danger:focus,.btn.btn-danger:hover,.gb-markdown .btn.btn-danger:focus,.gb-markdown .btn.btn-danger:hover,a.btn.btn-danger:focus,a.btn.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}.btn.btn-danger .caret,.gb-markdown .btn.btn-danger .caret,a.btn.btn-danger .caret{border-top-color:#fff}.btn.btn-danger.btn-link,.btn.btn-danger.btn-noborder,.gb-markdown .btn.btn-danger.btn-link,.gb-markdown .btn.btn-danger.btn-noborder,a.btn.btn-danger.btn-link,a.btn.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}.btn.btn-danger.btn-link:focus,.btn.btn-danger.btn-link:hover,.btn.btn-danger.btn-noborder:focus,.btn.btn-danger.btn-noborder:hover,.gb-markdown .btn.btn-danger.btn-link:focus,.gb-markdown .btn.btn-danger.btn-link:hover,.gb-markdown .btn.btn-danger.btn-noborder:focus,.gb-markdown .btn.btn-danger.btn-noborder:hover,a.btn.btn-danger.btn-link:focus,a.btn.btn-danger.btn-link:hover,a.btn.btn-danger.btn-noborder:focus,a.btn.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}.btn.btn-danger.btn-outline,.gb-markdown .btn.btn-danger.btn-outline,a.btn.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}.btn.btn-danger.btn-outline .caret,.gb-markdown .btn.btn-danger.btn-outline .caret,a.btn.btn-danger.btn-outline .caret{border-top-color:#dd4b39}.btn.btn-danger.btn-outline:focus,.btn.btn-danger.btn-outline:hover,.gb-markdown .btn.btn-danger.btn-outline:focus,.gb-markdown .btn.btn-danger.btn-outline:hover,a.btn.btn-danger.btn-outline:focus,a.btn.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}.btn.btn-danger.btn-outline:focus .caret,.btn.btn-danger.btn-outline:hover .caret,.gb-markdown .btn.btn-danger.btn-outline:focus .caret,.gb-markdown .btn.btn-danger.btn-outline:hover .caret,a.btn.btn-danger.btn-outline:focus .caret,a.btn.btn-danger.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-danger,.gb-markdown .btn.btn-text-danger,a.btn.btn-text-danger{color:#c23321}.btn .btn-label,.gb-markdown .btn .btn-label,a.btn .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}.tooltipped{display:inline;position:relative}.tooltipped.tooltipped-o:after,.tooltipped:hover:after{line-height:1em;background:rgba(0,0,0,.8);border-radius:2px;top:calc(100% + 10px);color:#fff;content:attr(aria-label);padding:5px;white-space:nowrap;z-index:4;font-size:13px;text-transform:none;font-weight:400;pointer-events:none}.tooltipped.tooltipped-o:after,.tooltipped.tooltipped-o:before,.tooltipped:hover:after,.tooltipped:hover:before{bottom:auto;display:block;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped.tooltipped-o:before,.tooltipped:hover:before{border:solid;border-color:rgba(0,0,0,.8) transparent;top:calc(100% + 5px);border-width:0 5px 5px;content:"";z-index:5}.tooltipped.tooltipped-e:after{left:5px}.tooltipped.tooltipped-e:after,.tooltipped.tooltipped-e:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-e:before{left:10px}.tooltipped.tooltipped-n:after{bottom:calc(100% + 10px)}.tooltipped.tooltipped-n:after,.tooltipped.tooltipped-n:before{top:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-n:before{border-width:5px 5px 0;bottom:calc(100% + 5px)}.tooltipped.tooltipped-ne:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:after{left:5px}.tooltipped.tooltipped-ne:after,.tooltipped.tooltipped-ne:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{left:10px}.tooltipped.tooltipped-nw:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:after{right:5px}.tooltipped.tooltipped-nw:after,.tooltipped.tooltipped-nw:before{left:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{right:10px}.tooltipped.tooltipped-sw:after,.tooltipped.tooltipped-w:after{left:auto;right:5px;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-sw:before,.tooltipped.tooltipped-w:before{left:auto;right:10px;-webkit-transform:translateX(0);transform:translateX(0)}.btn-group{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn{position:relative;float:left}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group.btn-group-block{width:100%;display:block}.btn-group .btn+.btn,.btn-group .btn-group+.btn{border-left:0}.btn-group .btn+.btn-group,.btn-group .btn-group+.btn-group{margin-left:-1px}.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-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{text-align:center;float:none;display:table-cell;width:1%}.btn-group.btn-group-justified>.btn-group .btn{width:100%}.btn-group.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-toolbar>.btn-toolbar{float:left;margin:0}.btn-toolbar.prepend{margin-bottom:20px}.caret{display:inline-block;width:0;height:0;content:"";vertical-align:-2px;border:4px solid #b3b3b1;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.btn-group.dropdown,.dropdown{position:relative;text-align:left;color:#333}.btn-group.dropdown.btn-group-block .dropdown-menu,.dropdown.btn-group-block .dropdown-menu{min-width:100%}.btn-group.dropdown>.dropdown-menu,.dropdown>.dropdown-menu{position:absolute;top:100%;right:0}.btn-group.dropdown.inner>.dropdown-menu,.btn-group.dropdown.open>.dropdown-menu,.dropdown.inner>.dropdown-menu,.dropdown.open>.dropdown-menu{display:block}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu,.dropdown:not(.contextmenu)>.dropdown-menu{margin-top:12px;overflow:visible!important}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu{left:0;right:auto}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{right:auto;left:16px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.btn-group.dropdown.contextmenu,.dropdown.contextmenu{position:fixed;z-index:7}.btn-group.dropdown.contextmenu .dropdown-menu,.dropdown.contextmenu .dropdown-menu{display:block;position:absolute;top:0;left:0}.btn-group.dropdown.contextmenu.contextmenu-w .dropdown-menu,.dropdown.contextmenu.contextmenu-w .dropdown-menu{left:auto;right:0}.btn-group.dropdown.contextmenu.contextmenu-n .dropdown-menu,.dropdown.contextmenu.contextmenu-n .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup>.dropdown-menu,.dropdown.dropup>.dropdown-menu{position:absolute;top:auto;bottom:100%}.btn-group.dropdown.dropup>.dropdown-menu li .dropdown-menu,.dropdown.dropup>.dropdown-menu li .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu,.dropdown.dropup:not(.contextmenu)>.dropdown-menu{margin-top:0;margin-bottom:12px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{top:100%;bottom:auo;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-top-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-top-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.dropdown-w>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu,.dropdown.pull-right>.dropdown-menu{left:auto;right:0}.btn-group.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu li>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.dropdown.pull-right>.dropdown-menu li>.dropdown-menu{left:auto;right:100%}.dropdown-menu,.dropdown .dropdown-menu{display:none;position:relative;z-index:3;list-style:none;border:1px solid #c9c9c9;background:#fff;min-width:160px;margin:0;padding:0;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.15);padding-top:5px;padding-bottom:5px}.dropdown-menu.inner,.dropdown-menu.open,.dropdown .dropdown-menu.inner,.dropdown .dropdown-menu.open{display:block}.dropdown-menu>li,.dropdown .dropdown-menu>li{margin:0;padding:0;position:relative}.dropdown-menu>li.divider,.dropdown .dropdown-menu>li.divider{height:1px;margin:5px 1px;background-color:#e5e5e5}.dropdown-menu>li.dropdown-header,.dropdown .dropdown-menu>li.dropdown-header{padding:4px 10px;font-size:12px;color:#999}.dropdown-menu>li.disabled:hover>a,.dropdown-menu>li.disabled:hover>a:hover,.dropdown-menu>li.disabled>a,.dropdown-menu>li.disabled>a:hover,.dropdown .dropdown-menu>li.disabled:hover>a,.dropdown .dropdown-menu>li.disabled:hover>a:hover,.dropdown .dropdown-menu>li.disabled>a,.dropdown .dropdown-menu>li.disabled>a:hover{cursor:default;background:transparent;color:#b3b3b1;pointer-events:none}.dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown-menu>li.disabled>.dropdown-menu,.dropdown .dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown .dropdown-menu>li.disabled>.dropdown-menu{display:none}.dropdown-menu>li>a,.dropdown .dropdown-menu>li>a{padding:4px 10px;cursor:default;color:inherit;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;text-shadow:none}.dropdown-menu>li>a .help-label,.dropdown .dropdown-menu>li>a .help-label{font-size:12px;color:#b3b3b1;margin-left:10px}.dropdown-menu>li>a:hover,.dropdown .dropdown-menu>li>a:hover{text-decoration:none;text-shadow:none;background:#428bca;color:#fff}.dropdown-menu>li>a:hover .help-label,.dropdown-menu>li>a:hover .text-muted,.dropdown .dropdown-menu>li>a:hover .help-label,.dropdown .dropdown-menu>li>a:hover .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>a:hover .dropdown-icon,.dropdown .dropdown-menu>li>a:hover .dropdown-icon{color:inherit}.dropdown-menu>li>a:not(:last-child),.dropdown .dropdown-menu>li>a:not(:last-child){position:relative}.dropdown-menu>li>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):after{bottom:9px;right:6px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-left-color:#b3b3b1;border-width:5px;margin-right:-5px}.dropdown-menu>li.active>a:not(:last-child):after,.dropdown-menu>li>a:not(:last-child):hover:after,.dropdown .dropdown-menu>li.active>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):hover:after{border-left-color:#fff}.dropdown-menu>li.active>a,.dropdown .dropdown-menu>li.active>a{background:#428bca;color:#fff}.dropdown-menu>li.active>a .help-label,.dropdown-menu>li.active>a .text-muted,.dropdown .dropdown-menu>li.active>a .help-label,.dropdown .dropdown-menu>li.active>a .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>.dropdown-menu,.dropdown .dropdown-menu>li>.dropdown-menu{position:absolute;right:auto;left:100%;margin-top:0;top:0;margin-top:-1px}.dropdown-menu>li:hover>.dropdown-menu,.dropdown .dropdown-menu>li:hover>.dropdown-menu{display:block}.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-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#333;text-align:center;background-color:#f5f5f5;border:1px solid #d4d4d4;border-radius:3px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:4px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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}.alert{border:1px solid #d4d4d4;background:#f5f5f5;border-radius:4px;padding:15px;margin-bottom:20px}.alert.alert-danger{background:#fcdede;border-color:#d2b2b2;color:#911}.alert.alert-warning{background:#fff2d0;border-color:#d6cdb1;color:#8d7726}.alert.alert-info{background:#e2eef9;border-color:#bac6d3;color:#246}.alert.alert-success{background:#dff0d8;border-color:#c0d1d0;color:#3c763d}.alert .alert-btn{display:inline-block;float:right;color:inherit;border-radius:3px;padding:0;opacity:.6;padding:0 5px}.alert a.alert-btn{text-decoration:none}.alert a.alert-btn:focus,.alert a.alert-btn:hover{opacity:.8;text-decoration:none}.gb-markdown{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.gb-markdown *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.gb-markdown>:first-child{margin-top:0!important}.gb-markdown>:last-child{margin-bottom:0!important}.gb-markdown blockquote,.gb-markdown code,.gb-markdown figure,.gb-markdown img,.gb-markdown pre,.gb-markdown table,.gb-markdown tr{page-break-inside:avoid}.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown p{orphans:3;widows:3}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5{page-break-after:avoid}.gb-markdown b,.gb-markdown strong{font-weight:700}.gb-markdown em{font-style:italic}.gb-markdown blockquote,.gb-markdown dl,.gb-markdown ol,.gb-markdown p,.gb-markdown table,.gb-markdown ul{margin-top:0;margin-bottom:.85em}.gb-markdown a{color:#4183c4;text-decoration:none;background:transparent}.gb-markdown a:active,.gb-markdown a:focus,.gb-markdown a:hover{outline:0;text-decoration:underline}.gb-markdown img{border:0;max-width:100%}.gb-markdown hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.gb-markdown hr:after,.gb-markdown hr:before{display:table;content:" "}.gb-markdown hr:after{clear:both}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.gb-markdown h1{font-size:2em}.gb-markdown h2{font-size:1.75em}.gb-markdown h3{font-size:1.5em}.gb-markdown h4{font-size:1.25em}.gb-markdown h5{font-size:1em}.gb-markdown h6{font-size:1em;color:#777}.gb-markdown code,.gb-markdown pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.gb-markdown pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.gb-markdown pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:transparent}.gb-markdown pre>code:after,.gb-markdown pre>code:before{content:normal}.gb-markdown code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.gb-markdown code:after,.gb-markdown code:before{letter-spacing:-.2em;content:"\00a0"}.gb-markdown table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.gb-markdown table td,.gb-markdown table th{padding:6px 13px;border:1px solid #ddd}.gb-markdown table tr{background-color:#fff;border-top:1px solid #ccc}.gb-markdown table tr:nth-child(2n){background-color:#f8f8f8}.gb-markdown table th{font-weight:700}.gb-markdown ol,.gb-markdown ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.gb-markdown ol ol,.gb-markdown ol ul,.gb-markdown ul ol,.gb-markdown ul ul{margin-top:0;margin-bottom:0}.gb-markdown ol ol{list-style-type:lower-roman}.gb-markdown blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.gb-markdown blockquote:first-child{margin-top:0}.gb-markdown blockquote:last-child{margin-bottom:0}.gb-markdown dl{padding:0}.gb-markdown dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.gb-markdown dl dd{padding:0 .85em;margin-bottom:.85em}.gb-markdown dd{margin-left:0}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:2px;color:#333;box-shadow:0 1px 1px rgba(0,0,0,.05)}.btn-toolbar+.panel{margin-top:20px}.panel .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel .panel-heading .panel-title{margin:0;padding:0;font-size:inherit;font-weight:500;line-height:19px;margin-top:-2px;margin-bottom:-2px}.panel .panel-heading .panel-title a{color:inherit}.panel .panel-heading .panel-title a:focus,.panel .panel-heading .panel-title a:hover{text-decoration:none;color:inherit}.panel .panel-heading .panel-title.large{text-align:center;font-size:22px;font-weight:400}.panel .panel-heading .panel-toolbar{float:right;margin-top:-5px;margin-right:-5px}.panel .panel-heading .panel-toolbar .btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.panel>.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.panel>.blankslate.with-background{border-radius:0;border:0}.panel>hr{margin:0}.panel .panel-body{padding:15px}.panel .panel-footer{padding:10px 15px;background-color:#fcfcfc;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel.panel-default{border-color:#d4d4d4}.panel.panel-default .panel-heading{color:#333;background-color:#f5f5f5;border-color:#d4d4d4}.panel.panel-danger{border-color:#d2b2b2}.panel.panel-danger .panel-heading{color:#911;background-color:#fcdede;border-color:#d2b2b2}.panel.panel-warning{border-color:#d6cdb1}.panel.panel-warning .panel-heading{color:#8d7726;background-color:#fff2d0;border-color:#d6cdb1}.panel.panel-info{border-color:#bac6d3}.panel.panel-info .panel-heading{color:#246;background-color:#e2eef9;border-color:#bac6d3}.panel.panel-success{border-color:#c0d1d0}.panel.panel-success .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#c0d1d0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d4d4d4}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.list-group{padding:0;margin:0;list-style:none;margin-bottom:20px;padding-left:0}.list-group li.list-group-item a{color:inherit;text-decoration:none}.list-group .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;color:#555;background-color:#fff;border:1px solid #d4d4d4}.list-group .list-group-item:focus,.list-group .list-group-item:hover{text-decoration:none;background:#f8f8f8}.list-group .list-group-item.active{color:#dd4b39;border-left:4px solid #dd4b39!important;font-weight:500;padding-left:11px}.list-group .list-group-item:first-child{margin-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.list-group .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.list-group .list-group-item .list-image{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-right:5px;width:20px;height:20px}.list-group .list-group-item .badge{display:inline-block;padding:3px 7px;font-size:12px;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;border-radius:10px;float:right}.list-group .list-group-item i.pull-right{float:right;margin-top:3px}.modal>.list-group,.panel>.list-group{margin:0}.modal>.list-group .list-group-item,.panel>.list-group .list-group-item{border-left:0;border-right:0}.modal>.list-group .list-group-item:first-child,.panel>.list-group .list-group-item:first-child{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0}.modal>.list-group .list-group-item:last-child,.panel>.list-group .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.filter-list,ul.filter-list{list-style:none;margin:0;padding:0;margin-bottom:20px}.filter-list li .filter-item,ul.filter-list li .filter-item{position:relative;display:block;padding:6px 12px;margin-bottom:5px;font-size:14px;color:#737373;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px}.filter-list li .filter-item .count,ul.filter-list li .filter-item .count{float:right;font-weight:500}.filter-list li .filter-item:hover,ul.filter-list li .filter-item:hover{text-decoration:none;color:#737373;background-color:#eee}.filter-list li .filter-item.selected,.filter-list li .filter-item.selected:hover,ul.filter-list li .filter-item.selected,ul.filter-list li .filter-item.selected:hover{color:#fff;background-color:#428bca}.modal-backdrop{background:rgba(0,0,0,.55);position:fixed;top:0;bottom:0;left:0;right:0;z-index:6;overflow-y:auto}.modal-backdrop.white{background:hsla(0,0%,100%,.55)}.modal{border:1px solid rgba(0,0,0,.65);border-radius:4px;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.5);width:600px;margin:30px auto}.modal.without-backdrop{border-color:#d4d4d4;box-shadow:0 1px 2px #ddd}.modal .modal-heading+.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.modal .modal-heading{position:relative;padding:15px;border-bottom:1px solid #e5e5e5}.modal .modal-heading h4{margin:0}.modal .modal-heading .modal-close{position:absolute;line-height:24px;top:50%;margin-top:-15px;right:15px;color:#d4d4d4;font-size:30px}.modal .modal-heading .modal-close:hover{color:#bbb;text-decoration:none}.modal .modal-body{padding:15px}.modal .modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal.modal-sm{width:400px;margin:30px auto}.modal.modal-lg{width:800px;margin:30px auto}.modal.modal-fullscreen{display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;margin:0;position:absolute;top:30px;bottom:30px;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.modal.modal-fullscreen .modal-heading{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.modal.modal-fullscreen .modal-body{position:relative;-moz-flex-grow:1000000;-ms-flex-grow:1000000;flex-grow:1000000}.modal.modal-fullscreen .modal-footer{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}@-webkit-keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.gb-spinner{display:inline-block;border-radius:100%;border:5px solid #f5f5f5;border-bottom-color:#428bca;-webkit-animation:b 1.5s 0s linear infinite;-moz-animation:b 1.5s 0s linear infinite;-ms-animation:b 1.5s 0s linear infinite;width:30px;height:30px;border-width:3px}.gb-spinner.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.gb-spinner.spinner-sm{width:12px;height:12px;border-width:1.2px}.gb-spinner.spinner-sm.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-6px;margin-top:-6px}.gb-spinner.spinner-lg{width:50px;height:50px;border-width:5px}.gb-spinner.spinner-lg.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-25px;margin-top:-25px}.label{display:inline-block;margin:0;padding:3px 4px 4px;font-size:11px;font-weight:500;line-height:11px;text-transform:uppercase;vertical-align:middle;border-radius:3px;color:#666;background-color:#eee}.label.label-warning{color:#9d852a;background-color:#fff8e4;border-color:#ddd6be}.label.label-info{background-color:#f3f8fc;color:#274e75;border-color:#c6d0db}.label.label-success{background-color:#ebf6e7;color:#438444;border-color:#ccdad9}.label.label-danger{background-color:#fef1f1;color:#ab1313;border-color:#dabfbf}a.label:hover{color:#428bca;text-decoration:none}.form-control{width:100%;font-size:1.1rem;border:1px solid #d4d4d4;background:#fff;outline:none;color:#333;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.form-control.focus,.form-control:focus{outline:none;border-color:#428bca;background:#fff}.form-control.disabled,.form-control:disabled{border-color:#d4d4d4;background:#f5f5f5}.form-control.input-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-control.input-sm{padding:5px 10px}.form-control.input-sm,.form-control.input-xs{font-size:12px;line-height:1.5;border-radius:2px}.form-control.input-xs{padding:2px 7px}select.form-control{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;position:relative;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#ededed);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control .caret{border-top-color:#333}select.form-control .octicon{line-height:1em}select.form-control.dropdown-toggle.open,select.form-control:focus,select.form-control:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}select.form-control.active,select.form-control:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}select.form-control.disabled,select.form-control:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}select.form-control.disabled.tooltipped:after,select.form-control.disabled.tooltipped:before,select.form-control:disabled.tooltipped:after,select.form-control:disabled.tooltipped:before{display:none}select.form-control.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}select.form-control.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-right{float:right!important;margin-left:16px}select.form-control.btn-left{float:left!important;margin-right:16px}select.form-control.btn-block{display:block;width:100%;text-align:center}select.form-control.btn-block+.btn-block{margin-top:5px}select.form-control.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}select.form-control.btn-link:focus,select.form-control.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-link .caret{border-top-color:#fff}select.form-control.btn-link.btn-link,select.form-control.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-link.btn-link:focus,select.form-control.btn-link.btn-link:hover,select.form-control.btn-link.btn-noborder:focus,select.form-control.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-link:focus,select.form-control.btn-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-text-link{background:transparent;border-color:transparent;color:inherit}select.form-control.btn-text-link:focus,select.form-control.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-text-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-count{color:#333;background:#fff}select.form-control.btn-count:focus,select.form-control.btn-count:hover{background:#fff;color:#428bca}select.form-control.btn-count.disabled,select.form-control.btn-count:disabled{background:#fff;color:#333}select.form-control.btn-count .caret{border-top-color:#333}select.form-control.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}select.form-control.btn-success:focus,select.form-control.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}select.form-control.btn-success .caret{border-top-color:#fff}select.form-control.btn-success.btn-link,select.form-control.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}select.form-control.btn-success.btn-link:focus,select.form-control.btn-success.btn-link:hover,select.form-control.btn-success.btn-noborder:focus,select.form-control.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}select.form-control.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}select.form-control.btn-success.btn-outline .caret{border-top-color:#5cb85c}select.form-control.btn-success.btn-outline:focus,select.form-control.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}select.form-control.btn-success.btn-outline:focus .caret,select.form-control.btn-success.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-success{color:#449d44}select.form-control.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}select.form-control.btn-primary:focus,select.form-control.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-primary .caret{border-top-color:#fff}select.form-control.btn-primary.btn-link,select.form-control.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-primary.btn-link:focus,select.form-control.btn-primary.btn-link:hover,select.form-control.btn-primary.btn-noborder:focus,select.form-control.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}select.form-control.btn-primary.btn-outline .caret{border-top-color:#428bca}select.form-control.btn-primary.btn-outline:focus,select.form-control.btn-primary.btn-outline:hover{background:#428bca;color:#fff}select.form-control.btn-primary.btn-outline:focus .caret,select.form-control.btn-primary.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-primary{color:#3071a9}select.form-control.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}select.form-control.btn-danger:focus,select.form-control.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}select.form-control.btn-danger .caret{border-top-color:#fff}select.form-control.btn-danger.btn-link,select.form-control.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}select.form-control.btn-danger.btn-link:focus,select.form-control.btn-danger.btn-link:hover,select.form-control.btn-danger.btn-noborder:focus,select.form-control.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}select.form-control.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}select.form-control.btn-danger.btn-outline .caret{border-top-color:#dd4b39}select.form-control.btn-danger.btn-outline:focus,select.form-control.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}select.form-control.btn-danger.btn-outline:focus .caret,select.form-control.btn-danger.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-danger{color:#c23321}select.form-control .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}select.form-control:focus,select.form-control:hover{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#e3e3e3);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control:focus{border-color:#428bca}.checkbox,.form-group .checkbox,.form-group .radio,.radio{display:block;min-height:20px;margin-bottom:12px;padding-left:20px;vertical-align:middle}.checkbox input[type=checkbox],.checkbox input[type=radio],.form-group .checkbox input[type=checkbox],.form-group .checkbox input[type=radio],.form-group .radio input[type=checkbox],.form-group .radio input[type=radio],.radio input[type=checkbox],.radio input[type=radio]{float:left;margin-top:3px;margin-left:-20px}.checkbox label,.form-group .checkbox label,.form-group .radio label,.radio label{display:inline;margin-bottom:0;font-weight:400;cursor:pointer}.form-group{margin-bottom:12px}.form-group label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:500}.form-group label .note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#767676}.form-group.has-error .help-block,.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control{border-color:#dd4b39}.form-horizontal .form-group{zoom:1}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:"";display:table}.form-horizontal .form-group:after{clear:both}.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 .btn{vertical-align:middle}.pagehead{zoom:1;margin:0 auto;padding:0;text-align:center;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.pagehead:after,.pagehead:before{content:"";display:table}.pagehead:after{clear:both}.pagehead .avatar{display:inline-block;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-top:17px;margin-right:9px;width:30px;height:30px}.pagehead .avatar img{width:100%;height:100%;border-radius:3px}.pagehead h1{float:left;font-size:24px;padding:0;margin:0;line-height:65px;font-weight:400}.pagehead h1 a{color:inherit;text-decoration:none}.pagehead h1 a:hover{color:#428bca;text-decoration:none}.pagehead h1>i{line-height:1em}.pagehead .btn{float:left;margin-top:16px}.pagehead .menu{list-style:none;zoom:1;margin:0;padding:0;float:right;text-align:center}.pagehead .menu:after,.pagehead .menu:before{content:"";display:table}.pagehead .menu:after{clear:both}.pagehead .menu.center{float:none}.pagehead .menu.left{float:left}.pagehead .menu li{display:inline-block}.pagehead .menu li>a{color:#8d8d8a;padding:25px 15px;margin-bottom:-1px;border-bottom:1px solid #e5e5e5;letter-spacing:-.02em;font-weight:500;font-style:normal;font-size:11px;letter-spacing:.2em;text-transform:uppercase;display:inline-block}.pagehead .menu li>a i{font-size:16px;line-height:1em}.pagehead .menu li>a:focus,.pagehead .menu li>a:hover{text-decoration:none}.pagehead .menu li.active>a{padding-bottom:23px;border-width:3px;border-color:#dd4b39;font-weight:700}.pagehead .menu li:first-child>a{margin-left:0}.pagehead .menu li:last-child>a{margin-right:0}.pagehead .btn-group.open .dropdown-toggle{box-shadow:none}.pagehead .search-bar{width:100%;max-width:300px;margin-top:13px;background:#fff;border:1px solid #e5e5e5;position:relative;cursor:text}.pagehead .search-bar i{position:absolute;left:8px;font-size:16px;line-height:34px;color:#bbb}.pagehead .search-bar input{border:none;box-shadow:none;height:34px;padding-left:30px;background:transparent}.blankslate{width:100%;max-width:400px;margin:80px auto;text-align:center;padding:20px}@media (max-height:800px){.blankslate{margin:40px auto}}.blankslate .icon{font-size:64px;line-height:120px;color:#b3b3b1}.blankslate h3{margin:10px 0;margin-top:0;font-size:22px;font-weight:500}.blankslate p{margin:10px 0}.blankslate.with-background{background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;background-clip:padding-box;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate.full-width{max-width:100%;margin:0;padding:80px}.blankslate-layout{width:100%;height:100%;display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;align-items:center;justify-content:center}.blankslate-layout.with-background{background-color:#fafafa;border:1px solid #e5e5e5;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate-layout .blankslate{margin:0;padding-bottom:50px}.tabs>.tabs-nav{margin:0;padding:0;list-style:none;width:100%;border-bottom:0;border-bottom:1px solid #d4d4d4;zoom:1}.tabs>.tabs-nav:after,.tabs>.tabs-nav:before{content:"";display:table}.tabs>.tabs-nav:after{clear:both}.tabs>.tabs-nav>li{margin:0;float:left;margin-bottom:-1px}.tabs>.tabs-nav>li>a{position:relative;display:block;padding:10px 15px;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:3px 3px 0 0;color:#b3b3b1;border-bottom:1px solid #d4d4d4;margin-right:0}.tabs>.tabs-nav>li>a:focus,.tabs>.tabs-nav>li>a:hover{text-decoration:none}.tabs>.tabs-nav>li.active>a{color:#555;background-color:#fff;border:1px solid #d4d4d4;border-bottom-color:#fff;cursor:default}.tabs>.tabs-nav.justified>li{float:none;display:table-cell;width:1%}.tabs>.tabs-nav.justified>li a{text-align:center;margin-bottom:-1px}.tabs .tabs-content .tab-pane{display:none}.tabs .tabs-content .tab-pane.active{display:block}.tabs>.tabs-content{margin-top:20px}.tabs.tabs-fluid>.tabs-content{margin:0}.pagination{margin:0;zoom:1}.pagination:after,.pagination:before{content:"";display:table}.pagination:after{clear:both}.pagination .pagination-nav,.pagination .pagination-pages{display:inline-block;padding-left:0;margin:15px 0;border-radius:2px}.pagination .pagination-nav li,.pagination .pagination-pages li{display:inline}.pagination .pagination-nav li a,.pagination .pagination-nav li span,.pagination .pagination-pages li a,.pagination .pagination-pages li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#737373;background-color:#fff;border:1px solid #d4d4d4;margin-left:-1px}.pagination .pagination-nav li:first-child a,.pagination .pagination-nav li:first-child span,.pagination .pagination-pages li:first-child a,.pagination .pagination-pages li:first-child span{border-top-left-radius:2px;border-bottom-left-radius:2px}.pagination .pagination-nav li:last-child a,.pagination .pagination-nav li:last-child span,.pagination .pagination-pages li:last-child a,.pagination .pagination-pages li:last-child span{border-top-right-radius:2px;border-bottom-right-radius:2px}.pagination .pagination-nav li .separator,.pagination .pagination-pages li .separator{cursor:default;letter-spacing:3px}.pagination .pagination-nav li a:hover,.pagination .pagination-pages li a:hover{background:#f5f5f5;color:#4f4f52;border-color:#d4d4d4}.pagination .pagination-nav li.active a,.pagination .pagination-pages li.active a{cursor:default;z-index:1;color:#5cb85c;border-color:#5cb85c;background:#fff}.pagination .pagination-pages{float:left}.pagination .pagination-nav{float:right}.badge{display:inline-block;padding:1px 3px;font-size:11px;font-weight:500;line-height:1;color:#666;background-color:#eee;border-radius:20px;border:1px solid #ccc;min-width:18px;text-align:center;letter-spacing:initial}.badge.badge-warning{background-color:#fff2d0;color:#8d7726;border-color:#d6cdb1}.badge.badge-info{background-color:#e2eef9;color:#246;border-color:#bac6d3}.badge.badge-success{background-color:#dff0d8;color:#3c763d;border-color:#c0d1d0}.badge.badge-danger{background-color:#fcdede;color:#911;border-color:#d2b2b2}.gb-page-wrapper{min-height:100%;position:relative;padding-bottom:60px}.gb-page-wrapper.for-modal{padding-bottom:1px;background:#f5f5f5}.gb-page-header{position:relative;z-index:2;width:100%;padding:10px 0;background:#fff;color:#555;border-bottom:1px solid #ddd;border-top:2px solid #4d4d4f;box-shadow:0 3px 2px -2px hsla(0,0%,78%,.2)}.gb-page-header .container{zoom:1}.gb-page-header .container:after,.gb-page-header .container:before{content:"";display:table}.gb-page-header .container:after{clear:both}.gb-page-header .container .logo{color:inherit}.gb-page-header .container .logo:hover{text-decoration:none}.gb-page-header .container .logo img{height:34px;float:left;margin-right:8px;margin-top:3px}.gb-page-header .container .logo h1{font-size:18px;font-weight:700;line-height:38px;display:inline-block;margin:0;padding:0 0 0 10px;text-shadow:none;color:#4d4d4f}.gb-page-header .container .btn{text-decoration:none;margin:2px 4px;box-shadow:none!important;text-transform:uppercase}.gb-page-header .container .btn:hover{text-decoration:none}.gb-page-header .container .btn.btn-link{color:inherit}.gb-page-header .container .btn.btn-link:hover{color:#428bca}.gb-page-header .container .btn.btn-icon{margin:1px 0;font-size:16px;padding:5px 10px}.gb-page-header .container .btn .caret{border-top-color:#555}.gb-page-header .container img.avatar{width:24px;height:24px;border-radius:3px;float:left;margin-right:6px;margin-top:-2px;margin-bottom:-2px}.gb-page-header .container .dropdown-menu{top:44px;width:180px}.gb-page-body{position:relative;z-index:1}.gb-page-body .gb-page-inner{margin:30px 0}.gb-page-footer{position:absolute;bottom:0;width:100%;height:60px;margin:0}.gb-page-footer .container .menu{list-style:none;margin:0;padding:0;zoom:1;border-top:1px solid #f5f5f5}.gb-page-footer .container .menu:after,.gb-page-footer .container .menu:before{content:"";display:table}.gb-page-footer .container .menu:after{clear:both}.gb-page-footer .container .menu>li{float:left}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>span{padding:19.5px 10px;display:inline-block;color:#999;text-transform:uppercase;letter-spacing:.2px;font-size:12px;line-height:20px;font-weight:400;height:59px}.gb-page-footer .container .menu>li>a.service-info,.gb-page-footer .container .menu>li>span.service-info{color:#818181;font-weight:400}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>a:focus,.gb-page-footer .container .menu>li>a:hover{text-decoration:none}*{box-sizing:border-box}body,html{width:100%;height:100%;color:#333;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.42857143;background:#fff;letter-spacing:.3px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;font-smoothing:antialiased}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight{margin:0}.gb-markdown{font-size:16px}.docs-footer{margin-top:20px;padding:15px 0;text-align:right;border-top:4px solid #eee}.docs-example{position:relative;padding:15px;line-height:1.4;border:1px solid #e5e5e5;border-radius:.25rem .25rem 0 0;font-size:14px}.docs-example+.highlight{margin-top:-1px;border:1px solid #e5e5e5;border-radius:0 0 .25rem .25rem;margin-bottom:30px}.docs-example+.highlight>pre{margin:0}.docs-colors{zoom:1}.docs-colors:after,.docs-colors:before{content:"";display:table}.docs-colors:after{clear:both}.docs-colors .color{border-radius:3px;padding:12px 6px;margin:4px 0;color:#fff;text-align:center}.docs-colors .color.palette-black{background:#2d2d2d}.docs-colors .color.palette-gray-light{background:#fcfcfc;color:inherit}.docs-colors .color.palette-gray{background:#f5f5f5;color:inherit}.docs-colors .color.palette-gray-outline{background:#d4d4d4;color:inherit}.docs-colors .color.palette-gray-dark{background:#e5e5e5;color:inherit}.docs-colors .color.palette-gray-darker{background:#b3b3b1;color:inherit}.docs-colors .color.palette-darkgray{background:#4f4f52}.docs-colors .color.palette-blue{background:#428bca}.docs-colors .color.palette-green{background:#5cb85c}.docs-colors .color.palette-orange{background:#f0ad4e}.docs-colors .color.palette-clearblue{background:#44b6f1}.docs-colors .color.palette-red{background:#dd4b39}.docs-colors .color.palette-logo{background:#4d4d4f} \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml deleted file mode 100755 index df2e400..0000000 --- a/docs/_config.yml +++ /dev/null @@ -1,12 +0,0 @@ -title: 前端开发文档 -markdown: kramdown -highlighter: rouge - -kramdown: - auto_ids: true - input: GFM - -permalink: pretty -baseurl: "" -github: - repo: https://github.com/fe-knowledge/fedguide.github.io.git diff --git a/docs/_data/.gitkeep b/docs/_data/.gitkeep deleted file mode 100755 index e69de29..0000000 diff --git a/docs/_includes/sidenav.html b/docs/_includes/sidenav.html deleted file mode 100755 index c71d522..0000000 --- a/docs/_includes/sidenav.html +++ /dev/null @@ -1,8 +0,0 @@ -{% assign sorted_pages = site.pages | sort:"order" %} -
-
- {% for p in sorted_pages %} - {{ p.title }} - {% endfor %} -
-
diff --git a/docs/_plugins/example.rb b/docs/_plugins/example.rb deleted file mode 100755 index 001773e..0000000 --- a/docs/_plugins/example.rb +++ /dev/null @@ -1,78 +0,0 @@ -module Jekyll - module Tags - class ExampleBlock < Liquid::Block - include Liquid::StandardFilters - - # The regular expression syntax checker. Start with the language specifier. - # Follow that by zero or more space separated options that take one of three - # forms: name, name=value, or name="" - # - # is a space-separated list of numbers - SYNTAX = /^([a-zA-Z0-9.+#-]+)((\s+\w+(=(\w+|"([0-9]+\s)*[0-9]+"))?)*)$/ - - def initialize(tag_name, markup, tokens) - super - if markup.strip =~ SYNTAX - @lang = $1.downcase - @options = {} - if defined?($2) && $2 != '' - # Split along 3 possible forms -- key="", key=value, or key - $2.scan(/(?:\w="[^"]*"|\w=\w|\w)+/) do |opt| - key, value = opt.split('=') - # If a quoted list, convert to array - if value && value.include?("\"") - value.gsub!(/"/, "") - value = value.split - end - @options[key.to_sym] = value || true - end - end - @options[:linenos] = "inline" if @options.key?(:linenos) and @options[:linenos] == true - else - raise SyntaxError.new <<-eos -Syntax Error in tag 'highlight' while parsing the following markup: - #{markup} -Valid syntax: highlight [linenos] -eos - end - end - - def render(context) - prefix = context["highlighter_prefix"] || "" - suffix = context["highlighter_suffix"] || "" - code = super.to_s.strip - - output = case context.registers[:site].highlighter - - when 'rouge' - render_rouge(code) - end - - rendered_output = example(code) + add_code_tag(output) - prefix + rendered_output + suffix - end - - def example(output) - "
#{output}
" - end - - def render_rouge(code) - require 'rouge' - formatter = Rouge::Formatters::HTML.new(line_numbers: @options[:linenos], wrap: false) - lexer = Rouge::Lexer.find_fancy(@lang, code) || Rouge::Lexers::PlainText - code = formatter.format(lexer.lex(code)) - "
#{code}
" - end - - def add_code_tag(code) - # Add nested tags to code blocks - code = code.sub(/
\n*/,'
')
-        code = code.sub(/\n*<\/pre>/,"
") - code.strip - end - - end - end -end - -Liquid::Template.register_tag('example', Jekyll::Tags::ExampleBlock) \ No newline at end of file diff --git a/docs/guide.md b/docs/guide.md deleted file mode 100644 index 6676e88..0000000 --- a/docs/guide.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: default -title: 编码规范 -order: 4 ---- - -### 编码规范 diff --git a/docs/index.md b/docs/index.md deleted file mode 100755 index d3bb73b..0000000 --- a/docs/index.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -layout: default -title: 概述 -order: 1 ---- - -### 概述 - -欢迎使用前端代码规范,使用过程中如碰到问题,请随时进行提问。 - -##### 关于 -前端代码规范 是由 `海边前端团队` 整理的,基于 [W3C](http://www.w3.org/)、[苹果开发者](https://developer.apple.com/) 等官方文档,并结合团队日常业务需求以及团队在日常开发过程中总结提炼出的经验而制定。 - -旨在增强团队开发协作、提高代码质量和打造开发基石的编码规范, - -以下规范是团队基本约定的内容,必须严格遵循。 - -##### HTML规范 -基于[W3C](http://www.w3.org/)、[苹果开发者](https://developer.apple.com/) 等官方文档,并结合团队业务和开发过程中总结的规范约定,让页面HTML代码更具语义性。 - -##### CSS规范 -统一规范团队 CSS 代码书写风格,提供常用媒体查询语句和浏览器私有属性引用,并从业务层面统一规范常用模块的引用。 - -##### 命名规范 -从 `目录`、`版本号`、`图片`、`HTML/CSS文件`、`ClassName` 的命名等层面约定规范团队的命名习惯,增强团队代码的可读性。 diff --git a/docs/less/main.less b/docs/less/main.less deleted file mode 100755 index e4e1c9e..0000000 --- a/docs/less/main.less +++ /dev/null @@ -1,94 +0,0 @@ -@import "../../less/main.less"; -@import "./highlight.less"; - -.highlight { - margin: 0px; -} - -.gb-markdown { - font-size: @gb-font-size-medium; -} - -.docs-footer { - margin-top: 20px; - padding: 15px 0px; - text-align: right; - border-top: 4px solid #eee; -} - -.docs-example { - position: relative; - padding: 15px; - line-height: 1.4; - border: 1px solid #e5e5e5; - border-radius: .25rem .25rem 0 0; - font-size: @gb-font-size-base; - - &+.highlight { - margin-top: -1px; - border: 1px solid #e5e5e5; - border-radius: 0 0 .25rem .25rem; - margin-bottom: 30px; - - > pre { - margin: 0px; - } - } -} - -.docs-colors { - .clearfix(); - - .color { - border-radius: 3px; - padding: 12px 6px; - margin: 4px 0px; - color: #fff; - text-align: center; - - &.palette-black { - background: @gb-palette-black; - } - &.palette-gray-light { - background: @gb-palette-gray-light; - color: inherit; - } - &.palette-gray { - background: @gb-palette-gray; - color: inherit; - } - &.palette-gray-outline { - background: @gb-palette-gray-outline; - color: inherit; - } - &.palette-gray-dark { - background: @gb-palette-gray-dark; - color: inherit; - } - &.palette-gray-darker { - background: @gb-palette-gray-darker; - color: inherit; - } - &.palette-darkgray { - background: @gb-palette-darkgray; - } - &.palette-blue { - background: @gb-palette-blue; - } - &.palette-green { - background: @gb-palette-green; - } - &.palette-orange { - background: @gb-palette-orange; - } - &.palette-clearblue { - background: @gb-palette-clearblue; - } - &.palette-red { - background: @gb-palette-red; - } - &.palette-logo { - background: @gb-palette-logo; - } - } -} diff --git a/docs/pcui.md b/docs/pcui.md deleted file mode 100644 index be4d459..0000000 --- a/docs/pcui.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: default -title: 海边PC站框架 -order: 5 ---- - -### 海边PC站框架 diff --git a/docs/svn.md b/docs/svn.md deleted file mode 100644 index 41c172d..0000000 --- a/docs/svn.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -layout: default -title: 前端SVN介绍 -order: 3 ---- - -### 前端SVN介绍 diff --git a/docs/team.md b/docs/team.md deleted file mode 100644 index 572c00e..0000000 --- a/docs/team.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: default -title: FE小分队成员 -order: 2 ---- - -### FE小分队成员 - -
-
-

Title

-
-
- -
- -
diff --git a/docs/_layouts/default.html b/guide/index.html old mode 100755 new mode 100644 similarity index 63% rename from docs/_layouts/default.html rename to guide/index.html index fde41ce..481d058 --- a/docs/_layouts/default.html +++ b/guide/index.html @@ -5,19 +5,19 @@ - - - {{ page.title }} | {{site.title}} - - + + + 编码规范 | 前端开发文档 + +
+
+ +
+
+
+
+ +
+
+

概述

+ +

欢迎使用前端代码规范,使用过程中如碰到问题,请随时进行提问。

+ +
关于
+

前端代码规范 是由 海边前端团队 整理的,基于 W3C苹果开发者 等官方文档,并结合团队日常业务需求以及团队在日常开发过程中总结提炼出的经验而制定。

+ +

旨在增强团队开发协作、提高代码质量和打造开发基石的编码规范,

+ +

以下规范是团队基本约定的内容,必须严格遵循。

+ +
HTML规范
+

基于W3C苹果开发者 等官方文档,并结合团队业务和开发过程中总结的规范约定,让页面HTML代码更具语义性。

+ +
CSS规范
+

统一规范团队 CSS 代码书写风格,提供常用媒体查询语句和浏览器私有属性引用,并从业务层面统一规范常用模块的引用。

+ +
命名规范
+

目录版本号图片HTML/CSS文件ClassName 的命名等层面约定规范团队的命名习惯,增强团队代码的可读性。

+ +
+
+
+
+
+
+ + +
+ + diff --git a/index.js b/index.js deleted file mode 100755 index 9a6ec37..0000000 --- a/index.js +++ /dev/null @@ -1,21 +0,0 @@ -var path = require('path'); - -function moduleContainer(mod) { - var pkgPath = require.resolve(mod+'/package.json') - return path.resolve( - path.dirname(pkgPath) - , '..') -} - - -module.exports = { - assets: path.resolve(__dirname, 'assets'), - less: { - // Required less path - paths: [ - path.resolve(__dirname, 'less'), - moduleContainer('octicons'), - moduleContainer('gitbook-markdown-css') - ] - } -}; diff --git a/less/components/alerts.less b/less/components/alerts.less deleted file mode 100755 index b83670b..0000000 --- a/less/components/alerts.less +++ /dev/null @@ -1,51 +0,0 @@ -.alert { - border: 1px solid @gb-palette-gray-outline; - background: @gb-palette-gray; - border-radius: @gb-alert-radius; - padding: @gb-alert-padding; - margin-bottom: @gb-alert-marging; - - &.alert-danger { - background: @gb-state-danger-background; - border-color: @gb-state-danger-border; - color: @gb-state-danger-color; - } - - &.alert-warning { - background: @gb-state-warning-background; - border-color: @gb-state-warning-border; - color: @gb-state-warning-color; - } - - &.alert-info { - background: @gb-state-info-background; - border-color: @gb-state-info-border; - color: @gb-state-info-color; - } - - &.alert-success { - background: @gb-state-success-background; - border-color: @gb-state-success-border; - color: @gb-state-success-color; - } - - - .alert-btn { - display: inline-block; - float: right; - color: inherit; - border-radius: @gb-border-radius-base; - padding: 0px; - opacity: 0.6; - padding: 0px 5px; - } - - a.alert-btn { - text-decoration: none; - - &:hover, &:focus { - opacity: 0.8; - text-decoration: none; - } - } -} \ No newline at end of file diff --git a/less/components/badges.less b/less/components/badges.less deleted file mode 100755 index fcfc8aa..0000000 --- a/less/components/badges.less +++ /dev/null @@ -1,35 +0,0 @@ -.badge { - display: inline-block; - padding: 1px 3px 1px 3px; - font-size: 11px; - font-weight: @gb-font-weight-bold; - line-height: 1; - color: #666; - background-color: #eee; - border-radius: 20px; - border: 1px solid #ccc; - min-width: 18px; - text-align: center; - letter-spacing: initial; - - &.badge-warning { - background-color: @gb-state-warning-background; - color: @gb-state-warning-color; - border-color: @gb-state-warning-border; - } - &.badge-info { - background-color: @gb-state-info-background; - color: @gb-state-info-color; - border-color: @gb-state-info-border; - } - &.badge-success { - background-color: @gb-state-success-background; - color: @gb-state-success-color; - border-color: @gb-state-success-border; - } - &.badge-danger { - background-color: @gb-state-danger-background; - color: @gb-state-danger-color; - border-color: @gb-state-danger-border; - } -} diff --git a/less/components/blankslate.less b/less/components/blankslate.less deleted file mode 100755 index bf1435d..0000000 --- a/less/components/blankslate.less +++ /dev/null @@ -1,66 +0,0 @@ -.blankslate { - width: 100%; - max-width: 400px; - margin: @gb-blankslate-vertical-padding auto; - text-align: center; - padding: 20px; - - @media (max-height: 800px) { - margin: (@gb-blankslate-vertical-padding / 2) auto; - } - - - .icon { - font-size: 64px; - line-height: 120px; - color: @gb-palette-gray-darker; - } - - h3 { - margin: 10px 0; - margin-top: 0px; - font-size: 22px; - font-weight: @gb-font-weight-bold; - } - - p { - margin: 10px 0px; - } - - &.with-background { - background-color: @gb-blankslate-background; - border: 1px solid @gb-blankslate-border; - .border-radius(@gb-border-radius-base); - .box-shadow(~"inset 0 0 10px rgba(0,0,0,0.05)"); - } - - &.full-width { - max-width: 100%; - margin: 0px; - padding: @gb-blankslate-vertical-padding @gb-blankslate-vertical-padding; - } -} - -.blankslate-layout { - width: 100%; - height: 100%; - .flex-display(); - align-items: center; - justify-content: center; - - - &.with-background { - background-color: @gb-blankslate-background; - border: 1px solid @gb-blankslate-border; - .box-shadow(~"inset 0 0 10px rgba(0,0,0,0.05)"); - } - - .blankslate { - margin: 0px; - - // We add a bottom padding to push the blankslate to the top - // and give a more centered impression - padding-bottom: 50px; - } -} - diff --git a/less/components/button-dropdown.less b/less/components/button-dropdown.less deleted file mode 100755 index de1b7b2..0000000 --- a/less/components/button-dropdown.less +++ /dev/null @@ -1,323 +0,0 @@ -.caret { - display: inline-block; - width: 0; - height: 0; - content: ""; - vertical-align: -2px; - border: 4px solid @gb-caret-color; - border-right-color: transparent; - border-left-color: transparent; - border-bottom-color: transparent; -} - -.dropdown, .btn-group.dropdown { - position: relative; - text-align: left; - color: @gb-text-color; - - &.btn-group-block { - .dropdown-menu { - min-width: 100%; - } - } - - > .dropdown-menu { - position: absolute; - top: 100%; - right: 0px; - } - - &.open, &.inner { - >.dropdown-menu { - display: block - } - } - - // Arrows - &:not(.contextmenu) > .dropdown-menu { - margin-top: 12px; - overflow: visible !important; - - &:after, &:before { - bottom: 100%; - right: 16px; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none; - } - &:before { - border-color: transparent; - border-bottom-color: @gb-dropdown-border; - border-width: 11px; - margin-right: -11px; - } - &:after { - border-color: transparent; - border-bottom-color: @gb-dropdown-background; - border-width: 10px; - margin-right: -10px; - } - } - - &.pull-left:not(.contextmenu) { - > .dropdown-menu { - left: 0px; - right: auto; - - &:not(.inner) { - &:after, &:before { - right: auto; - left: 16px; - } - &:before { - margin-right: 0px; - margin-left: -11px; - } - &:after { - margin-right: 0px; - margin-left: -10px; - } - } - } - } - - // Context menu - &.contextmenu { - position: fixed; - z-index: @gb-zindex-contextmenu; - - .dropdown-menu { - display: block; - position: absolute; - top: 0px; - left: 0px; - } - - // to the left - &.contextmenu-w { - .dropdown-menu { - left: auto; - right: 0px; - } - } - - // to the top - &.contextmenu-n { - .dropdown-menu { - top: auto; - bottom: 0px; - } - } - } - - - // Dropdown to the top - &.dropup { - > .dropdown-menu { - position: absolute; - top: auto; - bottom: 100%; - - // Submenu - li .dropdown-menu { - top: auto; - bottom: 0px; - } - } - - &:not(.contextmenu) > .dropdown-menu { - margin-top: 0px; - margin-bottom: 12px; - - &:after, &:before { - top: 100%; - bottom: auo; - right: 16px; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none; - } - &:before { - border-color: transparent; - border-top-color: @gb-dropdown-border; - border-width: 11px; - margin-right: -11px; - } - &:after { - border-color: transparent; - border-top-color: @gb-dropdown-background; - border-width: 10px; - margin-right: -10px; - } - } - } - - // Button is on the right, diretcion is to the left - &.pull-right, &.dropdown-w { - > .dropdown-menu { - left: auto; - right: 0px; - - li { - >.dropdown-menu { - left: auto; - right: 100%; - } - } - } - } -} - -.dropdown-menu, .dropdown .dropdown-menu { - display: none; - position: relative; - z-index: @gb-zindex-dropdown; - background: #fff; - list-style: none; - border: 1px solid @gb-dropdown-border; - background: @gb-dropdown-background; - min-width: 160px; - margin: 0px; - padding: 0px; - border-radius: @gb-dropdown-radius; - .box-shadow(@gb-dropdown-shadow); - padding-top: @gb-dropdown-padding; - padding-bottom: @gb-dropdown-padding; - - &.open, &.inner { - display: block; - } - - > li { - margin: 0px; - padding: 0px; - position: relative; - - &.divider { - height: 1px; - margin: @gb-dropdown-padding 1px; - background-color: @gb-dropdown-divider; - } - - &.dropdown-header { - padding: 4px 10px; - font-size: @gb-font-size-small; - color: @gb-text-light; - } - - &.disabled, &.disabled:hover { - > a, >a:hover { - cursor: default; - background: transparent; - color: @gb-palette-gray-darker; - pointer-events: none; - } - - >.dropdown-menu { - display: none; - } - } - - > a { - padding: 4px 10px; - cursor: default; - color: inherit; - text-decoration: none; - display: block; - .text-overflow(); - cursor: pointer; - text-shadow: none; - - // Help text - .help-label { - font-size: @gb-font-size-small; - color: @gb-palette-gray-darker; - margin-left: 10px; - } - - // Icon - .dropdown-icon { - // only defined on hover - } - - &:hover { - text-decoration: none; - text-shadow: none; - background: @gb-dropdown-background-hover; - color: @gb-dropdown-color-hover; - - .help-label, .text-muted { - color: inherit; - opacity: 0.5; - } - - .dropdown-icon { - color: inherit; - } - } - } - - // Indicator for sub-menu - > a:not(:last-child) { - position: relative; - - &:after { - bottom: 9px; - right: 6px; - border: solid transparent; - content: " "; - height: 0; - width: 0; - position: absolute; - pointer-events: none; - border-color: transparent; - border-left-color: @gb-palette-gray-darker; - border-width: 5px; - margin-right: -5px; - } - - &:hover:after { - border-left-color: @gb-dropdown-color-hover; - } - } - - // Active entries - &.active > a:not(:last-child):after { - border-left-color: @gb-dropdown-color-hover; - } - &.active > a { - background: @gb-dropdown-background-active; - color: @gb-dropdown-color-active; - - .help-label, .text-muted { - color: inherit; - opacity: 0.5; - } - } - - - // Submenu - >.dropdown-menu { - position: absolute; - right: auto; - left: 100%; - margin-top: 0px; - top: 0px; - margin-top: -1px; - - &:after, &:before {} - } - - &:hover { - >.dropdown-menu { - display: block; - } - } - } -} diff --git a/less/components/button-groups.less b/less/components/button-groups.less deleted file mode 100755 index 2ad525a..0000000 --- a/less/components/button-groups.less +++ /dev/null @@ -1,101 +0,0 @@ -.btn-group { - position: relative; - display: inline-block; - vertical-align: middle; // match .btn alignment given font-size hack above - > .btn { - position: relative; - float: left; - // Bring the "active" button to the front - &:hover, - &:focus, - &:active, - &.active { - z-index: 2; - } - } - - &.btn-group-block { - width: 100%; - display: block; - } - - .btn + .btn, - .btn-group + .btn { - border-left: 0px; - } - - .btn + .btn-group, - .btn-group + .btn-group { - margin-left: -1px; - } - - > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { - border-radius: 0; - } - - // Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match - > .btn:first-child { - margin-left: 0; - &:not(:last-child):not(.dropdown-toggle) { - .border-right-radius(0); - } - } - - // Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it - > .btn:last-child:not(:first-child), - > .dropdown-toggle:not(:first-child) { - .border-left-radius(0); - } - - // Justified button groups - &.btn-group-justified { - display: table; - width: 100%; - table-layout: fixed; - border-collapse: separate; - - > .btn, - > .btn-group { - text-align: center; - float: none; - display: table-cell; - width: 1%; - } - > .btn-group .btn { - width: 100%; - } - - > .btn-group .dropdown-menu { - left: auto; - } - } -} - - -// Optional: Group multiple button groups together for a toolbar -.btn-toolbar { - // Offset the first child's margin - margin-left: -5px; - &:extend(.clearfix all); - - .btn, - .btn-group, - .input-group { - float: left; - } - - > .btn, - > .btn-group, - > .input-group { - margin-left: 5px; - } - - > .btn-toolbar { - float: left; - margin: 0px; - } - - &.prepend { - margin-bottom: @gb-margin-base; - } -} \ No newline at end of file diff --git a/less/components/buttons.less b/less/components/buttons.less deleted file mode 100755 index 25a35bd..0000000 --- a/less/components/buttons.less +++ /dev/null @@ -1,215 +0,0 @@ -.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { - padding: @padding-vertical @padding-horizontal; - font-size: @font-size; - line-height: @line-height; - border-radius: @border-radius; -} - -.button(@mainColor) { - background: linear-gradient(@mainColor, darken(@mainColor, @gb-button-gradient)); - border-color: darken(@mainColor, 1.5 * @gb-button-gradient); - color: #fff; - - &:hover, &:focus { - background: linear-gradient(@mainColor, darken(@mainColor, 1.5 * @gb-button-gradient)); - border-color: darken(@mainColor, 2 * @gb-button-gradient); - } - - .caret { - border-top-color: #fff; - } - - &.btn-noborder, &.btn-link { - text-shadow: none; - color: @mainColor; - border: none; - background: none; - .box-shadow(none); - - &:hover, &:focus { - color: darken(@mainColor, 12%); - outline: none; - text-decoration: underline; - } - } -} - - -// Create new class of button -.button-class(@className, @mainColor) { - &.btn-@{className} { - .button(@mainColor); - - &.btn-outline { - background: #fff; - color: @mainColor; - border-color: @mainColor; - - .caret { - border-top-color: @mainColor; - } - - &:hover, &:focus { - background: @mainColor; - color: #fff; - - .caret { - border-top-color: #fff; - } - } - } - } - - &.btn-text-@{className} { - color: darken(@mainColor, @gb-button-gradient); - } -} - -// Button withotu background (btn-link, etc) -.button-nobackground { - background: transparent; - border-color: transparent; - - &:hover, &:focus { - color: @gb-link-color; - background: none; - box-shadow: none; - } - - &.active { - background: none; - box-shadow: none; - font-weight: 500; - } -} - -.btn, a.btn, .gb-markdown .btn { - text-shadow: none; - border-radius: @gb-border-radius-base; - background: linear-gradient(@gb-button-background, darken(@gb-button-background, 6%)); - border: 1px solid @gb-button-border; - color: @gb-body-color; - .box-shadow(none); - text-decoration: none; - text-shadow: none; - cursor: pointer; - display: inline-block; - - .caret { - border-top-color: @gb-body-color; - } - - .octicon { - line-height: 1em; - } - - // Hover and focus - &:hover, &:focus, &.dropdown-toggle.open { - background: linear-gradient(@gb-button-background, darken(@gb-button-background, @gb-button-gradient)); - border-color: darken(@gb-button-background, 2 * @gb-button-gradient); - .box-shadow(none); - outline: none; - text-decoration: none; - } - - // Active state - &:active, &.active { - .box-shadow(~"inset 0 3px 5px rgba(0,0,0,.125)"); - } - - // Disabled state - &:disabled, &.disabled { - background: linear-gradient(@gb-button-background, darken(@gb-button-background, 6%)); - border-color: @gb-button-border; - .box-shadow(none); - opacity: 0.6; - cursor: default; - - &.tooltipped { - &:after, &:before { - display: none; - } - } - } - - .button-size(@gb-padding-base-vertical; @gb-padding-base-horizontal; - @gb-font-size-base; @gb-line-height-base; @gb-border-radius-base); - - /// Sizes - &.btn-lg { - // line-height: ensure even-numbered height of button next to large input - .button-size(@gb-padding-large-vertical; @gb-padding-large-horizontal; @gb-font-size-large; @gb-line-height-large; @gb-border-radius-large); - } - &.btn-sm { - // line-height: ensure proper height of button next to small input - .button-size(@gb-padding-small-vertical; @gb-padding-small-horizontal; @gb-font-size-small; @gb-line-height-small; @gb-border-radius-small); - } - &.btn-xs { - .button-size(@gb-padding-xs-vertical; @gb-padding-xs-horizontal; @gb-font-size-small; @gb-line-height-small; @gb-border-radius-small); - } - - // Positioning - &.btn-right { - .pull-right(); - margin-left: @gb-padding-large-horizontal; - } - &.btn-left { - .pull-left(); - margin-right: @gb-padding-large-horizontal; - } - - /// Block Buttons - &.btn-block { - display: block; - width: 100%; - text-align: center; - - &+.btn-block { - margin-top: 5px; - } - } - - /// Styles - &.btn-link { - .button(@gb-link-color); - .button-nobackground(); - color: @gb-link-color; - } - &.btn-text-link { - .button-nobackground(); - color: inherit; - } - - &.btn-count { - background: #fff; - color: @gb-body-color; - background: #fff; - - &:hover, &:focus { - background: #fff; - color: @gb-link-color; - } - &.disabled, &:disabled { - background: #fff; - color: @gb-body-color; - } - - .caret { - border-top-color: @gb-body-color; - } - } - - .button-class(success, @gb-brand-success); - .button-class(primary, @gb-brand-primary); - .button-class(danger, @gb-brand-danger); - - - // Label for buttons - .btn-label { - display: block; - font-size: 14px; - opacity: 0.6; - font-weight: @gb-font-weight-bold; - } -} - diff --git a/less/components/code.less b/less/components/code.less deleted file mode 100755 index 71ffba4..0000000 --- a/less/components/code.less +++ /dev/null @@ -1,60 +0,0 @@ - -// Inline and block code styles -code, -kbd, -pre, -samp { - font-family: @gb-font-family-monospace; -} - -// Inline code -code { - padding: 2px 4px; - font-size: 90%; - color: @gb-code-color; - background-color: @gb-code-bg; - border-radius: @gb-border-radius-base; -} - -// User input typically entered via keyboard -kbd { - padding: 2px 4px; - font-size: 90%; - color: @gb-kbd-color; - background-color: @gb-kbd-bg; - border-radius: @gb-border-radius-small; - box-shadow: inset 0 -1px 0 rgba(0,0,0,.25); - - kbd { - padding: 0; - font-size: 100%; - font-weight: @gb-font-weight-bold; - box-shadow: none; - } -} - -// Blocks of code -pre { - display: block; - padding: ((@gb-line-height-computed - 1) / 2); - margin: 0 0 (@gb-line-height-computed / 2); - font-size: (@gb-font-size-base - 1); // 14px to 13px - line-height: @gb-line-height-base; - word-break: break-all; - word-wrap: break-word; - color: @gb-pre-color; - background-color: @gb-pre-bg; - border: 1px solid @gb-pre-border-color; - border-radius: @gb-border-radius-base; - - // Account for some code outputs that place code tags in pre tags - code { - padding: 0; - font-size: inherit; - color: inherit; - white-space: pre-wrap; - background-color: transparent; - border-radius: 0; - } -} - diff --git a/less/components/filter-list.less b/less/components/filter-list.less deleted file mode 100755 index bb9f139..0000000 --- a/less/components/filter-list.less +++ /dev/null @@ -1,36 +0,0 @@ -.filter-list, ul.filter-list { - list-style: none; - margin: 0px; - padding: 0px; - margin-bottom: @gb-listgroup-margin; - - li { - .filter-item { - position: relative; - display: block; - padding: @gb-filterlist-padding-vertical @gb-filterlist-padding-horizontal; - margin-bottom: @gb-filterlist-margin; - font-size: @gb-font-size-base; - color: @gb-filterlist-color; - text-decoration: none; - .text-overflow(); - border-radius: @gb-filterlist-radius; - - .count { - float: right; - font-weight: @gb-font-weight-bold; - } - - &:hover { - text-decoration: none; - color: @gb-filterlist-hover-color; - background-color: @gb-filterlist-hover-background; - } - - &.selected, &.selected:hover { - color: @gb-filterlist-selected-color; - background-color: @gb-filterlist-selected-background; - } - } - } -} diff --git a/less/components/forms.less b/less/components/forms.less deleted file mode 100755 index 7837398..0000000 --- a/less/components/forms.less +++ /dev/null @@ -1,149 +0,0 @@ - -// Represent an , ",n=f.getElementsByTagName("*"),r=f.getElementsByTagName("a")[0],!n||!r||!n.length)return{};o=Y.createElement("select"),s=o.appendChild(Y.createElement("option")),i=f.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t={getSetAttribute:"t"!==f.className,leadingWhitespace:3===f.firstChild.nodeType,tbody:!f.getElementsByTagName("tbody").length,htmlSerialize:!!f.getElementsByTagName("link").length,style:/top/.test(r.getAttribute("style")),hrefNormalized:"/a"===r.getAttribute("href"),opacity:/^0.5/.test(r.style.opacity),cssFloat:!!r.style.cssFloat,checkOn:!!i.value,optSelected:s.selected,enctype:!!Y.createElement("form").enctype,html5Clone:"<:nav>"!==Y.createElement("nav").cloneNode(!0).outerHTML,boxModel:"CSS1Compat"===Y.compatMode,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},i.checked=!0,t.noCloneChecked=i.cloneNode(!0).checked,o.disabled=!0,t.optDisabled=!s.disabled;try{delete f.test}catch(p){t.deleteExpando=!1}i=Y.createElement("input"),i.setAttribute("value",""),t.input=""===i.getAttribute("value"),i.value="t",i.setAttribute("type","radio"),t.radioValue="t"===i.value,i.setAttribute("checked","t"),i.setAttribute("name","t"),a=Y.createDocumentFragment(),a.appendChild(i),t.appendChecked=i.checked,t.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,f.attachEvent&&(f.attachEvent("onclick",function(){t.noCloneEvent=!1}),f.cloneNode(!0).click());for(c in{submit:!0,change:!0,focusin:!0})f.setAttribute(u="on"+c,"t"),t[c+"Bubbles"]=u in e||f.attributes[u].expando===!1;return f.style.backgroundClip="content-box",f.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===f.style.backgroundClip,ut(function(){var n,r,i,o="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",a=Y.getElementsByTagName("body")[0];a&&(n=Y.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(f),f.innerHTML="
t
",i=f.getElementsByTagName("td"),i[0].style.cssText="padding:0;margin:0;border:0;display:none",l=0===i[0].offsetHeight,i[0].style.display="",i[1].style.display="none",t.reliableHiddenOffsets=l&&0===i[0].offsetHeight,f.innerHTML="",f.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",t.boxSizing=4===f.offsetWidth,t.doesNotIncludeMarginInBodyOffset=1!==a.offsetTop,e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(f,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(f,null)||{width:"4px"}).width,r=f.appendChild(Y.createElement("div")),r.style.cssText=f.style.cssText=o,r.style.marginRight=r.style.width="0",f.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof f.style.zoom!==V&&(f.innerHTML="",f.style.cssText=o+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===f.offsetWidth,f.style.display="block",f.innerHTML="
",f.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==f.offsetWidth,t.inlineBlockNeedsLayout&&(a.style.zoom=1)),a.removeChild(n),n=f=i=r=null)}),n=o=a=s=r=i=null,t}();var Ct=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,kt=/([A-Z])/g;ut.extend({cache:{},expando:"jQuery"+(et+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(e){return e=e.nodeType?ut.cache[e[ut.expando]]:e[ut.expando],!!e&&!s(e)},data:function(e,t,n){return i(e,t,n)},removeData:function(e,t){return o(e,t)},_data:function(e,t,n){return i(e,t,n,!0)},_removeData:function(e,t){return o(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&ut.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),ut.fn.extend({data:function(e,n){var r,i,o=this[0],s=0,u=null;if(e===t){if(this.length&&(u=ut.data(o),1===o.nodeType&&!ut._data(o,"parsedAttrs"))){for(r=o.attributes;s1,null,!0)},removeData:function(e){return this.each(function(){ut.removeData(this,e)})}}),ut.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=ut._data(e,t),n&&(!r||ut.isArray(n)?r=ut._data(e,t,ut.makeArray(n)):r.push(n)),r||[]):void 0},dequeue:function(e,t){t=t||"fx";var n=ut.queue(e,t),r=n.length,i=n.shift(),o=ut._queueHooks(e,t),a=function(){ut.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return ut._data(e,n)||ut._data(e,n,{empty:ut.Callbacks("once memory").add(function(){ut._removeData(e,t+"queue"),ut._removeData(e,n)})})}}),ut.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),arguments.length1)},removeAttr:function(e){return this.each(function(){ut.removeAttr(this,e)})},prop:function(e,t){return ut.access(this,ut.prop,e,t,arguments.length>1)},removeProp:function(e){return e=ut.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,u="string"==typeof e&&e;if(ut.isFunction(e))return this.each(function(t){ut(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(ct)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(At," "):" ")){for(o=0;i=t[o++];)r.indexOf(" "+i+" ")<0&&(r+=i+" ");n.className=ut.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,u=0===arguments.length||"string"==typeof e&&e;if(ut.isFunction(e))return this.each(function(t){ut(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(ct)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(At," "):"")){for(o=0;i=t[o++];)for(;r.indexOf(" "+i+" ")>=0;)r=r.replace(" "+i+" "," ");n.className=e?ut.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,r="boolean"==typeof t;return this.each(ut.isFunction(e)?function(n){ut(this).toggleClass(e.call(this,n,this.className,t),t)}:function(){if("string"===n)for(var i,o=0,a=ut(this),s=t,u=e.match(ct)||[];i=u[o++];)s=r?s:!a.hasClass(i),a[s?"addClass":"removeClass"](i);else(n===V||"boolean"===n)&&(this.className&&ut._data(this,"__className__",this.className),this.className=this.className||e===!1?"":ut._data(this,"__className__")||"")})},hasClass:function(e){for(var t=" "+e+" ",n=0,r=this.length;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(At," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=ut.isFunction(e),this.each(function(n){var o,a=ut(this);1===this.nodeType&&(o=i?e.call(this,n,a.val()):e,null==o?o="":"number"==typeof o?o+="":ut.isArray(o)&&(o=ut.map(o,function(e){return null==e?"":e+""})),r=ut.valHooks[this.type]||ut.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=ut.valHooks[o.type]||ut.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(jt,""):null==n?"":n)}}}),ut.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){for(var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,u=0>i?s:o?i:0;s>u;u++)if(n=r[u],!(!n.selected&&u!==i||(ut.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&ut.nodeName(n.parentNode,"optgroup"))){if(t=ut(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n=ut.makeArray(t);return ut(e).find("option").each(function(){this.selected=ut.inArray(ut(this).val(),n)>=0}),n.length||(e.selectedIndex=-1),n}}},attr:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===V?ut.prop(e,n,r):(o=1!==s||!ut.isXMLDoc(e),o&&(n=n.toLowerCase(),i=ut.attrHooks[n]||(Ht.test(n)?St:Et)),r===t?i&&o&&"get"in i&&null!==(a=i.get(e,n))?a:(typeof e.getAttribute!==V&&(a=e.getAttribute(n)),null==a?t:a):null!==r?i&&o&&"set"in i&&(a=i.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):void ut.removeAttr(e,n))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(ct);if(o&&1===e.nodeType)for(;n=o[i++];)r=ut.propFix[n]||n,Ht.test(n)?!Mt&&qt.test(n)?e[ut.camelCase("default-"+n)]=e[r]=!1:e[r]=!1:ut.attr(e,n,""),e.removeAttribute(Mt?n:r)},attrHooks:{type:{set:function(e,t){if(!ut.support.radioValue&&"radio"===t&&ut.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!ut.isXMLDoc(e),a&&(n=ut.propFix[n]||n,o=ut.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var n=e.getAttributeNode("tabindex");return n&&n.specified?parseInt(n.value,10):Dt.test(e.nodeName)||Lt.test(e.nodeName)&&e.href?0:t}}}}),St={get:function(e,n){var r=ut.prop(e,n),i="boolean"==typeof r&&e.getAttribute(n),o="boolean"==typeof r?_t&&Mt?null!=i:qt.test(n)?e[ut.camelCase("default-"+n)]:!!i:e.getAttributeNode(n); +return o&&o.value!==!1?n.toLowerCase():t},set:function(e,t,n){return t===!1?ut.removeAttr(e,n):_t&&Mt||!qt.test(n)?e.setAttribute(!Mt&&ut.propFix[n]||n,n):e[ut.camelCase("default-"+n)]=e[n]=!0,n}},_t&&Mt||(ut.attrHooks.value={get:function(e,n){var r=e.getAttributeNode(n);return ut.nodeName(e,"input")?e.defaultValue:r&&r.specified?r.value:t},set:function(e,t,n){return ut.nodeName(e,"input")?void(e.defaultValue=t):Et&&Et.set(e,t,n)}}),Mt||(Et=ut.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&("id"===n||"name"===n||"coords"===n?""!==r.value:r.specified)?r.value:t},set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},ut.attrHooks.contenteditable={get:Et.get,set:function(e,t,n){Et.set(e,""===t?!1:t,n)}},ut.each(["width","height"],function(e,t){ut.attrHooks[t]=ut.extend(ut.attrHooks[t],{set:function(e,n){return""===n?(e.setAttribute(t,"auto"),n):void 0}})})),ut.support.hrefNormalized||(ut.each(["href","src","width","height"],function(e,n){ut.attrHooks[n]=ut.extend(ut.attrHooks[n],{get:function(e){var r=e.getAttribute(n,2);return null==r?t:r}})}),ut.each(["href","src"],function(e,t){ut.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}})),ut.support.style||(ut.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),ut.support.optSelected||(ut.propHooks.selected=ut.extend(ut.propHooks.selected,{get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}})),ut.support.enctype||(ut.propFix.enctype="encoding"),ut.support.checkOn||ut.each(["radio","checkbox"],function(){ut.valHooks[this]={get:function(e){return null===e.getAttribute("value")?"on":e.value}}}),ut.each(["radio","checkbox"],function(){ut.valHooks[this]=ut.extend(ut.valHooks[this],{set:function(e,t){return ut.isArray(t)?e.checked=ut.inArray(ut(e).val(),t)>=0:void 0}})});var Ft=/^(?:input|select|textarea)$/i,Ot=/^key/,Bt=/^(?:mouse|contextmenu)|click/,Pt=/^(?:focusinfocus|focusoutblur)$/,Rt=/^([^.]*)(?:\.(.+)|)$/;ut.event={global:{},add:function(e,n,r,i,o){var a,s,u,l,c,f,p,d,h,g,m,y=ut._data(e);if(y){for(r.handler&&(l=r,r=l.handler,o=l.selector),r.guid||(r.guid=ut.guid++),(s=y.events)||(s=y.events={}),(f=y.handle)||(f=y.handle=function(e){return typeof ut===V||e&&ut.event.triggered===e.type?t:ut.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(ct)||[""],u=n.length;u--;)a=Rt.exec(n[u])||[],h=m=a[1],g=(a[2]||"").split(".").sort(),c=ut.event.special[h]||{},h=(o?c.delegateType:c.bindType)||h,c=ut.event.special[h]||{},p=ut.extend({type:h,origType:m,data:i,handler:r,guid:r.guid,selector:o,needsContext:o&&ut.expr.match.needsContext.test(o),namespace:g.join(".")},l),(d=s[h])||(d=s[h]=[],d.delegateCount=0,c.setup&&c.setup.call(e,i,g,f)!==!1||(e.addEventListener?e.addEventListener(h,f,!1):e.attachEvent&&e.attachEvent("on"+h,f))),c.add&&(c.add.call(e,p),p.handler.guid||(p.handler.guid=r.guid)),o?d.splice(d.delegateCount++,0,p):d.push(p),ut.event.global[h]=!0;e=null}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,m=ut.hasData(e)&&ut._data(e);if(m&&(c=m.events)){for(t=(t||"").match(ct)||[""],l=t.length;l--;)if(s=Rt.exec(t[l])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){for(f=ut.event.special[d]||{},d=(r?f.delegateType:f.bindType)||d,p=c[d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),u=o=p.length;o--;)a=p[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(p.splice(o,1),a.selector&&p.delegateCount--,f.remove&&f.remove.call(e,a));u&&!p.length&&(f.teardown&&f.teardown.call(e,h,m.handle)!==!1||ut.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)ut.event.remove(e,d+t[l],n,r,!0);ut.isEmptyObject(c)&&(delete m.handle,ut._removeData(e,"events"))}},trigger:function(n,r,i,o){var a,s,u,l,c,f,p,d=[i||Y],h=at.call(n,"type")?n.type:n,g=at.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||Y,3!==i.nodeType&&8!==i.nodeType&&!Pt.test(h+ut.event.triggered)&&(h.indexOf(".")>=0&&(g=h.split("."),h=g.shift(),g.sort()),s=h.indexOf(":")<0&&"on"+h,n=n[ut.expando]?n:new ut.Event(h,"object"==typeof n&&n),n.isTrigger=!0,n.namespace=g.join("."),n.namespace_re=n.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:ut.makeArray(r,[n]),c=ut.event.special[h]||{},o||!c.trigger||c.trigger.apply(i,r)!==!1)){if(!o&&!c.noBubble&&!ut.isWindow(i)){for(l=c.delegateType||h,Pt.test(l+h)||(u=u.parentNode);u;u=u.parentNode)d.push(u),f=u;f===(i.ownerDocument||Y)&&d.push(f.defaultView||f.parentWindow||e)}for(p=0;(u=d[p++])&&!n.isPropagationStopped();)n.type=p>1?l:c.bindType||h,a=(ut._data(u,"events")||{})[n.type]&&ut._data(u,"handle"),a&&a.apply(u,r),a=s&&u[s],a&&ut.acceptData(u)&&a.apply&&a.apply(u,r)===!1&&n.preventDefault();if(n.type=h,!(o||n.isDefaultPrevented()||c._default&&c._default.apply(i.ownerDocument,r)!==!1||"click"===h&&ut.nodeName(i,"a")||!ut.acceptData(i)||!s||!i[h]||ut.isWindow(i))){f=i[s],f&&(i[s]=null),ut.event.triggered=h;try{i[h]()}catch(m){}ut.event.triggered=t,f&&(i[s]=f)}return n.result}},dispatch:function(e){e=ut.event.fix(e);var n,r,i,o,a,s=[],u=rt.call(arguments),l=(ut._data(this,"events")||{})[e.type]||[],c=ut.event.special[e.type]||{};if(u[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){for(s=ut.event.handlers.call(this,e,l),n=0;(o=s[n++])&&!e.isPropagationStopped();)for(e.currentTarget=o.elem,a=0;(i=o.handlers[a++])&&!e.isImmediatePropagationStopped();)(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((ut.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,u),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()));return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],u=n.delegateCount,l=e.target;if(u&&l.nodeType&&(!e.button||"click"!==e.type))for(;l!=this;l=l.parentNode||this)if(1===l.nodeType&&(l.disabled!==!0||"click"!==e.type)){for(o=[],a=0;u>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?ut(r,this).index(l)>=0:ut.find(r,this,null,[l]).length),o[r]&&o.push(i);o.length&&s.push({elem:l,handlers:o})}return uC.cacheLength&&delete e[t.shift()],e[n]=r}}function i(e){return e[P]=!0,e}function o(e){var t=L.createElement("div");try{return e(t)}catch(n){return!1}finally{t=null}}function a(e,t,n,r){var i,o,a,s,u,l,c,d,h,g;if((t?t.ownerDocument||t:R)!==L&&D(t),t=t||L,n=n||[],!e||"string"!=typeof e)return n;if(1!==(s=t.nodeType)&&9!==s)return[];if(!q&&!r){if(i=gt.exec(e))if(a=i[1]){if(9===s){if(o=t.getElementById(a),!o||!o.parentNode)return n;if(o.id===a)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(a))&&O(t,o)&&o.id===a)return n.push(o),n}else{if(i[2])return Q.apply(n,K.call(t.getElementsByTagName(e),0)),n;if((a=i[3])&&W.getByClassName&&t.getElementsByClassName)return Q.apply(n,K.call(t.getElementsByClassName(a),0)),n}if(W.qsa&&!M.test(e)){if(c=!0,d=P,h=t,g=9===s&&e,1===s&&"object"!==t.nodeName.toLowerCase()){for(l=f(e),(c=t.getAttribute("id"))?d=c.replace(vt,"\\$&"):t.setAttribute("id",d),d="[id='"+d+"'] ",u=l.length;u--;)l[u]=d+p(l[u]);h=dt.test(e)&&t.parentNode||t,g=l.join(",")}if(g)try{return Q.apply(n,K.call(h.querySelectorAll(g),0)),n}catch(m){}finally{c||t.removeAttribute("id")}}}return x(e.replace(at,"$1"),t,n,r)}function s(e,t){var n=t&&e,r=n&&(~t.sourceIndex||Y)-(~e.sourceIndex||Y);if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function u(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function l(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function c(e){return i(function(t){return t=+t,i(function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}function f(e,t){var n,r,i,o,s,u,l,c=X[e+" "];if(c)return t?0:c.slice(0);for(s=e,u=[],l=C.preFilter;s;){(!n||(r=st.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),u.push(i=[])),n=!1,(r=lt.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(at," ")}),s=s.slice(n.length));for(o in C.filter)!(r=pt[o].exec(s))||l[o]&&!(r=l[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?a.error(e):X(e,u).slice(0)}function p(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r}function d(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=I++;return t.first?function(t,n,o){for(;t=t[r];)if(1===t.nodeType||i)return e(t,n,o)}:function(t,n,a){var s,u,l,c=$+" "+o;if(a){for(;t=t[r];)if((1===t.nodeType||i)&&e(t,n,a))return!0}else for(;t=t[r];)if(1===t.nodeType||i)if(l=t[P]||(t[P]={}),(u=l[r])&&u[0]===c){if((s=u[1])===!0||s===N)return s===!0}else if(u=l[r]=[c],u[1]=e(t,n,a)||N,u[1]===!0)return!0}}function h(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function g(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;u>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),l&&t.push(s));return a}function m(e,t,n,r,o,a){return r&&!r[P]&&(r=m(r)),o&&!o[P]&&(o=m(o,a)),i(function(i,a,s,u){var l,c,f,p=[],d=[],h=a.length,m=i||b(t||"*",s.nodeType?[s]:s,[]),y=!e||!i&&t?m:g(m,p,e,s,u),v=n?o||(i?e:h||r)?[]:a:y;if(n&&n(y,v,s,u),r)for(l=g(v,d),r(l,[],s,u),c=l.length;c--;)(f=l[c])&&(v[d[c]]=!(y[d[c]]=f));if(i){if(o||e){if(o){for(l=[],c=v.length;c--;)(f=v[c])&&l.push(y[c]=f);o(null,v=[],l,u)}for(c=v.length;c--;)(f=v[c])&&(l=o?Z.call(i,f):p[c])>-1&&(i[l]=!(a[l]=f))}}else v=g(v===a?v.splice(h,v.length):v),o?o(null,a,v,u):Q.apply(a,v)})}function y(e){for(var t,n,r,i=e.length,o=C.relative[e[0].type],a=o||C.relative[" "],s=o?1:0,u=d(function(e){return e===t},a,!0),l=d(function(e){return Z.call(t,e)>-1},a,!0),c=[function(e,n,r){return!o&&(r||n!==j)||((t=n).nodeType?u(e,n,r):l(e,n,r))}];i>s;s++)if(n=C.relative[e[s].type])c=[d(h(c),n)];else{if(n=C.filter[e[s].type].apply(null,e[s].matches),n[P]){for(r=++s;i>r&&!C.relative[e[r].type];r++);return m(s>1&&h(c),s>1&&p(e.slice(0,s-1)).replace(at,"$1"),n,r>s&&y(e.slice(s,r)),i>r&&y(e=e.slice(r)),i>r&&p(e))}c.push(n)}return h(c)}function v(e,t){var n=0,r=t.length>0,o=e.length>0,s=function(i,s,u,l,c){var f,p,d,h=[],m=0,y="0",v=i&&[],b=null!=c,x=j,w=i||o&&C.find.TAG("*",c&&s.parentNode||s),T=$+=null==x?1:Math.random()||.1;for(b&&(j=s!==L&&s,N=n);null!=(f=w[y]);y++){if(o&&f){for(p=0;d=e[p++];)if(d(f,s,u)){l.push(f);break}b&&($=T,N=++n)}r&&((f=!d&&f)&&m--,i&&v.push(f))}if(m+=y,r&&y!==m){for(p=0;d=t[p++];)d(v,h,s,u);if(i){if(m>0)for(;y--;)v[y]||h[y]||(h[y]=G.call(l));h=g(h)}Q.apply(l,h),b&&!i&&h.length>0&&m+t.length>1&&a.uniqueSort(l)}return b&&($=T,j=x),v};return r?i(s):s}function b(e,t,n){for(var r=0,i=t.length;i>r;r++)a(e,t[r],n);return n}function x(e,t,n,r){var i,o,a,s,u,l=f(e);if(!r&&1===l.length){if(o=l[0]=l[0].slice(0),o.length>2&&"ID"===(a=o[0]).type&&9===t.nodeType&&!q&&C.relative[o[1].type]){if(t=C.find.ID(a.matches[0].replace(xt,wt),t)[0],!t)return n;e=e.slice(o.shift().value.length)}for(i=pt.needsContext.test(e)?0:o.length;i--&&(a=o[i],!C.relative[s=a.type]);)if((u=C.find[s])&&(r=u(a.matches[0].replace(xt,wt),dt.test(o[0].type)&&t.parentNode||t))){if(o.splice(i,1),e=r.length&&p(o),!e)return Q.apply(n,K.call(r,0)),n;break}}return S(e,l)(r,t,q,n,dt.test(e)),n}function w(){}var T,N,C,k,E,S,A,j,D,L,H,q,M,_,F,O,B,P="sizzle"+-new Date,R=e.document,W={},$=0,I=0,z=r(),X=r(),U=r(),V=typeof t,Y=1<<31,J=[],G=J.pop,Q=J.push,K=J.slice,Z=J.indexOf||function(e){for(var t=0,n=this.length;n>t;t++)if(this[t]===e)return t;return-1},et="[\\x20\\t\\r\\n\\f]",tt="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",nt=tt.replace("w","w#"),rt="([*^$|!~]?=)",it="\\["+et+"*("+tt+")"+et+"*(?:"+rt+et+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+nt+")|)|)"+et+"*\\]",ot=":("+tt+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+it.replace(3,8)+")*)|.*)\\)|)",at=new RegExp("^"+et+"+|((?:^|[^\\\\])(?:\\\\.)*)"+et+"+$","g"),st=new RegExp("^"+et+"*,"+et+"*"),lt=new RegExp("^"+et+"*([\\x20\\t\\r\\n\\f>+~])"+et+"*"),ct=new RegExp(ot),ft=new RegExp("^"+nt+"$"),pt={ID:new RegExp("^#("+tt+")"),CLASS:new RegExp("^\\.("+tt+")"),NAME:new RegExp("^\\[name=['\"]?("+tt+")['\"]?\\]"),TAG:new RegExp("^("+tt.replace("w","w*")+")"),ATTR:new RegExp("^"+it),PSEUDO:new RegExp("^"+ot),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+et+"*(even|odd|(([+-]|)(\\d*)n|)"+et+"*(?:([+-]|)"+et+"*(\\d+)|))"+et+"*\\)|)","i"),needsContext:new RegExp("^"+et+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+et+"*((?:-\\d)?\\d*)"+et+"*\\)|)(?=[^-]|$)","i")},dt=/[\x20\t\r\n\f]*[+~]/,ht=/^[^{]+\{\s*\[native code/,gt=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,mt=/^(?:input|select|textarea|button)$/i,yt=/^h\d$/i,vt=/'|\\/g,bt=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,xt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,wt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320)};try{K.call(R.documentElement.childNodes,0)[0].nodeType}catch(Tt){K=function(e){for(var t,n=[];t=this[e++];)n.push(t);return n}}E=a.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},D=a.setDocument=function(e){var r=e?e.ownerDocument||e:R;return r!==L&&9===r.nodeType&&r.documentElement?(L=r,H=r.documentElement,q=E(r),W.tagNameNoComments=o(function(e){return e.appendChild(r.createComment("")),!e.getElementsByTagName("*").length}),W.attributes=o(function(e){e.innerHTML="";var t=typeof e.lastChild.getAttribute("multiple");return"boolean"!==t&&"string"!==t}),W.getByClassName=o(function(e){return e.innerHTML="",e.getElementsByClassName&&e.getElementsByClassName("e").length?(e.lastChild.className="e",2===e.getElementsByClassName("e").length):!1}),W.getByName=o(function(e){e.id=P+0,e.innerHTML="
",H.insertBefore(e,H.firstChild);var t=r.getElementsByName&&r.getElementsByName(P).length===2+r.getElementsByName(P+0).length;return W.getIdNotName=!r.getElementById(P),H.removeChild(e),t}),C.attrHandle=o(function(e){return e.innerHTML="",e.firstChild&&typeof e.firstChild.getAttribute!==V&&"#"===e.firstChild.getAttribute("href")})?{}:{href:function(e){return e.getAttribute("href",2)},type:function(e){return e.getAttribute("type")}},W.getIdNotName?(C.find.ID=function(e,t){if(typeof t.getElementById!==V&&!q){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},C.filter.ID=function(e){var t=e.replace(xt,wt);return function(e){return e.getAttribute("id")===t}}):(C.find.ID=function(e,n){if(typeof n.getElementById!==V&&!q){var r=n.getElementById(e);return r?r.id===e||typeof r.getAttributeNode!==V&&r.getAttributeNode("id").value===e?[r]:t:[]}},C.filter.ID=function(e){var t=e.replace(xt,wt);return function(e){var n=typeof e.getAttributeNode!==V&&e.getAttributeNode("id");return n&&n.value===t}}),C.find.TAG=W.tagNameNoComments?function(e,t){return typeof t.getElementsByTagName!==V?t.getElementsByTagName(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},C.find.NAME=W.getByName&&function(e,t){return typeof t.getElementsByName!==V?t.getElementsByName(name):void 0},C.find.CLASS=W.getByClassName&&function(e,t){return typeof t.getElementsByClassName===V||q?void 0:t.getElementsByClassName(e)},_=[],M=[":focus"],(W.qsa=n(r.querySelectorAll))&&(o(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||M.push("\\["+et+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),e.querySelectorAll(":checked").length||M.push(":checked")}),o(function(e){e.innerHTML="",e.querySelectorAll("[i^='']").length&&M.push("[*^$]="+et+"*(?:\"\"|'')"),e.querySelectorAll(":enabled").length||M.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),M.push(",.*:")})),(W.matchesSelector=n(F=H.matchesSelector||H.mozMatchesSelector||H.webkitMatchesSelector||H.oMatchesSelector||H.msMatchesSelector))&&o(function(e){W.disconnectedMatch=F.call(e,"div"),F.call(e,"[s!='']:x"),_.push("!=",ot)}),M=new RegExp(M.join("|")),_=new RegExp(_.join("|")),O=n(H.contains)||H.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},B=H.compareDocumentPosition?function(e,t){var n;return e===t?(A=!0,0):(n=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t))?1&n||e.parentNode&&11===e.parentNode.nodeType?e===r||O(R,e)?-1:t===r||O(R,t)?1:0:4&n?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var n,i=0,o=e.parentNode,a=t.parentNode,u=[e],l=[t];if(e===t)return A=!0,0;if(!o||!a)return e===r?-1:t===r?1:o?-1:a?1:0;if(o===a)return s(e,t);for(n=e;n=n.parentNode;)u.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;u[i]===l[i];)i++;return i?s(u[i],l[i]):u[i]===R?-1:l[i]===R?1:0},A=!1,[0,0].sort(B),W.detectDuplicates=A,L):L},a.matches=function(e,t){return a(e,null,null,t)},a.matchesSelector=function(e,t){if((e.ownerDocument||e)!==L&&D(e),t=t.replace(bt,"='$1']"),!(!W.matchesSelector||q||_&&_.test(t)||M.test(t)))try{var n=F.call(e,t);if(n||W.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return a(t,L,null,[e]).length>0},a.contains=function(e,t){return(e.ownerDocument||e)!==L&&D(e),O(e,t)},a.attr=function(e,t){var n;return(e.ownerDocument||e)!==L&&D(e),q||(t=t.toLowerCase()),(n=C.attrHandle[t])?n(e):q||W.attributes?e.getAttribute(t):((n=e.getAttributeNode(t))||e.getAttribute(t))&&e[t]===!0?t:n&&n.specified?n.value:null},a.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},a.uniqueSort=function(e){var t,n=[],r=1,i=0;if(A=!W.detectDuplicates,e.sort(B),A){for(;t=e[r];r++)t===e[r-1]&&(i=n.push(r));for(;i--;)e.splice(n[i],1)}return e},k=a.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=k(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=k(t);return n},C=a.selectors={cacheLength:50,createPseudo:i,match:pt,find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(xt,wt),e[3]=(e[4]||e[5]||"").replace(xt,wt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||a.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&a.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return pt.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&ct.test(n)&&(t=f(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){return"*"===e?function(){return!0}:(e=e.replace(xt,wt).toLowerCase(),function(t){return t.nodeName&&t.nodeName.toLowerCase()===e})},CLASS:function(e){var t=z[e+" "];return t||(t=new RegExp("(^|"+et+")"+e+"("+et+"|$)"))&&z(e,function(e){return t.test(e.className||typeof e.getAttribute!==V&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=a.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!u&&!s;if(m){if(o){for(;g;){for(f=t;f=f[g];)if(s?f.nodeName.toLowerCase()===y:1===f.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){for(c=m[P]||(m[P]={}),l=c[e]||[],d=l[0]===$&&l[1],p=l[0]===$&&l[2],f=d&&m.childNodes[d];f=++d&&f&&f[g]||(p=d=0)||h.pop();)if(1===f.nodeType&&++p&&f===t){c[e]=[$,d,p];break}}else if(v&&(l=(t[P]||(t[P]={}))[e])&&l[0]===$)p=l[1];else for(;(f=++d&&f&&f[g]||(p=d=0)||h.pop())&&((s?f.nodeName.toLowerCase()!==y:1!==f.nodeType)||!++p||(v&&((f[P]||(f[P]={}))[e]=[$,p]),f!==t)););return p-=i,p===r||p%r===0&&p/r>=0}}},PSEUDO:function(e,t){var n,r=C.pseudos[e]||C.setFilters[e.toLowerCase()]||a.error("unsupported pseudo: "+e);return r[P]?r(t):r.length>1?(n=[e,e,"",t],C.setFilters.hasOwnProperty(e.toLowerCase())?i(function(e,n){for(var i,o=r(e,t),a=o.length;a--;)i=Z.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:i(function(e){var t=[],n=[],r=S(e.replace(at,"$1"));return r[P]?i(function(e,t,n,i){for(var o,a=r(e,null,i,[]),s=e.length;s--;)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:i(function(e){return function(t){return a(e,t).length>0}}),contains:i(function(e){return function(t){return(t.textContent||t.innerText||k(t)).indexOf(e)>-1}}),lang:i(function(e){return ft.test(e||"")||a.error("unsupported lang: "+e),e=e.replace(xt,wt).toLowerCase(),function(t){var n;do if(n=q?t.getAttribute("xml:lang")||t.getAttribute("lang"):t.lang)return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===H},focus:function(e){return e===L.activeElement&&(!L.hasFocus||L.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!C.pseudos.empty(e)},header:function(e){return yt.test(e.nodeName)},input:function(e){return mt.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:c(function(){return[0]}),last:c(function(e,t){return[t-1]}),eq:c(function(e,t,n){return[0>n?n+t:n]}),even:c(function(e,t){for(var n=0;t>n;n+=2)e.push(n);return e}),odd:c(function(e,t){for(var n=1;t>n;n+=2)e.push(n);return e}),lt:c(function(e,t,n){for(var r=0>n?n+t:n;--r>=0;)e.push(r);return e}),gt:c(function(e,t,n){for(var r=0>n?n+t:n;++rt;t++)if(ut.contains(r[t],this))return!0}));for(n=[],t=0;i>t;t++)ut.find(e,this[t],n);return n=this.pushStack(i>1?ut.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t,n=ut(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(ut.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(f(this,e,!1))},filter:function(e){return this.pushStack(f(this,e,!0))},is:function(e){return!!e&&("string"==typeof e?zt.test(e)?ut(e,this.context).index(this[0])>=0:ut.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){for(var n,r=0,i=this.length,o=[],a=zt.test(e)||"string"!=typeof e?ut(e,t||this.context):0;i>r;r++)for(n=this[r];n&&n.ownerDocument&&n!==t&&11!==n.nodeType;){if(a?a.index(n)>-1:ut.find.matchesSelector(n,e)){o.push(n);break}n=n.parentNode}return this.pushStack(o.length>1?ut.unique(o):o)},index:function(e){return e?"string"==typeof e?ut.inArray(this[0],ut(e)):ut.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?ut(e,t):ut.makeArray(e&&e.nodeType?[e]:e),r=ut.merge(this.get(),n);return this.pushStack(ut.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),ut.fn.andSelf=ut.fn.addBack,ut.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return ut.dir(e,"parentNode")},parentsUntil:function(e,t,n){return ut.dir(e,"parentNode",n)},next:function(e){return c(e,"nextSibling") +},prev:function(e){return c(e,"previousSibling")},nextAll:function(e){return ut.dir(e,"nextSibling")},prevAll:function(e){return ut.dir(e,"previousSibling")},nextUntil:function(e,t,n){return ut.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return ut.dir(e,"previousSibling",n)},siblings:function(e){return ut.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return ut.sibling(e.firstChild)},contents:function(e){return ut.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:ut.merge([],e.childNodes)}},function(e,t){ut.fn[e]=function(n,r){var i=ut.map(this,t,n);return Wt.test(e)||(r=n),r&&"string"==typeof r&&(i=ut.filter(r,i)),i=this.length>1&&!Xt[e]?ut.unique(i):i,this.length>1&&$t.test(e)&&(i=i.reverse()),this.pushStack(i)}}),ut.extend({filter:function(e,t,n){return n&&(e=":not("+e+")"),1===t.length?ut.find.matchesSelector(t[0],e)?[t[0]]:[]:ut.find.matches(e,t)},dir:function(e,n,r){for(var i=[],o=e[n];o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!ut(o).is(r));)1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});var Ut="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",Vt=/ jQuery\d+="(?:null|\d+)"/g,Yt=new RegExp("<(?:"+Ut+")[\\s/>]","i"),Jt=/^\s+/,Gt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,Qt=/<([\w:]+)/,Kt=/\s*$/g,sn={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:ut.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},un=p(Y),ln=un.appendChild(Y.createElement("div"));sn.optgroup=sn.option,sn.tbody=sn.tfoot=sn.colgroup=sn.caption=sn.thead,sn.th=sn.td,ut.fn.extend({text:function(e){return ut.access(this,function(e){return e===t?ut.text(this):this.empty().append((this[0]&&this[0].ownerDocument||Y).createTextNode(e))},null,e,arguments.length)},wrapAll:function(e){if(ut.isFunction(e))return this.each(function(t){ut(this).wrapAll(e.call(this,t))});if(this[0]){var t=ut(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){for(var e=this;e.firstChild&&1===e.firstChild.nodeType;)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return this.each(ut.isFunction(e)?function(t){ut(this).wrapInner(e.call(this,t))}:function(){var t=ut(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=ut.isFunction(e);return this.each(function(n){ut(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){ut.nodeName(this,"body")||ut(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.appendChild(e)})},prepend:function(){return this.domManip(arguments,!0,function(e){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&this.insertBefore(e,this.firstChild)})},before:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,!1,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){for(var n,r=0;null!=(n=this[r]);r++)(!e||ut.filter(e,[n]).length>0)&&(t||1!==n.nodeType||ut.cleanData(b(n)),n.parentNode&&(t&&ut.contains(n.ownerDocument,n)&&m(b(n,"script")),n.parentNode.removeChild(n)));return this},empty:function(){for(var e,t=0;null!=(e=this[t]);t++){for(1===e.nodeType&&ut.cleanData(b(e,!1));e.firstChild;)e.removeChild(e.firstChild);e.options&&ut.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return ut.clone(this,e,t)})},html:function(e){return ut.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(Vt,""):t;if(!("string"!=typeof e||en.test(e)||!ut.support.htmlSerialize&&Yt.test(e)||!ut.support.leadingWhitespace&&Jt.test(e)||sn[(Qt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(Gt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(ut.cleanData(b(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(e){var t=ut.isFunction(e);return t||"string"==typeof e||(e=ut(e).not(this).detach()),this.domManip([e],!0,function(e){var t=this.nextSibling,n=this.parentNode;n&&(ut(this).remove(),n.insertBefore(e,t))})},detach:function(e){return this.remove(e,!0)},domManip:function(e,n,r){e=tt.apply([],e);var i,o,a,s,u,l,c=0,f=this.length,p=this,m=f-1,y=e[0],v=ut.isFunction(y);if(v||!(1>=f||"string"!=typeof y||ut.support.checkClone)&&nn.test(y))return this.each(function(i){var o=p.eq(i);v&&(e[0]=y.call(this,i,n?o.html():t)),o.domManip(e,n,r)});if(f&&(l=ut.buildFragment(e,this[0].ownerDocument,!1,this),i=l.firstChild,1===l.childNodes.length&&(l=i),i)){for(n=n&&ut.nodeName(i,"tr"),s=ut.map(b(l,"script"),h),a=s.length;f>c;c++)o=l,c!==m&&(o=ut.clone(o,!0,!0),a&&ut.merge(s,b(o,"script"))),r.call(n&&ut.nodeName(this[c],"table")?d(this[c],"tbody"):this[c],o,c);if(a)for(u=s[s.length-1].ownerDocument,ut.map(s,g),c=0;a>c;c++)o=s[c],rn.test(o.type||"")&&!ut._data(o,"globalEval")&&ut.contains(u,o)&&(o.src?ut.ajax({url:o.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):ut.globalEval((o.text||o.textContent||o.innerHTML||"").replace(an,"")));l=i=null}return this}}),ut.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){ut.fn[e]=function(e){for(var n,r=0,i=[],o=ut(e),a=o.length-1;a>=r;r++)n=r===a?this:this.clone(!0),ut(o[r])[t](n),nt.apply(i,n.get());return this.pushStack(i)}}),ut.extend({clone:function(e,t,n){var r,i,o,a,s,u=ut.contains(e.ownerDocument,e);if(ut.support.html5Clone||ut.isXMLDoc(e)||!Yt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(ln.innerHTML=e.outerHTML,ln.removeChild(o=ln.firstChild)),!(ut.support.noCloneEvent&&ut.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||ut.isXMLDoc(e)))for(r=b(o),s=b(e),a=0;null!=(i=s[a]);++a)r[a]&&v(i,r[a]);if(t)if(n)for(s=s||b(e),r=r||b(o),a=0;null!=(i=s[a]);a++)y(i,r[a]);else y(e,o);return r=b(o,"script"),r.length>0&&m(r,!u&&b(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){for(var i,o,a,s,u,l,c,f=e.length,d=p(t),h=[],g=0;f>g;g++)if(o=e[g],o||0===o)if("object"===ut.type(o))ut.merge(h,o.nodeType?[o]:o);else if(Zt.test(o)){for(s=s||d.appendChild(t.createElement("div")),u=(Qt.exec(o)||["",""])[1].toLowerCase(),c=sn[u]||sn._default,s.innerHTML=c[1]+o.replace(Gt,"<$1>")+c[2],i=c[0];i--;)s=s.lastChild;if(!ut.support.leadingWhitespace&&Jt.test(o)&&h.push(t.createTextNode(Jt.exec(o)[0])),!ut.support.tbody)for(o="table"!==u||Kt.test(o)?""!==c[1]||Kt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;i--;)ut.nodeName(l=o.childNodes[i],"tbody")&&!l.childNodes.length&&o.removeChild(l);for(ut.merge(h,s.childNodes),s.textContent="";s.firstChild;)s.removeChild(s.firstChild);s=d.lastChild}else h.push(t.createTextNode(o));for(s&&d.removeChild(s),ut.support.appendChecked||ut.grep(b(h,"input"),x),g=0;o=h[g++];)if((!r||-1===ut.inArray(o,r))&&(a=ut.contains(o.ownerDocument,o),s=b(d.appendChild(o),"script"),a&&m(s),n))for(i=0;o=s[i++];)rn.test(o.type||"")&&n.push(o);return s=null,d},cleanData:function(e,t){for(var n,r,i,o,a=0,s=ut.expando,u=ut.cache,l=ut.support.deleteExpando,c=ut.event.special;null!=(n=e[a]);a++)if((t||ut.acceptData(n))&&(i=n[s],o=i&&u[i])){if(o.events)for(r in o.events)c[r]?ut.event.remove(n,r):ut.removeEvent(n,r,o.handle);u[i]&&(delete u[i],l?delete n[s]:typeof n.removeAttribute!==V?n.removeAttribute(s):n[s]=null,Z.push(i))}}});var cn,fn,pn,dn=/alpha\([^)]*\)/i,hn=/opacity\s*=\s*([^)]*)/,gn=/^(top|right|bottom|left)$/,mn=/^(none|table(?!-c[ea]).+)/,yn=/^margin/,vn=new RegExp("^("+lt+")(.*)$","i"),bn=new RegExp("^("+lt+")(?!px)[a-z%]+$","i"),xn=new RegExp("^([+-])=("+lt+")","i"),wn={BODY:"block"},Tn={position:"absolute",visibility:"hidden",display:"block"},Nn={letterSpacing:0,fontWeight:400},Cn=["Top","Right","Bottom","Left"],kn=["Webkit","O","Moz","ms"];ut.fn.extend({css:function(e,n){return ut.access(this,function(e,n,r){var i,o,a={},s=0;if(ut.isArray(n)){for(o=fn(e),i=n.length;i>s;s++)a[n[s]]=ut.css(e,n[s],!1,o);return a}return r!==t?ut.style(e,n,r):ut.css(e,n)},e,n,arguments.length>1)},show:function(){return N(this,!0)},hide:function(){return N(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:T(this))?ut(this).show():ut(this).hide()})}}),ut.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=pn(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":ut.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,u=ut.camelCase(n),l=e.style;if(n=ut.cssProps[u]||(ut.cssProps[u]=w(l,u)),s=ut.cssHooks[n]||ut.cssHooks[u],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:l[n];if(a=typeof r,"string"===a&&(o=xn.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(ut.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||ut.cssNumber[u]||(r+="px"),ut.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(l[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{l[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,u=ut.camelCase(n);return n=ut.cssProps[u]||(ut.cssProps[u]=w(e.style,u)),s=ut.cssHooks[n]||ut.cssHooks[u],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=pn(e,n,i)),"normal"===a&&n in Nn&&(a=Nn[n]),""===r||r?(o=parseFloat(a),r===!0||ut.isNumeric(o)?o||0:a):a},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),e.getComputedStyle?(fn=function(t){return e.getComputedStyle(t,null)},pn=function(e,n,r){var i,o,a,s=r||fn(e),u=s?s.getPropertyValue(n)||s[n]:t,l=e.style;return s&&(""!==u||ut.contains(e.ownerDocument,e)||(u=ut.style(e,n)),bn.test(u)&&yn.test(n)&&(i=l.width,o=l.minWidth,a=l.maxWidth,l.minWidth=l.maxWidth=l.width=u,u=s.width,l.width=i,l.minWidth=o,l.maxWidth=a)),u}):Y.documentElement.currentStyle&&(fn=function(e){return e.currentStyle},pn=function(e,n,r){var i,o,a,s=r||fn(e),u=s?s[n]:t,l=e.style;return null==u&&l&&l[n]&&(u=l[n]),bn.test(u)&&!gn.test(n)&&(i=l.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),l.left="fontSize"===n?"1em":u,u=l.pixelLeft+"px",l.left=i,a&&(o.left=a)),""===u?"auto":u}),ut.each(["height","width"],function(e,t){ut.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&mn.test(ut.css(e,"display"))?ut.swap(e,Tn,function(){return E(e,t,r)}):E(e,t,r):void 0},set:function(e,n,r){var i=r&&fn(e);return C(e,n,r?k(e,t,r,ut.support.boxSizing&&"border-box"===ut.css(e,"boxSizing",!1,i),i):0)}}}),ut.support.opacity||(ut.cssHooks.opacity={get:function(e,t){return hn.test((t&&e.currentStyle?e.currentStyle.filter:e.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":t?"1":""},set:function(e,t){var n=e.style,r=e.currentStyle,i=ut.isNumeric(t)?"alpha(opacity="+100*t+")":"",o=r&&r.filter||n.filter||"";n.zoom=1,(t>=1||""===t)&&""===ut.trim(o.replace(dn,""))&&n.removeAttribute&&(n.removeAttribute("filter"),""===t||r&&!r.filter)||(n.filter=dn.test(o)?o.replace(dn,i):o+" "+i)}}),ut(function(){ut.support.reliableMarginRight||(ut.cssHooks.marginRight={get:function(e,t){return t?ut.swap(e,{display:"inline-block"},pn,[e,"marginRight"]):void 0}}),!ut.support.pixelPosition&&ut.fn.position&&ut.each(["top","left"],function(e,t){ut.cssHooks[t]={get:function(e,n){return n?(n=pn(e,t),bn.test(n)?ut(e).position()[t]+"px":n):void 0}}})}),ut.expr&&ut.expr.filters&&(ut.expr.filters.hidden=function(e){return e.offsetWidth<=0&&e.offsetHeight<=0||!ut.support.reliableHiddenOffsets&&"none"===(e.style&&e.style.display||ut.css(e,"display"))},ut.expr.filters.visible=function(e){return!ut.expr.filters.hidden(e)}),ut.each({margin:"",padding:"",border:"Width"},function(e,t){ut.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"==typeof n?n.split(" "):[n];4>r;r++)i[e+Cn[r]+t]=o[r]||o[r-2]||o[0];return i}},yn.test(e)||(ut.cssHooks[e+t].set=C)});var En=/%20/g,Sn=/\[\]$/,An=/\r?\n/g,jn=/^(?:submit|button|image|reset|file)$/i,Dn=/^(?:input|select|textarea|keygen)/i;ut.fn.extend({serialize:function(){return ut.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=ut.prop(this,"elements");return e?ut.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!ut(this).is(":disabled")&&Dn.test(this.nodeName)&&!jn.test(e)&&(this.checked||!tn.test(e))}).map(function(e,t){var n=ut(this).val();return null==n?null:ut.isArray(n)?ut.map(n,function(e){return{name:t.name,value:e.replace(An,"\r\n")}}):{name:t.name,value:n.replace(An,"\r\n")}}).get()}}),ut.param=function(e,n){var r,i=[],o=function(e,t){t=ut.isFunction(t)?t():null==t?"":t,i[i.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(n===t&&(n=ut.ajaxSettings&&ut.ajaxSettings.traditional),ut.isArray(e)||e.jquery&&!ut.isPlainObject(e))ut.each(e,function(){o(this.name,this.value)});else for(r in e)j(r,e[r],n,o);return i.join("&").replace(En,"+")},ut.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){ut.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),ut.fn.hover=function(e,t){return this.mouseenter(e).mouseleave(t||e)};var Ln,Hn,qn=ut.now(),Mn=/\?/,_n=/#.*$/,Fn=/([?&])_=[^&]*/,On=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Bn=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Pn=/^(?:GET|HEAD)$/,Rn=/^\/\//,Wn=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,$n=ut.fn.load,In={},zn={},Xn="*/".concat("*");try{Hn=J.href}catch(Un){Hn=Y.createElement("a"),Hn.href="",Hn=Hn.href}Ln=Wn.exec(Hn.toLowerCase())||[],ut.fn.load=function(e,n,r){if("string"!=typeof e&&$n)return $n.apply(this,arguments);var i,o,a,s=this,u=e.indexOf(" ");return u>=0&&(i=e.slice(u,e.length),e=e.slice(0,u)),ut.isFunction(n)?(r=n,n=t):n&&"object"==typeof n&&(a="POST"),s.length>0&&ut.ajax({url:e,type:a,dataType:"html",data:n}).done(function(e){o=arguments,s.html(i?ut("
").append(ut.parseHTML(e)).find(i):e)}).complete(r&&function(e,t){s.each(r,o||[e.responseText,t,e])}),this},ut.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){ut.fn[t]=function(e){return this.on(t,e)}}),ut.each(["get","post"],function(e,n){ut[n]=function(e,r,i,o){return ut.isFunction(r)&&(o=o||i,i=r,r=t),ut.ajax({url:e,type:n,dataType:o,data:r,success:i})}}),ut.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Hn,type:"GET",isLocal:Bn.test(Ln[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Xn,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":e.String,"text html":!0,"text json":ut.parseJSON,"text xml":ut.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?H(H(e,ut.ajaxSettings),t):H(ut.ajaxSettings,e)},ajaxPrefilter:D(In),ajaxTransport:D(zn),ajax:function(e,n){function r(e,n,r,i){var o,f,v,b,w,N=n;2!==x&&(x=2,u&&clearTimeout(u),c=t,s=i||"",T.readyState=e>0?4:0,r&&(b=q(p,T,r)),e>=200&&300>e||304===e?(p.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(ut.lastModified[a]=w),w=T.getResponseHeader("etag"),w&&(ut.etag[a]=w)),204===e?(o=!0,N="nocontent"):304===e?(o=!0,N="notmodified"):(o=M(p,b),N=o.state,f=o.data,v=o.error,o=!v)):(v=N,(e||!N)&&(N="error",0>e&&(e=0))),T.status=e,T.statusText=(n||N)+"",o?g.resolveWith(d,[f,N,T]):g.rejectWith(d,[T,N,v]),T.statusCode(y),y=t,l&&h.trigger(o?"ajaxSuccess":"ajaxError",[T,p,o?f:v]),m.fireWith(d,[T,N]),l&&(h.trigger("ajaxComplete",[T,p]),--ut.active||ut.event.trigger("ajaxStop")))}"object"==typeof e&&(n=e,e=t),n=n||{};var i,o,a,s,u,l,c,f,p=ut.ajaxSetup({},n),d=p.context||p,h=p.context&&(d.nodeType||d.jquery)?ut(d):ut.event,g=ut.Deferred(),m=ut.Callbacks("once memory"),y=p.statusCode||{},v={},b={},x=0,w="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===x){if(!f)for(f={};t=On.exec(s);)f[t[1].toLowerCase()]=t[2];t=f[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===x?s:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return x||(e=b[n]=b[n]||e,v[e]=t),this},overrideMimeType:function(e){return x||(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>x)for(t in e)y[t]=[y[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||w;return c&&c.abort(t),r(0,t),this}};if(g.promise(T).complete=m.add,T.success=T.done,T.error=T.fail,p.url=((e||p.url||Hn)+"").replace(_n,"").replace(Rn,Ln[1]+"//"),p.type=n.method||n.type||p.method||p.type,p.dataTypes=ut.trim(p.dataType||"*").toLowerCase().match(ct)||[""],null==p.crossDomain&&(i=Wn.exec(p.url.toLowerCase()),p.crossDomain=!(!i||i[1]===Ln[1]&&i[2]===Ln[2]&&(i[3]||("http:"===i[1]?80:443))==(Ln[3]||("http:"===Ln[1]?80:443)))),p.data&&p.processData&&"string"!=typeof p.data&&(p.data=ut.param(p.data,p.traditional)),L(In,p,n,T),2===x)return T;l=p.global,l&&0===ut.active++&&ut.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!Pn.test(p.type),a=p.url,p.hasContent||(p.data&&(a=p.url+=(Mn.test(a)?"&":"?")+p.data,delete p.data),p.cache===!1&&(p.url=Fn.test(a)?a.replace(Fn,"$1_="+qn++):a+(Mn.test(a)?"&":"?")+"_="+qn++)),p.ifModified&&(ut.lastModified[a]&&T.setRequestHeader("If-Modified-Since",ut.lastModified[a]),ut.etag[a]&&T.setRequestHeader("If-None-Match",ut.etag[a])),(p.data&&p.hasContent&&p.contentType!==!1||n.contentType)&&T.setRequestHeader("Content-Type",p.contentType),T.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+Xn+"; q=0.01":""):p.accepts["*"]);for(o in p.headers)T.setRequestHeader(o,p.headers[o]);if(p.beforeSend&&(p.beforeSend.call(d,T,p)===!1||2===x))return T.abort();w="abort";for(o in{success:1,error:1,complete:1})T[o](p[o]);if(c=L(zn,p,n,T)){T.readyState=1,l&&h.trigger("ajaxSend",[T,p]),p.async&&p.timeout>0&&(u=setTimeout(function(){T.abort("timeout")},p.timeout));try{x=1,c.send(v,r)}catch(N){if(!(2>x))throw N;r(-1,N)}}else r(-1,"No Transport");return T},getScript:function(e,n){return ut.get(e,t,n,"script")},getJSON:function(e,t,n){return ut.get(e,t,n,"json")}}),ut.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return ut.globalEval(e),e}}}),ut.ajaxPrefilter("script",function(e){e.cache===t&&(e.cache=!1),e.crossDomain&&(e.type="GET",e.global=!1)}),ut.ajaxTransport("script",function(e){if(e.crossDomain){var n,r=Y.head||ut("head")[0]||Y.documentElement;return{send:function(t,i){n=Y.createElement("script"),n.async=!0,e.scriptCharset&&(n.charset=e.scriptCharset),n.src=e.url,n.onload=n.onreadystatechange=function(e,t){(t||!n.readyState||/loaded|complete/.test(n.readyState))&&(n.onload=n.onreadystatechange=null,n.parentNode&&n.parentNode.removeChild(n),n=null,t||i(200,"success"))},r.insertBefore(n,r.firstChild)},abort:function(){n&&n.onload(t,!0)}}}});var Vn=[],Yn=/(=)\?(?=&|$)|\?\?/;ut.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=Vn.pop()||ut.expando+"_"+qn++;return this[e]=!0,e}}),ut.ajaxPrefilter("json jsonp",function(n,r,i){var o,a,s,u=n.jsonp!==!1&&(Yn.test(n.url)?"url":"string"==typeof n.data&&!(n.contentType||"").indexOf("application/x-www-form-urlencoded")&&Yn.test(n.data)&&"data");return u||"jsonp"===n.dataTypes[0]?(o=n.jsonpCallback=ut.isFunction(n.jsonpCallback)?n.jsonpCallback():n.jsonpCallback,u?n[u]=n[u].replace(Yn,"$1"+o):n.jsonp!==!1&&(n.url+=(Mn.test(n.url)?"&":"?")+n.jsonp+"="+o),n.converters["script json"]=function(){return s||ut.error(o+" was not called"),s[0]},n.dataTypes[0]="json",a=e[o],e[o]=function(){s=arguments},i.always(function(){e[o]=a,n[o]&&(n.jsonpCallback=r.jsonpCallback,Vn.push(o)),s&&ut.isFunction(a)&&a(s[0]),s=a=t}),"script"):void 0});var Jn,Gn,Qn=0,Kn=e.ActiveXObject&&function(){var e;for(e in Jn)Jn[e](t,!0)};ut.ajaxSettings.xhr=e.ActiveXObject?function(){return!this.isLocal&&_()||F()}:_,Gn=ut.ajaxSettings.xhr(),ut.support.cors=!!Gn&&"withCredentials"in Gn,Gn=ut.support.ajax=!!Gn,Gn&&ut.ajaxTransport(function(n){if(!n.crossDomain||ut.support.cors){var r;return{send:function(i,o){var a,s,u=n.xhr();if(n.username?u.open(n.type,n.url,n.async,n.username,n.password):u.open(n.type,n.url,n.async),n.xhrFields)for(s in n.xhrFields)u[s]=n.xhrFields[s];n.mimeType&&u.overrideMimeType&&u.overrideMimeType(n.mimeType),n.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest");try{for(s in i)u.setRequestHeader(s,i[s])}catch(l){}u.send(n.hasContent&&n.data||null),r=function(e,i){var s,l,c,f;try{if(r&&(i||4===u.readyState))if(r=t,a&&(u.onreadystatechange=ut.noop,Kn&&delete Jn[a]),i)4!==u.readyState&&u.abort();else{f={},s=u.status,l=u.getAllResponseHeaders(),"string"==typeof u.responseText&&(f.text=u.responseText);try{c=u.statusText}catch(p){c=""}s||!n.isLocal||n.crossDomain?1223===s&&(s=204):s=f.text?200:404}}catch(d){i||o(-1,d)}f&&o(s,c,f,l)},n.async?4===u.readyState?setTimeout(r):(a=++Qn,Kn&&(Jn||(Jn={},ut(e).unload(Kn)),Jn[a]=r),u.onreadystatechange=r):r()},abort:function(){r&&r(t,!0)}}}});var Zn,er,tr=/^(?:toggle|show|hide)$/,nr=new RegExp("^(?:([+-])=|)("+lt+")([a-z%]*)$","i"),rr=/queueHooks$/,ir=[W],or={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=nr.exec(t),a=i.cur(),s=+a||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(ut.cssNumber[e]?"":"px"),"px"!==r&&s){s=ut.css(i.elem,e,!0)||n||1;do u=u||".5",s/=u,ut.style(i.elem,e,s+r);while(u!==(u=i.cur()/a)&&1!==u&&--l)}i.unit=r,i.start=s,i.end=o[1]?s+(o[1]+1)*n:n}return i}]};ut.Animation=ut.extend(P,{tweener:function(e,t){ut.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");for(var n,r=0,i=e.length;i>r;r++)n=e[r],or[n]=or[n]||[],or[n].unshift(t)},prefilter:function(e,t){t?ir.unshift(e):ir.push(e)}}),ut.Tween=$,$.prototype={constructor:$,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(ut.cssNumber[n]?"":"px")},cur:function(){var e=$.propHooks[this.prop];return e&&e.get?e.get(this):$.propHooks._default.get(this)},run:function(e){var t,n=$.propHooks[this.prop];return this.pos=t=this.options.duration?ut.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):$.propHooks._default.set(this),this}},$.prototype.init.prototype=$.prototype,$.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=ut.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){ut.fx.step[e.prop]?ut.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[ut.cssProps[e.prop]]||ut.cssHooks[e.prop])?ut.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},$.propHooks.scrollTop=$.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},ut.each(["toggle","show","hide"],function(e,t){var n=ut.fn[t];ut.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(I(t,!0),e,r,i)}}),ut.fn.extend({fadeTo:function(e,t,n,r){return this.filter(T).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=ut.isEmptyObject(e),o=ut.speed(t,n,r),a=function(){var t=P(this,ut.extend({},e),o);a.finish=function(){t.stop(!0)},(i||ut._data(this,"finish"))&&t.stop(!0)};return a.finish=a,i||o.queue===!1?this.each(a):this.queue(o.queue,a)},stop:function(e,n,r){var i=function(e){var t=e.stop;delete e.stop,t(r)};return"string"!=typeof e&&(r=n,n=e,e=t),n&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,n=null!=e&&e+"queueHooks",o=ut.timers,a=ut._data(this);if(n)a[n]&&a[n].stop&&i(a[n]);else for(n in a)a[n]&&a[n].stop&&rr.test(n)&&i(a[n]);for(n=o.length;n--;)o[n].elem!==this||null!=e&&o[n].queue!==e||(o[n].anim.stop(r),t=!1,o.splice(n,1));(t||!r)&&ut.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=ut._data(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=ut.timers,a=r?r.length:0;for(n.finish=!0,ut.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;a>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}}),ut.each({slideDown:I("show"),slideUp:I("hide"),slideToggle:I("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){ut.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),ut.speed=function(e,t,n){var r=e&&"object"==typeof e?ut.extend({},e):{complete:n||!n&&t||ut.isFunction(e)&&e,duration:e,easing:n&&t||t&&!ut.isFunction(t)&&t};return r.duration=ut.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in ut.fx.speeds?ut.fx.speeds[r.duration]:ut.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){ut.isFunction(r.old)&&r.old.call(this),r.queue&&ut.dequeue(this,r.queue)},r},ut.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},ut.timers=[],ut.fx=$.prototype.init,ut.fx.tick=function(){var e,n=ut.timers,r=0;for(Zn=ut.now();r-1,f={},p={};c?(p=a.position(),i=p.top,o=p.left):(i=parseFloat(u)||0,o=parseFloat(l)||0),ut.isFunction(t)&&(t=t.call(e,n,s)),null!=t.top&&(f.top=t.top-s.top+i),null!=t.left&&(f.left=t.left-s.left+o),"using"in t?t.using.call(e,f):a.css(f)}},ut.fn.extend({position:function(){if(this[0]){var e,t,n={top:0,left:0},r=this[0];return"fixed"===ut.css(r,"position")?t=r.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),ut.nodeName(e[0],"html")||(n=e.offset()),n.top+=ut.css(e[0],"borderTopWidth",!0),n.left+=ut.css(e[0],"borderLeftWidth",!0)),{top:t.top-n.top-ut.css(r,"marginTop",!0),left:t.left-n.left-ut.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var e=this.offsetParent||Y.documentElement;e&&!ut.nodeName(e,"html")&&"static"===ut.css(e,"position");)e=e.offsetParent;return e||Y.documentElement})}}),ut.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(e,n){var r=/Y/.test(n);ut.fn[e]=function(i){return ut.access(this,function(e,i,o){var a=z(e);return o===t?a?n in a?a[n]:a.document.documentElement[i]:e[i]:void(a?a.scrollTo(r?ut(a).scrollLeft():o,r?o:ut(a).scrollTop()):e[i]=o)},e,i,arguments.length,null)}}),ut.each({Height:"height",Width:"width"},function(e,n){ut.each({padding:"inner"+e,content:n,"":"outer"+e},function(r,i){ut.fn[i]=function(i,o){var a=arguments.length&&(r||"boolean"!=typeof i),s=r||(i===!0||o===!0?"margin":"border");return ut.access(this,function(n,r,i){var o;return ut.isWindow(n)?n.document.documentElement["client"+e]:9===n.nodeType?(o=n.documentElement,Math.max(n.body["scroll"+e],o["scroll"+e],n.body["offset"+e],o["offset"+e],o["client"+e])):i===t?ut.css(n,r,s):ut.style(n,r,i,s)},n,a?i:t,a,null)}})}),e.jQuery=e.$=ut,"function"==typeof define&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return ut})}(window); \ No newline at end of file diff --git a/docs.css b/docs.css index 925d67c..b1d1b34 100755 --- a/docs.css +++ b/docs.css @@ -3,4 +3,4 @@ * Copyright 2016 */ @font-face{font-family:octicons;src:url(/assets/fonts/octicons/octicons.eot?#iefix&v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('embedded-opentype'),url(/assets/fonts/octicons/octicons.woff?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('woff'),url(/assets/fonts/octicons/octicons.ttf?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('truetype'),url(/assets/fonts/octicons/octicons.svg?v=83cf61c381c06806e0a3925d1a13c772b25161d2#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-bold:before{content:'\f0e2'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-italic:before{content:'\f0e4'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-gist:before{content:'\f0ad'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-smiley:before{content:'\f0e7'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-tasklist:before{content:'\f0e5'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-text-size:before{content:'\f0e3'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-verified:before{content:'\f0e6'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body .octicon{font-size:inherit;line-height:inherit}.icon-spin{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.icon-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:500}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:500}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.btn-toolbar,.clearfix,.dl-horizontal dd{zoom:1}.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.dl-horizontal dd:after,.dl-horizontal dd:before{content:"";display:table}.btn-toolbar:after,.clearfix:after,.dl-horizontal dd:after{clear:both}.hidden{display:none}.container{position:relative;width:100%;max-width:1200px;margin:0;padding:0;margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.container.container-fluid{padding:0}.container [class*=col-]{float:left;width:100%;padding-left:15px;padding-right:15px}@media (min-width:510px){.container{max-width:510px}.container .col-xs-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-0{margin-left:0}.container .col-xs-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-1{margin-left:8.33333333%}.container .col-xs-3{width:25%;padding-left:15px;padding-right:15px}.container .col-xs-offset-2{margin-left:16.66666667%}.container .col-xs-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-3{margin-left:25%}.container .col-xs-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-4{margin-left:33.33333333%}.container .col-xs-6{width:50%;padding-left:15px;padding-right:15px}.container .col-xs-offset-5{margin-left:41.66666667%}.container .col-xs-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-6{margin-left:50%}.container .col-xs-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-7{margin-left:58.33333333%}.container .col-xs-9{width:75%;padding-left:15px;padding-right:15px}.container .col-xs-offset-8{margin-left:66.66666667%}.container .col-xs-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-9{margin-left:75%}.container .col-xs-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-10{margin-left:83.33333333%}.container .col-xs-12{width:100%;padding-left:15px;padding-right:15px}.container .col-xs-offset-11{margin-left:91.66666667%}}@media (min-width:750px){.container{max-width:750px}.container .col-sm-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-0{margin-left:0}.container .col-sm-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-1{margin-left:8.33333333%}.container .col-sm-3{width:25%;padding-left:15px;padding-right:15px}.container .col-sm-offset-2{margin-left:16.66666667%}.container .col-sm-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-3{margin-left:25%}.container .col-sm-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-4{margin-left:33.33333333%}.container .col-sm-6{width:50%;padding-left:15px;padding-right:15px}.container .col-sm-offset-5{margin-left:41.66666667%}.container .col-sm-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-6{margin-left:50%}.container .col-sm-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-7{margin-left:58.33333333%}.container .col-sm-9{width:75%;padding-left:15px;padding-right:15px}.container .col-sm-offset-8{margin-left:66.66666667%}.container .col-sm-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-9{margin-left:75%}.container .col-sm-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-10{margin-left:83.33333333%}.container .col-sm-12{width:100%;padding-left:15px;padding-right:15px}.container .col-sm-offset-11{margin-left:91.66666667%}}@media (min-width:970px){.container{max-width:970px}.container .col-md-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-0{margin-left:0}.container .col-md-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-1{margin-left:8.33333333%}.container .col-md-3{width:25%;padding-left:15px;padding-right:15px}.container .col-md-offset-2{margin-left:16.66666667%}.container .col-md-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-3{margin-left:25%}.container .col-md-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-4{margin-left:33.33333333%}.container .col-md-6{width:50%;padding-left:15px;padding-right:15px}.container .col-md-offset-5{margin-left:41.66666667%}.container .col-md-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-6{margin-left:50%}.container .col-md-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-7{margin-left:58.33333333%}.container .col-md-9{width:75%;padding-left:15px;padding-right:15px}.container .col-md-offset-8{margin-left:66.66666667%}.container .col-md-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-9{margin-left:75%}.container .col-md-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-10{margin-left:83.33333333%}.container .col-md-12{width:100%;padding-left:15px;padding-right:15px}.container .col-md-offset-11{margin-left:91.66666667%}}@media (min-width:1200px){.container{max-width:1200px}.container .col-lg-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-0{margin-left:0}.container .col-lg-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-1{margin-left:8.33333333%}.container .col-lg-3{width:25%;padding-left:15px;padding-right:15px}.container .col-lg-offset-2{margin-left:16.66666667%}.container .col-lg-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-3{margin-left:25%}.container .col-lg-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-4{margin-left:33.33333333%}.container .col-lg-6{width:50%;padding-left:15px;padding-right:15px}.container .col-lg-offset-5{margin-left:41.66666667%}.container .col-lg-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-6{margin-left:50%}.container .col-lg-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-7{margin-left:58.33333333%}.container .col-lg-9{width:75%;padding-left:15px;padding-right:15px}.container .col-lg-offset-8{margin-left:66.66666667%}.container .col-lg-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-9{margin-left:75%}.container .col-lg-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-10{margin-left:83.33333333%}.container .col-lg-12{width:100%;padding-left:15px;padding-right:15px}.container .col-lg-offset-11{margin-left:91.66666667%}}.row{margin-left:-15px;margin-right:-15px;zoom:1}.row:after,.row:before{content:"";display:table}.row:after{clear:both}@media (min-width:0) and (max-width:749px){.visible-xs{display:block!important}.hidden-xs{display:none!important}}@media (min-width:750px) and (max-width:969px){.visible-sm{display:block!important}.hidden-sm{display:none!important}}@media (min-width:970px) and (max-width:1199px){.visible-md{display:block!important}.hidden-md{display:none!important}}@media (min-width:970px){.visible-lg{display:block!important}.hidden-lg{display:none!important}}.hljs-comment,.hljs-title{color:#8e908c}.css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title{color:#c82829}.hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor{color:#f5871f}.css .hljs-rules .hljs-attribute,.ruby .hljs-class .hljs-title{color:#eab700}.hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{background:#fff;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript{opacity:.5}.pull-right{float:right!important}.pull-left{float:left!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#737373}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}b,strong{font-weight:700}p{margin:0 0 10px}p.after{margin:0;margin-top:10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:750px){.lead{font-size:21px}}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap,.text-overflow{white-space:nowrap}.text-overflow{overflow:hidden;text-overflow:ellipsis}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-warning{color:#8d7726}.text-danger{color:#911}.text-info{color:#246}.text-success{color:#3c763d}.text-muted{color:#737373}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:500}dd{margin-left:0}@media (min-width:750px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #737373}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#737373}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.checkbox-switch,.checkbox.checkbox-switch,.form-group .checkbox.checkbox-switch{padding-left:0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.checkbox-switch.switch-right,.checkbox.checkbox-switch.switch-right,.form-group .checkbox.checkbox-switch.switch-right{zoom:1}.checkbox-switch.switch-right:after,.checkbox-switch.switch-right:before,.checkbox.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:before,.form-group .checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:before{content:"";display:table}.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:after{clear:both}.checkbox-switch.switch-right input+span,.checkbox.checkbox-switch.switch-right input+span,.form-group .checkbox.checkbox-switch.switch-right input+span{float:right}.checkbox-switch.switch-xs input+span,.checkbox.checkbox-switch.switch-xs input+span,.form-group .checkbox.checkbox-switch.switch-xs input+span{font-size:12px}.checkbox-switch.switch-lg input+span,.checkbox.checkbox-switch.switch-lg input+span,.form-group .checkbox.checkbox-switch.switch-lg input+span{font-size:18px}.checkbox-switch input,.checkbox.checkbox-switch input,.form-group .checkbox.checkbox-switch input{opacity:0;position:absolute}.checkbox-switch input+span,.checkbox.checkbox-switch input+span,.form-group .checkbox.checkbox-switch input+span{font-size:16px;position:relative;display:inline-block;width:1.65em;height:1em;background:#fff;box-shadow:inset 0 0 0 .0625em #d4d4d4;border-radius:.5em;vertical-align:-.15em;transition:all .4s cubic-bezier(.17,.67,.43,.98)}.checkbox-switch:active input+span,.checkbox-switch input+span:active,.checkbox.checkbox-switch:active input+span,.checkbox.checkbox-switch input+span:active,.form-group .checkbox.checkbox-switch:active input+span,.form-group .checkbox.checkbox-switch input+span:active{box-shadow:inset 0 0 0 .73em #d4d4d4}.checkbox-switch input+span:after,.checkbox.checkbox-switch input+span:after,.form-group .checkbox.checkbox-switch input+span:after{position:absolute;display:block;content:'';width:.875em;height:.875em;border-radius:.4375em;top:.0625em;left:.0625em;background:#fff;box-shadow:inset 0 0 0 .03em rgba(0,0,0,.4),0 0 .05em rgba(0,0,0,.35),0 .1em .2em rgba(0,0,0,.4);transition:all .25s ease-out}.checkbox-switch:active input+span:after,.checkbox-switch input+span:active:after,.checkbox.checkbox-switch:active input+span:after,.checkbox.checkbox-switch input+span:active:after,.form-group .checkbox.checkbox-switch:active input+span:after,.form-group .checkbox.checkbox-switch input+span:active:after{width:1.15em}.checkbox-switch input:checked+span,.checkbox.checkbox-switch input:checked+span,.form-group .checkbox.checkbox-switch input:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}.checkbox-switch input:disabled+span,.checkbox.checkbox-switch input:disabled+span,.form-group .checkbox.checkbox-switch input:disabled+span{opacity:.6}.checkbox-switch input:checked+span:after,.checkbox.checkbox-switch input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:after{left:.7125em}.checkbox-switch:active input:checked+span:after,.checkbox-switch input:checked+span:active:after,.checkbox.checkbox-switch:active input:checked+span:after,.checkbox.checkbox-switch input:checked+span:active:after,.form-group .checkbox.checkbox-switch:active input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:active:after{left:.4375em}.checkbox-switch input:focus+span:after,.checkbox.checkbox-switch input:focus+span:after,.form-group .checkbox.checkbox-switch input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.15),0 0 .05em rgba(0,0,0,.08),0 .1em .2em rgba(0,0,0,.3);background:#fff}.checkbox-switch input:focus+span,.checkbox.checkbox-switch input:focus+span,.form-group .checkbox.checkbox-switch input:focus+span{box-shadow:inset 0 0 0 .0625em #dadada}.checkbox-switch input:focus:checked+span,.checkbox.checkbox-switch input:focus:checked+span,.form-group .checkbox.checkbox-switch input:focus:checked+span{box-shadow:inset 0 0 0 .73em #33be4b}.checkbox-switch:hover input:focus+span:after,.checkbox.checkbox-switch:hover input:focus+span:after,.form-group .checkbox.checkbox-switch:hover input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.1),0 0 .05em rgba(0,0,0,.05),0 .1em .2em rgba(0,0,0,.2);background:#fff}.checkbox-switch:hover input:focus+span,.checkbox.checkbox-switch:hover input:focus+span,.form-group .checkbox.checkbox-switch:hover input:focus+span{box-shadow:inset 0 0 0 .0625em #e9e9e9}.checkbox-switch:hover input:focus:checked+span,.checkbox.checkbox-switch:hover input:focus:checked+span,.form-group .checkbox.checkbox-switch:hover input:focus:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:3px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:500;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;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}a{text-decoration:none;color:#428bca}a:focus,a:hover{text-decoration:underline}a:visited{color:#428bca}.gb-markdown .muted-link,.gb-markdown .muted-link:visited,.muted-link,.muted-link:visited{color:#737373}.gb-markdown .muted-link:focus,.gb-markdown .muted-link:hover,.muted-link:focus,.muted-link:hover{text-decoration:none;color:#428bca}.gb-markdown .underlined-link,.underlined-link{color:inherit;text-decoration:underline}.gb-markdown .underlined-link:visited,.underlined-link:visited{color:inherit}.gb-markdown .underlined-link:focus,.gb-markdown .underlined-link:hover,.underlined-link:focus,.underlined-link:hover{text-decoration:underline;color:inherit}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#737373}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #d4d4d4;word-break:break-all}.table>thead>tr>th{vertical-align:bottom;background:#f5f5f5;border-bottom:1px solid #d4d4d4}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid #d4d4d4}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d4d4d4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#fcfcfc}.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-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:510px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d4d4d4}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.button-nobackground{background:transparent;border-color:transparent}.button-nobackground:focus,.button-nobackground:hover{color:#428bca;background:none;box-shadow:none}.button-nobackground.active{background:none;box-shadow:none;font-weight:500}.btn,.gb-markdown .btn,a.btn{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;cursor:pointer;display:inline-block;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.btn .caret,.gb-markdown .btn .caret,a.btn .caret{border-top-color:#333}.btn .octicon,.gb-markdown .btn .octicon,a.btn .octicon{line-height:1em}.btn.dropdown-toggle.open,.btn:focus,.btn:hover,.gb-markdown .btn.dropdown-toggle.open,.gb-markdown .btn:focus,.gb-markdown .btn:hover,a.btn.dropdown-toggle.open,a.btn:focus,a.btn:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}.btn.active,.btn:active,.gb-markdown .btn.active,.gb-markdown .btn:active,a.btn.active,a.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,.gb-markdown .btn.disabled,.gb-markdown .btn:disabled,a.btn.disabled,a.btn:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}.btn.disabled.tooltipped:after,.btn.disabled.tooltipped:before,.btn:disabled.tooltipped:after,.btn:disabled.tooltipped:before,.gb-markdown .btn.disabled.tooltipped:after,.gb-markdown .btn.disabled.tooltipped:before,.gb-markdown .btn:disabled.tooltipped:after,.gb-markdown .btn:disabled.tooltipped:before,a.btn.disabled.tooltipped:after,a.btn.disabled.tooltipped:before,a.btn:disabled.tooltipped:after,a.btn:disabled.tooltipped:before{display:none}.btn.btn-lg,.gb-markdown .btn.btn-lg,a.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.btn.btn-sm,.gb-markdown .btn.btn-sm,a.btn.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-xs,.gb-markdown .btn.btn-xs,a.btn.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-right,.gb-markdown .btn.btn-right,a.btn.btn-right{float:right!important;margin-left:16px}.btn.btn-left,.gb-markdown .btn.btn-left,a.btn.btn-left{float:left!important;margin-right:16px}.btn.btn-block,.gb-markdown .btn.btn-block,a.btn.btn-block{display:block;width:100%;text-align:center}.btn.btn-block+.btn-block,.gb-markdown .btn.btn-block+.btn-block,a.btn.btn-block+.btn-block{margin-top:5px}.btn.btn-link,.gb-markdown .btn.btn-link,a.btn.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-link .caret,.gb-markdown .btn.btn-link .caret,a.btn.btn-link .caret{border-top-color:#fff}.btn.btn-link.btn-link,.btn.btn-link.btn-noborder,.gb-markdown .btn.btn-link.btn-link,.gb-markdown .btn.btn-link.btn-noborder,a.btn.btn-link.btn-link,a.btn.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-link.btn-link:focus,.btn.btn-link.btn-link:hover,.btn.btn-link.btn-noborder:focus,.btn.btn-link.btn-noborder:hover,.gb-markdown .btn.btn-link.btn-link:focus,.gb-markdown .btn.btn-link.btn-link:hover,.gb-markdown .btn.btn-link.btn-noborder:focus,.gb-markdown .btn.btn-link.btn-noborder:hover,a.btn.btn-link.btn-link:focus,a.btn.btn-link.btn-link:hover,a.btn.btn-link.btn-noborder:focus,a.btn.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-link.active,.gb-markdown .btn.btn-link.active,a.btn.btn-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-text-link,.gb-markdown .btn.btn-text-link,a.btn.btn-text-link{background:transparent;border-color:transparent;color:inherit}.btn.btn-text-link:focus,.btn.btn-text-link:hover,.gb-markdown .btn.btn-text-link:focus,.gb-markdown .btn.btn-text-link:hover,a.btn.btn-text-link:focus,a.btn.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-text-link.active,.gb-markdown .btn.btn-text-link.active,a.btn.btn-text-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-count,.gb-markdown .btn.btn-count,a.btn.btn-count{color:#333;background:#fff}.btn.btn-count:focus,.btn.btn-count:hover,.gb-markdown .btn.btn-count:focus,.gb-markdown .btn.btn-count:hover,a.btn.btn-count:focus,a.btn.btn-count:hover{background:#fff;color:#428bca}.btn.btn-count.disabled,.btn.btn-count:disabled,.gb-markdown .btn.btn-count.disabled,.gb-markdown .btn.btn-count:disabled,a.btn.btn-count.disabled,a.btn.btn-count:disabled{background:#fff;color:#333}.btn.btn-count .caret,.gb-markdown .btn.btn-count .caret,a.btn.btn-count .caret{border-top-color:#333}.btn.btn-success,.gb-markdown .btn.btn-success,a.btn.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}.btn.btn-success:focus,.btn.btn-success:hover,.gb-markdown .btn.btn-success:focus,.gb-markdown .btn.btn-success:hover,a.btn.btn-success:focus,a.btn.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}.btn.btn-success .caret,.gb-markdown .btn.btn-success .caret,a.btn.btn-success .caret{border-top-color:#fff}.btn.btn-success.btn-link,.btn.btn-success.btn-noborder,.gb-markdown .btn.btn-success.btn-link,.gb-markdown .btn.btn-success.btn-noborder,a.btn.btn-success.btn-link,a.btn.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}.btn.btn-success.btn-link:focus,.btn.btn-success.btn-link:hover,.btn.btn-success.btn-noborder:focus,.btn.btn-success.btn-noborder:hover,.gb-markdown .btn.btn-success.btn-link:focus,.gb-markdown .btn.btn-success.btn-link:hover,.gb-markdown .btn.btn-success.btn-noborder:focus,.gb-markdown .btn.btn-success.btn-noborder:hover,a.btn.btn-success.btn-link:focus,a.btn.btn-success.btn-link:hover,a.btn.btn-success.btn-noborder:focus,a.btn.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}.btn.btn-success.btn-outline,.gb-markdown .btn.btn-success.btn-outline,a.btn.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}.btn.btn-success.btn-outline .caret,.gb-markdown .btn.btn-success.btn-outline .caret,a.btn.btn-success.btn-outline .caret{border-top-color:#5cb85c}.btn.btn-success.btn-outline:focus,.btn.btn-success.btn-outline:hover,.gb-markdown .btn.btn-success.btn-outline:focus,.gb-markdown .btn.btn-success.btn-outline:hover,a.btn.btn-success.btn-outline:focus,a.btn.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}.btn.btn-success.btn-outline:focus .caret,.btn.btn-success.btn-outline:hover .caret,.gb-markdown .btn.btn-success.btn-outline:focus .caret,.gb-markdown .btn.btn-success.btn-outline:hover .caret,a.btn.btn-success.btn-outline:focus .caret,a.btn.btn-success.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-success,.gb-markdown .btn.btn-text-success,a.btn.btn-text-success{color:#449d44}.btn.btn-primary,.gb-markdown .btn.btn-primary,a.btn.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover,.gb-markdown .btn.btn-primary:focus,.gb-markdown .btn.btn-primary:hover,a.btn.btn-primary:focus,a.btn.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-primary .caret,.gb-markdown .btn.btn-primary .caret,a.btn.btn-primary .caret{border-top-color:#fff}.btn.btn-primary.btn-link,.btn.btn-primary.btn-noborder,.gb-markdown .btn.btn-primary.btn-link,.gb-markdown .btn.btn-primary.btn-noborder,a.btn.btn-primary.btn-link,a.btn.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-primary.btn-link:focus,.btn.btn-primary.btn-link:hover,.btn.btn-primary.btn-noborder:focus,.btn.btn-primary.btn-noborder:hover,.gb-markdown .btn.btn-primary.btn-link:focus,.gb-markdown .btn.btn-primary.btn-link:hover,.gb-markdown .btn.btn-primary.btn-noborder:focus,.gb-markdown .btn.btn-primary.btn-noborder:hover,a.btn.btn-primary.btn-link:focus,a.btn.btn-primary.btn-link:hover,a.btn.btn-primary.btn-noborder:focus,a.btn.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-primary.btn-outline,.gb-markdown .btn.btn-primary.btn-outline,a.btn.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}.btn.btn-primary.btn-outline .caret,.gb-markdown .btn.btn-primary.btn-outline .caret,a.btn.btn-primary.btn-outline .caret{border-top-color:#428bca}.btn.btn-primary.btn-outline:focus,.btn.btn-primary.btn-outline:hover,.gb-markdown .btn.btn-primary.btn-outline:focus,.gb-markdown .btn.btn-primary.btn-outline:hover,a.btn.btn-primary.btn-outline:focus,a.btn.btn-primary.btn-outline:hover{background:#428bca;color:#fff}.btn.btn-primary.btn-outline:focus .caret,.btn.btn-primary.btn-outline:hover .caret,.gb-markdown .btn.btn-primary.btn-outline:focus .caret,.gb-markdown .btn.btn-primary.btn-outline:hover .caret,a.btn.btn-primary.btn-outline:focus .caret,a.btn.btn-primary.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-primary,.gb-markdown .btn.btn-text-primary,a.btn.btn-text-primary{color:#3071a9}.btn.btn-danger,.gb-markdown .btn.btn-danger,a.btn.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}.btn.btn-danger:focus,.btn.btn-danger:hover,.gb-markdown .btn.btn-danger:focus,.gb-markdown .btn.btn-danger:hover,a.btn.btn-danger:focus,a.btn.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}.btn.btn-danger .caret,.gb-markdown .btn.btn-danger .caret,a.btn.btn-danger .caret{border-top-color:#fff}.btn.btn-danger.btn-link,.btn.btn-danger.btn-noborder,.gb-markdown .btn.btn-danger.btn-link,.gb-markdown .btn.btn-danger.btn-noborder,a.btn.btn-danger.btn-link,a.btn.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}.btn.btn-danger.btn-link:focus,.btn.btn-danger.btn-link:hover,.btn.btn-danger.btn-noborder:focus,.btn.btn-danger.btn-noborder:hover,.gb-markdown .btn.btn-danger.btn-link:focus,.gb-markdown .btn.btn-danger.btn-link:hover,.gb-markdown .btn.btn-danger.btn-noborder:focus,.gb-markdown .btn.btn-danger.btn-noborder:hover,a.btn.btn-danger.btn-link:focus,a.btn.btn-danger.btn-link:hover,a.btn.btn-danger.btn-noborder:focus,a.btn.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}.btn.btn-danger.btn-outline,.gb-markdown .btn.btn-danger.btn-outline,a.btn.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}.btn.btn-danger.btn-outline .caret,.gb-markdown .btn.btn-danger.btn-outline .caret,a.btn.btn-danger.btn-outline .caret{border-top-color:#dd4b39}.btn.btn-danger.btn-outline:focus,.btn.btn-danger.btn-outline:hover,.gb-markdown .btn.btn-danger.btn-outline:focus,.gb-markdown .btn.btn-danger.btn-outline:hover,a.btn.btn-danger.btn-outline:focus,a.btn.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}.btn.btn-danger.btn-outline:focus .caret,.btn.btn-danger.btn-outline:hover .caret,.gb-markdown .btn.btn-danger.btn-outline:focus .caret,.gb-markdown .btn.btn-danger.btn-outline:hover .caret,a.btn.btn-danger.btn-outline:focus .caret,a.btn.btn-danger.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-danger,.gb-markdown .btn.btn-text-danger,a.btn.btn-text-danger{color:#c23321}.btn .btn-label,.gb-markdown .btn .btn-label,a.btn .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}.tooltipped{display:inline;position:relative}.tooltipped.tooltipped-o:after,.tooltipped:hover:after{line-height:1em;background:rgba(0,0,0,.8);border-radius:2px;top:calc(100% + 10px);color:#fff;content:attr(aria-label);padding:5px;white-space:nowrap;z-index:4;font-size:13px;text-transform:none;font-weight:400;pointer-events:none}.tooltipped.tooltipped-o:after,.tooltipped.tooltipped-o:before,.tooltipped:hover:after,.tooltipped:hover:before{bottom:auto;display:block;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped.tooltipped-o:before,.tooltipped:hover:before{border:solid;border-color:rgba(0,0,0,.8) transparent;top:calc(100% + 5px);border-width:0 5px 5px;content:"";z-index:5}.tooltipped.tooltipped-e:after{left:5px}.tooltipped.tooltipped-e:after,.tooltipped.tooltipped-e:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-e:before{left:10px}.tooltipped.tooltipped-n:after{bottom:calc(100% + 10px)}.tooltipped.tooltipped-n:after,.tooltipped.tooltipped-n:before{top:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-n:before{border-width:5px 5px 0;bottom:calc(100% + 5px)}.tooltipped.tooltipped-ne:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:after{left:5px}.tooltipped.tooltipped-ne:after,.tooltipped.tooltipped-ne:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{left:10px}.tooltipped.tooltipped-nw:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:after{right:5px}.tooltipped.tooltipped-nw:after,.tooltipped.tooltipped-nw:before{left:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{right:10px}.tooltipped.tooltipped-sw:after,.tooltipped.tooltipped-w:after{left:auto;right:5px;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-sw:before,.tooltipped.tooltipped-w:before{left:auto;right:10px;-webkit-transform:translateX(0);transform:translateX(0)}.btn-group{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn{position:relative;float:left}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group.btn-group-block{width:100%;display:block}.btn-group .btn+.btn,.btn-group .btn-group+.btn{border-left:0}.btn-group .btn+.btn-group,.btn-group .btn-group+.btn-group{margin-left:-1px}.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-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{text-align:center;float:none;display:table-cell;width:1%}.btn-group.btn-group-justified>.btn-group .btn{width:100%}.btn-group.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-toolbar>.btn-toolbar{float:left;margin:0}.btn-toolbar.prepend{margin-bottom:20px}.caret{display:inline-block;width:0;height:0;content:"";vertical-align:-2px;border:4px solid #b3b3b1;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.btn-group.dropdown,.dropdown{position:relative;text-align:left;color:#333}.btn-group.dropdown.btn-group-block .dropdown-menu,.dropdown.btn-group-block .dropdown-menu{min-width:100%}.btn-group.dropdown>.dropdown-menu,.dropdown>.dropdown-menu{position:absolute;top:100%;right:0}.btn-group.dropdown.inner>.dropdown-menu,.btn-group.dropdown.open>.dropdown-menu,.dropdown.inner>.dropdown-menu,.dropdown.open>.dropdown-menu{display:block}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu,.dropdown:not(.contextmenu)>.dropdown-menu{margin-top:12px;overflow:visible!important}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu{left:0;right:auto}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{right:auto;left:16px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.btn-group.dropdown.contextmenu,.dropdown.contextmenu{position:fixed;z-index:7}.btn-group.dropdown.contextmenu .dropdown-menu,.dropdown.contextmenu .dropdown-menu{display:block;position:absolute;top:0;left:0}.btn-group.dropdown.contextmenu.contextmenu-w .dropdown-menu,.dropdown.contextmenu.contextmenu-w .dropdown-menu{left:auto;right:0}.btn-group.dropdown.contextmenu.contextmenu-n .dropdown-menu,.dropdown.contextmenu.contextmenu-n .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup>.dropdown-menu,.dropdown.dropup>.dropdown-menu{position:absolute;top:auto;bottom:100%}.btn-group.dropdown.dropup>.dropdown-menu li .dropdown-menu,.dropdown.dropup>.dropdown-menu li .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu,.dropdown.dropup:not(.contextmenu)>.dropdown-menu{margin-top:0;margin-bottom:12px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{top:100%;bottom:auo;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-top-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-top-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.dropdown-w>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu,.dropdown.pull-right>.dropdown-menu{left:auto;right:0}.btn-group.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu li>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.dropdown.pull-right>.dropdown-menu li>.dropdown-menu{left:auto;right:100%}.dropdown-menu,.dropdown .dropdown-menu{display:none;position:relative;z-index:3;list-style:none;border:1px solid #c9c9c9;background:#fff;min-width:160px;margin:0;padding:0;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.15);padding-top:5px;padding-bottom:5px}.dropdown-menu.inner,.dropdown-menu.open,.dropdown .dropdown-menu.inner,.dropdown .dropdown-menu.open{display:block}.dropdown-menu>li,.dropdown .dropdown-menu>li{margin:0;padding:0;position:relative}.dropdown-menu>li.divider,.dropdown .dropdown-menu>li.divider{height:1px;margin:5px 1px;background-color:#e5e5e5}.dropdown-menu>li.dropdown-header,.dropdown .dropdown-menu>li.dropdown-header{padding:4px 10px;font-size:12px;color:#999}.dropdown-menu>li.disabled:hover>a,.dropdown-menu>li.disabled:hover>a:hover,.dropdown-menu>li.disabled>a,.dropdown-menu>li.disabled>a:hover,.dropdown .dropdown-menu>li.disabled:hover>a,.dropdown .dropdown-menu>li.disabled:hover>a:hover,.dropdown .dropdown-menu>li.disabled>a,.dropdown .dropdown-menu>li.disabled>a:hover{cursor:default;background:transparent;color:#b3b3b1;pointer-events:none}.dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown-menu>li.disabled>.dropdown-menu,.dropdown .dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown .dropdown-menu>li.disabled>.dropdown-menu{display:none}.dropdown-menu>li>a,.dropdown .dropdown-menu>li>a{padding:4px 10px;cursor:default;color:inherit;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;text-shadow:none}.dropdown-menu>li>a .help-label,.dropdown .dropdown-menu>li>a .help-label{font-size:12px;color:#b3b3b1;margin-left:10px}.dropdown-menu>li>a:hover,.dropdown .dropdown-menu>li>a:hover{text-decoration:none;text-shadow:none;background:#428bca;color:#fff}.dropdown-menu>li>a:hover .help-label,.dropdown-menu>li>a:hover .text-muted,.dropdown .dropdown-menu>li>a:hover .help-label,.dropdown .dropdown-menu>li>a:hover .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>a:hover .dropdown-icon,.dropdown .dropdown-menu>li>a:hover .dropdown-icon{color:inherit}.dropdown-menu>li>a:not(:last-child),.dropdown .dropdown-menu>li>a:not(:last-child){position:relative}.dropdown-menu>li>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):after{bottom:9px;right:6px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-left-color:#b3b3b1;border-width:5px;margin-right:-5px}.dropdown-menu>li.active>a:not(:last-child):after,.dropdown-menu>li>a:not(:last-child):hover:after,.dropdown .dropdown-menu>li.active>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):hover:after{border-left-color:#fff}.dropdown-menu>li.active>a,.dropdown .dropdown-menu>li.active>a{background:#428bca;color:#fff}.dropdown-menu>li.active>a .help-label,.dropdown-menu>li.active>a .text-muted,.dropdown .dropdown-menu>li.active>a .help-label,.dropdown .dropdown-menu>li.active>a .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>.dropdown-menu,.dropdown .dropdown-menu>li>.dropdown-menu{position:absolute;right:auto;left:100%;margin-top:0;top:0;margin-top:-1px}.dropdown-menu>li:hover>.dropdown-menu,.dropdown .dropdown-menu>li:hover>.dropdown-menu{display:block}.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-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#333;text-align:center;background-color:#f5f5f5;border:1px solid #d4d4d4;border-radius:3px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:4px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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}.alert{border:1px solid #d4d4d4;background:#f5f5f5;border-radius:4px;padding:15px;margin-bottom:20px}.alert.alert-danger{background:#fcdede;border-color:#d2b2b2;color:#911}.alert.alert-warning{background:#fff2d0;border-color:#d6cdb1;color:#8d7726}.alert.alert-info{background:#e2eef9;border-color:#bac6d3;color:#246}.alert.alert-success{background:#dff0d8;border-color:#c0d1d0;color:#3c763d}.alert .alert-btn{display:inline-block;float:right;color:inherit;border-radius:3px;padding:0;opacity:.6;padding:0 5px}.alert a.alert-btn{text-decoration:none}.alert a.alert-btn:focus,.alert a.alert-btn:hover{opacity:.8;text-decoration:none}.gb-markdown{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.gb-markdown *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.gb-markdown>:first-child{margin-top:0!important}.gb-markdown>:last-child{margin-bottom:0!important}.gb-markdown blockquote,.gb-markdown code,.gb-markdown figure,.gb-markdown img,.gb-markdown pre,.gb-markdown table,.gb-markdown tr{page-break-inside:avoid}.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown p{orphans:3;widows:3}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5{page-break-after:avoid}.gb-markdown b,.gb-markdown strong{font-weight:700}.gb-markdown em{font-style:italic}.gb-markdown blockquote,.gb-markdown dl,.gb-markdown ol,.gb-markdown p,.gb-markdown table,.gb-markdown ul{margin-top:0;margin-bottom:.85em}.gb-markdown a{color:#4183c4;text-decoration:none;background:transparent}.gb-markdown a:active,.gb-markdown a:focus,.gb-markdown a:hover{outline:0;text-decoration:underline}.gb-markdown img{border:0;max-width:100%}.gb-markdown hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.gb-markdown hr:after,.gb-markdown hr:before{display:table;content:" "}.gb-markdown hr:after{clear:both}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.gb-markdown h1{font-size:2em}.gb-markdown h2{font-size:1.75em}.gb-markdown h3{font-size:1.5em}.gb-markdown h4{font-size:1.25em}.gb-markdown h5{font-size:1em}.gb-markdown h6{font-size:1em;color:#777}.gb-markdown code,.gb-markdown pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.gb-markdown pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.gb-markdown pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:transparent}.gb-markdown pre>code:after,.gb-markdown pre>code:before{content:normal}.gb-markdown code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.gb-markdown code:after,.gb-markdown code:before{letter-spacing:-.2em;content:"\00a0"}.gb-markdown table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.gb-markdown table td,.gb-markdown table th{padding:6px 13px;border:1px solid #ddd}.gb-markdown table tr{background-color:#fff;border-top:1px solid #ccc}.gb-markdown table tr:nth-child(2n){background-color:#f8f8f8}.gb-markdown table th{font-weight:700}.gb-markdown ol,.gb-markdown ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.gb-markdown ol ol,.gb-markdown ol ul,.gb-markdown ul ol,.gb-markdown ul ul{margin-top:0;margin-bottom:0}.gb-markdown ol ol{list-style-type:lower-roman}.gb-markdown blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.gb-markdown blockquote:first-child{margin-top:0}.gb-markdown blockquote:last-child{margin-bottom:0}.gb-markdown dl{padding:0}.gb-markdown dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.gb-markdown dl dd{padding:0 .85em;margin-bottom:.85em}.gb-markdown dd{margin-left:0}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:2px;color:#333;box-shadow:0 1px 1px rgba(0,0,0,.05)}.btn-toolbar+.panel{margin-top:20px}.panel .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel .panel-heading .panel-title{margin:0;padding:0;font-size:inherit;font-weight:500;line-height:19px;margin-top:-2px;margin-bottom:-2px}.panel .panel-heading .panel-title a{color:inherit}.panel .panel-heading .panel-title a:focus,.panel .panel-heading .panel-title a:hover{text-decoration:none;color:inherit}.panel .panel-heading .panel-title.large{text-align:center;font-size:22px;font-weight:400}.panel .panel-heading .panel-toolbar{float:right;margin-top:-5px;margin-right:-5px}.panel .panel-heading .panel-toolbar .btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.panel>.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.panel>.blankslate.with-background{border-radius:0;border:0}.panel>hr{margin:0}.panel .panel-body{padding:15px}.panel .panel-footer{padding:10px 15px;background-color:#fcfcfc;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel.panel-default{border-color:#d4d4d4}.panel.panel-default .panel-heading{color:#333;background-color:#f5f5f5;border-color:#d4d4d4}.panel.panel-danger{border-color:#d2b2b2}.panel.panel-danger .panel-heading{color:#911;background-color:#fcdede;border-color:#d2b2b2}.panel.panel-warning{border-color:#d6cdb1}.panel.panel-warning .panel-heading{color:#8d7726;background-color:#fff2d0;border-color:#d6cdb1}.panel.panel-info{border-color:#bac6d3}.panel.panel-info .panel-heading{color:#246;background-color:#e2eef9;border-color:#bac6d3}.panel.panel-success{border-color:#c0d1d0}.panel.panel-success .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#c0d1d0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d4d4d4}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.list-group{padding:0;margin:0;list-style:none;margin-bottom:20px;padding-left:0}.list-group li.list-group-item a{color:inherit;text-decoration:none}.list-group .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;color:#555;background-color:#fff;border:1px solid #d4d4d4}.list-group .list-group-item:focus,.list-group .list-group-item:hover{text-decoration:none;background:#f8f8f8}.list-group .list-group-item.active{color:#dd4b39;border-left:4px solid #dd4b39!important;font-weight:500;padding-left:11px}.list-group .list-group-item:first-child{margin-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.list-group .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.list-group .list-group-item .list-image{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-right:5px;width:20px;height:20px}.list-group .list-group-item .badge{display:inline-block;padding:3px 7px;font-size:12px;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;border-radius:10px;float:right}.list-group .list-group-item i.pull-right{float:right;margin-top:3px}.modal>.list-group,.panel>.list-group{margin:0}.modal>.list-group .list-group-item,.panel>.list-group .list-group-item{border-left:0;border-right:0}.modal>.list-group .list-group-item:first-child,.panel>.list-group .list-group-item:first-child{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0}.modal>.list-group .list-group-item:last-child,.panel>.list-group .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.filter-list,ul.filter-list{list-style:none;margin:0;padding:0;margin-bottom:20px}.filter-list li .filter-item,ul.filter-list li .filter-item{position:relative;display:block;padding:6px 12px;margin-bottom:5px;font-size:14px;color:#737373;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px}.filter-list li .filter-item .count,ul.filter-list li .filter-item .count{float:right;font-weight:500}.filter-list li .filter-item:hover,ul.filter-list li .filter-item:hover{text-decoration:none;color:#737373;background-color:#eee}.filter-list li .filter-item.selected,.filter-list li .filter-item.selected:hover,ul.filter-list li .filter-item.selected,ul.filter-list li .filter-item.selected:hover{color:#fff;background-color:#428bca}.modal-backdrop{background:rgba(0,0,0,.55);position:fixed;top:0;bottom:0;left:0;right:0;z-index:6;overflow-y:auto}.modal-backdrop.white{background:hsla(0,0%,100%,.55)}.modal{border:1px solid rgba(0,0,0,.65);border-radius:4px;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.5);width:600px;margin:30px auto}.modal.without-backdrop{border-color:#d4d4d4;box-shadow:0 1px 2px #ddd}.modal .modal-heading+.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.modal .modal-heading{position:relative;padding:15px;border-bottom:1px solid #e5e5e5}.modal .modal-heading h4{margin:0}.modal .modal-heading .modal-close{position:absolute;line-height:24px;top:50%;margin-top:-15px;right:15px;color:#d4d4d4;font-size:30px}.modal .modal-heading .modal-close:hover{color:#bbb;text-decoration:none}.modal .modal-body{padding:15px}.modal .modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal.modal-sm{width:400px;margin:30px auto}.modal.modal-lg{width:800px;margin:30px auto}.modal.modal-fullscreen{display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;margin:0;position:absolute;top:30px;bottom:30px;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.modal.modal-fullscreen .modal-heading{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.modal.modal-fullscreen .modal-body{position:relative;-moz-flex-grow:1000000;-ms-flex-grow:1000000;flex-grow:1000000}.modal.modal-fullscreen .modal-footer{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}@-webkit-keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.gb-spinner{display:inline-block;border-radius:100%;border:5px solid #f5f5f5;border-bottom-color:#428bca;-webkit-animation:b 1.5s 0s linear infinite;-moz-animation:b 1.5s 0s linear infinite;-ms-animation:b 1.5s 0s linear infinite;width:30px;height:30px;border-width:3px}.gb-spinner.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.gb-spinner.spinner-sm{width:12px;height:12px;border-width:1.2px}.gb-spinner.spinner-sm.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-6px;margin-top:-6px}.gb-spinner.spinner-lg{width:50px;height:50px;border-width:5px}.gb-spinner.spinner-lg.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-25px;margin-top:-25px}.label{display:inline-block;margin:0;padding:3px 4px 4px;font-size:11px;font-weight:500;line-height:11px;text-transform:uppercase;vertical-align:middle;border-radius:3px;color:#666;background-color:#eee}.label.label-warning{color:#9d852a;background-color:#fff8e4;border-color:#ddd6be}.label.label-info{background-color:#f3f8fc;color:#274e75;border-color:#c6d0db}.label.label-success{background-color:#ebf6e7;color:#438444;border-color:#ccdad9}.label.label-danger{background-color:#fef1f1;color:#ab1313;border-color:#dabfbf}a.label:hover{color:#428bca;text-decoration:none}.form-control{width:100%;font-size:1.1rem;border:1px solid #d4d4d4;background:#fff;outline:none;color:#333;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.form-control.focus,.form-control:focus{outline:none;border-color:#428bca;background:#fff}.form-control.disabled,.form-control:disabled{border-color:#d4d4d4;background:#f5f5f5}.form-control.input-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-control.input-sm{padding:5px 10px}.form-control.input-sm,.form-control.input-xs{font-size:12px;line-height:1.5;border-radius:2px}.form-control.input-xs{padding:2px 7px}select.form-control{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;position:relative;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#ededed);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control .caret{border-top-color:#333}select.form-control .octicon{line-height:1em}select.form-control.dropdown-toggle.open,select.form-control:focus,select.form-control:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}select.form-control.active,select.form-control:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}select.form-control.disabled,select.form-control:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}select.form-control.disabled.tooltipped:after,select.form-control.disabled.tooltipped:before,select.form-control:disabled.tooltipped:after,select.form-control:disabled.tooltipped:before{display:none}select.form-control.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}select.form-control.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-right{float:right!important;margin-left:16px}select.form-control.btn-left{float:left!important;margin-right:16px}select.form-control.btn-block{display:block;width:100%;text-align:center}select.form-control.btn-block+.btn-block{margin-top:5px}select.form-control.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}select.form-control.btn-link:focus,select.form-control.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-link .caret{border-top-color:#fff}select.form-control.btn-link.btn-link,select.form-control.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-link.btn-link:focus,select.form-control.btn-link.btn-link:hover,select.form-control.btn-link.btn-noborder:focus,select.form-control.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-link:focus,select.form-control.btn-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-text-link{background:transparent;border-color:transparent;color:inherit}select.form-control.btn-text-link:focus,select.form-control.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-text-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-count{color:#333;background:#fff}select.form-control.btn-count:focus,select.form-control.btn-count:hover{background:#fff;color:#428bca}select.form-control.btn-count.disabled,select.form-control.btn-count:disabled{background:#fff;color:#333}select.form-control.btn-count .caret{border-top-color:#333}select.form-control.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}select.form-control.btn-success:focus,select.form-control.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}select.form-control.btn-success .caret{border-top-color:#fff}select.form-control.btn-success.btn-link,select.form-control.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}select.form-control.btn-success.btn-link:focus,select.form-control.btn-success.btn-link:hover,select.form-control.btn-success.btn-noborder:focus,select.form-control.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}select.form-control.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}select.form-control.btn-success.btn-outline .caret{border-top-color:#5cb85c}select.form-control.btn-success.btn-outline:focus,select.form-control.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}select.form-control.btn-success.btn-outline:focus .caret,select.form-control.btn-success.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-success{color:#449d44}select.form-control.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}select.form-control.btn-primary:focus,select.form-control.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-primary .caret{border-top-color:#fff}select.form-control.btn-primary.btn-link,select.form-control.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-primary.btn-link:focus,select.form-control.btn-primary.btn-link:hover,select.form-control.btn-primary.btn-noborder:focus,select.form-control.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}select.form-control.btn-primary.btn-outline .caret{border-top-color:#428bca}select.form-control.btn-primary.btn-outline:focus,select.form-control.btn-primary.btn-outline:hover{background:#428bca;color:#fff}select.form-control.btn-primary.btn-outline:focus .caret,select.form-control.btn-primary.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-primary{color:#3071a9}select.form-control.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}select.form-control.btn-danger:focus,select.form-control.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}select.form-control.btn-danger .caret{border-top-color:#fff}select.form-control.btn-danger.btn-link,select.form-control.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}select.form-control.btn-danger.btn-link:focus,select.form-control.btn-danger.btn-link:hover,select.form-control.btn-danger.btn-noborder:focus,select.form-control.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}select.form-control.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}select.form-control.btn-danger.btn-outline .caret{border-top-color:#dd4b39}select.form-control.btn-danger.btn-outline:focus,select.form-control.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}select.form-control.btn-danger.btn-outline:focus .caret,select.form-control.btn-danger.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-danger{color:#c23321}select.form-control .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}select.form-control:focus,select.form-control:hover{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#e3e3e3);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control:focus{border-color:#428bca}.checkbox,.form-group .checkbox,.form-group .radio,.radio{display:block;min-height:20px;margin-bottom:12px;padding-left:20px;vertical-align:middle}.checkbox input[type=checkbox],.checkbox input[type=radio],.form-group .checkbox input[type=checkbox],.form-group .checkbox input[type=radio],.form-group .radio input[type=checkbox],.form-group .radio input[type=radio],.radio input[type=checkbox],.radio input[type=radio]{float:left;margin-top:3px;margin-left:-20px}.checkbox label,.form-group .checkbox label,.form-group .radio label,.radio label{display:inline;margin-bottom:0;font-weight:400;cursor:pointer}.form-group{margin-bottom:12px}.form-group label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:500}.form-group label .note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#767676}.form-group.has-error .help-block,.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control{border-color:#dd4b39}.form-horizontal .form-group{zoom:1}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:"";display:table}.form-horizontal .form-group:after{clear:both}.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 .btn{vertical-align:middle}.pagehead{zoom:1;margin:0 auto;padding:0;text-align:center;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.pagehead:after,.pagehead:before{content:"";display:table}.pagehead:after{clear:both}.pagehead .avatar{display:inline-block;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-top:17px;margin-right:9px;width:30px;height:30px}.pagehead .avatar img{width:100%;height:100%;border-radius:3px}.pagehead h1{float:left;font-size:24px;padding:0;margin:0;line-height:65px;font-weight:400}.pagehead h1 a{color:inherit;text-decoration:none}.pagehead h1 a:hover{color:#428bca;text-decoration:none}.pagehead h1>i{line-height:1em}.pagehead .btn{float:left;margin-top:16px}.pagehead .menu{list-style:none;zoom:1;margin:0;padding:0;float:right;text-align:center}.pagehead .menu:after,.pagehead .menu:before{content:"";display:table}.pagehead .menu:after{clear:both}.pagehead .menu.center{float:none}.pagehead .menu.left{float:left}.pagehead .menu li{display:inline-block}.pagehead .menu li>a{color:#8d8d8a;padding:25px 15px;margin-bottom:-1px;border-bottom:1px solid #e5e5e5;letter-spacing:-.02em;font-weight:500;font-style:normal;font-size:11px;letter-spacing:.2em;text-transform:uppercase;display:inline-block}.pagehead .menu li>a i{font-size:16px;line-height:1em}.pagehead .menu li>a:focus,.pagehead .menu li>a:hover{text-decoration:none}.pagehead .menu li.active>a{padding-bottom:23px;border-width:3px;border-color:#dd4b39;font-weight:700}.pagehead .menu li:first-child>a{margin-left:0}.pagehead .menu li:last-child>a{margin-right:0}.pagehead .btn-group.open .dropdown-toggle{box-shadow:none}.pagehead .search-bar{width:100%;max-width:300px;margin-top:13px;background:#fff;border:1px solid #e5e5e5;position:relative;cursor:text}.pagehead .search-bar i{position:absolute;left:8px;font-size:16px;line-height:34px;color:#bbb}.pagehead .search-bar input{border:none;box-shadow:none;height:34px;padding-left:30px;background:transparent}.blankslate{width:100%;max-width:400px;margin:80px auto;text-align:center;padding:20px}@media (max-height:800px){.blankslate{margin:40px auto}}.blankslate .icon{font-size:64px;line-height:120px;color:#b3b3b1}.blankslate h3{margin:10px 0;margin-top:0;font-size:22px;font-weight:500}.blankslate p{margin:10px 0}.blankslate.with-background{background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;background-clip:padding-box;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate.full-width{max-width:100%;margin:0;padding:80px}.blankslate-layout{width:100%;height:100%;display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;align-items:center;justify-content:center}.blankslate-layout.with-background{background-color:#fafafa;border:1px solid #e5e5e5;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate-layout .blankslate{margin:0;padding-bottom:50px}.tabs>.tabs-nav{margin:0;padding:0;list-style:none;width:100%;border-bottom:0;border-bottom:1px solid #d4d4d4;zoom:1}.tabs>.tabs-nav:after,.tabs>.tabs-nav:before{content:"";display:table}.tabs>.tabs-nav:after{clear:both}.tabs>.tabs-nav>li{margin:0;float:left;margin-bottom:-1px}.tabs>.tabs-nav>li>a{position:relative;display:block;padding:10px 15px;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:3px 3px 0 0;color:#b3b3b1;border-bottom:1px solid #d4d4d4;margin-right:0}.tabs>.tabs-nav>li>a:focus,.tabs>.tabs-nav>li>a:hover{text-decoration:none}.tabs>.tabs-nav>li.active>a{color:#555;background-color:#fff;border:1px solid #d4d4d4;border-bottom-color:#fff;cursor:default}.tabs>.tabs-nav.justified>li{float:none;display:table-cell;width:1%}.tabs>.tabs-nav.justified>li a{text-align:center;margin-bottom:-1px}.tabs .tabs-content .tab-pane{display:none}.tabs .tabs-content .tab-pane.active{display:block}.tabs>.tabs-content{margin-top:20px}.tabs.tabs-fluid>.tabs-content{margin:0}.pagination{margin:0;zoom:1}.pagination:after,.pagination:before{content:"";display:table}.pagination:after{clear:both}.pagination .pagination-nav,.pagination .pagination-pages{display:inline-block;padding-left:0;margin:15px 0;border-radius:2px}.pagination .pagination-nav li,.pagination .pagination-pages li{display:inline}.pagination .pagination-nav li a,.pagination .pagination-nav li span,.pagination .pagination-pages li a,.pagination .pagination-pages li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#737373;background-color:#fff;border:1px solid #d4d4d4;margin-left:-1px}.pagination .pagination-nav li:first-child a,.pagination .pagination-nav li:first-child span,.pagination .pagination-pages li:first-child a,.pagination .pagination-pages li:first-child span{border-top-left-radius:2px;border-bottom-left-radius:2px}.pagination .pagination-nav li:last-child a,.pagination .pagination-nav li:last-child span,.pagination .pagination-pages li:last-child a,.pagination .pagination-pages li:last-child span{border-top-right-radius:2px;border-bottom-right-radius:2px}.pagination .pagination-nav li .separator,.pagination .pagination-pages li .separator{cursor:default;letter-spacing:3px}.pagination .pagination-nav li a:hover,.pagination .pagination-pages li a:hover{background:#f5f5f5;color:#4f4f52;border-color:#d4d4d4}.pagination .pagination-nav li.active a,.pagination .pagination-pages li.active a{cursor:default;z-index:1;color:#5cb85c;border-color:#5cb85c;background:#fff}.pagination .pagination-pages{float:left}.pagination .pagination-nav{float:right}.badge{display:inline-block;padding:1px 3px;font-size:11px;font-weight:500;line-height:1;color:#666;background-color:#eee;border-radius:20px;border:1px solid #ccc;min-width:18px;text-align:center;letter-spacing:initial}.badge.badge-warning{background-color:#fff2d0;color:#8d7726;border-color:#d6cdb1}.badge.badge-info{background-color:#e2eef9;color:#246;border-color:#bac6d3}.badge.badge-success{background-color:#dff0d8;color:#3c763d;border-color:#c0d1d0}.badge.badge-danger{background-color:#fcdede;color:#911;border-color:#d2b2b2}.gb-page-wrapper{min-height:100%;position:relative;padding-bottom:60px}.gb-page-wrapper.for-modal{padding-bottom:1px;background:#f5f5f5}.gb-page-header{position:relative;z-index:2;width:100%;padding:10px 0;background:#fff;color:#555;border-bottom:1px solid #ddd;border-top:2px solid #4d4d4f;box-shadow:0 3px 2px -2px hsla(0,0%,78%,.2)}.gb-page-header .container{zoom:1}.gb-page-header .container:after,.gb-page-header .container:before{content:"";display:table}.gb-page-header .container:after{clear:both}.gb-page-header .container .logo{color:inherit}.gb-page-header .container .logo:hover{text-decoration:none}.gb-page-header .container .logo img{height:34px;float:left;margin-right:8px;margin-top:3px}.gb-page-header .container .logo h1{font-size:18px;font-weight:700;line-height:38px;display:inline-block;margin:0;padding:0 0 0 10px;text-shadow:none;color:#4d4d4f}.gb-page-header .container .btn{text-decoration:none;margin:2px 4px;box-shadow:none!important;text-transform:uppercase}.gb-page-header .container .btn:hover{text-decoration:none}.gb-page-header .container .btn.btn-link{color:inherit}.gb-page-header .container .btn.btn-link:hover{color:#428bca}.gb-page-header .container .btn.btn-icon{margin:1px 0;font-size:16px;padding:5px 10px}.gb-page-header .container .btn .caret{border-top-color:#555}.gb-page-header .container img.avatar{width:24px;height:24px;border-radius:3px;float:left;margin-right:6px;margin-top:-2px;margin-bottom:-2px}.gb-page-header .container .dropdown-menu{top:44px;width:180px}.gb-page-body{position:relative;z-index:1}.gb-page-body .gb-page-inner{margin:30px 0}.gb-page-footer{position:absolute;bottom:0;width:100%;height:60px;margin:0}.gb-page-footer .container .menu{list-style:none;margin:0;padding:0;zoom:1;border-top:1px solid #f5f5f5}.gb-page-footer .container .menu:after,.gb-page-footer .container .menu:before{content:"";display:table}.gb-page-footer .container .menu:after{clear:both}.gb-page-footer .container .menu>li{float:left}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>span{padding:19.5px 10px;display:inline-block;color:#999;text-transform:uppercase;letter-spacing:.2px;font-size:12px;line-height:20px;font-weight:400;height:59px}.gb-page-footer .container .menu>li>a.service-info,.gb-page-footer .container .menu>li>span.service-info{color:#818181;font-weight:400}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>a:focus,.gb-page-footer .container .menu>li>a:hover{text-decoration:none}*{box-sizing:border-box}body,html{width:100%;height:100%;color:#333;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.42857143;background:#fff;letter-spacing:.3px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;font-smoothing:antialiased}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight{margin:0}.gb-markdown{font-size:16px}.docs-footer{margin-top:20px;padding:15px 0;text-align:right;border-top:4px solid #eee}.docs-example{position:relative;padding:15px;line-height:1.4;border:1px solid #e5e5e5;border-radius:.25rem .25rem 0 0;font-size:14px}.docs-example+.highlight{margin-top:-1px;border:1px solid #e5e5e5;border-radius:0 0 .25rem .25rem;margin-bottom:30px}.docs-example+.highlight>pre{margin:0}.docs-colors{zoom:1}.docs-colors:after,.docs-colors:before{content:"";display:table}.docs-colors:after{clear:both}.docs-colors .color{border-radius:3px;padding:12px 6px;margin:4px 0;color:#fff;text-align:center}.docs-colors .color.palette-black{background:#2d2d2d}.docs-colors .color.palette-gray-light{background:#fcfcfc;color:inherit}.docs-colors .color.palette-gray{background:#f5f5f5;color:inherit}.docs-colors .color.palette-gray-outline{background:#d4d4d4;color:inherit}.docs-colors .color.palette-gray-dark{background:#e5e5e5;color:inherit}.docs-colors .color.palette-gray-darker{background:#b3b3b1;color:inherit}.docs-colors .color.palette-darkgray{background:#4f4f52}.docs-colors .color.palette-blue{background:#428bca}.docs-colors .color.palette-green{background:#5cb85c}.docs-colors .color.palette-orange{background:#f0ad4e}.docs-colors .color.palette-clearblue{background:#44b6f1}.docs-colors .color.palette-red{background:#dd4b39}.docs-colors .color.palette-logo{background:#4d4d4f} \ No newline at end of file +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:500}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:500}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.btn-toolbar,.clearfix,.dl-horizontal dd{zoom:1}.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.dl-horizontal dd:after,.dl-horizontal dd:before{content:"";display:table}.btn-toolbar:after,.clearfix:after,.dl-horizontal dd:after{clear:both}.hidden{display:none}.container{position:relative;width:100%;max-width:1200px;margin:0;padding:0;margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.container.container-fluid{padding:0}.container [class*=col-]{float:left;width:100%;padding-left:15px;padding-right:15px}@media (min-width:510px){.container{max-width:510px}.container .col-xs-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-0{margin-left:0}.container .col-xs-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-1{margin-left:8.33333333%}.container .col-xs-3{width:25%;padding-left:15px;padding-right:15px}.container .col-xs-offset-2{margin-left:16.66666667%}.container .col-xs-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-3{margin-left:25%}.container .col-xs-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-4{margin-left:33.33333333%}.container .col-xs-6{width:50%;padding-left:15px;padding-right:15px}.container .col-xs-offset-5{margin-left:41.66666667%}.container .col-xs-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-6{margin-left:50%}.container .col-xs-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-7{margin-left:58.33333333%}.container .col-xs-9{width:75%;padding-left:15px;padding-right:15px}.container .col-xs-offset-8{margin-left:66.66666667%}.container .col-xs-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-9{margin-left:75%}.container .col-xs-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-10{margin-left:83.33333333%}.container .col-xs-12{width:100%;padding-left:15px;padding-right:15px}.container .col-xs-offset-11{margin-left:91.66666667%}}@media (min-width:750px){.container{max-width:750px}.container .col-sm-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-0{margin-left:0}.container .col-sm-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-1{margin-left:8.33333333%}.container .col-sm-3{width:25%;padding-left:15px;padding-right:15px}.container .col-sm-offset-2{margin-left:16.66666667%}.container .col-sm-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-3{margin-left:25%}.container .col-sm-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-4{margin-left:33.33333333%}.container .col-sm-6{width:50%;padding-left:15px;padding-right:15px}.container .col-sm-offset-5{margin-left:41.66666667%}.container .col-sm-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-6{margin-left:50%}.container .col-sm-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-7{margin-left:58.33333333%}.container .col-sm-9{width:75%;padding-left:15px;padding-right:15px}.container .col-sm-offset-8{margin-left:66.66666667%}.container .col-sm-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-9{margin-left:75%}.container .col-sm-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-10{margin-left:83.33333333%}.container .col-sm-12{width:100%;padding-left:15px;padding-right:15px}.container .col-sm-offset-11{margin-left:91.66666667%}}@media (min-width:970px){.container{max-width:970px}.container .col-md-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-0{margin-left:0}.container .col-md-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-1{margin-left:8.33333333%}.container .col-md-3{width:25%;padding-left:15px;padding-right:15px}.container .col-md-offset-2{margin-left:16.66666667%}.container .col-md-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-3{margin-left:25%}.container .col-md-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-4{margin-left:33.33333333%}.container .col-md-6{width:50%;padding-left:15px;padding-right:15px}.container .col-md-offset-5{margin-left:41.66666667%}.container .col-md-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-6{margin-left:50%}.container .col-md-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-7{margin-left:58.33333333%}.container .col-md-9{width:75%;padding-left:15px;padding-right:15px}.container .col-md-offset-8{margin-left:66.66666667%}.container .col-md-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-9{margin-left:75%}.container .col-md-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-10{margin-left:83.33333333%}.container .col-md-12{width:100%;padding-left:15px;padding-right:15px}.container .col-md-offset-11{margin-left:91.66666667%}}@media (min-width:1200px){.container{max-width:1200px}.container .col-lg-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-0{margin-left:0}.container .col-lg-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-1{margin-left:8.33333333%}.container .col-lg-3{width:25%;padding-left:15px;padding-right:15px}.container .col-lg-offset-2{margin-left:16.66666667%}.container .col-lg-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-3{margin-left:25%}.container .col-lg-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-4{margin-left:33.33333333%}.container .col-lg-6{width:50%;padding-left:15px;padding-right:15px}.container .col-lg-offset-5{margin-left:41.66666667%}.container .col-lg-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-6{margin-left:50%}.container .col-lg-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-7{margin-left:58.33333333%}.container .col-lg-9{width:75%;padding-left:15px;padding-right:15px}.container .col-lg-offset-8{margin-left:66.66666667%}.container .col-lg-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-9{margin-left:75%}.container .col-lg-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-10{margin-left:83.33333333%}.container .col-lg-12{width:100%;padding-left:15px;padding-right:15px}.container .col-lg-offset-11{margin-left:91.66666667%}}.row{margin-left:-15px;margin-right:-15px;zoom:1}.row:after,.row:before{content:"";display:table}.row:after{clear:both}@media (min-width:0) and (max-width:749px){.visible-xs{display:block!important}.hidden-xs{display:none!important}}@media (min-width:750px) and (max-width:969px){.visible-sm{display:block!important}.hidden-sm{display:none!important}}@media (min-width:970px) and (max-width:1199px){.visible-md{display:block!important}.hidden-md{display:none!important}}@media (min-width:970px){.visible-lg{display:block!important}.hidden-lg{display:none!important}}.hljs-comment,.hljs-title{color:#8e908c}.css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title{color:#c82829}.hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor{color:#f5871f}.css .hljs-rules .hljs-attribute,.ruby .hljs-class .hljs-title{color:#eab700}.hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{background:#fff;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript{opacity:.5}.pull-right{float:right!important}.pull-left{float:left!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#737373}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}b,strong{font-weight:700}p{margin:0 0 10px}p.after{margin:0;margin-top:10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:750px){.lead{font-size:21px}}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap,.text-overflow{white-space:nowrap}.text-overflow{overflow:hidden;text-overflow:ellipsis}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-warning{color:#8d7726}.text-danger{color:#911}.text-info{color:#246}.text-success{color:#3c763d}.text-muted{color:#737373}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:500}dd{margin-left:0}@media (min-width:750px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #737373}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#737373}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.checkbox-switch,.checkbox.checkbox-switch,.form-group .checkbox.checkbox-switch{padding-left:0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.checkbox-switch.switch-right,.checkbox.checkbox-switch.switch-right,.form-group .checkbox.checkbox-switch.switch-right{zoom:1}.checkbox-switch.switch-right:after,.checkbox-switch.switch-right:before,.checkbox.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:before,.form-group .checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:before{content:"";display:table}.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:after{clear:both}.checkbox-switch.switch-right input+span,.checkbox.checkbox-switch.switch-right input+span,.form-group .checkbox.checkbox-switch.switch-right input+span{float:right}.checkbox-switch.switch-xs input+span,.checkbox.checkbox-switch.switch-xs input+span,.form-group .checkbox.checkbox-switch.switch-xs input+span{font-size:12px}.checkbox-switch.switch-lg input+span,.checkbox.checkbox-switch.switch-lg input+span,.form-group .checkbox.checkbox-switch.switch-lg input+span{font-size:18px}.checkbox-switch input,.checkbox.checkbox-switch input,.form-group .checkbox.checkbox-switch input{opacity:0;position:absolute}.checkbox-switch input+span,.checkbox.checkbox-switch input+span,.form-group .checkbox.checkbox-switch input+span{font-size:16px;position:relative;display:inline-block;width:1.65em;height:1em;background:#fff;box-shadow:inset 0 0 0 .0625em #d4d4d4;border-radius:.5em;vertical-align:-.15em;transition:all .4s cubic-bezier(.17,.67,.43,.98)}.checkbox-switch:active input+span,.checkbox-switch input+span:active,.checkbox.checkbox-switch:active input+span,.checkbox.checkbox-switch input+span:active,.form-group .checkbox.checkbox-switch:active input+span,.form-group .checkbox.checkbox-switch input+span:active{box-shadow:inset 0 0 0 .73em #d4d4d4}.checkbox-switch input+span:after,.checkbox.checkbox-switch input+span:after,.form-group .checkbox.checkbox-switch input+span:after{position:absolute;display:block;content:'';width:.875em;height:.875em;border-radius:.4375em;top:.0625em;left:.0625em;background:#fff;box-shadow:inset 0 0 0 .03em rgba(0,0,0,.4),0 0 .05em rgba(0,0,0,.35),0 .1em .2em rgba(0,0,0,.4);transition:all .25s ease-out}.checkbox-switch:active input+span:after,.checkbox-switch input+span:active:after,.checkbox.checkbox-switch:active input+span:after,.checkbox.checkbox-switch input+span:active:after,.form-group .checkbox.checkbox-switch:active input+span:after,.form-group .checkbox.checkbox-switch input+span:active:after{width:1.15em}.checkbox-switch input:checked+span,.checkbox.checkbox-switch input:checked+span,.form-group .checkbox.checkbox-switch input:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}.checkbox-switch input:disabled+span,.checkbox.checkbox-switch input:disabled+span,.form-group .checkbox.checkbox-switch input:disabled+span{opacity:.6}.checkbox-switch input:checked+span:after,.checkbox.checkbox-switch input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:after{left:.7125em}.checkbox-switch:active input:checked+span:after,.checkbox-switch input:checked+span:active:after,.checkbox.checkbox-switch:active input:checked+span:after,.checkbox.checkbox-switch input:checked+span:active:after,.form-group .checkbox.checkbox-switch:active input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:active:after{left:.4375em}.checkbox-switch input:focus+span:after,.checkbox.checkbox-switch input:focus+span:after,.form-group .checkbox.checkbox-switch input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.15),0 0 .05em rgba(0,0,0,.08),0 .1em .2em rgba(0,0,0,.3);background:#fff}.checkbox-switch input:focus+span,.checkbox.checkbox-switch input:focus+span,.form-group .checkbox.checkbox-switch input:focus+span{box-shadow:inset 0 0 0 .0625em #dadada}.checkbox-switch input:focus:checked+span,.checkbox.checkbox-switch input:focus:checked+span,.form-group .checkbox.checkbox-switch input:focus:checked+span{box-shadow:inset 0 0 0 .73em #33be4b}.checkbox-switch:hover input:focus+span:after,.checkbox.checkbox-switch:hover input:focus+span:after,.form-group .checkbox.checkbox-switch:hover input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.1),0 0 .05em rgba(0,0,0,.05),0 .1em .2em rgba(0,0,0,.2);background:#fff}.checkbox-switch:hover input:focus+span,.checkbox.checkbox-switch:hover input:focus+span,.form-group .checkbox.checkbox-switch:hover input:focus+span{box-shadow:inset 0 0 0 .0625em #e9e9e9}.checkbox-switch:hover input:focus:checked+span,.checkbox.checkbox-switch:hover input:focus:checked+span,.form-group .checkbox.checkbox-switch:hover input:focus:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:3px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:500;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;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}a{text-decoration:none;color:#428bca}a:focus,a:hover{text-decoration:underline}a:visited{color:#428bca}.gb-markdown .muted-link,.gb-markdown .muted-link:visited,.muted-link,.muted-link:visited{color:#737373}.gb-markdown .muted-link:focus,.gb-markdown .muted-link:hover,.muted-link:focus,.muted-link:hover{text-decoration:none;color:#428bca}.gb-markdown .underlined-link,.underlined-link{color:inherit;text-decoration:underline}.gb-markdown .underlined-link:visited,.underlined-link:visited{color:inherit}.gb-markdown .underlined-link:focus,.gb-markdown .underlined-link:hover,.underlined-link:focus,.underlined-link:hover{text-decoration:underline;color:inherit}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#737373}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #d4d4d4;word-break:break-all}.table>thead>tr>th{vertical-align:bottom;background:#f5f5f5;border-bottom:1px solid #d4d4d4}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid #d4d4d4}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d4d4d4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#fcfcfc}.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-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:510px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d4d4d4}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.button-nobackground{background:transparent;border-color:transparent}.button-nobackground:focus,.button-nobackground:hover{color:#428bca;background:none;box-shadow:none}.button-nobackground.active{background:none;box-shadow:none;font-weight:500}.btn,.gb-markdown .btn,a.btn{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;cursor:pointer;display:inline-block;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.btn .caret,.gb-markdown .btn .caret,a.btn .caret{border-top-color:#333}.btn .octicon,.gb-markdown .btn .octicon,a.btn .octicon{line-height:1em}.btn.dropdown-toggle.open,.btn:focus,.btn:hover,.gb-markdown .btn.dropdown-toggle.open,.gb-markdown .btn:focus,.gb-markdown .btn:hover,a.btn.dropdown-toggle.open,a.btn:focus,a.btn:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}.btn.active,.btn:active,.gb-markdown .btn.active,.gb-markdown .btn:active,a.btn.active,a.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,.gb-markdown .btn.disabled,.gb-markdown .btn:disabled,a.btn.disabled,a.btn:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}.btn.disabled.tooltipped:after,.btn.disabled.tooltipped:before,.btn:disabled.tooltipped:after,.btn:disabled.tooltipped:before,.gb-markdown .btn.disabled.tooltipped:after,.gb-markdown .btn.disabled.tooltipped:before,.gb-markdown .btn:disabled.tooltipped:after,.gb-markdown .btn:disabled.tooltipped:before,a.btn.disabled.tooltipped:after,a.btn.disabled.tooltipped:before,a.btn:disabled.tooltipped:after,a.btn:disabled.tooltipped:before{display:none}.btn.btn-lg,.gb-markdown .btn.btn-lg,a.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.btn.btn-sm,.gb-markdown .btn.btn-sm,a.btn.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-xs,.gb-markdown .btn.btn-xs,a.btn.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-right,.gb-markdown .btn.btn-right,a.btn.btn-right{float:right!important;margin-left:16px}.btn.btn-left,.gb-markdown .btn.btn-left,a.btn.btn-left{float:left!important;margin-right:16px}.btn.btn-block,.gb-markdown .btn.btn-block,a.btn.btn-block{display:block;width:100%;text-align:center}.btn.btn-block+.btn-block,.gb-markdown .btn.btn-block+.btn-block,a.btn.btn-block+.btn-block{margin-top:5px}.btn.btn-link,.gb-markdown .btn.btn-link,a.btn.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-link .caret,.gb-markdown .btn.btn-link .caret,a.btn.btn-link .caret{border-top-color:#fff}.btn.btn-link.btn-link,.btn.btn-link.btn-noborder,.gb-markdown .btn.btn-link.btn-link,.gb-markdown .btn.btn-link.btn-noborder,a.btn.btn-link.btn-link,a.btn.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-link.btn-link:focus,.btn.btn-link.btn-link:hover,.btn.btn-link.btn-noborder:focus,.btn.btn-link.btn-noborder:hover,.gb-markdown .btn.btn-link.btn-link:focus,.gb-markdown .btn.btn-link.btn-link:hover,.gb-markdown .btn.btn-link.btn-noborder:focus,.gb-markdown .btn.btn-link.btn-noborder:hover,a.btn.btn-link.btn-link:focus,a.btn.btn-link.btn-link:hover,a.btn.btn-link.btn-noborder:focus,a.btn.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-link.active,.gb-markdown .btn.btn-link.active,a.btn.btn-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-text-link,.gb-markdown .btn.btn-text-link,a.btn.btn-text-link{background:transparent;border-color:transparent;color:inherit}.btn.btn-text-link:focus,.btn.btn-text-link:hover,.gb-markdown .btn.btn-text-link:focus,.gb-markdown .btn.btn-text-link:hover,a.btn.btn-text-link:focus,a.btn.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-text-link.active,.gb-markdown .btn.btn-text-link.active,a.btn.btn-text-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-count,.gb-markdown .btn.btn-count,a.btn.btn-count{color:#333;background:#fff}.btn.btn-count:focus,.btn.btn-count:hover,.gb-markdown .btn.btn-count:focus,.gb-markdown .btn.btn-count:hover,a.btn.btn-count:focus,a.btn.btn-count:hover{background:#fff;color:#428bca}.btn.btn-count.disabled,.btn.btn-count:disabled,.gb-markdown .btn.btn-count.disabled,.gb-markdown .btn.btn-count:disabled,a.btn.btn-count.disabled,a.btn.btn-count:disabled{background:#fff;color:#333}.btn.btn-count .caret,.gb-markdown .btn.btn-count .caret,a.btn.btn-count .caret{border-top-color:#333}.btn.btn-success,.gb-markdown .btn.btn-success,a.btn.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}.btn.btn-success:focus,.btn.btn-success:hover,.gb-markdown .btn.btn-success:focus,.gb-markdown .btn.btn-success:hover,a.btn.btn-success:focus,a.btn.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}.btn.btn-success .caret,.gb-markdown .btn.btn-success .caret,a.btn.btn-success .caret{border-top-color:#fff}.btn.btn-success.btn-link,.btn.btn-success.btn-noborder,.gb-markdown .btn.btn-success.btn-link,.gb-markdown .btn.btn-success.btn-noborder,a.btn.btn-success.btn-link,a.btn.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}.btn.btn-success.btn-link:focus,.btn.btn-success.btn-link:hover,.btn.btn-success.btn-noborder:focus,.btn.btn-success.btn-noborder:hover,.gb-markdown .btn.btn-success.btn-link:focus,.gb-markdown .btn.btn-success.btn-link:hover,.gb-markdown .btn.btn-success.btn-noborder:focus,.gb-markdown .btn.btn-success.btn-noborder:hover,a.btn.btn-success.btn-link:focus,a.btn.btn-success.btn-link:hover,a.btn.btn-success.btn-noborder:focus,a.btn.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}.btn.btn-success.btn-outline,.gb-markdown .btn.btn-success.btn-outline,a.btn.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}.btn.btn-success.btn-outline .caret,.gb-markdown .btn.btn-success.btn-outline .caret,a.btn.btn-success.btn-outline .caret{border-top-color:#5cb85c}.btn.btn-success.btn-outline:focus,.btn.btn-success.btn-outline:hover,.gb-markdown .btn.btn-success.btn-outline:focus,.gb-markdown .btn.btn-success.btn-outline:hover,a.btn.btn-success.btn-outline:focus,a.btn.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}.btn.btn-success.btn-outline:focus .caret,.btn.btn-success.btn-outline:hover .caret,.gb-markdown .btn.btn-success.btn-outline:focus .caret,.gb-markdown .btn.btn-success.btn-outline:hover .caret,a.btn.btn-success.btn-outline:focus .caret,a.btn.btn-success.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-success,.gb-markdown .btn.btn-text-success,a.btn.btn-text-success{color:#449d44}.btn.btn-primary,.gb-markdown .btn.btn-primary,a.btn.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover,.gb-markdown .btn.btn-primary:focus,.gb-markdown .btn.btn-primary:hover,a.btn.btn-primary:focus,a.btn.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-primary .caret,.gb-markdown .btn.btn-primary .caret,a.btn.btn-primary .caret{border-top-color:#fff}.btn.btn-primary.btn-link,.btn.btn-primary.btn-noborder,.gb-markdown .btn.btn-primary.btn-link,.gb-markdown .btn.btn-primary.btn-noborder,a.btn.btn-primary.btn-link,a.btn.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-primary.btn-link:focus,.btn.btn-primary.btn-link:hover,.btn.btn-primary.btn-noborder:focus,.btn.btn-primary.btn-noborder:hover,.gb-markdown .btn.btn-primary.btn-link:focus,.gb-markdown .btn.btn-primary.btn-link:hover,.gb-markdown .btn.btn-primary.btn-noborder:focus,.gb-markdown .btn.btn-primary.btn-noborder:hover,a.btn.btn-primary.btn-link:focus,a.btn.btn-primary.btn-link:hover,a.btn.btn-primary.btn-noborder:focus,a.btn.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-primary.btn-outline,.gb-markdown .btn.btn-primary.btn-outline,a.btn.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}.btn.btn-primary.btn-outline .caret,.gb-markdown .btn.btn-primary.btn-outline .caret,a.btn.btn-primary.btn-outline .caret{border-top-color:#428bca}.btn.btn-primary.btn-outline:focus,.btn.btn-primary.btn-outline:hover,.gb-markdown .btn.btn-primary.btn-outline:focus,.gb-markdown .btn.btn-primary.btn-outline:hover,a.btn.btn-primary.btn-outline:focus,a.btn.btn-primary.btn-outline:hover{background:#428bca;color:#fff}.btn.btn-primary.btn-outline:focus .caret,.btn.btn-primary.btn-outline:hover .caret,.gb-markdown .btn.btn-primary.btn-outline:focus .caret,.gb-markdown .btn.btn-primary.btn-outline:hover .caret,a.btn.btn-primary.btn-outline:focus .caret,a.btn.btn-primary.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-primary,.gb-markdown .btn.btn-text-primary,a.btn.btn-text-primary{color:#3071a9}.btn.btn-danger,.gb-markdown .btn.btn-danger,a.btn.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}.btn.btn-danger:focus,.btn.btn-danger:hover,.gb-markdown .btn.btn-danger:focus,.gb-markdown .btn.btn-danger:hover,a.btn.btn-danger:focus,a.btn.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}.btn.btn-danger .caret,.gb-markdown .btn.btn-danger .caret,a.btn.btn-danger .caret{border-top-color:#fff}.btn.btn-danger.btn-link,.btn.btn-danger.btn-noborder,.gb-markdown .btn.btn-danger.btn-link,.gb-markdown .btn.btn-danger.btn-noborder,a.btn.btn-danger.btn-link,a.btn.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}.btn.btn-danger.btn-link:focus,.btn.btn-danger.btn-link:hover,.btn.btn-danger.btn-noborder:focus,.btn.btn-danger.btn-noborder:hover,.gb-markdown .btn.btn-danger.btn-link:focus,.gb-markdown .btn.btn-danger.btn-link:hover,.gb-markdown .btn.btn-danger.btn-noborder:focus,.gb-markdown .btn.btn-danger.btn-noborder:hover,a.btn.btn-danger.btn-link:focus,a.btn.btn-danger.btn-link:hover,a.btn.btn-danger.btn-noborder:focus,a.btn.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}.btn.btn-danger.btn-outline,.gb-markdown .btn.btn-danger.btn-outline,a.btn.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}.btn.btn-danger.btn-outline .caret,.gb-markdown .btn.btn-danger.btn-outline .caret,a.btn.btn-danger.btn-outline .caret{border-top-color:#dd4b39}.btn.btn-danger.btn-outline:focus,.btn.btn-danger.btn-outline:hover,.gb-markdown .btn.btn-danger.btn-outline:focus,.gb-markdown .btn.btn-danger.btn-outline:hover,a.btn.btn-danger.btn-outline:focus,a.btn.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}.btn.btn-danger.btn-outline:focus .caret,.btn.btn-danger.btn-outline:hover .caret,.gb-markdown .btn.btn-danger.btn-outline:focus .caret,.gb-markdown .btn.btn-danger.btn-outline:hover .caret,a.btn.btn-danger.btn-outline:focus .caret,a.btn.btn-danger.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-danger,.gb-markdown .btn.btn-text-danger,a.btn.btn-text-danger{color:#c23321}.btn .btn-label,.gb-markdown .btn .btn-label,a.btn .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}.tooltipped{display:inline;position:relative}.tooltipped.tooltipped-o:after,.tooltipped:hover:after{line-height:1em;background:rgba(0,0,0,.8);border-radius:2px;top:calc(100% + 10px);color:#fff;content:attr(aria-label);padding:5px;white-space:nowrap;z-index:4;font-size:13px;text-transform:none;font-weight:400;pointer-events:none}.tooltipped.tooltipped-o:after,.tooltipped.tooltipped-o:before,.tooltipped:hover:after,.tooltipped:hover:before{bottom:auto;display:block;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped.tooltipped-o:before,.tooltipped:hover:before{border:solid;border-color:rgba(0,0,0,.8) transparent;top:calc(100% + 5px);border-width:0 5px 5px;content:"";z-index:5}.tooltipped.tooltipped-e:after{left:5px}.tooltipped.tooltipped-e:after,.tooltipped.tooltipped-e:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-e:before{left:10px}.tooltipped.tooltipped-n:after{bottom:calc(100% + 10px)}.tooltipped.tooltipped-n:after,.tooltipped.tooltipped-n:before{top:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-n:before{border-width:5px 5px 0;bottom:calc(100% + 5px)}.tooltipped.tooltipped-ne:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:after{left:5px}.tooltipped.tooltipped-ne:after,.tooltipped.tooltipped-ne:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{left:10px}.tooltipped.tooltipped-nw:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:after{right:5px}.tooltipped.tooltipped-nw:after,.tooltipped.tooltipped-nw:before{left:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{right:10px}.tooltipped.tooltipped-sw:after,.tooltipped.tooltipped-w:after{left:auto;right:5px;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-sw:before,.tooltipped.tooltipped-w:before{left:auto;right:10px;-webkit-transform:translateX(0);transform:translateX(0)}.btn-group{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn{position:relative;float:left}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group.btn-group-block{width:100%;display:block}.btn-group .btn+.btn,.btn-group .btn-group+.btn{border-left:0}.btn-group .btn+.btn-group,.btn-group .btn-group+.btn-group{margin-left:-1px}.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-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{text-align:center;float:none;display:table-cell;width:1%}.btn-group.btn-group-justified>.btn-group .btn{width:100%}.btn-group.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-toolbar>.btn-toolbar{float:left;margin:0}.btn-toolbar.prepend{margin-bottom:20px}.caret{display:inline-block;width:0;height:0;content:"";vertical-align:-2px;border:4px solid #b3b3b1;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.btn-group.dropdown,.dropdown{position:relative;text-align:left;color:#333}.btn-group.dropdown.btn-group-block .dropdown-menu,.dropdown.btn-group-block .dropdown-menu{min-width:100%}.btn-group.dropdown>.dropdown-menu,.dropdown>.dropdown-menu{position:absolute;top:100%;right:0}.btn-group.dropdown.inner>.dropdown-menu,.btn-group.dropdown.open>.dropdown-menu,.dropdown.inner>.dropdown-menu,.dropdown.open>.dropdown-menu{display:block}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu,.dropdown:not(.contextmenu)>.dropdown-menu{margin-top:12px;overflow:visible!important}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu{left:0;right:auto}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{right:auto;left:16px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.btn-group.dropdown.contextmenu,.dropdown.contextmenu{position:fixed;z-index:7}.btn-group.dropdown.contextmenu .dropdown-menu,.dropdown.contextmenu .dropdown-menu{display:block;position:absolute;top:0;left:0}.btn-group.dropdown.contextmenu.contextmenu-w .dropdown-menu,.dropdown.contextmenu.contextmenu-w .dropdown-menu{left:auto;right:0}.btn-group.dropdown.contextmenu.contextmenu-n .dropdown-menu,.dropdown.contextmenu.contextmenu-n .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup>.dropdown-menu,.dropdown.dropup>.dropdown-menu{position:absolute;top:auto;bottom:100%}.btn-group.dropdown.dropup>.dropdown-menu li .dropdown-menu,.dropdown.dropup>.dropdown-menu li .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu,.dropdown.dropup:not(.contextmenu)>.dropdown-menu{margin-top:0;margin-bottom:12px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{top:100%;bottom:auo;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-top-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-top-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.dropdown-w>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu,.dropdown.pull-right>.dropdown-menu{left:auto;right:0}.btn-group.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu li>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.dropdown.pull-right>.dropdown-menu li>.dropdown-menu{left:auto;right:100%}.dropdown-menu,.dropdown .dropdown-menu{display:none;position:relative;z-index:3;list-style:none;border:1px solid #c9c9c9;background:#fff;min-width:160px;margin:0;padding:0;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.15);padding-top:5px;padding-bottom:5px}.dropdown-menu.inner,.dropdown-menu.open,.dropdown .dropdown-menu.inner,.dropdown .dropdown-menu.open{display:block}.dropdown-menu>li,.dropdown .dropdown-menu>li{margin:0;padding:0;position:relative}.dropdown-menu>li.divider,.dropdown .dropdown-menu>li.divider{height:1px;margin:5px 1px;background-color:#e5e5e5}.dropdown-menu>li.dropdown-header,.dropdown .dropdown-menu>li.dropdown-header{padding:4px 10px;font-size:12px;color:#999}.dropdown-menu>li.disabled:hover>a,.dropdown-menu>li.disabled:hover>a:hover,.dropdown-menu>li.disabled>a,.dropdown-menu>li.disabled>a:hover,.dropdown .dropdown-menu>li.disabled:hover>a,.dropdown .dropdown-menu>li.disabled:hover>a:hover,.dropdown .dropdown-menu>li.disabled>a,.dropdown .dropdown-menu>li.disabled>a:hover{cursor:default;background:transparent;color:#b3b3b1;pointer-events:none}.dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown-menu>li.disabled>.dropdown-menu,.dropdown .dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown .dropdown-menu>li.disabled>.dropdown-menu{display:none}.dropdown-menu>li>a,.dropdown .dropdown-menu>li>a{padding:4px 10px;cursor:default;color:inherit;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;text-shadow:none}.dropdown-menu>li>a .help-label,.dropdown .dropdown-menu>li>a .help-label{font-size:12px;color:#b3b3b1;margin-left:10px}.dropdown-menu>li>a:hover,.dropdown .dropdown-menu>li>a:hover{text-decoration:none;text-shadow:none;background:#428bca;color:#fff}.dropdown-menu>li>a:hover .help-label,.dropdown-menu>li>a:hover .text-muted,.dropdown .dropdown-menu>li>a:hover .help-label,.dropdown .dropdown-menu>li>a:hover .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>a:hover .dropdown-icon,.dropdown .dropdown-menu>li>a:hover .dropdown-icon{color:inherit}.dropdown-menu>li>a:not(:last-child),.dropdown .dropdown-menu>li>a:not(:last-child){position:relative}.dropdown-menu>li>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):after{bottom:9px;right:6px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-left-color:#b3b3b1;border-width:5px;margin-right:-5px}.dropdown-menu>li.active>a:not(:last-child):after,.dropdown-menu>li>a:not(:last-child):hover:after,.dropdown .dropdown-menu>li.active>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):hover:after{border-left-color:#fff}.dropdown-menu>li.active>a,.dropdown .dropdown-menu>li.active>a{background:#428bca;color:#fff}.dropdown-menu>li.active>a .help-label,.dropdown-menu>li.active>a .text-muted,.dropdown .dropdown-menu>li.active>a .help-label,.dropdown .dropdown-menu>li.active>a .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>.dropdown-menu,.dropdown .dropdown-menu>li>.dropdown-menu{position:absolute;right:auto;left:100%;margin-top:0;top:0;margin-top:-1px}.dropdown-menu>li:hover>.dropdown-menu,.dropdown .dropdown-menu>li:hover>.dropdown-menu{display:block}.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-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#333;text-align:center;background-color:#f5f5f5;border:1px solid #d4d4d4;border-radius:3px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:4px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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}.alert{border:1px solid #d4d4d4;background:#f5f5f5;border-radius:4px;padding:15px;margin-bottom:20px}.alert.alert-danger{background:#fcdede;border-color:#d2b2b2;color:#911}.alert.alert-warning{background:#fff2d0;border-color:#d6cdb1;color:#8d7726}.alert.alert-info{background:#e2eef9;border-color:#bac6d3;color:#246}.alert.alert-success{background:#dff0d8;border-color:#c0d1d0;color:#3c763d}.alert .alert-btn{display:inline-block;float:right;color:inherit;border-radius:3px;padding:0;opacity:.6;padding:0 5px}.alert a.alert-btn{text-decoration:none}.alert a.alert-btn:focus,.alert a.alert-btn:hover{opacity:.8;text-decoration:none}.gb-markdown{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.gb-markdown *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.gb-markdown>:first-child{margin-top:0!important}.gb-markdown>:last-child{margin-bottom:0!important}.gb-markdown blockquote,.gb-markdown code,.gb-markdown figure,.gb-markdown img,.gb-markdown pre,.gb-markdown table,.gb-markdown tr{page-break-inside:avoid}.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown p{orphans:3;widows:3}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5{page-break-after:avoid}.gb-markdown b,.gb-markdown strong{font-weight:700}.gb-markdown em{font-style:italic}.gb-markdown blockquote,.gb-markdown dl,.gb-markdown ol,.gb-markdown p,.gb-markdown table,.gb-markdown ul{margin-top:0;margin-bottom:.85em}.gb-markdown a{color:#4183c4;text-decoration:none;background:transparent}.gb-markdown a:active,.gb-markdown a:focus,.gb-markdown a:hover{outline:0;text-decoration:underline}.gb-markdown img{border:0;max-width:100%}.gb-markdown hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.gb-markdown hr:after,.gb-markdown hr:before{display:table;content:" "}.gb-markdown hr:after{clear:both}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.gb-markdown h1{font-size:2em}.gb-markdown h2{font-size:1.75em}.gb-markdown h3{font-size:1.5em}.gb-markdown h4{font-size:1.25em}.gb-markdown h5{font-size:1em}.gb-markdown h6{font-size:1em;color:#777}.gb-markdown code,.gb-markdown pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.gb-markdown pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.gb-markdown pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:transparent}.gb-markdown pre>code:after,.gb-markdown pre>code:before{content:normal}.gb-markdown code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.gb-markdown code:after,.gb-markdown code:before{letter-spacing:-.2em;content:"\00a0"}.gb-markdown table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.gb-markdown table td,.gb-markdown table th{padding:6px 13px;border:1px solid #ddd}.gb-markdown table tr{background-color:#fff;border-top:1px solid #ccc}.gb-markdown table tr:nth-child(2n){background-color:#f8f8f8}.gb-markdown table th{font-weight:700}.gb-markdown ol,.gb-markdown ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.gb-markdown ol ol,.gb-markdown ol ul,.gb-markdown ul ol,.gb-markdown ul ul{margin-top:0;margin-bottom:0}.gb-markdown ol ol{list-style-type:lower-roman}.gb-markdown blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.gb-markdown blockquote:first-child{margin-top:0}.gb-markdown blockquote:last-child{margin-bottom:0}.gb-markdown dl{padding:0}.gb-markdown dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.gb-markdown dl dd{padding:0 .85em;margin-bottom:.85em}.gb-markdown dd{margin-left:0}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:2px;color:#333;box-shadow:0 1px 1px rgba(0,0,0,.05)}.btn-toolbar+.panel{margin-top:20px}.panel .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel .panel-heading .panel-title{margin:0;padding:0;font-size:inherit;font-weight:500;line-height:19px;margin-top:-2px;margin-bottom:-2px}.panel .panel-heading .panel-title a{color:inherit}.panel .panel-heading .panel-title a:focus,.panel .panel-heading .panel-title a:hover{text-decoration:none;color:inherit}.panel .panel-heading .panel-title.large{text-align:center;font-size:22px;font-weight:400}.panel .panel-heading .panel-toolbar{float:right;margin-top:-5px;margin-right:-5px}.panel .panel-heading .panel-toolbar .btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.panel>.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.panel>.blankslate.with-background{border-radius:0;border:0}.panel>hr{margin:0}.panel .panel-body{padding:15px}.panel .panel-footer{padding:10px 15px;background-color:#fcfcfc;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel.panel-default{border-color:#d4d4d4}.panel.panel-default .panel-heading{color:#333;background-color:#f5f5f5;border-color:#d4d4d4}.panel.panel-danger{border-color:#d2b2b2}.panel.panel-danger .panel-heading{color:#911;background-color:#fcdede;border-color:#d2b2b2}.panel.panel-warning{border-color:#d6cdb1}.panel.panel-warning .panel-heading{color:#8d7726;background-color:#fff2d0;border-color:#d6cdb1}.panel.panel-info{border-color:#bac6d3}.panel.panel-info .panel-heading{color:#246;background-color:#e2eef9;border-color:#bac6d3}.panel.panel-success{border-color:#c0d1d0}.panel.panel-success .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#c0d1d0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d4d4d4}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.list-group{padding:0;margin:0;list-style:none;margin-bottom:20px;padding-left:0}.list-group li.list-group-item a{color:inherit;text-decoration:none}.list-group .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;color:#555;background-color:#fff;border:1px solid #d4d4d4}.list-group .list-group-item:focus,.list-group .list-group-item:hover{text-decoration:none;background:#f8f8f8}.list-group .list-group-item.active{color:#dd4b39;border-left:4px solid #dd4b39!important;font-weight:500;background:#f8f8f8;padding-left:11px}.list-group .list-group-item:first-child{margin-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.list-group .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.list-group .list-group-item .list-image{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-right:5px;width:20px;height:20px}.list-group .list-group-item .badge{display:inline-block;padding:3px 7px;font-size:12px;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;border-radius:10px;float:right}.list-group .list-group-item i.pull-right{float:right;margin-top:3px}.modal>.list-group,.panel>.list-group{margin:0}.modal>.list-group .list-group-item,.panel>.list-group .list-group-item{border-left:0;border-right:0}.modal>.list-group .list-group-item:first-child,.panel>.list-group .list-group-item:first-child{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0}.modal>.list-group .list-group-item:last-child,.panel>.list-group .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.filter-list,ul.filter-list{list-style:none;margin:0;padding:0;margin-bottom:20px}.filter-list li .filter-item,ul.filter-list li .filter-item{position:relative;display:block;padding:6px 12px;margin-bottom:5px;font-size:14px;color:#737373;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px}.filter-list li .filter-item .count,ul.filter-list li .filter-item .count{float:right;font-weight:500}.filter-list li .filter-item:hover,ul.filter-list li .filter-item:hover{text-decoration:none;color:#737373;background-color:#eee}.filter-list li .filter-item.selected,.filter-list li .filter-item.selected:hover,ul.filter-list li .filter-item.selected,ul.filter-list li .filter-item.selected:hover{color:#fff;background-color:#428bca}.modal-backdrop{background:rgba(0,0,0,.55);position:fixed;top:0;bottom:0;left:0;right:0;z-index:6;overflow-y:auto}.modal-backdrop.white{background:hsla(0,0%,100%,.55)}.modal{border:1px solid rgba(0,0,0,.65);border-radius:4px;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.5);width:600px;margin:30px auto}.modal.without-backdrop{border-color:#d4d4d4;box-shadow:0 1px 2px #ddd}.modal .modal-heading+.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.modal .modal-heading{position:relative;padding:15px;border-bottom:1px solid #e5e5e5}.modal .modal-heading h4{margin:0}.modal .modal-heading .modal-close{position:absolute;line-height:24px;top:50%;margin-top:-15px;right:15px;color:#d4d4d4;font-size:30px}.modal .modal-heading .modal-close:hover{color:#bbb;text-decoration:none}.modal .modal-body{padding:15px}.modal .modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal.modal-sm{width:400px;margin:30px auto}.modal.modal-lg{width:800px;margin:30px auto}.modal.modal-fullscreen{display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;margin:0;position:absolute;top:30px;bottom:30px;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.modal.modal-fullscreen .modal-heading{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.modal.modal-fullscreen .modal-body{position:relative;-moz-flex-grow:1000000;-ms-flex-grow:1000000;flex-grow:1000000}.modal.modal-fullscreen .modal-footer{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}@-webkit-keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.gb-spinner{display:inline-block;border-radius:100%;border:5px solid #f5f5f5;border-bottom-color:#428bca;-webkit-animation:b 1.5s 0s linear infinite;-moz-animation:b 1.5s 0s linear infinite;-ms-animation:b 1.5s 0s linear infinite;width:30px;height:30px;border-width:3px}.gb-spinner.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.gb-spinner.spinner-sm{width:12px;height:12px;border-width:1.2px}.gb-spinner.spinner-sm.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-6px;margin-top:-6px}.gb-spinner.spinner-lg{width:50px;height:50px;border-width:5px}.gb-spinner.spinner-lg.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-25px;margin-top:-25px}.label{display:inline-block;margin:0;padding:3px 4px 4px;font-size:11px;font-weight:500;line-height:11px;text-transform:uppercase;vertical-align:middle;border-radius:3px;color:#666;background-color:#eee}.label.label-warning{color:#9d852a;background-color:#fff8e4;border-color:#ddd6be}.label.label-info{background-color:#f3f8fc;color:#274e75;border-color:#c6d0db}.label.label-success{background-color:#ebf6e7;color:#438444;border-color:#ccdad9}.label.label-danger{background-color:#fef1f1;color:#ab1313;border-color:#dabfbf}a.label:hover{color:#428bca;text-decoration:none}.form-control{width:100%;font-size:1.1rem;border:1px solid #d4d4d4;background:#fff;outline:none;color:#333;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.form-control.focus,.form-control:focus{outline:none;border-color:#428bca;background:#fff}.form-control.disabled,.form-control:disabled{border-color:#d4d4d4;background:#f5f5f5}.form-control.input-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-control.input-sm{padding:5px 10px}.form-control.input-sm,.form-control.input-xs{font-size:12px;line-height:1.5;border-radius:2px}.form-control.input-xs{padding:2px 7px}select.form-control{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;position:relative;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#ededed);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control .caret{border-top-color:#333}select.form-control .octicon{line-height:1em}select.form-control.dropdown-toggle.open,select.form-control:focus,select.form-control:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}select.form-control.active,select.form-control:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}select.form-control.disabled,select.form-control:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}select.form-control.disabled.tooltipped:after,select.form-control.disabled.tooltipped:before,select.form-control:disabled.tooltipped:after,select.form-control:disabled.tooltipped:before{display:none}select.form-control.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}select.form-control.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-right{float:right!important;margin-left:16px}select.form-control.btn-left{float:left!important;margin-right:16px}select.form-control.btn-block{display:block;width:100%;text-align:center}select.form-control.btn-block+.btn-block{margin-top:5px}select.form-control.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}select.form-control.btn-link:focus,select.form-control.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-link .caret{border-top-color:#fff}select.form-control.btn-link.btn-link,select.form-control.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-link.btn-link:focus,select.form-control.btn-link.btn-link:hover,select.form-control.btn-link.btn-noborder:focus,select.form-control.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-link:focus,select.form-control.btn-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-text-link{background:transparent;border-color:transparent;color:inherit}select.form-control.btn-text-link:focus,select.form-control.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-text-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-count{color:#333;background:#fff}select.form-control.btn-count:focus,select.form-control.btn-count:hover{background:#fff;color:#428bca}select.form-control.btn-count.disabled,select.form-control.btn-count:disabled{background:#fff;color:#333}select.form-control.btn-count .caret{border-top-color:#333}select.form-control.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}select.form-control.btn-success:focus,select.form-control.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}select.form-control.btn-success .caret{border-top-color:#fff}select.form-control.btn-success.btn-link,select.form-control.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}select.form-control.btn-success.btn-link:focus,select.form-control.btn-success.btn-link:hover,select.form-control.btn-success.btn-noborder:focus,select.form-control.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}select.form-control.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}select.form-control.btn-success.btn-outline .caret{border-top-color:#5cb85c}select.form-control.btn-success.btn-outline:focus,select.form-control.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}select.form-control.btn-success.btn-outline:focus .caret,select.form-control.btn-success.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-success{color:#449d44}select.form-control.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}select.form-control.btn-primary:focus,select.form-control.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-primary .caret{border-top-color:#fff}select.form-control.btn-primary.btn-link,select.form-control.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-primary.btn-link:focus,select.form-control.btn-primary.btn-link:hover,select.form-control.btn-primary.btn-noborder:focus,select.form-control.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}select.form-control.btn-primary.btn-outline .caret{border-top-color:#428bca}select.form-control.btn-primary.btn-outline:focus,select.form-control.btn-primary.btn-outline:hover{background:#428bca;color:#fff}select.form-control.btn-primary.btn-outline:focus .caret,select.form-control.btn-primary.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-primary{color:#3071a9}select.form-control.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}select.form-control.btn-danger:focus,select.form-control.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}select.form-control.btn-danger .caret{border-top-color:#fff}select.form-control.btn-danger.btn-link,select.form-control.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}select.form-control.btn-danger.btn-link:focus,select.form-control.btn-danger.btn-link:hover,select.form-control.btn-danger.btn-noborder:focus,select.form-control.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}select.form-control.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}select.form-control.btn-danger.btn-outline .caret{border-top-color:#dd4b39}select.form-control.btn-danger.btn-outline:focus,select.form-control.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}select.form-control.btn-danger.btn-outline:focus .caret,select.form-control.btn-danger.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-danger{color:#c23321}select.form-control .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}select.form-control:focus,select.form-control:hover{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#e3e3e3);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control:focus{border-color:#428bca}.checkbox,.form-group .checkbox,.form-group .radio,.radio{display:block;min-height:20px;margin-bottom:12px;padding-left:20px;vertical-align:middle}.checkbox input[type=checkbox],.checkbox input[type=radio],.form-group .checkbox input[type=checkbox],.form-group .checkbox input[type=radio],.form-group .radio input[type=checkbox],.form-group .radio input[type=radio],.radio input[type=checkbox],.radio input[type=radio]{float:left;margin-top:3px;margin-left:-20px}.checkbox label,.form-group .checkbox label,.form-group .radio label,.radio label{display:inline;margin-bottom:0;font-weight:400;cursor:pointer}.form-group{margin-bottom:12px}.form-group label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:500}.form-group label .note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#767676}.form-group.has-error .help-block,.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control{border-color:#dd4b39}.form-horizontal .form-group{zoom:1}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:"";display:table}.form-horizontal .form-group:after{clear:both}.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 .btn{vertical-align:middle}.pagehead{zoom:1;margin:0 auto;padding:0;text-align:center;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.pagehead:after,.pagehead:before{content:"";display:table}.pagehead:after{clear:both}.pagehead .avatar{display:inline-block;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-top:17px;margin-right:9px;width:30px;height:30px}.pagehead .avatar img{width:100%;height:100%;border-radius:3px}.pagehead h1{float:left;font-size:24px;padding:0;margin:0;line-height:65px;font-weight:400}.pagehead h1 a{color:inherit;text-decoration:none}.pagehead h1 a:hover{color:#428bca;text-decoration:none}.pagehead h1>i{line-height:1em}.pagehead .btn{float:left;margin-top:16px}.pagehead .menu{list-style:none;zoom:1;margin:0;padding:0;float:right;text-align:center}.pagehead .menu:after,.pagehead .menu:before{content:"";display:table}.pagehead .menu:after{clear:both}.pagehead .menu.center{float:none}.pagehead .menu.left{float:left}.pagehead .menu li{display:inline-block}.pagehead .menu li>a{color:#8d8d8a;padding:25px 15px;margin-bottom:-1px;border-bottom:1px solid #e5e5e5;letter-spacing:-.02em;font-weight:500;font-style:normal;font-size:11px;letter-spacing:.2em;text-transform:uppercase;display:inline-block}.pagehead .menu li>a i{font-size:16px;line-height:1em}.pagehead .menu li>a:focus,.pagehead .menu li>a:hover{text-decoration:none}.pagehead .menu li.active>a{padding-bottom:23px;border-width:3px;border-color:#dd4b39;font-weight:700}.pagehead .menu li:first-child>a{margin-left:0}.pagehead .menu li:last-child>a{margin-right:0}.pagehead .btn-group.open .dropdown-toggle{box-shadow:none}.pagehead .search-bar{width:100%;max-width:300px;margin-top:13px;background:#fff;border:1px solid #e5e5e5;position:relative;cursor:text}.pagehead .search-bar i{position:absolute;left:8px;font-size:16px;line-height:34px;color:#bbb}.pagehead .search-bar input{border:none;box-shadow:none;height:34px;padding-left:30px;background:transparent}.blankslate{width:100%;max-width:400px;margin:80px auto;text-align:center;padding:20px}@media (max-height:800px){.blankslate{margin:40px auto}}.blankslate .icon{font-size:64px;line-height:120px;color:#b3b3b1}.blankslate h3{margin:10px 0;margin-top:0;font-size:22px;font-weight:500}.blankslate p{margin:10px 0}.blankslate.with-background{background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;background-clip:padding-box;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate.full-width{max-width:100%;margin:0;padding:80px}.blankslate-layout{width:100%;height:100%;display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;align-items:center;justify-content:center}.blankslate-layout.with-background{background-color:#fafafa;border:1px solid #e5e5e5;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate-layout .blankslate{margin:0;padding-bottom:50px}.tabs>.tabs-nav{margin:0;padding:0;list-style:none;width:100%;border-bottom:0;border-bottom:1px solid #d4d4d4;zoom:1}.tabs>.tabs-nav:after,.tabs>.tabs-nav:before{content:"";display:table}.tabs>.tabs-nav:after{clear:both}.tabs>.tabs-nav>li{margin:0;float:left;margin-bottom:-1px}.tabs>.tabs-nav>li>a{position:relative;display:block;padding:10px 15px;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:3px 3px 0 0;color:#b3b3b1;border-bottom:1px solid #d4d4d4;margin-right:0}.tabs>.tabs-nav>li>a:focus,.tabs>.tabs-nav>li>a:hover{text-decoration:none}.tabs>.tabs-nav>li.active>a{color:#555;background-color:#fff;border:1px solid #d4d4d4;border-bottom-color:#fff;cursor:default}.tabs>.tabs-nav.justified>li{float:none;display:table-cell;width:1%}.tabs>.tabs-nav.justified>li a{text-align:center;margin-bottom:-1px}.tabs .tabs-content .tab-pane{display:none}.tabs .tabs-content .tab-pane.active{display:block}.tabs>.tabs-content{margin-top:20px}.tabs.tabs-fluid>.tabs-content{margin:0}.pagination{margin:0;zoom:1}.pagination:after,.pagination:before{content:"";display:table}.pagination:after{clear:both}.pagination .pagination-nav,.pagination .pagination-pages{display:inline-block;padding-left:0;margin:15px 0;border-radius:2px}.pagination .pagination-nav li,.pagination .pagination-pages li{display:inline}.pagination .pagination-nav li a,.pagination .pagination-nav li span,.pagination .pagination-pages li a,.pagination .pagination-pages li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#737373;background-color:#fff;border:1px solid #d4d4d4;margin-left:-1px}.pagination .pagination-nav li:first-child a,.pagination .pagination-nav li:first-child span,.pagination .pagination-pages li:first-child a,.pagination .pagination-pages li:first-child span{border-top-left-radius:2px;border-bottom-left-radius:2px}.pagination .pagination-nav li:last-child a,.pagination .pagination-nav li:last-child span,.pagination .pagination-pages li:last-child a,.pagination .pagination-pages li:last-child span{border-top-right-radius:2px;border-bottom-right-radius:2px}.pagination .pagination-nav li .separator,.pagination .pagination-pages li .separator{cursor:default;letter-spacing:3px}.pagination .pagination-nav li a:hover,.pagination .pagination-pages li a:hover{background:#f5f5f5;color:#4f4f52;border-color:#d4d4d4}.pagination .pagination-nav li.active a,.pagination .pagination-pages li.active a{cursor:default;z-index:1;color:#5cb85c;border-color:#5cb85c;background:#fff}.pagination .pagination-pages{float:left}.pagination .pagination-nav{float:right}.badge{display:inline-block;padding:1px 3px;font-size:11px;font-weight:500;line-height:1;color:#666;background-color:#eee;border-radius:20px;border:1px solid #ccc;min-width:18px;text-align:center;letter-spacing:initial}.badge.badge-warning{background-color:#fff2d0;color:#8d7726;border-color:#d6cdb1}.badge.badge-info{background-color:#e2eef9;color:#246;border-color:#bac6d3}.badge.badge-success{background-color:#dff0d8;color:#3c763d;border-color:#c0d1d0}.badge.badge-danger{background-color:#fcdede;color:#911;border-color:#d2b2b2}.gb-page-wrapper{min-height:100%;position:relative;padding-bottom:60px}.gb-page-wrapper.for-modal{padding-bottom:1px;background:#f5f5f5}.gb-page-header{position:relative;z-index:2;width:100%;padding:10px 0;background:#fff;color:#555;border-bottom:1px solid #ddd;border-top:2px solid #4d4d4f;box-shadow:0 3px 2px -2px hsla(0,0%,78%,.2)}.gb-page-header .container{zoom:1}.gb-page-header .container:after,.gb-page-header .container:before{content:"";display:table}.gb-page-header .container:after{clear:both}.gb-page-header .container .logo{color:inherit}.gb-page-header .container .logo:hover{text-decoration:none}.gb-page-header .container .logo img{height:34px;float:left;margin-right:8px;margin-top:3px}.gb-page-header .container .logo h1{font-size:18px;font-weight:700;line-height:38px;display:inline-block;margin:0;padding:0 0 0 10px;text-shadow:none;color:#4d4d4f}.gb-page-header .container .btn{text-decoration:none;margin:2px 4px;box-shadow:none!important;text-transform:uppercase}.gb-page-header .container .btn:hover{text-decoration:none}.gb-page-header .container .btn.btn-link{color:inherit}.gb-page-header .container .btn.btn-link:hover{color:#428bca}.gb-page-header .container .btn.btn-icon{margin:1px 0;font-size:16px;padding:5px 10px}.gb-page-header .container .btn .caret{border-top-color:#555}.gb-page-header .container img.avatar{width:24px;height:24px;border-radius:3px;float:left;margin-right:6px;margin-top:-2px;margin-bottom:-2px}.gb-page-header .container .dropdown-menu{top:44px;width:180px}.gb-page-body{position:relative;z-index:1}.gb-page-body .gb-page-inner{margin:30px 0}.gb-page-footer{position:absolute;bottom:0;width:100%;height:60px;margin:0}.gb-page-footer .container .menu{list-style:none;margin:0;padding:0;zoom:1;border-top:1px solid #f5f5f5}.gb-page-footer .container .menu:after,.gb-page-footer .container .menu:before{content:"";display:table}.gb-page-footer .container .menu:after{clear:both}.gb-page-footer .container .menu>li{float:left}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>span{padding:19.5px 10px;display:inline-block;color:#999;text-transform:uppercase;letter-spacing:.2px;font-size:12px;line-height:20px;font-weight:400;height:59px}.gb-page-footer .container .menu>li>a.service-info,.gb-page-footer .container .menu>li>span.service-info{color:#818181;font-weight:400}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>a:focus,.gb-page-footer .container .menu>li>a:hover{text-decoration:none}body{background:#fff!important}a:hover{text-decoration:none}.text-small-title{font-size:65%;color:#95a5a6}.hb-btn{margin:5px}.hb-bg-danger,.hb-bg-default,.hb-bg-primary,.hb-bg-success,.hb-bg-warning{padding:20px}*{box-sizing:border-box}body,html{width:100%;height:100%;color:#333;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.42857143;background:#fff;letter-spacing:.3px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;font-smoothing:antialiased}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight{margin:0}.gb-markdown{font-size:16px}.docs-footer{margin-top:20px;padding:15px 0;text-align:right;border-top:4px solid #eee}.docs-example{position:relative;padding:15px;line-height:1.4;border:1px solid #e5e5e5;border-radius:.25rem .25rem 0 0;font-size:14px}.docs-example+.highlight{margin-top:-1px;border:1px solid #e5e5e5;border-radius:0 0 .25rem .25rem;margin-bottom:30px}.docs-example+.highlight>pre{margin:0}.docs-colors{zoom:1}.docs-colors:after,.docs-colors:before{content:"";display:table}.docs-colors:after{clear:both}.docs-colors .color{border-radius:3px;padding:12px 6px;margin:4px 0;color:#fff;text-align:center}.docs-colors .color.palette-black{background:#2d2d2d}.docs-colors .color.palette-gray-light{background:#fcfcfc;color:inherit}.docs-colors .color.palette-gray{background:#f5f5f5;color:inherit}.docs-colors .color.palette-gray-outline{background:#d4d4d4;color:inherit}.docs-colors .color.palette-gray-dark{background:#e5e5e5;color:inherit}.docs-colors .color.palette-gray-darker{background:#b3b3b1;color:inherit}.docs-colors .color.palette-darkgray{background:#4f4f52}.docs-colors .color.palette-blue{background:#428bca}.docs-colors .color.palette-green{background:#5cb85c}.docs-colors .color.palette-orange{background:#f0ad4e}.docs-colors .color.palette-clearblue{background:#44b6f1}.docs-colors .color.palette-red{background:#dd4b39}.docs-colors .color.palette-logo{background:#4d4d4f} \ No newline at end of file diff --git a/guide-css/index.html b/guide-css/index.html index 3856b8d..9309fb9 100644 --- a/guide-css/index.html +++ b/guide-css/index.html @@ -10,6 +10,8 @@ CSS编码规范 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -690,5 +778,11 @@
滚动条各块组成的伪元素
+ + diff --git a/guide-html/index.html b/guide-html/index.html index cbd6156..1809582 100644 --- a/guide-html/index.html +++ b/guide-html/index.html @@ -10,6 +10,8 @@ HTML编码规范 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -300,5 +388,11 @@
移动端
+ + diff --git a/guide-js/index.html b/guide-js/index.html index d85414d..d9a876e 100644 --- a/guide-js/index.html +++ b/guide-js/index.html @@ -10,6 +10,8 @@ JavaScript编码规范 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -231,13 +319,16 @@

命名函数表达式

typeof foo; // "undefined" f(); // "function" +

函数的内存管理

+

如果我们的代码中返回多个闭包的情况,如果没有手动设置null的话,内存不会被自动释放。

+

undefined与null的区别

在常见的强类型语言中,通常有一个表示“空”的值,比如NULL。但是在Javascript中,空(或者叫“无值”)有两种选择:undefinednull。在Javascript中除了这两个值其他都是对象。其他的基本类型都有其对象的包装类型。但是,typeof null返回的是object,这是一个一直未修复的bug。

-

相似之处

+

相似之处

是完全不可变的,没有属性和方法,也不能给其属性赋值。事实上,试图访问或定义一个属性将会引发一个类型错误(TypeError)。正如他们的名字暗示的那样,他们是完全无效的值。

-

不同之处

+

不同之处

一个重要的区别,服务于不同的目的和理由。区分这两个值,你可以认为undefined代表一个意想不到的没有值而null作为预期没有值的代表。

使用Object.prototype.toString.call()形式可以具体打印类型。

@@ -300,5 +391,11 @@
Object.prototype.toString调用过程
+ + diff --git a/guide-module/index.html b/guide-module/index.html index 82f49ca..b03fc64 100644 --- a/guide-module/index.html +++ b/guide-module/index.html @@ -10,6 +10,8 @@ 模块编码规范 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -257,5 +345,11 @@

与 DOM ready 的关系

+ + diff --git a/index.html b/index.html index 8a9b87d..1e923fa 100644 --- a/index.html +++ b/index.html @@ -10,6 +10,8 @@ 概述 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -101,5 +189,11 @@
命名规范
+ + diff --git a/pc-bgcolor/index.html b/pc-bgcolor/index.html new file mode 100644 index 0000000..c3350dc --- /dev/null +++ b/pc-bgcolor/index.html @@ -0,0 +1,194 @@ + + + + + + + + + + 背景色 | 前端开发文档 + + + + + + +
+
+ +
+ +
+
+
+
+
+ + +
+
+ + + + + 概述 + + + + + + FE小分队成员 + + + + 前端SVN介绍 + + + + + + HTML编码规范 + + + + + + + + CSS编码规范 + + + + + + JavaScript编码规范 + + + + 模块编码规范 + + +
+
+ + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + + + +
+
+ +
+
+
+

背景色 ( 命名空间:hb-bg )

+

和文本颜色类一样,使用任意背景色类就可以设置元素的背景。链接组件在鼠标经过时颜色会加深,就像文本颜色类一样。

+ +
+
+
+
+
+
<div class="hb-bg-default"></div>
+<div class="hb-bg-primary"></div>
+<div class="hb-bg-success"></div>
+<div class="hb-bg-warning"></div>
+<div class="hb-bg-danger"></div>
+ + +
+
+
+
+
+
+ + +
+ + + + diff --git a/pc-buttons/index.html b/pc-buttons/index.html new file mode 100644 index 0000000..280f612 --- /dev/null +++ b/pc-buttons/index.html @@ -0,0 +1,227 @@ + + + + + + + + + + 按钮 | 前端开发文档 + + + + + + +
+
+ +
+ +
+
+
+
+
+ + +
+
+ + + + + 概述 + + + + + + FE小分队成员 + + + + 前端SVN介绍 + + + + + + HTML编码规范 + + + + + + + + CSS编码规范 + + + + + + JavaScript编码规范 + + + + 模块编码规范 + + +
+
+ + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + + + +
+
+ +
+
+
+

按钮 ( 命名空间:hb-btn )

+
+

可作为按钮使用的标签或元素: <a><button><input> 元素添加按钮类(button class)即可使用 HB-UI 提供的样式。

+ +
+Link button
+
<button class="hb-btn hb-btn-default" type="button">Button button</button>
+<a class="hb-btn hb-btn-default" href="#" role="button">Link button</a>
+ +

按钮颜色

+ +
+ + + + + +
+
<button type="button" class="hb-btn hb-btn-default">(默认样式)default</button>
+<button type="button" class="hb-btn hb-btn-primary">(蓝色按钮)primary</button>
+<button type="button" class="hb-btn hb-btn-success">(绿色按钮)success</button>
+<button type="button" class="hb-btn hb-btn-warning">(橙色按钮)warning</button>
+<button type="button" class="hb-btn hb-btn-danger">(红色按钮)danger</button>
+<button type="button" class="hb-btn hb-btn-black">(黑色按钮)black</button>
+<button type="button" class="hb-btn hb-btn-link">link</button>
+ +

按钮尺寸

+

需要让按钮具有不同尺寸吗?使用 .hb-btn-lg.hb-btn-sm.hb-btn-xs 就可以获得不同尺寸的按钮。

+ +
+ +
+
<button type="button" class="hb-btn hb-btn-primary hb-btn-lg">(大按钮)btn-lg</button>
+<button type="button" class="hb-btn hb-btn-primary hb-btn-sm">(中等大小按钮)btn-lg</button>
+<button type="button" class="hb-btn hb-btn-primary hb-btn-xs">(小按钮)btn-lg</button>
+ +

块级按钮

+

通过给按钮添加 .hb-btn-block 类可以将其拉伸至父元素100%的宽度,而且按钮也变为了块级(block)元素。

+ +
+
<button type="button" class="hb-btn hb-btn-success hb-btn-block">块级按钮独占一行</button>
+ +

禁用状态

+ +
+
<button type="button" class="hb-btn hb-btn-success disabled">禁用按钮</button>
+ + +
+
+
+
+
+
+ + +
+ + + + diff --git a/pc-css/index.html b/pc-css/index.html new file mode 100644 index 0000000..169be0e --- /dev/null +++ b/pc-css/index.html @@ -0,0 +1,256 @@ + + + + + + + + + + 全局CSS | 前端开发文档 + + + + + + +
+
+ +
+ +
+
+
+
+
+ + +
+
+ + + + + 概述 + + + + + + FE小分队成员 + + + + 前端SVN介绍 + + + + + + HTML编码规范 + + + + + + + + CSS编码规范 + + + + + + JavaScript编码规范 + + + + 模块编码规范 + + +
+
+ + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + + + +
+
+ +
+
+
+

全局CSS

+
+ +

Normalize.css

+ +

为了增强跨浏览器表现的一致性,我们使用了 Normalize.css重置样式库。

+ +

布局容器

+

HBUI 需要为页面内容包裹一个 .hb-ui-container 容器。.hb-ui-container 类用于固定宽度。

+ +
+

请注意:由于我们的系统是按需加载模块的,为方便模块调用以及维护,模块自身所用到的css文件也是后加载的,为了防止模块的css文件没加载出来,导致页面的短暂排版错乱,临时出一个方案:在外围容器层上加上一个隐藏样式 .hb-fn-hidden,当初始化模块的时候,再移除 .hb-fn-hidden

+
+ +
+ ... +
+
<div class="hb-ui-container hb-fn-hidden">
+  ...
+</div>
+ +

排版

+ +

标题

+

HTML 中的所有标题标签,<h1> 到 <h6> 均可使用。另外,还提供了 .h1 到 .h6 类,为的是给内联(inline)属性的文本赋予标题的样式。

+ +

h1. 海边直播FE小分队

+

h2. 海边直播FE小分队

+

h3. 海边直播FE小分队

+

h4. 海边直播FE小分队

+
h5. 海边直播FE小分队
+
h6. 海边直播FE小分队
+
<h1>h1. 海边直播FE小分队</h1>
+<h2>h2. 海边直播FE小分队</h2>
+<h3>h3. 海边直播FE小分队</h3>
+<h4>h4. 海边直播FE小分队</h4>
+<h5>h5. 海边直播FE小分队</h5>
+<h6>h6. 海边直播FE小分队</h6>
+ +

在标题内还可以包含 .small 类的元素,可以用来标记副标题。

+ +

h1. 海边直播FE小分队PHP天团

+

h2. 海边直播FE小分队PHP天团

+

h3. 海边直播FE小分队PHP天团

+

h4. 海边直播FE小分队PHP天团

+
h5. 海边直播FE小分队PHP天团
+
h6. 海边直播FE小分队PHP天团
+
<h1>h1. 海边直播FE小分队<span class="small">PHP天团</span></h1>
+<h2>h2. 海边直播FE小分队<span class="small">PHP天团</span></h2>
+<h3>h3. 海边直播FE小分队<span class="small">PHP天团</span></h3>
+<h4>h4. 海边直播FE小分队<span class="small">PHP天团</span></h4>
+<h5>h5. 海边直播FE小分队<span class="small">PHP天团</span></h5>
+<h6>h6. 海边直播FE小分队<span class="small">PHP天团</span></h6>
+ +

对齐

+

通过文本对齐类,可以简单方便的将文字重新对齐。

+ +

文字左对齐

+

文字居中对齐

+

文字右对齐

+

文字两端对齐

+
<p class="text-left">文字左对齐</p>
+<p class="text-center">文字居中对齐</p>
+<p class="text-right">文字右对齐</p>
+<p class="text-justify">文字两端对齐</p>
+ +

改变大小写

+

通过这几个类可以改变文本的大小写(英文)。

+ +

Lowercased text. (全部小写)

+

Uppercased text. (全部大写)

+

Capitalized text. (首字母大写)

+
<p class="text-lowercase"> Lowercased text.    (全部小写)</p>
+<p class="text-uppercase"> Uppercased text.    (全部大写)</p>
+<p class="text-capitalize"> Capitalized text.  (首字母大写)</p>
+ + +
+
+
+
+
+
+ + +
+ + + + diff --git a/pc-helper/index.html b/pc-helper/index.html new file mode 100644 index 0000000..4c82e7e --- /dev/null +++ b/pc-helper/index.html @@ -0,0 +1,195 @@ + + + + + + + + + + 辅助类 | 前端开发文档 + + + + + + +
+
+ +
+ +
+
+
+
+
+ + +
+
+ + + + + 概述 + + + + + + FE小分队成员 + + + + 前端SVN介绍 + + + + + + HTML编码规范 + + + + + + + + CSS编码规范 + + + + + + JavaScript编码规范 + + + + 模块编码规范 + + +
+
+ + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + + + +
+
+ +
+
+
+

辅助类 ( 命名空间:hb-fn )

+
+ +

我们提供了一套常用的辅助类

+ +
    +
  • 左浮动:hb-fn-left
  • +
  • 右浮动:hb-fn-right
  • +
  • 禁止浮动:hb-fn-float-none
  • +
  • 清除浮动:hb-fn-clearfix
  • +
  • 隐藏文本:hb-fn-hide-text
  • +
  • 隐藏元素:hb-fn-hidden(占位隐藏)、hb-fn-hide(零位置隐藏)
  • +
  • 显示元素:hb-fn-visible、hb-fn-show`
  • +
  • 文本截断:hb-fn-break-line
  • +
+ +
+
+
+
+
+
+ + +
+ + + + diff --git a/pcui/index.html b/pc-iconfont/index.html similarity index 65% rename from pcui/index.html rename to pc-iconfont/index.html index 6fe1f03..8f862d8 100644 --- a/pcui/index.html +++ b/pc-iconfont/index.html @@ -7,9 +7,11 @@ - 海边PC站框架 | 前端开发文档 + 字体图标 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -58,7 +146,14 @@

前端开发文档

-

海边PC站框架

+

字体图标

+ +

更新于 3 个月 前

+

更新于 3 个月 前

+

2016-06-06 21:49:16 +0800

+ +

{} +字体图标

@@ -83,5 +178,11 @@

海边PC站框架

+ + diff --git a/pc-textcolor/index.html b/pc-textcolor/index.html new file mode 100644 index 0000000..6720247 --- /dev/null +++ b/pc-textcolor/index.html @@ -0,0 +1,194 @@ + + + + + + + + + + 文本颜色 | 前端开发文档 + + + + + + +
+
+ +
+ +
+
+
+
+
+ + +
+
+ + + + + 概述 + + + + + + FE小分队成员 + + + + 前端SVN介绍 + + + + + + HTML编码规范 + + + + + + + + CSS编码规范 + + + + + + JavaScript编码规范 + + + + 模块编码规范 + + +
+
+ + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + + + +
+
+ +
+
+
+

文本颜色 ( 命名空间:hb-bg )

+

通过颜色来展示意图,HBUI提供了一组工具类。这些类可以应用于链接,并且在鼠标经过时颜色可以还可以加深,就像默认的链接一样。

+ +

海边直播FE小分队

+

海边直播FE小分队

+

海边直播FE小分队

+

海边直播FE小分队

+

海边直播FE小分队

+
<p class="hb-text-default">海边直播FE小分队</p>
+<p class="hb-text-primary">海边直播FE小分队</p>
+<p class="hb-text-success">海边直播FE小分队</p>
+<p class="hb-text-warning">海边直播FE小分队</p>
+<p class="hb-text-danger">海边直播FE小分队</p>
+ + +
+
+
+
+
+
+ + +
+ + + + diff --git a/svn/index.html b/svn/index.html index 0e4672a..7642608 100644 --- a/svn/index.html +++ b/svn/index.html @@ -10,6 +10,8 @@ 前端SVN介绍 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -83,5 +171,11 @@

前端SVN介绍

+ + diff --git a/team/index.html b/team/index.html index 6c65947..a3f49a8 100644 --- a/team/index.html +++ b/team/index.html @@ -10,6 +10,8 @@ FE小分队成员 | 前端开发文档 + +
@@ -33,24 +35,110 @@

前端开发文档

+ + + +
+
+

海边PC站框架

+
+
+ + + 全局CSS + + + + + + + + 背景色 + + + + + + + + + + + 文本颜色 + + + + + + + + 按钮 + + + + + 辅助类 + + + + + + + + 字体图标 + + + + + + + +
@@ -95,5 +183,11 @@

Title

+ + From 8e98c8e19d91c47fa82a210344bad6e125e4df02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=AC=E7=9D=80=E6=83=85=E6=AD=8C=E6=B5=81=E6=B3=AA?= Date: Tue, 7 Jun 2016 16:48:11 +0800 Subject: [PATCH 04/22] Update 2016-06-07 16:48:05 --- assets/css/demo.css | 2 + assets/fonts/iconfont.eot | Bin 0 -> 11280 bytes assets/fonts/iconfont.svg | 144 +++++ assets/fonts/iconfont.ttf | Bin 0 -> 11112 bytes assets/fonts/iconfont.woff | Bin 0 -> 6400 bytes assets/fonts/{ => octicons}/README.md | 0 .../fonts/{ => octicons}/octicons-local.ttf | Bin assets/fonts/{ => octicons}/octicons.css | 0 assets/fonts/{ => octicons}/octicons.eot | Bin assets/fonts/{ => octicons}/octicons.less | 0 assets/fonts/{ => octicons}/octicons.scss | 0 assets/fonts/{ => octicons}/octicons.svg | 0 assets/fonts/{ => octicons}/octicons.ttf | Bin assets/fonts/{ => octicons}/octicons.woff | Bin .../{ => octicons}/sprockets-octicons.scss | 0 assets/{images => img}/favicon.png | Bin assets/img/loading-gray-2-48x48.gif | Bin 0 -> 3596 bytes assets/{images => img}/logo@2x.png | Bin assets/img/slider_1.jpg | Bin 0 -> 57738 bytes assets/img/slider_2.jpg | Bin 0 -> 38499 bytes assets/img/slider_3.jpg | Bin 0 -> 50466 bytes doc.min.js | 5 + docs.css => docs.min.css | 2 +- guide-css/index.html | 109 +++- guide-html/index.html | 109 +++- guide-js/index.html | 109 +++- guide-module/index.html | 109 +++- index.html | 109 +++- js/doc.js | 601 ++++++++++++++++++ js/plugins.js | 17 + less/fonts.less | 71 +++ less/main.less | 1 + pc-ajaxpagination/index.html | 357 +++++++++++ pc-bgcolor/index.html | 117 +++- pc-btngroups/index.html | 303 +++++++++ pc-buttons/index.html | 133 +++- pc-cookie/index.html | 313 +++++++++ pc-css/index.html | 109 +++- pc-dropdown/index.html | 383 +++++++++++ pc-hbbox/index.html | 549 ++++++++++++++++ pc-helper/index.html | 109 +++- pc-iconfont/index.html | 211 +++++- {svn => pc-label}/index.html | 134 +++- {team => pc-lazyload}/index.html | 148 ++++- pc-modal/index.html | 351 ++++++++++ pc-pagination/index.html | 321 ++++++++++ pc-slider/index.html | 305 +++++++++ pc-tab/index.html | 354 +++++++++++ pc-textcolor/index.html | 117 +++- plugins.min.js | 8 + 50 files changed, 5419 insertions(+), 291 deletions(-) create mode 100644 assets/css/demo.css create mode 100644 assets/fonts/iconfont.eot create mode 100644 assets/fonts/iconfont.svg create mode 100644 assets/fonts/iconfont.ttf create mode 100644 assets/fonts/iconfont.woff rename assets/fonts/{ => octicons}/README.md (100%) rename assets/fonts/{ => octicons}/octicons-local.ttf (100%) rename assets/fonts/{ => octicons}/octicons.css (100%) rename assets/fonts/{ => octicons}/octicons.eot (100%) rename assets/fonts/{ => octicons}/octicons.less (100%) rename assets/fonts/{ => octicons}/octicons.scss (100%) rename assets/fonts/{ => octicons}/octicons.svg (100%) rename assets/fonts/{ => octicons}/octicons.ttf (100%) rename assets/fonts/{ => octicons}/octicons.woff (100%) rename assets/fonts/{ => octicons}/sprockets-octicons.scss (100%) rename assets/{images => img}/favicon.png (100%) create mode 100644 assets/img/loading-gray-2-48x48.gif rename assets/{images => img}/logo@2x.png (100%) create mode 100644 assets/img/slider_1.jpg create mode 100644 assets/img/slider_2.jpg create mode 100644 assets/img/slider_3.jpg create mode 100644 doc.min.js rename docs.css => docs.min.css (90%) create mode 100644 js/doc.js create mode 100644 js/plugins.js create mode 100644 less/fonts.less create mode 100644 pc-ajaxpagination/index.html create mode 100644 pc-btngroups/index.html create mode 100644 pc-cookie/index.html create mode 100644 pc-dropdown/index.html create mode 100644 pc-hbbox/index.html rename {svn => pc-label}/index.html (52%) rename {team => pc-lazyload}/index.html (56%) create mode 100644 pc-modal/index.html create mode 100644 pc-pagination/index.html create mode 100644 pc-slider/index.html create mode 100644 pc-tab/index.html create mode 100644 plugins.min.js diff --git a/assets/css/demo.css b/assets/css/demo.css new file mode 100644 index 0000000..9c218df --- /dev/null +++ b/assets/css/demo.css @@ -0,0 +1,2 @@ +@charset "UTF-8"; +img,legend{border:0}*,a{-webkit-tap-highlight-color:rgba(0,0,0,0)}*,.hb-tooltip,.hbBox-image-label,.hbBox-wrapper{box-sizing:border-box}.hb-fn-break-line,.hb-text-overflow{text-overflow:ellipsis;overflow:hidden}.hb-btn,.hb-fn-break-line,.hb-text-nowrap,.hb-text-overflow{white-space:nowrap}.dropdown-menu,.hb-nav,.hb-slider-nav ol,dd,dl,dt,li,ol,ul{list-style:none}.hb-btn-group .dropdown-toggle:active,.hb-btn-group.open .dropdown-toggle,.open>a,a:active,a:hover{outline:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}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;color:#0894ec;text-decoration:none}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}.caret,.hb-btn,i.hb-icon{vertical-align:middle}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}.hb-tooltip,body{font-family:"Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;-moz-osx-font-smoothing:grayscale}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[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{padding:0}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-touch-callout:none}:after,:before{box-sizing:border-box}body{margin:0;font-size:14px;line-height:1.42857143;color:#677D8B;background-color:#fff;-webkit-font-smoothing:antialiased;-moz-font-feature-settings:"liga","kern"}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit;outline:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6,p{padding:0;margin:0}dd,dl,dt,li,ol,ul{margin:0;padding:0}.hb-center-block,.hb-container{display:block;margin-left:auto;margin-right:auto}a:active{color:#0566a2}.hb-container{*zoom:1;width:1000px}.hb-container:after,.hb-container:before{content:" ";display:table}.hb-container:after{clear:both}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.caret{display:inline-block;width:0;height:0;margin-left:5px;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.hb-fn-hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hb-fn-clearfix:after,.hb-fn-clearfix:before{content:" ";display:table}.hb-fn-clearfix:after{clear:both}.hb-fn-right{float:right!important}.hb-fn-left{float:left!important}.hb-fn-float-none{float:none!important}.hb-fn-hide{display:none!important}.hb-fn-show{display:block!important}.hb-fn-hidden{visibility:hidden}.hb-fn-visible{visibility:visible}.hb-fn-break-line{display:block}input[type=text],input[type=password],input[type=datetime],input[type=datetime-local],input[type=date],input[type=month],input[type=time],input[type=week],input[type=email],input[type=url],input[type=tel],input[type=color],input[type=number],input[type=search],textarea{box-shadow:none;height:30px;line-height:1.42857143;border:1px solid #ccc;border-radius:2px;background:#fff;color:#555;text-indent:2px}input[type=text]::-moz-placeholder,input[type=password]::-moz-placeholder,input[type=datetime]::-moz-placeholder,input[type=datetime-local]::-moz-placeholder,input[type=date]::-moz-placeholder,input[type=month]::-moz-placeholder,input[type=time]::-moz-placeholder,input[type=week]::-moz-placeholder,input[type=email]::-moz-placeholder,input[type=url]::-moz-placeholder,input[type=tel]::-moz-placeholder,input[type=color]::-moz-placeholder,input[type=number]::-moz-placeholder,input[type=search]::-moz-placeholder,textarea::-moz-placeholder{color:#999}input[type=text]:-ms-input-placeholder,input[type=password]:-ms-input-placeholder,input[type=datetime]:-ms-input-placeholder,input[type=datetime-local]:-ms-input-placeholder,input[type=date]:-ms-input-placeholder,input[type=month]:-ms-input-placeholder,input[type=time]:-ms-input-placeholder,input[type=week]:-ms-input-placeholder,input[type=email]:-ms-input-placeholder,input[type=url]:-ms-input-placeholder,input[type=tel]:-ms-input-placeholder,input[type=color]:-ms-input-placeholder,input[type=number]:-ms-input-placeholder,input[type=search]:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999}input[type=text]::-webkit-input-placeholder,input[type=password]::-webkit-input-placeholder,input[type=datetime]::-webkit-input-placeholder,input[type=datetime-local]::-webkit-input-placeholder,input[type=date]::-webkit-input-placeholder,input[type=month]::-webkit-input-placeholder,input[type=time]::-webkit-input-placeholder,input[type=week]::-webkit-input-placeholder,input[type=email]::-webkit-input-placeholder,input[type=url]::-webkit-input-placeholder,input[type=tel]::-webkit-input-placeholder,input[type=color]::-webkit-input-placeholder,input[type=number]::-webkit-input-placeholder,input[type=search]::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999}input[type=text].focus,input[type=text]:focus,input[type=password].focus,input[type=password]:focus,input[type=datetime].focus,input[type=datetime]:focus,input[type=datetime-local].focus,input[type=datetime-local]:focus,input[type=date].focus,input[type=date]:focus,input[type=month].focus,input[type=month]:focus,input[type=time].focus,input[type=time]:focus,input[type=week].focus,input[type=week]:focus,input[type=email].focus,input[type=email]:focus,input[type=url].focus,input[type=url]:focus,input[type=tel].focus,input[type=tel]:focus,input[type=color].focus,input[type=color]:focus,input[type=number].focus,input[type=number]:focus,input[type=search].focus,input[type=search]:focus,textarea.focus,textarea:focus{outline:0}input[type=text].disabled,input[type=text].disabled:hover,input[type=text][disabled],input[type=text][readonly],input[type=password].disabled,input[type=password].disabled:hover,input[type=password][disabled],input[type=password][readonly],input[type=datetime].disabled,input[type=datetime].disabled:hover,input[type=datetime][disabled],input[type=datetime][readonly],input[type=datetime-local].disabled,input[type=datetime-local].disabled:hover,input[type=datetime-local][disabled],input[type=datetime-local][readonly],input[type=date].disabled,input[type=date].disabled:hover,input[type=date][disabled],input[type=date][readonly],input[type=month].disabled,input[type=month].disabled:hover,input[type=month][disabled],input[type=month][readonly],input[type=time].disabled,input[type=time].disabled:hover,input[type=time][disabled],input[type=time][readonly],input[type=week].disabled,input[type=week].disabled:hover,input[type=week][disabled],input[type=week][readonly],input[type=email].disabled,input[type=email].disabled:hover,input[type=email][disabled],input[type=email][readonly],input[type=url].disabled,input[type=url].disabled:hover,input[type=url][disabled],input[type=url][readonly],input[type=tel].disabled,input[type=tel].disabled:hover,input[type=tel][disabled],input[type=tel][readonly],input[type=color].disabled,input[type=color].disabled:hover,input[type=color][disabled],input[type=color][readonly],input[type=number].disabled,input[type=number].disabled:hover,input[type=number][disabled],input[type=number][readonly],input[type=search].disabled,input[type=search].disabled:hover,input[type=search][disabled],input[type=search][readonly],textarea.disabled,textarea.disabled:hover,textarea[disabled],textarea[readonly]{background:#eee;cursor:not-allowed;color:#777}.hb-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.hb-btn-group>.hb-btn-group,.hb-btn-toolbar .hb-btn,.hb-btn-toolbar .hb-btn-group,.hb-btn-toolbar .hb-input-group{float:left}.hb-close:focus,.hb-close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.hb-close{padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.hb-btn,.hb-btn-black.active,.hb-btn-black:active,.hb-btn-danger.active,.hb-btn-danger:active,.hb-btn-default.active,.hb-btn-default:active,.hb-btn-primary.active,.hb-btn-primary:active,.hb-btn-success.active,.hb-btn-success:active,.hb-btn-warning.active,.hb-btn-warning:active,.hb-navbar-toggle,.open>.dropdown-toggle.hb-btn-black,.open>.dropdown-toggle.hb-btn-danger,.open>.dropdown-toggle.hb-btn-default,.open>.dropdown-toggle.hb-btn-primary,.open>.dropdown-toggle.hb-btn-success,.open>.dropdown-toggle.hb-btn-warning{background-image:none}i.hb-icon{display:inline-block;background-size:100% auto;background-position:center;background-repeat:no-repeat;font-style:normal;position:relative}[class^=hb-icon-]{margin:20px}[class^=hb-icon-]:before{color:green;font-size:30px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}.hb-text-left{text-align:left}.hb-text-right{text-align:right}.hb-text-center{text-align:center}.hb-text-justify{text-align:justify}.hb-text-lowercase{text-transform:lowercase}.hb-text-uppercase{text-transform:uppercase}.hb-text-capitalize{text-transform:capitalize}.hb-text-overflow{display:block}.hb-text-default{color:#666}a.hb-text-default:focus,a.hb-text-default:hover{color:#4d4d4d}.hb-text-primary{color:#31708f}a.hb-text-primary:focus,a.hb-text-primary:hover{color:#245269}.hb-text-success{color:#3c763d}a.hb-text-success:focus,a.hb-text-success:hover{color:#2b542c}.hb-text-warning{color:#8a6d3b}a.hb-text-warning:focus,a.hb-text-warning:hover{color:#66512c}.hb-text-danger{color:#a94442}a.hb-text-danger:focus,a.hb-text-danger:hover{color:#843534}.hb-bg-default{color:#fff;background-color:#fafafa}a.hb-bg-default:focus,a.hb-bg-default:hover{background-color:#ededed}.hb-bg-primary{color:#fff;background-color:#d9edf7}a.hb-bg-primary:focus,a.hb-bg-primary:hover{background-color:#c4e3f3}.hb-bg-success{color:#fff;background-color:#dff0d8}a.hb-bg-success:focus,a.hb-bg-success:hover{background-color:#d0e9c6}.hb-bg-warning{color:#fff;background-color:#fcf8e3}a.hb-bg-warning:focus,a.hb-bg-warning:hover{background-color:#faf2cc}.hb-bg-danger{color:#fff;background-color:#f2dede}a.hb-bg-danger:focus,a.hb-bg-danger:hover{background-color:#ebcccc}.hb-alert{padding:15px;margin-bottom:20px;border:1px solid #e8e8e8;border-radius:2px;background-color:#fafafa;color:#666}.hb-alert>p,.hb-alert>ul,.hb-btn,.hb-nav{margin-bottom:0}.hb-alert hr,.hb-alert-default hr{border-top-color:#dbdbdb}.hb-alert .alert-link{color:#4d4d4d}.hb-alert h4{margin-top:0;color:inherit}.hb-alert .hb-alert-link{font-weight:700}.hb-alert>p+p{margin-top:5px}.hb-alert-dismissable,.hb-alert-dismissible{padding-right:35px}.hb-alert-dismissable .hb-close,.hb-alert-dismissible .hb-close{position:relative;top:-2px;right:-21px;color:inherit}.hb-alert-default{background-color:#fafafa;border-color:#e8e8e8;color:#666}.hb-alert-default .alert-link{color:#4d4d4d}.hb-alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.hb-alert-success hr{border-top-color:#c9e2b3}.hb-alert-success .alert-link{color:#2b542c}.hb-alert-primary{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.hb-alert-primary hr{border-top-color:#a6e1ec}.hb-alert-primary .alert-link{color:#245269}.hb-alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.hb-alert-warning hr{border-top-color:#f7e1b5}.hb-alert-warning .alert-link{color:#66512c}.hb-alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.hb-alert-danger hr{border-top-color:#e4b9c0}.hb-alert-danger .alert-link{color:#843534}.hb-btn{display:inline-block;font-weight:400;text-align:center;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;border:1px solid transparent;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:2px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:.3s}.hb-btn.active.focus,.hb-btn.active:focus,.hb-btn.focus,.hb-btn:active.focus,.hb-btn:active:focus,.hb-btn:focus{color:#666;text-decoration:none}.hb-btn.focus,.hb-btn:focus,.hb-btn:hover{color:#666;text-decoration:none}.hb-btn.active,.hb-btn:active{color:#666;text-decoration:none;background-image:none;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.hb-btn.disabled,.hb-btn.disabled:hover,.hb-btn[disabled],fieldset[disabled] .hb-btn{cursor:not-allowed;color:#eee;opacity:.5;filter:alpha(opacity=50);box-shadow:none}a.hb-btn.disabled,fieldset[disabled] a.hb-btn{pointer-events:none;color:#eee}.hb-btn .dropdown-menu{margin-top:-1px}.hb-btn-default{color:#666;background-color:#fafafa;border-color:#e1e1e1}.hb-btn-default.focus,.hb-btn-default:focus{color:#666;background-color:#ededed;border-color:#d4d4d4}.hb-btn-default.active,.hb-btn-default:active,.hb-btn-default:hover,.open>.dropdown-toggle.hb-btn-default{color:#666;background-color:#ededed;border-color:#d4d4d4}.hb-btn-default.active.focus,.hb-btn-default.active:focus,.hb-btn-default.active:hover,.hb-btn-default:active.focus,.hb-btn-default:active:focus,.hb-btn-default:active:hover,.open>.dropdown-toggle.hb-btn-default.focus,.open>.dropdown-toggle.hb-btn-default:focus,.open>.dropdown-toggle.hb-btn-default:hover{color:#666;background-color:#ededed;border-color:#d4d4d4}.hb-btn-default.disabled.focus,.hb-btn-default.disabled:focus,.hb-btn-default.disabled:hover,.hb-btn-default[disabled].focus,.hb-btn-default[disabled]:focus,.hb-btn-default[disabled]:hover,fieldset[disabled] .hb-btn-default.focus,fieldset[disabled] .hb-btn-default:focus,fieldset[disabled] .hb-btn-default:hover{background-color:#fafafa;border-color:#e1e1e1}.hb-btn-default .badge{color:#fafafa;background-color:#666}.hb-btn-default.disabled,.hb-btn-default.disabled:hover{color:#777}.hb-btn-primary{color:#fff;background-color:#0894ec;border-color:#088ee2}.hb-btn-primary.focus,.hb-btn-primary:focus{color:#fff;background-color:#0785d3;border-color:#077ec9}.hb-btn-primary.active,.hb-btn-primary:active,.hb-btn-primary:hover,.open>.dropdown-toggle.hb-btn-primary{color:#fff;background-color:#0785d3;border-color:#077ec9}.hb-btn-primary.active.focus,.hb-btn-primary.active:focus,.hb-btn-primary.active:hover,.hb-btn-primary:active.focus,.hb-btn-primary:active:focus,.hb-btn-primary:active:hover,.open>.dropdown-toggle.hb-btn-primary.focus,.open>.dropdown-toggle.hb-btn-primary:focus,.open>.dropdown-toggle.hb-btn-primary:hover{color:#fff;background-color:#0785d3;border-color:#077ec9}.hb-btn-primary.disabled.focus,.hb-btn-primary.disabled:focus,.hb-btn-primary.disabled:hover,.hb-btn-primary[disabled].focus,.hb-btn-primary[disabled]:focus,.hb-btn-primary[disabled]:hover,fieldset[disabled] .hb-btn-primary.focus,fieldset[disabled] .hb-btn-primary:focus,fieldset[disabled] .hb-btn-primary:hover{background-color:#0894ec;border-color:#088ee2}.hb-btn-primary .badge{color:#0894ec;background-color:#fff}.hb-btn-success{color:#fff;background-color:#72C47C;border-color:#6bc175}.hb-btn-success.focus,.hb-btn-success:focus{color:#fff;background-color:#60bc6b;border-color:#59b965}.hb-btn-success.active,.hb-btn-success:active,.hb-btn-success:hover,.open>.dropdown-toggle.hb-btn-success{color:#fff;background-color:#60bc6b;border-color:#59b965}.hb-btn-success.active.focus,.hb-btn-success.active:focus,.hb-btn-success.active:hover,.hb-btn-success:active.focus,.hb-btn-success:active:focus,.hb-btn-success:active:hover,.open>.dropdown-toggle.hb-btn-success.focus,.open>.dropdown-toggle.hb-btn-success:focus,.open>.dropdown-toggle.hb-btn-success:hover{color:#fff;background-color:#60bc6b;border-color:#59b965}.hb-btn-success.disabled.focus,.hb-btn-success.disabled:focus,.hb-btn-success.disabled:hover,.hb-btn-success[disabled].focus,.hb-btn-success[disabled]:focus,.hb-btn-success[disabled]:hover,fieldset[disabled] .hb-btn-success.focus,fieldset[disabled] .hb-btn-success:focus,fieldset[disabled] .hb-btn-success:hover{background-color:#72C47C;border-color:#6bc175}.hb-btn-success .badge{color:#72C47C;background-color:#fff}.hb-btn-warning{color:#fff;background-color:#f60;border-color:#f56200}.hb-btn-warning.focus,.hb-btn-warning:focus{color:#fff;background-color:#e65c00;border-color:#db5800}.hb-btn-warning.active,.hb-btn-warning:active,.hb-btn-warning:hover,.open>.dropdown-toggle.hb-btn-warning{color:#fff;background-color:#e65c00;border-color:#db5800}.hb-btn-warning.active.focus,.hb-btn-warning.active:focus,.hb-btn-warning.active:hover,.hb-btn-warning:active.focus,.hb-btn-warning:active:focus,.hb-btn-warning:active:hover,.open>.dropdown-toggle.hb-btn-warning.focus,.open>.dropdown-toggle.hb-btn-warning:focus,.open>.dropdown-toggle.hb-btn-warning:hover{color:#fff;background-color:#e65c00;border-color:#db5800}.hb-btn-warning.disabled.focus,.hb-btn-warning.disabled:focus,.hb-btn-warning.disabled:hover,.hb-btn-warning[disabled].focus,.hb-btn-warning[disabled]:focus,.hb-btn-warning[disabled]:hover,fieldset[disabled] .hb-btn-warning.focus,fieldset[disabled] .hb-btn-warning:focus,fieldset[disabled] .hb-btn-warning:hover{background-color:#f60;border-color:#f56200}.hb-btn-warning .badge{color:#f60;background-color:#fff}.hb-btn-danger{color:#fff;background-color:#f6383a;border-color:#f62e30}.hb-btn-danger.focus,.hb-btn-danger:focus{color:#fff;background-color:#f52022;border-color:#f41618}.hb-btn-danger.active,.hb-btn-danger:active,.hb-btn-danger:hover,.open>.dropdown-toggle.hb-btn-danger{color:#fff;background-color:#f52022;border-color:#f41618}.hb-btn-danger.active.focus,.hb-btn-danger.active:focus,.hb-btn-danger.active:hover,.hb-btn-danger:active.focus,.hb-btn-danger:active:focus,.hb-btn-danger:active:hover,.open>.dropdown-toggle.hb-btn-danger.focus,.open>.dropdown-toggle.hb-btn-danger:focus,.open>.dropdown-toggle.hb-btn-danger:hover{color:#fff;background-color:#f52022;border-color:#f41618}.hb-btn-danger.disabled.focus,.hb-btn-danger.disabled:focus,.hb-btn-danger.disabled:hover,.hb-btn-danger[disabled].focus,.hb-btn-danger[disabled]:focus,.hb-btn-danger[disabled]:hover,fieldset[disabled] .hb-btn-danger.focus,fieldset[disabled] .hb-btn-danger:focus,fieldset[disabled] .hb-btn-danger:hover{background-color:#f6383a;border-color:#f62e30}.hb-btn-danger .badge{color:#f6383a;background-color:#fff}.hb-btn-black{color:#fff;background-color:#34495E;border-color:#304457}.hb-btn-black.focus,.hb-btn-black:focus{color:#fff;background-color:#2b3c4e;border-color:#273747}.hb-btn-black.active,.hb-btn-black:active,.hb-btn-black:hover,.open>.dropdown-toggle.hb-btn-black{color:#fff;background-color:#2b3c4e;border-color:#273747}.hb-btn-black.active.focus,.hb-btn-black.active:focus,.hb-btn-black.active:hover,.hb-btn-black:active.focus,.hb-btn-black:active:focus,.hb-btn-black:active:hover,.open>.dropdown-toggle.hb-btn-black.focus,.open>.dropdown-toggle.hb-btn-black:focus,.open>.dropdown-toggle.hb-btn-black:hover{color:#fff;background-color:#2b3c4e;border-color:#273747}.hb-btn-black.disabled.focus,.hb-btn-black.disabled:focus,.hb-btn-black.disabled:hover,.hb-btn-black[disabled].focus,.hb-btn-black[disabled]:focus,.hb-btn-black[disabled]:hover,fieldset[disabled] .hb-btn-black.focus,fieldset[disabled] .hb-btn-black:focus,fieldset[disabled] .hb-btn-black:hover{background-color:#34495E;border-color:#304457}.hb-btn-black .badge{color:#34495E;background-color:#fff}.hb-btn-link{color:#0894ec;font-weight:400;border-radius:0}.hb-btn-link,.hb-btn-link.active,.hb-btn-link:active,.hb-btn-link[disabled],fieldset[disabled] .hb-btn-link{background-color:transparent;box-shadow:none}.hb-btn-link,.hb-btn-link:active,.hb-btn-link:focus,.hb-btn-link:hover{border-color:transparent}.hb-btn-link:focus,.hb-btn-link:hover{color:#0566a2;text-decoration:none;background-color:transparent}.hb-btn-link[disabled]:focus,.hb-btn-link[disabled]:hover,fieldset[disabled] .hb-btn-link:focus,fieldset[disabled] .hb-btn-link:hover{color:#eee;text-decoration:none}.hb-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.hb-btn-sm,.hb-btn-xs{border-radius:3px}.hb-btn-sm{padding:5px 10px;font-size:14px;line-height:1.5}.hb-btn-group-xs>.hb-btn,.hb-btn-xs{padding:3px 5px;font-size:12px;line-height:1.5}.hb-btn-block{display:block;width:100%}.hb-btn-block+.hb-btn-block{margin-top:5px}input[type=button].hb-btn-block,input[type=reset].hb-btn-block,input[type=submit].hb-btn-block{width:100%}.hb-btn-group,.hb-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.hb-btn-group-vertical>.hb-btn,.hb-btn-group>.hb-btn{position:relative;float:left}.hb-btn-group-vertical>.hb-btn.active,.hb-btn-group-vertical>.hb-btn:active,.hb-btn-group-vertical>.hb-btn:focus,.hb-btn-group-vertical>.hb-btn:hover,.hb-btn-group>.hb-btn.active,.hb-btn-group>.hb-btn:active,.hb-btn-group>.hb-btn:focus,.hb-btn-group>.hb-btn:hover{z-index:2}.hb-btn-group .hb-btn+.hb-btn,.hb-btn-group .hb-btn+.hb-btn-group,.hb-btn-group .hb-btn-group+.hb-btn,.hb-btn-group .hb-btn-group+.hb-btn-group{margin-left:-1px}.hb-btn-toolbar{margin-left:-5px}.hb-btn-toolbar>.hb-btn,.hb-btn-toolbar>.hb-btn-group,.hb-btn-toolbar>.hb-input-group{margin-left:5px}.hb-btn-group>.hb-btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.hb-btn-group>.hb-btn:first-child{margin-left:0}.hb-btn-group>.hb-btn:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.hb-btn-group>.dropdown-toggle:not(:first-child),.hb-btn-group>.hb-btn:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.hb-btn-group>.hb-btn-group:not(:first-child):not(:last-child)>.hb-btn{border-radius:0}.hb-btn-group>.hb-btn-group:first-child:not(:last-child)>.dropdown-toggle,.hb-btn-group>.hb-btn-group:first-child:not(:last-child)>.hb-btn:last-child{border-bottom-right-radius:0;border-top-right-radius:0}.hb-btn-group>.hb-btn-group:last-child:not(:first-child)>.hb-btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.hb-btn-group-xs>.hb-btn{border-radius:3px}.hb-btn-group-sm>.hb-btn{padding:5px 10px;font-size:14px;line-height:1.5;border-radius:3px}.hb-btn-group-lg>.hb-btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.hb-btn-group>.hb-btn+.dropdown-toggle{padding-left:8px;padding-right:8px}.hb-btn-group>.hb-btn-lg+.dropdown-toggle{padding-left:12px;padding-right:12px}.hb-btn-group.open .dropdown-toggle{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.hb-btn-group.open .dropdown-toggle.hb-btn-link{box-shadow:none}.hb-btn .caret{margin-left:5px}.hb-btn-lg .caret{border-width:5px 5px 0}.dropup .hb-btn-lg .caret{border-width:0 5px 5px}.hb-btn-group-vertical>.hb-btn,.hb-btn-group-vertical>.hb-btn-group,.hb-btn-group-vertical>.hb-btn-group>.hb-btn{display:block;float:none;width:100%;max-width:100%}.hb-btn-group-vertical>.hb-btn-group>.hb-btn{float:none}.hb-btn-group-vertical>.hb-btn+.hb-btn,.hb-btn-group-vertical>.hb-btn+.hb-btn-group,.hb-btn-group-vertical>.hb-btn-group+.hb-btn,.hb-btn-group-vertical>.hb-btn-group+.hb-btn-group{margin-top:-1px;margin-left:0}.hb-btn-group-vertical>.hb-btn:not(:first-child):not(:last-child){border-radius:0}.hb-btn-group-vertical>.hb-btn:first-child:not(:last-child){border-radius:2px 2px 0 0}.hb-btn-group-vertical>.hb-btn:last-child:not(:first-child){border-radius:0 0 2px 2px}.hb-btn-group-vertical>.hb-btn-group:not(:first-child):not(:last-child)>.hb-btn{border-radius:0}.hb-btn-group-vertical>.hb-btn-group:first-child:not(:last-child)>.dropdown-toggle,.hb-btn-group-vertical>.hb-btn-group:first-child:not(:last-child)>.hb-btn:last-child{border-bottom-right-radius:0;border-bottom-left-radius:0}.hb-btn-group-vertical>.hb-btn-group:last-child:not(:first-child)>.hb-btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.hb-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.hb-btn-group-justified>.hb-btn,.hb-btn-group-justified>.hb-btn-group{float:none;display:table-cell;width:1%}.hb-btn-group-justified>.hb-btn-group .hb-btn,.hb-nav-justified{width:100%}.hb-btn-group-justified>.hb-btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.hb-btn input[type=checkbox],[data-toggle=buttons]>.hb-btn input[type=radio],[data-toggle=buttons]>.hb-btn-group>.hb-btn input[type=checkbox],[data-toggle=buttons]>.hb-btn-group>.hb-btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.hb-nav{padding-left:0}.hb-nav:after,.hb-nav:before{content:" ";display:table}.hb-nav>li,.hb-nav>li>a{display:block;position:relative}.hb-nav:after{clear:both}.hb-nav>li>a{padding:10px 15px}.hb-nav>li>a:focus,.hb-nav>li>a:hover{text-decoration:none;background-color:#eee}.hb-nav>li.disabled>a{color:#777}.hb-nav>li.disabled>a:focus,.hb-nav>li.disabled>a:hover{color:#777;text-decoration:none;background-color:transparent;cursor:not-allowed}.hb-nav .open>a,.hb-nav .open>a:focus,.hb-nav .open>a:hover{background-color:#eee;border-color:#0894ec}.hb-nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.hb-nav>li>a>img{max-width:none}.hb-nav-tabs{border-bottom:1px solid #ddd}.hb-nav-tabs>li{float:left;margin-bottom:-1px}.hb-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:2px 2px 0 0}.hb-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.hb-nav-tabs>li.active>a,.hb-nav-tabs>li.active>a:focus,.hb-nav-tabs>li.active>a:hover{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.hb-nav-pills>li{float:left}.hb-nav-justified>li,.hb-nav-stacked>li{float:none}.hb-nav-pills>li>a{border-radius:2px}.hb-nav-pills>li+li{margin-left:2px}.hb-nav-pills>li.active>a,.hb-nav-pills>li.active>a:focus,.hb-nav-pills>li.active>a:hover{color:#fff;background-color:#0894ec}.hb-nav-stacked>li+li{margin-top:2px;margin-left:0}.hb-nav-justified>li>a{text-align:center;margin-bottom:5px}.hb-nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}.hb-nav-tabs-justified{border-bottom:0}.hb-nav-tabs-justified>li>a{margin-right:0;border-radius:2px}.hb-nav-tabs-justified>.active>a,.hb-nav-tabs-justified>.active>a:focus,.hb-nav-tabs-justified>.active>a:hover{border:1px solid #ddd}.hb-tab-content>.tab-pane{display:none}.hb-navbar-brand>img,.hb-tab-content>.active{display:block}.hb-nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.hb-navbar{position:relative;min-height:30px;border:1px solid transparent}.hb-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,.1);-webkit-overflow-scrolling:touch}.hb-navbar-collapse.in{overflow-y:auto}.hb-navbar-fixed-bottom .hb-navbar-collapse,.hb-navbar-fixed-top .hb-navbar-collapse{max-height:340px}.hb-navbar-static-top{z-index:1000;border-width:0 0 1px}.hb-navbar-fixed-bottom,.hb-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}.hb-navbar-fixed-top{top:0;border-width:0 0 1px}.hb-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.hb-navbar-brand{float:left;padding:5px 15px;font-size:18px;line-height:20px;height:30px}.hb-navbar-brand:focus,.hb-navbar-brand:hover{text-decoration:none}.hb-navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:-2px;margin-bottom:-2px;background-color:transparent;border:1px solid transparent;border-radius:2px}.dropdown-menu,.hb-navbar-nav>li,.hb-slider-wrap.hb-slider-carousel>li{float:left}.hb-navbar-toggle:focus{outline:0}.hb-navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.hb-navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.hb-navbar-nav{padding:0;margin:0}.hb-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}.hb-navbar-form{padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);margin:-2px -15px}.hb-navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.hb-navbar-fixed-bottom .hb-navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:2px 2px 0 0}.hb-navbar-btn{margin-top:-2px;margin-bottom:-2px}.hb-navbar-btn.btn-sm{margin-top:0;margin-bottom:0}.hb-navbar-btn.btn-xs{margin-top:4px;margin-bottom:4px}.hb-navbar-text{margin-top:5px;margin-bottom:5px}.hb-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.hb-navbar-default .navbar-brand{color:#777}.hb-navbar-default .navbar-brand:focus,.hb-navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.hb-navbar-default .hb-navbar-nav>li>a,.hb-navbar-default .hb-navbar-text{color:#777}.hb-navbar-default .hb-navbar-nav>li>a:focus,.hb-navbar-default .hb-navbar-nav>li>a:hover{color:#333;background-color:transparent}.hb-navbar-default .hb-navbar-nav>.active>a,.hb-navbar-default .hb-navbar-nav>.active>a:focus,.hb-navbar-default .hb-navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.hb-navbar-default .hb-navbar-nav>.disabled>a,.hb-navbar-default .hb-navbar-nav>.disabled>a:focus,.hb-navbar-default .hb-navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.hb-navbar-default .hb-navbar-toggle{border-color:#ddd}.hb-navbar-default .hb-navbar-toggle:focus,.hb-navbar-default .hb-navbar-toggle:hover{background-color:#ddd}.hb-navbar-default .hb-navbar-toggle .icon-bar{background-color:#888}.hb-navbar-default .hb-navbar-collapse,.hb-navbar-default .hb-navbar-form{border-color:#e7e7e7}.hb-navbar-default .hb-navbar-nav>.open>a,.hb-navbar-default .hb-navbar-nav>.open>a:focus,.hb-navbar-default .hb-navbar-nav>.open>a:hover{background-color:#e7e7e7;color:#555}.hb-navbar-default .hb-navbar-link{color:#777}.hb-navbar-default .hb-navbar-link:hover{color:#333}.hb-navbar-default .hb-btn-link{color:#777}.hb-navbar-default .hb-btn-link:focus,.hb-navbar-default .hb-btn-link:hover{color:#333}.hb-navbar-default .hb-btn-link[disabled]:focus,.hb-navbar-default .hb-btn-link[disabled]:hover,fieldset[disabled] .hb-navbar-default .hb-btn-link:focus,fieldset[disabled] .hb-navbar-default .hb-btn-link:hover{color:#ccc}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:2px;box-shadow:0 6px 12px rgba(0,0,0,.175);background-clip:padding-box}.dropdown-menu-right,.dropdown-menu.pull-right{left:auto;right:0}.dropdown-header,.dropdown-menu>li>a{padding:3px 20px;white-space:nowrap;line-height:1.42857143;display:block}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{clear:both;font-weight:400;color:#333}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;outline:0;background-color:#0894ec}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);cursor:not-allowed}.open>.dropdown-menu{display:block}.dropdown-menu-left{left:0;right:auto}.dropdown-header{font-size:12px;color:#777}.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}.fade{opacity:0;transition:opacity .15s linear}.fade.in{opacity:1}.hb-tooltip{position:absolute;z-index:1070;display:block;font-family:"Lantinghei SC","Open Sans",Arial,"Hiragino Sans GB","Microsoft YaHei",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;font-style:normal;font-weight:400;letter-spacing:normal;line-break:auto;line-height:1.42857143;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;-webkit-font-smoothing:antialiased;font-size:14px;opacity:0;filter:alpha(opacity=0)}.hb-tooltip.in{opacity:1;filter:alpha(opacity=100)}.hb-tooltip.top{margin-top:-3px;padding:5px 0}.hb-tooltip.right{margin-left:3px;padding:0 5px}.hb-tooltip.bottom{margin-top:3px;padding:5px 0}.hb-tooltip.left{margin-left:-3px;padding:0 5px}.hb-tooltip-inner,.hbBox-content{padding:8px 10px;transition:opacity .15s}.hb-tooltip-inner{max-width:220px;color:#666;text-align:left;background-color:#fff;border-radius:3px;box-shadow:0 0 2px rgba(0,39,59,.2)}.hb-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.hb-tooltip.top .hb-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#fff}.hb-tooltip.top-left .hb-tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#fff}.hb-tooltip.top-right .hb-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#fff}.hb-tooltip.right .hb-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#fff}.hb-tooltip.left .hb-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#fff}.hb-tooltip.bottom .hb-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#fff}.hb-tooltip.bottom-left .hb-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#fff}.hb-tooltip.bottom-right .hb-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#fff}.hb-tooltip.black .hb-tooltip-inner{background-color:#171d1f;color:#A3A8AB;box-shadow:0 0 0 transparent}.hb-tooltip.black.top .hb-tooltip-arrow,.hb-tooltip.black.top-left .hb-tooltip-arrow,.hb-tooltip.black.top-right .hb-tooltip-arrow{border-top-color:#171d1f}.hb-tooltip.black.right .hb-tooltip-arrow{border-right-color:#171d1f}.hb-tooltip.black.left .hb-tooltip-arrow{border-left-color:#171d1f}.hb-tooltip.black.bottom .hb-tooltip-arrow,.hb-tooltip.black.bottom-left .hb-tooltip-arrow,.hb-tooltip.black.bottom-right .hb-tooltip-arrow{border-bottom-color:#171d1f}.hb-tooltip.green .hb-tooltip-inner{background-color:green;color:#fff;box-shadow:0 0 0 transparent}.hb-tooltip.green.top .hb-tooltip-arrow,.hb-tooltip.green.top-left .hb-tooltip-arrow,.hb-tooltip.green.top-right .hb-tooltip-arrow{border-top-color:green}.hb-tooltip.green.right .hb-tooltip-arrow{border-right-color:green}.hb-tooltip.green.left .hb-tooltip-arrow{border-left-color:green}.hb-tooltip.green.bottom .hb-tooltip-arrow,.hb-tooltip.green.bottom-left .hb-tooltip-arrow,.hb-tooltip.green.bottom-right .hb-tooltip-arrow{border-bottom-color:green}.hbBox-wrapper{text-align:left}.hbBox-container,.hbBox-content,.hbBox-title{position:relative;word-break:break-word}.hbBox-container{background:0 0}.hbBox-content{background:#fff;overflow:auto}.hbBox-Modal .hbBox-content,.hbBox-Modal .hbBox-title{color:#1a1a1a}.hbBox-Mouse .hbBox-container,.hbBox-Tooltip .hbBox-container{border-radius:4px;box-shadow:0 0 5px rgba(0,0,0,.3)}.hbBox-Mouse .hbBox-title,.hbBox-Tooltip .hbBox-title{padding:8px 10px 0;font-weight:700}.hbBox-hasTitle.hbBox-Mouse .hbBox-content,.hbBox-hasTitle.hbBox-Tooltip .hbBox-content{padding-top:5px}.hbBox-pointer{position:absolute;overflow:hidden}.hbBox-pointer-top{top:0}.hbBox-pointer-bottom{bottom:0}.hbBox-pointer-left{left:0}.hbBox-pointer-right{right:0}.hbBox-pointer-bottom,.hbBox-pointer-top{width:30px;height:12px}.hbBox-pointer-left,.hbBox-pointer-right{width:12px;height:30px}.hbBox-pointer:after{content:'';width:20px;height:20px;position:absolute;background:#fff;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.hbBox-pointer-top:after{left:5px;top:6px;box-shadow:-1px -1px 4px rgba(0,0,0,.2)}.hbBox-pointer-right:after{top:5px;right:6px;box-shadow:1px -1px 4px rgba(0,0,0,.2)}.hbBox-pointer-bottom:after{left:5px;bottom:6px;box-shadow:1px 1px 4px rgba(0,0,0,.2)}.hbBox-pointer-left:after{top:5px;left:6px;box-shadow:-1px 1px 4px rgba(0,0,0,.2)}.hbBox-Confirm .hbBox-container,.hbBox-Iframe .hbBox-container,.hbBox-Modal .hbBox-container{border-radius:4px;box-shadow:0 3px 15px rgba(0,0,0,.4),0 0 5px rgba(0,0,0,.4)}.hbBox-Iframe .hbBox-container{background:0 0}.hbBox-Confirm .hbBox-title,.hbBox-Iframe .hbBox-title,.hbBox-Modal .hbBox-title{border-radius:4px 4px 0 0;padding:10px 15px;background:#f4f5f6;border-bottom:1px solid #ddd;text-shadow:0 1px 1px #fff;font-size:14px}.hbBox-Confirm.hbBox-closeButton-title .hbBox-title,.hbBox-Modal.hbBox-closeButton-title .hbBox-title{padding-right:55px}.hbBox-Confirm.hbBox-closeButton-box:before,.hbBox-Modal.hbBox-closeButton-box:before{box-shadow:0 3px 15px rgba(0,0,0,.4),0 0 5px rgba(0,0,0,.4)}.hbBox-Modal .hbBox-content{padding:12px 15px;border-radius:0 0 4px 4px}.hbBox-Iframe .hbBox-content{padding:0;border-radius:0 0 4px 4px;overflow:hidden;background:#fff}.hbBox-Iframe iframe{display:block;width:100%}.hbBox-Confirm .hbBox-content{text-align:center;padding:15px}.hbBox-Confirm-footer{border-top:1px solid #e2e2e2;background:#fafafa;border-radius:0 0 4px 4px;text-align:right;padding:10px 10px 10px 0}.hb-label,.hb-loading,.hb-modal,.hb-modal-button,.hb-modal-title,.hb-slider-nav ol{text-align:center}.hbBox-Confirm-footer .hb-btn{padding:3px 15px}.hbBox-Confirm-button{display:inline-block;cursor:pointer;font-size:15px;line-height:30px;height:30px;border-radius:4px;padding:0 20px;transition:color .2s,background-color .2s}.hbBox-Confirm-button-cancel{text-shadow:0 1px 1px rgba(255,255,255,.6);background:#ddd;color:#999;margin-right:25px}.hbBox-Confirm-button-cancel:hover{background:#ccc;color:#666}.hbBox-Confirm-button-submit{text-shadow:0 -1px 1px rgba(0,0,0,.2);background:#5fc04c;color:#fff}.hbBox-Confirm-button-submit:hover{background:#53a642}.hbBox-Confirm-button-cancel:active,.hbBox-Confirm-button-submit:active{box-shadow:inset 0 1px 3px rgba(0,0,0,.26)}.hbBox-Loading,.hbBox-Notice{transition:margin .2s;font-size:14px}.hbBox-Loading .hbBox-container,.hbBox-Notice .hbBox-container{border-radius:3px;box-shadow:0 0 3px rgba(0,0,0,.2);color:#fff;text-shadow:0 -1px 1px #000;background:#1a1a1a}.hbBox-Loading .hbBox-container{border-radius:5px}.hbBox-Loading.hbBox-hasTitle .hbBox-title{text-align:center;position:absolute;bottom:12px;left:0;right:0;font-size:12px;text-shadow:none;letter-spacing:2px}.hbBox-Loading.hbBox-hasTitle .hbBox-content{padding:10px 20px;background:0 0!important;border-radius:5px 5px 0 0}.hbBox-Loading.hbBox-hasTitle .hbBox-container{height:90px;width:90px}.hbBox-Loading.hbBox-noTitle .hbBox-content{background:0 0!important}.hbBox-Modal.hbBox-noTitle .hbBox-content{border-radius:4px}.hbBox-Confirm.hbBox-noTitle .hbBox-content{border-radius:4px 4px 0 0}.hbBox-Notice .hbBox-content{border-radius:3px;padding:12px 20px;background:0 0}.hbBox-Notice .hbBox-title{padding:8px 20px 0;font-weight:700}.hbBox-hasTitle.hbBox-Notice .hbBox-content{padding-top:5px}.hbBox-Loading-color .hbBox-container,.hbBox-Notice-color .hbBox-container{text-shadow:0 -1px 1px rgba(0,0,0,.3)}.hbBox-Loading-gray .hbBox-container,.hbBox-Notice-gray .hbBox-container{color:#666;text-shadow:0 1px 1px #fff;background:#BDC3C7}.hbBox-Loading-red .hbBox-container,.hbBox-Notice-red .hbBox-container{background:#E74C3C}.hbBox-Loading-green .hbBox-container,.hbBox-Notice-green .hbBox-container{background:#27AE60}.hbBox-Loading-blue .hbBox-container,.hbBox-Notice-blue .hbBox-container{background:#3498DB}.hbBox-Loading-yellow .hbBox-container,.hbBox-Notice-yellow .hbBox-container{background:#F39C12}.hbBox-Loading-black .hbBox-container,.hbBox-Notice-black .hbBox-container{background:#1a1a1a}.hbBox-Image{background:#fff;padding:8px 8px 45px;border-radius:5px}.hbBox-Image .hbBox-content{padding:0;width:100%;height:100%}.hbBox-image-container{border-radius:5px;background:center center no-repeat #fff;position:absolute;width:100%;height:100%;opacity:0}.hbBox-image-label{position:absolute;background:#fff;top:100%;left:0;width:100%;color:#333;margin-top:-35px;padding:0 90px 5px 10px;border-radius:0 0 5px 5px;transition:opacity .3s;opacity:0}.hbBox-image-label.active{opacity:1}.hbBox-image-pointer-next,.hbBox-image-pointer-prev{position:absolute;bottom:0;width:22px;height:45px;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ijc0LjcgMjI0IDE4LjcgMzIiPg0KPHBhdGggZmlsbD0iIzAwMDAwMCIgZD0iTTkzLDIyNy40TDgwLjQsMjQwTDkzLDI1Mi42YzAuNCwwLjQsMC40LDEuMSwwLDEuNWwtMS42LDEuNmMtMC40LDAuNC0xLDAuNS0xLjUsMEw3NSwyNDAuN2MtMC40LTAuNC0wLjUtMSwwLTEuNWwxNC45LTE0LjljMC40LTAuNCwxLTAuNCwxLjUsMGwxLjYsMS42QzkzLjUsMjI2LjQsOTMuNCwyMjcsOTMsMjI3LjR6Ii8+DQo8L3N2Zz4=) center center no-repeat;background-size:11px auto;cursor:pointer;opacity:.6;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;transition:opacity .2s}.hbBox-image-pointer-next:hover,.hbBox-image-pointer-prev:hover{opacity:1}.hbBox-image-pointer-next{right:8px;-webkit-transform:scaleX(-1);transform:scaleX(-1)}.hbBox-image-pointer-prev{right:30px}.hbBox-image-open #hbBox-overlay{background-color:rgba(0,0,0,.86)}.hbBox-Image.hbBox-preloader .hbBox-container:before{left:auto;top:auto;bottom:-33px;right:55px;margin-top:-9px;margin-left:-9px}.hbBox-closeButton{cursor:pointer;position:absolute}.hbBox-closeButton svg{position:absolute;top:50%;right:50%}.hbBox-closeButton path{transition:fill .2s;fill:#aaa}.hbBox-closeButton:hover path{fill:#888}.hbBox-closeButton:active path{fill:#666}#hbBox-overlay .hbBox-closeButton{top:0;right:0;width:40px;height:40px}#hbBox-overlay .hbBox-closeButton svg{width:20px;height:20px;margin-top:-10px;margin-right:-10px}#hbBox-overlay .hbBox-closeButton path{fill:#d2d4d6}#hbBox-overlay .hbBox-closeButton:hover path{fill:#fff}#hbBox-overlay .hbBox-closeButton:active path{fill:#b2b4b6}.hbBox-closeButton-title .hbBox-closeButton{top:0;right:0;bottom:0;width:40px}.hbBox-closeButton-title .hbBox-closeButton svg{width:12px;height:12px;margin-top:-6px;margin-right:-6px}.hbBox-closeButton-box .hbBox-closeButton{top:-8px;right:-10px;width:24px;height:24px;background:#fff;border-radius:50%}.hbBox-closeButton-box .hbBox-closeButton svg{width:10px;height:10px;margin-top:-5px;margin-right:-5px}.hbBox-hasTitle.hbBox-Modal.hbBox-closeButton-box .hbBox-closeButton{background:#f4f5f6}.hbBox-closeButton-box:before{content:'';position:absolute;top:-8px;right:-10px;width:24px;height:24px;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.3)}.hbBox-pointerPosition-top.hbBox-closeButton-box:before{top:4px}.hbBox-pointerPosition-right.hbBox-closeButton-box:before{right:2px}#hbBox-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:#000;background-color:rgba(0,0,0,.3)}body[class*=" hbBox-blockScroll-"],body[class^=hbBox-blockScroll-]{overflow:hidden}.hbBox-draggable{cursor:move}@keyframes hbBoxLoading{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes hbBoxLoading{to{-webkit-transform:rotate(360deg)}}.hbBox-preloader .hbBox-content{min-height:32px;min-width:38px;opacity:0}.hbBox-Loading .hbBox-content{padding:5px}.hbBox-spinner{position:absolute;top:50%;left:50%;width:30px;height:30px;margin-top:-15px;margin-left:-15px}.hbBox-spinner:before{content:'Loading…';display:block;width:30px;height:30px;text-align:center;box-sizing:border-box}.hbBox-spinner:not(:required):before{content:'';border-radius:50%;border:2px solid rgba(0,0,0,.3);border-top-color:rgba(0,0,0,.6);animation:hbBoxLoading .6s linear infinite;-webkit-animation:hbBoxLoading .6s linear infinite}.hbBox-Loading .hbBox-spinner:not(:required):before,.hbBox-Loading-black .hbBox-spinner:not(:required):before{content:'';border-radius:50%;border:2px solid rgba(255,255,255,.3);border-top-color:rgba(255,255,255,.6);animation:hbBoxLoading .6s linear infinite;-webkit-animation:hbBoxLoading .6s linear infinite}.hbBox-IE8.hbBox-Mouse .hbBox-container,.hbBox-IE8.hbBox-Tooltip .hbBox-container{border:1px solid #aaa}.hbBox-IE8 .hbBox-pointer:after{display:none}.hbBox-IE8 .hbBox-pointer{border:0;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABsAAAAbCAYAAACN1PRVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNq01l0OwyAIAGAlvY+n8ZJ6Gk/EqqkNtf7ApCQ+LM34iuCmRUQzihjj6FH+kjWL8N4/Ph9GHpiTnC9SwDbhLGyvspSScc71KkOa/HpuuRhIK+psE2pjONouCQg7kBSEXUgC2tHo52mTTBpnaEATWlaYK6MrhIAaceWpOcsCrYp6FV4H/90zTWjUQ/gSevVQq0ecHqoOxWpYoO7p5O9ku2fnVtp7QAik2rsK3fnpWfjynJWpbw+1BkghurrYDjiCptg/4AxaYhJwBbEwDsiB2NgM5EIirAdKIDFGQSmU1+NaIPjJYt2I25vxT4ABAMhWvtle2YvmAAAAAElFTkSuQmCC) no-repeat}.hbBox-IE8 .hbBox-pointer-top{background-position:center top}.hbBox-IE8 .hbBox-pointer-bottom{background-position:center bottom}.hbBox-IE8 .hbBox-pointer-left{background-position:left center}.hbBox-IE8 .hbBox-pointer-right{background-position:right center}.hbBox-icon,.iframe-load{background:url(img/loading.gif) center center no-repeat}.hbBox-IE8.hbBox-Modal .hbBox-container{border:3px solid #aaa}.hbBox-nosvg .hbBox-closeButton:before{font-family:Verdana,sans-serif;content:'x';text-align:center;font-size:18px;color:#888}.hbBox-icon{display:block;width:20px;height:20px;margin:10px auto}.hbBox-ModalBorder{border-radius:8px;background:rgba(0,0,0,.4);padding:8px;box-shadow:0 0 6px rgba(0,0,0,.2)}.hbBox-ModalBorder .hbBox-container{border-radius:5px;box-shadow:0 0 5px rgba(0,0,0,.2)}.hbBox-ModalBorder.hbBox-closeButton-box{border-top-right-radius:0}.hbBox-ModalBorder.hbBox-closeButton-box:before{display:none}.hbBox-ModalBorder.hbBox-closeButton-box .hbBox-closeButton,.hbBox-ModalBorder.hbBox-hasTitle.hbBox-closeButton-box .hbBox-closeButton{background:rgba(0,0,0,.4);border-radius:0 50% 50% 0;right:-32px;top:-8px}.hbBox-ModalBorder.hbBox-closeButton-box .hbBox-closeButton path{fill:#d2d4d6}.hbBox-ModalBorder.hbBox-closeButton-box .hbBox-closeButton:hover path{fill:#fff}.hbBox-ModalBorder.hbBox-closeButton-box .hbBox-closeButton:active path{fill:#b2b4b6}.hbBox-ModalBlue{border-radius:8px}.hbBox-ModalBlue .hbBox-title{background-color:#3498DB;color:#fff;text-shadow:none}.hbBox-ModalBlue .hbBox-closeButton path{fill:#fff}.hbBox-NoticeBorder .hbBox-container{border-radius:6px}.hbBox-NoticeBorder .hbBox-content,.hbBox-NoticeBorder .hbBox-title{padding-left:26px}.hbBox-NoticeBorder.hbBox-Notice-color .hbBox-container{color:#fff;text-shadow:0 -1px 0 #000;background:rgba(0,0,0,.92)}.hbBox-NoticeBorder.hbBox-Notice-color.hbBox-Notice-red .hbBox-container{background-color:#e00}.hbBox-NoticeBorder.hbBox-Notice-color.hbBox-Notice-green .hbBox-container{background-color:#95cc2a}.hbBox-NoticeBorder.hbBox-Notice-color.hbBox-Notice-blue .hbBox-container{background-color:#4cb4ff}.hbBox-NoticeBorder.hbBox-Notice-color.hbBox-Notice-yellow .hbBox-container{background-color:#ffba00}.hbBox-NoticeBorder.hbBox-Notice-color .hbBox-container:after{content:'';position:absolute;top:0;left:0;bottom:0;width:8px;border-radius:5px 0 0 5px;background-image:linear-gradient(45deg,rgba(255,255,255,.5) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.5) 50%,rgba(255,255,255,.5) 75%,transparent 75%,transparent);background-size:18px 18px}.hb-btn .hb-label,.hb-slider,.hb-slider-fade,.hb-slider-wrap{position:relative}.hbBox-NoticeBorder.hbBox-Notice-red .hbBox-container:after{background-color:#e00}.hbBox-NoticeBorder.hbBox-Notice-green .hbBox-container:after{background-color:#95cc2a}.hbBox-NoticeBorder.hbBox-Notice-blue .hbBox-container:after{background-color:#4cb4ff}.hbBox-NoticeBorder.hbBox-Notice-yellow .hbBox-container:after{background-color:#ffba00}.hbBox-TooltipDark .hbBox-container{border-radius:3px;border:2px solid #34495E;background:#2C3E50;color:#fff}.hbBox-TooltipDark .hbBox-pointer:after{border:2px solid #34495E;background:#2C3E50}.hbBox-TooltipDark .hbBox-pointer-bottom,.hbBox-TooltipDark .hbBox-pointer-top{width:34px;height:12px}.hbBox-TooltipDark .hbBox-pointer-left,.hbBox-TooltipDark .hbBox-pointer-right{width:12px;height:34px}.hbBox-TooltipDark.hbBox-closeButton-box:before{width:28px;height:28px;background:#34495E}.hbBox-TooltipGreen .hbBox-container{border-radius:3px;border:2px solid #27AE60;background:#2ECC71;color:#fff}.hbBox-TooltipGreen .hbBox-pointer:after{border:2px solid #27AE60;background:#2ECC71}.hbBox-TooltipGreen .hbBox-pointer-bottom,.hbBox-TooltipGreen .hbBox-pointer-top{width:34px;height:12px}.hbBox-TooltipGreen .hbBox-pointer-left,.hbBox-TooltipGreen .hbBox-pointer-right{width:12px;height:34px}.hbBox-TooltipGreen.hbBox-closeButton-box:before{width:28px;height:28px;background:#34495E}.hbBox-TooltipBlue .hbBox-container{border-radius:3px;border:2px solid #3498DB;background:#3498DB;color:#fff}.hbBox-TooltipBlue .hbBox-pointer:after{border:2px solid #3498DB;background:#3498DB}.hbBox-TooltipBlue .hbBox-pointer-bottom,.hbBox-TooltipBlue .hbBox-pointer-top{width:34px;height:12px}.hbBox-TooltipBlue .hbBox-pointer-left,.hbBox-TooltipBlue .hbBox-pointer-right{width:12px;height:34px}.hbBox-TooltipBlue.hbBox-closeButton-box:before{width:28px;height:28px;background:#3498DB}.hbBox-TooltipBlack .hbBox-container{border-radius:3px;border:2px solid rgba(27,26,26,.92);background:#1a1a1a;color:#fff}.hbBox-TooltipBlack .hbBox-content{background:0 0}.hbBox-TooltipBlack .hbBox-pointer:after{border:2px solid rgba(27,26,26,.92);background:#1a1a1a}.hbBox-TooltipBlack .hbBox-pointer-bottom,.hbBox-TooltipBlack .hbBox-pointer-top{width:34px;height:12px}.hbBox-TooltipBlack .hbBox-pointer-left,.hbBox-TooltipBlack .hbBox-pointer-right{width:12px;height:34px}.hbBox-TooltipBlack.hbBox-closeButton-box:before{width:28px;height:28px;background:#1a1a1a}.hbBox-Confirm-submit{margin-left:10px}.hb-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:2px}.hb-label,.hb-pagination>li{display:inline}.hb-pagination>li>a,.hb-pagination>li>span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#0894ec;background-color:#fff;border:1px solid #ddd;margin-left:-1px}.hb-pagination>li:first-child>a,.hb-pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:2px;border-top-left-radius:2px}.hb-pagination>li:last-child>a,.hb-pagination>li:last-child>span{border-bottom-right-radius:2px;border-top-right-radius:2px}.hb-pagination>li>a:focus,.hb-pagination>li>a:hover,.hb-pagination>li>span:focus,.hb-pagination>li>span:hover{z-index:2;color:#0566a2;background-color:#eee;border-color:#ddd}.hb-pagination>.active>a,.hb-pagination>.active>a:focus,.hb-pagination>.active>a:hover,.hb-pagination>.active>span,.hb-pagination>.active>span:focus,.hb-pagination>.active>span:hover{z-index:3;color:#fff;background-color:#0894ec;border-color:#0894ec;cursor:default}.hb-pagination>.disabled>a,.hb-pagination>.disabled>a:focus,.hb-pagination>.disabled>a:hover,.hb-pagination>.disabled>span,.hb-pagination>.disabled>span:focus,.hb-pagination>.disabled>span:hover{color:#777;background-color:#fff;border-color:#ddd;cursor:not-allowed;pointer-events:none}.hb-pagination-lg>li>a,.hb-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.hb-pagination-lg>li:first-child>a,.hb-pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.hb-pagination-lg>li:last-child>a,.hb-pagination-lg>li:last-child>span{border-bottom-right-radius:6px;border-top-right-radius:6px}.hb-pagination-sm>li>a,.hb-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.hb-pagination-sm>li:first-child>a,.hb-pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.hb-pagination-sm>li:last-child>a,.hb-pagination-sm>li:last-child>span{border-bottom-right-radius:3px;border-top-right-radius:3px}.hb-label{padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.hb-label:focus,a.hb-label:hover{color:#fff;text-decoration:none;cursor:pointer}.hb-label:empty{display:none}.hb-btn .hb-label{top:-1px}.hb-label-default{background-color:#777}.hb-label-default[href]:focus,.hb-label-default[href]:hover{background-color:#5e5e5e}.hb-label-primary{background-color:#0894ec}.hb-label-primary[href]:focus,.hb-label-primary[href]:hover{background-color:#0675bb}.hb-label-success{background-color:#72C47C}.hb-label-success[href]:focus,.hb-label-success[href]:hover{background-color:#4eb55b}.hb-label-warning{background-color:#f60}.hb-label-warning[href]:focus,.hb-label-warning[href]:hover{background-color:#cc5200}.hb-label-danger{background-color:#f6383a}.hb-label-danger[href]:focus,.hb-label-danger[href]:hover{background-color:#f00b0d}.hb-slider{margin:0;padding:0}.hb-slider-vertical>ul{height:100%}.hb-slider-vertical li{float:none;width:100%}.hb-slider-fade .hb-slider-wrap li{position:absolute;left:0;top:0;right:0;z-index:8}.hb-slider-fade .hb-slider-wrap li.hb-slider-active{z-index:10}.hb-slider li,.hb-slider ol,.hb-slider ul{list-style:none;margin:0;padding:0;border:none}.hb-slider-arrow{position:absolute;left:20px;z-index:2;font-size:0;line-height:0;cursor:pointer}.hb-slider-arrow.next{left:auto;right:20px}.hb-slider-nav{position:absolute;bottom:-35px;left:0;right:0;top:auto;margin:0}.hb-slider-nav ol li{display:inline-block;width:10px;height:10px;margin:0 4px;background:0 0;border-radius:10px;overflow:hidden;text-indent:-999em;border:2px solid #0894ec;cursor:pointer}.hb-slider-nav ol li.hb-slider-active{background:#0894ec;cursor:default}.hb-loading-overlay,.hb-modal-overlay{position:fixed;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,.4);z-index:10600;visibility:hidden;opacity:0;transition-duration:.2s}.hb-loading-overlay.hb-loading-overlay-visible,.hb-modal-overlay.hb-modal-overlay-visible{visibility:visible;opacity:1}.hb-modal{font-family:"Open Sans","Hiragino Sans GB","Microsoft YaHei",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;width:300px;position:fixed;z-index:11000;left:50%;margin-left:-150px;margin-top:0;top:50%;background:#fff;border-radius:3px;opacity:0;-webkit-transform:translate3d(0,0,0) scale(1.185);transform:translate3d(0,0,0) scale(1.185);transition-property:opacity,-webkit-transform;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;color:#3d4145;border:0 solid rgba(0,0,0,.25);box-shadow:0 0 18px rgba(0,0,0,.4);display:none}.hb-modal.hb-modal-in{opacity:1;transition-duration:.2s;-webkit-transform:translate3d(0,0,0) scale(1);transform:translate3d(0,0,0) scale(1);-webkit-backface-visibility:hidden;backface-visibility:hidden}.hb-modal.hb-modal-out{opacity:0;z-index:10999;transition-duration:.2s;-webkit-transform:translate3d(0,0,0) scale(.815);transform:translate3d(0,0,0) scale(.815)}.hb-modal-inner{padding:22px 12px;border-top-right-radius:3px;border-top-left-radius:3px;position:relative;background:#fff}.hb-modal-title{font-weight:500;font-size:.9rem}.hb-modal-title+.hb-modal-text{margin-top:.25rem}.hb-modal-buttons{height:40px;overflow:hidden;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center}.hb-modal-button{width:100%;padding:0 12px;height:40px;font-size:14px;line-height:40px;color:#0894ec;background:#f5f5f5;display:block;position:relative;white-space:nowrap;text-overflow:ellipsis;overflow:hidden;cursor:pointer;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.hb-modal-button.hb-modal-button-bold{font-weight:600}.hb-toast{background:rgba(0,0,0,.8);border-radius:5px;color:#fff;padding:0 10px;min-height:30px;line-height:30px;font-size:.8rem;width:auto}.hb-loading{position:fixed;z-index:100061;width:50px;min-height:50px;top:50%;left:50%;margin-left:-25px;margin-top:-25px;background:#fff;border-radius:3px;color:#FFF;box-shadow:0 0 18px rgba(0,0,0,.4)}.hb-loading .hb-icon-loading{width:30px;height:30px;position:absolute;top:50%;left:50%;margin-left:-15px;margin-top:-15px;z-index:9999;background:url(../img/loading-gray-2-48x48.gif) no-repeat;background-size:100%} \ No newline at end of file diff --git a/assets/fonts/iconfont.eot b/assets/fonts/iconfont.eot new file mode 100644 index 0000000000000000000000000000000000000000..5b3abf3d327341cf4904102d24274f166890b782 GIT binary patch literal 11280 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 OmfUR%7chg7%6|jxBp@sR literal 0 HcmV?d00001 diff --git a/assets/fonts/iconfont.svg b/assets/fonts/iconfont.svg new file mode 100644 index 0000000..6b45a7e --- /dev/null +++ b/assets/fonts/iconfont.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/fonts/iconfont.ttf b/assets/fonts/iconfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..a220803050458166f72eb31345ba0fd60bd54850 GIT binary patch literal 11112 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 literal 0 HcmV?d00001 diff --git a/assets/fonts/iconfont.woff b/assets/fonts/iconfont.woff new file mode 100644 index 0000000000000000000000000000000000000000..b21f0446a385b91ba94bdf84b48c8dc6022cb7b3 GIT binary patch literal 6400 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 !_- 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 Aa{vGU literal 0 HcmV?d00001 diff --git a/assets/img/slider_2.jpg b/assets/img/slider_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..dc1f2b57c1a441a21bc91cd49886bf3e0905655c GIT binary patch literal 38499 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%0A->E{8AEHM?0g0Yaode{ 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 I_%ri=0VO~<=1?o+"天":1>o&&s>=1?s+"小时":1>s&&l>=1?l+"分":0;break;default:var r=e-t,o=Math.floor(r/86400),i=r%864e5,s=Math.floor(i/3600),c=i%36e5,l=Math.floor(c/60);n=o>=1?o+"天"+s+"小时"+l+"分":1>o&&s>=1?s+"小时"+l+"分":l+"分"}return n},dateAdd:function(e,t,a){switch(e){case"y":t.setFullYear(t.getFullYear()+a);break;case"q":t.setMonth(t.getMonth()+3*a);break;case"n":t.setMonth(t.getMonth()+a);break;case"d":t.setDate(t.getDate()+a);break;case"w":t.setDate(t.getDate()+7*a);break;case"h":t.setHours(t.getHours()+a);break;case"m":t.setMinutes(t.getMinutes()+a);break;case"s":t.setSeconds(t.getSeconds()+a);break;case"i":t.setMilliseconds(t.getMilliseconds()+a);break;default:t.setMilliseconds(t.getMilliseconds()+a)}return t},addDays:function(e,t){var a=new Date(e);a=a.valueOf(),a+=24*t*60*60*1e3,a=new Date(a);var n=a.getFullYear(),r=a.getMonth()+1,o=a.getDate();9>=r&&(r="0"+r),9>=o&&(o="0"+o);var i=n+"-"+r+"-"+o;return i},str2Date:function(e,t){t=t||"%Y-%M-%d %h:%m:%s",t=t.replace(/\-/g,"\\-"),t=t.replace(/\|/g,"\\|"),t=t.replace(/\./g,"\\."),t=t.replace(/\+/g,"\\+"),t=t.replace("%Y","(\\d{4})"),t=t.replace("%M","(\\d{1,2})"),t=t.replace("%d","(\\d{1,2})"),t=t.replace("%h","(\\d{1,2})"),t=t.replace("%m","(\\d{1,2})"),t=t.replace("%s","(\\d{1,2})");var a=new RegExp("^"+t+"$"),n=a.exec(e),r=(n[1]||0)-0,o=(n[2]||1)-1,i=(n[3]||0)-0,s=(n[4]||0)-0,c=(n[5]||0)-0,l=(n[6]||0)-0;return new Date(r,o,i,s,c,l)},str2Str:function(e,t,a,n){t=t||"%M%d",a="undefined"!=typeof a?a:!0,n=n||"%Y%M%d";var r=this.str2Date(e,n);return this.date2Str(r,t,a)},date2Str:function(e,t,a){a=!0;var n=e.getFullYear(),r=e.getMonth()+1,o=e.getDate(),i=e.getHours(),s=e.getMinutes(),c=e.getSeconds();return a&&(r=10>r?"0"+r:r,o=10>o?"0"+o:o,i=10>i?"0"+i:i,s=10>s?"0"+s:s,c=10>c?"0"+c:c),t=t||"%Y-%M-%d %h:%m:%s",t=t.replace(/%Y/g,n).replace(/%M/g,r).replace(/%d/g,o).replace(/%h/g,i).replace(/%m/g,s).replace(/%s/g,c)},setTimer:function(e,t,a){var n=setInterval(function(){e.html(t+" 秒后重新获取"),t--,0>=t&&(clearInterval(n),setTimeout(function(){a&&e.parents().find(a).removeClass("disabled"),e.html("获取动态码").removeClass("disabled")},10))},1e3)},bindEvents:function(e){for(var t in e)e[t].selector?$(e[t].element).on(e[t].event,e[t].selector,e[t].handler):$(e[t].element).on(e[t].event,e[t].handler)},returnFalse:function(e,t){switch(t=t||0,parseInt(t,10)){case 1:e.stopPropagation();break;case 2:e.preventDefault();break;default:e.stopPropagation(),e.preventDefault()}return null},subString:function(e,t){for(var a=0,n="",r=/[^\x00-\xff]/g,o="",i=e.replace(r,"**").length,s=0;i>s&&(o=e.charAt(s).toString(),null!=o.match(r)?a+=2:a++,!(a>t));s++)n+=o;return i>t&&(n+="..."),n},fen2Yuan:function(e){var t=/^[\+|-]?[0-9]+$/;return"string"!=typeof e&&(e=e.toString()),t.test(e)?(parseFloat(e)/100).toFixed(2):"0.00"},yuan2Fen:function(e){var t=/^[\+|-]?\d+(\.\d+)?$/;return"string"!=typeof e&&(e=e.toString()),t.test(e)?(100*parseFloat(e)).toFixed(0):"0"},formatCurrency:function(e){var e,t,a;e=e.toString().replace(/\$|\,/g,""),isNaN(e)&&(e="0"),t=e==(e=Math.abs(e)),e=Math.floor(100*e+.50000000001),a=e%100,e=Math.floor(e/100).toString(),10>a&&(a="0"+a);for(var n=0;n0?"http://dev.www.haibian.com/c.gif?":"http://logserver.haibian.com/c.gif?",n.src=r+e},init:function(){var e=this;e.trackEvent()}}}(HBUI),$(function(){$("body").css("visibility","visible")}); \ No newline at end of file diff --git a/docs.css b/docs.min.css similarity index 90% rename from docs.css rename to docs.min.css index b1d1b34..3312018 100755 --- a/docs.css +++ b/docs.min.css @@ -3,4 +3,4 @@ * Copyright 2016 */ @font-face{font-family:octicons;src:url(/assets/fonts/octicons/octicons.eot?#iefix&v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('embedded-opentype'),url(/assets/fonts/octicons/octicons.woff?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('woff'),url(/assets/fonts/octicons/octicons.ttf?v=83cf61c381c06806e0a3925d1a13c772b25161d2) format('truetype'),url(/assets/fonts/octicons/octicons.svg?v=83cf61c381c06806e0a3925d1a13c772b25161d2#octicons) format('svg');font-weight:400;font-style:normal}.mega-octicon,.octicon{font:normal normal normal 16px/1 octicons;display:inline-block;text-decoration:none;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.mega-octicon{font-size:32px}.octicon-alert:before{content:'\f02d'}.octicon-arrow-down:before{content:'\f03f'}.octicon-arrow-left:before{content:'\f040'}.octicon-arrow-right:before{content:'\f03e'}.octicon-arrow-small-down:before{content:'\f0a0'}.octicon-arrow-small-left:before{content:'\f0a1'}.octicon-arrow-small-right:before{content:'\f071'}.octicon-arrow-small-up:before{content:'\f09f'}.octicon-arrow-up:before{content:'\f03d'}.octicon-beaker:before,.octicon-microscope:before{content:'\f0dd'}.octicon-bell:before{content:'\f0de'}.octicon-bold:before{content:'\f0e2'}.octicon-book:before{content:'\f007'}.octicon-bookmark:before{content:'\f07b'}.octicon-briefcase:before{content:'\f0d3'}.octicon-broadcast:before{content:'\f048'}.octicon-browser:before{content:'\f0c5'}.octicon-bug:before{content:'\f091'}.octicon-calendar:before{content:'\f068'}.octicon-check:before{content:'\f03a'}.octicon-checklist:before{content:'\f076'}.octicon-chevron-down:before{content:'\f0a3'}.octicon-chevron-left:before{content:'\f0a4'}.octicon-chevron-right:before{content:'\f078'}.octicon-chevron-up:before{content:'\f0a2'}.octicon-circle-slash:before{content:'\f084'}.octicon-circuit-board:before{content:'\f0d6'}.octicon-clippy:before{content:'\f035'}.octicon-clock:before{content:'\f046'}.octicon-cloud-download:before{content:'\f00b'}.octicon-cloud-upload:before{content:'\f00c'}.octicon-code:before{content:'\f05f'}.octicon-comment-add:before,.octicon-comment:before{content:'\f02b'}.octicon-comment-discussion:before{content:'\f04f'}.octicon-credit-card:before{content:'\f045'}.octicon-dash:before{content:'\f0ca'}.octicon-dashboard:before{content:'\f07d'}.octicon-database:before{content:'\f096'}.octicon-clone:before,.octicon-desktop-download:before{content:'\f0dc'}.octicon-device-camera:before{content:'\f056'}.octicon-device-camera-video:before{content:'\f057'}.octicon-device-desktop:before{content:'\f27c'}.octicon-device-mobile:before{content:'\f038'}.octicon-diff:before{content:'\f04d'}.octicon-diff-added:before{content:'\f06b'}.octicon-diff-ignored:before{content:'\f099'}.octicon-diff-modified:before{content:'\f06d'}.octicon-diff-removed:before{content:'\f06c'}.octicon-diff-renamed:before{content:'\f06e'}.octicon-ellipsis:before{content:'\f09a'}.octicon-eye-unwatch:before,.octicon-eye-watch:before,.octicon-eye:before{content:'\f04e'}.octicon-file-binary:before{content:'\f094'}.octicon-file-code:before{content:'\f010'}.octicon-file-directory:before{content:'\f016'}.octicon-file-media:before{content:'\f012'}.octicon-file-pdf:before{content:'\f014'}.octicon-file-submodule:before{content:'\f017'}.octicon-file-symlink-directory:before{content:'\f0b1'}.octicon-file-symlink-file:before{content:'\f0b0'}.octicon-file-text:before{content:'\f011'}.octicon-file-zip:before{content:'\f013'}.octicon-flame:before{content:'\f0d2'}.octicon-fold:before{content:'\f0cc'}.octicon-gear:before{content:'\f02f'}.octicon-gift:before{content:'\f042'}.octicon-gist:before{content:'\f00e'}.octicon-gist-secret:before{content:'\f08c'}.octicon-git-branch-create:before,.octicon-git-branch-delete:before,.octicon-git-branch:before{content:'\f020'}.octicon-git-commit:before{content:'\f01f'}.octicon-git-compare:before{content:'\f0ac'}.octicon-git-merge:before{content:'\f023'}.octicon-git-pull-request-abandoned:before,.octicon-git-pull-request:before{content:'\f009'}.octicon-globe:before{content:'\f0b6'}.octicon-graph:before{content:'\f043'}.octicon-heart:before{content:'\2665'}.octicon-history:before{content:'\f07e'}.octicon-home:before{content:'\f08d'}.octicon-horizontal-rule:before{content:'\f070'}.octicon-hubot:before{content:'\f09d'}.octicon-inbox:before{content:'\f0cf'}.octicon-info:before{content:'\f059'}.octicon-issue-closed:before{content:'\f028'}.octicon-issue-opened:before{content:'\f026'}.octicon-issue-reopened:before{content:'\f027'}.octicon-italic:before{content:'\f0e4'}.octicon-jersey:before{content:'\f019'}.octicon-key:before{content:'\f049'}.octicon-keyboard:before{content:'\f00d'}.octicon-law:before{content:'\f0d8'}.octicon-light-bulb:before{content:'\f000'}.octicon-link:before{content:'\f05c'}.octicon-link-external:before{content:'\f07f'}.octicon-list-ordered:before{content:'\f062'}.octicon-list-unordered:before{content:'\f061'}.octicon-location:before{content:'\f060'}.octicon-gist-private:before,.octicon-git-fork-private:before,.octicon-lock:before,.octicon-mirror-private:before{content:'\f06a'}.octicon-logo-gist:before{content:'\f0ad'}.octicon-logo-github:before{content:'\f092'}.octicon-mail:before{content:'\f03b'}.octicon-mail-read:before{content:'\f03c'}.octicon-mail-reply:before{content:'\f051'}.octicon-mark-github:before{content:'\f00a'}.octicon-markdown:before{content:'\f0c9'}.octicon-megaphone:before{content:'\f077'}.octicon-mention:before{content:'\f0be'}.octicon-milestone:before{content:'\f075'}.octicon-mirror-public:before,.octicon-mirror:before{content:'\f024'}.octicon-mortar-board:before{content:'\f0d7'}.octicon-mute:before{content:'\f080'}.octicon-no-newline:before{content:'\f09c'}.octicon-octoface:before{content:'\f008'}.octicon-organization:before{content:'\f037'}.octicon-package:before{content:'\f0c4'}.octicon-paintcan:before{content:'\f0d1'}.octicon-pencil:before{content:'\f058'}.octicon-person-add:before,.octicon-person-follow:before,.octicon-person:before{content:'\f018'}.octicon-pin:before{content:'\f041'}.octicon-plug:before{content:'\f0d4'}.octicon-file-add:before,.octicon-file-directory-create:before,.octicon-gist-new:before,.octicon-plus:before,.octicon-repo-create:before{content:'\f05d'}.octicon-primitive-dot:before{content:'\f052'}.octicon-primitive-square:before{content:'\f053'}.octicon-pulse:before{content:'\f085'}.octicon-question:before{content:'\f02c'}.octicon-quote:before{content:'\f063'}.octicon-radio-tower:before{content:'\f030'}.octicon-repo-delete:before,.octicon-repo:before{content:'\f001'}.octicon-repo-clone:before{content:'\f04c'}.octicon-repo-force-push:before{content:'\f04a'}.octicon-gist-fork:before,.octicon-repo-forked:before{content:'\f002'}.octicon-repo-pull:before{content:'\f006'}.octicon-repo-push:before{content:'\f005'}.octicon-rocket:before{content:'\f033'}.octicon-rss:before{content:'\f034'}.octicon-ruby:before{content:'\f047'}.octicon-search-save:before,.octicon-search:before{content:'\f02e'}.octicon-server:before{content:'\f097'}.octicon-settings:before{content:'\f07c'}.octicon-shield:before{content:'\f0e1'}.octicon-log-in:before,.octicon-sign-in:before{content:'\f036'}.octicon-log-out:before,.octicon-sign-out:before{content:'\f032'}.octicon-smiley:before{content:'\f0e7'}.octicon-squirrel:before{content:'\f0b2'}.octicon-star-add:before,.octicon-star-delete:before,.octicon-star:before{content:'\f02a'}.octicon-stop:before{content:'\f08f'}.octicon-repo-sync:before,.octicon-sync:before{content:'\f087'}.octicon-tag-add:before,.octicon-tag-remove:before,.octicon-tag:before{content:'\f015'}.octicon-tasklist:before{content:'\f0e5'}.octicon-telescope:before{content:'\f088'}.octicon-terminal:before{content:'\f0c8'}.octicon-text-size:before{content:'\f0e3'}.octicon-three-bars:before{content:'\f05e'}.octicon-thumbsdown:before{content:'\f0db'}.octicon-thumbsup:before{content:'\f0da'}.octicon-tools:before{content:'\f031'}.octicon-trashcan:before{content:'\f0d0'}.octicon-triangle-down:before{content:'\f05b'}.octicon-triangle-left:before{content:'\f044'}.octicon-triangle-right:before{content:'\f05a'}.octicon-triangle-up:before{content:'\f0aa'}.octicon-unfold:before{content:'\f039'}.octicon-unmute:before{content:'\f0ba'}.octicon-verified:before{content:'\f0e6'}.octicon-versions:before{content:'\f064'}.octicon-watch:before{content:'\f0e0'}.octicon-remove-close:before,.octicon-x:before{content:'\f081'}.octicon-zap:before{content:'\26A1'}body .octicon{font-size:inherit;line-height:inherit}.icon-spin{-webkit-animation:a 2s infinite linear;animation:a 2s infinite linear}.icon-pulse{-webkit-animation:a 1s infinite steps(8);animation:a 1s infinite steps(8)}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}} -/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:500}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:500}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.btn-toolbar,.clearfix,.dl-horizontal dd{zoom:1}.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.dl-horizontal dd:after,.dl-horizontal dd:before{content:"";display:table}.btn-toolbar:after,.clearfix:after,.dl-horizontal dd:after{clear:both}.hidden{display:none}.container{position:relative;width:100%;max-width:1200px;margin:0;padding:0;margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.container.container-fluid{padding:0}.container [class*=col-]{float:left;width:100%;padding-left:15px;padding-right:15px}@media (min-width:510px){.container{max-width:510px}.container .col-xs-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-0{margin-left:0}.container .col-xs-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-1{margin-left:8.33333333%}.container .col-xs-3{width:25%;padding-left:15px;padding-right:15px}.container .col-xs-offset-2{margin-left:16.66666667%}.container .col-xs-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-3{margin-left:25%}.container .col-xs-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-4{margin-left:33.33333333%}.container .col-xs-6{width:50%;padding-left:15px;padding-right:15px}.container .col-xs-offset-5{margin-left:41.66666667%}.container .col-xs-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-6{margin-left:50%}.container .col-xs-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-7{margin-left:58.33333333%}.container .col-xs-9{width:75%;padding-left:15px;padding-right:15px}.container .col-xs-offset-8{margin-left:66.66666667%}.container .col-xs-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-9{margin-left:75%}.container .col-xs-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-10{margin-left:83.33333333%}.container .col-xs-12{width:100%;padding-left:15px;padding-right:15px}.container .col-xs-offset-11{margin-left:91.66666667%}}@media (min-width:750px){.container{max-width:750px}.container .col-sm-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-0{margin-left:0}.container .col-sm-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-1{margin-left:8.33333333%}.container .col-sm-3{width:25%;padding-left:15px;padding-right:15px}.container .col-sm-offset-2{margin-left:16.66666667%}.container .col-sm-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-3{margin-left:25%}.container .col-sm-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-4{margin-left:33.33333333%}.container .col-sm-6{width:50%;padding-left:15px;padding-right:15px}.container .col-sm-offset-5{margin-left:41.66666667%}.container .col-sm-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-6{margin-left:50%}.container .col-sm-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-7{margin-left:58.33333333%}.container .col-sm-9{width:75%;padding-left:15px;padding-right:15px}.container .col-sm-offset-8{margin-left:66.66666667%}.container .col-sm-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-9{margin-left:75%}.container .col-sm-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-10{margin-left:83.33333333%}.container .col-sm-12{width:100%;padding-left:15px;padding-right:15px}.container .col-sm-offset-11{margin-left:91.66666667%}}@media (min-width:970px){.container{max-width:970px}.container .col-md-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-0{margin-left:0}.container .col-md-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-1{margin-left:8.33333333%}.container .col-md-3{width:25%;padding-left:15px;padding-right:15px}.container .col-md-offset-2{margin-left:16.66666667%}.container .col-md-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-3{margin-left:25%}.container .col-md-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-4{margin-left:33.33333333%}.container .col-md-6{width:50%;padding-left:15px;padding-right:15px}.container .col-md-offset-5{margin-left:41.66666667%}.container .col-md-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-6{margin-left:50%}.container .col-md-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-7{margin-left:58.33333333%}.container .col-md-9{width:75%;padding-left:15px;padding-right:15px}.container .col-md-offset-8{margin-left:66.66666667%}.container .col-md-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-9{margin-left:75%}.container .col-md-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-10{margin-left:83.33333333%}.container .col-md-12{width:100%;padding-left:15px;padding-right:15px}.container .col-md-offset-11{margin-left:91.66666667%}}@media (min-width:1200px){.container{max-width:1200px}.container .col-lg-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-0{margin-left:0}.container .col-lg-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-1{margin-left:8.33333333%}.container .col-lg-3{width:25%;padding-left:15px;padding-right:15px}.container .col-lg-offset-2{margin-left:16.66666667%}.container .col-lg-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-3{margin-left:25%}.container .col-lg-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-4{margin-left:33.33333333%}.container .col-lg-6{width:50%;padding-left:15px;padding-right:15px}.container .col-lg-offset-5{margin-left:41.66666667%}.container .col-lg-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-6{margin-left:50%}.container .col-lg-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-7{margin-left:58.33333333%}.container .col-lg-9{width:75%;padding-left:15px;padding-right:15px}.container .col-lg-offset-8{margin-left:66.66666667%}.container .col-lg-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-9{margin-left:75%}.container .col-lg-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-10{margin-left:83.33333333%}.container .col-lg-12{width:100%;padding-left:15px;padding-right:15px}.container .col-lg-offset-11{margin-left:91.66666667%}}.row{margin-left:-15px;margin-right:-15px;zoom:1}.row:after,.row:before{content:"";display:table}.row:after{clear:both}@media (min-width:0) and (max-width:749px){.visible-xs{display:block!important}.hidden-xs{display:none!important}}@media (min-width:750px) and (max-width:969px){.visible-sm{display:block!important}.hidden-sm{display:none!important}}@media (min-width:970px) and (max-width:1199px){.visible-md{display:block!important}.hidden-md{display:none!important}}@media (min-width:970px){.visible-lg{display:block!important}.hidden-lg{display:none!important}}.hljs-comment,.hljs-title{color:#8e908c}.css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title{color:#c82829}.hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor{color:#f5871f}.css .hljs-rules .hljs-attribute,.ruby .hljs-class .hljs-title{color:#eab700}.hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{background:#fff;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript{opacity:.5}.pull-right{float:right!important}.pull-left{float:left!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#737373}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}b,strong{font-weight:700}p{margin:0 0 10px}p.after{margin:0;margin-top:10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:750px){.lead{font-size:21px}}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap,.text-overflow{white-space:nowrap}.text-overflow{overflow:hidden;text-overflow:ellipsis}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-warning{color:#8d7726}.text-danger{color:#911}.text-info{color:#246}.text-success{color:#3c763d}.text-muted{color:#737373}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:500}dd{margin-left:0}@media (min-width:750px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #737373}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#737373}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.checkbox-switch,.checkbox.checkbox-switch,.form-group .checkbox.checkbox-switch{padding-left:0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.checkbox-switch.switch-right,.checkbox.checkbox-switch.switch-right,.form-group .checkbox.checkbox-switch.switch-right{zoom:1}.checkbox-switch.switch-right:after,.checkbox-switch.switch-right:before,.checkbox.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:before,.form-group .checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:before{content:"";display:table}.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:after{clear:both}.checkbox-switch.switch-right input+span,.checkbox.checkbox-switch.switch-right input+span,.form-group .checkbox.checkbox-switch.switch-right input+span{float:right}.checkbox-switch.switch-xs input+span,.checkbox.checkbox-switch.switch-xs input+span,.form-group .checkbox.checkbox-switch.switch-xs input+span{font-size:12px}.checkbox-switch.switch-lg input+span,.checkbox.checkbox-switch.switch-lg input+span,.form-group .checkbox.checkbox-switch.switch-lg input+span{font-size:18px}.checkbox-switch input,.checkbox.checkbox-switch input,.form-group .checkbox.checkbox-switch input{opacity:0;position:absolute}.checkbox-switch input+span,.checkbox.checkbox-switch input+span,.form-group .checkbox.checkbox-switch input+span{font-size:16px;position:relative;display:inline-block;width:1.65em;height:1em;background:#fff;box-shadow:inset 0 0 0 .0625em #d4d4d4;border-radius:.5em;vertical-align:-.15em;transition:all .4s cubic-bezier(.17,.67,.43,.98)}.checkbox-switch:active input+span,.checkbox-switch input+span:active,.checkbox.checkbox-switch:active input+span,.checkbox.checkbox-switch input+span:active,.form-group .checkbox.checkbox-switch:active input+span,.form-group .checkbox.checkbox-switch input+span:active{box-shadow:inset 0 0 0 .73em #d4d4d4}.checkbox-switch input+span:after,.checkbox.checkbox-switch input+span:after,.form-group .checkbox.checkbox-switch input+span:after{position:absolute;display:block;content:'';width:.875em;height:.875em;border-radius:.4375em;top:.0625em;left:.0625em;background:#fff;box-shadow:inset 0 0 0 .03em rgba(0,0,0,.4),0 0 .05em rgba(0,0,0,.35),0 .1em .2em rgba(0,0,0,.4);transition:all .25s ease-out}.checkbox-switch:active input+span:after,.checkbox-switch input+span:active:after,.checkbox.checkbox-switch:active input+span:after,.checkbox.checkbox-switch input+span:active:after,.form-group .checkbox.checkbox-switch:active input+span:after,.form-group .checkbox.checkbox-switch input+span:active:after{width:1.15em}.checkbox-switch input:checked+span,.checkbox.checkbox-switch input:checked+span,.form-group .checkbox.checkbox-switch input:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}.checkbox-switch input:disabled+span,.checkbox.checkbox-switch input:disabled+span,.form-group .checkbox.checkbox-switch input:disabled+span{opacity:.6}.checkbox-switch input:checked+span:after,.checkbox.checkbox-switch input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:after{left:.7125em}.checkbox-switch:active input:checked+span:after,.checkbox-switch input:checked+span:active:after,.checkbox.checkbox-switch:active input:checked+span:after,.checkbox.checkbox-switch input:checked+span:active:after,.form-group .checkbox.checkbox-switch:active input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:active:after{left:.4375em}.checkbox-switch input:focus+span:after,.checkbox.checkbox-switch input:focus+span:after,.form-group .checkbox.checkbox-switch input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.15),0 0 .05em rgba(0,0,0,.08),0 .1em .2em rgba(0,0,0,.3);background:#fff}.checkbox-switch input:focus+span,.checkbox.checkbox-switch input:focus+span,.form-group .checkbox.checkbox-switch input:focus+span{box-shadow:inset 0 0 0 .0625em #dadada}.checkbox-switch input:focus:checked+span,.checkbox.checkbox-switch input:focus:checked+span,.form-group .checkbox.checkbox-switch input:focus:checked+span{box-shadow:inset 0 0 0 .73em #33be4b}.checkbox-switch:hover input:focus+span:after,.checkbox.checkbox-switch:hover input:focus+span:after,.form-group .checkbox.checkbox-switch:hover input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.1),0 0 .05em rgba(0,0,0,.05),0 .1em .2em rgba(0,0,0,.2);background:#fff}.checkbox-switch:hover input:focus+span,.checkbox.checkbox-switch:hover input:focus+span,.form-group .checkbox.checkbox-switch:hover input:focus+span{box-shadow:inset 0 0 0 .0625em #e9e9e9}.checkbox-switch:hover input:focus:checked+span,.checkbox.checkbox-switch:hover input:focus:checked+span,.form-group .checkbox.checkbox-switch:hover input:focus:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:3px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:500;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;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}a{text-decoration:none;color:#428bca}a:focus,a:hover{text-decoration:underline}a:visited{color:#428bca}.gb-markdown .muted-link,.gb-markdown .muted-link:visited,.muted-link,.muted-link:visited{color:#737373}.gb-markdown .muted-link:focus,.gb-markdown .muted-link:hover,.muted-link:focus,.muted-link:hover{text-decoration:none;color:#428bca}.gb-markdown .underlined-link,.underlined-link{color:inherit;text-decoration:underline}.gb-markdown .underlined-link:visited,.underlined-link:visited{color:inherit}.gb-markdown .underlined-link:focus,.gb-markdown .underlined-link:hover,.underlined-link:focus,.underlined-link:hover{text-decoration:underline;color:inherit}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#737373}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #d4d4d4;word-break:break-all}.table>thead>tr>th{vertical-align:bottom;background:#f5f5f5;border-bottom:1px solid #d4d4d4}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid #d4d4d4}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d4d4d4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#fcfcfc}.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-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:510px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d4d4d4}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.button-nobackground{background:transparent;border-color:transparent}.button-nobackground:focus,.button-nobackground:hover{color:#428bca;background:none;box-shadow:none}.button-nobackground.active{background:none;box-shadow:none;font-weight:500}.btn,.gb-markdown .btn,a.btn{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;cursor:pointer;display:inline-block;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.btn .caret,.gb-markdown .btn .caret,a.btn .caret{border-top-color:#333}.btn .octicon,.gb-markdown .btn .octicon,a.btn .octicon{line-height:1em}.btn.dropdown-toggle.open,.btn:focus,.btn:hover,.gb-markdown .btn.dropdown-toggle.open,.gb-markdown .btn:focus,.gb-markdown .btn:hover,a.btn.dropdown-toggle.open,a.btn:focus,a.btn:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}.btn.active,.btn:active,.gb-markdown .btn.active,.gb-markdown .btn:active,a.btn.active,a.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,.gb-markdown .btn.disabled,.gb-markdown .btn:disabled,a.btn.disabled,a.btn:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}.btn.disabled.tooltipped:after,.btn.disabled.tooltipped:before,.btn:disabled.tooltipped:after,.btn:disabled.tooltipped:before,.gb-markdown .btn.disabled.tooltipped:after,.gb-markdown .btn.disabled.tooltipped:before,.gb-markdown .btn:disabled.tooltipped:after,.gb-markdown .btn:disabled.tooltipped:before,a.btn.disabled.tooltipped:after,a.btn.disabled.tooltipped:before,a.btn:disabled.tooltipped:after,a.btn:disabled.tooltipped:before{display:none}.btn.btn-lg,.gb-markdown .btn.btn-lg,a.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.btn.btn-sm,.gb-markdown .btn.btn-sm,a.btn.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-xs,.gb-markdown .btn.btn-xs,a.btn.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-right,.gb-markdown .btn.btn-right,a.btn.btn-right{float:right!important;margin-left:16px}.btn.btn-left,.gb-markdown .btn.btn-left,a.btn.btn-left{float:left!important;margin-right:16px}.btn.btn-block,.gb-markdown .btn.btn-block,a.btn.btn-block{display:block;width:100%;text-align:center}.btn.btn-block+.btn-block,.gb-markdown .btn.btn-block+.btn-block,a.btn.btn-block+.btn-block{margin-top:5px}.btn.btn-link,.gb-markdown .btn.btn-link,a.btn.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-link .caret,.gb-markdown .btn.btn-link .caret,a.btn.btn-link .caret{border-top-color:#fff}.btn.btn-link.btn-link,.btn.btn-link.btn-noborder,.gb-markdown .btn.btn-link.btn-link,.gb-markdown .btn.btn-link.btn-noborder,a.btn.btn-link.btn-link,a.btn.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-link.btn-link:focus,.btn.btn-link.btn-link:hover,.btn.btn-link.btn-noborder:focus,.btn.btn-link.btn-noborder:hover,.gb-markdown .btn.btn-link.btn-link:focus,.gb-markdown .btn.btn-link.btn-link:hover,.gb-markdown .btn.btn-link.btn-noborder:focus,.gb-markdown .btn.btn-link.btn-noborder:hover,a.btn.btn-link.btn-link:focus,a.btn.btn-link.btn-link:hover,a.btn.btn-link.btn-noborder:focus,a.btn.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-link.active,.gb-markdown .btn.btn-link.active,a.btn.btn-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-text-link,.gb-markdown .btn.btn-text-link,a.btn.btn-text-link{background:transparent;border-color:transparent;color:inherit}.btn.btn-text-link:focus,.btn.btn-text-link:hover,.gb-markdown .btn.btn-text-link:focus,.gb-markdown .btn.btn-text-link:hover,a.btn.btn-text-link:focus,a.btn.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-text-link.active,.gb-markdown .btn.btn-text-link.active,a.btn.btn-text-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-count,.gb-markdown .btn.btn-count,a.btn.btn-count{color:#333;background:#fff}.btn.btn-count:focus,.btn.btn-count:hover,.gb-markdown .btn.btn-count:focus,.gb-markdown .btn.btn-count:hover,a.btn.btn-count:focus,a.btn.btn-count:hover{background:#fff;color:#428bca}.btn.btn-count.disabled,.btn.btn-count:disabled,.gb-markdown .btn.btn-count.disabled,.gb-markdown .btn.btn-count:disabled,a.btn.btn-count.disabled,a.btn.btn-count:disabled{background:#fff;color:#333}.btn.btn-count .caret,.gb-markdown .btn.btn-count .caret,a.btn.btn-count .caret{border-top-color:#333}.btn.btn-success,.gb-markdown .btn.btn-success,a.btn.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}.btn.btn-success:focus,.btn.btn-success:hover,.gb-markdown .btn.btn-success:focus,.gb-markdown .btn.btn-success:hover,a.btn.btn-success:focus,a.btn.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}.btn.btn-success .caret,.gb-markdown .btn.btn-success .caret,a.btn.btn-success .caret{border-top-color:#fff}.btn.btn-success.btn-link,.btn.btn-success.btn-noborder,.gb-markdown .btn.btn-success.btn-link,.gb-markdown .btn.btn-success.btn-noborder,a.btn.btn-success.btn-link,a.btn.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}.btn.btn-success.btn-link:focus,.btn.btn-success.btn-link:hover,.btn.btn-success.btn-noborder:focus,.btn.btn-success.btn-noborder:hover,.gb-markdown .btn.btn-success.btn-link:focus,.gb-markdown .btn.btn-success.btn-link:hover,.gb-markdown .btn.btn-success.btn-noborder:focus,.gb-markdown .btn.btn-success.btn-noborder:hover,a.btn.btn-success.btn-link:focus,a.btn.btn-success.btn-link:hover,a.btn.btn-success.btn-noborder:focus,a.btn.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}.btn.btn-success.btn-outline,.gb-markdown .btn.btn-success.btn-outline,a.btn.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}.btn.btn-success.btn-outline .caret,.gb-markdown .btn.btn-success.btn-outline .caret,a.btn.btn-success.btn-outline .caret{border-top-color:#5cb85c}.btn.btn-success.btn-outline:focus,.btn.btn-success.btn-outline:hover,.gb-markdown .btn.btn-success.btn-outline:focus,.gb-markdown .btn.btn-success.btn-outline:hover,a.btn.btn-success.btn-outline:focus,a.btn.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}.btn.btn-success.btn-outline:focus .caret,.btn.btn-success.btn-outline:hover .caret,.gb-markdown .btn.btn-success.btn-outline:focus .caret,.gb-markdown .btn.btn-success.btn-outline:hover .caret,a.btn.btn-success.btn-outline:focus .caret,a.btn.btn-success.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-success,.gb-markdown .btn.btn-text-success,a.btn.btn-text-success{color:#449d44}.btn.btn-primary,.gb-markdown .btn.btn-primary,a.btn.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover,.gb-markdown .btn.btn-primary:focus,.gb-markdown .btn.btn-primary:hover,a.btn.btn-primary:focus,a.btn.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-primary .caret,.gb-markdown .btn.btn-primary .caret,a.btn.btn-primary .caret{border-top-color:#fff}.btn.btn-primary.btn-link,.btn.btn-primary.btn-noborder,.gb-markdown .btn.btn-primary.btn-link,.gb-markdown .btn.btn-primary.btn-noborder,a.btn.btn-primary.btn-link,a.btn.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-primary.btn-link:focus,.btn.btn-primary.btn-link:hover,.btn.btn-primary.btn-noborder:focus,.btn.btn-primary.btn-noborder:hover,.gb-markdown .btn.btn-primary.btn-link:focus,.gb-markdown .btn.btn-primary.btn-link:hover,.gb-markdown .btn.btn-primary.btn-noborder:focus,.gb-markdown .btn.btn-primary.btn-noborder:hover,a.btn.btn-primary.btn-link:focus,a.btn.btn-primary.btn-link:hover,a.btn.btn-primary.btn-noborder:focus,a.btn.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-primary.btn-outline,.gb-markdown .btn.btn-primary.btn-outline,a.btn.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}.btn.btn-primary.btn-outline .caret,.gb-markdown .btn.btn-primary.btn-outline .caret,a.btn.btn-primary.btn-outline .caret{border-top-color:#428bca}.btn.btn-primary.btn-outline:focus,.btn.btn-primary.btn-outline:hover,.gb-markdown .btn.btn-primary.btn-outline:focus,.gb-markdown .btn.btn-primary.btn-outline:hover,a.btn.btn-primary.btn-outline:focus,a.btn.btn-primary.btn-outline:hover{background:#428bca;color:#fff}.btn.btn-primary.btn-outline:focus .caret,.btn.btn-primary.btn-outline:hover .caret,.gb-markdown .btn.btn-primary.btn-outline:focus .caret,.gb-markdown .btn.btn-primary.btn-outline:hover .caret,a.btn.btn-primary.btn-outline:focus .caret,a.btn.btn-primary.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-primary,.gb-markdown .btn.btn-text-primary,a.btn.btn-text-primary{color:#3071a9}.btn.btn-danger,.gb-markdown .btn.btn-danger,a.btn.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}.btn.btn-danger:focus,.btn.btn-danger:hover,.gb-markdown .btn.btn-danger:focus,.gb-markdown .btn.btn-danger:hover,a.btn.btn-danger:focus,a.btn.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}.btn.btn-danger .caret,.gb-markdown .btn.btn-danger .caret,a.btn.btn-danger .caret{border-top-color:#fff}.btn.btn-danger.btn-link,.btn.btn-danger.btn-noborder,.gb-markdown .btn.btn-danger.btn-link,.gb-markdown .btn.btn-danger.btn-noborder,a.btn.btn-danger.btn-link,a.btn.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}.btn.btn-danger.btn-link:focus,.btn.btn-danger.btn-link:hover,.btn.btn-danger.btn-noborder:focus,.btn.btn-danger.btn-noborder:hover,.gb-markdown .btn.btn-danger.btn-link:focus,.gb-markdown .btn.btn-danger.btn-link:hover,.gb-markdown .btn.btn-danger.btn-noborder:focus,.gb-markdown .btn.btn-danger.btn-noborder:hover,a.btn.btn-danger.btn-link:focus,a.btn.btn-danger.btn-link:hover,a.btn.btn-danger.btn-noborder:focus,a.btn.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}.btn.btn-danger.btn-outline,.gb-markdown .btn.btn-danger.btn-outline,a.btn.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}.btn.btn-danger.btn-outline .caret,.gb-markdown .btn.btn-danger.btn-outline .caret,a.btn.btn-danger.btn-outline .caret{border-top-color:#dd4b39}.btn.btn-danger.btn-outline:focus,.btn.btn-danger.btn-outline:hover,.gb-markdown .btn.btn-danger.btn-outline:focus,.gb-markdown .btn.btn-danger.btn-outline:hover,a.btn.btn-danger.btn-outline:focus,a.btn.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}.btn.btn-danger.btn-outline:focus .caret,.btn.btn-danger.btn-outline:hover .caret,.gb-markdown .btn.btn-danger.btn-outline:focus .caret,.gb-markdown .btn.btn-danger.btn-outline:hover .caret,a.btn.btn-danger.btn-outline:focus .caret,a.btn.btn-danger.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-danger,.gb-markdown .btn.btn-text-danger,a.btn.btn-text-danger{color:#c23321}.btn .btn-label,.gb-markdown .btn .btn-label,a.btn .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}.tooltipped{display:inline;position:relative}.tooltipped.tooltipped-o:after,.tooltipped:hover:after{line-height:1em;background:rgba(0,0,0,.8);border-radius:2px;top:calc(100% + 10px);color:#fff;content:attr(aria-label);padding:5px;white-space:nowrap;z-index:4;font-size:13px;text-transform:none;font-weight:400;pointer-events:none}.tooltipped.tooltipped-o:after,.tooltipped.tooltipped-o:before,.tooltipped:hover:after,.tooltipped:hover:before{bottom:auto;display:block;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped.tooltipped-o:before,.tooltipped:hover:before{border:solid;border-color:rgba(0,0,0,.8) transparent;top:calc(100% + 5px);border-width:0 5px 5px;content:"";z-index:5}.tooltipped.tooltipped-e:after{left:5px}.tooltipped.tooltipped-e:after,.tooltipped.tooltipped-e:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-e:before{left:10px}.tooltipped.tooltipped-n:after{bottom:calc(100% + 10px)}.tooltipped.tooltipped-n:after,.tooltipped.tooltipped-n:before{top:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-n:before{border-width:5px 5px 0;bottom:calc(100% + 5px)}.tooltipped.tooltipped-ne:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:after{left:5px}.tooltipped.tooltipped-ne:after,.tooltipped.tooltipped-ne:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{left:10px}.tooltipped.tooltipped-nw:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:after{right:5px}.tooltipped.tooltipped-nw:after,.tooltipped.tooltipped-nw:before{left:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{right:10px}.tooltipped.tooltipped-sw:after,.tooltipped.tooltipped-w:after{left:auto;right:5px;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-sw:before,.tooltipped.tooltipped-w:before{left:auto;right:10px;-webkit-transform:translateX(0);transform:translateX(0)}.btn-group{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn{position:relative;float:left}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group.btn-group-block{width:100%;display:block}.btn-group .btn+.btn,.btn-group .btn-group+.btn{border-left:0}.btn-group .btn+.btn-group,.btn-group .btn-group+.btn-group{margin-left:-1px}.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-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{text-align:center;float:none;display:table-cell;width:1%}.btn-group.btn-group-justified>.btn-group .btn{width:100%}.btn-group.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-toolbar>.btn-toolbar{float:left;margin:0}.btn-toolbar.prepend{margin-bottom:20px}.caret{display:inline-block;width:0;height:0;content:"";vertical-align:-2px;border:4px solid #b3b3b1;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.btn-group.dropdown,.dropdown{position:relative;text-align:left;color:#333}.btn-group.dropdown.btn-group-block .dropdown-menu,.dropdown.btn-group-block .dropdown-menu{min-width:100%}.btn-group.dropdown>.dropdown-menu,.dropdown>.dropdown-menu{position:absolute;top:100%;right:0}.btn-group.dropdown.inner>.dropdown-menu,.btn-group.dropdown.open>.dropdown-menu,.dropdown.inner>.dropdown-menu,.dropdown.open>.dropdown-menu{display:block}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu,.dropdown:not(.contextmenu)>.dropdown-menu{margin-top:12px;overflow:visible!important}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu{left:0;right:auto}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{right:auto;left:16px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.btn-group.dropdown.contextmenu,.dropdown.contextmenu{position:fixed;z-index:7}.btn-group.dropdown.contextmenu .dropdown-menu,.dropdown.contextmenu .dropdown-menu{display:block;position:absolute;top:0;left:0}.btn-group.dropdown.contextmenu.contextmenu-w .dropdown-menu,.dropdown.contextmenu.contextmenu-w .dropdown-menu{left:auto;right:0}.btn-group.dropdown.contextmenu.contextmenu-n .dropdown-menu,.dropdown.contextmenu.contextmenu-n .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup>.dropdown-menu,.dropdown.dropup>.dropdown-menu{position:absolute;top:auto;bottom:100%}.btn-group.dropdown.dropup>.dropdown-menu li .dropdown-menu,.dropdown.dropup>.dropdown-menu li .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu,.dropdown.dropup:not(.contextmenu)>.dropdown-menu{margin-top:0;margin-bottom:12px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{top:100%;bottom:auo;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-top-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-top-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.dropdown-w>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu,.dropdown.pull-right>.dropdown-menu{left:auto;right:0}.btn-group.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu li>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.dropdown.pull-right>.dropdown-menu li>.dropdown-menu{left:auto;right:100%}.dropdown-menu,.dropdown .dropdown-menu{display:none;position:relative;z-index:3;list-style:none;border:1px solid #c9c9c9;background:#fff;min-width:160px;margin:0;padding:0;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.15);padding-top:5px;padding-bottom:5px}.dropdown-menu.inner,.dropdown-menu.open,.dropdown .dropdown-menu.inner,.dropdown .dropdown-menu.open{display:block}.dropdown-menu>li,.dropdown .dropdown-menu>li{margin:0;padding:0;position:relative}.dropdown-menu>li.divider,.dropdown .dropdown-menu>li.divider{height:1px;margin:5px 1px;background-color:#e5e5e5}.dropdown-menu>li.dropdown-header,.dropdown .dropdown-menu>li.dropdown-header{padding:4px 10px;font-size:12px;color:#999}.dropdown-menu>li.disabled:hover>a,.dropdown-menu>li.disabled:hover>a:hover,.dropdown-menu>li.disabled>a,.dropdown-menu>li.disabled>a:hover,.dropdown .dropdown-menu>li.disabled:hover>a,.dropdown .dropdown-menu>li.disabled:hover>a:hover,.dropdown .dropdown-menu>li.disabled>a,.dropdown .dropdown-menu>li.disabled>a:hover{cursor:default;background:transparent;color:#b3b3b1;pointer-events:none}.dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown-menu>li.disabled>.dropdown-menu,.dropdown .dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown .dropdown-menu>li.disabled>.dropdown-menu{display:none}.dropdown-menu>li>a,.dropdown .dropdown-menu>li>a{padding:4px 10px;cursor:default;color:inherit;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;text-shadow:none}.dropdown-menu>li>a .help-label,.dropdown .dropdown-menu>li>a .help-label{font-size:12px;color:#b3b3b1;margin-left:10px}.dropdown-menu>li>a:hover,.dropdown .dropdown-menu>li>a:hover{text-decoration:none;text-shadow:none;background:#428bca;color:#fff}.dropdown-menu>li>a:hover .help-label,.dropdown-menu>li>a:hover .text-muted,.dropdown .dropdown-menu>li>a:hover .help-label,.dropdown .dropdown-menu>li>a:hover .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>a:hover .dropdown-icon,.dropdown .dropdown-menu>li>a:hover .dropdown-icon{color:inherit}.dropdown-menu>li>a:not(:last-child),.dropdown .dropdown-menu>li>a:not(:last-child){position:relative}.dropdown-menu>li>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):after{bottom:9px;right:6px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-left-color:#b3b3b1;border-width:5px;margin-right:-5px}.dropdown-menu>li.active>a:not(:last-child):after,.dropdown-menu>li>a:not(:last-child):hover:after,.dropdown .dropdown-menu>li.active>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):hover:after{border-left-color:#fff}.dropdown-menu>li.active>a,.dropdown .dropdown-menu>li.active>a{background:#428bca;color:#fff}.dropdown-menu>li.active>a .help-label,.dropdown-menu>li.active>a .text-muted,.dropdown .dropdown-menu>li.active>a .help-label,.dropdown .dropdown-menu>li.active>a .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>.dropdown-menu,.dropdown .dropdown-menu>li>.dropdown-menu{position:absolute;right:auto;left:100%;margin-top:0;top:0;margin-top:-1px}.dropdown-menu>li:hover>.dropdown-menu,.dropdown .dropdown-menu>li:hover>.dropdown-menu{display:block}.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-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#333;text-align:center;background-color:#f5f5f5;border:1px solid #d4d4d4;border-radius:3px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:4px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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}.alert{border:1px solid #d4d4d4;background:#f5f5f5;border-radius:4px;padding:15px;margin-bottom:20px}.alert.alert-danger{background:#fcdede;border-color:#d2b2b2;color:#911}.alert.alert-warning{background:#fff2d0;border-color:#d6cdb1;color:#8d7726}.alert.alert-info{background:#e2eef9;border-color:#bac6d3;color:#246}.alert.alert-success{background:#dff0d8;border-color:#c0d1d0;color:#3c763d}.alert .alert-btn{display:inline-block;float:right;color:inherit;border-radius:3px;padding:0;opacity:.6;padding:0 5px}.alert a.alert-btn{text-decoration:none}.alert a.alert-btn:focus,.alert a.alert-btn:hover{opacity:.8;text-decoration:none}.gb-markdown{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.gb-markdown *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.gb-markdown>:first-child{margin-top:0!important}.gb-markdown>:last-child{margin-bottom:0!important}.gb-markdown blockquote,.gb-markdown code,.gb-markdown figure,.gb-markdown img,.gb-markdown pre,.gb-markdown table,.gb-markdown tr{page-break-inside:avoid}.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown p{orphans:3;widows:3}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5{page-break-after:avoid}.gb-markdown b,.gb-markdown strong{font-weight:700}.gb-markdown em{font-style:italic}.gb-markdown blockquote,.gb-markdown dl,.gb-markdown ol,.gb-markdown p,.gb-markdown table,.gb-markdown ul{margin-top:0;margin-bottom:.85em}.gb-markdown a{color:#4183c4;text-decoration:none;background:transparent}.gb-markdown a:active,.gb-markdown a:focus,.gb-markdown a:hover{outline:0;text-decoration:underline}.gb-markdown img{border:0;max-width:100%}.gb-markdown hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.gb-markdown hr:after,.gb-markdown hr:before{display:table;content:" "}.gb-markdown hr:after{clear:both}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.gb-markdown h1{font-size:2em}.gb-markdown h2{font-size:1.75em}.gb-markdown h3{font-size:1.5em}.gb-markdown h4{font-size:1.25em}.gb-markdown h5{font-size:1em}.gb-markdown h6{font-size:1em;color:#777}.gb-markdown code,.gb-markdown pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.gb-markdown pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.gb-markdown pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:transparent}.gb-markdown pre>code:after,.gb-markdown pre>code:before{content:normal}.gb-markdown code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.gb-markdown code:after,.gb-markdown code:before{letter-spacing:-.2em;content:"\00a0"}.gb-markdown table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.gb-markdown table td,.gb-markdown table th{padding:6px 13px;border:1px solid #ddd}.gb-markdown table tr{background-color:#fff;border-top:1px solid #ccc}.gb-markdown table tr:nth-child(2n){background-color:#f8f8f8}.gb-markdown table th{font-weight:700}.gb-markdown ol,.gb-markdown ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.gb-markdown ol ol,.gb-markdown ol ul,.gb-markdown ul ol,.gb-markdown ul ul{margin-top:0;margin-bottom:0}.gb-markdown ol ol{list-style-type:lower-roman}.gb-markdown blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.gb-markdown blockquote:first-child{margin-top:0}.gb-markdown blockquote:last-child{margin-bottom:0}.gb-markdown dl{padding:0}.gb-markdown dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.gb-markdown dl dd{padding:0 .85em;margin-bottom:.85em}.gb-markdown dd{margin-left:0}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:2px;color:#333;box-shadow:0 1px 1px rgba(0,0,0,.05)}.btn-toolbar+.panel{margin-top:20px}.panel .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel .panel-heading .panel-title{margin:0;padding:0;font-size:inherit;font-weight:500;line-height:19px;margin-top:-2px;margin-bottom:-2px}.panel .panel-heading .panel-title a{color:inherit}.panel .panel-heading .panel-title a:focus,.panel .panel-heading .panel-title a:hover{text-decoration:none;color:inherit}.panel .panel-heading .panel-title.large{text-align:center;font-size:22px;font-weight:400}.panel .panel-heading .panel-toolbar{float:right;margin-top:-5px;margin-right:-5px}.panel .panel-heading .panel-toolbar .btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.panel>.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.panel>.blankslate.with-background{border-radius:0;border:0}.panel>hr{margin:0}.panel .panel-body{padding:15px}.panel .panel-footer{padding:10px 15px;background-color:#fcfcfc;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel.panel-default{border-color:#d4d4d4}.panel.panel-default .panel-heading{color:#333;background-color:#f5f5f5;border-color:#d4d4d4}.panel.panel-danger{border-color:#d2b2b2}.panel.panel-danger .panel-heading{color:#911;background-color:#fcdede;border-color:#d2b2b2}.panel.panel-warning{border-color:#d6cdb1}.panel.panel-warning .panel-heading{color:#8d7726;background-color:#fff2d0;border-color:#d6cdb1}.panel.panel-info{border-color:#bac6d3}.panel.panel-info .panel-heading{color:#246;background-color:#e2eef9;border-color:#bac6d3}.panel.panel-success{border-color:#c0d1d0}.panel.panel-success .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#c0d1d0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d4d4d4}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.list-group{padding:0;margin:0;list-style:none;margin-bottom:20px;padding-left:0}.list-group li.list-group-item a{color:inherit;text-decoration:none}.list-group .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;color:#555;background-color:#fff;border:1px solid #d4d4d4}.list-group .list-group-item:focus,.list-group .list-group-item:hover{text-decoration:none;background:#f8f8f8}.list-group .list-group-item.active{color:#dd4b39;border-left:4px solid #dd4b39!important;font-weight:500;background:#f8f8f8;padding-left:11px}.list-group .list-group-item:first-child{margin-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.list-group .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.list-group .list-group-item .list-image{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-right:5px;width:20px;height:20px}.list-group .list-group-item .badge{display:inline-block;padding:3px 7px;font-size:12px;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;border-radius:10px;float:right}.list-group .list-group-item i.pull-right{float:right;margin-top:3px}.modal>.list-group,.panel>.list-group{margin:0}.modal>.list-group .list-group-item,.panel>.list-group .list-group-item{border-left:0;border-right:0}.modal>.list-group .list-group-item:first-child,.panel>.list-group .list-group-item:first-child{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0}.modal>.list-group .list-group-item:last-child,.panel>.list-group .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.filter-list,ul.filter-list{list-style:none;margin:0;padding:0;margin-bottom:20px}.filter-list li .filter-item,ul.filter-list li .filter-item{position:relative;display:block;padding:6px 12px;margin-bottom:5px;font-size:14px;color:#737373;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px}.filter-list li .filter-item .count,ul.filter-list li .filter-item .count{float:right;font-weight:500}.filter-list li .filter-item:hover,ul.filter-list li .filter-item:hover{text-decoration:none;color:#737373;background-color:#eee}.filter-list li .filter-item.selected,.filter-list li .filter-item.selected:hover,ul.filter-list li .filter-item.selected,ul.filter-list li .filter-item.selected:hover{color:#fff;background-color:#428bca}.modal-backdrop{background:rgba(0,0,0,.55);position:fixed;top:0;bottom:0;left:0;right:0;z-index:6;overflow-y:auto}.modal-backdrop.white{background:hsla(0,0%,100%,.55)}.modal{border:1px solid rgba(0,0,0,.65);border-radius:4px;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.5);width:600px;margin:30px auto}.modal.without-backdrop{border-color:#d4d4d4;box-shadow:0 1px 2px #ddd}.modal .modal-heading+.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.modal .modal-heading{position:relative;padding:15px;border-bottom:1px solid #e5e5e5}.modal .modal-heading h4{margin:0}.modal .modal-heading .modal-close{position:absolute;line-height:24px;top:50%;margin-top:-15px;right:15px;color:#d4d4d4;font-size:30px}.modal .modal-heading .modal-close:hover{color:#bbb;text-decoration:none}.modal .modal-body{padding:15px}.modal .modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal.modal-sm{width:400px;margin:30px auto}.modal.modal-lg{width:800px;margin:30px auto}.modal.modal-fullscreen{display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;margin:0;position:absolute;top:30px;bottom:30px;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.modal.modal-fullscreen .modal-heading{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.modal.modal-fullscreen .modal-body{position:relative;-moz-flex-grow:1000000;-ms-flex-grow:1000000;flex-grow:1000000}.modal.modal-fullscreen .modal-footer{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}@-webkit-keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.gb-spinner{display:inline-block;border-radius:100%;border:5px solid #f5f5f5;border-bottom-color:#428bca;-webkit-animation:b 1.5s 0s linear infinite;-moz-animation:b 1.5s 0s linear infinite;-ms-animation:b 1.5s 0s linear infinite;width:30px;height:30px;border-width:3px}.gb-spinner.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.gb-spinner.spinner-sm{width:12px;height:12px;border-width:1.2px}.gb-spinner.spinner-sm.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-6px;margin-top:-6px}.gb-spinner.spinner-lg{width:50px;height:50px;border-width:5px}.gb-spinner.spinner-lg.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-25px;margin-top:-25px}.label{display:inline-block;margin:0;padding:3px 4px 4px;font-size:11px;font-weight:500;line-height:11px;text-transform:uppercase;vertical-align:middle;border-radius:3px;color:#666;background-color:#eee}.label.label-warning{color:#9d852a;background-color:#fff8e4;border-color:#ddd6be}.label.label-info{background-color:#f3f8fc;color:#274e75;border-color:#c6d0db}.label.label-success{background-color:#ebf6e7;color:#438444;border-color:#ccdad9}.label.label-danger{background-color:#fef1f1;color:#ab1313;border-color:#dabfbf}a.label:hover{color:#428bca;text-decoration:none}.form-control{width:100%;font-size:1.1rem;border:1px solid #d4d4d4;background:#fff;outline:none;color:#333;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.form-control.focus,.form-control:focus{outline:none;border-color:#428bca;background:#fff}.form-control.disabled,.form-control:disabled{border-color:#d4d4d4;background:#f5f5f5}.form-control.input-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-control.input-sm{padding:5px 10px}.form-control.input-sm,.form-control.input-xs{font-size:12px;line-height:1.5;border-radius:2px}.form-control.input-xs{padding:2px 7px}select.form-control{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;position:relative;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#ededed);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control .caret{border-top-color:#333}select.form-control .octicon{line-height:1em}select.form-control.dropdown-toggle.open,select.form-control:focus,select.form-control:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}select.form-control.active,select.form-control:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}select.form-control.disabled,select.form-control:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}select.form-control.disabled.tooltipped:after,select.form-control.disabled.tooltipped:before,select.form-control:disabled.tooltipped:after,select.form-control:disabled.tooltipped:before{display:none}select.form-control.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}select.form-control.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-right{float:right!important;margin-left:16px}select.form-control.btn-left{float:left!important;margin-right:16px}select.form-control.btn-block{display:block;width:100%;text-align:center}select.form-control.btn-block+.btn-block{margin-top:5px}select.form-control.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}select.form-control.btn-link:focus,select.form-control.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-link .caret{border-top-color:#fff}select.form-control.btn-link.btn-link,select.form-control.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-link.btn-link:focus,select.form-control.btn-link.btn-link:hover,select.form-control.btn-link.btn-noborder:focus,select.form-control.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-link:focus,select.form-control.btn-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-text-link{background:transparent;border-color:transparent;color:inherit}select.form-control.btn-text-link:focus,select.form-control.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-text-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-count{color:#333;background:#fff}select.form-control.btn-count:focus,select.form-control.btn-count:hover{background:#fff;color:#428bca}select.form-control.btn-count.disabled,select.form-control.btn-count:disabled{background:#fff;color:#333}select.form-control.btn-count .caret{border-top-color:#333}select.form-control.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}select.form-control.btn-success:focus,select.form-control.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}select.form-control.btn-success .caret{border-top-color:#fff}select.form-control.btn-success.btn-link,select.form-control.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}select.form-control.btn-success.btn-link:focus,select.form-control.btn-success.btn-link:hover,select.form-control.btn-success.btn-noborder:focus,select.form-control.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}select.form-control.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}select.form-control.btn-success.btn-outline .caret{border-top-color:#5cb85c}select.form-control.btn-success.btn-outline:focus,select.form-control.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}select.form-control.btn-success.btn-outline:focus .caret,select.form-control.btn-success.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-success{color:#449d44}select.form-control.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}select.form-control.btn-primary:focus,select.form-control.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-primary .caret{border-top-color:#fff}select.form-control.btn-primary.btn-link,select.form-control.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-primary.btn-link:focus,select.form-control.btn-primary.btn-link:hover,select.form-control.btn-primary.btn-noborder:focus,select.form-control.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}select.form-control.btn-primary.btn-outline .caret{border-top-color:#428bca}select.form-control.btn-primary.btn-outline:focus,select.form-control.btn-primary.btn-outline:hover{background:#428bca;color:#fff}select.form-control.btn-primary.btn-outline:focus .caret,select.form-control.btn-primary.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-primary{color:#3071a9}select.form-control.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}select.form-control.btn-danger:focus,select.form-control.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}select.form-control.btn-danger .caret{border-top-color:#fff}select.form-control.btn-danger.btn-link,select.form-control.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}select.form-control.btn-danger.btn-link:focus,select.form-control.btn-danger.btn-link:hover,select.form-control.btn-danger.btn-noborder:focus,select.form-control.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}select.form-control.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}select.form-control.btn-danger.btn-outline .caret{border-top-color:#dd4b39}select.form-control.btn-danger.btn-outline:focus,select.form-control.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}select.form-control.btn-danger.btn-outline:focus .caret,select.form-control.btn-danger.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-danger{color:#c23321}select.form-control .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}select.form-control:focus,select.form-control:hover{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#e3e3e3);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control:focus{border-color:#428bca}.checkbox,.form-group .checkbox,.form-group .radio,.radio{display:block;min-height:20px;margin-bottom:12px;padding-left:20px;vertical-align:middle}.checkbox input[type=checkbox],.checkbox input[type=radio],.form-group .checkbox input[type=checkbox],.form-group .checkbox input[type=radio],.form-group .radio input[type=checkbox],.form-group .radio input[type=radio],.radio input[type=checkbox],.radio input[type=radio]{float:left;margin-top:3px;margin-left:-20px}.checkbox label,.form-group .checkbox label,.form-group .radio label,.radio label{display:inline;margin-bottom:0;font-weight:400;cursor:pointer}.form-group{margin-bottom:12px}.form-group label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:500}.form-group label .note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#767676}.form-group.has-error .help-block,.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control{border-color:#dd4b39}.form-horizontal .form-group{zoom:1}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:"";display:table}.form-horizontal .form-group:after{clear:both}.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 .btn{vertical-align:middle}.pagehead{zoom:1;margin:0 auto;padding:0;text-align:center;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.pagehead:after,.pagehead:before{content:"";display:table}.pagehead:after{clear:both}.pagehead .avatar{display:inline-block;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-top:17px;margin-right:9px;width:30px;height:30px}.pagehead .avatar img{width:100%;height:100%;border-radius:3px}.pagehead h1{float:left;font-size:24px;padding:0;margin:0;line-height:65px;font-weight:400}.pagehead h1 a{color:inherit;text-decoration:none}.pagehead h1 a:hover{color:#428bca;text-decoration:none}.pagehead h1>i{line-height:1em}.pagehead .btn{float:left;margin-top:16px}.pagehead .menu{list-style:none;zoom:1;margin:0;padding:0;float:right;text-align:center}.pagehead .menu:after,.pagehead .menu:before{content:"";display:table}.pagehead .menu:after{clear:both}.pagehead .menu.center{float:none}.pagehead .menu.left{float:left}.pagehead .menu li{display:inline-block}.pagehead .menu li>a{color:#8d8d8a;padding:25px 15px;margin-bottom:-1px;border-bottom:1px solid #e5e5e5;letter-spacing:-.02em;font-weight:500;font-style:normal;font-size:11px;letter-spacing:.2em;text-transform:uppercase;display:inline-block}.pagehead .menu li>a i{font-size:16px;line-height:1em}.pagehead .menu li>a:focus,.pagehead .menu li>a:hover{text-decoration:none}.pagehead .menu li.active>a{padding-bottom:23px;border-width:3px;border-color:#dd4b39;font-weight:700}.pagehead .menu li:first-child>a{margin-left:0}.pagehead .menu li:last-child>a{margin-right:0}.pagehead .btn-group.open .dropdown-toggle{box-shadow:none}.pagehead .search-bar{width:100%;max-width:300px;margin-top:13px;background:#fff;border:1px solid #e5e5e5;position:relative;cursor:text}.pagehead .search-bar i{position:absolute;left:8px;font-size:16px;line-height:34px;color:#bbb}.pagehead .search-bar input{border:none;box-shadow:none;height:34px;padding-left:30px;background:transparent}.blankslate{width:100%;max-width:400px;margin:80px auto;text-align:center;padding:20px}@media (max-height:800px){.blankslate{margin:40px auto}}.blankslate .icon{font-size:64px;line-height:120px;color:#b3b3b1}.blankslate h3{margin:10px 0;margin-top:0;font-size:22px;font-weight:500}.blankslate p{margin:10px 0}.blankslate.with-background{background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;background-clip:padding-box;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate.full-width{max-width:100%;margin:0;padding:80px}.blankslate-layout{width:100%;height:100%;display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;align-items:center;justify-content:center}.blankslate-layout.with-background{background-color:#fafafa;border:1px solid #e5e5e5;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate-layout .blankslate{margin:0;padding-bottom:50px}.tabs>.tabs-nav{margin:0;padding:0;list-style:none;width:100%;border-bottom:0;border-bottom:1px solid #d4d4d4;zoom:1}.tabs>.tabs-nav:after,.tabs>.tabs-nav:before{content:"";display:table}.tabs>.tabs-nav:after{clear:both}.tabs>.tabs-nav>li{margin:0;float:left;margin-bottom:-1px}.tabs>.tabs-nav>li>a{position:relative;display:block;padding:10px 15px;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:3px 3px 0 0;color:#b3b3b1;border-bottom:1px solid #d4d4d4;margin-right:0}.tabs>.tabs-nav>li>a:focus,.tabs>.tabs-nav>li>a:hover{text-decoration:none}.tabs>.tabs-nav>li.active>a{color:#555;background-color:#fff;border:1px solid #d4d4d4;border-bottom-color:#fff;cursor:default}.tabs>.tabs-nav.justified>li{float:none;display:table-cell;width:1%}.tabs>.tabs-nav.justified>li a{text-align:center;margin-bottom:-1px}.tabs .tabs-content .tab-pane{display:none}.tabs .tabs-content .tab-pane.active{display:block}.tabs>.tabs-content{margin-top:20px}.tabs.tabs-fluid>.tabs-content{margin:0}.pagination{margin:0;zoom:1}.pagination:after,.pagination:before{content:"";display:table}.pagination:after{clear:both}.pagination .pagination-nav,.pagination .pagination-pages{display:inline-block;padding-left:0;margin:15px 0;border-radius:2px}.pagination .pagination-nav li,.pagination .pagination-pages li{display:inline}.pagination .pagination-nav li a,.pagination .pagination-nav li span,.pagination .pagination-pages li a,.pagination .pagination-pages li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#737373;background-color:#fff;border:1px solid #d4d4d4;margin-left:-1px}.pagination .pagination-nav li:first-child a,.pagination .pagination-nav li:first-child span,.pagination .pagination-pages li:first-child a,.pagination .pagination-pages li:first-child span{border-top-left-radius:2px;border-bottom-left-radius:2px}.pagination .pagination-nav li:last-child a,.pagination .pagination-nav li:last-child span,.pagination .pagination-pages li:last-child a,.pagination .pagination-pages li:last-child span{border-top-right-radius:2px;border-bottom-right-radius:2px}.pagination .pagination-nav li .separator,.pagination .pagination-pages li .separator{cursor:default;letter-spacing:3px}.pagination .pagination-nav li a:hover,.pagination .pagination-pages li a:hover{background:#f5f5f5;color:#4f4f52;border-color:#d4d4d4}.pagination .pagination-nav li.active a,.pagination .pagination-pages li.active a{cursor:default;z-index:1;color:#5cb85c;border-color:#5cb85c;background:#fff}.pagination .pagination-pages{float:left}.pagination .pagination-nav{float:right}.badge{display:inline-block;padding:1px 3px;font-size:11px;font-weight:500;line-height:1;color:#666;background-color:#eee;border-radius:20px;border:1px solid #ccc;min-width:18px;text-align:center;letter-spacing:initial}.badge.badge-warning{background-color:#fff2d0;color:#8d7726;border-color:#d6cdb1}.badge.badge-info{background-color:#e2eef9;color:#246;border-color:#bac6d3}.badge.badge-success{background-color:#dff0d8;color:#3c763d;border-color:#c0d1d0}.badge.badge-danger{background-color:#fcdede;color:#911;border-color:#d2b2b2}.gb-page-wrapper{min-height:100%;position:relative;padding-bottom:60px}.gb-page-wrapper.for-modal{padding-bottom:1px;background:#f5f5f5}.gb-page-header{position:relative;z-index:2;width:100%;padding:10px 0;background:#fff;color:#555;border-bottom:1px solid #ddd;border-top:2px solid #4d4d4f;box-shadow:0 3px 2px -2px hsla(0,0%,78%,.2)}.gb-page-header .container{zoom:1}.gb-page-header .container:after,.gb-page-header .container:before{content:"";display:table}.gb-page-header .container:after{clear:both}.gb-page-header .container .logo{color:inherit}.gb-page-header .container .logo:hover{text-decoration:none}.gb-page-header .container .logo img{height:34px;float:left;margin-right:8px;margin-top:3px}.gb-page-header .container .logo h1{font-size:18px;font-weight:700;line-height:38px;display:inline-block;margin:0;padding:0 0 0 10px;text-shadow:none;color:#4d4d4f}.gb-page-header .container .btn{text-decoration:none;margin:2px 4px;box-shadow:none!important;text-transform:uppercase}.gb-page-header .container .btn:hover{text-decoration:none}.gb-page-header .container .btn.btn-link{color:inherit}.gb-page-header .container .btn.btn-link:hover{color:#428bca}.gb-page-header .container .btn.btn-icon{margin:1px 0;font-size:16px;padding:5px 10px}.gb-page-header .container .btn .caret{border-top-color:#555}.gb-page-header .container img.avatar{width:24px;height:24px;border-radius:3px;float:left;margin-right:6px;margin-top:-2px;margin-bottom:-2px}.gb-page-header .container .dropdown-menu{top:44px;width:180px}.gb-page-body{position:relative;z-index:1}.gb-page-body .gb-page-inner{margin:30px 0}.gb-page-footer{position:absolute;bottom:0;width:100%;height:60px;margin:0}.gb-page-footer .container .menu{list-style:none;margin:0;padding:0;zoom:1;border-top:1px solid #f5f5f5}.gb-page-footer .container .menu:after,.gb-page-footer .container .menu:before{content:"";display:table}.gb-page-footer .container .menu:after{clear:both}.gb-page-footer .container .menu>li{float:left}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>span{padding:19.5px 10px;display:inline-block;color:#999;text-transform:uppercase;letter-spacing:.2px;font-size:12px;line-height:20px;font-weight:400;height:59px}.gb-page-footer .container .menu>li>a.service-info,.gb-page-footer .container .menu>li>span.service-info{color:#818181;font-weight:400}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>a:focus,.gb-page-footer .container .menu>li>a:hover{text-decoration:none}body{background:#fff!important}a:hover{text-decoration:none}.text-small-title{font-size:65%;color:#95a5a6}.hb-btn{margin:5px}.hb-bg-danger,.hb-bg-default,.hb-bg-primary,.hb-bg-success,.hb-bg-warning{padding:20px}*{box-sizing:border-box}body,html{width:100%;height:100%;color:#333;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.42857143;background:#fff;letter-spacing:.3px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;font-smoothing:antialiased}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight{margin:0}.gb-markdown{font-size:16px}.docs-footer{margin-top:20px;padding:15px 0;text-align:right;border-top:4px solid #eee}.docs-example{position:relative;padding:15px;line-height:1.4;border:1px solid #e5e5e5;border-radius:.25rem .25rem 0 0;font-size:14px}.docs-example+.highlight{margin-top:-1px;border:1px solid #e5e5e5;border-radius:0 0 .25rem .25rem;margin-bottom:30px}.docs-example+.highlight>pre{margin:0}.docs-colors{zoom:1}.docs-colors:after,.docs-colors:before{content:"";display:table}.docs-colors:after{clear:both}.docs-colors .color{border-radius:3px;padding:12px 6px;margin:4px 0;color:#fff;text-align:center}.docs-colors .color.palette-black{background:#2d2d2d}.docs-colors .color.palette-gray-light{background:#fcfcfc;color:inherit}.docs-colors .color.palette-gray{background:#f5f5f5;color:inherit}.docs-colors .color.palette-gray-outline{background:#d4d4d4;color:inherit}.docs-colors .color.palette-gray-dark{background:#e5e5e5;color:inherit}.docs-colors .color.palette-gray-darker{background:#b3b3b1;color:inherit}.docs-colors .color.palette-darkgray{background:#4f4f52}.docs-colors .color.palette-blue{background:#428bca}.docs-colors .color.palette-green{background:#5cb85c}.docs-colors .color.palette-orange{background:#f0ad4e}.docs-colors .color.palette-clearblue{background:#44b6f1}.docs-colors .color.palette-red{background:#dd4b39}.docs-colors .color.palette-logo{background:#4d4d4f} \ No newline at end of file +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:500}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:500}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.btn-toolbar,.clearfix,.dl-horizontal dd{zoom:1}.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.dl-horizontal dd:after,.dl-horizontal dd:before{content:"";display:table}.btn-toolbar:after,.clearfix:after,.dl-horizontal dd:after{clear:both}.hidden{display:none}.container{position:relative;width:100%;max-width:1200px;margin:0;padding:0;margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px;box-sizing:border-box}.container.container-fluid{padding:0}.container [class*=col-]{float:left;width:100%;padding-left:15px;padding-right:15px}@media (min-width:510px){.container{max-width:510px}.container .col-xs-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-0{margin-left:0}.container .col-xs-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-1{margin-left:8.33333333%}.container .col-xs-3{width:25%;padding-left:15px;padding-right:15px}.container .col-xs-offset-2{margin-left:16.66666667%}.container .col-xs-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-3{margin-left:25%}.container .col-xs-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-4{margin-left:33.33333333%}.container .col-xs-6{width:50%;padding-left:15px;padding-right:15px}.container .col-xs-offset-5{margin-left:41.66666667%}.container .col-xs-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-6{margin-left:50%}.container .col-xs-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-7{margin-left:58.33333333%}.container .col-xs-9{width:75%;padding-left:15px;padding-right:15px}.container .col-xs-offset-8{margin-left:66.66666667%}.container .col-xs-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-xs-offset-9{margin-left:75%}.container .col-xs-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-xs-offset-10{margin-left:83.33333333%}.container .col-xs-12{width:100%;padding-left:15px;padding-right:15px}.container .col-xs-offset-11{margin-left:91.66666667%}}@media (min-width:750px){.container{max-width:750px}.container .col-sm-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-0{margin-left:0}.container .col-sm-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-1{margin-left:8.33333333%}.container .col-sm-3{width:25%;padding-left:15px;padding-right:15px}.container .col-sm-offset-2{margin-left:16.66666667%}.container .col-sm-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-3{margin-left:25%}.container .col-sm-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-4{margin-left:33.33333333%}.container .col-sm-6{width:50%;padding-left:15px;padding-right:15px}.container .col-sm-offset-5{margin-left:41.66666667%}.container .col-sm-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-6{margin-left:50%}.container .col-sm-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-7{margin-left:58.33333333%}.container .col-sm-9{width:75%;padding-left:15px;padding-right:15px}.container .col-sm-offset-8{margin-left:66.66666667%}.container .col-sm-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-sm-offset-9{margin-left:75%}.container .col-sm-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-sm-offset-10{margin-left:83.33333333%}.container .col-sm-12{width:100%;padding-left:15px;padding-right:15px}.container .col-sm-offset-11{margin-left:91.66666667%}}@media (min-width:970px){.container{max-width:970px}.container .col-md-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-0{margin-left:0}.container .col-md-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-1{margin-left:8.33333333%}.container .col-md-3{width:25%;padding-left:15px;padding-right:15px}.container .col-md-offset-2{margin-left:16.66666667%}.container .col-md-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-3{margin-left:25%}.container .col-md-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-4{margin-left:33.33333333%}.container .col-md-6{width:50%;padding-left:15px;padding-right:15px}.container .col-md-offset-5{margin-left:41.66666667%}.container .col-md-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-6{margin-left:50%}.container .col-md-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-7{margin-left:58.33333333%}.container .col-md-9{width:75%;padding-left:15px;padding-right:15px}.container .col-md-offset-8{margin-left:66.66666667%}.container .col-md-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-md-offset-9{margin-left:75%}.container .col-md-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-md-offset-10{margin-left:83.33333333%}.container .col-md-12{width:100%;padding-left:15px;padding-right:15px}.container .col-md-offset-11{margin-left:91.66666667%}}@media (min-width:1200px){.container{max-width:1200px}.container .col-lg-1{width:8.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-0{margin-left:0}.container .col-lg-2{width:16.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-1{margin-left:8.33333333%}.container .col-lg-3{width:25%;padding-left:15px;padding-right:15px}.container .col-lg-offset-2{margin-left:16.66666667%}.container .col-lg-4{width:33.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-3{margin-left:25%}.container .col-lg-5{width:41.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-4{margin-left:33.33333333%}.container .col-lg-6{width:50%;padding-left:15px;padding-right:15px}.container .col-lg-offset-5{margin-left:41.66666667%}.container .col-lg-7{width:58.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-6{margin-left:50%}.container .col-lg-8{width:66.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-7{margin-left:58.33333333%}.container .col-lg-9{width:75%;padding-left:15px;padding-right:15px}.container .col-lg-offset-8{margin-left:66.66666667%}.container .col-lg-10{width:83.33333333%;padding-left:15px;padding-right:15px}.container .col-lg-offset-9{margin-left:75%}.container .col-lg-11{width:91.66666667%;padding-left:15px;padding-right:15px}.container .col-lg-offset-10{margin-left:83.33333333%}.container .col-lg-12{width:100%;padding-left:15px;padding-right:15px}.container .col-lg-offset-11{margin-left:91.66666667%}}.row{margin-left:-15px;margin-right:-15px;zoom:1}.row:after,.row:before{content:"";display:table}.row:after{clear:both}@media (min-width:0) and (max-width:749px){.visible-xs{display:block!important}.hidden-xs{display:none!important}}@media (min-width:750px) and (max-width:969px){.visible-sm{display:block!important}.hidden-sm{display:none!important}}@media (min-width:970px) and (max-width:1199px){.visible-md{display:block!important}.hidden-md{display:none!important}}@media (min-width:970px){.visible-lg{display:block!important}.hidden-lg{display:none!important}}.hljs-comment,.hljs-title{color:#8e908c}.css .hljs-class,.css .hljs-id,.css .hljs-pseudo,.hljs-attribute,.hljs-regexp,.hljs-tag,.hljs-variable,.html .hljs-doctype,.ruby .hljs-constant,.xml .hljs-doctype,.xml .hljs-pi,.xml .hljs-tag .hljs-title{color:#c82829}.hljs-built_in,.hljs-constant,.hljs-literal,.hljs-number,.hljs-params,.hljs-pragma,.hljs-preprocessor{color:#f5871f}.css .hljs-rules .hljs-attribute,.ruby .hljs-class .hljs-title{color:#eab700}.hljs-header,.hljs-inheritance,.hljs-string,.hljs-value,.ruby .hljs-symbol,.xml .hljs-cdata{color:#718c00}.css .hljs-hexcolor{color:#3e999f}.coffeescript .hljs-title,.hljs-function,.javascript .hljs-title,.perl .hljs-sub,.python .hljs-decorator,.python .hljs-title,.ruby .hljs-function .hljs-title,.ruby .hljs-title .hljs-keyword{color:#4271ae}.hljs-keyword,.javascript .hljs-function{color:#8959a8}.hljs{background:#fff;color:#4d4d4c;padding:.5em}.coffeescript .javascript,.javascript .xml,.tex .hljs-formula,.xml .css,.xml .hljs-cdata,.xml .javascript,.xml .vbscript{opacity:.5}.pull-right{float:right!important}.pull-left{float:left!important}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0 0 0 0);border:0}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#737373}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}b,strong{font-weight:700}p{margin:0 0 10px}p.after{margin:0;margin-top:10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:750px){.lead{font-size:21px}}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}.small,small{font-size:85%}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap,.text-overflow{white-space:nowrap}.text-overflow{overflow:hidden;text-overflow:ellipsis}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-warning{color:#8d7726}.text-danger{color:#911}.text-info{color:#246}.text-success{color:#3c763d}.text-muted{color:#737373}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:500}dd{margin-left:0}@media (min-width:750px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #737373}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#737373}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}.checkbox-switch,.checkbox.checkbox-switch,.form-group .checkbox.checkbox-switch{padding-left:0;position:relative;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;tap-highlight-color:transparent}.checkbox-switch.switch-right,.checkbox.checkbox-switch.switch-right,.form-group .checkbox.checkbox-switch.switch-right{zoom:1}.checkbox-switch.switch-right:after,.checkbox-switch.switch-right:before,.checkbox.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:before,.form-group .checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:before{content:"";display:table}.checkbox-switch.switch-right:after,.checkbox.checkbox-switch.switch-right:after,.form-group .checkbox.checkbox-switch.switch-right:after{clear:both}.checkbox-switch.switch-right input+span,.checkbox.checkbox-switch.switch-right input+span,.form-group .checkbox.checkbox-switch.switch-right input+span{float:right}.checkbox-switch.switch-xs input+span,.checkbox.checkbox-switch.switch-xs input+span,.form-group .checkbox.checkbox-switch.switch-xs input+span{font-size:12px}.checkbox-switch.switch-lg input+span,.checkbox.checkbox-switch.switch-lg input+span,.form-group .checkbox.checkbox-switch.switch-lg input+span{font-size:18px}.checkbox-switch input,.checkbox.checkbox-switch input,.form-group .checkbox.checkbox-switch input{opacity:0;position:absolute}.checkbox-switch input+span,.checkbox.checkbox-switch input+span,.form-group .checkbox.checkbox-switch input+span{font-size:16px;position:relative;display:inline-block;width:1.65em;height:1em;background:#fff;box-shadow:inset 0 0 0 .0625em #d4d4d4;border-radius:.5em;vertical-align:-.15em;transition:all .4s cubic-bezier(.17,.67,.43,.98)}.checkbox-switch:active input+span,.checkbox-switch input+span:active,.checkbox.checkbox-switch:active input+span,.checkbox.checkbox-switch input+span:active,.form-group .checkbox.checkbox-switch:active input+span,.form-group .checkbox.checkbox-switch input+span:active{box-shadow:inset 0 0 0 .73em #d4d4d4}.checkbox-switch input+span:after,.checkbox.checkbox-switch input+span:after,.form-group .checkbox.checkbox-switch input+span:after{position:absolute;display:block;content:'';width:.875em;height:.875em;border-radius:.4375em;top:.0625em;left:.0625em;background:#fff;box-shadow:inset 0 0 0 .03em rgba(0,0,0,.4),0 0 .05em rgba(0,0,0,.35),0 .1em .2em rgba(0,0,0,.4);transition:all .25s ease-out}.checkbox-switch:active input+span:after,.checkbox-switch input+span:active:after,.checkbox.checkbox-switch:active input+span:after,.checkbox.checkbox-switch input+span:active:after,.form-group .checkbox.checkbox-switch:active input+span:after,.form-group .checkbox.checkbox-switch input+span:active:after{width:1.15em}.checkbox-switch input:checked+span,.checkbox.checkbox-switch input:checked+span,.form-group .checkbox.checkbox-switch input:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}.checkbox-switch input:disabled+span,.checkbox.checkbox-switch input:disabled+span,.form-group .checkbox.checkbox-switch input:disabled+span{opacity:.6}.checkbox-switch input:checked+span:after,.checkbox.checkbox-switch input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:after{left:.7125em}.checkbox-switch:active input:checked+span:after,.checkbox-switch input:checked+span:active:after,.checkbox.checkbox-switch:active input:checked+span:after,.checkbox.checkbox-switch input:checked+span:active:after,.form-group .checkbox.checkbox-switch:active input:checked+span:after,.form-group .checkbox.checkbox-switch input:checked+span:active:after{left:.4375em}.checkbox-switch input:focus+span:after,.checkbox.checkbox-switch input:focus+span:after,.form-group .checkbox.checkbox-switch input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.15),0 0 .05em rgba(0,0,0,.08),0 .1em .2em rgba(0,0,0,.3);background:#fff}.checkbox-switch input:focus+span,.checkbox.checkbox-switch input:focus+span,.form-group .checkbox.checkbox-switch input:focus+span{box-shadow:inset 0 0 0 .0625em #dadada}.checkbox-switch input:focus:checked+span,.checkbox.checkbox-switch input:focus:checked+span,.form-group .checkbox.checkbox-switch input:focus:checked+span{box-shadow:inset 0 0 0 .73em #33be4b}.checkbox-switch:hover input:focus+span:after,.checkbox.checkbox-switch:hover input:focus+span:after,.form-group .checkbox.checkbox-switch:hover input:focus+span:after{box-shadow:inset 0 0 0 .03em rgba(0,0,0,.1),0 0 .05em rgba(0,0,0,.05),0 .1em .2em rgba(0,0,0,.2);background:#fff}.checkbox-switch:hover input:focus+span,.checkbox.checkbox-switch:hover input:focus+span,.form-group .checkbox.checkbox-switch:hover input:focus+span{box-shadow:inset 0 0 0 .0625em #e9e9e9}.checkbox-switch:hover input:focus:checked+span,.checkbox.checkbox-switch:hover input:focus:checked+span,.form-group .checkbox.checkbox-switch:hover input:focus:checked+span{box-shadow:inset 0 0 0 .73em #5cb85c}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{color:#c7254e;background-color:#f9f2f4;border-radius:3px}code,kbd{padding:2px 4px;font-size:90%}kbd{color:#fff;background-color:#333;border-radius:2px;box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:500;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;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}a{text-decoration:none;color:#428bca}a:focus,a:hover{text-decoration:underline}a:visited{color:#428bca}.gb-markdown .muted-link,.gb-markdown .muted-link:visited,.muted-link,.muted-link:visited{color:#737373}.gb-markdown .muted-link:focus,.gb-markdown .muted-link:hover,.muted-link:focus,.muted-link:hover{text-decoration:none;color:#428bca}.gb-markdown .underlined-link,.underlined-link{color:inherit;text-decoration:underline}.gb-markdown .underlined-link:visited,.underlined-link:visited{color:inherit}.gb-markdown .underlined-link:focus,.gb-markdown .underlined-link:hover,.underlined-link:focus,.underlined-link:hover{text-decoration:underline;color:inherit}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#737373}caption,th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #d4d4d4;word-break:break-all}.table>thead>tr>th{vertical-align:bottom;background:#f5f5f5;border-bottom:1px solid #d4d4d4}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:1px solid #d4d4d4}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #d4d4d4}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#fcfcfc}.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-responsive{overflow-x:auto;min-height:.01%}@media screen and (max-width:510px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d4d4d4}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.button-nobackground{background:transparent;border-color:transparent}.button-nobackground:focus,.button-nobackground:hover{color:#428bca;background:none;box-shadow:none}.button-nobackground.active{background:none;box-shadow:none;font-weight:500}.btn,.gb-markdown .btn,a.btn{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;cursor:pointer;display:inline-block;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.btn .caret,.gb-markdown .btn .caret,a.btn .caret{border-top-color:#333}.btn .octicon,.gb-markdown .btn .octicon,a.btn .octicon{line-height:1em}.btn.dropdown-toggle.open,.btn:focus,.btn:hover,.gb-markdown .btn.dropdown-toggle.open,.gb-markdown .btn:focus,.gb-markdown .btn:hover,a.btn.dropdown-toggle.open,a.btn:focus,a.btn:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}.btn.active,.btn:active,.gb-markdown .btn.active,.gb-markdown .btn:active,a.btn.active,a.btn:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn:disabled,.gb-markdown .btn.disabled,.gb-markdown .btn:disabled,a.btn.disabled,a.btn:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}.btn.disabled.tooltipped:after,.btn.disabled.tooltipped:before,.btn:disabled.tooltipped:after,.btn:disabled.tooltipped:before,.gb-markdown .btn.disabled.tooltipped:after,.gb-markdown .btn.disabled.tooltipped:before,.gb-markdown .btn:disabled.tooltipped:after,.gb-markdown .btn:disabled.tooltipped:before,a.btn.disabled.tooltipped:after,a.btn.disabled.tooltipped:before,a.btn:disabled.tooltipped:after,a.btn:disabled.tooltipped:before{display:none}.btn.btn-lg,.gb-markdown .btn.btn-lg,a.btn.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.btn.btn-sm,.gb-markdown .btn.btn-sm,a.btn.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-xs,.gb-markdown .btn.btn-xs,a.btn.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.btn.btn-right,.gb-markdown .btn.btn-right,a.btn.btn-right{float:right!important;margin-left:16px}.btn.btn-left,.gb-markdown .btn.btn-left,a.btn.btn-left{float:left!important;margin-right:16px}.btn.btn-block,.gb-markdown .btn.btn-block,a.btn.btn-block{display:block;width:100%;text-align:center}.btn.btn-block+.btn-block,.gb-markdown .btn.btn-block+.btn-block,a.btn.btn-block+.btn-block{margin-top:5px}.btn.btn-link,.gb-markdown .btn.btn-link,a.btn.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-link .caret,.gb-markdown .btn.btn-link .caret,a.btn.btn-link .caret{border-top-color:#fff}.btn.btn-link.btn-link,.btn.btn-link.btn-noborder,.gb-markdown .btn.btn-link.btn-link,.gb-markdown .btn.btn-link.btn-noborder,a.btn.btn-link.btn-link,a.btn.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-link.btn-link:focus,.btn.btn-link.btn-link:hover,.btn.btn-link.btn-noborder:focus,.btn.btn-link.btn-noborder:hover,.gb-markdown .btn.btn-link.btn-link:focus,.gb-markdown .btn.btn-link.btn-link:hover,.gb-markdown .btn.btn-link.btn-noborder:focus,.gb-markdown .btn.btn-link.btn-noborder:hover,a.btn.btn-link.btn-link:focus,a.btn.btn-link.btn-link:hover,a.btn.btn-link.btn-noborder:focus,a.btn.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-link:focus,.btn.btn-link:hover,.gb-markdown .btn.btn-link:focus,.gb-markdown .btn.btn-link:hover,a.btn.btn-link:focus,a.btn.btn-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-link.active,.gb-markdown .btn.btn-link.active,a.btn.btn-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-text-link,.gb-markdown .btn.btn-text-link,a.btn.btn-text-link{background:transparent;border-color:transparent;color:inherit}.btn.btn-text-link:focus,.btn.btn-text-link:hover,.gb-markdown .btn.btn-text-link:focus,.gb-markdown .btn.btn-text-link:hover,a.btn.btn-text-link:focus,a.btn.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}.btn.btn-text-link.active,.gb-markdown .btn.btn-text-link.active,a.btn.btn-text-link.active{background:none;box-shadow:none;font-weight:500}.btn.btn-count,.gb-markdown .btn.btn-count,a.btn.btn-count{color:#333;background:#fff}.btn.btn-count:focus,.btn.btn-count:hover,.gb-markdown .btn.btn-count:focus,.gb-markdown .btn.btn-count:hover,a.btn.btn-count:focus,a.btn.btn-count:hover{background:#fff;color:#428bca}.btn.btn-count.disabled,.btn.btn-count:disabled,.gb-markdown .btn.btn-count.disabled,.gb-markdown .btn.btn-count:disabled,a.btn.btn-count.disabled,a.btn.btn-count:disabled{background:#fff;color:#333}.btn.btn-count .caret,.gb-markdown .btn.btn-count .caret,a.btn.btn-count .caret{border-top-color:#333}.btn.btn-success,.gb-markdown .btn.btn-success,a.btn.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}.btn.btn-success:focus,.btn.btn-success:hover,.gb-markdown .btn.btn-success:focus,.gb-markdown .btn.btn-success:hover,a.btn.btn-success:focus,a.btn.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}.btn.btn-success .caret,.gb-markdown .btn.btn-success .caret,a.btn.btn-success .caret{border-top-color:#fff}.btn.btn-success.btn-link,.btn.btn-success.btn-noborder,.gb-markdown .btn.btn-success.btn-link,.gb-markdown .btn.btn-success.btn-noborder,a.btn.btn-success.btn-link,a.btn.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}.btn.btn-success.btn-link:focus,.btn.btn-success.btn-link:hover,.btn.btn-success.btn-noborder:focus,.btn.btn-success.btn-noborder:hover,.gb-markdown .btn.btn-success.btn-link:focus,.gb-markdown .btn.btn-success.btn-link:hover,.gb-markdown .btn.btn-success.btn-noborder:focus,.gb-markdown .btn.btn-success.btn-noborder:hover,a.btn.btn-success.btn-link:focus,a.btn.btn-success.btn-link:hover,a.btn.btn-success.btn-noborder:focus,a.btn.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}.btn.btn-success.btn-outline,.gb-markdown .btn.btn-success.btn-outline,a.btn.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}.btn.btn-success.btn-outline .caret,.gb-markdown .btn.btn-success.btn-outline .caret,a.btn.btn-success.btn-outline .caret{border-top-color:#5cb85c}.btn.btn-success.btn-outline:focus,.btn.btn-success.btn-outline:hover,.gb-markdown .btn.btn-success.btn-outline:focus,.gb-markdown .btn.btn-success.btn-outline:hover,a.btn.btn-success.btn-outline:focus,a.btn.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}.btn.btn-success.btn-outline:focus .caret,.btn.btn-success.btn-outline:hover .caret,.gb-markdown .btn.btn-success.btn-outline:focus .caret,.gb-markdown .btn.btn-success.btn-outline:hover .caret,a.btn.btn-success.btn-outline:focus .caret,a.btn.btn-success.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-success,.gb-markdown .btn.btn-text-success,a.btn.btn-text-success{color:#449d44}.btn.btn-primary,.gb-markdown .btn.btn-primary,a.btn.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}.btn.btn-primary:focus,.btn.btn-primary:hover,.gb-markdown .btn.btn-primary:focus,.gb-markdown .btn.btn-primary:hover,a.btn.btn-primary:focus,a.btn.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}.btn.btn-primary .caret,.gb-markdown .btn.btn-primary .caret,a.btn.btn-primary .caret{border-top-color:#fff}.btn.btn-primary.btn-link,.btn.btn-primary.btn-noborder,.gb-markdown .btn.btn-primary.btn-link,.gb-markdown .btn.btn-primary.btn-noborder,a.btn.btn-primary.btn-link,a.btn.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}.btn.btn-primary.btn-link:focus,.btn.btn-primary.btn-link:hover,.btn.btn-primary.btn-noborder:focus,.btn.btn-primary.btn-noborder:hover,.gb-markdown .btn.btn-primary.btn-link:focus,.gb-markdown .btn.btn-primary.btn-link:hover,.gb-markdown .btn.btn-primary.btn-noborder:focus,.gb-markdown .btn.btn-primary.btn-noborder:hover,a.btn.btn-primary.btn-link:focus,a.btn.btn-primary.btn-link:hover,a.btn.btn-primary.btn-noborder:focus,a.btn.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}.btn.btn-primary.btn-outline,.gb-markdown .btn.btn-primary.btn-outline,a.btn.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}.btn.btn-primary.btn-outline .caret,.gb-markdown .btn.btn-primary.btn-outline .caret,a.btn.btn-primary.btn-outline .caret{border-top-color:#428bca}.btn.btn-primary.btn-outline:focus,.btn.btn-primary.btn-outline:hover,.gb-markdown .btn.btn-primary.btn-outline:focus,.gb-markdown .btn.btn-primary.btn-outline:hover,a.btn.btn-primary.btn-outline:focus,a.btn.btn-primary.btn-outline:hover{background:#428bca;color:#fff}.btn.btn-primary.btn-outline:focus .caret,.btn.btn-primary.btn-outline:hover .caret,.gb-markdown .btn.btn-primary.btn-outline:focus .caret,.gb-markdown .btn.btn-primary.btn-outline:hover .caret,a.btn.btn-primary.btn-outline:focus .caret,a.btn.btn-primary.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-primary,.gb-markdown .btn.btn-text-primary,a.btn.btn-text-primary{color:#3071a9}.btn.btn-danger,.gb-markdown .btn.btn-danger,a.btn.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}.btn.btn-danger:focus,.btn.btn-danger:hover,.gb-markdown .btn.btn-danger:focus,.gb-markdown .btn.btn-danger:hover,a.btn.btn-danger:focus,a.btn.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}.btn.btn-danger .caret,.gb-markdown .btn.btn-danger .caret,a.btn.btn-danger .caret{border-top-color:#fff}.btn.btn-danger.btn-link,.btn.btn-danger.btn-noborder,.gb-markdown .btn.btn-danger.btn-link,.gb-markdown .btn.btn-danger.btn-noborder,a.btn.btn-danger.btn-link,a.btn.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}.btn.btn-danger.btn-link:focus,.btn.btn-danger.btn-link:hover,.btn.btn-danger.btn-noborder:focus,.btn.btn-danger.btn-noborder:hover,.gb-markdown .btn.btn-danger.btn-link:focus,.gb-markdown .btn.btn-danger.btn-link:hover,.gb-markdown .btn.btn-danger.btn-noborder:focus,.gb-markdown .btn.btn-danger.btn-noborder:hover,a.btn.btn-danger.btn-link:focus,a.btn.btn-danger.btn-link:hover,a.btn.btn-danger.btn-noborder:focus,a.btn.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}.btn.btn-danger.btn-outline,.gb-markdown .btn.btn-danger.btn-outline,a.btn.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}.btn.btn-danger.btn-outline .caret,.gb-markdown .btn.btn-danger.btn-outline .caret,a.btn.btn-danger.btn-outline .caret{border-top-color:#dd4b39}.btn.btn-danger.btn-outline:focus,.btn.btn-danger.btn-outline:hover,.gb-markdown .btn.btn-danger.btn-outline:focus,.gb-markdown .btn.btn-danger.btn-outline:hover,a.btn.btn-danger.btn-outline:focus,a.btn.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}.btn.btn-danger.btn-outline:focus .caret,.btn.btn-danger.btn-outline:hover .caret,.gb-markdown .btn.btn-danger.btn-outline:focus .caret,.gb-markdown .btn.btn-danger.btn-outline:hover .caret,a.btn.btn-danger.btn-outline:focus .caret,a.btn.btn-danger.btn-outline:hover .caret{border-top-color:#fff}.btn.btn-text-danger,.gb-markdown .btn.btn-text-danger,a.btn.btn-text-danger{color:#c23321}.btn .btn-label,.gb-markdown .btn .btn-label,a.btn .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}.tooltipped{display:inline;position:relative}.tooltipped.tooltipped-o:after,.tooltipped:hover:after{line-height:1em;background:rgba(0,0,0,.8);border-radius:2px;top:calc(100% + 10px);color:#fff;content:attr(aria-label);padding:5px;white-space:nowrap;z-index:4;font-size:13px;text-transform:none;font-weight:400;pointer-events:none}.tooltipped.tooltipped-o:after,.tooltipped.tooltipped-o:before,.tooltipped:hover:after,.tooltipped:hover:before{bottom:auto;display:block;left:50%;position:absolute;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.tooltipped.tooltipped-o:before,.tooltipped:hover:before{border:solid;border-color:rgba(0,0,0,.8) transparent;top:calc(100% + 5px);border-width:0 5px 5px;content:"";z-index:5}.tooltipped.tooltipped-e:after{left:5px}.tooltipped.tooltipped-e:after,.tooltipped.tooltipped-e:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-e:before{left:10px}.tooltipped.tooltipped-n:after{bottom:calc(100% + 10px)}.tooltipped.tooltipped-n:after,.tooltipped.tooltipped-n:before{top:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-n:before{border-width:5px 5px 0;bottom:calc(100% + 5px)}.tooltipped.tooltipped-ne:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:after{left:5px}.tooltipped.tooltipped-ne:after,.tooltipped.tooltipped-ne:before{right:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-ne:before{left:10px}.tooltipped.tooltipped-nw:after{top:auto;bottom:calc(100% + 10px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{top:auto;border-width:5px 5px 0;bottom:calc(100% + 5px);-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:after{right:5px}.tooltipped.tooltipped-nw:after,.tooltipped.tooltipped-nw:before{left:auto;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-nw:before{right:10px}.tooltipped.tooltipped-sw:after,.tooltipped.tooltipped-w:after{left:auto;right:5px;-webkit-transform:translateX(0);transform:translateX(0)}.tooltipped.tooltipped-sw:before,.tooltipped.tooltipped-w:before{left:auto;right:10px;-webkit-transform:translateX(0);transform:translateX(0)}.btn-group{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn{position:relative;float:left}.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group.btn-group-block{width:100%;display:block}.btn-group .btn+.btn,.btn-group .btn-group+.btn{border-left:0}.btn-group .btn+.btn-group,.btn-group .btn-group+.btn-group{margin-left:-1px}.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-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group.btn-group-justified>.btn,.btn-group.btn-group-justified>.btn-group{text-align:center;float:none;display:table-cell;width:1%}.btn-group.btn-group-justified>.btn-group .btn{width:100%}.btn-group.btn-group-justified>.btn-group .dropdown-menu{left:auto}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-toolbar>.btn-toolbar{float:left;margin:0}.btn-toolbar.prepend{margin-bottom:20px}.caret{display:inline-block;width:0;height:0;content:"";vertical-align:-2px;border:4px solid #b3b3b1;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.btn-group.dropdown,.dropdown{position:relative;text-align:left;color:#333}.btn-group.dropdown.btn-group-block .dropdown-menu,.dropdown.btn-group-block .dropdown-menu{min-width:100%}.btn-group.dropdown>.dropdown-menu,.dropdown>.dropdown-menu{position:absolute;top:100%;right:0}.btn-group.dropdown.inner>.dropdown-menu,.btn-group.dropdown.open>.dropdown-menu,.dropdown.inner>.dropdown-menu,.dropdown.open>.dropdown-menu{display:block}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu,.dropdown:not(.contextmenu)>.dropdown-menu{margin-top:12px;overflow:visible!important}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:before,.dropdown:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown:not(.contextmenu)>.dropdown-menu:after,.dropdown:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu{left:0;right:auto}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{right:auto;left:16px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.btn-group.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after,.dropdown.pull-left:not(.contextmenu)>.dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.btn-group.dropdown.contextmenu,.dropdown.contextmenu{position:fixed;z-index:7}.btn-group.dropdown.contextmenu .dropdown-menu,.dropdown.contextmenu .dropdown-menu{display:block;position:absolute;top:0;left:0}.btn-group.dropdown.contextmenu.contextmenu-w .dropdown-menu,.dropdown.contextmenu.contextmenu-w .dropdown-menu{left:auto;right:0}.btn-group.dropdown.contextmenu.contextmenu-n .dropdown-menu,.dropdown.contextmenu.contextmenu-n .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup>.dropdown-menu,.dropdown.dropup>.dropdown-menu{position:absolute;top:auto;bottom:100%}.btn-group.dropdown.dropup>.dropdown-menu li .dropdown-menu,.dropdown.dropup>.dropdown-menu li .dropdown-menu{top:auto;bottom:0}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu,.dropdown.dropup:not(.contextmenu)>.dropdown-menu{margin-top:0;margin-bottom:12px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{top:100%;bottom:auo;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:before{border-color:transparent;border-top-color:#c9c9c9;border-width:11px;margin-right:-11px}.btn-group.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after,.dropdown.dropup:not(.contextmenu)>.dropdown-menu:after{border-color:transparent;border-top-color:#fff;border-width:10px;margin-right:-10px}.btn-group.dropdown.dropdown-w>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu,.dropdown.pull-right>.dropdown-menu{left:auto;right:0}.btn-group.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.btn-group.dropdown.pull-right>.dropdown-menu li>.dropdown-menu,.dropdown.dropdown-w>.dropdown-menu li>.dropdown-menu,.dropdown.pull-right>.dropdown-menu li>.dropdown-menu{left:auto;right:100%}.dropdown-menu,.dropdown .dropdown-menu{display:none;position:relative;z-index:3;list-style:none;border:1px solid #c9c9c9;background:#fff;min-width:160px;margin:0;padding:0;border-radius:3px;box-shadow:0 3px 12px rgba(0,0,0,.15);padding-top:5px;padding-bottom:5px}.dropdown-menu.inner,.dropdown-menu.open,.dropdown .dropdown-menu.inner,.dropdown .dropdown-menu.open{display:block}.dropdown-menu>li,.dropdown .dropdown-menu>li{margin:0;padding:0;position:relative}.dropdown-menu>li.divider,.dropdown .dropdown-menu>li.divider{height:1px;margin:5px 1px;background-color:#e5e5e5}.dropdown-menu>li.dropdown-header,.dropdown .dropdown-menu>li.dropdown-header{padding:4px 10px;font-size:12px;color:#999}.dropdown-menu>li.disabled:hover>a,.dropdown-menu>li.disabled:hover>a:hover,.dropdown-menu>li.disabled>a,.dropdown-menu>li.disabled>a:hover,.dropdown .dropdown-menu>li.disabled:hover>a,.dropdown .dropdown-menu>li.disabled:hover>a:hover,.dropdown .dropdown-menu>li.disabled>a,.dropdown .dropdown-menu>li.disabled>a:hover{cursor:default;background:transparent;color:#b3b3b1;pointer-events:none}.dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown-menu>li.disabled>.dropdown-menu,.dropdown .dropdown-menu>li.disabled:hover>.dropdown-menu,.dropdown .dropdown-menu>li.disabled>.dropdown-menu{display:none}.dropdown-menu>li>a,.dropdown .dropdown-menu>li>a{padding:4px 10px;cursor:default;color:inherit;text-decoration:none;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;cursor:pointer;text-shadow:none}.dropdown-menu>li>a .help-label,.dropdown .dropdown-menu>li>a .help-label{font-size:12px;color:#b3b3b1;margin-left:10px}.dropdown-menu>li>a:hover,.dropdown .dropdown-menu>li>a:hover{text-decoration:none;text-shadow:none;background:#428bca;color:#fff}.dropdown-menu>li>a:hover .help-label,.dropdown-menu>li>a:hover .text-muted,.dropdown .dropdown-menu>li>a:hover .help-label,.dropdown .dropdown-menu>li>a:hover .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>a:hover .dropdown-icon,.dropdown .dropdown-menu>li>a:hover .dropdown-icon{color:inherit}.dropdown-menu>li>a:not(:last-child),.dropdown .dropdown-menu>li>a:not(:last-child){position:relative}.dropdown-menu>li>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):after{bottom:9px;right:6px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none;border-color:transparent;border-left-color:#b3b3b1;border-width:5px;margin-right:-5px}.dropdown-menu>li.active>a:not(:last-child):after,.dropdown-menu>li>a:not(:last-child):hover:after,.dropdown .dropdown-menu>li.active>a:not(:last-child):after,.dropdown .dropdown-menu>li>a:not(:last-child):hover:after{border-left-color:#fff}.dropdown-menu>li.active>a,.dropdown .dropdown-menu>li.active>a{background:#428bca;color:#fff}.dropdown-menu>li.active>a .help-label,.dropdown-menu>li.active>a .text-muted,.dropdown .dropdown-menu>li.active>a .help-label,.dropdown .dropdown-menu>li.active>a .text-muted{color:inherit;opacity:.5}.dropdown-menu>li>.dropdown-menu,.dropdown .dropdown-menu>li>.dropdown-menu{position:absolute;right:auto;left:100%;margin-top:0;top:0;margin-top:-1px}.dropdown-menu>li:hover>.dropdown-menu,.dropdown .dropdown-menu>li:hover>.dropdown-menu{display:block}.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-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#333;text-align:center;background-color:#f5f5f5;border:1px solid #d4d4d4;border-radius:3px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:4px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group .form-control:first-child{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group .form-control:last-child{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{font-size:0;white-space:nowrap}.input-group-btn,.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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}.alert{border:1px solid #d4d4d4;background:#f5f5f5;border-radius:4px;padding:15px;margin-bottom:20px}.alert.alert-danger{background:#fcdede;border-color:#d2b2b2;color:#911}.alert.alert-warning{background:#fff2d0;border-color:#d6cdb1;color:#8d7726}.alert.alert-info{background:#e2eef9;border-color:#bac6d3;color:#246}.alert.alert-success{background:#dff0d8;border-color:#c0d1d0;color:#3c763d}.alert .alert-btn{display:inline-block;float:right;color:inherit;border-radius:3px;padding:0;opacity:.6;padding:0 5px}.alert a.alert-btn{text-decoration:none}.alert a.alert-btn:focus,.alert a.alert-btn:hover{opacity:.8;text-decoration:none}.gb-markdown{display:block;word-wrap:break-word;overflow:hidden;color:#333;line-height:1.7;text-size-adjust:100%;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-moz-text-size-adjust:100%}.gb-markdown *{box-sizing:border-box;-webkit-box-sizing:border-box;font-size:inherit}.gb-markdown>:first-child{margin-top:0!important}.gb-markdown>:last-child{margin-bottom:0!important}.gb-markdown blockquote,.gb-markdown code,.gb-markdown figure,.gb-markdown img,.gb-markdown pre,.gb-markdown table,.gb-markdown tr{page-break-inside:avoid}.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown p{orphans:3;widows:3}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5{page-break-after:avoid}.gb-markdown b,.gb-markdown strong{font-weight:700}.gb-markdown em{font-style:italic}.gb-markdown blockquote,.gb-markdown dl,.gb-markdown ol,.gb-markdown p,.gb-markdown table,.gb-markdown ul{margin-top:0;margin-bottom:.85em}.gb-markdown a{color:#4183c4;text-decoration:none;background:transparent}.gb-markdown a:active,.gb-markdown a:focus,.gb-markdown a:hover{outline:0;text-decoration:underline}.gb-markdown img{border:0;max-width:100%}.gb-markdown hr{height:4px;padding:0;margin:1.7em 0;overflow:hidden;background-color:#e7e7e7;border:none}.gb-markdown hr:after,.gb-markdown hr:before{display:table;content:" "}.gb-markdown hr:after{clear:both}.gb-markdown h1,.gb-markdown h2,.gb-markdown h3,.gb-markdown h4,.gb-markdown h5,.gb-markdown h6{margin-top:1.275em;margin-bottom:.85em;font-weight:700}.gb-markdown h1{font-size:2em}.gb-markdown h2{font-size:1.75em}.gb-markdown h3{font-size:1.5em}.gb-markdown h4{font-size:1.25em}.gb-markdown h5{font-size:1em}.gb-markdown h6{font-size:1em;color:#777}.gb-markdown code,.gb-markdown pre{font-family:Consolas,Liberation Mono,Menlo,Courier,monospace;direction:ltr;margin:0;padding:0;border:none;color:inherit}.gb-markdown pre{overflow:auto;word-wrap:normal;margin:0;padding:.85em 1em;margin-bottom:1.275em;background:#f7f7f7}.gb-markdown pre>code{display:inline;max-width:initial;padding:0;margin:0;overflow:initial;line-height:inherit;font-size:.85em;white-space:pre;background:transparent}.gb-markdown pre>code:after,.gb-markdown pre>code:before{content:normal}.gb-markdown code{padding:.2em;margin:0;font-size:.85em;background-color:#f7f7f7}.gb-markdown code:after,.gb-markdown code:before{letter-spacing:-.2em;content:"\00a0"}.gb-markdown table{display:table;width:100%;border-collapse:collapse;border-spacing:0;overflow:auto}.gb-markdown table td,.gb-markdown table th{padding:6px 13px;border:1px solid #ddd}.gb-markdown table tr{background-color:#fff;border-top:1px solid #ccc}.gb-markdown table tr:nth-child(2n){background-color:#f8f8f8}.gb-markdown table th{font-weight:700}.gb-markdown ol,.gb-markdown ul{padding:0;margin:0;margin-bottom:.85em;padding-left:2em}.gb-markdown ol ol,.gb-markdown ol ul,.gb-markdown ul ol,.gb-markdown ul ul{margin-top:0;margin-bottom:0}.gb-markdown ol ol{list-style-type:lower-roman}.gb-markdown blockquote{margin:0;margin-bottom:.85em;padding:0 15px;color:#858585;border-left:4px solid #e5e5e5}.gb-markdown blockquote:first-child{margin-top:0}.gb-markdown blockquote:last-child{margin-bottom:0}.gb-markdown dl{padding:0}.gb-markdown dl dt{padding:0;margin-top:.85em;font-style:italic;font-weight:700}.gb-markdown dl dd{padding:0 .85em;margin-bottom:.85em}.gb-markdown dd{margin-left:0}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:2px;color:#333;box-shadow:0 1px 1px rgba(0,0,0,.05)}.btn-toolbar+.panel{margin-top:20px}.panel .panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:1px;border-top-left-radius:1px}.panel .panel-heading .panel-title{margin:0;padding:0;font-size:inherit;font-weight:500;line-height:19px;margin-top:-2px;margin-bottom:-2px}.panel .panel-heading .panel-title a{color:inherit}.panel .panel-heading .panel-title a:focus,.panel .panel-heading .panel-title a:hover{text-decoration:none;color:inherit}.panel .panel-heading .panel-title.large{text-align:center;font-size:22px;font-weight:400}.panel .panel-heading .panel-toolbar{float:right;margin-top:-5px;margin-right:-5px}.panel .panel-heading .panel-toolbar .btn{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}.panel>.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.panel>.blankslate.with-background{border-radius:0;border:0}.panel>hr{margin:0}.panel .panel-body{padding:15px}.panel .panel-footer{padding:10px 15px;background-color:#fcfcfc;border-top:1px solid #ddd;border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel.panel-default{border-color:#d4d4d4}.panel.panel-default .panel-heading{color:#333;background-color:#f5f5f5;border-color:#d4d4d4}.panel.panel-danger{border-color:#d2b2b2}.panel.panel-danger .panel-heading{color:#911;background-color:#fcdede;border-color:#d2b2b2}.panel.panel-warning{border-color:#d6cdb1}.panel.panel-warning .panel-heading{color:#8d7726;background-color:#fff2d0;border-color:#d6cdb1}.panel.panel-info{border-color:#bac6d3}.panel.panel-info .panel-heading{color:#246;background-color:#e2eef9;border-color:#bac6d3}.panel.panel-success{border-color:#c0d1d0}.panel.panel-success .panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#c0d1d0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table-responsive>.table caption,.panel>.table caption{padding-left:15px;padding-right:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-right-radius:1px;border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:1px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:1px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:1px;border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:1px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:1px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #d4d4d4}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.list-group{padding:0;margin:0;list-style:none;margin-bottom:20px;padding-left:0}.list-group li.list-group-item a{color:inherit;text-decoration:none}.list-group .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;color:#555;background-color:#fff;border:1px solid #d4d4d4}.list-group .list-group-item:focus,.list-group .list-group-item:hover{text-decoration:none;background:#f8f8f8}.list-group .list-group-item.active{color:#dd4b39;border-left:4px solid #dd4b39!important;font-weight:500;background:#f8f8f8;padding-left:11px}.list-group .list-group-item:first-child{margin-top:0;border-top-right-radius:2px;border-top-left-radius:2px}.list-group .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:2px;border-bottom-left-radius:2px}.list-group .list-group-item .list-image{display:inline-block;overflow:hidden;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-right:5px;width:20px;height:20px}.list-group .list-group-item .badge{display:inline-block;padding:3px 7px;font-size:12px;line-height:1;vertical-align:baseline;white-space:nowrap;text-align:center;border-radius:10px;float:right}.list-group .list-group-item i.pull-right{float:right;margin-top:3px}.modal>.list-group,.panel>.list-group{margin:0}.modal>.list-group .list-group-item,.panel>.list-group .list-group-item{border-left:0;border-right:0}.modal>.list-group .list-group-item:first-child,.panel>.list-group .list-group-item:first-child{border-top-width:0;border-top-right-radius:0;border-top-left-radius:0}.modal>.list-group .list-group-item:last-child,.panel>.list-group .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.filter-list,ul.filter-list{list-style:none;margin:0;padding:0;margin-bottom:20px}.filter-list li .filter-item,ul.filter-list li .filter-item{position:relative;display:block;padding:6px 12px;margin-bottom:5px;font-size:14px;color:#737373;text-decoration:none;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-radius:4px}.filter-list li .filter-item .count,ul.filter-list li .filter-item .count{float:right;font-weight:500}.filter-list li .filter-item:hover,ul.filter-list li .filter-item:hover{text-decoration:none;color:#737373;background-color:#eee}.filter-list li .filter-item.selected,.filter-list li .filter-item.selected:hover,ul.filter-list li .filter-item.selected,ul.filter-list li .filter-item.selected:hover{color:#fff;background-color:#428bca}.modal-backdrop{background:rgba(0,0,0,.55);position:fixed;top:0;bottom:0;left:0;right:0;z-index:6;overflow-y:auto}.modal-backdrop.white{background:hsla(0,0%,100%,.55)}.modal{border:1px solid rgba(0,0,0,.65);border-radius:4px;background:#fff;box-shadow:0 5px 15px rgba(0,0,0,.5);width:600px;margin:30px auto}.modal.without-backdrop{border-color:#d4d4d4;box-shadow:0 1px 2px #ddd}.modal .modal-heading+.alert{border-radius:0;border-left:0;border-right:0;margin:0;margin-top:-1px;position:relative;z-index:1}.modal .modal-heading{position:relative;padding:15px;border-bottom:1px solid #e5e5e5}.modal .modal-heading h4{margin:0}.modal .modal-heading .modal-close{position:absolute;line-height:24px;top:50%;margin-top:-15px;right:15px;color:#d4d4d4;font-size:30px}.modal .modal-heading .modal-close:hover{color:#bbb;text-decoration:none}.modal .modal-body{padding:15px}.modal .modal-footer{border-top:1px solid #e5e5e5;padding:15px;text-align:right}.modal .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal.modal-sm{width:400px;margin:30px auto}.modal.modal-lg{width:800px;margin:30px auto}.modal.modal-fullscreen{display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-moz-justify-content:space-around;-ms-justify-content:space-around;justify-content:space-around;margin:0;position:absolute;top:30px;bottom:30px;margin-left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.modal.modal-fullscreen .modal-heading{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.modal.modal-fullscreen .modal-body{position:relative;-moz-flex-grow:1000000;-ms-flex-grow:1000000;flex-grow:1000000}.modal.modal-fullscreen .modal-footer{-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}@-webkit-keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes b{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.gb-spinner{display:inline-block;border-radius:100%;border:5px solid #f5f5f5;border-bottom-color:#428bca;-webkit-animation:b 1.5s 0s linear infinite;-moz-animation:b 1.5s 0s linear infinite;-ms-animation:b 1.5s 0s linear infinite;width:30px;height:30px;border-width:3px}.gb-spinner.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-15px;margin-top:-15px}.gb-spinner.spinner-sm{width:12px;height:12px;border-width:1.2px}.gb-spinner.spinner-sm.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-6px;margin-top:-6px}.gb-spinner.spinner-lg{width:50px;height:50px;border-width:5px}.gb-spinner.spinner-lg.spinner-centered{display:block;margin:0;position:absolute;left:50%;top:50%;margin-left:-25px;margin-top:-25px}.label{display:inline-block;margin:0;padding:3px 4px 4px;font-size:11px;font-weight:500;line-height:11px;text-transform:uppercase;vertical-align:middle;border-radius:3px;color:#666;background-color:#eee}.label.label-warning{color:#9d852a;background-color:#fff8e4;border-color:#ddd6be}.label.label-info{background-color:#f3f8fc;color:#274e75;border-color:#c6d0db}.label.label-success{background-color:#ebf6e7;color:#438444;border-color:#ccdad9}.label.label-danger{background-color:#fef1f1;color:#ab1313;border-color:#dabfbf}a.label:hover{color:#428bca;text-decoration:none}.form-control{width:100%;font-size:1.1rem;border:1px solid #d4d4d4;background:#fff;outline:none;color:#333;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px}.form-control.focus,.form-control:focus{outline:none;border-color:#428bca;background:#fff}.form-control.disabled,.form-control:disabled{border-color:#d4d4d4;background:#f5f5f5}.form-control.input-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-control.input-sm{padding:5px 10px}.form-control.input-sm,.form-control.input-xs{font-size:12px;line-height:1.5;border-radius:2px}.form-control.input-xs{padding:2px 7px}select.form-control{background:linear-gradient(#fcfcfc,#ededed);border:1px solid #c9c9c9;color:#333;box-shadow:none;text-decoration:none;text-shadow:none;padding:6px 12px;font-size:14px;line-height:1.42857143;border-radius:3px;display:inline-block;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;position:relative;background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#ededed);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control .caret{border-top-color:#333}select.form-control .octicon{line-height:1em}select.form-control.dropdown-toggle.open,select.form-control:focus,select.form-control:hover{background:linear-gradient(#fcfcfc,#e3e3e3);border-color:#c9c9c9;box-shadow:none;outline:none;text-decoration:none}select.form-control.active,select.form-control:active{box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}select.form-control.disabled,select.form-control:disabled{background:linear-gradient(#fcfcfc,#ededed);border-color:#c9c9c9;box-shadow:none;opacity:.6;cursor:default}select.form-control.disabled.tooltipped:after,select.form-control.disabled.tooltipped:before,select.form-control:disabled.tooltipped:after,select.form-control:disabled.tooltipped:before{display:none}select.form-control.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:4px}select.form-control.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-xs{padding:2px 7px;font-size:12px;line-height:1.5;border-radius:2px}select.form-control.btn-right{float:right!important;margin-left:16px}select.form-control.btn-left{float:left!important;margin-right:16px}select.form-control.btn-block{display:block;width:100%;text-align:center}select.form-control.btn-block+.btn-block{margin-top:5px}select.form-control.btn-link{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff;background:transparent;border-color:transparent;color:#428bca}select.form-control.btn-link:focus,select.form-control.btn-link:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-link .caret{border-top-color:#fff}select.form-control.btn-link.btn-link,select.form-control.btn-link.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-link.btn-link:focus,select.form-control.btn-link.btn-link:hover,select.form-control.btn-link.btn-noborder:focus,select.form-control.btn-link.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-link:focus,select.form-control.btn-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-text-link{background:transparent;border-color:transparent;color:inherit}select.form-control.btn-text-link:focus,select.form-control.btn-text-link:hover{color:#428bca;background:none;box-shadow:none}select.form-control.btn-text-link.active{background:none;box-shadow:none;font-weight:500}select.form-control.btn-count{color:#333;background:#fff}select.form-control.btn-count:focus,select.form-control.btn-count:hover{background:#fff;color:#428bca}select.form-control.btn-count.disabled,select.form-control.btn-count:disabled{background:#fff;color:#333}select.form-control.btn-count .caret{border-top-color:#333}select.form-control.btn-success{background:linear-gradient(#5cb85c,#449d44);border-color:#3d8b3d;color:#fff}select.form-control.btn-success:focus,select.form-control.btn-success:hover{background:linear-gradient(#5cb85c,#3d8b3d);border-color:#357935}select.form-control.btn-success .caret{border-top-color:#fff}select.form-control.btn-success.btn-link,select.form-control.btn-success.btn-noborder{text-shadow:none;color:#5cb85c;border:none;background:none;box-shadow:none}select.form-control.btn-success.btn-link:focus,select.form-control.btn-success.btn-link:hover,select.form-control.btn-success.btn-noborder:focus,select.form-control.btn-success.btn-noborder:hover{color:#419641;outline:none;text-decoration:underline}select.form-control.btn-success.btn-outline{background:#fff;color:#5cb85c;border-color:#5cb85c}select.form-control.btn-success.btn-outline .caret{border-top-color:#5cb85c}select.form-control.btn-success.btn-outline:focus,select.form-control.btn-success.btn-outline:hover{background:#5cb85c;color:#fff}select.form-control.btn-success.btn-outline:focus .caret,select.form-control.btn-success.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-success{color:#449d44}select.form-control.btn-primary{background:linear-gradient(#428bca,#3071a9);border-color:#2a6496;color:#fff}select.form-control.btn-primary:focus,select.form-control.btn-primary:hover{background:linear-gradient(#428bca,#2a6496);border-color:#245682}select.form-control.btn-primary .caret{border-top-color:#fff}select.form-control.btn-primary.btn-link,select.form-control.btn-primary.btn-noborder{text-shadow:none;color:#428bca;border:none;background:none;box-shadow:none}select.form-control.btn-primary.btn-link:focus,select.form-control.btn-primary.btn-link:hover,select.form-control.btn-primary.btn-noborder:focus,select.form-control.btn-primary.btn-noborder:hover{color:#2d6ca2;outline:none;text-decoration:underline}select.form-control.btn-primary.btn-outline{background:#fff;color:#428bca;border-color:#428bca}select.form-control.btn-primary.btn-outline .caret{border-top-color:#428bca}select.form-control.btn-primary.btn-outline:focus,select.form-control.btn-primary.btn-outline:hover{background:#428bca;color:#fff}select.form-control.btn-primary.btn-outline:focus .caret,select.form-control.btn-primary.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-primary{color:#3071a9}select.form-control.btn-danger{background:linear-gradient(#dd4b39,#c23321);border-color:#ac2d1e;color:#fff}select.form-control.btn-danger:focus,select.form-control.btn-danger:hover{background:linear-gradient(#dd4b39,#ac2d1e);border-color:#96271a}select.form-control.btn-danger .caret{border-top-color:#fff}select.form-control.btn-danger.btn-link,select.form-control.btn-danger.btn-noborder{text-shadow:none;color:#dd4b39;border:none;background:none;box-shadow:none}select.form-control.btn-danger.btn-link:focus,select.form-control.btn-danger.btn-link:hover,select.form-control.btn-danger.btn-noborder:focus,select.form-control.btn-danger.btn-noborder:hover{color:#b93120;outline:none;text-decoration:underline}select.form-control.btn-danger.btn-outline{background:#fff;color:#dd4b39;border-color:#dd4b39}select.form-control.btn-danger.btn-outline .caret{border-top-color:#dd4b39}select.form-control.btn-danger.btn-outline:focus,select.form-control.btn-danger.btn-outline:hover{background:#dd4b39;color:#fff}select.form-control.btn-danger.btn-outline:focus .caret,select.form-control.btn-danger.btn-outline:hover .caret{border-top-color:#fff}select.form-control.btn-text-danger{color:#c23321}select.form-control .btn-label{display:block;font-size:14px;opacity:.6;font-weight:500}select.form-control:focus,select.form-control:hover{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAICAYAAAD0g6+qAAAAPElEQVR42mNgoCIwBGIHHNiAFIOuAPF/HPg8KQZJA/EtLIZcB2IJUr2HbhhZhsCAFBDfpNQQGBCA4oEDAMmuFUNmpjnkAAAAAElFTkSuQmCC'),linear-gradient(#fcfcfc,#e3e3e3);background-repeat:no-repeat;background-position-y:12px;background-position-x:right}select.form-control:focus{border-color:#428bca}.checkbox,.form-group .checkbox,.form-group .radio,.radio{display:block;min-height:20px;margin-bottom:12px;padding-left:20px;vertical-align:middle}.checkbox input[type=checkbox],.checkbox input[type=radio],.form-group .checkbox input[type=checkbox],.form-group .checkbox input[type=radio],.form-group .radio input[type=checkbox],.form-group .radio input[type=radio],.radio input[type=checkbox],.radio input[type=radio]{float:left;margin-top:3px;margin-left:-20px}.checkbox label,.form-group .checkbox label,.form-group .radio label,.radio label{display:inline;margin-bottom:0;font-weight:400;cursor:pointer}.form-group{margin-bottom:12px}.form-group label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:500}.form-group label .note{min-height:17px;margin:4px 0 2px;font-size:12px;color:#767676}.form-group.has-error .help-block,.form-group.has-error label{color:#dd4b39}.form-group.has-error .form-control{border-color:#dd4b39}.form-horizontal .form-group{zoom:1}.form-horizontal .form-group:after,.form-horizontal .form-group:before{content:"";display:table}.form-horizontal .form-group:after{clear:both}.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 .btn{vertical-align:middle}.pagehead{zoom:1;margin:0 auto;padding:0;text-align:center;background-color:#f5f5f5;border-bottom:1px solid #e5e5e5}.pagehead:after,.pagehead:before{content:"";display:table}.pagehead:after{clear:both}.pagehead .avatar{display:inline-block;line-height:1;vertical-align:middle;border-radius:3px;float:left;margin-top:17px;margin-right:9px;width:30px;height:30px}.pagehead .avatar img{width:100%;height:100%;border-radius:3px}.pagehead h1{float:left;font-size:24px;padding:0;margin:0;line-height:65px;font-weight:400}.pagehead h1 a{color:inherit;text-decoration:none}.pagehead h1 a:hover{color:#428bca;text-decoration:none}.pagehead h1>i{line-height:1em}.pagehead .btn{float:left;margin-top:16px}.pagehead .menu{list-style:none;zoom:1;margin:0;padding:0;float:right;text-align:center}.pagehead .menu:after,.pagehead .menu:before{content:"";display:table}.pagehead .menu:after{clear:both}.pagehead .menu.center{float:none}.pagehead .menu.left{float:left}.pagehead .menu li{display:inline-block}.pagehead .menu li>a{color:#8d8d8a;padding:25px 15px;margin-bottom:-1px;border-bottom:1px solid #e5e5e5;letter-spacing:-.02em;font-weight:500;font-style:normal;font-size:11px;letter-spacing:.2em;text-transform:uppercase;display:inline-block}.pagehead .menu li>a i{font-size:16px;line-height:1em}.pagehead .menu li>a:focus,.pagehead .menu li>a:hover{text-decoration:none}.pagehead .menu li.active>a{padding-bottom:23px;border-width:3px;border-color:#dd4b39;font-weight:700}.pagehead .menu li:first-child>a{margin-left:0}.pagehead .menu li:last-child>a{margin-right:0}.pagehead .btn-group.open .dropdown-toggle{box-shadow:none}.pagehead .search-bar{width:100%;max-width:300px;margin-top:13px;background:#fff;border:1px solid #e5e5e5;position:relative;cursor:text}.pagehead .search-bar i{position:absolute;left:8px;font-size:16px;line-height:34px;color:#bbb}.pagehead .search-bar input{border:none;box-shadow:none;height:34px;padding-left:30px;background:transparent}.blankslate{width:100%;max-width:400px;margin:80px auto;text-align:center;padding:20px}@media (max-height:800px){.blankslate{margin:40px auto}}.blankslate .icon{font-size:64px;line-height:120px;color:#b3b3b1}.blankslate h3{margin:10px 0;margin-top:0;font-size:22px;font-weight:500}.blankslate p{margin:10px 0}.blankslate.with-background{background-color:#fafafa;border:1px solid #e5e5e5;border-radius:3px;background-clip:padding-box;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate.full-width{max-width:100%;margin:0;padding:80px}.blankslate-layout{width:100%;height:100%;display:-moz-flex;display:-ms-flexbox;display:-ms-flex;display:flex;align-items:center;justify-content:center}.blankslate-layout.with-background{background-color:#fafafa;border:1px solid #e5e5e5;box-shadow:inset 0 0 10px rgba(0,0,0,.05)}.blankslate-layout .blankslate{margin:0;padding-bottom:50px}.tabs>.tabs-nav{margin:0;padding:0;list-style:none;width:100%;border-bottom:0;border-bottom:1px solid #d4d4d4;zoom:1}.tabs>.tabs-nav:after,.tabs>.tabs-nav:before{content:"";display:table}.tabs>.tabs-nav:after{clear:both}.tabs>.tabs-nav>li{margin:0;float:left;margin-bottom:-1px}.tabs>.tabs-nav>li>a{position:relative;display:block;padding:10px 15px;margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:3px 3px 0 0;color:#b3b3b1;border-bottom:1px solid #d4d4d4;margin-right:0}.tabs>.tabs-nav>li>a:focus,.tabs>.tabs-nav>li>a:hover{text-decoration:none}.tabs>.tabs-nav>li.active>a{color:#555;background-color:#fff;border:1px solid #d4d4d4;border-bottom-color:#fff;cursor:default}.tabs>.tabs-nav.justified>li{float:none;display:table-cell;width:1%}.tabs>.tabs-nav.justified>li a{text-align:center;margin-bottom:-1px}.tabs .tabs-content .tab-pane{display:none}.tabs .tabs-content .tab-pane.active{display:block}.tabs>.tabs-content{margin-top:20px}.tabs.tabs-fluid>.tabs-content{margin:0}.pagination{margin:0;zoom:1}.pagination:after,.pagination:before{content:"";display:table}.pagination:after{clear:both}.pagination .pagination-nav,.pagination .pagination-pages{display:inline-block;padding-left:0;margin:15px 0;border-radius:2px}.pagination .pagination-nav li,.pagination .pagination-pages li{display:inline}.pagination .pagination-nav li a,.pagination .pagination-nav li span,.pagination .pagination-pages li a,.pagination .pagination-pages li span{position:relative;float:left;padding:6px 12px;line-height:1.42857143;text-decoration:none;color:#737373;background-color:#fff;border:1px solid #d4d4d4;margin-left:-1px}.pagination .pagination-nav li:first-child a,.pagination .pagination-nav li:first-child span,.pagination .pagination-pages li:first-child a,.pagination .pagination-pages li:first-child span{border-top-left-radius:2px;border-bottom-left-radius:2px}.pagination .pagination-nav li:last-child a,.pagination .pagination-nav li:last-child span,.pagination .pagination-pages li:last-child a,.pagination .pagination-pages li:last-child span{border-top-right-radius:2px;border-bottom-right-radius:2px}.pagination .pagination-nav li .separator,.pagination .pagination-pages li .separator{cursor:default;letter-spacing:3px}.pagination .pagination-nav li a:hover,.pagination .pagination-pages li a:hover{background:#f5f5f5;color:#4f4f52;border-color:#d4d4d4}.pagination .pagination-nav li.active a,.pagination .pagination-pages li.active a{cursor:default;z-index:1;color:#5cb85c;border-color:#5cb85c;background:#fff}.pagination .pagination-pages{float:left}.pagination .pagination-nav{float:right}.badge{display:inline-block;padding:1px 3px;font-size:11px;font-weight:500;line-height:1;color:#666;background-color:#eee;border-radius:20px;border:1px solid #ccc;min-width:18px;text-align:center;letter-spacing:initial}.badge.badge-warning{background-color:#fff2d0;color:#8d7726;border-color:#d6cdb1}.badge.badge-info{background-color:#e2eef9;color:#246;border-color:#bac6d3}.badge.badge-success{background-color:#dff0d8;color:#3c763d;border-color:#c0d1d0}.badge.badge-danger{background-color:#fcdede;color:#911;border-color:#d2b2b2}.gb-page-wrapper{min-height:100%;position:relative;padding-bottom:60px}.gb-page-wrapper.for-modal{padding-bottom:1px;background:#f5f5f5}.gb-page-header{position:relative;z-index:2;width:100%;padding:10px 0;background:#fff;color:#555;border-bottom:1px solid #ddd;border-top:2px solid #4d4d4f;box-shadow:0 3px 2px -2px hsla(0,0%,78%,.2)}.gb-page-header .container{zoom:1}.gb-page-header .container:after,.gb-page-header .container:before{content:"";display:table}.gb-page-header .container:after{clear:both}.gb-page-header .container .logo{color:inherit}.gb-page-header .container .logo:hover{text-decoration:none}.gb-page-header .container .logo img{height:34px;float:left;margin-right:8px;margin-top:3px}.gb-page-header .container .logo h1{font-size:18px;font-weight:700;line-height:38px;display:inline-block;margin:0;padding:0 0 0 10px;text-shadow:none;color:#4d4d4f}.gb-page-header .container .btn{text-decoration:none;margin:2px 4px;box-shadow:none!important;text-transform:uppercase}.gb-page-header .container .btn:hover{text-decoration:none}.gb-page-header .container .btn.btn-link{color:inherit}.gb-page-header .container .btn.btn-link:hover{color:#428bca}.gb-page-header .container .btn.btn-icon{margin:1px 0;font-size:16px;padding:5px 10px}.gb-page-header .container .btn .caret{border-top-color:#555}.gb-page-header .container img.avatar{width:24px;height:24px;border-radius:3px;float:left;margin-right:6px;margin-top:-2px;margin-bottom:-2px}.gb-page-header .container .dropdown-menu{top:44px;width:180px}.gb-page-body{position:relative;z-index:1}.gb-page-body .gb-page-inner{margin:30px 0}.gb-page-footer{position:absolute;bottom:0;width:100%;height:60px;margin:0}.gb-page-footer .container .menu{list-style:none;margin:0;padding:0;zoom:1;border-top:1px solid #f5f5f5}.gb-page-footer .container .menu:after,.gb-page-footer .container .menu:before{content:"";display:table}.gb-page-footer .container .menu:after{clear:both}.gb-page-footer .container .menu>li{float:left}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>span{padding:19.5px 10px;display:inline-block;color:#999;text-transform:uppercase;letter-spacing:.2px;font-size:12px;line-height:20px;font-weight:400;height:59px}.gb-page-footer .container .menu>li>a.service-info,.gb-page-footer .container .menu>li>span.service-info{color:#818181;font-weight:400}.gb-page-footer .container .menu>li>a,.gb-page-footer .container .menu>li>a:focus,.gb-page-footer .container .menu>li>a:hover{text-decoration:none}body{background:#fff!important}a.focus,a:active,a:hover{text-decoration:none!important}.text-small-title{font-size:65%;color:#95a5a6}.hb-btn{margin:5px}.hb-btn-group{margin:0 10px 0 0}.hb-btn-group .hb-btn{margin:0}.hb-btn-success .hb-dropdown-toggle{color:#fff}.hb-btn-success .caret{border:4px solid #fff;border-right-color:transparent;border-left-color:transparent;border-bottom-color:transparent}.hb-bg-danger,.hb-bg-default,.hb-bg-primary,.hb-bg-success,.hb-bg-warning{padding:20px}[class*=" iconfont-"]:after,[class^=iconfont-]{font-size:3em;margin:.2em}[class^=iconfont-]:hover{color:#5cb85c;cursor:pointer}.hb-btn-group.hb-dropdown,.hb-dropdown{position:relative;text-align:left;color:#333}.hb-btn-group.hb-dropdown li,.hb-btn-group.hb-dropdown ul,.hb-dropdown li,.hb-dropdown ul{padding:0;margin:0}.hb-btn-group.hb-dropdown ul,.hb-dropdown ul{padding:10px 0}.hb-btn-group.hb-dropdown.hb-btn-group-block .hb-dropdown-menu,.hb-dropdown.hb-btn-group-block .hb-dropdown-menu{min-width:100%}.hb-btn-group.hb-dropdown>.hb-dropdown-menu,.hb-dropdown>.hb-dropdown-menu{position:absolute;top:100%;right:0}.hb-btn-group.hb-dropdown.inner>.hb-dropdown-menu,.hb-btn-group.hb-dropdown.open>.hb-dropdown-menu,.hb-dropdown.inner>.hb-dropdown-menu,.hb-dropdown.open>.hb-dropdown-menu{display:block}.hb-btn-group.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu,.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu{margin-top:12px;overflow:visible!important}.hb-btn-group.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:after,.hb-btn-group.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:before,.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:after,.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:before{bottom:100%;right:16px;border:solid transparent;content:" ";height:0;width:0;position:absolute;pointer-events:none}.hb-btn-group.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:before,.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:before{border-color:transparent;border-bottom-color:#c9c9c9;border-width:11px;margin-right:-11px}.hb-btn-group.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:after,.hb-dropdown:not(.contextmenu)>.hb-dropdown-menu:after{border-color:transparent;border-bottom-color:#fff;border-width:10px;margin-right:-10px}.hb-btn-group.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu,.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu{left:0;right:auto}.hb-btn-group.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):after,.hb-btn-group.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):before,.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):after,.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):before{right:auto;left:16px}.hb-btn-group.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):before,.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):before{margin-right:0;margin-left:-11px}.hb-btn-group.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):after,.hb-dropdown.pull-left:not(.contextmenu)>.hb-dropdown-menu:not(.inner):after{margin-right:0;margin-left:-10px}.hb-slider-nav{bottom:-5px}.hb-slider-nav .active{background:#0894ec}.hb-slider-theme{height:300px;padding-bottom:20px}.hb-slider-theme ul{height:300px;padding:0;margin:0}.hb-slider-theme img{height:100%;width:100%}.slider-arrows{position:absolute;top:50%;margin-top:-20px}.slider-arrows i{color:#4d4d4f}.slider-arrows.prev{left:0;margin-left:-10px}.slider-arrows.next{right:0;margin-right:-10px}.hb-tab-content{border:1px solid #ddd;padding:20px;border-top:0 none;margin-top:-12px}*{box-sizing:border-box}body,html{width:100%;height:100%;color:#333;font-size:14px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-weight:400;line-height:1.42857143;background:#fff;letter-spacing:.3px;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-font-smoothing:antialiased;font-smoothing:antialiased}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}@font-face{font-family:iconfont;src:url(/assets/fonts/iconfont.eot);src:url(/assets/fonts/iconfont.eot?#iefix) format('eot'),url(/assets/fonts/iconfont.woff) format('woff'),url(/assets/fonts/iconfont.ttf) format('truetype'),url(/assets/fonts/iconfont.svg#iconfont) format('svg')}[class*=" iconfont-"]:after,[class^=iconfont-]{font-family:iconfont;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-webkit-text-stroke-width:.2px;-moz-osx-font-smoothing:grayscale;display:inline-block;vertical-align:middle;position:relative}.iconfont-alert:before{content:"\EA01"}.iconfont-android-outline:before{content:"\EA02"}.iconfont-android:before{content:"\EA03"}.iconfont-apple-outline:before{content:"\EA04"}.iconfont-apple:before{content:"\EA05"}.iconfont-arrow-down:before{content:"\EA06"}.iconfont-arrow-left:before{content:"\EA07"}.iconfont-arrow-right:before{content:"\EA08"}.iconfont-arrow-up:before{content:"\EA09"}.iconfont-checkbox-outline-blank:before{content:"\EA0A"}.iconfont-checkbox-outline:before{content:"\EA0B"}.iconfont-checkbox:before{content:"\EA0C"}.iconfont-chevron-down:before{content:"\EA0D"}.iconfont-chevron-left:before{content:"\EA0E"}.iconfont-chevron-right:before{content:"\EA0F"}.iconfont-chevron-up:before{content:"\EA10"}.iconfont-chrome-outline:before{content:"\EA11"}.iconfont-chrome:before{content:"\EA12"}.iconfont-clock:before{content:"\EA13"}.iconfont-close-circled:before{content:"\EA14"}.iconfont-close:before{content:"\EA15"}.iconfont-github-outline:before{content:"\EA16"}.iconfont-github:before{content:"\EA17"}.iconfont-gotop:before{content:"\EA18"}.iconfont-happy-outline:before{content:"\EA19"}.iconfont-help-circled:before{content:"\EA1A"}.iconfont-help:before{content:"\EA1B"}.iconfont-help_course:before{content:"\EA1C"}.iconfont-hot:before{content:"\EA1D"}.iconfont-information-circled:before{content:"\EA1E"}.iconfont-loop-strong:before{content:"\EA1F"}.iconfont-loop:before{content:"\EA20"}.iconfont-pay:before{content:"\EA21"}.iconfont-qr:before{content:"\EA22"}.iconfont-quit:before{content:"\EA23"}.iconfont-radio-off:before{content:"\EA24"}.iconfont-radio-on:before{content:"\EA25"}.iconfont-refresh:before{content:"\EA26"}.iconfont-services:before{content:"\EA27"}.iconfont-setting:before{content:"\EA28"}.iconfont-shiting:before{content:"\EA29"}.iconfont-twitter-outline:before{content:"\EA2A"}.iconfont-twitter:before{content:"\EA2B"}.iconfont-user:before{content:"\EA2C"}.highlight{background:#fff}.highlight .c{color:#998;font-style:italic}.highlight .err{color:#a61717;background-color:#e3d2d2}.highlight .k,.highlight .o{font-weight:700}.highlight .cm{color:#998;font-style:italic}.highlight .cp{color:#999;font-weight:700}.highlight .c1{color:#998;font-style:italic}.highlight .cs{color:#999;font-weight:700;font-style:italic}.highlight .gd{color:#000;background-color:#fdd}.highlight .gd .x{color:#000;background-color:#faa}.highlight .ge{font-style:italic}.highlight .gr{color:#a00}.highlight .gh{color:#999}.highlight .gi{color:#000;background-color:#dfd}.highlight .gi .x{color:#000;background-color:#afa}.highlight .go{color:#888}.highlight .gp{color:#555}.highlight .gs{font-weight:700}.highlight .gu{color:#aaa}.highlight .gt{color:#a00}.highlight .kc,.highlight .kd,.highlight .kp,.highlight .kr,.highlight .kt{font-weight:700}.highlight .kt{color:#458}.highlight .m{color:#099}.highlight .s{color:#d14}.highlight .na{color:teal}.highlight .nb{color:#0086b3}.highlight .nc{color:#458;font-weight:700}.highlight .no{color:teal}.highlight .ni{color:purple}.highlight .ne,.highlight .nf{color:#900;font-weight:700}.highlight .nn{color:#555}.highlight .nt{color:navy}.highlight .nv{color:teal}.highlight .ow{font-weight:700}.highlight .w{color:#bbb}.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#099}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sd,.highlight .se,.highlight .sh,.highlight .si,.highlight .sx{color:#d14}.highlight .sr{color:#009926}.highlight .s1{color:#d14}.highlight .ss{color:#990073}.highlight .bp{color:#999}.highlight .vc,.highlight .vg,.highlight .vi{color:teal}.highlight .il{color:#099}.highlight{margin:0}.gb-markdown{font-size:16px}.docs-footer{margin-top:20px;padding:15px 0;text-align:right;border-top:4px solid #eee}.docs-example{position:relative;padding:15px;line-height:1.4;border:1px solid #e5e5e5;border-radius:.25rem .25rem 0 0;font-size:14px}.docs-example+.highlight{margin-top:-1px;border:1px solid #e5e5e5;border-radius:0 0 .25rem .25rem;margin-bottom:30px}.docs-example+.highlight>pre{margin:0}.docs-colors{zoom:1}.docs-colors:after,.docs-colors:before{content:"";display:table}.docs-colors:after{clear:both}.docs-colors .color{border-radius:3px;padding:12px 6px;margin:4px 0;color:#fff;text-align:center}.docs-colors .color.palette-black{background:#2d2d2d}.docs-colors .color.palette-gray-light{background:#fcfcfc;color:inherit}.docs-colors .color.palette-gray{background:#f5f5f5;color:inherit}.docs-colors .color.palette-gray-outline{background:#d4d4d4;color:inherit}.docs-colors .color.palette-gray-dark{background:#e5e5e5;color:inherit}.docs-colors .color.palette-gray-darker{background:#b3b3b1;color:inherit}.docs-colors .color.palette-darkgray{background:#4f4f52}.docs-colors .color.palette-blue{background:#428bca}.docs-colors .color.palette-green{background:#5cb85c}.docs-colors .color.palette-orange{background:#f0ad4e}.docs-colors .color.palette-clearblue{background:#44b6f1}.docs-colors .color.palette-red{background:#dd4b39}.docs-colors .color.palette-logo{background:#4d4d4f} \ No newline at end of file diff --git a/guide-css/index.html b/guide-css/index.html index 9309fb9..b96f5e7 100644 --- a/guide-css/index.html +++ b/guide-css/index.html @@ -9,16 +9,27 @@ CSS编码规范 | 前端开发文档 - + + + + + +

@@ -40,25 +51,42 @@

前端开发文档

@@ -90,26 +115,33 @@

海边PC站框架

+ + + 全局CSS + 背景色 + - 背景色 + 文本颜色 + 按钮 + - 文本颜色 + 辅助类 @@ -117,12 +149,15 @@

海边PC站框架

- 按钮 + 字体图标 - 辅助类 + + + + 按钮组 @@ -130,14 +165,53 @@

海边PC站框架

- 字体图标 + 标签 + + + + + 静态分页 + + + + + AJAX分页 + 下拉菜单 + + 弹层 + + + + + 模态框 + + + + + 焦点图 + + + + + Cookie + + + + + 图片延迟加载 + + + + + Tab切换 +
@@ -769,7 +843,7 @@
滚动条各块组成的伪元素
Copyright Haibian 2016
  • - 返回顶部 + 返回顶部
  • Version 1.0.0 @@ -779,10 +853,5 @@
    滚动条各块组成的伪元素
  • - diff --git a/guide-html/index.html b/guide-html/index.html index 1809582..9cecd9f 100644 --- a/guide-html/index.html +++ b/guide-html/index.html @@ -9,16 +9,27 @@ HTML编码规范 | 前端开发文档 - + + + + + +
    @@ -40,25 +51,42 @@

    前端开发文档

    @@ -90,26 +115,33 @@

    海边PC站框架

    + + + 全局CSS + 背景色 + - 背景色 + 文本颜色 + 按钮 + - 文本颜色 + 辅助类 @@ -117,12 +149,15 @@

    海边PC站框架

    - 按钮 + 字体图标 - 辅助类 + + + + 按钮组 @@ -130,14 +165,53 @@

    海边PC站框架

    - 字体图标 + 标签 + + + + + 静态分页 + + + + + AJAX分页 + 下拉菜单 + + 弹层 + + + + + 模态框 + + + + + 焦点图 + + + + + Cookie + + + + + 图片延迟加载 + + + + + Tab切换 +
    @@ -379,7 +453,7 @@
    移动端
    Copyright Haibian 2016
  • - 返回顶部 + 返回顶部
  • Version 1.0.0 @@ -389,10 +463,5 @@
    移动端
  • - diff --git a/guide-js/index.html b/guide-js/index.html index d9a876e..a91907c 100644 --- a/guide-js/index.html +++ b/guide-js/index.html @@ -9,16 +9,27 @@ JavaScript编码规范 | 前端开发文档 - + + + + + +
    @@ -40,25 +51,42 @@

    前端开发文档

    @@ -90,26 +115,33 @@

    海边PC站框架

    + + + 全局CSS + 背景色 + - 背景色 + 文本颜色 + 按钮 + - 文本颜色 + 辅助类 @@ -117,12 +149,15 @@

    海边PC站框架

    - 按钮 + 字体图标 - 辅助类 + + + + 按钮组 @@ -130,14 +165,53 @@

    海边PC站框架

    - 字体图标 + 标签 + + + + + 静态分页 + + + + + AJAX分页 + 下拉菜单 + + 弹层 + + + + + 模态框 + + + + + 焦点图 + + + + + Cookie + + + + + 图片延迟加载 + + + + + Tab切换 +
    @@ -382,7 +456,7 @@
    Object.prototype.toString调用过程
    Copyright Haibian 2016
  • - 返回顶部 + 返回顶部
  • Version 1.0.0 @@ -392,10 +466,5 @@
    Object.prototype.toString调用过程
  • - diff --git a/guide-module/index.html b/guide-module/index.html index b03fc64..a54d690 100644 --- a/guide-module/index.html +++ b/guide-module/index.html @@ -9,16 +9,27 @@ 模块编码规范 | 前端开发文档 - + + + + + +
    @@ -40,25 +51,42 @@

    前端开发文档

    @@ -90,26 +115,33 @@

    海边PC站框架

    + + + 全局CSS + 背景色 + - 背景色 + 文本颜色 + 按钮 + - 文本颜色 + 辅助类 @@ -117,12 +149,15 @@

    海边PC站框架

    - 按钮 + 字体图标 - 辅助类 + + + + 按钮组 @@ -130,14 +165,53 @@

    海边PC站框架

    - 字体图标 + 标签 + + + + + 静态分页 + + + + + AJAX分页 + 下拉菜单 + + 弹层 + + + + + 模态框 + + + + + 焦点图 + + + + + Cookie + + + + + 图片延迟加载 + + + + + Tab切换 +
    @@ -336,7 +410,7 @@

    与 DOM ready 的关系

    Copyright Haibian 2016
  • - 返回顶部 + 返回顶部
  • Version 1.0.0 @@ -346,10 +420,5 @@

    与 DOM ready 的关系

  • - diff --git a/index.html b/index.html index 1e923fa..e59c42d 100644 --- a/index.html +++ b/index.html @@ -9,16 +9,27 @@ 概述 | 前端开发文档 - + + + + + +
    @@ -40,25 +51,42 @@

    前端开发文档

    @@ -90,26 +115,33 @@

    海边PC站框架

    + + + 全局CSS + 背景色 + - 背景色 + 文本颜色 + 按钮 + - 文本颜色 + 辅助类 @@ -117,12 +149,15 @@

    海边PC站框架

    - 按钮 + 字体图标 - 辅助类 + + + + 按钮组 @@ -130,14 +165,53 @@

    海边PC站框架

    - 字体图标 + 标签 + + + + + 静态分页 + + + + + AJAX分页 + 下拉菜单 + + 弹层 + + + + + 模态框 + + + + + 焦点图 + + + + + Cookie + + + + + 图片延迟加载 + + + + + Tab切换 +
    @@ -180,7 +254,7 @@
    命名规范
    Copyright Haibian 2016
  • - 返回顶部 + 返回顶部
  • Version 1.0.0 @@ -190,10 +264,5 @@
    命名规范
  • - diff --git a/js/doc.js b/js/doc.js new file mode 100644 index 0000000..cb7eb14 --- /dev/null +++ b/js/doc.js @@ -0,0 +1,601 @@ +'use strict'; +if (typeof jQuery === "undefined") { + throw new Error("please requires jQuery"); +} +;(function(UI){ + UI.utils = UI.utils || { + // 判断是否为空 + isEmpty: function(obj){ + for(var prop in obj) { + if(obj.hasOwnProperty(prop)) + return false; + } + return true; + }, + // 获取url参数 + getQueryString: function(name) { + var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); + var r = window.location.search.substr(1).match(reg); + if (r != null) return unescape(r[2]); return null; + }, + isPhone : function(mobile) { + if(mobile){ + if(!/^(13[0-9]|14[0-9]|15[0-9]||17[0-9]|18[0-9])\d{8}$/i.test(mobile)){ + return false; + }else{ + return true; + } + } + return this; + }, + // unix转化成本地时间 + unixToLocal: function(unix) { + var date = new Date(unix * 1000); + var time = { + year: date.getFullYear(), + month: date.getMonth() + 1 ? '0'+(date.getMonth()+ 1) : (date.getMonth()+ 1), + day: date.getDate() < 10 ? '0'+date.getDate() : date.getDate(), + hour: date.getHours()< 10 ? '0'+date.getHours() : date.getHours(), + min: date.getMinutes() < 10 ? '0'+date.getMinutes() : date.getMinutes(), + second: date.getSeconds() < 10 ? '0'+date.getSeconds() : date.getSeconds() + }; + return time; + }, + formatTime: function(unix) { + var self = this, + M,D; + var date = self.unixToLocal(unix); + return date.year + '-' + date.month + '-' + date.day + ' ' + date.hour + ':' + date.min + ':' + date.second; + }, + getNowTime: function() { + var date = new Date(); + var time = date.getTime() + return parseInt(time / 1000); + }, + + /** + * 日期比较(d1 - d2) + * + * @method dateDiff + * @param {Date} d1 + * @param {Date} d2 + * @param {String} [cmpType:ms] 比较类型, 可选值: Y/M/d/h/m/s/ms -> 年/月/日/时/分/妙/毫秒 + * @return {Float} + */ + dateDiff: function(d1, d2, cmpType) { + var diff = 0; + switch (cmpType) { + case 'Y': + diff = d1.getFullYear() - d2.getFullYear(); + break; + case 'M': + diff = (d1.getFullYear() - d2.getFullYear()) * 12 + (d1.getMonth() - d2.getMonth()); + break; + case 'd': + diff = (d1 - d2) / 86400000; + break; + case 'h': + diff = (d1 - d2) / 3600000; + break; + case 'm': + diff = (d1 - d2) / 60000; + break; + case 's': + diff = (d1 - d2) / 1000; + break; + case 'F': + var _diff = d1 - d2; + var days=Math.floor(_diff/(24*3600)); + var _diff_day=_diff%(24*3600) //计算天数后剩余的毫秒数 + var hours=Math.floor(_diff_day/3600); + var _diff_hour=_diff_day%(3600) //计算小时数后剩余的毫秒数 + var minutes=Math.floor(_diff_hour/6000); + if(days>=1){ + diff = days+'天'; + }else if(days<1 && hours>=1){ + diff = hours+'小时'; + }else if(hours<1 && minutes >=1){ + diff = minutes+'分'; + }else{ + diff = 0; + } + break; + default: + //diff = d1 - d2; + var _diff = d1 - d2; + var days=Math.floor(_diff/(24*3600)); + var _diff_day=_diff%(24*3600*1000) //计算天数后剩余的毫秒数 + var hours=Math.floor(_diff_day/3600); + var _diff_hour=_diff_day%(3600*1000) //计算小时数后剩余的毫秒数 + var minutes=Math.floor(_diff_hour/60); + if(days >= 1){ + diff = days+'天'+hours+'小时'+minutes+'分'; + }else if(days <1 && hours>=1){ + diff = hours+'小时'+minutes+'分'; + }else{ + diff = minutes+'分'; + } + break; + } + return diff; + }, + + /** + * 日期相加 + * + * @method dateAdd + * @param char interval 间隔参数 + * y 年 + * q 季度 + * n 月 + * d 日 + * w 周 + * h 小时 + * m 分钟 + * s 秒 + * i 毫秒 + * @param {Date} indate 输入的日期 + * @param {Number} offset 差值 + * @return {Date} date 相加后的日期 + */ + dateAdd: function(interval, indate, offset) { + switch (interval) { + case 'y': + indate.setFullYear(indate.getFullYear() + offset); + break; + case 'q': + indate.setMonth(indate.getMonth() + (offset * 3)); + break; + case 'n': + indate.setMonth(indate.getMonth() + offset); + break; + case 'd': + indate.setDate(indate.getDate() + offset); + break; + case 'w': + indate.setDate(indate.getDate() + (offset * 7)); + break; + case 'h': + indate.setHours(indate.getHours() + offset); + break; + case 'm': + indate.setMinutes(indate.getMinutes() + offset); + break; + case 's': + indate.setSeconds(indate.getSeconds() + offset); + break; + case 'i': + indate.setMilliseconds(indate.getMilliseconds() + offset); + break; + default: + indate.setMilliseconds(indate.getMilliseconds() + offset); + break; + } + return indate; + }, + /** + * 天数相加,得到加天数后的日子 + * @param date (2016-05-23) + * @param days 需要加几天 + * @return {Date} date 相加后的日期 + */ + addDays:function(date,days){ + var nd = new Date(date); + nd = nd.valueOf(); + nd = nd + days * 24 * 60 * 60 * 1000; + nd = new Date(nd); + var y = nd.getFullYear(), + m = nd.getMonth()+1, + d = nd.getDate(); + if(m <= 9) m = "0"+m; + if(d <= 9) d = "0"+d; + var cdate = y+"-"+m+"-"+d; + return cdate; + }, + /** + * 格式化日期文本为日期对象 + * + * @method str2Date + * @param {String} date 文本日期 + * @param {String} [p:%Y-%M-%d %h:%m:%s] 文本日期的格式 + * @return {Date} + */ + str2Date: function(date, p) { + p = p || '%Y-%M-%d %h:%m:%s'; + p = p.replace(/\-/g, '\\-'); + p = p.replace(/\|/g, '\\|'); + p = p.replace(/\./g, '\\.'); + p = p.replace(/\+/g, '\\+'); + p = p.replace('%Y', '(\\d{4})'); + p = p.replace('%M', '(\\d{1,2})'); + p = p.replace('%d', '(\\d{1,2})'); + p = p.replace('%h', '(\\d{1,2})'); + p = p.replace('%m', '(\\d{1,2})'); + p = p.replace('%s', '(\\d{1,2})'); + + var regExp = new RegExp('^' + p + '$'), + group = regExp.exec(date), + Y = (group[1] || 0) - 0, + M = (group[2] || 1) - 1, + d = (group[3] || 0) - 0, + h = (group[4] || 0) - 0, + m = (group[5] || 0) - 0, + s = (group[6] || 0) - 0; + + return new Date(Y, M, d, h, m, s); + }, + + /** + * 格式化str字符串,由于infmt默认:%Y%M%d,且很少修改,故放到最后 + * @param {String} indate 输入日期 + * @param {Strign} outfmt 输出格式,默认:%M%d + * @param {Boolean} isFill 是否补零,默认补充 + * @param {String} infmt 输入格式,默认:%Y%M%d + * @return {String} %M%d + */ + str2Str: function(indate, outfmt, isFill, infmt) { + outfmt = outfmt || "%M%d"; + isFill = typeof isFill != 'undefined' ? isFill : true; + infmt = infmt || "%Y%M%d"; + var fmtDate = this.str2Date(indate, infmt); + return this.date2Str(fmtDate, outfmt, isFill); + }, + + /** + * 格式化日期为指定的格式 + * + * @method date2Str + * @param {Date} date + * @param {String} p 输出格式, %Y/%M/%d/%h/%m/%s的组合 + * @param {Boolean} [isFill:false] 不足两位是否补0 + * @return {String} + */ + date2Str: function(date, p, isFill) { + isFill = true; + var Y = date.getFullYear(), + M = date.getMonth() + 1, + d = date.getDate(), + h = date.getHours(), + m = date.getMinutes(), + s = date.getSeconds(); + if (isFill) { + M = (M < 10) ? ('0' + M) : M; + d = (d < 10) ? ('0' + d) : d; + h = (h < 10) ? ('0' + h) : h; + m = (m < 10) ? ('0' + m) : m; + s = (s < 10) ? ('0' + s) : s; + } + p = p || '%Y-%M-%d %h:%m:%s'; + p = p.replace(/%Y/g, Y).replace(/%M/g, M).replace(/%d/g, d).replace(/%h/g, h).replace(/%m/g, m).replace(/%s/g, s); + return p; + }, + setTimer:function ($t, time,obj) { + var timer = setInterval(function () { + $t.html(time + " 秒后重新获取"); + time--; + if (time <= 0) { + clearInterval(timer); + setTimeout(function () { + if(obj){ + $t.parents().find(obj).removeClass('disabled'); + } + $t.html("获取动态码").removeClass("disabled"); + }, 10); + + } + }, 1000); + }, + // 事件绑定 + bindEvents: function(bindings){ + for (var i in bindings) { + if(bindings[i].selector) { + $(bindings[i].element) + .on(bindings[i].event,bindings[i].selector , bindings[i].handler); + }else{ + $(bindings[i].element) + .on(bindings[i].event, bindings[i].handler); + } + } + }, + // 简化 ReturnFalse + returnFalse: function(evt, type){ + type = type || 0; + switch(parseInt(type, 10)){ + case 1: + evt.stopPropagation(); + break; + + case 2: + evt.preventDefault(); + break; + + default : + evt.stopPropagation(); + evt.preventDefault(); + break; + }; + return null; + }, + /* + @@ 截取字符串长度,汉字算2个字符 + @@ return [string]+'...' + */ + subString : function(str, len) { + var newLength = 0; + var newStr = ""; + var chineseRegex = /[^\x00-\xff]/g; + var singleChar = ""; + var strLength = str.replace(chineseRegex, "**").length; + for (var i = 0; i < strLength; i++) { + singleChar = str.charAt(i).toString(); + if (singleChar.match(chineseRegex) != null) { + newLength += 2; + } else { + newLength++; + } + if (newLength > len) { + break; + } + newStr += singleChar; + } + if (strLength > len) { + newStr += "..."; + } + return newStr; + }, + /** + * 将分转换成元 + * + * @param value 数值(Number) + * @return + * @type String + */ + fen2Yuan: function(value) { + var re = /^[\+|-]?[0-9]+$/; + if (typeof(value) != "string") { + value = value.toString() + } + return (re.test(value)) ? (parseFloat(value) / 100).toFixed(2) : "0.00" + }, + /** + * 将元转换成分 + * + * @param value 数值(Number) + * @return + * @type String + */ + yuan2Fen: function(value) { + var re = /^[\+|-]?\d+(\.\d+)?$/; + if (typeof(value) != "string") { + value = value.toString() + } + return (re.test(value)) ? (parseFloat(value) * 100).toFixed(0) : "0" + }, + /** + * 将数值四舍五入(保留2位小数)后格式化成金额形式 + * + * @param num 数值(Number或者String) + * @return 金额格式的字符串,如'1,234,567.45' + * @type String + */ + formatCurrency:function(num) { + var num, + sign, + cents; + num = num.toString().replace(/\$|\,/g,''); + if(isNaN(num)) + num = "0"; + sign = (num == (num = Math.abs(num))); + num = Math.floor(num*100+0.50000000001); + cents = num%100; + num = Math.floor(num/100).toString(); + if(cents<10) + cents = "0" + cents; + for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++) + num = num.substring(0,num.length-(4*i+3))+','+ + num.substring(num.length-(4*i+3)); + return (((sign)?'':'-') + num + (cents == 0 ? "" : '.' + cents) ); + }, + }; + // 模板 + UI.tpl = UI.tpl || { + loadTpl: function(id){ + var tpl = $('#' + id).html(); + return tpl; + }, + renderTpl: function(markup,renderData){ + var compiledTemplate = _.template(markup); + var output = compiledTemplate(renderData); + return output; + }, + // renderTplById: function(tplId,renderData){ + // var markup = this.loadTpl(tplId); + // var compiledTemplate = Handlebars.compile(markup); + // var output = compiledTemplate(renderData); + // return output; + // }, + renderTplById: function(tplId,renderData){ + var markup = this.loadTpl(tplId); + var render = _.template(markup); + var output = render(renderData); + return output; + }, + debug : function(){ + Handlebars.registerHelper("debug", function(optionalValue) { + console.group("当前上下文"); + console.log(this); + console.groupEnd(); + if (optionalValue) { + console.group("传入的值"); + console.debug(optionalValue); + console.groupEnd(); + } + }); + } + }; + // ajax封装 + UI.xhr = UI.xhr || { + getRequestURL: function(options){ + var host = '/'; + var port = options.port || window.location.port; + var query = options.query || {}; + var func = options.func || ''; + + var apiServer = host + func + + (UI.utils.isEmpty(query) ? '' : '?'); + + var name; + for (name in query) { + apiServer += name + '=' + query[name] + '&'; + } + return apiServer.replace(/&$/gi, ''); + }, + ajaxCall: function(options,callback){ + options = options || {}; + options.data = options.data ? options.data : ''; + options.method = options.method || 'GET'; + options.dataType = options.dataType || 'json'; + options.loading = options.loading || false; + options.url = options.url ? options.url : UI.xhr.getRequestURL(options); + $.ajax({ + url : options.url , + method : options.method, + data : options.data, + dataType:options.dataType, + xhrFields: { + withCredentials: true + }, + beforeSend: function(xhrs, settings){ + if(options.loading){ + $.hbLoading(); + } + }, + complete: function(xhrs, status){ + if(options.loading){ + $.hideLoading(); + } + }, + error:function(xhrs, errorType, error){ + if(options.loading){ + $.hideLoading(); + } + }, + success:function(data){ + if(data){ + (typeof(callback) === 'function') ? callback(data) : ''; + } + } + }); + }, + jsonpCall: function(options,callback){ + options = options || {}; + options.data = options.data ? options.data : ''; + options.method = options.method || 'POST'; + options.url = options.url ? options.url : UI.xhr.getRequestURL(options); + $.ajax({ + url : options.url , + method : options.method, + data : options.data, + dataType: 'jsonp', + jsonp : "callback", + jsonpCallback : 'jsonpReturn', + xhrFields: { + withCredentials: true + }, + beforeSend: function(xhrs, settings){ + if(options.hbLoading){ + $.hbLoading(); + } + }, + complete: function(xhrs, status){ + if(options.hbLoading){ + $.hideLoading(); + } + }, + error:function(xhrs, errorType, error){ + if(options.hbLoading){ + $.hideLoading(); + } + $.hbToast('服务器返回错误,请稍后再试...'); + }, + success:function(data){ + if(data){ + (typeof(callback) === 'function') ? callback(data) : ''; + } + } + }); + } + }; + // 海边统计 + UI.track = UI.track || { + trackEvent : function(){ + $('body').on('click','[hbTrack]',function(){ + var _param = $(this).attr('hbTrack'); + _param = _param.split(','); + _hbt.push(['_trackEvent',_param[0],_param[1],_param[2],_param[3],_param[4]]); + UI.track.sendLog(); + }); + }, + /** + * 自动发送统计 + * @param {[type]} params [description] + * @return {[type]} [description] + */ + autoTrackEvent:function(params){ + _param = params.split(','); + _hbt.push(['_trackEvent',_param[0],_param[1],_param[2],_param[3],_param[4]]); + UI.track.sendLog(); + }, + sendLog: function(){ + //拼接参数串 + var args = ''; + var params = {}; + if(_hbt) { + for(var i in _hbt) { + switch(_hbt[i][0]) { + case '_setPid': + params.pid = _hbt[i][1]; + break; + case '_trackEvent' : + params.page = _hbt[i][1]; + params.grade = _hbt[i][2]; + params.subject = _hbt[i][3]; + params.course = _hbt[i][4]; + if(_hbt[i][5]){ + params.other = _hbt[i][5]; + } + break; + default: + break; + } + } + } + for(var i in params) { + if(args != '') { + args += '&'; + } + args += i + '=' + encodeURIComponent(params[i]); + } + + //通过Image对象请求后端脚本 + var img = new Image(1, 1), + _imgURL = ''; + if($CONFIG.domain.host.indexOf('test2')>0){ + _imgURL = 'http://dev.www.haibian.com/c.gif?'; + }else{ + _imgURL = 'http://logserver.haibian.com/c.gif?'; + } + //img.src= 'http://logserver.haibian.com/c.gif?'+args; + img.src = _imgURL + args; + }, + init : function(){ + var me = this; + me.trackEvent(); + } + } +}(HBUI)); + +$(function(){ + //$.hbAlert('a'); + $('body').css('visibility','visible'); +}); diff --git a/js/plugins.js b/js/plugins.js new file mode 100644 index 0000000..5d91575 --- /dev/null +++ b/js/plugins.js @@ -0,0 +1,17 @@ +/*! +* ===================================================== + +* www +* @description : haibian.com +* @version : 1.0.0 +* @author : 听着情歌流泪 +* @create : 2016-03-29 11:20 +* @Released : 2016-03-30 18:48 +* @link : http://www.baibian.com +* Copyright (c) 2016 HaiBian +* ===================================================== +*/ +!function(){var t="object"==typeof self&&self.self===self&&self||"object"==typeof global&&global.global===global&&global||this,e=t._,i=Array.prototype,o=Object.prototype,n="undefined"!=typeof Symbol?Symbol.prototype:null,s=i.push,r=i.slice,a=o.toString,h=o.hasOwnProperty,l=Array.isArray,p=Object.keys,u=Object.create,c=function(){},d=function(t){return t instanceof d?t:this instanceof d?void(this._wrapped=t):new d(t)};"undefined"==typeof exports||exports.nodeType?t._=d:("undefined"!=typeof module&&!module.nodeType&&module.exports&&(exports=module.exports=d),exports._=d),d.VERSION="1.8.3";var f=function(t,e,i){if(void 0===e)return t;switch(null==i?3:i){case 1:return function(i){return t.call(e,i)};case 3:return function(i,o,n){return t.call(e,i,o,n)};case 4:return function(i,o,n,s){return t.call(e,i,o,n,s)}}return function(){return t.apply(e,arguments)}},g=function(t,e,i){return null==t?d.identity:d.isFunction(t)?f(t,e,i):d.isObject(t)?d.matcher(t):d.property(t)};d.iteratee=function(t,e){return g(t,e,1/0)};var m=function(t,e){return e=null==e?t.length-1:+e,function(){for(var i=Math.max(arguments.length-e,0),o=Array(i),n=0;i>n;n++)o[n]=arguments[n+e];switch(e){case 0:return t.call(this,o);case 1:return t.call(this,arguments[0],o);case 2:return t.call(this,arguments[0],arguments[1],o)}var s=Array(e+1);for(n=0;e>n;n++)s[n]=arguments[n];return s[e]=o,t.apply(this,s)}},v=function(t){if(!d.isObject(t))return{};if(u)return u(t);c.prototype=t;var e=new c;return c.prototype=null,e},y=function(t){return function(e){return null==e?void 0:e[t]}},b=Math.pow(2,53)-1,x=y("length"),w=function(t){var e=x(t);return"number"==typeof e&&e>=0&&b>=e};d.each=d.forEach=function(t,e,i){e=f(e,i);var o,n;if(w(t))for(o=0,n=t.length;n>o;o++)e(t[o],o,t);else{var s=d.keys(t);for(o=0,n=s.length;n>o;o++)e(t[s[o]],s[o],t)}return t},d.map=d.collect=function(t,e,i){e=g(e,i);for(var o=!w(t)&&d.keys(t),n=(o||t).length,s=Array(n),r=0;n>r;r++){var a=o?o[r]:r;s[r]=e(t[a],a,t)}return s};var j=function(t){var e=function(e,i,o,n){var s=!w(e)&&d.keys(e),r=(s||e).length,a=t>0?0:r-1;for(n||(o=e[s?s[a]:a],a+=t);a>=0&&r>a;a+=t){var h=s?s[a]:a;o=i(o,e[h],h,e)}return o};return function(t,i,o,n){var s=arguments.length>=3;return e(t,f(i,n,4),o,s)}};d.reduce=d.foldl=d.inject=j(1),d.reduceRight=d.foldr=j(-1),d.find=d.detect=function(t,e,i){var o;return o=w(t)?d.findIndex(t,e,i):d.findKey(t,e,i),void 0!==o&&-1!==o?t[o]:void 0},d.filter=d.select=function(t,e,i){var o=[];return e=g(e,i),d.each(t,function(t,i,n){e(t,i,n)&&o.push(t)}),o},d.reject=function(t,e,i){return d.filter(t,d.negate(g(e)),i)},d.every=d.all=function(t,e,i){e=g(e,i);for(var o=!w(t)&&d.keys(t),n=(o||t).length,s=0;n>s;s++){var r=o?o[s]:s;if(!e(t[r],r,t))return!1}return!0},d.some=d.any=function(t,e,i){e=g(e,i);for(var o=!w(t)&&d.keys(t),n=(o||t).length,s=0;n>s;s++){var r=o?o[s]:s;if(e(t[r],r,t))return!0}return!1},d.contains=d.includes=d.include=function(t,e,i,o){return w(t)||(t=d.values(t)),("number"!=typeof i||o)&&(i=0),d.indexOf(t,e,i)>=0},d.invoke=m(function(t,e,i){var o=d.isFunction(e);return d.map(t,function(t){var n=o?e:t[e];return null==n?n:n.apply(t,i)})}),d.pluck=function(t,e){return d.map(t,d.property(e))},d.where=function(t,e){return d.filter(t,d.matcher(e))},d.findWhere=function(t,e){return d.find(t,d.matcher(e))},d.max=function(t,e,i){var o,n,s=-(1/0),r=-(1/0);if(null==e||"number"==typeof e&&"object"!=typeof t[0]&&null!=t){t=w(t)?t:d.values(t);for(var a=0,h=t.length;h>a;a++)o=t[a],null!=o&&o>s&&(s=o)}else e=g(e,i),d.each(t,function(t,i,o){n=e(t,i,o),(n>r||n===-(1/0)&&s===-(1/0))&&(s=t,r=n)});return s},d.min=function(t,e,i){var o,n,s=1/0,r=1/0;if(null==e||"number"==typeof e&&"object"!=typeof t[0]&&null!=t){t=w(t)?t:d.values(t);for(var a=0,h=t.length;h>a;a++)o=t[a],null!=o&&s>o&&(s=o)}else e=g(e,i),d.each(t,function(t,i,o){n=e(t,i,o),(r>n||n===1/0&&s===1/0)&&(s=t,r=n)});return s},d.shuffle=function(t){return d.sample(t,1/0)},d.sample=function(t,e,i){if(null==e||i)return w(t)||(t=d.values(t)),t[d.random(t.length-1)];var o=w(t)?d.clone(t):d.values(t),n=x(o);e=Math.max(Math.min(e,n),0);for(var s=n-1,r=0;e>r;r++){var a=d.random(r,s),h=o[r];o[r]=o[a],o[a]=h}return o.slice(0,e)},d.sortBy=function(t,e,i){var o=0;return e=g(e,i),d.pluck(d.map(t,function(t,i,n){return{value:t,index:o++,criteria:e(t,i,n)}}).sort(function(t,e){var i=t.criteria,o=e.criteria;if(i!==o){if(i>o||void 0===i)return 1;if(o>i||void 0===o)return-1}return t.index-e.index}),"value")};var C=function(t,e){return function(i,o,n){var s=e?[[],[]]:{};return o=g(o,n),d.each(i,function(e,n){var r=o(e,n,i);t(s,e,r)}),s}};d.groupBy=C(function(t,e,i){d.has(t,i)?t[i].push(e):t[i]=[e]}),d.indexBy=C(function(t,e,i){t[i]=e}),d.countBy=C(function(t,e,i){d.has(t,i)?t[i]++:t[i]=1});var B=/[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g;d.toArray=function(t){return t?d.isArray(t)?r.call(t):d.isString(t)?t.match(B):w(t)?d.map(t):d.values(t):[]},d.size=function(t){return null==t?0:w(t)?t.length:d.keys(t).length},d.partition=C(function(t,e,i){t[i?0:1].push(e)},!0),d.first=d.head=d.take=function(t,e,i){return null!=t?null==e||i?t[0]:d.initial(t,t.length-e):void 0},d.initial=function(t,e,i){return r.call(t,0,Math.max(0,t.length-(null==e||i?1:e)))},d.last=function(t,e,i){return null!=t?null==e||i?t[t.length-1]:d.rest(t,Math.max(0,t.length-e)):void 0},d.rest=d.tail=d.drop=function(t,e,i){return r.call(t,null==e||i?1:e)},d.compact=function(t){return d.filter(t)};var _=function(t,e,i,o){o=o||[];for(var n=o.length,s=0,r=x(t);r>s;s++){var a=t[s];if(w(a)&&(d.isArray(a)||d.isArguments(a)))if(e)for(var h=0,l=a.length;l>h;)o[n++]=a[h++];else _(a,e,i,o),n=o.length;else i||(o[n++]=a)}return o};d.flatten=function(t,e){return _(t,e,!1)},d.without=m(function(t,e){return d.difference(t,e)}),d.uniq=d.unique=function(t,e,i,o){d.isBoolean(e)||(o=i,i=e,e=!1),null!=i&&(i=g(i,o));for(var n=[],s=[],r=0,a=x(t);a>r;r++){var h=t[r],l=i?i(h,r,t):h;e?(r&&s===l||n.push(h),s=l):i?d.contains(s,l)||(s.push(l),n.push(h)):d.contains(n,h)||n.push(h)}return n},d.union=m(function(t){return d.uniq(_(t,!0,!0))}),d.intersection=function(t){for(var e=[],i=arguments.length,o=0,n=x(t);n>o;o++){var s=t[o];if(!d.contains(e,s)){var r;for(r=1;i>r&&d.contains(arguments[r],s);r++);r===i&&e.push(s)}}return e},d.difference=m(function(t,e){return e=_(e,!0,!0),d.filter(t,function(t){return!d.contains(e,t)})}),d.unzip=function(t){for(var e=t&&d.max(t,x).length||0,i=Array(e),o=0;e>o;o++)i[o]=d.pluck(t,o);return i},d.zip=m(d.unzip),d.object=function(t,e){for(var i={},o=0,n=x(t);n>o;o++)e?i[t[o]]=e[o]:i[t[o][0]]=t[o][1];return i};var T=function(t){return function(e,i,o){i=g(i,o);for(var n=x(e),s=t>0?0:n-1;s>=0&&n>s;s+=t)if(i(e[s],s,e))return s;return-1}};d.findIndex=T(1),d.findLastIndex=T(-1),d.sortedIndex=function(t,e,i,o){i=g(i,o,1);for(var n=i(e),s=0,r=x(t);r>s;){var a=Math.floor((s+r)/2);i(t[a])0?a=s>=0?s:Math.max(s+h,a):h=s>=0?Math.min(s+1,h):s+h+1;else if(i&&s&&h)return s=i(o,n),o[s]===n?s:-1;if(n!==n)return s=e(r.call(o,a,h),d.isNaN),s>=0?s+a:-1;for(s=t>0?a:h-1;s>=0&&h>s;s+=t)if(o[s]===n)return s;return-1}};d.indexOf=k(1,d.findIndex,d.sortedIndex),d.lastIndexOf=k(-1,d.findLastIndex),d.range=function(t,e,i){null==e&&(e=t||0,t=0),i||(i=t>e?-1:1);for(var o=Math.max(Math.ceil((e-t)/i),0),n=Array(o),s=0;o>s;s++,t+=i)n[s]=t;return n},d.chunk=function(t,e){if(null==e||1>e)return[];for(var i=[],o=0,n=t.length;n>o;)i.push(r.call(t,o,o+=e));return i};var O=function(t,e,i,o,n){if(!(o instanceof e))return t.apply(i,n);var s=v(t.prototype),r=t.apply(s,n);return d.isObject(r)?r:s};d.bind=m(function(t,e,i){if(!d.isFunction(t))throw new TypeError("Bind must be called on a function");var o=m(function(n){return O(t,o,e,this,i.concat(n))});return o}),d.partial=m(function(t,e){var i=d.partial.placeholder,o=function(){for(var n=0,s=e.length,r=Array(s),a=0;s>a;a++)r[a]=e[a]===i?arguments[n++]:e[a];for(;ni)throw new Error("bindAll must be passed function names");for(;i--;){var o=e[i];t[o]=d.bind(t[o],t)}}),d.memoize=function(t,e){var i=function(o){var n=i.cache,s=""+(e?e.apply(this,arguments):o);return d.has(n,s)||(n[s]=t.apply(this,arguments)),n[s]};return i.cache={},i},d.delay=m(function(t,e,i){return setTimeout(function(){return t.apply(null,i)},e)}),d.defer=d.partial(d.delay,d,1),d.throttle=function(t,e,i){var o,n,s,r,a=0;i||(i={});var h=function(){a=i.leading===!1?0:d.now(),o=null,r=t.apply(n,s),o||(n=s=null)},l=function(){var l=d.now();a||i.leading!==!1||(a=l);var p=e-(l-a);return n=this,s=arguments,0>=p||p>e?(o&&(clearTimeout(o),o=null),a=l,r=t.apply(n,s),o||(n=s=null)):o||i.trailing===!1||(o=setTimeout(h,p)),r};return l.cancel=function(){clearTimeout(o),a=0,o=n=s=null},l},d.debounce=function(t,e,i){var o,n,s=function(e,i){o=null,i&&(n=t.apply(e,i))},r=m(function(r){var a=i&&!o;return o&&clearTimeout(o),a?(o=setTimeout(s,e),n=t.apply(this,r)):i||(o=d.delay(s,e,this,r)),n});return r.cancel=function(){clearTimeout(o),o=null},r},d.wrap=function(t,e){return d.partial(e,t)},d.negate=function(t){return function(){return!t.apply(this,arguments)}},d.compose=function(){var t=arguments,e=t.length-1;return function(){for(var i=e,o=t[e].apply(this,arguments);i--;)o=t[i].call(this,o);return o}},d.after=function(t,e){return function(){return--t<1?e.apply(this,arguments):void 0}},d.before=function(t,e){var i;return function(){return--t>0&&(i=e.apply(this,arguments)),1>=t&&(e=null),i}},d.once=d.partial(d.before,2),d.restArgs=m;var Q=!{toString:null}.propertyIsEnumerable("toString"),A=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],S=function(t,e){var i=A.length,n=t.constructor,s=d.isFunction(n)&&n.prototype||o,r="constructor";for(d.has(t,r)&&!d.contains(e,r)&&e.push(r);i--;)r=A[i],r in t&&t[r]!==s[r]&&!d.contains(e,r)&&e.push(r)};d.keys=function(t){if(!d.isObject(t))return[];if(p)return p(t);var e=[];for(var i in t)d.has(t,i)&&e.push(i);return Q&&S(t,e),e},d.allKeys=function(t){if(!d.isObject(t))return[];var e=[];for(var i in t)e.push(i);return Q&&S(t,e),e},d.values=function(t){for(var e=d.keys(t),i=e.length,o=Array(i),n=0;i>n;n++)o[n]=t[e[n]];return o},d.mapObject=function(t,e,i){e=g(e,i);for(var o=d.keys(t),n=o.length,s={},r=0;n>r;r++){var a=o[r];s[a]=e(t[a],a,t)}return s},d.pairs=function(t){for(var e=d.keys(t),i=e.length,o=Array(i),n=0;i>n;n++)o[n]=[e[n],t[e[n]]];return o},d.invert=function(t){for(var e={},i=d.keys(t),o=0,n=i.length;n>o;o++)e[t[i[o]]]=i[o];return e},d.functions=d.methods=function(t){var e=[];for(var i in t)d.isFunction(t[i])&&e.push(i);return e.sort()};var D=function(t,e){return function(i){var o=arguments.length;if(e&&(i=Object(i)),2>o||null==i)return i;for(var n=1;o>n;n++)for(var s=arguments[n],r=t(s),a=r.length,h=0;a>h;h++){var l=r[h];e&&void 0!==i[l]||(i[l]=s[l])}return i}};d.extend=D(d.allKeys),d.extendOwn=d.assign=D(d.keys),d.findKey=function(t,e,i){e=g(e,i);for(var o,n=d.keys(t),s=0,r=n.length;r>s;s++)if(o=n[s],e(t[o],o,t))return o};var I=function(t,e,i){return e in i};d.pick=m(function(t,e){var i={},o=e[0];if(null==t)return i;d.isFunction(o)?(e.length>1&&(o=f(o,e[1])),e=d.allKeys(t)):(o=I,e=_(e,!1,!1),t=Object(t));for(var n=0,s=e.length;s>n;n++){var r=e[n],a=t[r];o(a,r,t)&&(i[r]=a)}return i}),d.omit=m(function(t,e){var i,o=e[0];return d.isFunction(o)?(o=d.negate(o),e.length>1&&(i=e[1])):(e=d.map(_(e,!1,!1),String),o=function(t,i){return!d.contains(e,i)}),d.pick(t,o,i)}),d.defaults=D(d.allKeys,!0),d.create=function(t,e){var i=v(t);return e&&d.extendOwn(i,e),i},d.clone=function(t){return d.isObject(t)?d.isArray(t)?t.slice():d.extend({},t):t},d.tap=function(t,e){return e(t),t},d.isMatch=function(t,e){var i=d.keys(e),o=i.length;if(null==t)return!o;for(var n=Object(t),s=0;o>s;s++){var r=i[s];if(e[r]!==n[r]||!(r in n))return!1}return!0};var E,$;E=function(t,e,i,o){if(t===e)return 0!==t||1/t===1/e;if(null==t||null==e)return t===e;if(t!==t)return e!==e;var n=typeof t;return"function"!==n&&"object"!==n&&"object"!=typeof e?!1:$(t,e,i,o)},$=function(t,e,i,o){t instanceof d&&(t=t._wrapped),e instanceof d&&(e=e._wrapped);var s=a.call(t);if(s!==a.call(e))return!1;switch(s){case"[object RegExp]":case"[object String]":return""+t==""+e;case"[object Number]":return+t!==+t?+e!==+e:0===+t?1/+t===1/e:+t===+e;case"[object Date]":case"[object Boolean]":return+t===+e;case"[object Symbol]":return n.valueOf.call(t)===n.valueOf.call(e)}var r="[object Array]"===s;if(!r){if("object"!=typeof t||"object"!=typeof e)return!1;var h=t.constructor,l=e.constructor;if(h!==l&&!(d.isFunction(h)&&h instanceof h&&d.isFunction(l)&&l instanceof l)&&"constructor"in t&&"constructor"in e)return!1}i=i||[],o=o||[];for(var p=i.length;p--;)if(i[p]===t)return o[p]===e;if(i.push(t),o.push(e),r){if(p=t.length,p!==e.length)return!1;for(;p--;)if(!E(t[p],e[p],i,o))return!1}else{var u,c=d.keys(t);if(p=c.length,d.keys(e).length!==p)return!1;for(;p--;)if(u=c[p],!d.has(e,u)||!E(t[u],e[u],i,o))return!1}return i.pop(),o.pop(),!0},d.isEqual=function(t,e){return E(t,e)},d.isEmpty=function(t){return null==t?!0:w(t)&&(d.isArray(t)||d.isString(t)||d.isArguments(t))?0===t.length:0===d.keys(t).length},d.isElement=function(t){return!(!t||1!==t.nodeType)},d.isArray=l||function(t){return"[object Array]"===a.call(t)},d.isObject=function(t){var e=typeof t;return"function"===e||"object"===e&&!!t},d.each(["Arguments","Function","String","Number","Date","RegExp","Error","Symbol","Map","WeakMap","Set","WeakSet"],function(t){d["is"+t]=function(e){return a.call(e)==="[object "+t+"]"}}),d.isArguments(arguments)||(d.isArguments=function(t){return d.has(t,"callee")});var M=t.document&&t.document.childNodes;"function"!=typeof/./&&"object"!=typeof Int8Array&&"function"!=typeof M&&(d.isFunction=function(t){return"function"==typeof t||!1}),d.isFinite=function(t){return!d.isSymbol(t)&&isFinite(t)&&!isNaN(parseFloat(t))},d.isNaN=function(t){return d.isNumber(t)&&isNaN(t)},d.isBoolean=function(t){return t===!0||t===!1||"[object Boolean]"===a.call(t)},d.isNull=function(t){return null===t},d.isUndefined=function(t){return void 0===t},d.has=function(t,e){return null!=t&&h.call(t,e)},d.noConflict=function(){return t._=e,this},d.identity=function(t){return t},d.constant=function(t){return function(){return t}},d.noop=function(){},d.property=y,d.propertyOf=function(t){return null==t?function(){}:function(e){return t[e]}},d.matcher=d.matches=function(t){return t=d.extendOwn({},t),function(e){return d.isMatch(e,t)}},d.times=function(t,e,i){var o=Array(Math.max(0,t));e=f(e,i,1);for(var n=0;t>n;n++)o[n]=e(n);return o},d.random=function(t,e){return null==e&&(e=t,t=0),t+Math.floor(Math.random()*(e-t+1))},d.now=Date.now||function(){return(new Date).getTime()};var L={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},N=d.invert(L),z=function(t){var e=function(e){return t[e]},i="(?:"+d.keys(t).join("|")+")",o=RegExp(i),n=RegExp(i,"g");return function(t){return t=null==t?"":""+t,o.test(t)?t.replace(n,e):t}};d.escape=z(L),d.unescape=z(N),d.result=function(t,e,i){var o=null==t?void 0:t[e];return void 0===o&&(o=i),d.isFunction(o)?o.call(t):o};var Y=0;d.uniqueId=function(t){var e=++Y+"";return t?t+e:e},d.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var F=/(.)^/,P={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},X=/\\|'|\r|\n|\u2028|\u2029/g,H=function(t){return"\\"+P[t]};d.template=function(t,e,i){!e&&i&&(e=i),e=d.defaults({},e,d.templateSettings);var o=RegExp([(e.escape||F).source,(e.interpolate||F).source,(e.evaluate||F).source].join("|")+"|$","g"),n=0,s="__p+='";t.replace(o,function(e,i,o,r,a){return s+=t.slice(n,a).replace(X,H),n=a+e.length,i?s+="'+\n((__t=("+i+"))==null?'':_.escape(__t))+\n'":o?s+="'+\n((__t=("+o+"))==null?'':__t)+\n'":r&&(s+="';\n"+r+"\n__p+='"),e}),s+="';\n",e.variable||(s="with(obj||{}){\n"+s+"}\n"),s="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+s+"return __p;\n";var r;try{r=new Function(e.variable||"obj","_",s)}catch(a){throw a.source=s,a}var h=function(t){return r.call(this,t,d)},l=e.variable||"obj";return h.source="function("+l+"){\n"+s+"}",h},d.chain=function(t){var e=d(t);return e._chain=!0,e};var R=function(t,e){return t._chain?d(e).chain():e};d.mixin=function(t){d.each(d.functions(t),function(e){var i=d[e]=t[e];d.prototype[e]=function(){var t=[this._wrapped];return s.apply(t,arguments),R(this,i.apply(d,t))}})},d.mixin(d),d.each(["pop","push","reverse","shift","sort","splice","unshift"],function(t){var e=i[t];d.prototype[t]=function(){var i=this._wrapped;return e.apply(i,arguments),"shift"!==t&&"splice"!==t||0!==i.length||delete i[0],R(this,i)}}),d.each(["concat","join","slice"],function(t){var e=i[t];d.prototype[t]=function(){return R(this,e.apply(this._wrapped,arguments))}}),d.prototype.value=function(){return this._wrapped},d.prototype.valueOf=d.prototype.toJSON=d.prototype.value,d.prototype.toString=function(){return""+this._wrapped},"function"==typeof define&&(define.amd||define.cmd)&&define("underscore",[],function(){return d})}(),function(t,e){"use strict";"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&(define.amd||define.cmd)?define(e):window.utils=e()}(this,function(t){"use strict";if("undefined"==typeof e||!e)var e={version:"1.0.0"};return e.utils=e.utils||{isEmpty:function(t){for(var e in t)if(t.hasOwnProperty(e))return!1;return!0},getQueryString:function(t){var e=new RegExp("(^|&)"+t+"=([^&]*)(&|$)","i"),i=window.location.search.substr(1).match(e);return null!=i?unescape(i[2]):null},isPhone:function(t){return t?!!/^(13[0-9]|14[0-9]|15[0-9]||17[0-9]|18[0-9])\d{8}$/i.test(t):this},unixToLocal:function(t){var e=new Date(1e3*t),i={year:e.getFullYear(),month:e.getMonth()+1?"0"+(e.getMonth()+1):e.getMonth()+1,day:e.getDate()<10?"0"+e.getDate():e.getDate(),hour:e.getHours()<10?"0"+e.getHours():e.getHours(),min:e.getMinutes()<10?"0"+e.getMinutes():e.getMinutes(),second:e.getSeconds()<10?"0"+e.getSeconds():e.getSeconds()};return i},formatTime:function(t){var e=this,i=e.unixToLocal(t);return i.year+"-"+i.month+"-"+i.day+" "+i.hour+":"+i.min+":"+i.second},getNowTime:function(){var t=new Date,e=t.getTime();return parseInt(e/1e3)},dateDiff:function(t,e,i){var o=0;switch(i){case"Y":o=t.getFullYear()-e.getFullYear();break;case"M":o=12*(t.getFullYear()-e.getFullYear())+(t.getMonth()-e.getMonth());break;case"d":o=(t-e)/864e5;break;case"h":o=(t-e)/36e5;break;case"m":o=(t-e)/6e4;break;case"s":o=(t-e)/1e3;break;default:o=t-e}return o},dateAdd:function(t,e,i){switch(t){case"y":e.setFullYear(e.getFullYear()+i);break;case"q":e.setMonth(e.getMonth()+3*i);break;case"n":e.setMonth(e.getMonth()+i);break;case"d":e.setDate(e.getDate()+i);break;case"w":e.setDate(e.getDate()+7*i);break;case"h":e.setHours(e.getHours()+i);break;case"m":e.setMinutes(e.getMinutes()+i);break;case"s":e.setSeconds(e.getSeconds()+i);break;case"i":e.setMilliseconds(e.getMilliseconds()+i);break;default:e.setMilliseconds(e.getMilliseconds()+i)}return e},str2Date:function(t,e){e=e||"%Y-%M-%d %h:%m:%s",e=e.replace(/\-/g,"\\-"),e=e.replace(/\|/g,"\\|"),e=e.replace(/\./g,"\\."),e=e.replace(/\+/g,"\\+"),e=e.replace("%Y","(\\d{4})"),e=e.replace("%M","(\\d{1,2})"),e=e.replace("%d","(\\d{1,2})"),e=e.replace("%h","(\\d{1,2})"),e=e.replace("%m","(\\d{1,2})"),e=e.replace("%s","(\\d{1,2})");var i=new RegExp("^"+e+"$"),o=i.exec(t),n=(o[1]||0)-0,s=(o[2]||1)-1,r=(o[3]||0)-0,a=(o[4]||0)-0,h=(o[5]||0)-0,l=(o[6]||0)-0;return new Date(n,s,r,a,h,l)},str2Str:function(t,e,i,o){e=e||"%M%d",i="undefined"!=typeof i?i:!0,o=o||"%Y%M%d";var n=this.str2Date(t,o);return this.date2Str(n,e,i)},date2Str:function(t,e,i){i=!0;var o=t.getFullYear(),n=t.getMonth()+1,s=t.getDate(),r=t.getHours(),a=t.getMinutes(),h=t.getSeconds();return i&&(n=10>n?"0"+n:n,s=10>s?"0"+s:s,r=10>r?"0"+r:r,a=10>a?"0"+a:a,h=10>h?"0"+h:h),e=e||"%Y-%M-%d %h:%m:%s",e=e.replace(/%Y/g,o).replace(/%M/g,n).replace(/%d/g,s).replace(/%h/g,r).replace(/%m/g,a).replace(/%s/g,h)},bindEvents:function(t){for(var e in t)t[e].selector?$(t[e].element).on(t[e].event,t[e].selector,t[e].handler):$(t[e].element).on(t[e].event,t[e].handler)},returnFalse:function(t,e){switch(e=e||0,parseInt(e,10)){case 1:t.stopPropagation();break;case 2:t.preventDefault();break;default:t.stopPropagation(),t.preventDefault()}return null},subString:function(t,e){for(var i=0,o="",n=/[^\x00-\xff]/g,s="",r=t.replace(n,"**").length,a=0;r>a&&(s=t.charAt(a).toString(),null!=s.match(n)?i+=2:i++,!(i>e));a++)o+=s;return r>e&&(o+="..."),o},fen2Yuan:function(t){var e=/^[\+|-]?[0-9]+$/;return"string"!=typeof t&&(t=t.toString()),e.test(t)?(parseFloat(t)/100).toFixed(2):"0.00"},yuan2Fen:function(t){var e=/^[\+|-]?\d+(\.\d+)?$/;return"string"!=typeof t&&(t=t.toString()),e.test(t)?(100*parseFloat(t)).toFixed(0):"0"},formatCurrency:function(t){var t,e,i;t=t.toString().replace(/\$|\,/g,""),isNaN(t)&&(t="0"),e=t==(t=Math.abs(t)),t=Math.floor(100*t+.50000000001),i=t%100,t=Math.floor(t/100).toString(),10>i&&(i="0"+i);for(var o=0;o=0))return n;for(t=t.split("?")[1],i=t.split("&"),e=0;e=0&&(i[t.toCamelCase(s.name.split("data-")[1])]=s.value)}for(var r in i)"false"===i[r]?i[r]=!1:"true"===i[r]?i[r]=!0:parseFloat(i[r])===1*i[r]&&(i[r]=1*i[r]);return i}},t.fn.transitionEnd=function(t){function e(s){if(s.target===this)for(t.call(this,s),i=0;ie)){("number"!=typeof n||isNaN(n)||0>n)&&(n=0),n=n||0;var r=jQuery.data(t,this.dataKey)||jQuery.data(t,this.dataKey,{});r[i]||(r[i]={}),o.timerID=o.timerID||this.guid++;var a=function(){(++s>n&&0!==n||o.call(t,s)===!1)&&jQuery.timer.remove(t,i,o)};a.timerID=o.timerID,r[i][o.timerID]||(r[i][o.timerID]=window.setInterval(a,e)),this.global.push(t)}},remove:function(t,e,i){var o,n=jQuery.data(t,this.dataKey);if(n){if(e){if(n[e]){if(i)i.timerID&&(window.clearInterval(n[e][i.timerID]),delete n[e][i.timerID]);else for(var i in n[e])window.clearInterval(n[e][i]),delete n[e][i];for(o in n[e])break;o||(o=null,delete n[e])}}else for(e in n)this.remove(t,e,i);for(o in n)break;o||jQuery.removeData(t,this.dataKey)}}}}),jQuery(window).bind("unload",function(){jQuery.each(jQuery.timer.global,function(t,e){jQuery.timer.remove(e)})}),+function(t){"use strict";function e(){var t=document.createElement("hbToolTip"),e={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var i in e)if(void 0!==t.style[i])return{end:e[i]};return!1}t.fn.emulateTransitionEnd=function(e){var i=!1,o=this;t(this).one("hbTransitionEnd",function(){i=!0});var n=function(){i||t(o).trigger(t.support.transition.end)};return setTimeout(n,e),this},t(function(){t.support.transition=e(),t.support.transition&&(t.event.special.hbTransitionEnd={bindType:t.support.transition.end,delegateType:t.support.transition.end,handle:function(e){return t(e.target).is(this)?e.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),function(t){if("function"==typeof define&&define.amd)define(t);else if("object"==typeof exports)module.exports=t();else{var e=window.hbCookies,i=window.hbCookies=t();i.noConflict=function(){return window.hbCookies=e,i}}}(function(){function t(){for(var t=0,e={};t1){if(s=t({path:"/"},o.defaults,s),"number"==typeof s.expires){var h=new Date;h.setMilliseconds(h.getMilliseconds()+864e5*s.expires),s.expires=h}try{r=JSON.stringify(n),/^[\{\[]/.test(r)&&(n=r)}catch(l){}return n=i.write?i.write(n,e):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)),e=e.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent),e=a+e.replace(/[\(\)]/g,escape),document.cookie=[e,"=",n,s.expires&&"; expires="+s.expires.toUTCString(),s.path&&"; path="+s.path,s.domain&&"; domain="+s.domain,s.secure?"; secure":""].join("")}e||(r={});for(var p=document.cookie?document.cookie.split("; "):[],u=/(%[0-9A-Z]{2})+/g,c=0;c").attr(t.extend(e(this),{type:"text"}))}n.removeAttr("name").data({"placeholder-enabled":!0,"placeholder-password":r,"placeholder-id":h}).bind("focus.placeholder",i),r.data({"placeholder-textinput":n,"placeholder-id":h}).before(n)}s.value="",r=r.removeAttr("id").hide().prevAll('input[type="text"]:first').attr("id",r.data("placeholder-id")).show()}else{var p=r.data("placeholder-password");p&&(p[0].value="",r.attr("id",r.data("placeholder-id")).show().nextAll('input[type="password"]:last').hide().removeAttr("id"))}r.addClass(d.addClass),r[0].value=r.attr(a?"placeholder-x":"placeholder")}else r.removeClass(d.addClass)}function n(){try{return document.activeElement}catch(t){}}var s,r,a=!1,h="[object OperaMini]"===Object.prototype.toString.call(window.operamini),l="placeholder"in document.createElement("input")&&!h&&!a,p="placeholder"in document.createElement("textarea")&&!h&&!a,u=t.valHooks,c=t.propHooks,d={};l&&p?(r=t.fn.placeholder=function(){return this},r.input=!0,r.textarea=!0):(r=t.fn.placeholder=function(e){var n={addClass:"placeholder"};return d=t.extend({},n,e),this.filter((l?"textarea":":input")+"["+(a?"placeholder-x":"placeholder")+"]").not("."+d.addClass).not(":radio, :checkbox, :hidden").bind({"focus.placeholder":i,"blur.placeholder":o}).data("placeholder-enabled",!0).trigger("blur.placeholder")},r.input=l,r.textarea=p,s={get:function(e){var i=t(e),o=i.data("placeholder-password");return o?o[0].value:i.data("placeholder-enabled")&&i.hasClass(d.addClass)?"":e.value},set:function(e,s){var r,a,h=t(e);return""!==s&&(r=h.data("placeholder-textinput"),a=h.data("placeholder-password"),r?(i.call(r[0],!0,s)||(e.value=s),r[0].value=s):a&&(i.call(e,!0,s)||(a[0].value=s),e.value=s)),h.data("placeholder-enabled")?(""===s?(e.value=s,e!=n()&&o.call(e)):(h.hasClass(d.addClass)&&i.call(e),e.value=s),h):(e.value=s,h)}},l||(u.input=s,c.value=s),p||(u.textarea=s,c.value=s),t(function(){t(document).delegate("form","submit.placeholder",function(){var e=t("."+d.addClass,this).each(function(){i.call(this,!0,"")});setTimeout(function(){e.each(o)},10)})}),t(window).bind("beforeunload.placeholder",function(){var e=!0;try{"javascript:void(0)"===document.activeElement.toString()&&(e=!1)}catch(i){}e&&t("."+d.addClass).each(function(){this.value=""})}))}(jQuery),+function(t){"use strict";function e(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A-Za-z]/.test(i)&&i.replace(/.*(?=#[^\s]*$)/,""));var o=i&&t(i);return o&&o.length?o:e.parent()}function i(i){i&&3===i.which||(t(n).remove(),t(s).each(function(){var o=t(this),n=e(o),s={relatedTarget:this};n.hasClass("open")&&(i&&"click"==i.type&&/input|textarea/i.test(i.target.tagName)&&t.contains(n[0],i.target)||(n.trigger(i=t.Event("hide.hb.dropdown",s)),i.isDefaultPrevented()||(o.attr("aria-expanded","false"),n.removeClass("open").trigger(t.Event("hidden.hb.dropdown",s)))))}))}function o(e){return this.each(function(){var i=t(this),o=i.data("hb.dropdown");o||i.data("hb.dropdown",o=new r(this)),"string"==typeof e&&o[e].call(i)})}var n=".dropdown-backdrop",s='[data-toggle="dropdown"]',r=function(e){t(e).on("click.hb.dropdown",this.toggle)};r.VERSION="1.0.0",r.prototype.toggle=function(o){var n=t(this);if(!n.is(".disabled, :disabled")){var s=e(n),r=s.hasClass("open");if(i(),!r){"ontouchstart"in document.documentElement&&!s.closest(".navbar-nav").length&&t(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(t(this)).on("click",i); +var a={relatedTarget:this};if(s.trigger(o=t.Event("show.hb.dropdown",a)),o.isDefaultPrevented())return;n.trigger("focus").attr("aria-expanded","true"),s.toggleClass("open").trigger(t.Event("shown.hb.dropdown",a))}return!1}},r.prototype.keydown=function(i){if(/(38|40|27|32)/.test(i.which)&&!/input|textarea/i.test(i.target.tagName)){var o=t(this);if(i.preventDefault(),i.stopPropagation(),!o.is(".disabled, :disabled")){var n=e(o),r=n.hasClass("open");if(!r&&27!=i.which||r&&27==i.which)return 27==i.which&&n.find(s).trigger("focus"),o.trigger("click");var a=" li:not(.disabled):visible a",h=n.find(".dropdown-menu"+a);if(h.length){var l=h.index(i.target);38==i.which&&l>0&&l--,40==i.which&&l'),jQuery('
    ').html(this.options.cancelButton.text).click(function(){this.options.cancel&&this.options.cancel(),this.close()}.bind(this)).appendTo(this.footer),this.submitButton=jQuery('
    ').html(this.options.confirmButton.text).appendTo(this.footer),this.footer.appendTo(this.container)},_onOpen:function(){this.submitButton.off("click.hbBox-Confirm"+this.id).on("click.hbBox-Confirm"+this.id,function(){this.options.confirm?this.options.confirm():eval(this.source.data("hbBox-Confirm-submit")),this.close()}.bind(this))}},Loading:{target:jQuery(window),fixed:!0,animation:"zoomIn",closeOnClick:!1,closeButton:!1,overlay:!0,minWidth:50,minHeight:50,overflowOpacity:!0,_onInit:function(){this.open()},_onCreated:function(){this.options.color&&this.wrapper.addClass("hbBox-Loading-color hbBox-Loading-"+this.options.color),this.wrapper.data("hbBox-Loading-position",this.options.attributes.x+"-"+this.options.attributes.y)},_onCloseComplete:function(){this.destroy()}},Notice:{target:jQuery(window),fixed:!0,content:"\u63d0\u793a\u4fe1\u606f",attributes:{x:"right",y:"bottom"},animation:"zoomIn",closeOnClick:!1,closeButton:!1,color:"black",_onInit:function(){this.open(),this.options.delayClose=this.options.autoClose,this.options.delayClose&&this.close()},_onCreated:function(){this.options.color&&this.wrapper.addClass("hbBox-Notice-color hbBox-Notice-"+this.options.color),this.wrapper.data("hbBox-Notice-position",this.options.attributes.x+"-"+this.options.attributes.y)},_onOpen:function(){jQuery.each(jQuery(".hbBox-Notice"),function(t,e){return e=jQuery(e),e.attr("id")!=this.id&&e.data("hbBox-Notice-position")==this.options.attributes.x+"-"+this.options.attributes.y?this.options.stack?void e.css("margin-"+this.options.attributes.y,parseInt(e.css("margin-"+this.options.attributes.y))+this.wrapper.outerHeight()+10):void e.data("hbBox").close({ignoreDelay:!0}):void 0}.bind(this)),this.options.audio&&this.audio({url:this.options.audio,valume:this.options.volume})},_onCloseComplete:function(){this.destroy()}},Image:{target:jQuery(window),fixed:!0,blockScroll:!0,closeOnEsc:!0,closeOnClick:"overlay",closeButton:!0,overlay:!0,animation:"zoomOut",width:800,height:533,attach:jQuery("[data-hbBox-image]"),preventDefault:!0,_onInit:function(){this.images=this.currentImage={},this.imageZIndex=1,this.attachedElements&&jQuery.each(this.attachedElements,function(t,e){if(e=jQuery(e),!e.data("hbBox-image-gallery")){var i=e.attr(this.options.gallery)||"default";!this.images[i]&&(this.images[i]=[]),this.images[i].push({src:e.attr(this.options.src),label:e.attr(this.options.imageLabel)||""}),"title"==this.options.imageLabel&&e.removeAttr("title"),e.data("hbBox-image-gallery",i),e.data("hbBox-image-id",this.images[i].length-1)}}.bind(this));var t=function(t,e,i,o){if(!jQuery("#hbBox-image-"+t+"-"+e).length){var n=jQuery("
    ",{id:"hbBox-image-"+t+"-"+e,"class":"hbBox-image-container"}).css({backgroundImage:"url("+this.images[t][e].src+")",backgroundSize:this.options.imageSize,opacity:o?1:0,zIndex:i?0:this.imageZIndex++}).appendTo(this.content);jQuery("
    ",{id:"hbBox-image-label-"+t+"-"+e,"class":"hbBox-image-label"+(o?" active":"")}).html(this.images[t][e].label).appendTo(this.imageLabel);!o&&!i&&n.animate({opacity:1},this.options.imageFade)}}.bind(this),e=function(t,e){jQuery(".hbBox-image-label.active").removeClass("active"),jQuery("#hbBox-image-label-"+t+"-"+e).addClass("active")};this.showImage=function(i){if("open"!=i){var o=this.currentImage.gallery,n=this.currentImage.id+(1*("prev"==i)?-1:1);n=n>this.images[o].length-1?0:0>n?this.images[o].length-1:n}else{var o=this.source.data("hbBox-image-gallery"),n=this.source.data("hbBox-image-id");jQuery(".hbBox-image-pointer-prev, .hbBox-image-pointer-next").css({display:this.images[o].length>1?"block":"none"})}if(this.currentImage={gallery:o,id:n},jQuery("#hbBox-image-"+o+"-"+n).length)jQuery("#hbBox-image-"+o+"-"+n).css({zIndex:this.imageZIndex++,opacity:0}).animate({opacity:1},"open"==i?0:this.options.imageFade),e(o,n);else{this.wrapper.addClass("hbBox-loading");jQuery('').load(function(){t(o,n,!1),e(o,n),this.wrapper.removeClass("hbBox-loading")}.bind(this))}var s=n+1;s=s>this.images[o].length-1?0:0>s?this.images[o].length-1:s,!jQuery("#hbBox-image-"+o+"-"+s).length&&jQuery('').load(function(){t(o,s,!0)})}},_onCreated:function(){this.imageLabel=jQuery("
    ",{id:"hbBox-image-label"}).appendTo(this.wrapper),this.wrapper.append(jQuery("
    ",{"class":"hbBox-image-pointer-prev",click:function(){this.showImage("prev")}.bind(this)})).append(jQuery("
    ",{"class":"hbBox-image-pointer-next",click:function(){this.showImage("next")}.bind(this)}))},_onOpen:function(){jQuery("body").addClass("hbBox-image-open"),jQuery(document).on("keyup.hbBox-"+this.id,function(t){37==t.keyCode&&this.showImage("prev"),39==t.keyCode&&this.showImage("next")}.bind(this)),this.showImage("open")},_onClose:function(){jQuery("body").removeClass("hbBox-image-open"),jQuery(document).off("keyup.hbBox-"+this.id)},_onCloseComplete:function(){this.wrapper.find(".hbBox-image-container").css("opacity",0)}}},"string"==jQuery.type(type)&&(this.type=type,type=this.defaultOptions[type]?this.defaultOptions[type]:window["hbBox"+type+"Options"]),this.options=jQuery.extend(!0,this.options,type,options),this._fireEvent=function(t,e){this.options["_"+t]&&this.options["_"+t].bind(this)(e),this.options[t]&&this.options[t].bind(this)(e)},this._fireEvent("onBeforeInit"),null===this.options.id&&(this.options.id="hbBox_id_"+hbBox._getUniqueID()),this.id=this.options.id,("center"==this.options.position.x&&"x"==this.options.outside||"center"==this.options.position.y&&"y"==this.options.outside)&&(this.options.outside=!1),(!this.options.outside||"xy"==this.options.outside)&&(this.options.pointer=!1),"object"!=jQuery.type(this.options.offset)&&(this.options.offset={x:this.options.offset,y:this.options.offset}),this.options.offset.x||(this.options.offset.x=0),this.options.offset.y||(this.options.offset.y=0),"object"!=jQuery.type(this.options.adjustDistance)?this.options.adjustDistance={top:this.options.adjustDistance,right:this.options.adjustDistance,bottom:this.options.adjustDistance,left:this.options.adjustDistance}:this.options.adjustDistance=jQuery.extend({top:5,left:5,right:5,bottom:5},this.options.adjustDistance),this.align=this.options.outside&&"xy"!=this.options.outside?this.options.position[this.options.outside]:"center"!=this.options.position.y&&"number"!=jQuery.type(this.options.position.y)?this.options.position.x:"center"!=this.options.position.x&&"number"!=jQuery.type(this.options.position.x)?this.options.position.y:this.options.attributes.x,this.options.outside&&"xy"!=this.options.outside&&(this.outside=this.options.position[this.options.outside]);var userAgent=navigator.userAgent.toLowerCase();return this.IE8=-1!=userAgent.indexOf("msie")&&8==parseInt(userAgent.split("msie")[1]),this.prefix=-1!=userAgent.indexOf("webkit")?"-webkit-":"",this._getOpp=function(t){return{left:"right",right:"left",top:"bottom",bottom:"top",x:"y",y:"x"}[t]},this._getXY=function(t){return{left:"x",right:"x",top:"y",bottom:"y",center:"x"}[t]},this._getTL=function(t){return{left:"left",right:"left",top:"top",bottom:"top",center:"left",x:"left",y:"top"}[t]},this._supportsSVG=function(){return document.createElement("svg").getAttributeNS},this._createSVG=function(t,e){var i=document.createElementNS("http://www.w3.org/2000/svg",t);return jQuery.each(e,function(t,e){i.setAttribute(e[0],e[1]||"")}),i},this._appendSVG=function(t,e){return e.appendChild(t)},this._isolateScroll=function(t){t&&jQuery(t).length&&t.on("DOMMouseScroll.hbBoxIsolatedScroll mousewheel.hbBoxIsolatedScroll",function(e){var i=e.wheelDelta||e.originalEvent&&e.originalEvent.wheelDelta||-e.detail,o=this.scrollTop+t.outerHeight()-this.scrollHeight>=0,n=this.scrollTop<=0;(0>i&&o||i>0&&n)&&e.preventDefault()})},this._create=function(){if(!this.wrapper){if(this.wrapper=jQuery("
    ",{id:this.id,"class":"hbBox-wrapper"+(this.type?" hbBox-"+this.type:"")+(this.options.theme?" hbBox-"+this.options.theme:"")+(this.options.addClass?" "+this.options.addClass:"")+(this.IE8?" hbBox-IE8":"")}).css({position:this.options.fixed?"fixed":"absolute",display:"none",opacity:0,zIndex:this.options.zIndex}).data("hbBox",this),this.options.closeOnMouseleave&&this.wrapper.mouseleave(function(t){!this.source||!(t.relatedTarget==this.source[0]||-1!==jQuery.inArray(this.source[0],jQuery(t.relatedTarget).parents("*")))&&this.close()}.bind(this)),"box"==this.options.closeOnClick&&this.wrapper.on("touchend click",function(){this.close({ignoreDelay:!0})}.bind(this)),this.container=jQuery("
    ",{"class":"hbBox-container"}).appendTo(this.wrapper),this.content=jQuery("
    ",{"class":"hbBox-content"}).css({width:this.options.width,height:this.options.height,minWidth:this.options.minWidth,minHeight:this.options.minHeight,maxWidth:this.options.maxWidth,maxHeight:this.options.maxHeight}).appendTo(this.container),this.options.isolateScroll&&this._isolateScroll(this.content),this.options.closeButton){if(this.closeButton=jQuery("
    ",{"class":"hbBox-closeButton hbBox-noDrag"}).on("touchend click",function(t){this.isOpen&&this.close({ignoreDelay:!0})}.bind(this)),this._supportsSVG()){var t=this._createSVG("svg",[["viewBox","0 0 24 24"]]);this._appendSVG(this._createSVG("path",[["d","M22.2,4c0,0,0.5,0.6,0,1.1l-6.8,6.8l6.9,6.9c0.5,0.5,0,1.1,0,1.1L20,22.3c0,0-0.6,0.5-1.1,0L12,15.4l-6.9,6.9c-0.5,0.5-1.1,0-1.1,0L1.7,20c0,0-0.5-0.6,0-1.1L8.6,12L1.7,5.1C1.2,4.6,1.7,4,1.7,4L4,1.7c0,0,0.6-0.5,1.1,0L12,8.5l6.8-6.8c0.5-0.5,1.1,0,1.1,0L22.2,4z"]]),t),this.closeButton.append(t)}else this.wrapper.addClass("hbBox-nosvg");"box"!=this.options.closeButton&&(this.options.closeButton!==!0||this.options.overlay||this.options.title)||(this.wrapper.addClass("hbBox-closeButton-box"),this.closeButton.appendTo(this.container))}if(this.wrapper.appendTo(this.options.appendTo),this.options.pointer){if(this.pointer={position:"target"!=this.options.pointTo?this.options.pointTo:this._getOpp(this.outside),xy:"target"!=this.options.pointTo?this._getXY(this.options.pointTo):this._getXY(this.outside),align:"center",offset:0},this.pointer.element=jQuery("
    ",{"class":"hbBox-pointer hbBox-pointer-"+this.pointer.position}).appendTo(this.wrapper),this.pointer.dimensions={x:this.pointer.element.outerWidth(),y:this.pointer.element.outerHeight()},"string"==jQuery.type(this.options.pointer)){var e=this.options.pointer.split(":");e[0]&&(this.pointer.align=e[0]),e[1]&&(this.pointer.offset=parseInt(e[1]))}this.pointer.alignAttribute="x"==this.pointer.xy?"bottom"==this.pointer.align?"bottom":"top":"right"==this.pointer.align?"right":"left",this.wrapper.css("padding-"+this.pointer.position,this.pointer.dimensions[this.pointer.xy]),this.pointer.element.css(this.pointer.alignAttribute,"center"==this.pointer.align?"50%":0).css("margin-"+this.pointer.alignAttribute,this.pointer.offset),this.pointer.margin={},this.pointer.margin["margin-"+this.pointer.alignAttribute]=this.pointer.offset,"center"==this.pointer.align&&this.pointer.element.css(this.prefix+"transform","translate("+("y"==this.pointer.xy?this.pointer.dimensions.x*-.5+"px":0)+", "+("x"==this.pointer.xy?this.pointer.dimensions.y*-.5+"px":0)+")"),this.pointer.element.css("x"==this.pointer.xy?"width":"height",parseInt(this.pointer.dimensions[this.pointer.xy])+parseInt(this.container.css("border-"+this.pointer.alignAttribute+"-width"))),this.wrapper.addClass("hbBox-pointerPosition-"+this.pointer.position)}if("Iframe"==this.type){var i=this.options.title?this.options.height-jQuery(".hbBox-title").height():this.options.height;this.setContent('',!0)}else if("Loading"==this.type){var o='
    ';this.setContent(o,!0)}else this.setContent(this.options.content,!0);if(this.setTitle(this.options.title,!0),this.options.draggable){var n="title"==this.options.draggable?this.titleContainer:this.options.draggable.length>0?this.options.draggable:this.options.draggable.selector?jQuery(this.options.draggable.selector):this.wrapper;n.addClass("hbBox-draggable").on("mousedown",function(t){if(2!=t.button&&!jQuery(t.target).hasClass("hbBox-noDrag")&&!jQuery(t.target).parents(".hbBox-noDrag").length){this.options.dragOver&&this.wrapper.css("zIndex")<=hbBox.zIndexMax&&(hbBox.zIndexMax+=1,this.wrapper.css("zIndex",hbBox.zIndexMax));var e=this.wrapper.outerHeight(),i=this.wrapper.outerWidth(),o=this.wrapper.offset().top+e-t.pageY,n=this.wrapper.offset().left+i-t.pageX;jQuery(document).on("mousemove.hbBox-draggable-"+this.id,function(t){this.wrapper.offset({top:t.pageY+o-e,left:t.pageX+n-i})}.bind(this)),t.preventDefault()}}.bind(this)).on("mouseup",function(){jQuery(document).off("mousemove.hbBox-draggable-"+this.id)}.bind(this)),hbBox.zIndexMax=hbBox.zIndexMax?Math.max(hbBox.zIndexMax,this.options.zIndex):this.options.zIndex}this._fireEvent("onCreated")}},this.options.constructOnInit&&this._create(),this.options.attach&&this.attach(),this._positionMouse=function(t){this.pos={left:t.pageX,top:t.pageY};var e=function(t,e){return"center"==this.options.position[e]?void(this.pos[t]-=Math.ceil(this.dimensions[e]/2)):(this.pos[t]+=t==this.options.position[e]?-1*this.dimensions[e]-this.options.offset[e]:this.options.offset[e],this.pos[t])}.bind(this);this.wrapper.css({left:e("left","x"),top:e("top","y")}),this.targetDimensions={x:0,y:0,left:t.pageX,top:t.pageY},this._adjustPosition()},this._attachEvents=function(){if(this.options.closeOnEsc&&jQuery(document).on("keyup.hbBox-"+this.id,function(t){27==t.keyCode&&this.close({ignoreDelay:!0})}.bind(this)),this.options.closeOnClick!==!0&&"body"!=this.options.closeOnClick||jQuery(document).on("touchend.hbBox-"+this.id+" click.hbBox-"+this.id,function(t){this.blockBodyClick||"body"==this.options.closeOnClick&&(t.target==this.wrapper[0]||this.wrapper.has(t.target).length)||this.close({ignoreDelay:!0})}.bind(this)),(this.options.adjustPosition&&this.options.adjustTracker||this.options.reposition)&&!this.fixed&&this.outside){var t,e=0,i=150,o=function(){var o=(new Date).getTime();t||(o-e>i&&(this.options.reposition&&this.position(),this.options.adjustTracker&&this._adjustPosition(),e=o),t=setTimeout(function(){t=null,e=(new Date).getTime(),this.options.reposition&&this.position(),this.options.adjustTracker&&this._adjustPosition()}.bind(this),i))}.bind(this);this.options.adjustTracker&&"resize"!=this.options.adjustTracker&&jQuery(window).on("scroll.hbBox-"+this.id,function(t){o()}.bind(this)),(this.options.adjustTracker&&"scroll"!=this.options.adjustTracker||this.options.reposition)&&jQuery(window).on("resize.hbBox-"+this.id,function(t){o()}.bind(this))}"mouse"==this.options.target&&jQuery("body").on("mousemove.hbBox-"+this.id,function(t){this._positionMouse(t)}.bind(this))},this._detachEvents=function(){this.options.closeOnEsc&&jQuery(document).off("keyup.hbBox-"+this.id),(this.options.closeOnClick===!0||"body"==this.options.closeOnClick)&&jQuery(document).off("touchend.hbBox-"+this.id+" click.hbBox-"+this.id),(this.options.adjustPosition&&this.options.adjustTracker||this.options.reposition)&&(jQuery(window).off("scroll.hbBox-"+this.id),jQuery(window).off("resize.hbBox-"+this.id)),"mouse"==this.options.target&&jQuery("body").off("mousemove.hbBox-"+this.id)},this._addOverlay=function(){this.overlay||(this.overlay=jQuery("#hbBox-overlay").length?jQuery("#hbBox-overlay").css({zIndex:Math.min(jQuery("#hbBox-overlay").css("z-index"),this.options.zIndex-1)}):jQuery("
    ",{id:"hbBox-overlay"}).css({display:"none",opacity:0,zIndex:this.options.zIndex-1}).appendTo(jQuery("body")),("overlay"==this.options.closeButton||this.options.closeButton===!0)&&(jQuery("#hbBox-overlay .hbBox-closeButton").length>0?jQuery("#hbBox-overlay .hbBox-closeButton").on("touchend click",function(){this.isOpen&&this.close({ignoreDelay:!0})}.bind(this)):this.overlay.append(this.closeButton)),"overlay"==this.options.closeOnClick&&this.overlay.on("touchend click",function(){this.isOpen&&this.close({ignoreDelay:!0})}.bind(this)));var t=this.options.overflowOpacity?0:1,e=this.overlay.data("hbBox")||{};e["hbBox-"+this.id]=!0,this.overlay.data("hbBox",e),"block"!=this.overlay.css("display")&&(this.options.fade?this.overlay.stop()&&this.overlay.animate({opacity:t},{queue:!1,duration:this.options.fade,start:function(){this.overlay.css({display:"block"})}.bind(this)}):this.overlay.css({display:"block",opacity:t}))},this._removeOverlay=function(){if(this.overlay){var t=this.overlay.data("hbBox");delete t["hbBox-"+this.id],this.overlay.data("hbBox",t),jQuery.isEmptyObject(t)&&(this.options.fade?this.overlay.stop()&&this.overlay.animate({opacity:0},{queue:!1,duration:this.options.fade,complete:function(){this.overlay.css({display:"none"})}.bind(this)}):this.overlay.css({display:"none",opacity:0}))}},this._generateCSS=function(){if(!this.IE8){"object"!=jQuery.type(this.options.animation)&&(this.options.animation={pulse:{open:"pulse",close:"zoomOut"},zoomIn:{open:"zoomIn",close:"zoomIn"},zoomOut:{open:"zoomOut",close:"zoomOut"},move:{open:"move",close:"move"},slide:{open:"slide",close:"slide"},flip:{open:"flip",close:"flip"},tada:{open:"tada",close:"zoomOut"}}[this.options.animation]),this.options.animation.open&&(this.options.animation.open=this.options.animation.open.split(":")),this.options.animation.close&&(this.options.animation.close=this.options.animation.close.split(":")),this.options.animation.openDirection=this.options.animation.open?this.options.animation.open[1]:null,this.options.animation.closeDirection=this.options.animation.close?this.options.animation.close[1]:null,this.options.animation.open&&(this.options.animation.open=this.options.animation.open[0]),this.options.animation.close&&(this.options.animation.close=this.options.animation.close[0]),this.options.animation.open&&(this.options.animation.open+="Open"),this.options.animation.close&&(this.options.animation.close+="Close");var t={pulse:{duration:350,css:[["0%","scale(1)"],["50%","scale(1.1)"],["100%","scale(1)"]]},zoomInOpen:{duration:this.options.fade||180,css:[["0%","scale(0.9)"],["100%","scale(1)"]]},zoomInClose:{duration:this.options.fade||180,css:[["0%","scale(1)"],["100%","scale(0.9)"]]},zoomOutOpen:{duration:this.options.fade||180,css:[["0%","scale(1.1)"],["100%","scale(1)"]]},zoomOutClose:{duration:this.options.fade||180,css:[["0%","scale(1)"],["100%","scale(1.1)"]]},moveOpen:{duration:this.options.fade||180,positions:{top:{"0%":-12},right:{"0%":12},bottom:{"0%":12},left:{"0%":-12}},css:[["0%","translate%XY(%Vpx)"],["100%","translate%XY(0px)"]]},moveClose:{duration:this.options.fade||180,timing:"ease-in",positions:{top:{"100%":-12},right:{"100%":12},bottom:{"100%":12},left:{"100%":-12}},css:[["0%","translate%XY(0px)"],["100%","translate%XY(%Vpx)"]]},slideOpen:{duration:400,positions:{top:{"0%":-400},right:{"0%":400},bottom:{"0%":400},left:{"0%":-400}},css:[["0%","translate%XY(%Vpx)"],["100%","translate%XY(0px)"]]},slideClose:{duration:400,timing:"ease-in",positions:{top:{"100%":-400},right:{"100%":400},bottom:{"100%":400},left:{"100%":-400}},css:[["0%","translate%XY(0px)"],["100%","translate%XY(%Vpx)"]]},flipOpen:{duration:600,css:[["0%","perspective(400px) rotateX(90deg)"],["40%","perspective(400px) rotateX(-15deg)"],["70%","perspective(400px) rotateX(15deg)"],["100%","perspective(400px) rotateX(0deg)"]]},flipClose:{duration:this.options.fade||300,css:[["0%","perspective(400px) rotateX(0deg)"],["100%","perspective(400px) rotateX(90deg)"]]},tada:{duration:800,css:[["0%","scale(1)"],["10%, 20%","scale(0.9) rotate(-3deg)"],["30%, 50%, 70%, 90%","scale(1.1) rotate(3deg)"],["40%, 60%, 80%","scale(1.1) rotate(-3deg)"],["100%","scale(1) rotate(0)"]]}};jQuery.each(["pulse","tada"],function(e,i){t[i+"Open"]=t[i+"Close"]=t[i]});var e=function(e,i){return keyframe_css="@"+this.prefix+"keyframes hbBox-animation-"+this.options.animation[e]+"-"+e+(i?"-"+i:"")+" {",jQuery.each(t[this.options.animation[e]].css,function(o,n){var s=i?n[1].replace("%XY",this._getXY(i).toUpperCase()):n[1];t[this.options.animation[e]].positions&&(s=s.replace("%V",t[this.options.animation[e]].positions[i][n[0]])),keyframe_css+=n[0]+" {"+this.prefix+"transform:"+s+";}"}.bind(this)),keyframe_css+="}",keyframe_css+=".hbBox-animation-"+this.options.animation[e]+"-"+e+(i?"-"+i:"")+" {",keyframe_css+=this.prefix+"animation-duration: "+t[this.options.animation[e]].duration+"ms;",keyframe_css+=this.prefix+"animation-name: hbBox-animation-"+this.options.animation[e]+"-"+e+(i?"-"+i:"")+";",keyframe_css+=t[this.options.animation[e]].timing?this.prefix+"animation-timing-function: "+t[this.options.animation[e]].timing+";":"",keyframe_css+="}",keyframe_css}.bind(this),i="";jQuery.each(["open","close"],function(o,n){return this.options.animation[n]&&t[this.options.animation[n]]&&("close"!=n||this.options.fade)?void(t[this.options.animation[n]].positions?jQuery.each(["top","right","bottom","left"],function(t,o){i+=e(n,o)}):i+=e(n)):""}.bind(this)),jQuery("