├── .gitignore
├── .gitmodules
├── LICENSE
├── README.md
├── _config.yml
├── _includes
├── analytics.html
├── footer.html
├── head.html
├── header.html
└── main.scss
├── _layouts
├── compress.html
├── default.html
└── page.html
├── _sass
├── _bootstrap-readable.scss
├── _custom.scss
├── _layout.scss
├── _syntax-highlighting.scss
└── component
│ └── _tag.scss
├── about.md
├── css
└── syntax-highlighting.scss
├── docker-compose.yml
├── feed.xml
├── images
├── facebook.svg
├── favicon-16x16.png
├── github.svg
├── moby.svg
└── twitter.svg
└── index.html
/.gitignore:
--------------------------------------------------------------------------------
1 | .vscode/
2 | _site/
3 | .sass-cache/
4 | .jekyll-metadata
5 |
--------------------------------------------------------------------------------
/.gitmodules:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/play-with-docker/play-with-moby/63f0a757376427c8d46b72229ad216c3a6e9b6a2/.gitmodules
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "{}"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright {yyyy} {name of copyright owner}
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # play-with-moby
2 | PWM site repo.
3 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | # Welcome to Jekyll!
2 | #
3 | # This config file is meant for settings that affect your whole blog, values
4 | # which you are expected to set up once and rarely need to edit after that.
5 | # For technical reasons, this file is *NOT* reloaded automatically when you use
6 | # 'jekyll serve'. If you change this file, please restart the server process.
7 |
8 | # Site settings
9 | title: "Play with Moby"
10 | email:
11 | description: > # this means to ignore newlines until "baseurl:"
12 | Play with docker tutorials
13 |
14 |
15 |
16 | baseurl: # the subpath of your site, e.g. /blog
17 | url: "http://training.play-with-docker.com" # the base hostname & protocol for your site
18 |
19 | #sidebar
20 | default-image: moby.svg # If there is no featured image in a post then this image will be showed. Also on all pages this image will be showed. Use a 500x250 image.
21 |
22 | #footer
23 | built-by: PWD Team
24 | copyright:
25 | name: PWD
26 | link: 'http://play-with-docker.com'
27 |
28 | # Build settings
29 | markdown: kramdown
30 | permalink: /:title/
31 | paginate: 6
32 | paginate_path: /page:num/
33 |
34 | # Tracker
35 | analytics: UA-89019737-1
36 |
37 |
38 | #social
39 | facebook: https://www.facebook.com/docker.run
40 | twitter: https://twitter.com/@docker
41 | github: https://www.github.com/franela/franela.github.io
42 |
43 | #facebook like box
44 | fb-app-id: 549480635219583
45 | fb-page-url: https://www.facebook.com/docker.run/
46 | fb-page-title: Docker
47 |
48 | # Sass style
49 | sass:
50 | style: compressed
51 |
52 | # Ruby Gems
53 | gems: [jekyll-paginate]
54 |
55 |
--------------------------------------------------------------------------------
/_includes/analytics.html:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/_includes/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | {% if site.copyright.name %}
7 |
All rights reserved by
{{site.copyright.name}}
8 | {% endif %}
9 |
10 |
11 | {% if site.built-by %}
12 |
13 | {% endif %}
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/_includes/head.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 | {% comment %}
13 | {% seo %}
14 | {% endcomment %}
15 |
16 |
17 |
18 |
19 |
20 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/_includes/header.html:
--------------------------------------------------------------------------------
1 |
30 |
--------------------------------------------------------------------------------
/_includes/main.scss:
--------------------------------------------------------------------------------
1 | // Our variables
2 | $base-font-family: "Open Sans", serif;
3 | $base-font-size: 16px;
4 | $base-font-weight: 400;
5 | $small-font-size: $base-font-size * 0.875;
6 | $base-line-height: 1.5;
7 |
8 | $spacing-unit: 30px;
9 |
10 | $text-color: #fff;
11 | $background-color: #24323a;
12 | $brand-color: #2a7ae2;
13 |
14 | $grey-color: #828282;
15 | $grey-color-light: lighten($grey-color, 40%);
16 | $grey-color-dark: darken($grey-color, 25%);
17 |
18 | // Width of the content area
19 | $content-width: 800px;
20 |
21 | $on-palm: 600px;
22 | $on-laptop: 800px;
23 |
24 |
25 |
26 | // Use media queries like this:
27 | // @include media-query($on-palm) {
28 | // .wrapper {
29 | // padding-right: $spacing-unit / 2;
30 | // padding-left: $spacing-unit / 2;
31 | // }
32 | // }
33 | @mixin media-query($device) {
34 | @media screen and (max-width: $device) {
35 | @content;
36 | }
37 | }
38 |
39 |
40 |
41 | // Import partials from `sass_dir` (defaults to `_sass`)
42 | @import
43 | "layout",
44 | "component/tag",
45 | "custom"
46 | ;
47 |
--------------------------------------------------------------------------------
/_layouts/compress.html:
--------------------------------------------------------------------------------
1 | ---
2 | # Jekyll layout that compresses HTML
3 | # v3.0.1
4 | # http://jch.penibelst.de/
5 | # © 2014–2015 Anatol Broder
6 | # MIT License
7 | ---
8 |
9 | {% capture _LINE_FEED %}
10 | {% endcapture %}{% if site.compress_html.ignore.envs contains jekyll.environment %}{{ content }}{% else %}{% capture _content %}{{ content }}{% endcapture %}{% assign _profile = site.compress_html.profile %}{% if site.compress_html.endings == "all" %}{% assign _endings = "html head body li dt dd p rt rp optgroup option colgroup caption thead tbody tfoot tr td th" | split: " " %}{% else %}{% assign _endings = site.compress_html.endings %}{% endif %}{% for _element in _endings %}{% capture _end %}{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _end %}{% endfor %}{% if _profile and _endings %}{% assign _profile_endings = _content | size | plus: 1 %}{% endif %}{% for _element in site.compress_html.startings %}{% capture _start %}<{{ _element }}>{% endcapture %}{% assign _content = _content | remove: _start %}{% endfor %}{% if _profile and site.compress_html.startings %}{% assign _profile_startings = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.comments == "all" %}{% assign _comments = "" | split: " " %}{% else %}{% assign _comments = site.compress_html.comments %}{% endif %}{% if _comments.size == 2 %}{% capture _comment_befores %}.{{ _content }}{% endcapture %}{% assign _comment_befores = _comment_befores | split: _comments.first %}{% for _comment_before in _comment_befores %}{% if forloop.first %}{% continue %}{% endif %}{% capture _comment_outside %}{% if _carry %}{{ _comments.first }}{% endif %}{{ _comment_before }}{% endcapture %}{% capture _comment %}{% unless _carry %}{{ _comments.first }}{% endunless %}{{ _comment_outside | split: _comments.last | first }}{% if _comment_outside contains _comments.last %}{{ _comments.last }}{% assign _carry = false %}{% else %}{% assign _carry = true %}{% endif %}{% endcapture %}{% assign _content = _content | remove_first: _comment %}{% endfor %}{% if _profile %}{% assign _profile_comments = _content | size | plus: 1 %}{% endif %}{% endif %}{% assign _pre_befores = _content | split: "" %}{% assign _pres_after = "" %}{% if _pres.size != 0 %}{% if site.compress_html.blanklines %}{% assign _lines = _pres.last | split: _LINE_FEED %}{% assign _lastchar = _pres.last | split: "" | last %}{% assign _outerloop = forloop %}{% capture _pres_after %}{% for _line in _lines %}{% assign _trimmed = _line | split: " " | join: " " %}{% if forloop.last and _lastchar == _LINE_FEED %}{% unless _outerloop.last %}{{ _LINE_FEED }}{% endunless %}{% continue %}{% endif %}{% if _trimmed != empty or forloop.last %}{% unless forloop.first %}{{ _LINE_FEED }}{% endunless %}{{ _line }}{% endif %}{% endfor %}{% endcapture %}{% else %}{% assign _pres_after = _pres.last | split: " " | join: " " %}{% endif %}{% endif %}{% capture _content %}{{ _content }}{% if _pre_before contains " " %}{% endif %}{% unless _pre_before contains " " and _pres.size == 1 %}{{ _pres_after }}{% endunless %}{% endcapture %}{% endfor %}{% if _profile %}{% assign _profile_collapse = _content | size | plus: 1 %}{% endif %}{% if site.compress_html.clippings == "all" %}{% assign _clippings = "html head title base link meta style body article section nav aside h1 h2 h3 h4 h5 h6 hgroup header footer address p hr blockquote ol ul li dl dt dd figure figcaption main div table caption colgroup col tbody thead tfoot tr td th" | split: " " %}{% else %}{% assign _clippings = site.compress_html.clippings %}{% endif %}{% for _element in _clippings %}{% assign _edges = " ; ; ;" | replace: "e", _element | split: ";" %}{% assign _content = _content | replace: _edges[0], _edges[1] | replace: _edges[2], _edges[3] | replace: _edges[4], _edges[5] %}{% endfor %}{% if _profile and _clippings %}{% assign _profile_clippings = _content | size | plus: 1 %}{% endif %}{{ _content }}{% if _profile %} Step Bytes raw {{ content | size }}{% if _profile_endings %} endings {{ _profile_endings }}{% endif %}{% if _profile_startings %} startings {{ _profile_startings }}{% endif %}{% if _profile_comments %} comments {{ _profile_comments }}{% endif %}{% if _profile_collapse %} collapse {{ _profile_collapse }}{% endif %}{% if _profile_clippings %} clippings {{ _profile_clippings }}{% endif %}
{% endif %}{% endif %}
11 |
--------------------------------------------------------------------------------
/_layouts/default.html:
--------------------------------------------------------------------------------
1 |
8 |
9 |
10 |
11 | {% include head.html %}
12 |
13 |
14 |
15 | {% include header.html %}
16 |
17 | {{ content }}
18 |
19 | {% include footer.html %}
20 |
21 |
31 |
32 |
33 |
34 | {% if site.analytics %}{% include analytics.html %}{% endif %}
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/_layouts/page.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
6 |
7 |
8 |
9 |
12 |
13 |
14 | {{ content }}
15 |
16 |
17 |
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/_sass/_bootstrap-readable.scss:
--------------------------------------------------------------------------------
1 | /* @import url("https://fonts.googleapis.com/css?family=Raleway:400,700"); */
2 | /*!
3 | * bootswatch v3.3.6
4 | * Homepage: http://bootswatch.com
5 | * Copyright 2012-2016 Thomas Park
6 | * Licensed under MIT
7 | * Based on Bootstrap
8 | */
9 | /*!
10 | * Bootstrap v3.3.6 (http://getbootstrap.com)
11 | * Copyright 2011-2015 Twitter, Inc.
12 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
13 | */
14 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
15 | html {
16 | font-family: sans-serif;
17 | -ms-text-size-adjust: 100%;
18 | -webkit-text-size-adjust: 100%;
19 | }
20 | body {
21 | margin: 0;
22 | }
23 | article,
24 | aside,
25 | details,
26 | figcaption,
27 | figure,
28 | footer,
29 | header,
30 | hgroup,
31 | main,
32 | menu,
33 | nav,
34 | section,
35 | summary {
36 | display: block;
37 | }
38 | audio,
39 | canvas,
40 | progress,
41 | video {
42 | display: inline-block;
43 | vertical-align: baseline;
44 | }
45 | audio:not([controls]) {
46 | display: none;
47 | height: 0;
48 | }
49 | [hidden],
50 | template {
51 | display: none;
52 | }
53 | a {
54 | background-color: transparent;
55 | }
56 | a:active,
57 | a:hover {
58 | outline: 0;
59 | }
60 | abbr[title] {
61 | border-bottom: 1px dotted;
62 | }
63 | b,
64 | strong {
65 | font-weight: bold;
66 | }
67 | dfn {
68 | font-style: italic;
69 | }
70 | h1 {
71 | font-size: 2em;
72 | margin: 0.67em 0;
73 | }
74 | mark {
75 | background: #ff0;
76 | color: #000;
77 | }
78 | small {
79 | font-size: 80%;
80 | }
81 | sub,
82 | sup {
83 | font-size: 75%;
84 | line-height: 0;
85 | position: relative;
86 | vertical-align: baseline;
87 | }
88 | sup {
89 | top: -0.5em;
90 | }
91 | sub {
92 | bottom: -0.25em;
93 | }
94 | img {
95 | border: 0;
96 | }
97 | svg:not(:root) {
98 | overflow: hidden;
99 | }
100 | figure {
101 | margin: 1em 40px;
102 | }
103 | hr {
104 | -webkit-box-sizing: content-box;
105 | -moz-box-sizing: content-box;
106 | box-sizing: content-box;
107 | height: 0;
108 | }
109 | pre {
110 | overflow: auto;
111 | }
112 | code,
113 | kbd,
114 | pre,
115 | samp {
116 | font-family: monospace, monospace;
117 | font-size: 1em;
118 | }
119 | button,
120 | input,
121 | optgroup,
122 | select,
123 | textarea {
124 | color: inherit;
125 | font: inherit;
126 | margin: 0;
127 | }
128 | button {
129 | overflow: visible;
130 | }
131 | button,
132 | select {
133 | text-transform: none;
134 | }
135 | button,
136 | html input[type="button"],
137 | input[type="reset"],
138 | input[type="submit"] {
139 | -webkit-appearance: button;
140 | cursor: pointer;
141 | }
142 | button[disabled],
143 | html input[disabled] {
144 | cursor: default;
145 | }
146 | button::-moz-focus-inner,
147 | input::-moz-focus-inner {
148 | border: 0;
149 | padding: 0;
150 | }
151 | input {
152 | line-height: normal;
153 | }
154 | input[type="checkbox"],
155 | input[type="radio"] {
156 | -webkit-box-sizing: border-box;
157 | -moz-box-sizing: border-box;
158 | box-sizing: border-box;
159 | padding: 0;
160 | }
161 | input[type="number"]::-webkit-inner-spin-button,
162 | input[type="number"]::-webkit-outer-spin-button {
163 | height: auto;
164 | }
165 | input[type="search"] {
166 | -webkit-appearance: textfield;
167 | -webkit-box-sizing: content-box;
168 | -moz-box-sizing: content-box;
169 | box-sizing: content-box;
170 | }
171 | input[type="search"]::-webkit-search-cancel-button,
172 | input[type="search"]::-webkit-search-decoration {
173 | -webkit-appearance: none;
174 | }
175 | fieldset {
176 | border: 1px solid #c0c0c0;
177 | margin: 0 2px;
178 | padding: 0.35em 0.625em 0.75em;
179 | }
180 | legend {
181 | border: 0;
182 | padding: 0;
183 | }
184 | textarea {
185 | overflow: auto;
186 | }
187 | optgroup {
188 | font-weight: bold;
189 | }
190 | table {
191 | border-collapse: collapse;
192 | border-spacing: 0;
193 | }
194 | td,
195 | th {
196 | padding: 0;
197 | }
198 | /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
199 | @media print {
200 | *,
201 | *:before,
202 | *:after {
203 | background: transparent !important;
204 | color: #000 !important;
205 | -webkit-box-shadow: none !important;
206 | box-shadow: none !important;
207 | text-shadow: none !important;
208 | }
209 | a,
210 | a:visited {
211 | text-decoration: underline;
212 | }
213 | a[href]:after {
214 | content: " (" attr(href) ")";
215 | }
216 | abbr[title]:after {
217 | content: " (" attr(title) ")";
218 | }
219 | a[href^="#"]:after,
220 | a[href^="javascript:"]:after {
221 | content: "";
222 | }
223 | pre,
224 | blockquote {
225 | border: 1px solid #999;
226 | page-break-inside: avoid;
227 | }
228 | thead {
229 | display: table-header-group;
230 | }
231 | tr,
232 | img {
233 | page-break-inside: avoid;
234 | }
235 | img {
236 | max-width: 100% !important;
237 | }
238 | p,
239 | h2,
240 | h3 {
241 | orphans: 3;
242 | widows: 3;
243 | }
244 | h2,
245 | h3 {
246 | page-break-after: avoid;
247 | }
248 | .navbar {
249 | display: none;
250 | }
251 | .btn > .caret,
252 | .dropup > .btn > .caret {
253 | border-top-color: #000 !important;
254 | }
255 | .label {
256 | border: 1px solid #000;
257 | }
258 | .table {
259 | border-collapse: collapse !important;
260 | }
261 | .table td,
262 | .table th {
263 | background-color: #fff !important;
264 | }
265 | .table-bordered th,
266 | .table-bordered td {
267 | border: 1px solid #ddd !important;
268 | }
269 | }
270 | @font-face {
271 | font-family: 'Glyphicons Halflings';
272 | src: url('../fonts/glyphicons-halflings-regular.eot');
273 | src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
274 | }
275 | .glyphicon {
276 | position: relative;
277 | top: 1px;
278 | display: inline-block;
279 | font-family: 'Glyphicons Halflings';
280 | font-style: normal;
281 | font-weight: normal;
282 | line-height: 1;
283 | -webkit-font-smoothing: antialiased;
284 | -moz-osx-font-smoothing: grayscale;
285 | }
286 | .glyphicon-asterisk:before {
287 | content: "\002a";
288 | }
289 | .glyphicon-plus:before {
290 | content: "\002b";
291 | }
292 | .glyphicon-euro:before,
293 | .glyphicon-eur:before {
294 | content: "\20ac";
295 | }
296 | .glyphicon-minus:before {
297 | content: "\2212";
298 | }
299 | .glyphicon-cloud:before {
300 | content: "\2601";
301 | }
302 | .glyphicon-envelope:before {
303 | content: "\2709";
304 | }
305 | .glyphicon-pencil:before {
306 | content: "\270f";
307 | }
308 | .glyphicon-glass:before {
309 | content: "\e001";
310 | }
311 | .glyphicon-music:before {
312 | content: "\e002";
313 | }
314 | .glyphicon-search:before {
315 | content: "\e003";
316 | }
317 | .glyphicon-heart:before {
318 | content: "\e005";
319 | }
320 | .glyphicon-star:before {
321 | content: "\e006";
322 | }
323 | .glyphicon-star-empty:before {
324 | content: "\e007";
325 | }
326 | .glyphicon-user:before {
327 | content: "\e008";
328 | }
329 | .glyphicon-film:before {
330 | content: "\e009";
331 | }
332 | .glyphicon-th-large:before {
333 | content: "\e010";
334 | }
335 | .glyphicon-th:before {
336 | content: "\e011";
337 | }
338 | .glyphicon-th-list:before {
339 | content: "\e012";
340 | }
341 | .glyphicon-ok:before {
342 | content: "\e013";
343 | }
344 | .glyphicon-remove:before {
345 | content: "\e014";
346 | }
347 | .glyphicon-zoom-in:before {
348 | content: "\e015";
349 | }
350 | .glyphicon-zoom-out:before {
351 | content: "\e016";
352 | }
353 | .glyphicon-off:before {
354 | content: "\e017";
355 | }
356 | .glyphicon-signal:before {
357 | content: "\e018";
358 | }
359 | .glyphicon-cog:before {
360 | content: "\e019";
361 | }
362 | .glyphicon-trash:before {
363 | content: "\e020";
364 | }
365 | .glyphicon-home:before {
366 | content: "\e021";
367 | }
368 | .glyphicon-file:before {
369 | content: "\e022";
370 | }
371 | .glyphicon-time:before {
372 | content: "\e023";
373 | }
374 | .glyphicon-road:before {
375 | content: "\e024";
376 | }
377 | .glyphicon-download-alt:before {
378 | content: "\e025";
379 | }
380 | .glyphicon-download:before {
381 | content: "\e026";
382 | }
383 | .glyphicon-upload:before {
384 | content: "\e027";
385 | }
386 | .glyphicon-inbox:before {
387 | content: "\e028";
388 | }
389 | .glyphicon-play-circle:before {
390 | content: "\e029";
391 | }
392 | .glyphicon-repeat:before {
393 | content: "\e030";
394 | }
395 | .glyphicon-refresh:before {
396 | content: "\e031";
397 | }
398 | .glyphicon-list-alt:before {
399 | content: "\e032";
400 | }
401 | .glyphicon-lock:before {
402 | content: "\e033";
403 | }
404 | .glyphicon-flag:before {
405 | content: "\e034";
406 | }
407 | .glyphicon-headphones:before {
408 | content: "\e035";
409 | }
410 | .glyphicon-volume-off:before {
411 | content: "\e036";
412 | }
413 | .glyphicon-volume-down:before {
414 | content: "\e037";
415 | }
416 | .glyphicon-volume-up:before {
417 | content: "\e038";
418 | }
419 | .glyphicon-qrcode:before {
420 | content: "\e039";
421 | }
422 | .glyphicon-barcode:before {
423 | content: "\e040";
424 | }
425 | .glyphicon-tag:before {
426 | content: "\e041";
427 | }
428 | .glyphicon-tags:before {
429 | content: "\e042";
430 | }
431 | .glyphicon-book:before {
432 | content: "\e043";
433 | }
434 | .glyphicon-bookmark:before {
435 | content: "\e044";
436 | }
437 | .glyphicon-print:before {
438 | content: "\e045";
439 | }
440 | .glyphicon-camera:before {
441 | content: "\e046";
442 | }
443 | .glyphicon-font:before {
444 | content: "\e047";
445 | }
446 | .glyphicon-bold:before {
447 | content: "\e048";
448 | }
449 | .glyphicon-italic:before {
450 | content: "\e049";
451 | }
452 | .glyphicon-text-height:before {
453 | content: "\e050";
454 | }
455 | .glyphicon-text-width:before {
456 | content: "\e051";
457 | }
458 | .glyphicon-align-left:before {
459 | content: "\e052";
460 | }
461 | .glyphicon-align-center:before {
462 | content: "\e053";
463 | }
464 | .glyphicon-align-right:before {
465 | content: "\e054";
466 | }
467 | .glyphicon-align-justify:before {
468 | content: "\e055";
469 | }
470 | .glyphicon-list:before {
471 | content: "\e056";
472 | }
473 | .glyphicon-indent-left:before {
474 | content: "\e057";
475 | }
476 | .glyphicon-indent-right:before {
477 | content: "\e058";
478 | }
479 | .glyphicon-facetime-video:before {
480 | content: "\e059";
481 | }
482 | .glyphicon-picture:before {
483 | content: "\e060";
484 | }
485 | .glyphicon-map-marker:before {
486 | content: "\e062";
487 | }
488 | .glyphicon-adjust:before {
489 | content: "\e063";
490 | }
491 | .glyphicon-tint:before {
492 | content: "\e064";
493 | }
494 | .glyphicon-edit:before {
495 | content: "\e065";
496 | }
497 | .glyphicon-share:before {
498 | content: "\e066";
499 | }
500 | .glyphicon-check:before {
501 | content: "\e067";
502 | }
503 | .glyphicon-move:before {
504 | content: "\e068";
505 | }
506 | .glyphicon-step-backward:before {
507 | content: "\e069";
508 | }
509 | .glyphicon-fast-backward:before {
510 | content: "\e070";
511 | }
512 | .glyphicon-backward:before {
513 | content: "\e071";
514 | }
515 | .glyphicon-play:before {
516 | content: "\e072";
517 | }
518 | .glyphicon-pause:before {
519 | content: "\e073";
520 | }
521 | .glyphicon-stop:before {
522 | content: "\e074";
523 | }
524 | .glyphicon-forward:before {
525 | content: "\e075";
526 | }
527 | .glyphicon-fast-forward:before {
528 | content: "\e076";
529 | }
530 | .glyphicon-step-forward:before {
531 | content: "\e077";
532 | }
533 | .glyphicon-eject:before {
534 | content: "\e078";
535 | }
536 | .glyphicon-chevron-left:before {
537 | content: "\e079";
538 | }
539 | .glyphicon-chevron-right:before {
540 | content: "\e080";
541 | }
542 | .glyphicon-plus-sign:before {
543 | content: "\e081";
544 | }
545 | .glyphicon-minus-sign:before {
546 | content: "\e082";
547 | }
548 | .glyphicon-remove-sign:before {
549 | content: "\e083";
550 | }
551 | .glyphicon-ok-sign:before {
552 | content: "\e084";
553 | }
554 | .glyphicon-question-sign:before {
555 | content: "\e085";
556 | }
557 | .glyphicon-info-sign:before {
558 | content: "\e086";
559 | }
560 | .glyphicon-screenshot:before {
561 | content: "\e087";
562 | }
563 | .glyphicon-remove-circle:before {
564 | content: "\e088";
565 | }
566 | .glyphicon-ok-circle:before {
567 | content: "\e089";
568 | }
569 | .glyphicon-ban-circle:before {
570 | content: "\e090";
571 | }
572 | .glyphicon-arrow-left:before {
573 | content: "\e091";
574 | }
575 | .glyphicon-arrow-right:before {
576 | content: "\e092";
577 | }
578 | .glyphicon-arrow-up:before {
579 | content: "\e093";
580 | }
581 | .glyphicon-arrow-down:before {
582 | content: "\e094";
583 | }
584 | .glyphicon-share-alt:before {
585 | content: "\e095";
586 | }
587 | .glyphicon-resize-full:before {
588 | content: "\e096";
589 | }
590 | .glyphicon-resize-small:before {
591 | content: "\e097";
592 | }
593 | .glyphicon-exclamation-sign:before {
594 | content: "\e101";
595 | }
596 | .glyphicon-gift:before {
597 | content: "\e102";
598 | }
599 | .glyphicon-leaf:before {
600 | content: "\e103";
601 | }
602 | .glyphicon-fire:before {
603 | content: "\e104";
604 | }
605 | .glyphicon-eye-open:before {
606 | content: "\e105";
607 | }
608 | .glyphicon-eye-close:before {
609 | content: "\e106";
610 | }
611 | .glyphicon-warning-sign:before {
612 | content: "\e107";
613 | }
614 | .glyphicon-plane:before {
615 | content: "\e108";
616 | }
617 | .glyphicon-calendar:before {
618 | content: "\e109";
619 | }
620 | .glyphicon-random:before {
621 | content: "\e110";
622 | }
623 | .glyphicon-comment:before {
624 | content: "\e111";
625 | }
626 | .glyphicon-magnet:before {
627 | content: "\e112";
628 | }
629 | .glyphicon-chevron-up:before {
630 | content: "\e113";
631 | }
632 | .glyphicon-chevron-down:before {
633 | content: "\e114";
634 | }
635 | .glyphicon-retweet:before {
636 | content: "\e115";
637 | }
638 | .glyphicon-shopping-cart:before {
639 | content: "\e116";
640 | }
641 | .glyphicon-folder-close:before {
642 | content: "\e117";
643 | }
644 | .glyphicon-folder-open:before {
645 | content: "\e118";
646 | }
647 | .glyphicon-resize-vertical:before {
648 | content: "\e119";
649 | }
650 | .glyphicon-resize-horizontal:before {
651 | content: "\e120";
652 | }
653 | .glyphicon-hdd:before {
654 | content: "\e121";
655 | }
656 | .glyphicon-bullhorn:before {
657 | content: "\e122";
658 | }
659 | .glyphicon-bell:before {
660 | content: "\e123";
661 | }
662 | .glyphicon-certificate:before {
663 | content: "\e124";
664 | }
665 | .glyphicon-thumbs-up:before {
666 | content: "\e125";
667 | }
668 | .glyphicon-thumbs-down:before {
669 | content: "\e126";
670 | }
671 | .glyphicon-hand-right:before {
672 | content: "\e127";
673 | }
674 | .glyphicon-hand-left:before {
675 | content: "\e128";
676 | }
677 | .glyphicon-hand-up:before {
678 | content: "\e129";
679 | }
680 | .glyphicon-hand-down:before {
681 | content: "\e130";
682 | }
683 | .glyphicon-circle-arrow-right:before {
684 | content: "\e131";
685 | }
686 | .glyphicon-circle-arrow-left:before {
687 | content: "\e132";
688 | }
689 | .glyphicon-circle-arrow-up:before {
690 | content: "\e133";
691 | }
692 | .glyphicon-circle-arrow-down:before {
693 | content: "\e134";
694 | }
695 | .glyphicon-globe:before {
696 | content: "\e135";
697 | }
698 | .glyphicon-wrench:before {
699 | content: "\e136";
700 | }
701 | .glyphicon-tasks:before {
702 | content: "\e137";
703 | }
704 | .glyphicon-filter:before {
705 | content: "\e138";
706 | }
707 | .glyphicon-briefcase:before {
708 | content: "\e139";
709 | }
710 | .glyphicon-fullscreen:before {
711 | content: "\e140";
712 | }
713 | .glyphicon-dashboard:before {
714 | content: "\e141";
715 | }
716 | .glyphicon-paperclip:before {
717 | content: "\e142";
718 | }
719 | .glyphicon-heart-empty:before {
720 | content: "\e143";
721 | }
722 | .glyphicon-link:before {
723 | content: "\e144";
724 | }
725 | .glyphicon-phone:before {
726 | content: "\e145";
727 | }
728 | .glyphicon-pushpin:before {
729 | content: "\e146";
730 | }
731 | .glyphicon-usd:before {
732 | content: "\e148";
733 | }
734 | .glyphicon-gbp:before {
735 | content: "\e149";
736 | }
737 | .glyphicon-sort:before {
738 | content: "\e150";
739 | }
740 | .glyphicon-sort-by-alphabet:before {
741 | content: "\e151";
742 | }
743 | .glyphicon-sort-by-alphabet-alt:before {
744 | content: "\e152";
745 | }
746 | .glyphicon-sort-by-order:before {
747 | content: "\e153";
748 | }
749 | .glyphicon-sort-by-order-alt:before {
750 | content: "\e154";
751 | }
752 | .glyphicon-sort-by-attributes:before {
753 | content: "\e155";
754 | }
755 | .glyphicon-sort-by-attributes-alt:before {
756 | content: "\e156";
757 | }
758 | .glyphicon-unchecked:before {
759 | content: "\e157";
760 | }
761 | .glyphicon-expand:before {
762 | content: "\e158";
763 | }
764 | .glyphicon-collapse-down:before {
765 | content: "\e159";
766 | }
767 | .glyphicon-collapse-up:before {
768 | content: "\e160";
769 | }
770 | .glyphicon-log-in:before {
771 | content: "\e161";
772 | }
773 | .glyphicon-flash:before {
774 | content: "\e162";
775 | }
776 | .glyphicon-log-out:before {
777 | content: "\e163";
778 | }
779 | .glyphicon-new-window:before {
780 | content: "\e164";
781 | }
782 | .glyphicon-record:before {
783 | content: "\e165";
784 | }
785 | .glyphicon-save:before {
786 | content: "\e166";
787 | }
788 | .glyphicon-open:before {
789 | content: "\e167";
790 | }
791 | .glyphicon-saved:before {
792 | content: "\e168";
793 | }
794 | .glyphicon-import:before {
795 | content: "\e169";
796 | }
797 | .glyphicon-export:before {
798 | content: "\e170";
799 | }
800 | .glyphicon-send:before {
801 | content: "\e171";
802 | }
803 | .glyphicon-floppy-disk:before {
804 | content: "\e172";
805 | }
806 | .glyphicon-floppy-saved:before {
807 | content: "\e173";
808 | }
809 | .glyphicon-floppy-remove:before {
810 | content: "\e174";
811 | }
812 | .glyphicon-floppy-save:before {
813 | content: "\e175";
814 | }
815 | .glyphicon-floppy-open:before {
816 | content: "\e176";
817 | }
818 | .glyphicon-credit-card:before {
819 | content: "\e177";
820 | }
821 | .glyphicon-transfer:before {
822 | content: "\e178";
823 | }
824 | .glyphicon-cutlery:before {
825 | content: "\e179";
826 | }
827 | .glyphicon-header:before {
828 | content: "\e180";
829 | }
830 | .glyphicon-compressed:before {
831 | content: "\e181";
832 | }
833 | .glyphicon-earphone:before {
834 | content: "\e182";
835 | }
836 | .glyphicon-phone-alt:before {
837 | content: "\e183";
838 | }
839 | .glyphicon-tower:before {
840 | content: "\e184";
841 | }
842 | .glyphicon-stats:before {
843 | content: "\e185";
844 | }
845 | .glyphicon-sd-video:before {
846 | content: "\e186";
847 | }
848 | .glyphicon-hd-video:before {
849 | content: "\e187";
850 | }
851 | .glyphicon-subtitles:before {
852 | content: "\e188";
853 | }
854 | .glyphicon-sound-stereo:before {
855 | content: "\e189";
856 | }
857 | .glyphicon-sound-dolby:before {
858 | content: "\e190";
859 | }
860 | .glyphicon-sound-5-1:before {
861 | content: "\e191";
862 | }
863 | .glyphicon-sound-6-1:before {
864 | content: "\e192";
865 | }
866 | .glyphicon-sound-7-1:before {
867 | content: "\e193";
868 | }
869 | .glyphicon-copyright-mark:before {
870 | content: "\e194";
871 | }
872 | .glyphicon-registration-mark:before {
873 | content: "\e195";
874 | }
875 | .glyphicon-cloud-download:before {
876 | content: "\e197";
877 | }
878 | .glyphicon-cloud-upload:before {
879 | content: "\e198";
880 | }
881 | .glyphicon-tree-conifer:before {
882 | content: "\e199";
883 | }
884 | .glyphicon-tree-deciduous:before {
885 | content: "\e200";
886 | }
887 | .glyphicon-cd:before {
888 | content: "\e201";
889 | }
890 | .glyphicon-save-file:before {
891 | content: "\e202";
892 | }
893 | .glyphicon-open-file:before {
894 | content: "\e203";
895 | }
896 | .glyphicon-level-up:before {
897 | content: "\e204";
898 | }
899 | .glyphicon-copy:before {
900 | content: "\e205";
901 | }
902 | .glyphicon-paste:before {
903 | content: "\e206";
904 | }
905 | .glyphicon-alert:before {
906 | content: "\e209";
907 | }
908 | .glyphicon-equalizer:before {
909 | content: "\e210";
910 | }
911 | .glyphicon-king:before {
912 | content: "\e211";
913 | }
914 | .glyphicon-queen:before {
915 | content: "\e212";
916 | }
917 | .glyphicon-pawn:before {
918 | content: "\e213";
919 | }
920 | .glyphicon-bishop:before {
921 | content: "\e214";
922 | }
923 | .glyphicon-knight:before {
924 | content: "\e215";
925 | }
926 | .glyphicon-baby-formula:before {
927 | content: "\e216";
928 | }
929 | .glyphicon-tent:before {
930 | content: "\26fa";
931 | }
932 | .glyphicon-blackboard:before {
933 | content: "\e218";
934 | }
935 | .glyphicon-bed:before {
936 | content: "\e219";
937 | }
938 | .glyphicon-apple:before {
939 | content: "\f8ff";
940 | }
941 | .glyphicon-erase:before {
942 | content: "\e221";
943 | }
944 | .glyphicon-hourglass:before {
945 | content: "\231b";
946 | }
947 | .glyphicon-lamp:before {
948 | content: "\e223";
949 | }
950 | .glyphicon-duplicate:before {
951 | content: "\e224";
952 | }
953 | .glyphicon-piggy-bank:before {
954 | content: "\e225";
955 | }
956 | .glyphicon-scissors:before {
957 | content: "\e226";
958 | }
959 | .glyphicon-bitcoin:before {
960 | content: "\e227";
961 | }
962 | .glyphicon-btc:before {
963 | content: "\e227";
964 | }
965 | .glyphicon-xbt:before {
966 | content: "\e227";
967 | }
968 | .glyphicon-yen:before {
969 | content: "\00a5";
970 | }
971 | .glyphicon-jpy:before {
972 | content: "\00a5";
973 | }
974 | .glyphicon-ruble:before {
975 | content: "\20bd";
976 | }
977 | .glyphicon-rub:before {
978 | content: "\20bd";
979 | }
980 | .glyphicon-scale:before {
981 | content: "\e230";
982 | }
983 | .glyphicon-ice-lolly:before {
984 | content: "\e231";
985 | }
986 | .glyphicon-ice-lolly-tasted:before {
987 | content: "\e232";
988 | }
989 | .glyphicon-education:before {
990 | content: "\e233";
991 | }
992 | .glyphicon-option-horizontal:before {
993 | content: "\e234";
994 | }
995 | .glyphicon-option-vertical:before {
996 | content: "\e235";
997 | }
998 | .glyphicon-menu-hamburger:before {
999 | content: "\e236";
1000 | }
1001 | .glyphicon-modal-window:before {
1002 | content: "\e237";
1003 | }
1004 | .glyphicon-oil:before {
1005 | content: "\e238";
1006 | }
1007 | .glyphicon-grain:before {
1008 | content: "\e239";
1009 | }
1010 | .glyphicon-sunglasses:before {
1011 | content: "\e240";
1012 | }
1013 | .glyphicon-text-size:before {
1014 | content: "\e241";
1015 | }
1016 | .glyphicon-text-color:before {
1017 | content: "\e242";
1018 | }
1019 | .glyphicon-text-background:before {
1020 | content: "\e243";
1021 | }
1022 | .glyphicon-object-align-top:before {
1023 | content: "\e244";
1024 | }
1025 | .glyphicon-object-align-bottom:before {
1026 | content: "\e245";
1027 | }
1028 | .glyphicon-object-align-horizontal:before {
1029 | content: "\e246";
1030 | }
1031 | .glyphicon-object-align-left:before {
1032 | content: "\e247";
1033 | }
1034 | .glyphicon-object-align-vertical:before {
1035 | content: "\e248";
1036 | }
1037 | .glyphicon-object-align-right:before {
1038 | content: "\e249";
1039 | }
1040 | .glyphicon-triangle-right:before {
1041 | content: "\e250";
1042 | }
1043 | .glyphicon-triangle-left:before {
1044 | content: "\e251";
1045 | }
1046 | .glyphicon-triangle-bottom:before {
1047 | content: "\e252";
1048 | }
1049 | .glyphicon-triangle-top:before {
1050 | content: "\e253";
1051 | }
1052 | .glyphicon-console:before {
1053 | content: "\e254";
1054 | }
1055 | .glyphicon-superscript:before {
1056 | content: "\e255";
1057 | }
1058 | .glyphicon-subscript:before {
1059 | content: "\e256";
1060 | }
1061 | .glyphicon-menu-left:before {
1062 | content: "\e257";
1063 | }
1064 | .glyphicon-menu-right:before {
1065 | content: "\e258";
1066 | }
1067 | .glyphicon-menu-down:before {
1068 | content: "\e259";
1069 | }
1070 | .glyphicon-menu-up:before {
1071 | content: "\e260";
1072 | }
1073 | * {
1074 | -webkit-box-sizing: border-box;
1075 | -moz-box-sizing: border-box;
1076 | box-sizing: border-box;
1077 | }
1078 | *:before,
1079 | *:after {
1080 | -webkit-box-sizing: border-box;
1081 | -moz-box-sizing: border-box;
1082 | box-sizing: border-box;
1083 | }
1084 | html {
1085 | font-size: 10px;
1086 | -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1087 | }
1088 | body {
1089 | font-family: Georgia, "Times New Roman", Times, serif;
1090 | font-size: 20px;
1091 | line-height: 1.6;
1092 | color: #333333;
1093 | background-color: #ffffff;
1094 | }
1095 | input,
1096 | button,
1097 | select,
1098 | textarea {
1099 | font-family: inherit;
1100 | font-size: inherit;
1101 | line-height: inherit;
1102 | }
1103 | a {
1104 | color: #4582ec;
1105 | text-decoration: none;
1106 | }
1107 | a:hover,
1108 | a:focus {
1109 | color: #134fb8;
1110 | text-decoration: underline;
1111 | }
1112 | a:focus {
1113 | outline: thin dotted;
1114 | outline: 5px auto -webkit-focus-ring-color;
1115 | outline-offset: -2px;
1116 | }
1117 | figure {
1118 | margin: 0;
1119 | }
1120 | img {
1121 | vertical-align: middle;
1122 | }
1123 | .img-responsive,
1124 | .thumbnail > img,
1125 | .thumbnail a > img,
1126 | .carousel-inner > .item > img,
1127 | .carousel-inner > .item > a > img {
1128 | display: block;
1129 | max-width: 100%;
1130 | height: auto;
1131 | }
1132 | .img-rounded {
1133 | border-radius: 6px;
1134 | }
1135 | .img-thumbnail {
1136 | padding: 4px;
1137 | line-height: 1.42857143;
1138 | background-color: #ffffff;
1139 | border: 1px solid #dddddd;
1140 | border-radius: 4px;
1141 | -webkit-transition: all 0.2s ease-in-out;
1142 | -o-transition: all 0.2s ease-in-out;
1143 | transition: all 0.2s ease-in-out;
1144 | display: inline-block;
1145 | max-width: 100%;
1146 | height: auto;
1147 | }
1148 | .img-circle {
1149 | border-radius: 50%;
1150 | }
1151 | hr {
1152 | margin-top: 22px;
1153 | margin-bottom: 22px;
1154 | border: 0;
1155 | border-top: 1px solid #eeeeee;
1156 | }
1157 | .sr-only {
1158 | position: absolute;
1159 | width: 1px;
1160 | height: 1px;
1161 | margin: -1px;
1162 | padding: 0;
1163 | overflow: hidden;
1164 | clip: rect(0, 0, 0, 0);
1165 | border: 0;
1166 | }
1167 | .sr-only-focusable:active,
1168 | .sr-only-focusable:focus {
1169 | position: static;
1170 | width: auto;
1171 | height: auto;
1172 | margin: 0;
1173 | overflow: visible;
1174 | clip: auto;
1175 | }
1176 | [role="button"] {
1177 | cursor: pointer;
1178 | }
1179 | h1,
1180 | h2,
1181 | h3,
1182 | h4,
1183 | h5,
1184 | h6,
1185 | .h1,
1186 | .h2,
1187 | .h3,
1188 | .h4,
1189 | .h5,
1190 | .h6 {
1191 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
1192 | font-weight: bold;
1193 | line-height: 1.1;
1194 | color: inherit;
1195 | }
1196 | h1 small,
1197 | h2 small,
1198 | h3 small,
1199 | h4 small,
1200 | h5 small,
1201 | h6 small,
1202 | .h1 small,
1203 | .h2 small,
1204 | .h3 small,
1205 | .h4 small,
1206 | .h5 small,
1207 | .h6 small,
1208 | h1 .small,
1209 | h2 .small,
1210 | h3 .small,
1211 | h4 .small,
1212 | h5 .small,
1213 | h6 .small,
1214 | .h1 .small,
1215 | .h2 .small,
1216 | .h3 .small,
1217 | .h4 .small,
1218 | .h5 .small,
1219 | .h6 .small {
1220 | font-weight: normal;
1221 | line-height: 1;
1222 | color: #b3b3b3;
1223 | }
1224 | h1,
1225 | .h1,
1226 | h2,
1227 | .h2,
1228 | h3,
1229 | .h3 {
1230 | margin-top: 22px;
1231 | margin-bottom: 11px;
1232 | }
1233 | h1 small,
1234 | .h1 small,
1235 | h2 small,
1236 | .h2 small,
1237 | h3 small,
1238 | .h3 small,
1239 | h1 .small,
1240 | .h1 .small,
1241 | h2 .small,
1242 | .h2 .small,
1243 | h3 .small,
1244 | .h3 .small {
1245 | font-size: 65%;
1246 | }
1247 | h4,
1248 | .h4,
1249 | h5,
1250 | .h5,
1251 | h6,
1252 | .h6 {
1253 | margin-top: 11px;
1254 | margin-bottom: 11px;
1255 | }
1256 | h4 small,
1257 | .h4 small,
1258 | h5 small,
1259 | .h5 small,
1260 | h6 small,
1261 | .h6 small,
1262 | h4 .small,
1263 | .h4 .small,
1264 | h5 .small,
1265 | .h5 .small,
1266 | h6 .small,
1267 | .h6 .small {
1268 | font-size: 75%;
1269 | }
1270 | h1,
1271 | .h1 {
1272 | font-size: 41px;
1273 | }
1274 | h2,
1275 | .h2 {
1276 | font-size: 34px;
1277 | }
1278 | h3,
1279 | .h3 {
1280 | font-size: 28px;
1281 | }
1282 | h4,
1283 | .h4 {
1284 | font-size: 20px;
1285 | }
1286 | h5,
1287 | .h5 {
1288 | font-size: 16px;
1289 | }
1290 | h6,
1291 | .h6 {
1292 | font-size: 14px;
1293 | }
1294 | p {
1295 | margin: 0 0 20px;
1296 | }
1297 | .lead {
1298 | margin-bottom: 22px;
1299 | font-size: 18px;
1300 | font-weight: 300;
1301 | line-height: 1.4;
1302 | }
1303 | @media (min-width: 768px) {
1304 | .lead {
1305 | font-size: 24px;
1306 | }
1307 | }
1308 | small,
1309 | .small {
1310 | font-size: 87%;
1311 | }
1312 | mark,
1313 | .mark {
1314 | background-color: #fcf8e3;
1315 | padding: .2em;
1316 | }
1317 | .text-left {
1318 | text-align: left;
1319 | }
1320 | .text-right {
1321 | text-align: right;
1322 | }
1323 | .text-center {
1324 | text-align: center;
1325 | }
1326 | .text-justify {
1327 | text-align: justify;
1328 | }
1329 | .text-nowrap {
1330 | white-space: nowrap;
1331 | }
1332 | .text-lowercase {
1333 | text-transform: lowercase;
1334 | }
1335 | .text-uppercase {
1336 | text-transform: uppercase;
1337 | }
1338 | .text-capitalize {
1339 | text-transform: capitalize;
1340 | }
1341 | .text-muted {
1342 | color: #b3b3b3;
1343 | }
1344 | .text-primary {
1345 | color: #4582ec;
1346 | }
1347 | a.text-primary:hover,
1348 | a.text-primary:focus {
1349 | color: #1863e6;
1350 | }
1351 | .text-success {
1352 | color: #3fad46;
1353 | }
1354 | a.text-success:hover,
1355 | a.text-success:focus {
1356 | color: #318837;
1357 | }
1358 | .text-info {
1359 | color: #5bc0de;
1360 | }
1361 | a.text-info:hover,
1362 | a.text-info:focus {
1363 | color: #31b0d5;
1364 | }
1365 | .text-warning {
1366 | color: #f0ad4e;
1367 | }
1368 | a.text-warning:hover,
1369 | a.text-warning:focus {
1370 | color: #ec971f;
1371 | }
1372 | .text-danger {
1373 | color: #d9534f;
1374 | }
1375 | a.text-danger:hover,
1376 | a.text-danger:focus {
1377 | color: #c9302c;
1378 | }
1379 | .bg-primary {
1380 | color: #fff;
1381 | background-color: #4582ec;
1382 | }
1383 | a.bg-primary:hover,
1384 | a.bg-primary:focus {
1385 | background-color: #1863e6;
1386 | }
1387 | .bg-success {
1388 | background-color: #dff0d8;
1389 | }
1390 | a.bg-success:hover,
1391 | a.bg-success:focus {
1392 | background-color: #c1e2b3;
1393 | }
1394 | .bg-info {
1395 | background-color: #d9edf7;
1396 | }
1397 | a.bg-info:hover,
1398 | a.bg-info:focus {
1399 | background-color: #afd9ee;
1400 | }
1401 | .bg-warning {
1402 | background-color: #fcf8e3;
1403 | }
1404 | a.bg-warning:hover,
1405 | a.bg-warning:focus {
1406 | background-color: #f7ecb5;
1407 | }
1408 | .bg-danger {
1409 | background-color: #f2dede;
1410 | }
1411 | a.bg-danger:hover,
1412 | a.bg-danger:focus {
1413 | background-color: #e4b9b9;
1414 | }
1415 | .page-header {
1416 | padding-bottom: 10px;
1417 | margin: 44px 0 22px;
1418 | border-bottom: 1px solid #dddddd;
1419 | }
1420 | ul,
1421 | ol {
1422 | margin-top: 0;
1423 | margin-bottom: 11px;
1424 | }
1425 | ul ul,
1426 | ol ul,
1427 | ul ol,
1428 | ol ol {
1429 | margin-bottom: 0;
1430 | }
1431 | .list-unstyled {
1432 | padding-left: 0;
1433 | list-style: none;
1434 | }
1435 | .list-inline {
1436 | padding-left: 0;
1437 | list-style: none;
1438 | margin-left: -5px;
1439 | }
1440 | .list-inline > li {
1441 | display: inline-block;
1442 | padding-left: 5px;
1443 | padding-right: 5px;
1444 | }
1445 | dl {
1446 | margin-top: 0;
1447 | margin-bottom: 22px;
1448 | }
1449 | dt,
1450 | dd {
1451 | line-height: 1.42857143;
1452 | }
1453 | dt {
1454 | font-weight: bold;
1455 | }
1456 | dd {
1457 | margin-left: 0;
1458 | }
1459 | @media (min-width: 768px) {
1460 | .dl-horizontal dt {
1461 | float: left;
1462 | width: 160px;
1463 | clear: left;
1464 | text-align: right;
1465 | overflow: hidden;
1466 | text-overflow: ellipsis;
1467 | white-space: nowrap;
1468 | }
1469 | .dl-horizontal dd {
1470 | margin-left: 180px;
1471 | }
1472 | }
1473 | abbr[title],
1474 | abbr[data-original-title] {
1475 | cursor: help;
1476 | border-bottom: 1px dotted #b3b3b3;
1477 | }
1478 | .initialism {
1479 | font-size: 90%;
1480 | text-transform: uppercase;
1481 | }
1482 | blockquote {
1483 | padding: 11px 22px;
1484 | margin: 0 0 22px;
1485 | font-size: 20px;
1486 | border-left: 5px solid #4582ec;
1487 | }
1488 | blockquote p:last-child,
1489 | blockquote ul:last-child,
1490 | blockquote ol:last-child {
1491 | margin-bottom: 0;
1492 | }
1493 | blockquote footer,
1494 | blockquote small,
1495 | blockquote .small {
1496 | display: block;
1497 | font-size: 80%;
1498 | line-height: 1.42857143;
1499 | color: #333333;
1500 | }
1501 | blockquote footer:before,
1502 | blockquote small:before,
1503 | blockquote .small:before {
1504 | content: '\2014 \00A0';
1505 | }
1506 | .blockquote-reverse,
1507 | blockquote.pull-right {
1508 | padding-right: 15px;
1509 | padding-left: 0;
1510 | border-right: 5px solid #4582ec;
1511 | border-left: 0;
1512 | text-align: right;
1513 | }
1514 | .blockquote-reverse footer:before,
1515 | blockquote.pull-right footer:before,
1516 | .blockquote-reverse small:before,
1517 | blockquote.pull-right small:before,
1518 | .blockquote-reverse .small:before,
1519 | blockquote.pull-right .small:before {
1520 | content: '';
1521 | }
1522 | .blockquote-reverse footer:after,
1523 | blockquote.pull-right footer:after,
1524 | .blockquote-reverse small:after,
1525 | blockquote.pull-right small:after,
1526 | .blockquote-reverse .small:after,
1527 | blockquote.pull-right .small:after {
1528 | content: '\00A0 \2014';
1529 | }
1530 | address {
1531 | margin-bottom: 22px;
1532 | font-style: normal;
1533 | line-height: 1.42857143;
1534 | }
1535 | code,
1536 | kbd,
1537 | pre,
1538 | samp {
1539 | font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1540 | }
1541 | code {
1542 | padding: 2px 4px;
1543 | font-size: 90%;
1544 | color: #c7254e;
1545 | background-color: #f9f2f4;
1546 | border-radius: 4px;
1547 | }
1548 | kbd {
1549 | padding: 2px 4px;
1550 | font-size: 90%;
1551 | color: #ffffff;
1552 | background-color: #333333;
1553 | border-radius: 3px;
1554 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
1555 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
1556 | }
1557 | kbd kbd {
1558 | padding: 0;
1559 | font-size: 100%;
1560 | font-weight: bold;
1561 | -webkit-box-shadow: none;
1562 | box-shadow: none;
1563 | }
1564 | pre {
1565 | display: block;
1566 | padding: 10.5px;
1567 | margin: 0 0 11px;
1568 | font-size: 15px;
1569 | line-height: 1.42857143;
1570 | word-break: break-all;
1571 | word-wrap: break-word;
1572 | color: #333333;
1573 | background-color: #f5f5f5;
1574 | border: 1px solid #cccccc;
1575 | border-radius: 4px;
1576 | }
1577 | pre code {
1578 | padding: 0;
1579 | font-size: inherit;
1580 | color: inherit;
1581 | white-space: pre-wrap;
1582 | background-color: transparent;
1583 | border-radius: 0;
1584 | }
1585 | .pre-scrollable {
1586 | max-height: 340px;
1587 | overflow-y: scroll;
1588 | }
1589 | .container {
1590 | margin-right: auto;
1591 | margin-left: auto;
1592 | padding-left: 20px;
1593 | padding-right: 20px;
1594 | }
1595 | @media (min-width: 768px) {
1596 | .container {
1597 | width: 750px;
1598 | }
1599 | }
1600 | @media (min-width: 992px) {
1601 | .container {
1602 | width: 970px;
1603 | }
1604 | }
1605 | @media (min-width: 1200px) {
1606 | .container {
1607 | width: 1170px;
1608 | }
1609 | }
1610 | .container-fluid {
1611 | margin-right: auto;
1612 | margin-left: auto;
1613 | padding-left: 15px;
1614 | padding-right: 15px;
1615 | }
1616 | .row {
1617 | margin-left: -15px;
1618 | margin-right: -15px;
1619 | }
1620 | .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
1621 | position: relative;
1622 | min-height: 1px;
1623 | padding-left: 15px;
1624 | padding-right: 15px;
1625 | }
1626 | .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
1627 | float: left;
1628 | }
1629 | .col-xs-12 {
1630 | width: 100%;
1631 | }
1632 | .col-xs-11 {
1633 | width: 91.66666667%;
1634 | }
1635 | .col-xs-10 {
1636 | width: 83.33333333%;
1637 | }
1638 | .col-xs-9 {
1639 | width: 75%;
1640 | }
1641 | .col-xs-8 {
1642 | width: 66.66666667%;
1643 | }
1644 | .col-xs-7 {
1645 | width: 58.33333333%;
1646 | }
1647 | .col-xs-6 {
1648 | width: 50%;
1649 | }
1650 | .col-xs-5 {
1651 | width: 41.66666667%;
1652 | }
1653 | .col-xs-4 {
1654 | width: 33.33333333%;
1655 | }
1656 | .col-xs-3 {
1657 | width: 25%;
1658 | }
1659 | .col-xs-2 {
1660 | width: 16.66666667%;
1661 | }
1662 | .col-xs-1 {
1663 | width: 8.33333333%;
1664 | }
1665 | .col-xs-pull-12 {
1666 | right: 100%;
1667 | }
1668 | .col-xs-pull-11 {
1669 | right: 91.66666667%;
1670 | }
1671 | .col-xs-pull-10 {
1672 | right: 83.33333333%;
1673 | }
1674 | .col-xs-pull-9 {
1675 | right: 75%;
1676 | }
1677 | .col-xs-pull-8 {
1678 | right: 66.66666667%;
1679 | }
1680 | .col-xs-pull-7 {
1681 | right: 58.33333333%;
1682 | }
1683 | .col-xs-pull-6 {
1684 | right: 50%;
1685 | }
1686 | .col-xs-pull-5 {
1687 | right: 41.66666667%;
1688 | }
1689 | .col-xs-pull-4 {
1690 | right: 33.33333333%;
1691 | }
1692 | .col-xs-pull-3 {
1693 | right: 25%;
1694 | }
1695 | .col-xs-pull-2 {
1696 | right: 16.66666667%;
1697 | }
1698 | .col-xs-pull-1 {
1699 | right: 8.33333333%;
1700 | }
1701 | .col-xs-pull-0 {
1702 | right: auto;
1703 | }
1704 | .col-xs-push-12 {
1705 | left: 100%;
1706 | }
1707 | .col-xs-push-11 {
1708 | left: 91.66666667%;
1709 | }
1710 | .col-xs-push-10 {
1711 | left: 83.33333333%;
1712 | }
1713 | .col-xs-push-9 {
1714 | left: 75%;
1715 | }
1716 | .col-xs-push-8 {
1717 | left: 66.66666667%;
1718 | }
1719 | .col-xs-push-7 {
1720 | left: 58.33333333%;
1721 | }
1722 | .col-xs-push-6 {
1723 | left: 50%;
1724 | }
1725 | .col-xs-push-5 {
1726 | left: 41.66666667%;
1727 | }
1728 | .col-xs-push-4 {
1729 | left: 33.33333333%;
1730 | }
1731 | .col-xs-push-3 {
1732 | left: 25%;
1733 | }
1734 | .col-xs-push-2 {
1735 | left: 16.66666667%;
1736 | }
1737 | .col-xs-push-1 {
1738 | left: 8.33333333%;
1739 | }
1740 | .col-xs-push-0 {
1741 | left: auto;
1742 | }
1743 | .col-xs-offset-12 {
1744 | margin-left: 100%;
1745 | }
1746 | .col-xs-offset-11 {
1747 | margin-left: 91.66666667%;
1748 | }
1749 | .col-xs-offset-10 {
1750 | margin-left: 83.33333333%;
1751 | }
1752 | .col-xs-offset-9 {
1753 | margin-left: 75%;
1754 | }
1755 | .col-xs-offset-8 {
1756 | margin-left: 66.66666667%;
1757 | }
1758 | .col-xs-offset-7 {
1759 | margin-left: 58.33333333%;
1760 | }
1761 | .col-xs-offset-6 {
1762 | margin-left: 50%;
1763 | }
1764 | .col-xs-offset-5 {
1765 | margin-left: 41.66666667%;
1766 | }
1767 | .col-xs-offset-4 {
1768 | margin-left: 33.33333333%;
1769 | }
1770 | .col-xs-offset-3 {
1771 | margin-left: 25%;
1772 | }
1773 | .col-xs-offset-2 {
1774 | margin-left: 16.66666667%;
1775 | }
1776 | .col-xs-offset-1 {
1777 | margin-left: 8.33333333%;
1778 | }
1779 | .col-xs-offset-0 {
1780 | margin-left: 0%;
1781 | }
1782 | @media (min-width: 768px) {
1783 | .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
1784 | float: left;
1785 | }
1786 | .col-sm-12 {
1787 | width: 100%;
1788 | }
1789 | .col-sm-11 {
1790 | width: 91.66666667%;
1791 | }
1792 | .col-sm-10 {
1793 | width: 83.33333333%;
1794 | }
1795 | .col-sm-9 {
1796 | width: 75%;
1797 | }
1798 | .col-sm-8 {
1799 | width: 66.66666667%;
1800 | }
1801 | .col-sm-7 {
1802 | width: 58.33333333%;
1803 | }
1804 | .col-sm-6 {
1805 | width: 50%;
1806 | }
1807 | .col-sm-5 {
1808 | width: 41.66666667%;
1809 | }
1810 | .col-sm-4 {
1811 | width: 33.33333333%;
1812 | }
1813 | .col-sm-3 {
1814 | width: 25%;
1815 | }
1816 | .col-sm-2 {
1817 | width: 16.66666667%;
1818 | }
1819 | .col-sm-1 {
1820 | width: 8.33333333%;
1821 | }
1822 | .col-sm-pull-12 {
1823 | right: 100%;
1824 | }
1825 | .col-sm-pull-11 {
1826 | right: 91.66666667%;
1827 | }
1828 | .col-sm-pull-10 {
1829 | right: 83.33333333%;
1830 | }
1831 | .col-sm-pull-9 {
1832 | right: 75%;
1833 | }
1834 | .col-sm-pull-8 {
1835 | right: 66.66666667%;
1836 | }
1837 | .col-sm-pull-7 {
1838 | right: 58.33333333%;
1839 | }
1840 | .col-sm-pull-6 {
1841 | right: 50%;
1842 | }
1843 | .col-sm-pull-5 {
1844 | right: 41.66666667%;
1845 | }
1846 | .col-sm-pull-4 {
1847 | right: 33.33333333%;
1848 | }
1849 | .col-sm-pull-3 {
1850 | right: 25%;
1851 | }
1852 | .col-sm-pull-2 {
1853 | right: 16.66666667%;
1854 | }
1855 | .col-sm-pull-1 {
1856 | right: 8.33333333%;
1857 | }
1858 | .col-sm-pull-0 {
1859 | right: auto;
1860 | }
1861 | .col-sm-push-12 {
1862 | left: 100%;
1863 | }
1864 | .col-sm-push-11 {
1865 | left: 91.66666667%;
1866 | }
1867 | .col-sm-push-10 {
1868 | left: 83.33333333%;
1869 | }
1870 | .col-sm-push-9 {
1871 | left: 75%;
1872 | }
1873 | .col-sm-push-8 {
1874 | left: 66.66666667%;
1875 | }
1876 | .col-sm-push-7 {
1877 | left: 58.33333333%;
1878 | }
1879 | .col-sm-push-6 {
1880 | left: 50%;
1881 | }
1882 | .col-sm-push-5 {
1883 | left: 41.66666667%;
1884 | }
1885 | .col-sm-push-4 {
1886 | left: 33.33333333%;
1887 | }
1888 | .col-sm-push-3 {
1889 | left: 25%;
1890 | }
1891 | .col-sm-push-2 {
1892 | left: 16.66666667%;
1893 | }
1894 | .col-sm-push-1 {
1895 | left: 8.33333333%;
1896 | }
1897 | .col-sm-push-0 {
1898 | left: auto;
1899 | }
1900 | .col-sm-offset-12 {
1901 | margin-left: 100%;
1902 | }
1903 | .col-sm-offset-11 {
1904 | margin-left: 91.66666667%;
1905 | }
1906 | .col-sm-offset-10 {
1907 | margin-left: 83.33333333%;
1908 | }
1909 | .col-sm-offset-9 {
1910 | margin-left: 75%;
1911 | }
1912 | .col-sm-offset-8 {
1913 | margin-left: 66.66666667%;
1914 | }
1915 | .col-sm-offset-7 {
1916 | margin-left: 58.33333333%;
1917 | }
1918 | .col-sm-offset-6 {
1919 | margin-left: 50%;
1920 | }
1921 | .col-sm-offset-5 {
1922 | margin-left: 41.66666667%;
1923 | }
1924 | .col-sm-offset-4 {
1925 | margin-left: 33.33333333%;
1926 | }
1927 | .col-sm-offset-3 {
1928 | margin-left: 25%;
1929 | }
1930 | .col-sm-offset-2 {
1931 | margin-left: 16.66666667%;
1932 | }
1933 | .col-sm-offset-1 {
1934 | margin-left: 8.33333333%;
1935 | }
1936 | .col-sm-offset-0 {
1937 | margin-left: 0%;
1938 | }
1939 | }
1940 | @media (min-width: 992px) {
1941 | .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1942 | float: left;
1943 | }
1944 | .col-md-12 {
1945 | width: 100%;
1946 | }
1947 | .col-md-11 {
1948 | width: 91.66666667%;
1949 | }
1950 | .col-md-10 {
1951 | width: 83.33333333%;
1952 | }
1953 | .col-md-9 {
1954 | width: 75%;
1955 | }
1956 | .col-md-8 {
1957 | width: 66.66666667%;
1958 | }
1959 | .col-md-7 {
1960 | width: 58.33333333%;
1961 | }
1962 | .col-md-6 {
1963 | width: 50%;
1964 | }
1965 | .col-md-5 {
1966 | width: 41.66666667%;
1967 | }
1968 | .col-md-4 {
1969 | width: 33.33333333%;
1970 | }
1971 | .col-md-3 {
1972 | width: 25%;
1973 | }
1974 | .col-md-2 {
1975 | width: 16.66666667%;
1976 | }
1977 | .col-md-1 {
1978 | width: 8.33333333%;
1979 | }
1980 | .col-md-pull-12 {
1981 | right: 100%;
1982 | }
1983 | .col-md-pull-11 {
1984 | right: 91.66666667%;
1985 | }
1986 | .col-md-pull-10 {
1987 | right: 83.33333333%;
1988 | }
1989 | .col-md-pull-9 {
1990 | right: 75%;
1991 | }
1992 | .col-md-pull-8 {
1993 | right: 66.66666667%;
1994 | }
1995 | .col-md-pull-7 {
1996 | right: 58.33333333%;
1997 | }
1998 | .col-md-pull-6 {
1999 | right: 50%;
2000 | }
2001 | .col-md-pull-5 {
2002 | right: 41.66666667%;
2003 | }
2004 | .col-md-pull-4 {
2005 | right: 33.33333333%;
2006 | }
2007 | .col-md-pull-3 {
2008 | right: 25%;
2009 | }
2010 | .col-md-pull-2 {
2011 | right: 16.66666667%;
2012 | }
2013 | .col-md-pull-1 {
2014 | right: 8.33333333%;
2015 | }
2016 | .col-md-pull-0 {
2017 | right: auto;
2018 | }
2019 | .col-md-push-12 {
2020 | left: 100%;
2021 | }
2022 | .col-md-push-11 {
2023 | left: 91.66666667%;
2024 | }
2025 | .col-md-push-10 {
2026 | left: 83.33333333%;
2027 | }
2028 | .col-md-push-9 {
2029 | left: 75%;
2030 | }
2031 | .col-md-push-8 {
2032 | left: 66.66666667%;
2033 | }
2034 | .col-md-push-7 {
2035 | left: 58.33333333%;
2036 | }
2037 | .col-md-push-6 {
2038 | left: 50%;
2039 | }
2040 | .col-md-push-5 {
2041 | left: 41.66666667%;
2042 | }
2043 | .col-md-push-4 {
2044 | left: 33.33333333%;
2045 | }
2046 | .col-md-push-3 {
2047 | left: 25%;
2048 | }
2049 | .col-md-push-2 {
2050 | left: 16.66666667%;
2051 | }
2052 | .col-md-push-1 {
2053 | left: 8.33333333%;
2054 | }
2055 | .col-md-push-0 {
2056 | left: auto;
2057 | }
2058 | .col-md-offset-12 {
2059 | margin-left: 100%;
2060 | }
2061 | .col-md-offset-11 {
2062 | margin-left: 91.66666667%;
2063 | }
2064 | .col-md-offset-10 {
2065 | margin-left: 83.33333333%;
2066 | }
2067 | .col-md-offset-9 {
2068 | margin-left: 75%;
2069 | }
2070 | .col-md-offset-8 {
2071 | margin-left: 66.66666667%;
2072 | }
2073 | .col-md-offset-7 {
2074 | margin-left: 58.33333333%;
2075 | }
2076 | .col-md-offset-6 {
2077 | margin-left: 50%;
2078 | }
2079 | .col-md-offset-5 {
2080 | margin-left: 41.66666667%;
2081 | }
2082 | .col-md-offset-4 {
2083 | margin-left: 33.33333333%;
2084 | }
2085 | .col-md-offset-3 {
2086 | margin-left: 25%;
2087 | }
2088 | .col-md-offset-2 {
2089 | margin-left: 16.66666667%;
2090 | }
2091 | .col-md-offset-1 {
2092 | margin-left: 8.33333333%;
2093 | }
2094 | .col-md-offset-0 {
2095 | margin-left: 0%;
2096 | }
2097 | }
2098 | @media (min-width: 1200px) {
2099 | .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
2100 | float: left;
2101 | }
2102 | .col-lg-12 {
2103 | width: 100%;
2104 | }
2105 | .col-lg-11 {
2106 | width: 91.66666667%;
2107 | }
2108 | .col-lg-10 {
2109 | width: 83.33333333%;
2110 | }
2111 | .col-lg-9 {
2112 | width: 75%;
2113 | }
2114 | .col-lg-8 {
2115 | width: 66.66666667%;
2116 | }
2117 | .col-lg-7 {
2118 | width: 58.33333333%;
2119 | }
2120 | .col-lg-6 {
2121 | width: 50%;
2122 | }
2123 | .col-lg-5 {
2124 | width: 41.66666667%;
2125 | }
2126 | .col-lg-4 {
2127 | width: 33.33333333%;
2128 | }
2129 | .col-lg-3 {
2130 | width: 25%;
2131 | }
2132 | .col-lg-2 {
2133 | width: 16.66666667%;
2134 | }
2135 | .col-lg-1 {
2136 | width: 8.33333333%;
2137 | }
2138 | .col-lg-pull-12 {
2139 | right: 100%;
2140 | }
2141 | .col-lg-pull-11 {
2142 | right: 91.66666667%;
2143 | }
2144 | .col-lg-pull-10 {
2145 | right: 83.33333333%;
2146 | }
2147 | .col-lg-pull-9 {
2148 | right: 75%;
2149 | }
2150 | .col-lg-pull-8 {
2151 | right: 66.66666667%;
2152 | }
2153 | .col-lg-pull-7 {
2154 | right: 58.33333333%;
2155 | }
2156 | .col-lg-pull-6 {
2157 | right: 50%;
2158 | }
2159 | .col-lg-pull-5 {
2160 | right: 41.66666667%;
2161 | }
2162 | .col-lg-pull-4 {
2163 | right: 33.33333333%;
2164 | }
2165 | .col-lg-pull-3 {
2166 | right: 25%;
2167 | }
2168 | .col-lg-pull-2 {
2169 | right: 16.66666667%;
2170 | }
2171 | .col-lg-pull-1 {
2172 | right: 8.33333333%;
2173 | }
2174 | .col-lg-pull-0 {
2175 | right: auto;
2176 | }
2177 | .col-lg-push-12 {
2178 | left: 100%;
2179 | }
2180 | .col-lg-push-11 {
2181 | left: 91.66666667%;
2182 | }
2183 | .col-lg-push-10 {
2184 | left: 83.33333333%;
2185 | }
2186 | .col-lg-push-9 {
2187 | left: 75%;
2188 | }
2189 | .col-lg-push-8 {
2190 | left: 66.66666667%;
2191 | }
2192 | .col-lg-push-7 {
2193 | left: 58.33333333%;
2194 | }
2195 | .col-lg-push-6 {
2196 | left: 50%;
2197 | }
2198 | .col-lg-push-5 {
2199 | left: 41.66666667%;
2200 | }
2201 | .col-lg-push-4 {
2202 | left: 33.33333333%;
2203 | }
2204 | .col-lg-push-3 {
2205 | left: 25%;
2206 | }
2207 | .col-lg-push-2 {
2208 | left: 16.66666667%;
2209 | }
2210 | .col-lg-push-1 {
2211 | left: 8.33333333%;
2212 | }
2213 | .col-lg-push-0 {
2214 | left: auto;
2215 | }
2216 | .col-lg-offset-12 {
2217 | margin-left: 100%;
2218 | }
2219 | .col-lg-offset-11 {
2220 | margin-left: 91.66666667%;
2221 | }
2222 | .col-lg-offset-10 {
2223 | margin-left: 83.33333333%;
2224 | }
2225 | .col-lg-offset-9 {
2226 | margin-left: 75%;
2227 | }
2228 | .col-lg-offset-8 {
2229 | margin-left: 66.66666667%;
2230 | }
2231 | .col-lg-offset-7 {
2232 | margin-left: 58.33333333%;
2233 | }
2234 | .col-lg-offset-6 {
2235 | margin-left: 50%;
2236 | }
2237 | .col-lg-offset-5 {
2238 | margin-left: 41.66666667%;
2239 | }
2240 | .col-lg-offset-4 {
2241 | margin-left: 33.33333333%;
2242 | }
2243 | .col-lg-offset-3 {
2244 | margin-left: 25%;
2245 | }
2246 | .col-lg-offset-2 {
2247 | margin-left: 16.66666667%;
2248 | }
2249 | .col-lg-offset-1 {
2250 | margin-left: 8.33333333%;
2251 | }
2252 | .col-lg-offset-0 {
2253 | margin-left: 0%;
2254 | }
2255 | }
2256 | table {
2257 | background-color: transparent;
2258 | }
2259 | caption {
2260 | padding-top: 8px;
2261 | padding-bottom: 8px;
2262 | color: #b3b3b3;
2263 | text-align: left;
2264 | }
2265 | th {
2266 | text-align: left;
2267 | }
2268 | .table {
2269 | width: 100%;
2270 | max-width: 100%;
2271 | margin-bottom: 22px;
2272 | }
2273 | .table > thead > tr > th,
2274 | .table > tbody > tr > th,
2275 | .table > tfoot > tr > th,
2276 | .table > thead > tr > td,
2277 | .table > tbody > tr > td,
2278 | .table > tfoot > tr > td {
2279 | padding: 8px;
2280 | line-height: 1.42857143;
2281 | vertical-align: top;
2282 | border-top: 1px solid #dddddd;
2283 | }
2284 | .table > thead > tr > th {
2285 | vertical-align: bottom;
2286 | border-bottom: 2px solid #dddddd;
2287 | }
2288 | .table > caption + thead > tr:first-child > th,
2289 | .table > colgroup + thead > tr:first-child > th,
2290 | .table > thead:first-child > tr:first-child > th,
2291 | .table > caption + thead > tr:first-child > td,
2292 | .table > colgroup + thead > tr:first-child > td,
2293 | .table > thead:first-child > tr:first-child > td {
2294 | border-top: 0;
2295 | }
2296 | .table > tbody + tbody {
2297 | border-top: 2px solid #dddddd;
2298 | }
2299 | .table .table {
2300 | background-color: #ffffff;
2301 | }
2302 | .table-condensed > thead > tr > th,
2303 | .table-condensed > tbody > tr > th,
2304 | .table-condensed > tfoot > tr > th,
2305 | .table-condensed > thead > tr > td,
2306 | .table-condensed > tbody > tr > td,
2307 | .table-condensed > tfoot > tr > td {
2308 | padding: 5px;
2309 | }
2310 | .table-bordered {
2311 | border: 1px solid #dddddd;
2312 | }
2313 | .table-bordered > thead > tr > th,
2314 | .table-bordered > tbody > tr > th,
2315 | .table-bordered > tfoot > tr > th,
2316 | .table-bordered > thead > tr > td,
2317 | .table-bordered > tbody > tr > td,
2318 | .table-bordered > tfoot > tr > td {
2319 | border: 1px solid #dddddd;
2320 | }
2321 | .table-bordered > thead > tr > th,
2322 | .table-bordered > thead > tr > td {
2323 | border-bottom-width: 2px;
2324 | }
2325 | .table-striped > tbody > tr:nth-of-type(odd) {
2326 | background-color: #f9f9f9;
2327 | }
2328 | .table-hover > tbody > tr:hover {
2329 | background-color: #f5f5f5;
2330 | }
2331 | table col[class*="col-"] {
2332 | position: static;
2333 | float: none;
2334 | display: table-column;
2335 | }
2336 | table td[class*="col-"],
2337 | table th[class*="col-"] {
2338 | position: static;
2339 | float: none;
2340 | display: table-cell;
2341 | }
2342 | .table > thead > tr > td.active,
2343 | .table > tbody > tr > td.active,
2344 | .table > tfoot > tr > td.active,
2345 | .table > thead > tr > th.active,
2346 | .table > tbody > tr > th.active,
2347 | .table > tfoot > tr > th.active,
2348 | .table > thead > tr.active > td,
2349 | .table > tbody > tr.active > td,
2350 | .table > tfoot > tr.active > td,
2351 | .table > thead > tr.active > th,
2352 | .table > tbody > tr.active > th,
2353 | .table > tfoot > tr.active > th {
2354 | background-color: #f5f5f5;
2355 | }
2356 | .table-hover > tbody > tr > td.active:hover,
2357 | .table-hover > tbody > tr > th.active:hover,
2358 | .table-hover > tbody > tr.active:hover > td,
2359 | .table-hover > tbody > tr:hover > .active,
2360 | .table-hover > tbody > tr.active:hover > th {
2361 | background-color: #e8e8e8;
2362 | }
2363 | .table > thead > tr > td.success,
2364 | .table > tbody > tr > td.success,
2365 | .table > tfoot > tr > td.success,
2366 | .table > thead > tr > th.success,
2367 | .table > tbody > tr > th.success,
2368 | .table > tfoot > tr > th.success,
2369 | .table > thead > tr.success > td,
2370 | .table > tbody > tr.success > td,
2371 | .table > tfoot > tr.success > td,
2372 | .table > thead > tr.success > th,
2373 | .table > tbody > tr.success > th,
2374 | .table > tfoot > tr.success > th {
2375 | background-color: #dff0d8;
2376 | }
2377 | .table-hover > tbody > tr > td.success:hover,
2378 | .table-hover > tbody > tr > th.success:hover,
2379 | .table-hover > tbody > tr.success:hover > td,
2380 | .table-hover > tbody > tr:hover > .success,
2381 | .table-hover > tbody > tr.success:hover > th {
2382 | background-color: #d0e9c6;
2383 | }
2384 | .table > thead > tr > td.info,
2385 | .table > tbody > tr > td.info,
2386 | .table > tfoot > tr > td.info,
2387 | .table > thead > tr > th.info,
2388 | .table > tbody > tr > th.info,
2389 | .table > tfoot > tr > th.info,
2390 | .table > thead > tr.info > td,
2391 | .table > tbody > tr.info > td,
2392 | .table > tfoot > tr.info > td,
2393 | .table > thead > tr.info > th,
2394 | .table > tbody > tr.info > th,
2395 | .table > tfoot > tr.info > th {
2396 | background-color: #d9edf7;
2397 | }
2398 | .table-hover > tbody > tr > td.info:hover,
2399 | .table-hover > tbody > tr > th.info:hover,
2400 | .table-hover > tbody > tr.info:hover > td,
2401 | .table-hover > tbody > tr:hover > .info,
2402 | .table-hover > tbody > tr.info:hover > th {
2403 | background-color: #c4e3f3;
2404 | }
2405 | .table > thead > tr > td.warning,
2406 | .table > tbody > tr > td.warning,
2407 | .table > tfoot > tr > td.warning,
2408 | .table > thead > tr > th.warning,
2409 | .table > tbody > tr > th.warning,
2410 | .table > tfoot > tr > th.warning,
2411 | .table > thead > tr.warning > td,
2412 | .table > tbody > tr.warning > td,
2413 | .table > tfoot > tr.warning > td,
2414 | .table > thead > tr.warning > th,
2415 | .table > tbody > tr.warning > th,
2416 | .table > tfoot > tr.warning > th {
2417 | background-color: #fcf8e3;
2418 | }
2419 | .table-hover > tbody > tr > td.warning:hover,
2420 | .table-hover > tbody > tr > th.warning:hover,
2421 | .table-hover > tbody > tr.warning:hover > td,
2422 | .table-hover > tbody > tr:hover > .warning,
2423 | .table-hover > tbody > tr.warning:hover > th {
2424 | background-color: #faf2cc;
2425 | }
2426 | .table > thead > tr > td.danger,
2427 | .table > tbody > tr > td.danger,
2428 | .table > tfoot > tr > td.danger,
2429 | .table > thead > tr > th.danger,
2430 | .table > tbody > tr > th.danger,
2431 | .table > tfoot > tr > th.danger,
2432 | .table > thead > tr.danger > td,
2433 | .table > tbody > tr.danger > td,
2434 | .table > tfoot > tr.danger > td,
2435 | .table > thead > tr.danger > th,
2436 | .table > tbody > tr.danger > th,
2437 | .table > tfoot > tr.danger > th {
2438 | background-color: #f2dede;
2439 | }
2440 | .table-hover > tbody > tr > td.danger:hover,
2441 | .table-hover > tbody > tr > th.danger:hover,
2442 | .table-hover > tbody > tr.danger:hover > td,
2443 | .table-hover > tbody > tr:hover > .danger,
2444 | .table-hover > tbody > tr.danger:hover > th {
2445 | background-color: #ebcccc;
2446 | }
2447 | .table-responsive {
2448 | overflow-x: auto;
2449 | min-height: 0.01%;
2450 | }
2451 | @media screen and (max-width: 767px) {
2452 | .table-responsive {
2453 | width: 100%;
2454 | margin-bottom: 16.5px;
2455 | overflow-y: hidden;
2456 | -ms-overflow-style: -ms-autohiding-scrollbar;
2457 | border: 1px solid #dddddd;
2458 | }
2459 | .table-responsive > .table {
2460 | margin-bottom: 0;
2461 | }
2462 | .table-responsive > .table > thead > tr > th,
2463 | .table-responsive > .table > tbody > tr > th,
2464 | .table-responsive > .table > tfoot > tr > th,
2465 | .table-responsive > .table > thead > tr > td,
2466 | .table-responsive > .table > tbody > tr > td,
2467 | .table-responsive > .table > tfoot > tr > td {
2468 | white-space: nowrap;
2469 | }
2470 | .table-responsive > .table-bordered {
2471 | border: 0;
2472 | }
2473 | .table-responsive > .table-bordered > thead > tr > th:first-child,
2474 | .table-responsive > .table-bordered > tbody > tr > th:first-child,
2475 | .table-responsive > .table-bordered > tfoot > tr > th:first-child,
2476 | .table-responsive > .table-bordered > thead > tr > td:first-child,
2477 | .table-responsive > .table-bordered > tbody > tr > td:first-child,
2478 | .table-responsive > .table-bordered > tfoot > tr > td:first-child {
2479 | border-left: 0;
2480 | }
2481 | .table-responsive > .table-bordered > thead > tr > th:last-child,
2482 | .table-responsive > .table-bordered > tbody > tr > th:last-child,
2483 | .table-responsive > .table-bordered > tfoot > tr > th:last-child,
2484 | .table-responsive > .table-bordered > thead > tr > td:last-child,
2485 | .table-responsive > .table-bordered > tbody > tr > td:last-child,
2486 | .table-responsive > .table-bordered > tfoot > tr > td:last-child {
2487 | border-right: 0;
2488 | }
2489 | .table-responsive > .table-bordered > tbody > tr:last-child > th,
2490 | .table-responsive > .table-bordered > tfoot > tr:last-child > th,
2491 | .table-responsive > .table-bordered > tbody > tr:last-child > td,
2492 | .table-responsive > .table-bordered > tfoot > tr:last-child > td {
2493 | border-bottom: 0;
2494 | }
2495 | }
2496 | fieldset {
2497 | padding: 0;
2498 | margin: 0;
2499 | border: 0;
2500 | min-width: 0;
2501 | }
2502 | legend {
2503 | display: block;
2504 | width: 100%;
2505 | padding: 0;
2506 | margin-bottom: 22px;
2507 | font-size: 24px;
2508 | line-height: inherit;
2509 | color: #333333;
2510 | border: 0;
2511 | border-bottom: 1px solid #e5e5e5;
2512 | }
2513 | label {
2514 | display: inline-block;
2515 | max-width: 100%;
2516 | margin-bottom: 5px;
2517 | font-weight: bold;
2518 | }
2519 | input[type="search"] {
2520 | -webkit-box-sizing: border-box;
2521 | -moz-box-sizing: border-box;
2522 | box-sizing: border-box;
2523 | }
2524 | input[type="radio"],
2525 | input[type="checkbox"] {
2526 | margin: 4px 0 0;
2527 | margin-top: 1px \9;
2528 | line-height: normal;
2529 | }
2530 | input[type="file"] {
2531 | display: block;
2532 | }
2533 | input[type="range"] {
2534 | display: block;
2535 | width: 100%;
2536 | }
2537 | select[multiple],
2538 | select[size] {
2539 | height: auto;
2540 | }
2541 | input[type="file"]:focus,
2542 | input[type="radio"]:focus,
2543 | input[type="checkbox"]:focus {
2544 | outline: thin dotted;
2545 | outline: 5px auto -webkit-focus-ring-color;
2546 | outline-offset: -2px;
2547 | }
2548 | output {
2549 | display: block;
2550 | padding-top: 9px;
2551 | font-size: 16px;
2552 | line-height: 1.42857143;
2553 | color: #333333;
2554 | }
2555 | .form-control {
2556 | display: block;
2557 | width: 100%;
2558 | height: 40px;
2559 | padding: 8px 12px;
2560 | font-size: 16px;
2561 | line-height: 1.42857143;
2562 | color: #333333;
2563 | background-color: #ffffff;
2564 | background-image: none;
2565 | border: 1px solid #dddddd;
2566 | border-radius: 4px;
2567 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2568 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2569 | -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2570 | -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2571 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2572 | }
2573 | .form-control:focus {
2574 | border-color: #66afe9;
2575 | outline: 0;
2576 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
2577 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
2578 | }
2579 | .form-control::-moz-placeholder {
2580 | color: #b3b3b3;
2581 | opacity: 1;
2582 | }
2583 | .form-control:-ms-input-placeholder {
2584 | color: #b3b3b3;
2585 | }
2586 | .form-control::-webkit-input-placeholder {
2587 | color: #b3b3b3;
2588 | }
2589 | .form-control::-ms-expand {
2590 | border: 0;
2591 | background-color: transparent;
2592 | }
2593 | .form-control[disabled],
2594 | .form-control[readonly],
2595 | fieldset[disabled] .form-control {
2596 | background-color: #eeeeee;
2597 | opacity: 1;
2598 | }
2599 | .form-control[disabled],
2600 | fieldset[disabled] .form-control {
2601 | cursor: not-allowed;
2602 | }
2603 | textarea.form-control {
2604 | height: auto;
2605 | }
2606 | input[type="search"] {
2607 | -webkit-appearance: none;
2608 | }
2609 | @media screen and (-webkit-min-device-pixel-ratio: 0) {
2610 | input[type="date"].form-control,
2611 | input[type="time"].form-control,
2612 | input[type="datetime-local"].form-control,
2613 | input[type="month"].form-control {
2614 | line-height: 40px;
2615 | }
2616 | input[type="date"].input-sm,
2617 | input[type="time"].input-sm,
2618 | input[type="datetime-local"].input-sm,
2619 | input[type="month"].input-sm,
2620 | .input-group-sm input[type="date"],
2621 | .input-group-sm input[type="time"],
2622 | .input-group-sm input[type="datetime-local"],
2623 | .input-group-sm input[type="month"] {
2624 | line-height: 33px;
2625 | }
2626 | input[type="date"].input-lg,
2627 | input[type="time"].input-lg,
2628 | input[type="datetime-local"].input-lg,
2629 | input[type="month"].input-lg,
2630 | .input-group-lg input[type="date"],
2631 | .input-group-lg input[type="time"],
2632 | .input-group-lg input[type="datetime-local"],
2633 | .input-group-lg input[type="month"] {
2634 | line-height: 57px;
2635 | }
2636 | }
2637 | .form-group {
2638 | margin-bottom: 15px;
2639 | }
2640 | .radio,
2641 | .checkbox {
2642 | position: relative;
2643 | display: block;
2644 | margin-top: 10px;
2645 | margin-bottom: 10px;
2646 | }
2647 | .radio label,
2648 | .checkbox label {
2649 | min-height: 22px;
2650 | padding-left: 20px;
2651 | margin-bottom: 0;
2652 | font-weight: normal;
2653 | cursor: pointer;
2654 | }
2655 | .radio input[type="radio"],
2656 | .radio-inline input[type="radio"],
2657 | .checkbox input[type="checkbox"],
2658 | .checkbox-inline input[type="checkbox"] {
2659 | position: absolute;
2660 | margin-left: -20px;
2661 | margin-top: 4px \9;
2662 | }
2663 | .radio + .radio,
2664 | .checkbox + .checkbox {
2665 | margin-top: -5px;
2666 | }
2667 | .radio-inline,
2668 | .checkbox-inline {
2669 | position: relative;
2670 | display: inline-block;
2671 | padding-left: 20px;
2672 | margin-bottom: 0;
2673 | vertical-align: middle;
2674 | font-weight: normal;
2675 | cursor: pointer;
2676 | }
2677 | .radio-inline + .radio-inline,
2678 | .checkbox-inline + .checkbox-inline {
2679 | margin-top: 0;
2680 | margin-left: 10px;
2681 | }
2682 | input[type="radio"][disabled],
2683 | input[type="checkbox"][disabled],
2684 | input[type="radio"].disabled,
2685 | input[type="checkbox"].disabled,
2686 | fieldset[disabled] input[type="radio"],
2687 | fieldset[disabled] input[type="checkbox"] {
2688 | cursor: not-allowed;
2689 | }
2690 | .radio-inline.disabled,
2691 | .checkbox-inline.disabled,
2692 | fieldset[disabled] .radio-inline,
2693 | fieldset[disabled] .checkbox-inline {
2694 | cursor: not-allowed;
2695 | }
2696 | .radio.disabled label,
2697 | .checkbox.disabled label,
2698 | fieldset[disabled] .radio label,
2699 | fieldset[disabled] .checkbox label {
2700 | cursor: not-allowed;
2701 | }
2702 | .form-control-static {
2703 | padding-top: 9px;
2704 | padding-bottom: 9px;
2705 | margin-bottom: 0;
2706 | min-height: 38px;
2707 | }
2708 | .form-control-static.input-lg,
2709 | .form-control-static.input-sm {
2710 | padding-left: 0;
2711 | padding-right: 0;
2712 | }
2713 | .input-sm {
2714 | height: 33px;
2715 | padding: 5px 10px;
2716 | font-size: 14px;
2717 | line-height: 1.5;
2718 | border-radius: 3px;
2719 | }
2720 | select.input-sm {
2721 | height: 33px;
2722 | line-height: 33px;
2723 | }
2724 | textarea.input-sm,
2725 | select[multiple].input-sm {
2726 | height: auto;
2727 | }
2728 | .form-group-sm .form-control {
2729 | height: 33px;
2730 | padding: 5px 10px;
2731 | font-size: 14px;
2732 | line-height: 1.5;
2733 | border-radius: 3px;
2734 | }
2735 | .form-group-sm select.form-control {
2736 | height: 33px;
2737 | line-height: 33px;
2738 | }
2739 | .form-group-sm textarea.form-control,
2740 | .form-group-sm select[multiple].form-control {
2741 | height: auto;
2742 | }
2743 | .form-group-sm .form-control-static {
2744 | height: 33px;
2745 | min-height: 36px;
2746 | padding: 6px 10px;
2747 | font-size: 14px;
2748 | line-height: 1.5;
2749 | }
2750 | .input-lg {
2751 | height: 57px;
2752 | padding: 14px 16px;
2753 | font-size: 20px;
2754 | line-height: 1.3333333;
2755 | border-radius: 6px;
2756 | }
2757 | select.input-lg {
2758 | height: 57px;
2759 | line-height: 57px;
2760 | }
2761 | textarea.input-lg,
2762 | select[multiple].input-lg {
2763 | height: auto;
2764 | }
2765 | .form-group-lg .form-control {
2766 | height: 57px;
2767 | padding: 14px 16px;
2768 | font-size: 20px;
2769 | line-height: 1.3333333;
2770 | border-radius: 6px;
2771 | }
2772 | .form-group-lg select.form-control {
2773 | height: 57px;
2774 | line-height: 57px;
2775 | }
2776 | .form-group-lg textarea.form-control,
2777 | .form-group-lg select[multiple].form-control {
2778 | height: auto;
2779 | }
2780 | .form-group-lg .form-control-static {
2781 | height: 57px;
2782 | min-height: 42px;
2783 | padding: 15px 16px;
2784 | font-size: 20px;
2785 | line-height: 1.3333333;
2786 | }
2787 | .has-feedback {
2788 | position: relative;
2789 | }
2790 | .has-feedback .form-control {
2791 | padding-right: 50px;
2792 | }
2793 | .form-control-feedback {
2794 | position: absolute;
2795 | top: 0;
2796 | right: 0;
2797 | z-index: 2;
2798 | display: block;
2799 | width: 40px;
2800 | height: 40px;
2801 | line-height: 40px;
2802 | text-align: center;
2803 | pointer-events: none;
2804 | }
2805 | .input-lg + .form-control-feedback,
2806 | .input-group-lg + .form-control-feedback,
2807 | .form-group-lg .form-control + .form-control-feedback {
2808 | width: 57px;
2809 | height: 57px;
2810 | line-height: 57px;
2811 | }
2812 | .input-sm + .form-control-feedback,
2813 | .input-group-sm + .form-control-feedback,
2814 | .form-group-sm .form-control + .form-control-feedback {
2815 | width: 33px;
2816 | height: 33px;
2817 | line-height: 33px;
2818 | }
2819 | .has-success .help-block,
2820 | .has-success .control-label,
2821 | .has-success .radio,
2822 | .has-success .checkbox,
2823 | .has-success .radio-inline,
2824 | .has-success .checkbox-inline,
2825 | .has-success.radio label,
2826 | .has-success.checkbox label,
2827 | .has-success.radio-inline label,
2828 | .has-success.checkbox-inline label {
2829 | color: #3fad46;
2830 | }
2831 | .has-success .form-control {
2832 | border-color: #3fad46;
2833 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2834 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2835 | }
2836 | .has-success .form-control:focus {
2837 | border-color: #318837;
2838 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #81d186;
2839 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #81d186;
2840 | }
2841 | .has-success .input-group-addon {
2842 | color: #3fad46;
2843 | border-color: #3fad46;
2844 | background-color: #dff0d8;
2845 | }
2846 | .has-success .form-control-feedback {
2847 | color: #3fad46;
2848 | }
2849 | .has-warning .help-block,
2850 | .has-warning .control-label,
2851 | .has-warning .radio,
2852 | .has-warning .checkbox,
2853 | .has-warning .radio-inline,
2854 | .has-warning .checkbox-inline,
2855 | .has-warning.radio label,
2856 | .has-warning.checkbox label,
2857 | .has-warning.radio-inline label,
2858 | .has-warning.checkbox-inline label {
2859 | color: #f0ad4e;
2860 | }
2861 | .has-warning .form-control {
2862 | border-color: #f0ad4e;
2863 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2864 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2865 | }
2866 | .has-warning .form-control:focus {
2867 | border-color: #ec971f;
2868 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac;
2869 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #f8d9ac;
2870 | }
2871 | .has-warning .input-group-addon {
2872 | color: #f0ad4e;
2873 | border-color: #f0ad4e;
2874 | background-color: #fcf8e3;
2875 | }
2876 | .has-warning .form-control-feedback {
2877 | color: #f0ad4e;
2878 | }
2879 | .has-error .help-block,
2880 | .has-error .control-label,
2881 | .has-error .radio,
2882 | .has-error .checkbox,
2883 | .has-error .radio-inline,
2884 | .has-error .checkbox-inline,
2885 | .has-error.radio label,
2886 | .has-error.checkbox label,
2887 | .has-error.radio-inline label,
2888 | .has-error.checkbox-inline label {
2889 | color: #d9534f;
2890 | }
2891 | .has-error .form-control {
2892 | border-color: #d9534f;
2893 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2894 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
2895 | }
2896 | .has-error .form-control:focus {
2897 | border-color: #c9302c;
2898 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
2899 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #eba5a3;
2900 | }
2901 | .has-error .input-group-addon {
2902 | color: #d9534f;
2903 | border-color: #d9534f;
2904 | background-color: #f2dede;
2905 | }
2906 | .has-error .form-control-feedback {
2907 | color: #d9534f;
2908 | }
2909 | .has-feedback label ~ .form-control-feedback {
2910 | top: 27px;
2911 | }
2912 | .has-feedback label.sr-only ~ .form-control-feedback {
2913 | top: 0;
2914 | }
2915 | .help-block {
2916 | display: block;
2917 | margin-top: 5px;
2918 | margin-bottom: 10px;
2919 | color: #737373;
2920 | }
2921 | @media (min-width: 768px) {
2922 | .form-inline .form-group {
2923 | display: inline-block;
2924 | margin-bottom: 0;
2925 | vertical-align: middle;
2926 | }
2927 | .form-inline .form-control {
2928 | display: inline-block;
2929 | width: auto;
2930 | vertical-align: middle;
2931 | }
2932 | .form-inline .form-control-static {
2933 | display: inline-block;
2934 | }
2935 | .form-inline .input-group {
2936 | display: inline-table;
2937 | vertical-align: middle;
2938 | }
2939 | .form-inline .input-group .input-group-addon,
2940 | .form-inline .input-group .input-group-btn,
2941 | .form-inline .input-group .form-control {
2942 | width: auto;
2943 | }
2944 | .form-inline .input-group > .form-control {
2945 | width: 100%;
2946 | }
2947 | .form-inline .control-label {
2948 | margin-bottom: 0;
2949 | vertical-align: middle;
2950 | }
2951 | .form-inline .radio,
2952 | .form-inline .checkbox {
2953 | display: inline-block;
2954 | margin-top: 0;
2955 | margin-bottom: 0;
2956 | vertical-align: middle;
2957 | }
2958 | .form-inline .radio label,
2959 | .form-inline .checkbox label {
2960 | padding-left: 0;
2961 | }
2962 | .form-inline .radio input[type="radio"],
2963 | .form-inline .checkbox input[type="checkbox"] {
2964 | position: relative;
2965 | margin-left: 0;
2966 | }
2967 | .form-inline .has-feedback .form-control-feedback {
2968 | top: 0;
2969 | }
2970 | }
2971 | .form-horizontal .radio,
2972 | .form-horizontal .checkbox,
2973 | .form-horizontal .radio-inline,
2974 | .form-horizontal .checkbox-inline {
2975 | margin-top: 0;
2976 | margin-bottom: 0;
2977 | padding-top: 9px;
2978 | }
2979 | .form-horizontal .radio,
2980 | .form-horizontal .checkbox {
2981 | min-height: 31px;
2982 | }
2983 | .form-horizontal .form-group {
2984 | margin-left: -15px;
2985 | margin-right: -15px;
2986 | }
2987 | @media (min-width: 768px) {
2988 | .form-horizontal .control-label {
2989 | text-align: right;
2990 | margin-bottom: 0;
2991 | padding-top: 9px;
2992 | }
2993 | }
2994 | .form-horizontal .has-feedback .form-control-feedback {
2995 | right: 15px;
2996 | }
2997 | @media (min-width: 768px) {
2998 | .form-horizontal .form-group-lg .control-label {
2999 | padding-top: 15px;
3000 | font-size: 20px;
3001 | }
3002 | }
3003 | @media (min-width: 768px) {
3004 | .form-horizontal .form-group-sm .control-label {
3005 | padding-top: 6px;
3006 | font-size: 14px;
3007 | }
3008 | }
3009 | .btn {
3010 | display: inline-block;
3011 | margin-bottom: 0;
3012 | font-weight: normal;
3013 | text-align: center;
3014 | vertical-align: middle;
3015 | -ms-touch-action: manipulation;
3016 | touch-action: manipulation;
3017 | cursor: pointer;
3018 | background-image: none;
3019 | border: 1px solid transparent;
3020 | white-space: nowrap;
3021 | padding: 8px 12px;
3022 | font-size: 16px;
3023 | line-height: 1.42857143;
3024 | border-radius: 4px;
3025 | -webkit-user-select: none;
3026 | -moz-user-select: none;
3027 | -ms-user-select: none;
3028 | user-select: none;
3029 | }
3030 | .btn:focus,
3031 | .btn:active:focus,
3032 | .btn.active:focus,
3033 | .btn.focus,
3034 | .btn:active.focus,
3035 | .btn.active.focus {
3036 | outline: thin dotted;
3037 | outline: 5px auto -webkit-focus-ring-color;
3038 | outline-offset: -2px;
3039 | }
3040 | .btn:hover,
3041 | .btn:focus,
3042 | .btn.focus {
3043 | color: #333333;
3044 | text-decoration: none;
3045 | }
3046 | .btn:active,
3047 | .btn.active {
3048 | outline: 0;
3049 | background-image: none;
3050 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3051 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3052 | }
3053 | .btn.disabled,
3054 | .btn[disabled],
3055 | fieldset[disabled] .btn {
3056 | cursor: not-allowed;
3057 | opacity: 0.65;
3058 | filter: alpha(opacity=65);
3059 | -webkit-box-shadow: none;
3060 | box-shadow: none;
3061 | }
3062 | a.btn.disabled,
3063 | fieldset[disabled] a.btn {
3064 | pointer-events: none;
3065 | }
3066 | .btn-default {
3067 | color: #333333;
3068 | background-color: #ffffff;
3069 | border-color: #dddddd;
3070 | }
3071 | .btn-default:focus,
3072 | .btn-default.focus {
3073 | color: #333333;
3074 | background-color: #e6e6e6;
3075 | border-color: #9d9d9d;
3076 | }
3077 | .btn-default:hover {
3078 | color: #333333;
3079 | background-color: #e6e6e6;
3080 | border-color: #bebebe;
3081 | }
3082 | .btn-default:active,
3083 | .btn-default.active,
3084 | .open > .dropdown-toggle.btn-default {
3085 | color: #333333;
3086 | background-color: #e6e6e6;
3087 | border-color: #bebebe;
3088 | }
3089 | .btn-default:active:hover,
3090 | .btn-default.active:hover,
3091 | .open > .dropdown-toggle.btn-default:hover,
3092 | .btn-default:active:focus,
3093 | .btn-default.active:focus,
3094 | .open > .dropdown-toggle.btn-default:focus,
3095 | .btn-default:active.focus,
3096 | .btn-default.active.focus,
3097 | .open > .dropdown-toggle.btn-default.focus {
3098 | color: #333333;
3099 | background-color: #d4d4d4;
3100 | border-color: #9d9d9d;
3101 | }
3102 | .btn-default:active,
3103 | .btn-default.active,
3104 | .open > .dropdown-toggle.btn-default {
3105 | background-image: none;
3106 | }
3107 | .btn-default.disabled:hover,
3108 | .btn-default[disabled]:hover,
3109 | fieldset[disabled] .btn-default:hover,
3110 | .btn-default.disabled:focus,
3111 | .btn-default[disabled]:focus,
3112 | fieldset[disabled] .btn-default:focus,
3113 | .btn-default.disabled.focus,
3114 | .btn-default[disabled].focus,
3115 | fieldset[disabled] .btn-default.focus {
3116 | background-color: #ffffff;
3117 | border-color: #dddddd;
3118 | }
3119 | .btn-default .badge {
3120 | color: #ffffff;
3121 | background-color: #333333;
3122 | }
3123 | .btn-primary {
3124 | color: #ffffff;
3125 | background-color: #4582ec;
3126 | border-color: #4582ec;
3127 | }
3128 | .btn-primary:focus,
3129 | .btn-primary.focus {
3130 | color: #ffffff;
3131 | background-color: #1863e6;
3132 | border-color: #1045a1;
3133 | }
3134 | .btn-primary:hover {
3135 | color: #ffffff;
3136 | background-color: #1863e6;
3137 | border-color: #175fdd;
3138 | }
3139 | .btn-primary:active,
3140 | .btn-primary.active,
3141 | .open > .dropdown-toggle.btn-primary {
3142 | color: #ffffff;
3143 | background-color: #1863e6;
3144 | border-color: #175fdd;
3145 | }
3146 | .btn-primary:active:hover,
3147 | .btn-primary.active:hover,
3148 | .open > .dropdown-toggle.btn-primary:hover,
3149 | .btn-primary:active:focus,
3150 | .btn-primary.active:focus,
3151 | .open > .dropdown-toggle.btn-primary:focus,
3152 | .btn-primary:active.focus,
3153 | .btn-primary.active.focus,
3154 | .open > .dropdown-toggle.btn-primary.focus {
3155 | color: #ffffff;
3156 | background-color: #1455c6;
3157 | border-color: #1045a1;
3158 | }
3159 | .btn-primary:active,
3160 | .btn-primary.active,
3161 | .open > .dropdown-toggle.btn-primary {
3162 | background-image: none;
3163 | }
3164 | .btn-primary.disabled:hover,
3165 | .btn-primary[disabled]:hover,
3166 | fieldset[disabled] .btn-primary:hover,
3167 | .btn-primary.disabled:focus,
3168 | .btn-primary[disabled]:focus,
3169 | fieldset[disabled] .btn-primary:focus,
3170 | .btn-primary.disabled.focus,
3171 | .btn-primary[disabled].focus,
3172 | fieldset[disabled] .btn-primary.focus {
3173 | background-color: #4582ec;
3174 | border-color: #4582ec;
3175 | }
3176 | .btn-primary .badge {
3177 | color: #4582ec;
3178 | background-color: #ffffff;
3179 | }
3180 | .btn-success {
3181 | color: #ffffff;
3182 | background-color: #3fad46;
3183 | border-color: #3fad46;
3184 | }
3185 | .btn-success:focus,
3186 | .btn-success.focus {
3187 | color: #ffffff;
3188 | background-color: #318837;
3189 | border-color: #1d5020;
3190 | }
3191 | .btn-success:hover {
3192 | color: #ffffff;
3193 | background-color: #318837;
3194 | border-color: #2f8034;
3195 | }
3196 | .btn-success:active,
3197 | .btn-success.active,
3198 | .open > .dropdown-toggle.btn-success {
3199 | color: #ffffff;
3200 | background-color: #318837;
3201 | border-color: #2f8034;
3202 | }
3203 | .btn-success:active:hover,
3204 | .btn-success.active:hover,
3205 | .open > .dropdown-toggle.btn-success:hover,
3206 | .btn-success:active:focus,
3207 | .btn-success.active:focus,
3208 | .open > .dropdown-toggle.btn-success:focus,
3209 | .btn-success:active.focus,
3210 | .btn-success.active.focus,
3211 | .open > .dropdown-toggle.btn-success.focus {
3212 | color: #ffffff;
3213 | background-color: #286d2c;
3214 | border-color: #1d5020;
3215 | }
3216 | .btn-success:active,
3217 | .btn-success.active,
3218 | .open > .dropdown-toggle.btn-success {
3219 | background-image: none;
3220 | }
3221 | .btn-success.disabled:hover,
3222 | .btn-success[disabled]:hover,
3223 | fieldset[disabled] .btn-success:hover,
3224 | .btn-success.disabled:focus,
3225 | .btn-success[disabled]:focus,
3226 | fieldset[disabled] .btn-success:focus,
3227 | .btn-success.disabled.focus,
3228 | .btn-success[disabled].focus,
3229 | fieldset[disabled] .btn-success.focus {
3230 | background-color: #3fad46;
3231 | border-color: #3fad46;
3232 | }
3233 | .btn-success .badge {
3234 | color: #3fad46;
3235 | background-color: #ffffff;
3236 | }
3237 | .btn-info {
3238 | color: #ffffff;
3239 | background-color: #5bc0de;
3240 | border-color: #5bc0de;
3241 | }
3242 | .btn-info:focus,
3243 | .btn-info.focus {
3244 | color: #ffffff;
3245 | background-color: #31b0d5;
3246 | border-color: #1f7e9a;
3247 | }
3248 | .btn-info:hover {
3249 | color: #ffffff;
3250 | background-color: #31b0d5;
3251 | border-color: #2aabd2;
3252 | }
3253 | .btn-info:active,
3254 | .btn-info.active,
3255 | .open > .dropdown-toggle.btn-info {
3256 | color: #ffffff;
3257 | background-color: #31b0d5;
3258 | border-color: #2aabd2;
3259 | }
3260 | .btn-info:active:hover,
3261 | .btn-info.active:hover,
3262 | .open > .dropdown-toggle.btn-info:hover,
3263 | .btn-info:active:focus,
3264 | .btn-info.active:focus,
3265 | .open > .dropdown-toggle.btn-info:focus,
3266 | .btn-info:active.focus,
3267 | .btn-info.active.focus,
3268 | .open > .dropdown-toggle.btn-info.focus {
3269 | color: #ffffff;
3270 | background-color: #269abc;
3271 | border-color: #1f7e9a;
3272 | }
3273 | .btn-info:active,
3274 | .btn-info.active,
3275 | .open > .dropdown-toggle.btn-info {
3276 | background-image: none;
3277 | }
3278 | .btn-info.disabled:hover,
3279 | .btn-info[disabled]:hover,
3280 | fieldset[disabled] .btn-info:hover,
3281 | .btn-info.disabled:focus,
3282 | .btn-info[disabled]:focus,
3283 | fieldset[disabled] .btn-info:focus,
3284 | .btn-info.disabled.focus,
3285 | .btn-info[disabled].focus,
3286 | fieldset[disabled] .btn-info.focus {
3287 | background-color: #5bc0de;
3288 | border-color: #5bc0de;
3289 | }
3290 | .btn-info .badge {
3291 | color: #5bc0de;
3292 | background-color: #ffffff;
3293 | }
3294 | .btn-warning {
3295 | color: #ffffff;
3296 | background-color: #f0ad4e;
3297 | border-color: #f0ad4e;
3298 | }
3299 | .btn-warning:focus,
3300 | .btn-warning.focus {
3301 | color: #ffffff;
3302 | background-color: #ec971f;
3303 | border-color: #b06d0f;
3304 | }
3305 | .btn-warning:hover {
3306 | color: #ffffff;
3307 | background-color: #ec971f;
3308 | border-color: #eb9316;
3309 | }
3310 | .btn-warning:active,
3311 | .btn-warning.active,
3312 | .open > .dropdown-toggle.btn-warning {
3313 | color: #ffffff;
3314 | background-color: #ec971f;
3315 | border-color: #eb9316;
3316 | }
3317 | .btn-warning:active:hover,
3318 | .btn-warning.active:hover,
3319 | .open > .dropdown-toggle.btn-warning:hover,
3320 | .btn-warning:active:focus,
3321 | .btn-warning.active:focus,
3322 | .open > .dropdown-toggle.btn-warning:focus,
3323 | .btn-warning:active.focus,
3324 | .btn-warning.active.focus,
3325 | .open > .dropdown-toggle.btn-warning.focus {
3326 | color: #ffffff;
3327 | background-color: #d58512;
3328 | border-color: #b06d0f;
3329 | }
3330 | .btn-warning:active,
3331 | .btn-warning.active,
3332 | .open > .dropdown-toggle.btn-warning {
3333 | background-image: none;
3334 | }
3335 | .btn-warning.disabled:hover,
3336 | .btn-warning[disabled]:hover,
3337 | fieldset[disabled] .btn-warning:hover,
3338 | .btn-warning.disabled:focus,
3339 | .btn-warning[disabled]:focus,
3340 | fieldset[disabled] .btn-warning:focus,
3341 | .btn-warning.disabled.focus,
3342 | .btn-warning[disabled].focus,
3343 | fieldset[disabled] .btn-warning.focus {
3344 | background-color: #f0ad4e;
3345 | border-color: #f0ad4e;
3346 | }
3347 | .btn-warning .badge {
3348 | color: #f0ad4e;
3349 | background-color: #ffffff;
3350 | }
3351 | .btn-danger {
3352 | color: #ffffff;
3353 | background-color: #d9534f;
3354 | border-color: #d9534f;
3355 | }
3356 | .btn-danger:focus,
3357 | .btn-danger.focus {
3358 | color: #ffffff;
3359 | background-color: #c9302c;
3360 | border-color: #8b211e;
3361 | }
3362 | .btn-danger:hover {
3363 | color: #ffffff;
3364 | background-color: #c9302c;
3365 | border-color: #c12e2a;
3366 | }
3367 | .btn-danger:active,
3368 | .btn-danger.active,
3369 | .open > .dropdown-toggle.btn-danger {
3370 | color: #ffffff;
3371 | background-color: #c9302c;
3372 | border-color: #c12e2a;
3373 | }
3374 | .btn-danger:active:hover,
3375 | .btn-danger.active:hover,
3376 | .open > .dropdown-toggle.btn-danger:hover,
3377 | .btn-danger:active:focus,
3378 | .btn-danger.active:focus,
3379 | .open > .dropdown-toggle.btn-danger:focus,
3380 | .btn-danger:active.focus,
3381 | .btn-danger.active.focus,
3382 | .open > .dropdown-toggle.btn-danger.focus {
3383 | color: #ffffff;
3384 | background-color: #ac2925;
3385 | border-color: #8b211e;
3386 | }
3387 | .btn-danger:active,
3388 | .btn-danger.active,
3389 | .open > .dropdown-toggle.btn-danger {
3390 | background-image: none;
3391 | }
3392 | .btn-danger.disabled:hover,
3393 | .btn-danger[disabled]:hover,
3394 | fieldset[disabled] .btn-danger:hover,
3395 | .btn-danger.disabled:focus,
3396 | .btn-danger[disabled]:focus,
3397 | fieldset[disabled] .btn-danger:focus,
3398 | .btn-danger.disabled.focus,
3399 | .btn-danger[disabled].focus,
3400 | fieldset[disabled] .btn-danger.focus {
3401 | background-color: #d9534f;
3402 | border-color: #d9534f;
3403 | }
3404 | .btn-danger .badge {
3405 | color: #d9534f;
3406 | background-color: #ffffff;
3407 | }
3408 | .btn-link {
3409 | color: #4582ec;
3410 | font-weight: normal;
3411 | border-radius: 0;
3412 | }
3413 | .btn-link,
3414 | .btn-link:active,
3415 | .btn-link.active,
3416 | .btn-link[disabled],
3417 | fieldset[disabled] .btn-link {
3418 | background-color: transparent;
3419 | -webkit-box-shadow: none;
3420 | box-shadow: none;
3421 | }
3422 | .btn-link,
3423 | .btn-link:hover,
3424 | .btn-link:focus,
3425 | .btn-link:active {
3426 | border-color: transparent;
3427 | }
3428 | .btn-link:hover,
3429 | .btn-link:focus {
3430 | color: #134fb8;
3431 | text-decoration: underline;
3432 | background-color: transparent;
3433 | }
3434 | .btn-link[disabled]:hover,
3435 | fieldset[disabled] .btn-link:hover,
3436 | .btn-link[disabled]:focus,
3437 | fieldset[disabled] .btn-link:focus {
3438 | color: #b3b3b3;
3439 | text-decoration: none;
3440 | }
3441 | .btn-lg,
3442 | .btn-group-lg > .btn {
3443 | padding: 14px 16px;
3444 | font-size: 20px;
3445 | line-height: 1.3333333;
3446 | border-radius: 6px;
3447 | }
3448 | .btn-sm,
3449 | .btn-group-sm > .btn {
3450 | padding: 5px 10px;
3451 | font-size: 14px;
3452 | line-height: 1.5;
3453 | border-radius: 3px;
3454 | }
3455 | .btn-xs,
3456 | .btn-group-xs > .btn {
3457 | padding: 1px 5px;
3458 | font-size: 14px;
3459 | line-height: 1.5;
3460 | border-radius: 3px;
3461 | }
3462 | .btn-block {
3463 | display: block;
3464 | width: 100%;
3465 | }
3466 | .btn-block + .btn-block {
3467 | margin-top: 5px;
3468 | }
3469 | input[type="submit"].btn-block,
3470 | input[type="reset"].btn-block,
3471 | input[type="button"].btn-block {
3472 | width: 100%;
3473 | }
3474 | .fade {
3475 | opacity: 0;
3476 | -webkit-transition: opacity 0.15s linear;
3477 | -o-transition: opacity 0.15s linear;
3478 | transition: opacity 0.15s linear;
3479 | }
3480 | .fade.in {
3481 | opacity: 1;
3482 | }
3483 | .collapse {
3484 | display: none;
3485 | }
3486 | .collapse.in {
3487 | display: block;
3488 | }
3489 | tr.collapse.in {
3490 | display: table-row;
3491 | }
3492 | tbody.collapse.in {
3493 | display: table-row-group;
3494 | }
3495 | .collapsing {
3496 | position: relative;
3497 | height: 0;
3498 | overflow: hidden;
3499 | -webkit-transition-property: height, visibility;
3500 | -o-transition-property: height, visibility;
3501 | transition-property: height, visibility;
3502 | -webkit-transition-duration: 0.35s;
3503 | -o-transition-duration: 0.35s;
3504 | transition-duration: 0.35s;
3505 | -webkit-transition-timing-function: ease;
3506 | -o-transition-timing-function: ease;
3507 | transition-timing-function: ease;
3508 | }
3509 | .caret {
3510 | display: inline-block;
3511 | width: 0;
3512 | height: 0;
3513 | margin-left: 2px;
3514 | vertical-align: middle;
3515 | border-top: 4px dashed;
3516 | border-top: 4px solid \9;
3517 | border-right: 4px solid transparent;
3518 | border-left: 4px solid transparent;
3519 | }
3520 | .dropup,
3521 | .dropdown {
3522 | position: relative;
3523 | }
3524 | .dropdown-toggle:focus {
3525 | outline: 0;
3526 | }
3527 | .dropdown-menu {
3528 | position: absolute;
3529 | top: 100%;
3530 | left: 0;
3531 | z-index: 1000;
3532 | display: none;
3533 | float: left;
3534 | min-width: 160px;
3535 | padding: 5px 0;
3536 | margin: 2px 0 0;
3537 | list-style: none;
3538 | font-size: 16px;
3539 | text-align: left;
3540 | background-color: #ffffff;
3541 | border: 1px solid #cccccc;
3542 | border: 1px solid rgba(0, 0, 0, 0.15);
3543 | border-radius: 4px;
3544 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3545 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3546 | -webkit-background-clip: padding-box;
3547 | background-clip: padding-box;
3548 | }
3549 | .dropdown-menu.pull-right {
3550 | right: 0;
3551 | left: auto;
3552 | }
3553 | .dropdown-menu .divider {
3554 | height: 1px;
3555 | margin: 10px 0;
3556 | overflow: hidden;
3557 | background-color: #e5e5e5;
3558 | }
3559 | .dropdown-menu > li > a {
3560 | display: block;
3561 | padding: 3px 20px;
3562 | clear: both;
3563 | font-weight: normal;
3564 | line-height: 1.42857143;
3565 | color: #333333;
3566 | white-space: nowrap;
3567 | }
3568 | .dropdown-menu > li > a:hover,
3569 | .dropdown-menu > li > a:focus {
3570 | text-decoration: none;
3571 | color: #ffffff;
3572 | background-color: #4582ec;
3573 | }
3574 | .dropdown-menu > .active > a,
3575 | .dropdown-menu > .active > a:hover,
3576 | .dropdown-menu > .active > a:focus {
3577 | color: #ffffff;
3578 | text-decoration: none;
3579 | outline: 0;
3580 | background-color: #4582ec;
3581 | }
3582 | .dropdown-menu > .disabled > a,
3583 | .dropdown-menu > .disabled > a:hover,
3584 | .dropdown-menu > .disabled > a:focus {
3585 | color: #b3b3b3;
3586 | }
3587 | .dropdown-menu > .disabled > a:hover,
3588 | .dropdown-menu > .disabled > a:focus {
3589 | text-decoration: none;
3590 | background-color: transparent;
3591 | background-image: none;
3592 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3593 | cursor: not-allowed;
3594 | }
3595 | .open > .dropdown-menu {
3596 | display: block;
3597 | }
3598 | .open > a {
3599 | outline: 0;
3600 | }
3601 | .dropdown-menu-right {
3602 | left: auto;
3603 | right: 0;
3604 | }
3605 | .dropdown-menu-left {
3606 | left: 0;
3607 | right: auto;
3608 | }
3609 | .dropdown-header {
3610 | display: block;
3611 | padding: 3px 20px;
3612 | font-size: 14px;
3613 | line-height: 1.42857143;
3614 | color: #b3b3b3;
3615 | white-space: nowrap;
3616 | }
3617 | .dropdown-backdrop {
3618 | position: fixed;
3619 | left: 0;
3620 | right: 0;
3621 | bottom: 0;
3622 | top: 0;
3623 | z-index: 990;
3624 | }
3625 | .pull-right > .dropdown-menu {
3626 | right: 0;
3627 | left: auto;
3628 | }
3629 | .dropup .caret,
3630 | .navbar-fixed-bottom .dropdown .caret {
3631 | border-top: 0;
3632 | border-bottom: 4px dashed;
3633 | border-bottom: 4px solid \9;
3634 | content: "";
3635 | }
3636 | .dropup .dropdown-menu,
3637 | .navbar-fixed-bottom .dropdown .dropdown-menu {
3638 | top: auto;
3639 | bottom: 100%;
3640 | margin-bottom: 2px;
3641 | }
3642 | @media (min-width: 768px) {
3643 | .navbar-right .dropdown-menu {
3644 | left: auto;
3645 | right: 0;
3646 | }
3647 | .navbar-right .dropdown-menu-left {
3648 | left: 0;
3649 | right: auto;
3650 | }
3651 | }
3652 | .btn-group,
3653 | .btn-group-vertical {
3654 | position: relative;
3655 | display: inline-block;
3656 | vertical-align: middle;
3657 | }
3658 | .btn-group > .btn,
3659 | .btn-group-vertical > .btn {
3660 | position: relative;
3661 | float: left;
3662 | }
3663 | .btn-group > .btn:hover,
3664 | .btn-group-vertical > .btn:hover,
3665 | .btn-group > .btn:focus,
3666 | .btn-group-vertical > .btn:focus,
3667 | .btn-group > .btn:active,
3668 | .btn-group-vertical > .btn:active,
3669 | .btn-group > .btn.active,
3670 | .btn-group-vertical > .btn.active {
3671 | z-index: 2;
3672 | }
3673 | .btn-group .btn + .btn,
3674 | .btn-group .btn + .btn-group,
3675 | .btn-group .btn-group + .btn,
3676 | .btn-group .btn-group + .btn-group {
3677 | margin-left: -1px;
3678 | }
3679 | .btn-toolbar {
3680 | margin-left: -5px;
3681 | }
3682 | .btn-toolbar .btn,
3683 | .btn-toolbar .btn-group,
3684 | .btn-toolbar .input-group {
3685 | float: left;
3686 | }
3687 | .btn-toolbar > .btn,
3688 | .btn-toolbar > .btn-group,
3689 | .btn-toolbar > .input-group {
3690 | margin-left: 5px;
3691 | }
3692 | .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3693 | border-radius: 0;
3694 | }
3695 | .btn-group > .btn:first-child {
3696 | margin-left: 0;
3697 | }
3698 | .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3699 | border-bottom-right-radius: 0;
3700 | border-top-right-radius: 0;
3701 | }
3702 | .btn-group > .btn:last-child:not(:first-child),
3703 | .btn-group > .dropdown-toggle:not(:first-child) {
3704 | border-bottom-left-radius: 0;
3705 | border-top-left-radius: 0;
3706 | }
3707 | .btn-group > .btn-group {
3708 | float: left;
3709 | }
3710 | .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3711 | border-radius: 0;
3712 | }
3713 | .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3714 | .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3715 | border-bottom-right-radius: 0;
3716 | border-top-right-radius: 0;
3717 | }
3718 | .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3719 | border-bottom-left-radius: 0;
3720 | border-top-left-radius: 0;
3721 | }
3722 | .btn-group .dropdown-toggle:active,
3723 | .btn-group.open .dropdown-toggle {
3724 | outline: 0;
3725 | }
3726 | .btn-group > .btn + .dropdown-toggle {
3727 | padding-left: 8px;
3728 | padding-right: 8px;
3729 | }
3730 | .btn-group > .btn-lg + .dropdown-toggle {
3731 | padding-left: 12px;
3732 | padding-right: 12px;
3733 | }
3734 | .btn-group.open .dropdown-toggle {
3735 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3736 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3737 | }
3738 | .btn-group.open .dropdown-toggle.btn-link {
3739 | -webkit-box-shadow: none;
3740 | box-shadow: none;
3741 | }
3742 | .btn .caret {
3743 | margin-left: 0;
3744 | }
3745 | .btn-lg .caret {
3746 | border-width: 5px 5px 0;
3747 | border-bottom-width: 0;
3748 | }
3749 | .dropup .btn-lg .caret {
3750 | border-width: 0 5px 5px;
3751 | }
3752 | .btn-group-vertical > .btn,
3753 | .btn-group-vertical > .btn-group,
3754 | .btn-group-vertical > .btn-group > .btn {
3755 | display: block;
3756 | float: none;
3757 | width: 100%;
3758 | max-width: 100%;
3759 | }
3760 | .btn-group-vertical > .btn-group > .btn {
3761 | float: none;
3762 | }
3763 | .btn-group-vertical > .btn + .btn,
3764 | .btn-group-vertical > .btn + .btn-group,
3765 | .btn-group-vertical > .btn-group + .btn,
3766 | .btn-group-vertical > .btn-group + .btn-group {
3767 | margin-top: -1px;
3768 | margin-left: 0;
3769 | }
3770 | .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3771 | border-radius: 0;
3772 | }
3773 | .btn-group-vertical > .btn:first-child:not(:last-child) {
3774 | border-top-right-radius: 4px;
3775 | border-top-left-radius: 4px;
3776 | border-bottom-right-radius: 0;
3777 | border-bottom-left-radius: 0;
3778 | }
3779 | .btn-group-vertical > .btn:last-child:not(:first-child) {
3780 | border-top-right-radius: 0;
3781 | border-top-left-radius: 0;
3782 | border-bottom-right-radius: 4px;
3783 | border-bottom-left-radius: 4px;
3784 | }
3785 | .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3786 | border-radius: 0;
3787 | }
3788 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3789 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3790 | border-bottom-right-radius: 0;
3791 | border-bottom-left-radius: 0;
3792 | }
3793 | .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3794 | border-top-right-radius: 0;
3795 | border-top-left-radius: 0;
3796 | }
3797 | .btn-group-justified {
3798 | display: table;
3799 | width: 100%;
3800 | table-layout: fixed;
3801 | border-collapse: separate;
3802 | }
3803 | .btn-group-justified > .btn,
3804 | .btn-group-justified > .btn-group {
3805 | float: none;
3806 | display: table-cell;
3807 | width: 1%;
3808 | }
3809 | .btn-group-justified > .btn-group .btn {
3810 | width: 100%;
3811 | }
3812 | .btn-group-justified > .btn-group .dropdown-menu {
3813 | left: auto;
3814 | }
3815 | [data-toggle="buttons"] > .btn input[type="radio"],
3816 | [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3817 | [data-toggle="buttons"] > .btn input[type="checkbox"],
3818 | [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3819 | position: absolute;
3820 | clip: rect(0, 0, 0, 0);
3821 | pointer-events: none;
3822 | }
3823 | .input-group {
3824 | position: relative;
3825 | display: table;
3826 | border-collapse: separate;
3827 | }
3828 | .input-group[class*="col-"] {
3829 | float: none;
3830 | padding-left: 0;
3831 | padding-right: 0;
3832 | }
3833 | .input-group .form-control {
3834 | position: relative;
3835 | z-index: 2;
3836 | float: left;
3837 | width: 100%;
3838 | margin-bottom: 0;
3839 | }
3840 | .input-group .form-control:focus {
3841 | z-index: 3;
3842 | }
3843 | .input-group-lg > .form-control,
3844 | .input-group-lg > .input-group-addon,
3845 | .input-group-lg > .input-group-btn > .btn {
3846 | height: 57px;
3847 | padding: 14px 16px;
3848 | font-size: 20px;
3849 | line-height: 1.3333333;
3850 | border-radius: 6px;
3851 | }
3852 | select.input-group-lg > .form-control,
3853 | select.input-group-lg > .input-group-addon,
3854 | select.input-group-lg > .input-group-btn > .btn {
3855 | height: 57px;
3856 | line-height: 57px;
3857 | }
3858 | textarea.input-group-lg > .form-control,
3859 | textarea.input-group-lg > .input-group-addon,
3860 | textarea.input-group-lg > .input-group-btn > .btn,
3861 | select[multiple].input-group-lg > .form-control,
3862 | select[multiple].input-group-lg > .input-group-addon,
3863 | select[multiple].input-group-lg > .input-group-btn > .btn {
3864 | height: auto;
3865 | }
3866 | .input-group-sm > .form-control,
3867 | .input-group-sm > .input-group-addon,
3868 | .input-group-sm > .input-group-btn > .btn {
3869 | height: 33px;
3870 | padding: 5px 10px;
3871 | font-size: 14px;
3872 | line-height: 1.5;
3873 | border-radius: 3px;
3874 | }
3875 | select.input-group-sm > .form-control,
3876 | select.input-group-sm > .input-group-addon,
3877 | select.input-group-sm > .input-group-btn > .btn {
3878 | height: 33px;
3879 | line-height: 33px;
3880 | }
3881 | textarea.input-group-sm > .form-control,
3882 | textarea.input-group-sm > .input-group-addon,
3883 | textarea.input-group-sm > .input-group-btn > .btn,
3884 | select[multiple].input-group-sm > .form-control,
3885 | select[multiple].input-group-sm > .input-group-addon,
3886 | select[multiple].input-group-sm > .input-group-btn > .btn {
3887 | height: auto;
3888 | }
3889 | .input-group-addon,
3890 | .input-group-btn,
3891 | .input-group .form-control {
3892 | display: table-cell;
3893 | }
3894 | .input-group-addon:not(:first-child):not(:last-child),
3895 | .input-group-btn:not(:first-child):not(:last-child),
3896 | .input-group .form-control:not(:first-child):not(:last-child) {
3897 | border-radius: 0;
3898 | }
3899 | .input-group-addon,
3900 | .input-group-btn {
3901 | width: 1%;
3902 | white-space: nowrap;
3903 | vertical-align: middle;
3904 | }
3905 | .input-group-addon {
3906 | padding: 8px 12px;
3907 | font-size: 16px;
3908 | font-weight: normal;
3909 | line-height: 1;
3910 | color: #333333;
3911 | text-align: center;
3912 | background-color: #eeeeee;
3913 | border: 1px solid #dddddd;
3914 | border-radius: 4px;
3915 | }
3916 | .input-group-addon.input-sm {
3917 | padding: 5px 10px;
3918 | font-size: 14px;
3919 | border-radius: 3px;
3920 | }
3921 | .input-group-addon.input-lg {
3922 | padding: 14px 16px;
3923 | font-size: 20px;
3924 | border-radius: 6px;
3925 | }
3926 | .input-group-addon input[type="radio"],
3927 | .input-group-addon input[type="checkbox"] {
3928 | margin-top: 0;
3929 | }
3930 | .input-group .form-control:first-child,
3931 | .input-group-addon:first-child,
3932 | .input-group-btn:first-child > .btn,
3933 | .input-group-btn:first-child > .btn-group > .btn,
3934 | .input-group-btn:first-child > .dropdown-toggle,
3935 | .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3936 | .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3937 | border-bottom-right-radius: 0;
3938 | border-top-right-radius: 0;
3939 | }
3940 | .input-group-addon:first-child {
3941 | border-right: 0;
3942 | }
3943 | .input-group .form-control:last-child,
3944 | .input-group-addon:last-child,
3945 | .input-group-btn:last-child > .btn,
3946 | .input-group-btn:last-child > .btn-group > .btn,
3947 | .input-group-btn:last-child > .dropdown-toggle,
3948 | .input-group-btn:first-child > .btn:not(:first-child),
3949 | .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3950 | border-bottom-left-radius: 0;
3951 | border-top-left-radius: 0;
3952 | }
3953 | .input-group-addon:last-child {
3954 | border-left: 0;
3955 | }
3956 | .input-group-btn {
3957 | position: relative;
3958 | font-size: 0;
3959 | white-space: nowrap;
3960 | }
3961 | .input-group-btn > .btn {
3962 | position: relative;
3963 | }
3964 | .input-group-btn > .btn + .btn {
3965 | margin-left: -1px;
3966 | }
3967 | .input-group-btn > .btn:hover,
3968 | .input-group-btn > .btn:focus,
3969 | .input-group-btn > .btn:active {
3970 | z-index: 2;
3971 | }
3972 | .input-group-btn:first-child > .btn,
3973 | .input-group-btn:first-child > .btn-group {
3974 | margin-right: -1px;
3975 | }
3976 | .input-group-btn:last-child > .btn,
3977 | .input-group-btn:last-child > .btn-group {
3978 | z-index: 2;
3979 | margin-left: -1px;
3980 | }
3981 | .nav {
3982 | margin-bottom: 0;
3983 | padding-left: 0;
3984 | list-style: none;
3985 | }
3986 | .nav > li {
3987 | position: relative;
3988 | display: block;
3989 | }
3990 | .nav > li > a {
3991 | position: relative;
3992 | display: block;
3993 | padding: 10px 15px;
3994 | }
3995 | .nav > li > a:hover,
3996 | .nav > li > a:focus {
3997 | text-decoration: none;
3998 | background-color: #eeeeee;
3999 | }
4000 | .nav > li.disabled > a {
4001 | color: #b3b3b3;
4002 | }
4003 | .nav > li.disabled > a:hover,
4004 | .nav > li.disabled > a:focus {
4005 | color: #b3b3b3;
4006 | text-decoration: none;
4007 | background-color: transparent;
4008 | cursor: not-allowed;
4009 | }
4010 | .nav .open > a,
4011 | .nav .open > a:hover,
4012 | .nav .open > a:focus {
4013 | background-color: #eeeeee;
4014 | border-color: #4582ec;
4015 | }
4016 | .nav .nav-divider {
4017 | height: 1px;
4018 | margin: 10px 0;
4019 | overflow: hidden;
4020 | background-color: #e5e5e5;
4021 | }
4022 | .nav > li > a > img {
4023 | max-width: none;
4024 | }
4025 | .nav-tabs {
4026 | border-bottom: 1px solid #dddddd;
4027 | }
4028 | .nav-tabs > li {
4029 | float: left;
4030 | margin-bottom: -1px;
4031 | }
4032 | .nav-tabs > li > a {
4033 | margin-right: 2px;
4034 | line-height: 1.42857143;
4035 | border: 1px solid transparent;
4036 | border-radius: 4px 4px 0 0;
4037 | }
4038 | .nav-tabs > li > a:hover {
4039 | border-color: #eeeeee #eeeeee #dddddd;
4040 | }
4041 | .nav-tabs > li.active > a,
4042 | .nav-tabs > li.active > a:hover,
4043 | .nav-tabs > li.active > a:focus {
4044 | color: #555555;
4045 | background-color: #ffffff;
4046 | border: 1px solid #dddddd;
4047 | border-bottom-color: transparent;
4048 | cursor: default;
4049 | }
4050 | .nav-tabs.nav-justified {
4051 | width: 100%;
4052 | border-bottom: 0;
4053 | }
4054 | .nav-tabs.nav-justified > li {
4055 | float: none;
4056 | }
4057 | .nav-tabs.nav-justified > li > a {
4058 | text-align: center;
4059 | margin-bottom: 5px;
4060 | }
4061 | .nav-tabs.nav-justified > .dropdown .dropdown-menu {
4062 | top: auto;
4063 | left: auto;
4064 | }
4065 | @media (min-width: 768px) {
4066 | .nav-tabs.nav-justified > li {
4067 | display: table-cell;
4068 | width: 1%;
4069 | }
4070 | .nav-tabs.nav-justified > li > a {
4071 | margin-bottom: 0;
4072 | }
4073 | }
4074 | .nav-tabs.nav-justified > li > a {
4075 | margin-right: 0;
4076 | border-radius: 4px;
4077 | }
4078 | .nav-tabs.nav-justified > .active > a,
4079 | .nav-tabs.nav-justified > .active > a:hover,
4080 | .nav-tabs.nav-justified > .active > a:focus {
4081 | border: 1px solid #dddddd;
4082 | }
4083 | @media (min-width: 768px) {
4084 | .nav-tabs.nav-justified > li > a {
4085 | border-bottom: 1px solid #dddddd;
4086 | border-radius: 4px 4px 0 0;
4087 | }
4088 | .nav-tabs.nav-justified > .active > a,
4089 | .nav-tabs.nav-justified > .active > a:hover,
4090 | .nav-tabs.nav-justified > .active > a:focus {
4091 | border-bottom-color: #ffffff;
4092 | }
4093 | }
4094 | .nav-pills > li {
4095 | float: left;
4096 | }
4097 | .nav-pills > li > a {
4098 | border-radius: 4px;
4099 | }
4100 | .nav-pills > li + li {
4101 | margin-left: 2px;
4102 | }
4103 | .nav-pills > li.active > a,
4104 | .nav-pills > li.active > a:hover,
4105 | .nav-pills > li.active > a:focus {
4106 | color: #ffffff;
4107 | background-color: #4582ec;
4108 | }
4109 | .nav-stacked > li {
4110 | float: none;
4111 | }
4112 | .nav-stacked > li + li {
4113 | margin-top: 2px;
4114 | margin-left: 0;
4115 | }
4116 | .nav-justified {
4117 | width: 100%;
4118 | }
4119 | .nav-justified > li {
4120 | float: none;
4121 | }
4122 | .nav-justified > li > a {
4123 | text-align: center;
4124 | margin-bottom: 5px;
4125 | }
4126 | .nav-justified > .dropdown .dropdown-menu {
4127 | top: auto;
4128 | left: auto;
4129 | }
4130 | @media (min-width: 768px) {
4131 | .nav-justified > li {
4132 | display: table-cell;
4133 | width: 1%;
4134 | }
4135 | .nav-justified > li > a {
4136 | margin-bottom: 0;
4137 | }
4138 | }
4139 | .nav-tabs-justified {
4140 | border-bottom: 0;
4141 | }
4142 | .nav-tabs-justified > li > a {
4143 | margin-right: 0;
4144 | border-radius: 4px;
4145 | }
4146 | .nav-tabs-justified > .active > a,
4147 | .nav-tabs-justified > .active > a:hover,
4148 | .nav-tabs-justified > .active > a:focus {
4149 | border: 1px solid #dddddd;
4150 | }
4151 | @media (min-width: 768px) {
4152 | .nav-tabs-justified > li > a {
4153 | border-bottom: 1px solid #dddddd;
4154 | border-radius: 4px 4px 0 0;
4155 | }
4156 | .nav-tabs-justified > .active > a,
4157 | .nav-tabs-justified > .active > a:hover,
4158 | .nav-tabs-justified > .active > a:focus {
4159 | border-bottom-color: #ffffff;
4160 | }
4161 | }
4162 | .tab-content > .tab-pane {
4163 | display: none;
4164 | }
4165 | .tab-content > .active {
4166 | display: block;
4167 | }
4168 | .nav-tabs .dropdown-menu {
4169 | margin-top: -1px;
4170 | border-top-right-radius: 0;
4171 | border-top-left-radius: 0;
4172 | }
4173 | .navbar {
4174 | position: relative;
4175 | min-height: 65px;
4176 | margin-bottom: 22px;
4177 | border: 1px solid transparent;
4178 | }
4179 | @media (min-width: 768px) {
4180 | .navbar {
4181 | border-radius: 4px;
4182 | }
4183 | }
4184 | @media (min-width: 768px) {
4185 | .navbar-header {
4186 | float: left;
4187 | }
4188 | }
4189 | .navbar-collapse {
4190 | overflow-x: visible;
4191 | padding-right: 15px;
4192 | padding-left: 15px;
4193 | border-top: 1px solid transparent;
4194 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
4195 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
4196 | -webkit-overflow-scrolling: touch;
4197 | }
4198 | .navbar-collapse.in {
4199 | overflow-y: auto;
4200 | }
4201 | @media (min-width: 768px) {
4202 | .navbar-collapse {
4203 | width: auto;
4204 | border-top: 0;
4205 | -webkit-box-shadow: none;
4206 | box-shadow: none;
4207 | }
4208 | .navbar-collapse.collapse {
4209 | display: block !important;
4210 | height: auto !important;
4211 | padding-bottom: 0;
4212 | overflow: visible !important;
4213 | }
4214 | .navbar-collapse.in {
4215 | overflow-y: visible;
4216 | }
4217 | .navbar-fixed-top .navbar-collapse,
4218 | .navbar-static-top .navbar-collapse,
4219 | .navbar-fixed-bottom .navbar-collapse {
4220 | padding-left: 0;
4221 | padding-right: 0;
4222 | }
4223 | }
4224 | .navbar-fixed-top .navbar-collapse,
4225 | .navbar-fixed-bottom .navbar-collapse {
4226 | max-height: 340px;
4227 | }
4228 | @media (max-device-width: 480px) and (orientation: landscape) {
4229 | .navbar-fixed-top .navbar-collapse,
4230 | .navbar-fixed-bottom .navbar-collapse {
4231 | max-height: 200px;
4232 | }
4233 | }
4234 | .container > .navbar-header,
4235 | .container-fluid > .navbar-header,
4236 | .container > .navbar-collapse,
4237 | .container-fluid > .navbar-collapse {
4238 | margin-right: -15px;
4239 | margin-left: -15px;
4240 | }
4241 | @media (min-width: 768px) {
4242 | .container > .navbar-header,
4243 | .container-fluid > .navbar-header,
4244 | .container > .navbar-collapse,
4245 | .container-fluid > .navbar-collapse {
4246 | margin-right: 0;
4247 | margin-left: 0;
4248 | }
4249 | }
4250 | .navbar-static-top {
4251 | z-index: 1000;
4252 | border-width: 0 0 1px;
4253 | }
4254 | @media (min-width: 768px) {
4255 | .navbar-static-top {
4256 | border-radius: 0;
4257 | }
4258 | }
4259 | .navbar-fixed-top,
4260 | .navbar-fixed-bottom {
4261 | position: fixed;
4262 | right: 0;
4263 | left: 0;
4264 | z-index: 1030;
4265 | }
4266 | @media (min-width: 768px) {
4267 | .navbar-fixed-top,
4268 | .navbar-fixed-bottom {
4269 | border-radius: 0;
4270 | }
4271 | }
4272 | .navbar-fixed-top {
4273 | top: 0;
4274 | border-width: 0 0 1px;
4275 | }
4276 | .navbar-fixed-bottom {
4277 | bottom: 0;
4278 | margin-bottom: 0;
4279 | border-width: 1px 0 0;
4280 | }
4281 | .navbar-brand {
4282 |
4283 | }
4284 | .navbar-brand:hover,
4285 | .navbar-brand:focus {
4286 | text-decoration: none;
4287 | }
4288 | .navbar-brand > img {
4289 | display: block;
4290 | }
4291 | @media (min-width: 768px) {
4292 | .navbar > .container .navbar-brand,
4293 | .navbar > .container-fluid .navbar-brand {
4294 | margin-left: -15px;
4295 | }
4296 | }
4297 | .navbar-toggle {
4298 | position: relative;
4299 | float: right;
4300 | margin-right: 15px;
4301 | padding: 9px 10px;
4302 | margin-top: 15.5px;
4303 | margin-bottom: 15.5px;
4304 | background-color: transparent;
4305 | background-image: none;
4306 | border: 1px solid transparent;
4307 | border-radius: 4px;
4308 | }
4309 | .navbar-toggle:focus {
4310 | outline: 0;
4311 | }
4312 | .navbar-toggle .icon-bar {
4313 | display: block;
4314 | width: 22px;
4315 | height: 2px;
4316 | border-radius: 1px;
4317 | }
4318 | .navbar-toggle .icon-bar + .icon-bar {
4319 | margin-top: 4px;
4320 | }
4321 | @media (min-width: 768px) {
4322 | .navbar-toggle {
4323 | display: none;
4324 | }
4325 | }
4326 | .navbar-nav {
4327 | margin: 10.75px -15px;
4328 | }
4329 | .navbar-nav > li > a {
4330 | padding-top: 10px;
4331 | padding-bottom: 10px;
4332 | line-height: 22px;
4333 | }
4334 | @media (max-width: 767px) {
4335 | .navbar-nav .open .dropdown-menu {
4336 | position: static;
4337 | float: none;
4338 | width: auto;
4339 | margin-top: 0;
4340 | background-color: transparent;
4341 | border: 0;
4342 | -webkit-box-shadow: none;
4343 | box-shadow: none;
4344 | }
4345 | .navbar-nav .open .dropdown-menu > li > a,
4346 | .navbar-nav .open .dropdown-menu .dropdown-header {
4347 | padding: 5px 15px 5px 25px;
4348 | }
4349 | .navbar-nav .open .dropdown-menu > li > a {
4350 | line-height: 22px;
4351 | }
4352 | .navbar-nav .open .dropdown-menu > li > a:hover,
4353 | .navbar-nav .open .dropdown-menu > li > a:focus {
4354 | background-image: none;
4355 | }
4356 | }
4357 | @media (min-width: 768px) {
4358 | .navbar-nav {
4359 | float: left;
4360 | margin: 0;
4361 | }
4362 | .navbar-nav > li {
4363 | float: left;
4364 | }
4365 | .navbar-nav > li > a {
4366 | padding-top: 21.5px;
4367 | padding-bottom: 21.5px;
4368 | }
4369 | }
4370 | .navbar-form {
4371 | margin-left: -15px;
4372 | margin-right: -15px;
4373 | padding: 10px 15px;
4374 | border-top: 1px solid transparent;
4375 | border-bottom: 1px solid transparent;
4376 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
4377 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
4378 | margin-top: 12.5px;
4379 | margin-bottom: 12.5px;
4380 | }
4381 | @media (min-width: 768px) {
4382 | .navbar-form .form-group {
4383 | display: inline-block;
4384 | margin-bottom: 0;
4385 | vertical-align: middle;
4386 | }
4387 | .navbar-form .form-control {
4388 | display: inline-block;
4389 | width: auto;
4390 | vertical-align: middle;
4391 | }
4392 | .navbar-form .form-control-static {
4393 | display: inline-block;
4394 | }
4395 | .navbar-form .input-group {
4396 | display: inline-table;
4397 | vertical-align: middle;
4398 | }
4399 | .navbar-form .input-group .input-group-addon,
4400 | .navbar-form .input-group .input-group-btn,
4401 | .navbar-form .input-group .form-control {
4402 | width: auto;
4403 | }
4404 | .navbar-form .input-group > .form-control {
4405 | width: 100%;
4406 | }
4407 | .navbar-form .control-label {
4408 | margin-bottom: 0;
4409 | vertical-align: middle;
4410 | }
4411 | .navbar-form .radio,
4412 | .navbar-form .checkbox {
4413 | display: inline-block;
4414 | margin-top: 0;
4415 | margin-bottom: 0;
4416 | vertical-align: middle;
4417 | }
4418 | .navbar-form .radio label,
4419 | .navbar-form .checkbox label {
4420 | padding-left: 0;
4421 | }
4422 | .navbar-form .radio input[type="radio"],
4423 | .navbar-form .checkbox input[type="checkbox"] {
4424 | position: relative;
4425 | margin-left: 0;
4426 | }
4427 | .navbar-form .has-feedback .form-control-feedback {
4428 | top: 0;
4429 | }
4430 | }
4431 | @media (max-width: 767px) {
4432 | .navbar-form .form-group {
4433 | margin-bottom: 5px;
4434 | }
4435 | .navbar-form .form-group:last-child {
4436 | margin-bottom: 0;
4437 | }
4438 | }
4439 | @media (min-width: 768px) {
4440 | .navbar-form {
4441 | width: auto;
4442 | border: 0;
4443 | margin-left: 0;
4444 | margin-right: 0;
4445 | padding-top: 0;
4446 | padding-bottom: 0;
4447 | -webkit-box-shadow: none;
4448 | box-shadow: none;
4449 | }
4450 | }
4451 | .navbar-nav > li > .dropdown-menu {
4452 | margin-top: 0;
4453 | border-top-right-radius: 0;
4454 | border-top-left-radius: 0;
4455 | }
4456 | .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4457 | margin-bottom: 0;
4458 | border-top-right-radius: 4px;
4459 | border-top-left-radius: 4px;
4460 | border-bottom-right-radius: 0;
4461 | border-bottom-left-radius: 0;
4462 | }
4463 | .navbar-btn {
4464 | margin-top: 12.5px;
4465 | margin-bottom: 12.5px;
4466 | }
4467 | .navbar-btn.btn-sm {
4468 | margin-top: 16px;
4469 | margin-bottom: 16px;
4470 | }
4471 | .navbar-btn.btn-xs {
4472 | margin-top: 21.5px;
4473 | margin-bottom: 21.5px;
4474 | }
4475 | .navbar-text {
4476 | margin-top: 21.5px;
4477 | margin-bottom: 21.5px;
4478 | }
4479 | @media (min-width: 768px) {
4480 | .navbar-text {
4481 | float: left;
4482 | margin-left: 15px;
4483 | margin-right: 15px;
4484 | }
4485 | }
4486 | @media (min-width: 768px) {
4487 | .navbar-left {
4488 | float: left !important;
4489 | }
4490 | .navbar-right {
4491 | float: right !important;
4492 | margin-right: -15px;
4493 | }
4494 | .navbar-right ~ .navbar-right {
4495 | margin-right: 0;
4496 | }
4497 | }
4498 | .navbar-default {
4499 | background-color: #ffffff;
4500 | border-color: #dddddd;
4501 | }
4502 | .navbar-default .navbar-brand {
4503 | color: #4582ec;
4504 | }
4505 | .navbar-default .navbar-brand:hover,
4506 | .navbar-default .navbar-brand:focus {
4507 | color: #4582ec;
4508 | background-color: transparent;
4509 | }
4510 | .navbar-default .navbar-text {
4511 | color: #333333;
4512 | }
4513 | .navbar-default .navbar-nav > li > a {
4514 | color: #4582ec;
4515 | }
4516 | .navbar-default .navbar-nav > li > a:hover,
4517 | .navbar-default .navbar-nav > li > a:focus {
4518 | color: #4582ec;
4519 | background-color: transparent;
4520 | }
4521 | .navbar-default .navbar-nav > .active > a,
4522 | .navbar-default .navbar-nav > .active > a:hover,
4523 | .navbar-default .navbar-nav > .active > a:focus {
4524 | color: #4582ec;
4525 | background-color: transparent;
4526 | }
4527 | .navbar-default .navbar-nav > .disabled > a,
4528 | .navbar-default .navbar-nav > .disabled > a:hover,
4529 | .navbar-default .navbar-nav > .disabled > a:focus {
4530 | color: #333333;
4531 | background-color: transparent;
4532 | }
4533 | .navbar-default .navbar-toggle {
4534 | border-color: #dddddd;
4535 | }
4536 | .navbar-default .navbar-toggle:hover,
4537 | .navbar-default .navbar-toggle:focus {
4538 | background-color: #dddddd;
4539 | }
4540 | .navbar-default .navbar-toggle .icon-bar {
4541 | background-color: #cccccc;
4542 | }
4543 | .navbar-default .navbar-collapse,
4544 | .navbar-default .navbar-form {
4545 | border-color: #dddddd;
4546 | }
4547 | .navbar-default .navbar-nav > .open > a,
4548 | .navbar-default .navbar-nav > .open > a:hover,
4549 | .navbar-default .navbar-nav > .open > a:focus {
4550 | background-color: transparent;
4551 | color: #4582ec;
4552 | }
4553 | @media (max-width: 767px) {
4554 | .navbar-default .navbar-nav .open .dropdown-menu > li > a {
4555 | color: #4582ec;
4556 | }
4557 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
4558 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
4559 | color: #4582ec;
4560 | background-color: transparent;
4561 | }
4562 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4563 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4564 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4565 | color: #4582ec;
4566 | background-color: transparent;
4567 | }
4568 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4569 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4570 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4571 | color: #333333;
4572 | background-color: transparent;
4573 | }
4574 | }
4575 | .navbar-default .navbar-link {
4576 | color: #4582ec;
4577 | }
4578 | .navbar-default .navbar-link:hover {
4579 | color: #4582ec;
4580 | }
4581 | .navbar-default .btn-link {
4582 | color: #4582ec;
4583 | }
4584 | .navbar-default .btn-link:hover,
4585 | .navbar-default .btn-link:focus {
4586 | color: #4582ec;
4587 | }
4588 | .navbar-default .btn-link[disabled]:hover,
4589 | fieldset[disabled] .navbar-default .btn-link:hover,
4590 | .navbar-default .btn-link[disabled]:focus,
4591 | fieldset[disabled] .navbar-default .btn-link:focus {
4592 | color: #333333;
4593 | }
4594 | .navbar-inverse {
4595 | background-color: #ffffff;
4596 | border-color: #dddddd;
4597 | }
4598 | .navbar-inverse .navbar-brand {
4599 | color: #333333;
4600 | }
4601 | .navbar-inverse .navbar-brand:hover,
4602 | .navbar-inverse .navbar-brand:focus {
4603 | color: #333333;
4604 | background-color: transparent;
4605 | }
4606 | .navbar-inverse .navbar-text {
4607 | color: #333333;
4608 | }
4609 | .navbar-inverse .navbar-nav > li > a {
4610 | color: #333333;
4611 | }
4612 | .navbar-inverse .navbar-nav > li > a:hover,
4613 | .navbar-inverse .navbar-nav > li > a:focus {
4614 | color: #333333;
4615 | background-color: transparent;
4616 | }
4617 | .navbar-inverse .navbar-nav > .active > a,
4618 | .navbar-inverse .navbar-nav > .active > a:hover,
4619 | .navbar-inverse .navbar-nav > .active > a:focus {
4620 | color: #333333;
4621 | background-color: transparent;
4622 | }
4623 | .navbar-inverse .navbar-nav > .disabled > a,
4624 | .navbar-inverse .navbar-nav > .disabled > a:hover,
4625 | .navbar-inverse .navbar-nav > .disabled > a:focus {
4626 | color: #cccccc;
4627 | background-color: transparent;
4628 | }
4629 | .navbar-inverse .navbar-toggle {
4630 | border-color: #dddddd;
4631 | }
4632 | .navbar-inverse .navbar-toggle:hover,
4633 | .navbar-inverse .navbar-toggle:focus {
4634 | background-color: #dddddd;
4635 | }
4636 | .navbar-inverse .navbar-toggle .icon-bar {
4637 | background-color: #cccccc;
4638 | }
4639 | .navbar-inverse .navbar-collapse,
4640 | .navbar-inverse .navbar-form {
4641 | border-color: #ededed;
4642 | }
4643 | .navbar-inverse .navbar-nav > .open > a,
4644 | .navbar-inverse .navbar-nav > .open > a:hover,
4645 | .navbar-inverse .navbar-nav > .open > a:focus {
4646 | background-color: transparent;
4647 | color: #333333;
4648 | }
4649 | @media (max-width: 767px) {
4650 | .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4651 | border-color: #dddddd;
4652 | }
4653 | .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4654 | background-color: #dddddd;
4655 | }
4656 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4657 | color: #333333;
4658 | }
4659 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4660 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4661 | color: #333333;
4662 | background-color: transparent;
4663 | }
4664 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4665 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4666 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4667 | color: #333333;
4668 | background-color: transparent;
4669 | }
4670 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4671 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4672 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4673 | color: #cccccc;
4674 | background-color: transparent;
4675 | }
4676 | }
4677 | .navbar-inverse .navbar-link {
4678 | color: #333333;
4679 | }
4680 | .navbar-inverse .navbar-link:hover {
4681 | color: #333333;
4682 | }
4683 | .navbar-inverse .btn-link {
4684 | color: #333333;
4685 | }
4686 | .navbar-inverse .btn-link:hover,
4687 | .navbar-inverse .btn-link:focus {
4688 | color: #333333;
4689 | }
4690 | .navbar-inverse .btn-link[disabled]:hover,
4691 | fieldset[disabled] .navbar-inverse .btn-link:hover,
4692 | .navbar-inverse .btn-link[disabled]:focus,
4693 | fieldset[disabled] .navbar-inverse .btn-link:focus {
4694 | color: #cccccc;
4695 | }
4696 | .breadcrumb {
4697 | padding: 8px 15px;
4698 | margin-bottom: 22px;
4699 | list-style: none;
4700 | background-color: #f5f5f5;
4701 | border-radius: 4px;
4702 | }
4703 | .breadcrumb > li {
4704 | display: inline-block;
4705 | }
4706 | .breadcrumb > li + li:before {
4707 | content: "/\00a0";
4708 | padding: 0 5px;
4709 | color: #cccccc;
4710 | }
4711 | .breadcrumb > .active {
4712 | color: #b3b3b3;
4713 | }
4714 | .pagination {
4715 | display: inline-block;
4716 | padding-left: 0;
4717 | margin: 22px 0;
4718 | border-radius: 4px;
4719 | }
4720 | .pagination > li {
4721 | display: inline;
4722 | }
4723 | .pagination > li > a,
4724 | .pagination > li > span {
4725 | position: relative;
4726 | float: left;
4727 | padding: 8px 12px;
4728 | line-height: 1.42857143;
4729 | text-decoration: none;
4730 | color: #333333;
4731 | background-color: #ffffff;
4732 | border: 1px solid #dddddd;
4733 | margin-left: -1px;
4734 | }
4735 | .pagination > li:first-child > a,
4736 | .pagination > li:first-child > span {
4737 | margin-left: 0;
4738 | border-bottom-left-radius: 4px;
4739 | border-top-left-radius: 4px;
4740 | }
4741 | .pagination > li:last-child > a,
4742 | .pagination > li:last-child > span {
4743 | border-bottom-right-radius: 4px;
4744 | border-top-right-radius: 4px;
4745 | }
4746 | .pagination > li > a:hover,
4747 | .pagination > li > span:hover,
4748 | .pagination > li > a:focus,
4749 | .pagination > li > span:focus {
4750 | z-index: 2;
4751 | color: #ffffff;
4752 | background-color: #4582ec;
4753 | border-color: #4582ec;
4754 | }
4755 | .pagination > .active > a,
4756 | .pagination > .active > span,
4757 | .pagination > .active > a:hover,
4758 | .pagination > .active > span:hover,
4759 | .pagination > .active > a:focus,
4760 | .pagination > .active > span:focus {
4761 | z-index: 3;
4762 | color: #ffffff;
4763 | background-color: #4582ec;
4764 | border-color: #4582ec;
4765 | cursor: default;
4766 | }
4767 | .pagination > .disabled > span,
4768 | .pagination > .disabled > span:hover,
4769 | .pagination > .disabled > span:focus,
4770 | .pagination > .disabled > a,
4771 | .pagination > .disabled > a:hover,
4772 | .pagination > .disabled > a:focus {
4773 | color: #b3b3b3;
4774 | background-color: #ffffff;
4775 | border-color: #dddddd;
4776 | cursor: not-allowed;
4777 | }
4778 | .pagination-lg > li > a,
4779 | .pagination-lg > li > span {
4780 | padding: 14px 16px;
4781 | font-size: 20px;
4782 | line-height: 1.3333333;
4783 | }
4784 | .pagination-lg > li:first-child > a,
4785 | .pagination-lg > li:first-child > span {
4786 | border-bottom-left-radius: 6px;
4787 | border-top-left-radius: 6px;
4788 | }
4789 | .pagination-lg > li:last-child > a,
4790 | .pagination-lg > li:last-child > span {
4791 | border-bottom-right-radius: 6px;
4792 | border-top-right-radius: 6px;
4793 | }
4794 | .pagination-sm > li > a,
4795 | .pagination-sm > li > span {
4796 | padding: 5px 10px;
4797 | font-size: 14px;
4798 | line-height: 1.5;
4799 | }
4800 | .pagination-sm > li:first-child > a,
4801 | .pagination-sm > li:first-child > span {
4802 | border-bottom-left-radius: 3px;
4803 | border-top-left-radius: 3px;
4804 | }
4805 | .pagination-sm > li:last-child > a,
4806 | .pagination-sm > li:last-child > span {
4807 | border-bottom-right-radius: 3px;
4808 | border-top-right-radius: 3px;
4809 | }
4810 | .pager {
4811 | padding-left: 0;
4812 | margin: 22px 0;
4813 | list-style: none;
4814 | text-align: center;
4815 | }
4816 | .pager li {
4817 | display: inline;
4818 | }
4819 | .pager li > a,
4820 | .pager li > span {
4821 | display: inline-block;
4822 | padding: 5px 14px;
4823 | background-color: #ffffff;
4824 | border: 1px solid #dddddd;
4825 | border-radius: 15px;
4826 | }
4827 | .pager li > a:hover,
4828 | .pager li > a:focus {
4829 | text-decoration: none;
4830 | background-color: #4582ec;
4831 | }
4832 | .pager .next > a,
4833 | .pager .next > span {
4834 | float: right;
4835 | }
4836 | .pager .previous > a,
4837 | .pager .previous > span {
4838 | float: left;
4839 | }
4840 | .pager .disabled > a,
4841 | .pager .disabled > a:hover,
4842 | .pager .disabled > a:focus,
4843 | .pager .disabled > span {
4844 | color: #b3b3b3;
4845 | background-color: #ffffff;
4846 | cursor: not-allowed;
4847 | }
4848 | .label {
4849 | display: inline;
4850 | padding: .2em .6em .3em;
4851 | font-size: 75%;
4852 | font-weight: bold;
4853 | line-height: 1;
4854 | color: #ffffff;
4855 | text-align: center;
4856 | white-space: nowrap;
4857 | vertical-align: baseline;
4858 | border-radius: .25em;
4859 | }
4860 | a.label:hover,
4861 | a.label:focus {
4862 | color: #ffffff;
4863 | text-decoration: none;
4864 | cursor: pointer;
4865 | }
4866 | .label:empty {
4867 | display: none;
4868 | }
4869 | .btn .label {
4870 | position: relative;
4871 | top: -1px;
4872 | }
4873 | .label-default {
4874 | background-color: #ffffff;
4875 | }
4876 | .label-default[href]:hover,
4877 | .label-default[href]:focus {
4878 | background-color: #e6e6e6;
4879 | }
4880 | .label-primary {
4881 | background-color: #4582ec;
4882 | }
4883 | .label-primary[href]:hover,
4884 | .label-primary[href]:focus {
4885 | background-color: #1863e6;
4886 | }
4887 | .label-success {
4888 | background-color: #3fad46;
4889 | }
4890 | .label-success[href]:hover,
4891 | .label-success[href]:focus {
4892 | background-color: #318837;
4893 | }
4894 | .label-info {
4895 | background-color: #5bc0de;
4896 | }
4897 | .label-info[href]:hover,
4898 | .label-info[href]:focus {
4899 | background-color: #31b0d5;
4900 | }
4901 | .label-warning {
4902 | background-color: #f0ad4e;
4903 | }
4904 | .label-warning[href]:hover,
4905 | .label-warning[href]:focus {
4906 | background-color: #ec971f;
4907 | }
4908 | .label-danger {
4909 | background-color: #d9534f;
4910 | }
4911 | .label-danger[href]:hover,
4912 | .label-danger[href]:focus {
4913 | background-color: #c9302c;
4914 | }
4915 | .badge {
4916 | display: inline-block;
4917 | min-width: 10px;
4918 | padding: 3px 7px;
4919 | font-size: 14px;
4920 | font-weight: bold;
4921 | color: #ffffff;
4922 | line-height: 1;
4923 | vertical-align: middle;
4924 | white-space: nowrap;
4925 | text-align: center;
4926 | background-color: #4582ec;
4927 | border-radius: 10px;
4928 | }
4929 | .badge:empty {
4930 | display: none;
4931 | }
4932 | .btn .badge {
4933 | position: relative;
4934 | top: -1px;
4935 | }
4936 | .btn-xs .badge,
4937 | .btn-group-xs > .btn .badge {
4938 | top: 0;
4939 | padding: 1px 5px;
4940 | }
4941 | a.badge:hover,
4942 | a.badge:focus {
4943 | color: #ffffff;
4944 | text-decoration: none;
4945 | cursor: pointer;
4946 | }
4947 | .list-group-item.active > .badge,
4948 | .nav-pills > .active > a > .badge {
4949 | color: #4582ec;
4950 | background-color: #ffffff;
4951 | }
4952 | .list-group-item > .badge {
4953 | float: right;
4954 | }
4955 | .list-group-item > .badge + .badge {
4956 | margin-right: 5px;
4957 | }
4958 | .nav-pills > li > a > .badge {
4959 | margin-left: 3px;
4960 | }
4961 | .jumbotron {
4962 | padding-top: 30px;
4963 | padding-bottom: 30px;
4964 | margin-bottom: 30px;
4965 | color: inherit;
4966 | background-color: #f7f7f7;
4967 | }
4968 | .jumbotron h1,
4969 | .jumbotron .h1 {
4970 | color: inherit;
4971 | }
4972 | .jumbotron p {
4973 | margin-bottom: 15px;
4974 | font-size: 24px;
4975 | font-weight: 200;
4976 | }
4977 | .jumbotron > hr {
4978 | border-top-color: #dedede;
4979 | }
4980 | .container .jumbotron,
4981 | .container-fluid .jumbotron {
4982 | border-radius: 6px;
4983 | padding-left: 15px;
4984 | padding-right: 15px;
4985 | }
4986 | .jumbotron .container {
4987 | max-width: 100%;
4988 | }
4989 | @media screen and (min-width: 768px) {
4990 | .jumbotron {
4991 | padding-top: 48px;
4992 | padding-bottom: 48px;
4993 | }
4994 | .container .jumbotron,
4995 | .container-fluid .jumbotron {
4996 | padding-left: 60px;
4997 | padding-right: 60px;
4998 | }
4999 | .jumbotron h1,
5000 | .jumbotron .h1 {
5001 | font-size: 72px;
5002 | }
5003 | }
5004 | .thumbnail {
5005 | display: block;
5006 | padding: 4px;
5007 | margin-bottom: 22px;
5008 | line-height: 1.42857143;
5009 | background-color: #ffffff;
5010 | border: 1px solid #dddddd;
5011 | border-radius: 4px;
5012 | -webkit-transition: border 0.2s ease-in-out;
5013 | -o-transition: border 0.2s ease-in-out;
5014 | transition: border 0.2s ease-in-out;
5015 | }
5016 | .thumbnail > img,
5017 | .thumbnail a > img {
5018 | margin-left: auto;
5019 | margin-right: auto;
5020 | }
5021 | a.thumbnail:hover,
5022 | a.thumbnail:focus,
5023 | a.thumbnail.active {
5024 | border-color: #4582ec;
5025 | }
5026 | .thumbnail .caption {
5027 | padding: 9px;
5028 | color: #333333;
5029 | }
5030 | .alert {
5031 | padding: 15px;
5032 | margin-bottom: 22px;
5033 | border: 1px solid transparent;
5034 | border-radius: 4px;
5035 | }
5036 | .alert h4 {
5037 | margin-top: 0;
5038 | color: inherit;
5039 | }
5040 | .alert .alert-link {
5041 | font-weight: bold;
5042 | }
5043 | .alert > p,
5044 | .alert > ul {
5045 | margin-bottom: 0;
5046 | }
5047 | .alert > p + p {
5048 | margin-top: 5px;
5049 | }
5050 | .alert-dismissable,
5051 | .alert-dismissible {
5052 | padding-right: 35px;
5053 | }
5054 | .alert-dismissable .close,
5055 | .alert-dismissible .close {
5056 | position: relative;
5057 | top: -2px;
5058 | right: -21px;
5059 | color: inherit;
5060 | }
5061 | .alert-success {
5062 | background-color: #3fad46;
5063 | border-color: #3fad46;
5064 | color: #ffffff;
5065 | }
5066 | .alert-success hr {
5067 | border-top-color: #389a3e;
5068 | }
5069 | .alert-success .alert-link {
5070 | color: #e6e6e6;
5071 | }
5072 | .alert-info {
5073 | background-color: #5bc0de;
5074 | border-color: #5bc0de;
5075 | color: #ffffff;
5076 | }
5077 | .alert-info hr {
5078 | border-top-color: #46b8da;
5079 | }
5080 | .alert-info .alert-link {
5081 | color: #e6e6e6;
5082 | }
5083 | .alert-warning {
5084 | background-color: #f0ad4e;
5085 | border-color: #f0ad4e;
5086 | color: #ffffff;
5087 | }
5088 | .alert-warning hr {
5089 | border-top-color: #eea236;
5090 | }
5091 | .alert-warning .alert-link {
5092 | color: #e6e6e6;
5093 | }
5094 | .alert-danger {
5095 | background-color: #d9534f;
5096 | border-color: #d9534f;
5097 | color: #ffffff;
5098 | }
5099 | .alert-danger hr {
5100 | border-top-color: #d43f3a;
5101 | }
5102 | .alert-danger .alert-link {
5103 | color: #e6e6e6;
5104 | }
5105 | @-webkit-keyframes progress-bar-stripes {
5106 | from {
5107 | background-position: 40px 0;
5108 | }
5109 | to {
5110 | background-position: 0 0;
5111 | }
5112 | }
5113 | @-o-keyframes progress-bar-stripes {
5114 | from {
5115 | background-position: 40px 0;
5116 | }
5117 | to {
5118 | background-position: 0 0;
5119 | }
5120 | }
5121 | @keyframes progress-bar-stripes {
5122 | from {
5123 | background-position: 40px 0;
5124 | }
5125 | to {
5126 | background-position: 0 0;
5127 | }
5128 | }
5129 | .progress {
5130 | overflow: hidden;
5131 | height: 22px;
5132 | margin-bottom: 22px;
5133 | background-color: #f5f5f5;
5134 | border-radius: 4px;
5135 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5136 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
5137 | }
5138 | .progress-bar {
5139 | float: left;
5140 | width: 0%;
5141 | height: 100%;
5142 | font-size: 14px;
5143 | line-height: 22px;
5144 | color: #ffffff;
5145 | text-align: center;
5146 | background-color: #4582ec;
5147 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5148 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
5149 | -webkit-transition: width 0.6s ease;
5150 | -o-transition: width 0.6s ease;
5151 | transition: width 0.6s ease;
5152 | }
5153 | .progress-striped .progress-bar,
5154 | .progress-bar-striped {
5155 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5156 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5157 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5158 | -webkit-background-size: 40px 40px;
5159 | background-size: 40px 40px;
5160 | }
5161 | .progress.active .progress-bar,
5162 | .progress-bar.active {
5163 | -webkit-animation: progress-bar-stripes 2s linear infinite;
5164 | -o-animation: progress-bar-stripes 2s linear infinite;
5165 | animation: progress-bar-stripes 2s linear infinite;
5166 | }
5167 | .progress-bar-success {
5168 | background-color: #3fad46;
5169 | }
5170 | .progress-striped .progress-bar-success {
5171 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5172 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5173 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5174 | }
5175 | .progress-bar-info {
5176 | background-color: #5bc0de;
5177 | }
5178 | .progress-striped .progress-bar-info {
5179 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5180 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5181 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5182 | }
5183 | .progress-bar-warning {
5184 | background-color: #f0ad4e;
5185 | }
5186 | .progress-striped .progress-bar-warning {
5187 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5188 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5189 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5190 | }
5191 | .progress-bar-danger {
5192 | background-color: #d9534f;
5193 | }
5194 | .progress-striped .progress-bar-danger {
5195 | background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5196 | background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5197 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
5198 | }
5199 | .media {
5200 | margin-top: 15px;
5201 | }
5202 | .media:first-child {
5203 | margin-top: 0;
5204 | }
5205 | .media,
5206 | .media-body {
5207 | zoom: 1;
5208 | overflow: hidden;
5209 | }
5210 | .media-body {
5211 | width: 10000px;
5212 | }
5213 | .media-object {
5214 | display: block;
5215 | }
5216 | .media-object.img-thumbnail {
5217 | max-width: none;
5218 | }
5219 | .media-right,
5220 | .media > .pull-right {
5221 | padding-left: 10px;
5222 | }
5223 | .media-left,
5224 | .media > .pull-left {
5225 | padding-right: 10px;
5226 | }
5227 | .media-left,
5228 | .media-right,
5229 | .media-body {
5230 | display: table-cell;
5231 | vertical-align: top;
5232 | }
5233 | .media-middle {
5234 | vertical-align: middle;
5235 | }
5236 | .media-bottom {
5237 | vertical-align: bottom;
5238 | }
5239 | .media-heading {
5240 | margin-top: 0;
5241 | margin-bottom: 5px;
5242 | }
5243 | .media-list {
5244 | padding-left: 0;
5245 | list-style: none;
5246 | }
5247 | .list-group {
5248 | margin-bottom: 20px;
5249 | padding-left: 0;
5250 | }
5251 | .list-group-item {
5252 | position: relative;
5253 | display: block;
5254 | padding: 10px 15px;
5255 | margin-bottom: -1px;
5256 | background-color: #ffffff;
5257 | border: 1px solid #dddddd;
5258 | }
5259 | .list-group-item:first-child {
5260 | border-top-right-radius: 4px;
5261 | border-top-left-radius: 4px;
5262 | }
5263 | .list-group-item:last-child {
5264 | margin-bottom: 0;
5265 | border-bottom-right-radius: 4px;
5266 | border-bottom-left-radius: 4px;
5267 | }
5268 | a.list-group-item,
5269 | button.list-group-item {
5270 | color: #555555;
5271 | }
5272 | a.list-group-item .list-group-item-heading,
5273 | button.list-group-item .list-group-item-heading {
5274 | color: #333333;
5275 | }
5276 | a.list-group-item:hover,
5277 | button.list-group-item:hover,
5278 | a.list-group-item:focus,
5279 | button.list-group-item:focus {
5280 | text-decoration: none;
5281 | color: #555555;
5282 | background-color: #f5f5f5;
5283 | }
5284 | button.list-group-item {
5285 | width: 100%;
5286 | text-align: left;
5287 | }
5288 | .list-group-item.disabled,
5289 | .list-group-item.disabled:hover,
5290 | .list-group-item.disabled:focus {
5291 | background-color: #eeeeee;
5292 | color: #b3b3b3;
5293 | cursor: not-allowed;
5294 | }
5295 | .list-group-item.disabled .list-group-item-heading,
5296 | .list-group-item.disabled:hover .list-group-item-heading,
5297 | .list-group-item.disabled:focus .list-group-item-heading {
5298 | color: inherit;
5299 | }
5300 | .list-group-item.disabled .list-group-item-text,
5301 | .list-group-item.disabled:hover .list-group-item-text,
5302 | .list-group-item.disabled:focus .list-group-item-text {
5303 | color: #b3b3b3;
5304 | }
5305 | .list-group-item.active,
5306 | .list-group-item.active:hover,
5307 | .list-group-item.active:focus {
5308 | z-index: 2;
5309 | color: #ffffff;
5310 | background-color: #4582ec;
5311 | border-color: #4582ec;
5312 | }
5313 | .list-group-item.active .list-group-item-heading,
5314 | .list-group-item.active:hover .list-group-item-heading,
5315 | .list-group-item.active:focus .list-group-item-heading,
5316 | .list-group-item.active .list-group-item-heading > small,
5317 | .list-group-item.active:hover .list-group-item-heading > small,
5318 | .list-group-item.active:focus .list-group-item-heading > small,
5319 | .list-group-item.active .list-group-item-heading > .small,
5320 | .list-group-item.active:hover .list-group-item-heading > .small,
5321 | .list-group-item.active:focus .list-group-item-heading > .small {
5322 | color: inherit;
5323 | }
5324 | .list-group-item.active .list-group-item-text,
5325 | .list-group-item.active:hover .list-group-item-text,
5326 | .list-group-item.active:focus .list-group-item-text {
5327 | color: #fefeff;
5328 | }
5329 | .list-group-item-success {
5330 | color: #3fad46;
5331 | background-color: #dff0d8;
5332 | }
5333 | a.list-group-item-success,
5334 | button.list-group-item-success {
5335 | color: #3fad46;
5336 | }
5337 | a.list-group-item-success .list-group-item-heading,
5338 | button.list-group-item-success .list-group-item-heading {
5339 | color: inherit;
5340 | }
5341 | a.list-group-item-success:hover,
5342 | button.list-group-item-success:hover,
5343 | a.list-group-item-success:focus,
5344 | button.list-group-item-success:focus {
5345 | color: #3fad46;
5346 | background-color: #d0e9c6;
5347 | }
5348 | a.list-group-item-success.active,
5349 | button.list-group-item-success.active,
5350 | a.list-group-item-success.active:hover,
5351 | button.list-group-item-success.active:hover,
5352 | a.list-group-item-success.active:focus,
5353 | button.list-group-item-success.active:focus {
5354 | color: #fff;
5355 | background-color: #3fad46;
5356 | border-color: #3fad46;
5357 | }
5358 | .list-group-item-info {
5359 | color: #5bc0de;
5360 | background-color: #d9edf7;
5361 | }
5362 | a.list-group-item-info,
5363 | button.list-group-item-info {
5364 | color: #5bc0de;
5365 | }
5366 | a.list-group-item-info .list-group-item-heading,
5367 | button.list-group-item-info .list-group-item-heading {
5368 | color: inherit;
5369 | }
5370 | a.list-group-item-info:hover,
5371 | button.list-group-item-info:hover,
5372 | a.list-group-item-info:focus,
5373 | button.list-group-item-info:focus {
5374 | color: #5bc0de;
5375 | background-color: #c4e3f3;
5376 | }
5377 | a.list-group-item-info.active,
5378 | button.list-group-item-info.active,
5379 | a.list-group-item-info.active:hover,
5380 | button.list-group-item-info.active:hover,
5381 | a.list-group-item-info.active:focus,
5382 | button.list-group-item-info.active:focus {
5383 | color: #fff;
5384 | background-color: #5bc0de;
5385 | border-color: #5bc0de;
5386 | }
5387 | .list-group-item-warning {
5388 | color: #f0ad4e;
5389 | background-color: #fcf8e3;
5390 | }
5391 | a.list-group-item-warning,
5392 | button.list-group-item-warning {
5393 | color: #f0ad4e;
5394 | }
5395 | a.list-group-item-warning .list-group-item-heading,
5396 | button.list-group-item-warning .list-group-item-heading {
5397 | color: inherit;
5398 | }
5399 | a.list-group-item-warning:hover,
5400 | button.list-group-item-warning:hover,
5401 | a.list-group-item-warning:focus,
5402 | button.list-group-item-warning:focus {
5403 | color: #f0ad4e;
5404 | background-color: #faf2cc;
5405 | }
5406 | a.list-group-item-warning.active,
5407 | button.list-group-item-warning.active,
5408 | a.list-group-item-warning.active:hover,
5409 | button.list-group-item-warning.active:hover,
5410 | a.list-group-item-warning.active:focus,
5411 | button.list-group-item-warning.active:focus {
5412 | color: #fff;
5413 | background-color: #f0ad4e;
5414 | border-color: #f0ad4e;
5415 | }
5416 | .list-group-item-danger {
5417 | color: #d9534f;
5418 | background-color: #f2dede;
5419 | }
5420 | a.list-group-item-danger,
5421 | button.list-group-item-danger {
5422 | color: #d9534f;
5423 | }
5424 | a.list-group-item-danger .list-group-item-heading,
5425 | button.list-group-item-danger .list-group-item-heading {
5426 | color: inherit;
5427 | }
5428 | a.list-group-item-danger:hover,
5429 | button.list-group-item-danger:hover,
5430 | a.list-group-item-danger:focus,
5431 | button.list-group-item-danger:focus {
5432 | color: #d9534f;
5433 | background-color: #ebcccc;
5434 | }
5435 | a.list-group-item-danger.active,
5436 | button.list-group-item-danger.active,
5437 | a.list-group-item-danger.active:hover,
5438 | button.list-group-item-danger.active:hover,
5439 | a.list-group-item-danger.active:focus,
5440 | button.list-group-item-danger.active:focus {
5441 | color: #fff;
5442 | background-color: #d9534f;
5443 | border-color: #d9534f;
5444 | }
5445 | .list-group-item-heading {
5446 | margin-top: 0;
5447 | margin-bottom: 5px;
5448 | }
5449 | .list-group-item-text {
5450 | margin-bottom: 0;
5451 | line-height: 1.3;
5452 | }
5453 | .panel {
5454 | margin-bottom: 22px;
5455 | background-color: #ffffff;
5456 | border: 1px solid transparent;
5457 | border-radius: 4px;
5458 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5459 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
5460 | }
5461 | .panel-body {
5462 | padding: 15px;
5463 | }
5464 | .panel-heading {
5465 | padding: 10px 15px;
5466 | border-bottom: 1px solid transparent;
5467 | border-top-right-radius: 3px;
5468 | border-top-left-radius: 3px;
5469 | }
5470 | .panel-heading > .dropdown .dropdown-toggle {
5471 | color: inherit;
5472 | }
5473 | .panel-title {
5474 | margin-top: 0;
5475 | margin-bottom: 0;
5476 | font-size: 18px;
5477 | color: inherit;
5478 | }
5479 | .panel-title > a,
5480 | .panel-title > small,
5481 | .panel-title > .small,
5482 | .panel-title > small > a,
5483 | .panel-title > .small > a {
5484 | color: inherit;
5485 | }
5486 | .panel-footer {
5487 | padding: 10px 15px;
5488 | background-color: #ffffff;
5489 | border-top: 1px solid #dddddd;
5490 | border-bottom-right-radius: 3px;
5491 | border-bottom-left-radius: 3px;
5492 | }
5493 | .panel > .list-group,
5494 | .panel > .panel-collapse > .list-group {
5495 | margin-bottom: 0;
5496 | }
5497 | .panel > .list-group .list-group-item,
5498 | .panel > .panel-collapse > .list-group .list-group-item {
5499 | border-width: 1px 0;
5500 | border-radius: 0;
5501 | }
5502 | .panel > .list-group:first-child .list-group-item:first-child,
5503 | .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5504 | border-top: 0;
5505 | border-top-right-radius: 3px;
5506 | border-top-left-radius: 3px;
5507 | }
5508 | .panel > .list-group:last-child .list-group-item:last-child,
5509 | .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5510 | border-bottom: 0;
5511 | border-bottom-right-radius: 3px;
5512 | border-bottom-left-radius: 3px;
5513 | }
5514 | .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
5515 | border-top-right-radius: 0;
5516 | border-top-left-radius: 0;
5517 | }
5518 | .panel-heading + .list-group .list-group-item:first-child {
5519 | border-top-width: 0;
5520 | }
5521 | .list-group + .panel-footer {
5522 | border-top-width: 0;
5523 | }
5524 | .panel > .table,
5525 | .panel > .table-responsive > .table,
5526 | .panel > .panel-collapse > .table {
5527 | margin-bottom: 0;
5528 | }
5529 | .panel > .table caption,
5530 | .panel > .table-responsive > .table caption,
5531 | .panel > .panel-collapse > .table caption {
5532 | padding-left: 15px;
5533 | padding-right: 15px;
5534 | }
5535 | .panel > .table:first-child,
5536 | .panel > .table-responsive:first-child > .table:first-child {
5537 | border-top-right-radius: 3px;
5538 | border-top-left-radius: 3px;
5539 | }
5540 | .panel > .table:first-child > thead:first-child > tr:first-child,
5541 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5542 | .panel > .table:first-child > tbody:first-child > tr:first-child,
5543 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5544 | border-top-left-radius: 3px;
5545 | border-top-right-radius: 3px;
5546 | }
5547 | .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5548 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5549 | .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5550 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5551 | .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
5552 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
5553 | .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
5554 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
5555 | border-top-left-radius: 3px;
5556 | }
5557 | .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
5558 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
5559 | .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5560 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5561 | .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
5562 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
5563 | .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
5564 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
5565 | border-top-right-radius: 3px;
5566 | }
5567 | .panel > .table:last-child,
5568 | .panel > .table-responsive:last-child > .table:last-child {
5569 | border-bottom-right-radius: 3px;
5570 | border-bottom-left-radius: 3px;
5571 | }
5572 | .panel > .table:last-child > tbody:last-child > tr:last-child,
5573 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5574 | .panel > .table:last-child > tfoot:last-child > tr:last-child,
5575 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5576 | border-bottom-left-radius: 3px;
5577 | border-bottom-right-radius: 3px;
5578 | }
5579 | .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5580 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5581 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5582 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5583 | .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5584 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5585 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
5586 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
5587 | border-bottom-left-radius: 3px;
5588 | }
5589 | .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5590 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5591 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5592 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5593 | .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5594 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5595 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
5596 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
5597 | border-bottom-right-radius: 3px;
5598 | }
5599 | .panel > .panel-body + .table,
5600 | .panel > .panel-body + .table-responsive,
5601 | .panel > .table + .panel-body,
5602 | .panel > .table-responsive + .panel-body {
5603 | border-top: 1px solid #dddddd;
5604 | }
5605 | .panel > .table > tbody:first-child > tr:first-child th,
5606 | .panel > .table > tbody:first-child > tr:first-child td {
5607 | border-top: 0;
5608 | }
5609 | .panel > .table-bordered,
5610 | .panel > .table-responsive > .table-bordered {
5611 | border: 0;
5612 | }
5613 | .panel > .table-bordered > thead > tr > th:first-child,
5614 | .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5615 | .panel > .table-bordered > tbody > tr > th:first-child,
5616 | .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5617 | .panel > .table-bordered > tfoot > tr > th:first-child,
5618 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5619 | .panel > .table-bordered > thead > tr > td:first-child,
5620 | .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5621 | .panel > .table-bordered > tbody > tr > td:first-child,
5622 | .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5623 | .panel > .table-bordered > tfoot > tr > td:first-child,
5624 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5625 | border-left: 0;
5626 | }
5627 | .panel > .table-bordered > thead > tr > th:last-child,
5628 | .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5629 | .panel > .table-bordered > tbody > tr > th:last-child,
5630 | .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5631 | .panel > .table-bordered > tfoot > tr > th:last-child,
5632 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5633 | .panel > .table-bordered > thead > tr > td:last-child,
5634 | .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5635 | .panel > .table-bordered > tbody > tr > td:last-child,
5636 | .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5637 | .panel > .table-bordered > tfoot > tr > td:last-child,
5638 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5639 | border-right: 0;
5640 | }
5641 | .panel > .table-bordered > thead > tr:first-child > td,
5642 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
5643 | .panel > .table-bordered > tbody > tr:first-child > td,
5644 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
5645 | .panel > .table-bordered > thead > tr:first-child > th,
5646 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
5647 | .panel > .table-bordered > tbody > tr:first-child > th,
5648 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
5649 | border-bottom: 0;
5650 | }
5651 | .panel > .table-bordered > tbody > tr:last-child > td,
5652 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5653 | .panel > .table-bordered > tfoot > tr:last-child > td,
5654 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
5655 | .panel > .table-bordered > tbody > tr:last-child > th,
5656 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5657 | .panel > .table-bordered > tfoot > tr:last-child > th,
5658 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
5659 | border-bottom: 0;
5660 | }
5661 | .panel > .table-responsive {
5662 | border: 0;
5663 | margin-bottom: 0;
5664 | }
5665 | .panel-group {
5666 | margin-bottom: 22px;
5667 | }
5668 | .panel-group .panel {
5669 | margin-bottom: 0;
5670 | border-radius: 4px;
5671 | }
5672 | .panel-group .panel + .panel {
5673 | margin-top: 5px;
5674 | }
5675 | .panel-group .panel-heading {
5676 | border-bottom: 0;
5677 | }
5678 | .panel-group .panel-heading + .panel-collapse > .panel-body,
5679 | .panel-group .panel-heading + .panel-collapse > .list-group {
5680 | border-top: 1px solid #dddddd;
5681 | }
5682 | .panel-group .panel-footer {
5683 | border-top: 0;
5684 | }
5685 | .panel-group .panel-footer + .panel-collapse .panel-body {
5686 | border-bottom: 1px solid #dddddd;
5687 | }
5688 | .panel-default {
5689 | border-color: #dddddd;
5690 | }
5691 | .panel-default > .panel-heading {
5692 | color: #333333;
5693 | background-color: #f5f5f5;
5694 | border-color: #dddddd;
5695 | }
5696 | .panel-default > .panel-heading + .panel-collapse > .panel-body {
5697 | border-top-color: #dddddd;
5698 | }
5699 | .panel-default > .panel-heading .badge {
5700 | color: #f5f5f5;
5701 | background-color: #333333;
5702 | }
5703 | .panel-default > .panel-footer + .panel-collapse > .panel-body {
5704 | border-bottom-color: #dddddd;
5705 | }
5706 | .panel-primary {
5707 | border-color: #4582ec;
5708 | }
5709 | .panel-primary > .panel-heading {
5710 | color: #ffffff;
5711 | background-color: #4582ec;
5712 | border-color: #4582ec;
5713 | }
5714 | .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5715 | border-top-color: #4582ec;
5716 | }
5717 | .panel-primary > .panel-heading .badge {
5718 | color: #4582ec;
5719 | background-color: #ffffff;
5720 | }
5721 | .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5722 | border-bottom-color: #4582ec;
5723 | }
5724 | .panel-success {
5725 | border-color: #3fad46;
5726 | }
5727 | .panel-success > .panel-heading {
5728 | color: #ffffff;
5729 | background-color: #3fad46;
5730 | border-color: #3fad46;
5731 | }
5732 | .panel-success > .panel-heading + .panel-collapse > .panel-body {
5733 | border-top-color: #3fad46;
5734 | }
5735 | .panel-success > .panel-heading .badge {
5736 | color: #3fad46;
5737 | background-color: #ffffff;
5738 | }
5739 | .panel-success > .panel-footer + .panel-collapse > .panel-body {
5740 | border-bottom-color: #3fad46;
5741 | }
5742 | .panel-info {
5743 | border-color: #5bc0de;
5744 | }
5745 | .panel-info > .panel-heading {
5746 | color: #ffffff;
5747 | background-color: #5bc0de;
5748 | border-color: #5bc0de;
5749 | }
5750 | .panel-info > .panel-heading + .panel-collapse > .panel-body {
5751 | border-top-color: #5bc0de;
5752 | }
5753 | .panel-info > .panel-heading .badge {
5754 | color: #5bc0de;
5755 | background-color: #ffffff;
5756 | }
5757 | .panel-info > .panel-footer + .panel-collapse > .panel-body {
5758 | border-bottom-color: #5bc0de;
5759 | }
5760 | .panel-warning {
5761 | border-color: #f0ad4e;
5762 | }
5763 | .panel-warning > .panel-heading {
5764 | color: #ffffff;
5765 | background-color: #f0ad4e;
5766 | border-color: #f0ad4e;
5767 | }
5768 | .panel-warning > .panel-heading + .panel-collapse > .panel-body {
5769 | border-top-color: #f0ad4e;
5770 | }
5771 | .panel-warning > .panel-heading .badge {
5772 | color: #f0ad4e;
5773 | background-color: #ffffff;
5774 | }
5775 | .panel-warning > .panel-footer + .panel-collapse > .panel-body {
5776 | border-bottom-color: #f0ad4e;
5777 | }
5778 | .panel-danger {
5779 | border-color: #d9534f;
5780 | }
5781 | .panel-danger > .panel-heading {
5782 | color: #ffffff;
5783 | background-color: #d9534f;
5784 | border-color: #d9534f;
5785 | }
5786 | .panel-danger > .panel-heading + .panel-collapse > .panel-body {
5787 | border-top-color: #d9534f;
5788 | }
5789 | .panel-danger > .panel-heading .badge {
5790 | color: #d9534f;
5791 | background-color: #ffffff;
5792 | }
5793 | .panel-danger > .panel-footer + .panel-collapse > .panel-body {
5794 | border-bottom-color: #d9534f;
5795 | }
5796 | .embed-responsive {
5797 | position: relative;
5798 | display: block;
5799 | height: 0;
5800 | padding: 0;
5801 | overflow: hidden;
5802 | }
5803 | .embed-responsive .embed-responsive-item,
5804 | .embed-responsive iframe,
5805 | .embed-responsive embed,
5806 | .embed-responsive object,
5807 | .embed-responsive video {
5808 | position: absolute;
5809 | top: 0;
5810 | left: 0;
5811 | bottom: 0;
5812 | height: 100%;
5813 | width: 100%;
5814 | border: 0;
5815 | }
5816 | .embed-responsive-16by9 {
5817 | padding-bottom: 56.25%;
5818 | }
5819 | .embed-responsive-4by3 {
5820 | padding-bottom: 75%;
5821 | }
5822 | .well {
5823 | min-height: 20px;
5824 | padding: 19px;
5825 | margin-bottom: 20px;
5826 | background-color: #f7f7f7;
5827 | border: 1px solid #e5e5e5;
5828 | border-radius: 4px;
5829 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5830 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5831 | }
5832 | .well blockquote {
5833 | border-color: #ddd;
5834 | border-color: rgba(0, 0, 0, 0.15);
5835 | }
5836 | .well-lg {
5837 | padding: 24px;
5838 | border-radius: 6px;
5839 | }
5840 | .well-sm {
5841 | padding: 9px;
5842 | border-radius: 3px;
5843 | }
5844 | .close {
5845 | float: right;
5846 | font-size: 24px;
5847 | font-weight: bold;
5848 | line-height: 1;
5849 | color: #ffffff;
5850 | text-shadow: 0 1px 0 #ffffff;
5851 | opacity: 0.2;
5852 | filter: alpha(opacity=20);
5853 | }
5854 | .close:hover,
5855 | .close:focus {
5856 | color: #ffffff;
5857 | text-decoration: none;
5858 | cursor: pointer;
5859 | opacity: 0.5;
5860 | filter: alpha(opacity=50);
5861 | }
5862 | button.close {
5863 | padding: 0;
5864 | cursor: pointer;
5865 | background: transparent;
5866 | border: 0;
5867 | -webkit-appearance: none;
5868 | }
5869 | .modal-open {
5870 | overflow: hidden;
5871 | }
5872 | .modal {
5873 | display: none;
5874 | overflow: hidden;
5875 | position: fixed;
5876 | top: 0;
5877 | right: 0;
5878 | bottom: 0;
5879 | left: 0;
5880 | z-index: 1050;
5881 | -webkit-overflow-scrolling: touch;
5882 | outline: 0;
5883 | }
5884 | .modal.fade .modal-dialog {
5885 | -webkit-transform: translate(0, -25%);
5886 | -ms-transform: translate(0, -25%);
5887 | -o-transform: translate(0, -25%);
5888 | transform: translate(0, -25%);
5889 | -webkit-transition: -webkit-transform 0.3s ease-out;
5890 | -o-transition: -o-transform 0.3s ease-out;
5891 | transition: transform 0.3s ease-out;
5892 | }
5893 | .modal.in .modal-dialog {
5894 | -webkit-transform: translate(0, 0);
5895 | -ms-transform: translate(0, 0);
5896 | -o-transform: translate(0, 0);
5897 | transform: translate(0, 0);
5898 | }
5899 | .modal-open .modal {
5900 | overflow-x: hidden;
5901 | overflow-y: auto;
5902 | }
5903 | .modal-dialog {
5904 | position: relative;
5905 | width: auto;
5906 | margin: 10px;
5907 | }
5908 | .modal-content {
5909 | position: relative;
5910 | background-color: #ffffff;
5911 | border: 1px solid #999999;
5912 | border: 1px solid rgba(0, 0, 0, 0.2);
5913 | border-radius: 6px;
5914 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5915 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5916 | -webkit-background-clip: padding-box;
5917 | background-clip: padding-box;
5918 | outline: 0;
5919 | }
5920 | .modal-backdrop {
5921 | position: fixed;
5922 | top: 0;
5923 | right: 0;
5924 | bottom: 0;
5925 | left: 0;
5926 | z-index: 1040;
5927 | background-color: #000000;
5928 | }
5929 | .modal-backdrop.fade {
5930 | opacity: 0;
5931 | filter: alpha(opacity=0);
5932 | }
5933 | .modal-backdrop.in {
5934 | opacity: 0.5;
5935 | filter: alpha(opacity=50);
5936 | }
5937 | .modal-header {
5938 | padding: 15px;
5939 | border-bottom: 1px solid #e5e5e5;
5940 | }
5941 | .modal-header .close {
5942 | margin-top: -2px;
5943 | }
5944 | .modal-title {
5945 | margin: 0;
5946 | line-height: 1.42857143;
5947 | }
5948 | .modal-body {
5949 | position: relative;
5950 | padding: 20px;
5951 | }
5952 | .modal-footer {
5953 | padding: 20px;
5954 | text-align: right;
5955 | border-top: 1px solid #e5e5e5;
5956 | }
5957 | .modal-footer .btn + .btn {
5958 | margin-left: 5px;
5959 | margin-bottom: 0;
5960 | }
5961 | .modal-footer .btn-group .btn + .btn {
5962 | margin-left: -1px;
5963 | }
5964 | .modal-footer .btn-block + .btn-block {
5965 | margin-left: 0;
5966 | }
5967 | .modal-scrollbar-measure {
5968 | position: absolute;
5969 | top: -9999px;
5970 | width: 50px;
5971 | height: 50px;
5972 | overflow: scroll;
5973 | }
5974 | @media (min-width: 768px) {
5975 | .modal-dialog {
5976 | width: 600px;
5977 | margin: 30px auto;
5978 | }
5979 | .modal-content {
5980 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5981 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5982 | }
5983 | .modal-sm {
5984 | width: 300px;
5985 | }
5986 | }
5987 | @media (min-width: 992px) {
5988 | .modal-lg {
5989 | width: 900px;
5990 | }
5991 | }
5992 | .tooltip {
5993 | position: absolute;
5994 | z-index: 1070;
5995 | display: block;
5996 | font-family: Georgia, "Times New Roman", Times, serif;
5997 | font-style: normal;
5998 | font-weight: normal;
5999 | letter-spacing: normal;
6000 | line-break: auto;
6001 | line-height: 1.42857143;
6002 | text-align: left;
6003 | text-align: start;
6004 | text-decoration: none;
6005 | text-shadow: none;
6006 | text-transform: none;
6007 | white-space: normal;
6008 | word-break: normal;
6009 | word-spacing: normal;
6010 | word-wrap: normal;
6011 | font-size: 14px;
6012 | opacity: 0;
6013 | filter: alpha(opacity=0);
6014 | }
6015 | .tooltip.in {
6016 | opacity: 0.9;
6017 | filter: alpha(opacity=90);
6018 | }
6019 | .tooltip.top {
6020 | margin-top: -3px;
6021 | padding: 5px 0;
6022 | }
6023 | .tooltip.right {
6024 | margin-left: 3px;
6025 | padding: 0 5px;
6026 | }
6027 | .tooltip.bottom {
6028 | margin-top: 3px;
6029 | padding: 5px 0;
6030 | }
6031 | .tooltip.left {
6032 | margin-left: -3px;
6033 | padding: 0 5px;
6034 | }
6035 | .tooltip-inner {
6036 | max-width: 200px;
6037 | padding: 3px 8px;
6038 | color: #ffffff;
6039 | text-align: center;
6040 | background-color: #000000;
6041 | border-radius: 4px;
6042 | }
6043 | .tooltip-arrow {
6044 | position: absolute;
6045 | width: 0;
6046 | height: 0;
6047 | border-color: transparent;
6048 | border-style: solid;
6049 | }
6050 | .tooltip.top .tooltip-arrow {
6051 | bottom: 0;
6052 | left: 50%;
6053 | margin-left: -5px;
6054 | border-width: 5px 5px 0;
6055 | border-top-color: #000000;
6056 | }
6057 | .tooltip.top-left .tooltip-arrow {
6058 | bottom: 0;
6059 | right: 5px;
6060 | margin-bottom: -5px;
6061 | border-width: 5px 5px 0;
6062 | border-top-color: #000000;
6063 | }
6064 | .tooltip.top-right .tooltip-arrow {
6065 | bottom: 0;
6066 | left: 5px;
6067 | margin-bottom: -5px;
6068 | border-width: 5px 5px 0;
6069 | border-top-color: #000000;
6070 | }
6071 | .tooltip.right .tooltip-arrow {
6072 | top: 50%;
6073 | left: 0;
6074 | margin-top: -5px;
6075 | border-width: 5px 5px 5px 0;
6076 | border-right-color: #000000;
6077 | }
6078 | .tooltip.left .tooltip-arrow {
6079 | top: 50%;
6080 | right: 0;
6081 | margin-top: -5px;
6082 | border-width: 5px 0 5px 5px;
6083 | border-left-color: #000000;
6084 | }
6085 | .tooltip.bottom .tooltip-arrow {
6086 | top: 0;
6087 | left: 50%;
6088 | margin-left: -5px;
6089 | border-width: 0 5px 5px;
6090 | border-bottom-color: #000000;
6091 | }
6092 | .tooltip.bottom-left .tooltip-arrow {
6093 | top: 0;
6094 | right: 5px;
6095 | margin-top: -5px;
6096 | border-width: 0 5px 5px;
6097 | border-bottom-color: #000000;
6098 | }
6099 | .tooltip.bottom-right .tooltip-arrow {
6100 | top: 0;
6101 | left: 5px;
6102 | margin-top: -5px;
6103 | border-width: 0 5px 5px;
6104 | border-bottom-color: #000000;
6105 | }
6106 | .popover {
6107 | position: absolute;
6108 | top: 0;
6109 | left: 0;
6110 | z-index: 1060;
6111 | display: none;
6112 | max-width: 276px;
6113 | padding: 1px;
6114 | font-family: Georgia, "Times New Roman", Times, serif;
6115 | font-style: normal;
6116 | font-weight: normal;
6117 | letter-spacing: normal;
6118 | line-break: auto;
6119 | line-height: 1.42857143;
6120 | text-align: left;
6121 | text-align: start;
6122 | text-decoration: none;
6123 | text-shadow: none;
6124 | text-transform: none;
6125 | white-space: normal;
6126 | word-break: normal;
6127 | word-spacing: normal;
6128 | word-wrap: normal;
6129 | font-size: 16px;
6130 | background-color: #ffffff;
6131 | -webkit-background-clip: padding-box;
6132 | background-clip: padding-box;
6133 | border: 1px solid #cccccc;
6134 | border: 1px solid rgba(0, 0, 0, 0.2);
6135 | border-radius: 6px;
6136 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
6137 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
6138 | }
6139 | .popover.top {
6140 | margin-top: -10px;
6141 | }
6142 | .popover.right {
6143 | margin-left: 10px;
6144 | }
6145 | .popover.bottom {
6146 | margin-top: 10px;
6147 | }
6148 | .popover.left {
6149 | margin-left: -10px;
6150 | }
6151 | .popover-title {
6152 | margin: 0;
6153 | padding: 8px 14px;
6154 | font-size: 16px;
6155 | background-color: #f7f7f7;
6156 | border-bottom: 1px solid #ebebeb;
6157 | border-radius: 5px 5px 0 0;
6158 | }
6159 | .popover-content {
6160 | padding: 9px 14px;
6161 | }
6162 | .popover > .arrow,
6163 | .popover > .arrow:after {
6164 | position: absolute;
6165 | display: block;
6166 | width: 0;
6167 | height: 0;
6168 | border-color: transparent;
6169 | border-style: solid;
6170 | }
6171 | .popover > .arrow {
6172 | border-width: 11px;
6173 | }
6174 | .popover > .arrow:after {
6175 | border-width: 10px;
6176 | content: "";
6177 | }
6178 | .popover.top > .arrow {
6179 | left: 50%;
6180 | margin-left: -11px;
6181 | border-bottom-width: 0;
6182 | border-top-color: #999999;
6183 | border-top-color: rgba(0, 0, 0, 0.25);
6184 | bottom: -11px;
6185 | }
6186 | .popover.top > .arrow:after {
6187 | content: " ";
6188 | bottom: 1px;
6189 | margin-left: -10px;
6190 | border-bottom-width: 0;
6191 | border-top-color: #ffffff;
6192 | }
6193 | .popover.right > .arrow {
6194 | top: 50%;
6195 | left: -11px;
6196 | margin-top: -11px;
6197 | border-left-width: 0;
6198 | border-right-color: #999999;
6199 | border-right-color: rgba(0, 0, 0, 0.25);
6200 | }
6201 | .popover.right > .arrow:after {
6202 | content: " ";
6203 | left: 1px;
6204 | bottom: -10px;
6205 | border-left-width: 0;
6206 | border-right-color: #ffffff;
6207 | }
6208 | .popover.bottom > .arrow {
6209 | left: 50%;
6210 | margin-left: -11px;
6211 | border-top-width: 0;
6212 | border-bottom-color: #999999;
6213 | border-bottom-color: rgba(0, 0, 0, 0.25);
6214 | top: -11px;
6215 | }
6216 | .popover.bottom > .arrow:after {
6217 | content: " ";
6218 | top: 1px;
6219 | margin-left: -10px;
6220 | border-top-width: 0;
6221 | border-bottom-color: #ffffff;
6222 | }
6223 | .popover.left > .arrow {
6224 | top: 50%;
6225 | right: -11px;
6226 | margin-top: -11px;
6227 | border-right-width: 0;
6228 | border-left-color: #999999;
6229 | border-left-color: rgba(0, 0, 0, 0.25);
6230 | }
6231 | .popover.left > .arrow:after {
6232 | content: " ";
6233 | right: 1px;
6234 | border-right-width: 0;
6235 | border-left-color: #ffffff;
6236 | bottom: -10px;
6237 | }
6238 | .carousel {
6239 | position: relative;
6240 | }
6241 | .carousel-inner {
6242 | position: relative;
6243 | overflow: hidden;
6244 | width: 100%;
6245 | }
6246 | .carousel-inner > .item {
6247 | display: none;
6248 | position: relative;
6249 | -webkit-transition: 0.6s ease-in-out left;
6250 | -o-transition: 0.6s ease-in-out left;
6251 | transition: 0.6s ease-in-out left;
6252 | }
6253 | .carousel-inner > .item > img,
6254 | .carousel-inner > .item > a > img {
6255 | line-height: 1;
6256 | }
6257 | @media all and (transform-3d), (-webkit-transform-3d) {
6258 | .carousel-inner > .item {
6259 | -webkit-transition: -webkit-transform 0.6s ease-in-out;
6260 | -o-transition: -o-transform 0.6s ease-in-out;
6261 | transition: transform 0.6s ease-in-out;
6262 | -webkit-backface-visibility: hidden;
6263 | backface-visibility: hidden;
6264 | -webkit-perspective: 1000px;
6265 | perspective: 1000px;
6266 | }
6267 | .carousel-inner > .item.next,
6268 | .carousel-inner > .item.active.right {
6269 | -webkit-transform: translate3d(100%, 0, 0);
6270 | transform: translate3d(100%, 0, 0);
6271 | left: 0;
6272 | }
6273 | .carousel-inner > .item.prev,
6274 | .carousel-inner > .item.active.left {
6275 | -webkit-transform: translate3d(-100%, 0, 0);
6276 | transform: translate3d(-100%, 0, 0);
6277 | left: 0;
6278 | }
6279 | .carousel-inner > .item.next.left,
6280 | .carousel-inner > .item.prev.right,
6281 | .carousel-inner > .item.active {
6282 | -webkit-transform: translate3d(0, 0, 0);
6283 | transform: translate3d(0, 0, 0);
6284 | left: 0;
6285 | }
6286 | }
6287 | .carousel-inner > .active,
6288 | .carousel-inner > .next,
6289 | .carousel-inner > .prev {
6290 | display: block;
6291 | }
6292 | .carousel-inner > .active {
6293 | left: 0;
6294 | }
6295 | .carousel-inner > .next,
6296 | .carousel-inner > .prev {
6297 | position: absolute;
6298 | top: 0;
6299 | width: 100%;
6300 | }
6301 | .carousel-inner > .next {
6302 | left: 100%;
6303 | }
6304 | .carousel-inner > .prev {
6305 | left: -100%;
6306 | }
6307 | .carousel-inner > .next.left,
6308 | .carousel-inner > .prev.right {
6309 | left: 0;
6310 | }
6311 | .carousel-inner > .active.left {
6312 | left: -100%;
6313 | }
6314 | .carousel-inner > .active.right {
6315 | left: 100%;
6316 | }
6317 | .carousel-control {
6318 | position: absolute;
6319 | top: 0;
6320 | left: 0;
6321 | bottom: 0;
6322 | width: 15%;
6323 | opacity: 0.5;
6324 | filter: alpha(opacity=50);
6325 | font-size: 20px;
6326 | color: #ffffff;
6327 | text-align: center;
6328 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
6329 | background-color: rgba(0, 0, 0, 0);
6330 | }
6331 | .carousel-control.left {
6332 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6333 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6334 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
6335 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
6336 | background-repeat: repeat-x;
6337 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
6338 | }
6339 | .carousel-control.right {
6340 | left: auto;
6341 | right: 0;
6342 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6343 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6344 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
6345 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
6346 | background-repeat: repeat-x;
6347 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
6348 | }
6349 | .carousel-control:hover,
6350 | .carousel-control:focus {
6351 | outline: 0;
6352 | color: #ffffff;
6353 | text-decoration: none;
6354 | opacity: 0.9;
6355 | filter: alpha(opacity=90);
6356 | }
6357 | .carousel-control .icon-prev,
6358 | .carousel-control .icon-next,
6359 | .carousel-control .glyphicon-chevron-left,
6360 | .carousel-control .glyphicon-chevron-right {
6361 | position: absolute;
6362 | top: 50%;
6363 | margin-top: -10px;
6364 | z-index: 5;
6365 | display: inline-block;
6366 | }
6367 | .carousel-control .icon-prev,
6368 | .carousel-control .glyphicon-chevron-left {
6369 | left: 50%;
6370 | margin-left: -10px;
6371 | }
6372 | .carousel-control .icon-next,
6373 | .carousel-control .glyphicon-chevron-right {
6374 | right: 50%;
6375 | margin-right: -10px;
6376 | }
6377 | .carousel-control .icon-prev,
6378 | .carousel-control .icon-next {
6379 | width: 20px;
6380 | height: 20px;
6381 | line-height: 1;
6382 | font-family: serif;
6383 | }
6384 | .carousel-control .icon-prev:before {
6385 | content: '\2039';
6386 | }
6387 | .carousel-control .icon-next:before {
6388 | content: '\203a';
6389 | }
6390 | .carousel-indicators {
6391 | position: absolute;
6392 | bottom: 10px;
6393 | left: 50%;
6394 | z-index: 15;
6395 | width: 60%;
6396 | margin-left: -30%;
6397 | padding-left: 0;
6398 | list-style: none;
6399 | text-align: center;
6400 | }
6401 | .carousel-indicators li {
6402 | display: inline-block;
6403 | width: 10px;
6404 | height: 10px;
6405 | margin: 1px;
6406 | text-indent: -999px;
6407 | border: 1px solid #ffffff;
6408 | border-radius: 10px;
6409 | cursor: pointer;
6410 | background-color: #000 \9;
6411 | background-color: rgba(0, 0, 0, 0);
6412 | }
6413 | .carousel-indicators .active {
6414 | margin: 0;
6415 | width: 12px;
6416 | height: 12px;
6417 | background-color: #ffffff;
6418 | }
6419 | .carousel-caption {
6420 | position: absolute;
6421 | left: 15%;
6422 | right: 15%;
6423 | bottom: 20px;
6424 | z-index: 10;
6425 | padding-top: 20px;
6426 | padding-bottom: 20px;
6427 | color: #ffffff;
6428 | text-align: center;
6429 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
6430 | }
6431 | .carousel-caption .btn {
6432 | text-shadow: none;
6433 | }
6434 | @media screen and (min-width: 768px) {
6435 | .carousel-control .glyphicon-chevron-left,
6436 | .carousel-control .glyphicon-chevron-right,
6437 | .carousel-control .icon-prev,
6438 | .carousel-control .icon-next {
6439 | width: 30px;
6440 | height: 30px;
6441 | margin-top: -10px;
6442 | font-size: 30px;
6443 | }
6444 | .carousel-control .glyphicon-chevron-left,
6445 | .carousel-control .icon-prev {
6446 | margin-left: -10px;
6447 | }
6448 | .carousel-control .glyphicon-chevron-right,
6449 | .carousel-control .icon-next {
6450 | margin-right: -10px;
6451 | }
6452 | .carousel-caption {
6453 | left: 20%;
6454 | right: 20%;
6455 | padding-bottom: 30px;
6456 | }
6457 | .carousel-indicators {
6458 | bottom: 20px;
6459 | }
6460 | }
6461 | .clearfix:before,
6462 | .clearfix:after,
6463 | .dl-horizontal dd:before,
6464 | .dl-horizontal dd:after,
6465 | .container:before,
6466 | .container:after,
6467 | .container-fluid:before,
6468 | .container-fluid:after,
6469 | .row:before,
6470 | .row:after,
6471 | .form-horizontal .form-group:before,
6472 | .form-horizontal .form-group:after,
6473 | .btn-toolbar:before,
6474 | .btn-toolbar:after,
6475 | .btn-group-vertical > .btn-group:before,
6476 | .btn-group-vertical > .btn-group:after,
6477 | .nav:before,
6478 | .nav:after,
6479 | .navbar:before,
6480 | .navbar:after,
6481 | .navbar-header:before,
6482 | .navbar-header:after,
6483 | .navbar-collapse:before,
6484 | .navbar-collapse:after,
6485 | .pager:before,
6486 | .pager:after,
6487 | .panel-body:before,
6488 | .panel-body:after,
6489 | .modal-header:before,
6490 | .modal-header:after,
6491 | .modal-footer:before,
6492 | .modal-footer:after {
6493 | content: " ";
6494 | display: table;
6495 | }
6496 | .clearfix:after,
6497 | .dl-horizontal dd:after,
6498 | .container:after,
6499 | .container-fluid:after,
6500 | .row:after,
6501 | .form-horizontal .form-group:after,
6502 | .btn-toolbar:after,
6503 | .btn-group-vertical > .btn-group:after,
6504 | .nav:after,
6505 | .navbar:after,
6506 | .navbar-header:after,
6507 | .navbar-collapse:after,
6508 | .pager:after,
6509 | .panel-body:after,
6510 | .modal-header:after,
6511 | .modal-footer:after {
6512 | clear: both;
6513 | }
6514 | .center-block {
6515 | display: block;
6516 | margin-left: auto;
6517 | margin-right: auto;
6518 | }
6519 | .pull-right {
6520 | float: right !important;
6521 | }
6522 | .pull-left {
6523 | float: left !important;
6524 | }
6525 | .hide {
6526 | display: none !important;
6527 | }
6528 | .show {
6529 | display: block !important;
6530 | }
6531 | .invisible {
6532 | visibility: hidden;
6533 | }
6534 | .text-hide {
6535 | font: 0/0 a;
6536 | color: transparent;
6537 | text-shadow: none;
6538 | background-color: transparent;
6539 | border: 0;
6540 | }
6541 | .hidden {
6542 | display: none !important;
6543 | }
6544 | .affix {
6545 | position: fixed;
6546 | }
6547 | @-ms-viewport {
6548 | width: device-width;
6549 | }
6550 | .visible-xs,
6551 | .visible-sm,
6552 | .visible-md,
6553 | .visible-lg {
6554 | display: none !important;
6555 | }
6556 | .visible-xs-block,
6557 | .visible-xs-inline,
6558 | .visible-xs-inline-block,
6559 | .visible-sm-block,
6560 | .visible-sm-inline,
6561 | .visible-sm-inline-block,
6562 | .visible-md-block,
6563 | .visible-md-inline,
6564 | .visible-md-inline-block,
6565 | .visible-lg-block,
6566 | .visible-lg-inline,
6567 | .visible-lg-inline-block {
6568 | display: none !important;
6569 | }
6570 | @media (max-width: 767px) {
6571 | .visible-xs {
6572 | display: block !important;
6573 | }
6574 | table.visible-xs {
6575 | display: table !important;
6576 | }
6577 | tr.visible-xs {
6578 | display: table-row !important;
6579 | }
6580 | th.visible-xs,
6581 | td.visible-xs {
6582 | display: table-cell !important;
6583 | }
6584 | }
6585 | @media (max-width: 767px) {
6586 | .visible-xs-block {
6587 | display: block !important;
6588 | }
6589 | }
6590 | @media (max-width: 767px) {
6591 | .visible-xs-inline {
6592 | display: inline !important;
6593 | }
6594 | }
6595 | @media (max-width: 767px) {
6596 | .visible-xs-inline-block {
6597 | display: inline-block !important;
6598 | }
6599 | }
6600 | @media (min-width: 768px) and (max-width: 991px) {
6601 | .visible-sm {
6602 | display: block !important;
6603 | }
6604 | table.visible-sm {
6605 | display: table !important;
6606 | }
6607 | tr.visible-sm {
6608 | display: table-row !important;
6609 | }
6610 | th.visible-sm,
6611 | td.visible-sm {
6612 | display: table-cell !important;
6613 | }
6614 | }
6615 | @media (min-width: 768px) and (max-width: 991px) {
6616 | .visible-sm-block {
6617 | display: block !important;
6618 | }
6619 | }
6620 | @media (min-width: 768px) and (max-width: 991px) {
6621 | .visible-sm-inline {
6622 | display: inline !important;
6623 | }
6624 | }
6625 | @media (min-width: 768px) and (max-width: 991px) {
6626 | .visible-sm-inline-block {
6627 | display: inline-block !important;
6628 | }
6629 | }
6630 | @media (min-width: 992px) and (max-width: 1199px) {
6631 | .visible-md {
6632 | display: block !important;
6633 | }
6634 | table.visible-md {
6635 | display: table !important;
6636 | }
6637 | tr.visible-md {
6638 | display: table-row !important;
6639 | }
6640 | th.visible-md,
6641 | td.visible-md {
6642 | display: table-cell !important;
6643 | }
6644 | }
6645 | @media (min-width: 992px) and (max-width: 1199px) {
6646 | .visible-md-block {
6647 | display: block !important;
6648 | }
6649 | }
6650 | @media (min-width: 992px) and (max-width: 1199px) {
6651 | .visible-md-inline {
6652 | display: inline !important;
6653 | }
6654 | }
6655 | @media (min-width: 992px) and (max-width: 1199px) {
6656 | .visible-md-inline-block {
6657 | display: inline-block !important;
6658 | }
6659 | }
6660 | @media (min-width: 1200px) {
6661 | .visible-lg {
6662 | display: block !important;
6663 | }
6664 | table.visible-lg {
6665 | display: table !important;
6666 | }
6667 | tr.visible-lg {
6668 | display: table-row !important;
6669 | }
6670 | th.visible-lg,
6671 | td.visible-lg {
6672 | display: table-cell !important;
6673 | }
6674 | }
6675 | @media (min-width: 1200px) {
6676 | .visible-lg-block {
6677 | display: block !important;
6678 | }
6679 | }
6680 | @media (min-width: 1200px) {
6681 | .visible-lg-inline {
6682 | display: inline !important;
6683 | }
6684 | }
6685 | @media (min-width: 1200px) {
6686 | .visible-lg-inline-block {
6687 | display: inline-block !important;
6688 | }
6689 | }
6690 | @media (max-width: 767px) {
6691 | .hidden-xs {
6692 | display: none !important;
6693 | }
6694 | }
6695 | @media (min-width: 768px) and (max-width: 991px) {
6696 | .hidden-sm {
6697 | display: none !important;
6698 | }
6699 | }
6700 | @media (min-width: 992px) and (max-width: 1199px) {
6701 | .hidden-md {
6702 | display: none !important;
6703 | }
6704 | }
6705 | @media (min-width: 1200px) {
6706 | .hidden-lg {
6707 | display: none !important;
6708 | }
6709 | }
6710 | .visible-print {
6711 | display: none !important;
6712 | }
6713 | @media print {
6714 | .visible-print {
6715 | display: block !important;
6716 | }
6717 | table.visible-print {
6718 | display: table !important;
6719 | }
6720 | tr.visible-print {
6721 | display: table-row !important;
6722 | }
6723 | th.visible-print,
6724 | td.visible-print {
6725 | display: table-cell !important;
6726 | }
6727 | }
6728 | .visible-print-block {
6729 | display: none !important;
6730 | }
6731 | @media print {
6732 | .visible-print-block {
6733 | display: block !important;
6734 | }
6735 | }
6736 | .visible-print-inline {
6737 | display: none !important;
6738 | }
6739 | @media print {
6740 | .visible-print-inline {
6741 | display: inline !important;
6742 | }
6743 | }
6744 | .visible-print-inline-block {
6745 | display: none !important;
6746 | }
6747 | @media print {
6748 | .visible-print-inline-block {
6749 | display: inline-block !important;
6750 | }
6751 | }
6752 | @media print {
6753 | .hidden-print {
6754 | display: none !important;
6755 | }
6756 | }
6757 | .navbar {
6758 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6759 | }
6760 | .navbar-nav,
6761 | .navbar-form {
6762 | margin-left: 0;
6763 | margin-right: 0;
6764 | }
6765 | .navbar-nav > li > a {
6766 | margin: 12.5px 6px;
6767 | padding: 8px 12px;
6768 | border: 1px solid transparent;
6769 | border-radius: 4px;
6770 | }
6771 | .navbar-nav > li > a:hover {
6772 | border: 1px solid #ddd;
6773 | }
6774 | .navbar-nav > .active > a,
6775 | .navbar-nav > .active > a:hover {
6776 | border: 1px solid #ddd;
6777 | }
6778 | .navbar-default .navbar-nav > .active > a:hover {
6779 | color: #4582ec;
6780 | }
6781 | .navbar-inverse .navbar-nav > .active > a:hover {
6782 | color: #333333;
6783 | }
6784 | .navbar-brand {
6785 | padding-top: 12.5px;
6786 | padding-bottom: 12.5px;
6787 | line-height: 1.9;
6788 | }
6789 | @media (min-width: 768px) {
6790 | .navbar .navbar-nav > li > a {
6791 | padding: 8px 12px;
6792 | }
6793 | }
6794 | @media (max-width: 767px) {
6795 | .navbar .navbar-nav > li > a {
6796 | margin: 0;
6797 | }
6798 | }
6799 | .btn {
6800 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6801 | }
6802 | legend {
6803 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6804 | }
6805 | .input-group-addon {
6806 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6807 | }
6808 | .nav .open > a,
6809 | .nav .open > a:hover,
6810 | .nav .open > a:focus {
6811 | border: 1px solid #ddd;
6812 | }
6813 | .pagination {
6814 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6815 | }
6816 | .pagination-lg > li > a,
6817 | .pagination-lg > li > span {
6818 | padding: 14px 24px;
6819 | }
6820 | .pager {
6821 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6822 | }
6823 | .pager a {
6824 | color: #333333;
6825 | }
6826 | .pager a:hover {
6827 | border-color: transparent;
6828 | color: #fff;
6829 | }
6830 | .pager .disabled a {
6831 | border-color: #dddddd;
6832 | }
6833 | .close {
6834 | color: #fff;
6835 | text-decoration: none;
6836 | text-shadow: none;
6837 | opacity: 0.4;
6838 | }
6839 | .close:hover,
6840 | .close:focus {
6841 | color: #fff;
6842 | opacity: 1;
6843 | }
6844 | .alert .alert-link {
6845 | color: #ffffff;
6846 | text-decoration: underline;
6847 | }
6848 | .label {
6849 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6850 | font-weight: normal;
6851 | }
6852 | .label-default {
6853 | border: 1px solid #ddd;
6854 | color: #333333;
6855 | }
6856 | .badge {
6857 | padding: 1px 7px 5px;
6858 | vertical-align: 2px;
6859 | font-family: "Raleway", "Helvetica Neue", Helvetica, Arial, sans-serif;
6860 | font-weight: normal;
6861 | }
6862 | .panel {
6863 | -webkit-box-shadow: none;
6864 | box-shadow: none;
6865 | }
6866 | .panel-default .close {
6867 | color: #333333;
6868 | }
6869 | .modal .close {
6870 | color: #333333;
6871 | }
6872 |
--------------------------------------------------------------------------------
/_sass/_custom.scss:
--------------------------------------------------------------------------------
1 |
2 |
3 |
--------------------------------------------------------------------------------
/_sass/_layout.scss:
--------------------------------------------------------------------------------
1 | $moby-side-color: #101e26;
2 | $moby-color: $background-color;
3 |
4 | html, body {
5 | height: 100%;
6 | background-color: $background-color;
7 | color: $text-color;
8 | }
9 |
10 | img {
11 | max-width: 100%;
12 | }
13 |
14 | .mt50 {
15 | margin-top: 50px;
16 | }
17 | .mt20 {
18 | margin-top: 20px;
19 | }
20 |
21 | .mt10 {
22 | margin-top: 10px;
23 | }
24 |
25 | .mb10 {
26 | margin-bottom: 10px;
27 | }
28 |
29 | body {
30 | display: flex;
31 | flex-direction: column;
32 | }
33 |
34 | body > * {
35 | flex: none;
36 | }
37 |
38 |
39 | #editor {
40 | background-color: $moby-color;
41 | }
42 |
43 |
44 | .navbar-header {
45 | margin-top: 5px;
46 | button {
47 | margin-left: 10px;
48 | }
49 |
50 | input {
51 | color: #000;
52 | margin-left: 5px;
53 | width: 300px;
54 | display: none;
55 | }
56 | }
57 |
58 | .navbar {
59 | border-radius: 0px;
60 | margin-bottom: 0px;
61 |
62 | &.navbar-inverse {
63 | background-color: $moby-side-color;
64 | border-color: $moby-side-color;
65 |
66 | a, .navbar-nav li a {
67 | color: $text-color;
68 | &:hover {
69 | text-decoration: underline;
70 | }
71 | }
72 | }
73 | }
74 |
75 | footer {
76 | background-color: $moby-side-color;
77 | }
78 |
79 | .navbar-brand {
80 | font-weight: 900;
81 | margin-left: 0px !important;
82 | vertical-align: middle;
83 | float: none;
84 | @media screen and (max-width: $on-palm) {
85 | font-size: 1.5em;
86 | }
87 | }
88 |
89 | .panel {
90 | border:none;
91 | box-shadow: 0px 0px 1px $grey-color;
92 | }
93 |
94 | .panel:hover {
95 | box-shadow: 0px 0px 6px $grey-color;
96 | }
97 |
98 |
99 | .social {
100 | list-style: none;
101 | display: inline;
102 | margin-left: 10px;
103 | padding: 5px 8px;
104 | }
105 | .social:hover {
106 | opacity: 0.7;
107 | }
108 | .social img {
109 | width: 20px;
110 | }
111 |
112 | .quora img{
113 | width: 17px;
114 | }
115 |
116 | .facebook img {
117 | width: 16px;
118 | }
119 |
120 |
121 |
122 | .panel-container {
123 | display: flex;
124 | flex-direction: row;
125 | overflow: hidden;
126 | height: 100%;
127 | flex: 1 1 auto;
128 |
129 | /* avoid browser level touch actions */
130 | xtouch-action: none;
131 | }
132 |
133 | .terminal {
134 | font-size: 15px;
135 | }
136 |
137 |
138 | .panel-left {
139 | flex: 0 0 auto;
140 | /* only manually resize */
141 | width: 50%;
142 | min-width: 150px;
143 | }
144 |
145 | .content {
146 | padding: 0 15px;
147 | overflow-y: auto;
148 | }
149 |
150 | .content {
151 | padding: 0 15px;
152 | }
153 |
154 |
155 | .splitter {
156 | flex: 0 0 auto;
157 | width: 18px;
158 | background: url(https://raw.githubusercontent.com/RickStrahl/jquery-resizable/master/assets/vsizegrip.png) center center no-repeat $moby-side-color;
159 | min-height: 200px;
160 | cursor: col-resize;
161 | }
162 |
163 | .panel-right {
164 | display: flex;
165 | flex-direction: column;
166 | flex: 1 1 auto;
167 | /* resizable */
168 | width: 100%;
169 | background: $moby-color;
170 |
171 | > div {
172 | flex: 1 1 auto;
173 | margin-bottom: 15px;
174 | overflow-y: auto;
175 |
176 | &:last-of-type {
177 | margin-bottom: 0px;
178 | }
179 |
180 | &.initialized {
181 | background-color: black;
182 | }
183 | }
184 | }
185 |
--------------------------------------------------------------------------------
/_sass/_syntax-highlighting.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * Syntax highlighting styles
3 | */
4 | .highlight {
5 | background: #fff;
6 | /* @extend %vertical-rhythm; */
7 |
8 | .highlighter-rouge & {
9 | background: #eef;
10 | }
11 |
12 | .c { color: #998; font-style: italic } // Comment
13 | .err { color: #a61717; } // Error
14 | .k { font-weight: bold } // Keyword
15 | .o { font-weight: bold } // Operator
16 | .cm { color: #998; font-style: italic } // Comment.Multiline
17 | .cp { color: #999; font-weight: bold } // Comment.Preproc
18 | .c1 { color: #998; font-style: italic } // Comment.Single
19 | .cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
20 | .gd { color: #000; } // Generic.Deleted
21 | .gd .x { color: #000; } // Generic.Deleted.Specific
22 | .ge { font-style: italic } // Generic.Emph
23 | .gr { color: #a00 } // Generic.Error
24 | .gh { color: #999 } // Generic.Heading
25 | .gi { color: #000;} // Generic.Inserted
26 | .gi .x { color: #000; } // Generic.Inserted.Specific
27 | .go { color: #888 } // Generic.Output
28 | .gp { color: #555 } // Generic.Prompt
29 | .gs { font-weight: bold } // Generic.Strong
30 | .gu { color: #aaa } // Generic.Subheading
31 | .gt { color: #a00 } // Generic.Traceback
32 | .kc { font-weight: bold } // Keyword.Constant
33 | .kd { font-weight: bold } // Keyword.Declaration
34 | .kp { font-weight: bold } // Keyword.Pseudo
35 | .kr { font-weight: bold } // Keyword.Reserved
36 | .kt { color: #458; font-weight: bold } // Keyword.Type
37 | .m { color: #099 } // Literal.Number
38 | .s { color: #d14 } // Literal.String
39 | .na { color: #008080 } // Name.Attribute
40 | .nb { color: #0086B3 } // Name.Builtin
41 | .nc { color: #458; font-weight: bold } // Name.Class
42 | .no { color: #008080 } // Name.Constant
43 | .ni { color: #800080 } // Name.Entity
44 | .ne { color: #900; font-weight: bold } // Name.Exception
45 | .nf { color: #900; font-weight: bold } // Name.Function
46 | .nn { color: #555 } // Name.Namespace
47 | .nt { color: #000080 } // Name.Tag
48 | .nv { color: #008080 } // Name.Variable
49 | .ow { font-weight: bold } // Operator.Word
50 | .w { color: #bbb } // Text.Whitespace
51 | .mf { color: #099 } // Literal.Number.Float
52 | .mh { color: #099 } // Literal.Number.Hex
53 | .mi { color: #099 } // Literal.Number.Integer
54 | .mo { color: #099 } // Literal.Number.Oct
55 | .sb { color: #d14 } // Literal.String.Backtick
56 | .sc { color: #d14 } // Literal.String.Char
57 | .sd { color: #d14 } // Literal.String.Doc
58 | .s2 { color: #d14 } // Literal.String.Double
59 | .se { color: #d14 } // Literal.String.Escape
60 | .sh { color: #d14 } // Literal.String.Heredoc
61 | .si { color: #d14 } // Literal.String.Interpol
62 | .sx { color: #d14 } // Literal.String.Other
63 | .sr { color: #009926 } // Literal.String.Regex
64 | .s1 { color: #d14 } // Literal.String.Single
65 | .ss { color: #990073 } // Literal.String.Symbol
66 | .bp { color: #999 } // Name.Builtin.Pseudo
67 | .vc { color: #008080 } // Name.Variable.Class
68 | .vg { color: #008080 } // Name.Variable.Global
69 | .vi { color: #008080 } // Name.Variable.Instance
70 | .il { color: #099 } // Literal.Number.Integer.Long
71 | }
72 |
--------------------------------------------------------------------------------
/_sass/component/_tag.scss:
--------------------------------------------------------------------------------
1 | .post-tag {
2 | display: inline-block;
3 | background: rgba($brand-color, 0.15);
4 | padding: 0 .5rem;
5 | margin-right: .5rem;
6 | border-radius: 4px;
7 | color: $brand-color;
8 | font-family: $base-font-family;
9 | font-size: 90%;
10 | &:before {
11 | content: "\f02b";
12 | font-family: FontAwesome;
13 | padding-right: .5em;
14 | }
15 | &:hover {
16 | text-decoration: none;
17 | background: $brand-color;
18 | color: #fff;
19 | }
20 | }
21 |
22 | small .post-tag {
23 | background: #eee;
24 | color: #000;
25 | &:before {
26 | content: none;
27 | }
28 | &:hover {
29 | text-decoration: none;
30 | background: #000;
31 | color: #fff;
32 | cursor: default;
33 | }
34 | }
35 |
36 | .tags-expo {
37 | :target:before {
38 | content:"";
39 | display:block;
40 | height:72px; /* fixed header height*/
41 | margin:-72px 0 0; /* negative fixed header height */
42 | }
43 | .tags-expo-list {
44 | @media (min-width: 38em) {
45 | font-size: 2.9rem;
46 | .post-tag {
47 | margin: .2em .3em;
48 | }
49 | }
50 | }
51 | .tags-expo-section {
52 | ul {
53 | list-style-type: circle;
54 | list-style-position: inside;
55 | padding: 0;
56 | li {
57 | padding: 0 1rem;
58 | &:hover {
59 | list-style-type: disc;
60 | }
61 | }
62 | }
63 | a {
64 | font-size: 20px;
65 | }
66 | .post-date {
67 | display: inline-block;
68 | font-size: 80%;
69 | color: #000;
70 | margin: 0;
71 | padding: 0;
72 | }
73 | font-family: $base-font-family;
74 | }
75 | }
76 |
77 |
--------------------------------------------------------------------------------
/about.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: About
4 | permalink: /about/
5 | ---
6 |
7 | ## What is Moby?
8 |
9 | Moby is an open framework created by Docker to assemble specialized container systems without reinventing the wheel. It provides a “lego set” of dozens of standard components and a framework for assembling them into custom platforms. For further information you can check the [Moby site](http://mobyproject.org/) which better describes the different components involved
10 |
11 | ## About Play with Moby
12 |
13 | Play-with-moby (PWM) is a site made by Docker captains [Marcos Nils](https://www.twitter.com/marcosnils) and [Jonathan Leibiusky](https://www.twitter.com/xetorthio) as an extension of [PWD](http://play-with-docker.com). PWM is a Moby playground which allows you to try different components of the platform in seconds. It gives you the experience of having a free Alpine Linux Virtual Machine in the cloud where you can build and run Moby projects and even create clusters to experiment. Under the hood DIND or Docker-in-Docker is used to give the effect of multiple VMs/PCs.
14 |
--------------------------------------------------------------------------------
/css/syntax-highlighting.scss:
--------------------------------------------------------------------------------
1 | ---
2 | # Only the main Sass file needs front matter (the dashes are enough)
3 | ---
4 | @charset "utf-8";
5 |
6 |
7 |
8 | // Our variables
9 | $base-font-family: Georgia, "Times New Roman", Times, serif;
10 | $base-font-size: 16px;
11 | $base-font-weight: 400;
12 | $small-font-size: $base-font-size * 0.875;
13 | $base-line-height: 1.5;
14 |
15 | $spacing-unit: 30px;
16 |
17 | $text-color: #111;
18 | $background-color: #fdfdfd;
19 | $brand-color: #2a7ae2;
20 |
21 | $grey-color: #828282;
22 | $grey-color-light: lighten($grey-color, 40%);
23 | $grey-color-dark: darken($grey-color, 25%);
24 |
25 | // Width of the content area
26 | $content-width: 800px;
27 |
28 | $on-palm: 600px;
29 | $on-laptop: 800px;
30 |
31 |
32 |
33 | // Use media queries like this:
34 | // @include media-query($on-palm) {
35 | // .wrapper {
36 | // padding-right: $spacing-unit / 2;
37 | // padding-left: $spacing-unit / 2;
38 | // }
39 | // }
40 | @mixin media-query($device) {
41 | @media screen and (max-width: $device) {
42 | @content;
43 | }
44 | }
45 |
46 |
47 |
48 | // Import partials from `sass_dir` (defaults to `_sass`)
49 | @import
50 | "syntax-highlighting"
51 | ;
52 |
--------------------------------------------------------------------------------
/docker-compose.yml:
--------------------------------------------------------------------------------
1 | version: '3'
2 |
3 | services:
4 |
5 | jekyll:
6 | image: jekyll/jekyll
7 | volumes:
8 | - ./:/srv/jekyll
9 | ports:
10 | - 4000:4000
11 | command: ["/usr/local/bin/jekyll", "serve"]
12 |
13 | api:
14 | image: franela/play-with-moby
15 | ports:
16 | - "8080:8080"
17 | volumes:
18 | - $GOPATH/src:/go/src
19 | redis:
20 | # pwd daemon container always needs to be named this way
21 | container_name: redis
22 | # use the latest golang image
23 | image: redis
24 | # go to the right place and starts the app
25 |
--------------------------------------------------------------------------------
/feed.xml:
--------------------------------------------------------------------------------
1 | ---
2 | layout: null
3 | ---
4 |
5 |
6 |
7 | {{ site.title | xml_escape }}
8 | {{ site.description | xml_escape }}
9 | {{ site.url }}{{ site.baseurl }}/
10 |
11 | {{ site.time | date_to_rfc822 }}
12 | {{ site.time | date_to_rfc822 }}
13 | Jekyll v{{ jekyll.version }}
14 | {% for post in site.posts limit:10 %}
15 | -
16 |
{{ post.title | xml_escape }}
17 | {{ post.content | xml_escape }}
18 | {{ post.date | date_to_rfc822 }}
19 | {{ post.url | prepend: site.baseurl | prepend: site.url }}
20 | {{ post.url | prepend: site.baseurl | prepend: site.url }}
21 | {% for tag in post.tags %}
22 | {{ tag | xml_escape }}
23 | {% endfor %}
24 | {% for cat in post.categories %}
25 | {{ cat | xml_escape }}
26 | {% endfor %}
27 |
28 | {% endfor %}
29 |
30 |
31 |
--------------------------------------------------------------------------------
/images/facebook.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/images/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/play-with-docker/play-with-moby/63f0a757376427c8d46b72229ad216c3a6e9b6a2/images/favicon-16x16.png
--------------------------------------------------------------------------------
/images/github.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/images/moby.svg:
--------------------------------------------------------------------------------
1 |
2 | moby-tail
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/images/twitter.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 |
8 |
9 |
10 |
11 |
12 |
15 |
16 |
17 |
27 |
28 |
29 |
30 |
31 |
106 |
--------------------------------------------------------------------------------