├── LICENSE ├── README.md └── djangoproject ├── db.sqlite3 ├── djangoproject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── asgi.py ├── phonebook │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── apps.cpython-37.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-37.pyc │ │ └── views.cpython-37.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_alter_contact_number.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-37.pyc │ │ │ ├── 0002_alter_contact_number.cpython-37.pyc │ │ │ └── __init__.cpython-37.pyc │ ├── models.py │ ├── static │ │ └── phonebook │ │ │ └── style.css │ ├── templates │ │ └── phonebook │ │ │ └── index.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── settings.py ├── urls.py └── wsgi.py ├── identifier.sqlite ├── manage.py └── requirements.txt /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 | # django phonebook basic web project 2 | ![Screenshot 2022-11-30 195308](https://user-images.githubusercontent.com/112943652/204872013-5fb9cada-f719-4376-aa1b-638554f71f3d.png) 3 | 4 | # Resources 5 | 6 |
7 | 8 | #### Django project part of software engineering training at SoftUni University 9 | 10 | Course lecturer - Mario Zahariev 11 | 12 | #### Course - Softuni Python Fudnamentals - September 2022 13 | -------------------------------------------------------------------------------- /djangoproject/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/db.sqlite3 -------------------------------------------------------------------------------- /djangoproject/djangoproject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/__init__.py -------------------------------------------------------------------------------- /djangoproject/djangoproject/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for djangoproject project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangoproject.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__init__.py -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/apps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/apps.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class PhonebookConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | default = False 7 | name = 'phonebook' 8 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/0001_initial.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 3.2.7 on 2022-08-03 16:41 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | initial = True 9 | 10 | dependencies = [ 11 | ] 12 | 13 | operations = [ 14 | migrations.CreateModel( 15 | name='Contact', 16 | fields=[ 17 | ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), 18 | ('name', models.CharField(max_length=30)), 19 | ('number', models.IntegerField()), 20 | ], 21 | ), 22 | ] 23 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/0002_alter_contact_number.py: -------------------------------------------------------------------------------- 1 | # Generated by Django 3.2.7 on 2022-08-03 17:31 2 | 3 | from django.db import migrations, models 4 | 5 | 6 | class Migration(migrations.Migration): 7 | 8 | dependencies = [ 9 | ('phonebook', '0001_initial'), 10 | ] 11 | 12 | operations = [ 13 | migrations.AlterField( 14 | model_name='contact', 15 | name='number', 16 | field=models.CharField(max_length=13), 17 | ), 18 | ] 19 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/migrations/__init__.py -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/__pycache__/0001_initial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/migrations/__pycache__/0001_initial.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/__pycache__/0002_alter_contact_number.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/migrations/__pycache__/0002_alter_contact_number.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/djangoproject/phonebook/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | 4 | class Contact(models.Model): 5 | name = models.CharField(max_length=30) 6 | number = models.CharField(max_length=13) -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/static/phonebook/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css?family=Ubuntu:400,700"); 2 | /*! 3 | * bootswatch v3.3.7 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.7 (http://getbootstrap.com) 11 | * Copyright 2011-2016 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: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; 1090 | font-size: 14px; 1091 | line-height: 1.42857143; 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: #e95420; 1105 | text-decoration: none; 1106 | } 1107 | a:hover, 1108 | a:focus { 1109 | color: #ac3911; 1110 | text-decoration: underline; 1111 | } 1112 | a:focus { 1113 | outline: 5px auto -webkit-focus-ring-color; 1114 | outline-offset: -2px; 1115 | } 1116 | figure { 1117 | margin: 0; 1118 | } 1119 | img { 1120 | vertical-align: middle; 1121 | } 1122 | .img-responsive, 1123 | .thumbnail > img, 1124 | .thumbnail a > img, 1125 | .carousel-inner > .item > img, 1126 | .carousel-inner > .item > a > img { 1127 | display: block; 1128 | max-width: 100%; 1129 | height: auto; 1130 | } 1131 | .img-rounded { 1132 | border-radius: 6px; 1133 | } 1134 | .img-thumbnail { 1135 | padding: 4px; 1136 | line-height: 1.42857143; 1137 | background-color: #ffffff; 1138 | border: 1px solid #dddddd; 1139 | border-radius: 4px; 1140 | -webkit-transition: all 0.2s ease-in-out; 1141 | -o-transition: all 0.2s ease-in-out; 1142 | transition: all 0.2s ease-in-out; 1143 | display: inline-block; 1144 | max-width: 100%; 1145 | height: auto; 1146 | } 1147 | .img-circle { 1148 | border-radius: 50%; 1149 | } 1150 | hr { 1151 | margin-top: 20px; 1152 | margin-bottom: 20px; 1153 | border: 0; 1154 | border-top: 1px solid #eeeeee; 1155 | } 1156 | .sr-only { 1157 | position: absolute; 1158 | width: 1px; 1159 | height: 1px; 1160 | margin: -1px; 1161 | padding: 0; 1162 | overflow: hidden; 1163 | clip: rect(0, 0, 0, 0); 1164 | border: 0; 1165 | } 1166 | .sr-only-focusable:active, 1167 | .sr-only-focusable:focus { 1168 | position: static; 1169 | width: auto; 1170 | height: auto; 1171 | margin: 0; 1172 | overflow: visible; 1173 | clip: auto; 1174 | } 1175 | [role="button"] { 1176 | cursor: pointer; 1177 | } 1178 | h1, 1179 | h2, 1180 | h3, 1181 | h4, 1182 | h5, 1183 | h6, 1184 | .h1, 1185 | .h2, 1186 | .h3, 1187 | .h4, 1188 | .h5, 1189 | .h6 { 1190 | font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; 1191 | font-weight: 500; 1192 | line-height: 1.1; 1193 | color: inherit; 1194 | } 1195 | h1 small, 1196 | h2 small, 1197 | h3 small, 1198 | h4 small, 1199 | h5 small, 1200 | h6 small, 1201 | .h1 small, 1202 | .h2 small, 1203 | .h3 small, 1204 | .h4 small, 1205 | .h5 small, 1206 | .h6 small, 1207 | h1 .small, 1208 | h2 .small, 1209 | h3 .small, 1210 | h4 .small, 1211 | h5 .small, 1212 | h6 .small, 1213 | .h1 .small, 1214 | .h2 .small, 1215 | .h3 .small, 1216 | .h4 .small, 1217 | .h5 .small, 1218 | .h6 .small { 1219 | font-weight: normal; 1220 | line-height: 1; 1221 | color: #aea79f; 1222 | } 1223 | h1, 1224 | .h1, 1225 | h2, 1226 | .h2, 1227 | h3, 1228 | .h3 { 1229 | margin-top: 20px; 1230 | margin-bottom: 10px; 1231 | } 1232 | h1 small, 1233 | .h1 small, 1234 | h2 small, 1235 | .h2 small, 1236 | h3 small, 1237 | .h3 small, 1238 | h1 .small, 1239 | .h1 .small, 1240 | h2 .small, 1241 | .h2 .small, 1242 | h3 .small, 1243 | .h3 .small { 1244 | font-size: 65%; 1245 | } 1246 | h4, 1247 | .h4, 1248 | h5, 1249 | .h5, 1250 | h6, 1251 | .h6 { 1252 | margin-top: 10px; 1253 | margin-bottom: 10px; 1254 | } 1255 | h4 small, 1256 | .h4 small, 1257 | h5 small, 1258 | .h5 small, 1259 | h6 small, 1260 | .h6 small, 1261 | h4 .small, 1262 | .h4 .small, 1263 | h5 .small, 1264 | .h5 .small, 1265 | h6 .small, 1266 | .h6 .small { 1267 | font-size: 75%; 1268 | } 1269 | h1, 1270 | .h1 { 1271 | font-size: 36px; 1272 | } 1273 | h2, 1274 | .h2 { 1275 | font-size: 30px; 1276 | } 1277 | h3, 1278 | .h3 { 1279 | font-size: 24px; 1280 | } 1281 | h4, 1282 | .h4 { 1283 | font-size: 18px; 1284 | } 1285 | h5, 1286 | .h5 { 1287 | font-size: 14px; 1288 | } 1289 | h6, 1290 | .h6 { 1291 | font-size: 12px; 1292 | } 1293 | p { 1294 | margin: 0 0 10px; 1295 | } 1296 | .lead { 1297 | margin-bottom: 20px; 1298 | font-size: 16px; 1299 | font-weight: 300; 1300 | line-height: 1.4; 1301 | } 1302 | @media (min-width: 768px) { 1303 | .lead { 1304 | font-size: 21px; 1305 | } 1306 | } 1307 | small, 1308 | .small { 1309 | font-size: 85%; 1310 | } 1311 | mark, 1312 | .mark { 1313 | background-color: #fcf8e3; 1314 | padding: .2em; 1315 | } 1316 | .text-left { 1317 | text-align: left; 1318 | } 1319 | .text-right { 1320 | text-align: right; 1321 | } 1322 | .text-center { 1323 | text-align: center; 1324 | } 1325 | .text-justify { 1326 | text-align: justify; 1327 | } 1328 | .text-nowrap { 1329 | white-space: nowrap; 1330 | } 1331 | .text-lowercase { 1332 | text-transform: lowercase; 1333 | } 1334 | .text-uppercase { 1335 | text-transform: uppercase; 1336 | } 1337 | .text-capitalize { 1338 | text-transform: capitalize; 1339 | } 1340 | .text-muted { 1341 | color: #aea79f; 1342 | } 1343 | .text-primary { 1344 | color: #e95420; 1345 | } 1346 | a.text-primary:hover, 1347 | a.text-primary:focus { 1348 | color: #c34113; 1349 | } 1350 | .text-success { 1351 | color: #468847; 1352 | } 1353 | a.text-success:hover, 1354 | a.text-success:focus { 1355 | color: #356635; 1356 | } 1357 | .text-info { 1358 | color: #3a87ad; 1359 | } 1360 | a.text-info:hover, 1361 | a.text-info:focus { 1362 | color: #2d6987; 1363 | } 1364 | .text-warning { 1365 | color: #c09853; 1366 | } 1367 | a.text-warning:hover, 1368 | a.text-warning:focus { 1369 | color: #a47e3c; 1370 | } 1371 | .text-danger { 1372 | color: #b94a48; 1373 | } 1374 | a.text-danger:hover, 1375 | a.text-danger:focus { 1376 | color: #953b39; 1377 | } 1378 | .bg-primary { 1379 | color: #fff; 1380 | background-color: #e95420; 1381 | } 1382 | a.bg-primary:hover, 1383 | a.bg-primary:focus { 1384 | background-color: #c34113; 1385 | } 1386 | .bg-success { 1387 | background-color: #dff0d8; 1388 | } 1389 | a.bg-success:hover, 1390 | a.bg-success:focus { 1391 | background-color: #c1e2b3; 1392 | } 1393 | .bg-info { 1394 | background-color: #d9edf7; 1395 | } 1396 | a.bg-info:hover, 1397 | a.bg-info:focus { 1398 | background-color: #afd9ee; 1399 | } 1400 | .bg-warning { 1401 | background-color: #fcf8e3; 1402 | } 1403 | a.bg-warning:hover, 1404 | a.bg-warning:focus { 1405 | background-color: #f7ecb5; 1406 | } 1407 | .bg-danger { 1408 | background-color: #f2dede; 1409 | } 1410 | a.bg-danger:hover, 1411 | a.bg-danger:focus { 1412 | background-color: #e4b9b9; 1413 | } 1414 | .page-header { 1415 | padding-bottom: 9px; 1416 | margin: 40px 0 20px; 1417 | border-bottom: 1px solid #eeeeee; 1418 | } 1419 | ul, 1420 | ol { 1421 | margin-top: 0; 1422 | margin-bottom: 10px; 1423 | } 1424 | ul ul, 1425 | ol ul, 1426 | ul ol, 1427 | ol ol { 1428 | margin-bottom: 0; 1429 | } 1430 | .list-unstyled { 1431 | padding-left: 0; 1432 | list-style: none; 1433 | } 1434 | .list-inline { 1435 | padding-left: 0; 1436 | list-style: none; 1437 | margin-left: -5px; 1438 | } 1439 | .list-inline > li { 1440 | display: inline-block; 1441 | padding-left: 5px; 1442 | padding-right: 5px; 1443 | } 1444 | dl { 1445 | margin-top: 0; 1446 | margin-bottom: 20px; 1447 | } 1448 | dt, 1449 | dd { 1450 | line-height: 1.42857143; 1451 | } 1452 | dt { 1453 | font-weight: bold; 1454 | } 1455 | dd { 1456 | margin-left: 0; 1457 | } 1458 | @media (min-width: 768px) { 1459 | .dl-horizontal dt { 1460 | float: left; 1461 | width: 160px; 1462 | clear: left; 1463 | text-align: right; 1464 | overflow: hidden; 1465 | text-overflow: ellipsis; 1466 | white-space: nowrap; 1467 | } 1468 | .dl-horizontal dd { 1469 | margin-left: 180px; 1470 | } 1471 | } 1472 | abbr[title], 1473 | abbr[data-original-title] { 1474 | cursor: help; 1475 | border-bottom: 1px dotted #aea79f; 1476 | } 1477 | .initialism { 1478 | font-size: 90%; 1479 | text-transform: uppercase; 1480 | } 1481 | blockquote { 1482 | padding: 10px 20px; 1483 | margin: 0 0 20px; 1484 | font-size: 17.5px; 1485 | border-left: 5px solid #eeeeee; 1486 | } 1487 | blockquote p:last-child, 1488 | blockquote ul:last-child, 1489 | blockquote ol:last-child { 1490 | margin-bottom: 0; 1491 | } 1492 | blockquote footer, 1493 | blockquote small, 1494 | blockquote .small { 1495 | display: block; 1496 | font-size: 80%; 1497 | line-height: 1.42857143; 1498 | color: #aea79f; 1499 | } 1500 | blockquote footer:before, 1501 | blockquote small:before, 1502 | blockquote .small:before { 1503 | content: '\2014 \00A0'; 1504 | } 1505 | .blockquote-reverse, 1506 | blockquote.pull-right { 1507 | padding-right: 15px; 1508 | padding-left: 0; 1509 | border-right: 5px solid #eeeeee; 1510 | border-left: 0; 1511 | text-align: right; 1512 | } 1513 | .blockquote-reverse footer:before, 1514 | blockquote.pull-right footer:before, 1515 | .blockquote-reverse small:before, 1516 | blockquote.pull-right small:before, 1517 | .blockquote-reverse .small:before, 1518 | blockquote.pull-right .small:before { 1519 | content: ''; 1520 | } 1521 | .blockquote-reverse footer:after, 1522 | blockquote.pull-right footer:after, 1523 | .blockquote-reverse small:after, 1524 | blockquote.pull-right small:after, 1525 | .blockquote-reverse .small:after, 1526 | blockquote.pull-right .small:after { 1527 | content: '\00A0 \2014'; 1528 | } 1529 | address { 1530 | margin-bottom: 20px; 1531 | font-style: normal; 1532 | line-height: 1.42857143; 1533 | } 1534 | code, 1535 | kbd, 1536 | pre, 1537 | samp { 1538 | font-family: Menlo, Monaco, Consolas, "Courier New", monospace; 1539 | } 1540 | code { 1541 | padding: 2px 4px; 1542 | font-size: 90%; 1543 | color: #c7254e; 1544 | background-color: #f9f2f4; 1545 | border-radius: 4px; 1546 | } 1547 | kbd { 1548 | padding: 2px 4px; 1549 | font-size: 90%; 1550 | color: #ffffff; 1551 | background-color: #333333; 1552 | border-radius: 3px; 1553 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); 1554 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); 1555 | } 1556 | kbd kbd { 1557 | padding: 0; 1558 | font-size: 100%; 1559 | font-weight: bold; 1560 | -webkit-box-shadow: none; 1561 | box-shadow: none; 1562 | } 1563 | pre { 1564 | display: block; 1565 | padding: 9.5px; 1566 | margin: 0 0 10px; 1567 | font-size: 13px; 1568 | line-height: 1.42857143; 1569 | word-break: break-all; 1570 | word-wrap: break-word; 1571 | color: #333333; 1572 | background-color: #f5f5f5; 1573 | border: 1px solid #cccccc; 1574 | border-radius: 4px; 1575 | } 1576 | pre code { 1577 | padding: 0; 1578 | font-size: inherit; 1579 | color: inherit; 1580 | white-space: pre-wrap; 1581 | background-color: transparent; 1582 | border-radius: 0; 1583 | } 1584 | .pre-scrollable { 1585 | max-height: 340px; 1586 | overflow-y: scroll; 1587 | } 1588 | .container { 1589 | margin-right: auto; 1590 | margin-left: auto; 1591 | padding-left: 15px; 1592 | padding-right: 15px; 1593 | } 1594 | @media (min-width: 768px) { 1595 | .container { 1596 | width: 750px; 1597 | } 1598 | } 1599 | @media (min-width: 992px) { 1600 | .container { 1601 | width: 970px; 1602 | } 1603 | } 1604 | @media (min-width: 1200px) { 1605 | .container { 1606 | width: 1170px; 1607 | } 1608 | } 1609 | .container-fluid { 1610 | margin-right: auto; 1611 | margin-left: auto; 1612 | padding-left: 15px; 1613 | padding-right: 15px; 1614 | } 1615 | .row { 1616 | margin-left: -15px; 1617 | margin-right: -15px; 1618 | } 1619 | .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 { 1620 | position: relative; 1621 | min-height: 1px; 1622 | padding-left: 15px; 1623 | padding-right: 15px; 1624 | } 1625 | .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 { 1626 | float: left; 1627 | } 1628 | .col-xs-12 { 1629 | width: 100%; 1630 | } 1631 | .col-xs-11 { 1632 | width: 91.66666667%; 1633 | } 1634 | .col-xs-10 { 1635 | width: 83.33333333%; 1636 | } 1637 | .col-xs-9 { 1638 | width: 75%; 1639 | } 1640 | .col-xs-8 { 1641 | width: 66.66666667%; 1642 | } 1643 | .col-xs-7 { 1644 | width: 58.33333333%; 1645 | } 1646 | .col-xs-6 { 1647 | width: 50%; 1648 | } 1649 | .col-xs-5 { 1650 | width: 41.66666667%; 1651 | } 1652 | .col-xs-4 { 1653 | width: 33.33333333%; 1654 | } 1655 | .col-xs-3 { 1656 | width: 25%; 1657 | } 1658 | .col-xs-2 { 1659 | width: 16.66666667%; 1660 | } 1661 | .col-xs-1 { 1662 | width: 8.33333333%; 1663 | } 1664 | .col-xs-pull-12 { 1665 | right: 100%; 1666 | } 1667 | .col-xs-pull-11 { 1668 | right: 91.66666667%; 1669 | } 1670 | .col-xs-pull-10 { 1671 | right: 83.33333333%; 1672 | } 1673 | .col-xs-pull-9 { 1674 | right: 75%; 1675 | } 1676 | .col-xs-pull-8 { 1677 | right: 66.66666667%; 1678 | } 1679 | .col-xs-pull-7 { 1680 | right: 58.33333333%; 1681 | } 1682 | .col-xs-pull-6 { 1683 | right: 50%; 1684 | } 1685 | .col-xs-pull-5 { 1686 | right: 41.66666667%; 1687 | } 1688 | .col-xs-pull-4 { 1689 | right: 33.33333333%; 1690 | } 1691 | .col-xs-pull-3 { 1692 | right: 25%; 1693 | } 1694 | .col-xs-pull-2 { 1695 | right: 16.66666667%; 1696 | } 1697 | .col-xs-pull-1 { 1698 | right: 8.33333333%; 1699 | } 1700 | .col-xs-pull-0 { 1701 | right: auto; 1702 | } 1703 | .col-xs-push-12 { 1704 | left: 100%; 1705 | } 1706 | .col-xs-push-11 { 1707 | left: 91.66666667%; 1708 | } 1709 | .col-xs-push-10 { 1710 | left: 83.33333333%; 1711 | } 1712 | .col-xs-push-9 { 1713 | left: 75%; 1714 | } 1715 | .col-xs-push-8 { 1716 | left: 66.66666667%; 1717 | } 1718 | .col-xs-push-7 { 1719 | left: 58.33333333%; 1720 | } 1721 | .col-xs-push-6 { 1722 | left: 50%; 1723 | } 1724 | .col-xs-push-5 { 1725 | left: 41.66666667%; 1726 | } 1727 | .col-xs-push-4 { 1728 | left: 33.33333333%; 1729 | } 1730 | .col-xs-push-3 { 1731 | left: 25%; 1732 | } 1733 | .col-xs-push-2 { 1734 | left: 16.66666667%; 1735 | } 1736 | .col-xs-push-1 { 1737 | left: 8.33333333%; 1738 | } 1739 | .col-xs-push-0 { 1740 | left: auto; 1741 | } 1742 | .col-xs-offset-12 { 1743 | margin-left: 100%; 1744 | } 1745 | .col-xs-offset-11 { 1746 | margin-left: 91.66666667%; 1747 | } 1748 | .col-xs-offset-10 { 1749 | margin-left: 83.33333333%; 1750 | } 1751 | .col-xs-offset-9 { 1752 | margin-left: 75%; 1753 | } 1754 | .col-xs-offset-8 { 1755 | margin-left: 66.66666667%; 1756 | } 1757 | .col-xs-offset-7 { 1758 | margin-left: 58.33333333%; 1759 | } 1760 | .col-xs-offset-6 { 1761 | margin-left: 50%; 1762 | } 1763 | .col-xs-offset-5 { 1764 | margin-left: 41.66666667%; 1765 | } 1766 | .col-xs-offset-4 { 1767 | margin-left: 33.33333333%; 1768 | } 1769 | .col-xs-offset-3 { 1770 | margin-left: 25%; 1771 | } 1772 | .col-xs-offset-2 { 1773 | margin-left: 16.66666667%; 1774 | } 1775 | .col-xs-offset-1 { 1776 | margin-left: 8.33333333%; 1777 | } 1778 | .col-xs-offset-0 { 1779 | margin-left: 0%; 1780 | } 1781 | @media (min-width: 768px) { 1782 | .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 { 1783 | float: left; 1784 | } 1785 | .col-sm-12 { 1786 | width: 100%; 1787 | } 1788 | .col-sm-11 { 1789 | width: 91.66666667%; 1790 | } 1791 | .col-sm-10 { 1792 | width: 83.33333333%; 1793 | } 1794 | .col-sm-9 { 1795 | width: 75%; 1796 | } 1797 | .col-sm-8 { 1798 | width: 66.66666667%; 1799 | } 1800 | .col-sm-7 { 1801 | width: 58.33333333%; 1802 | } 1803 | .col-sm-6 { 1804 | width: 50%; 1805 | } 1806 | .col-sm-5 { 1807 | width: 41.66666667%; 1808 | } 1809 | .col-sm-4 { 1810 | width: 33.33333333%; 1811 | } 1812 | .col-sm-3 { 1813 | width: 25%; 1814 | } 1815 | .col-sm-2 { 1816 | width: 16.66666667%; 1817 | } 1818 | .col-sm-1 { 1819 | width: 8.33333333%; 1820 | } 1821 | .col-sm-pull-12 { 1822 | right: 100%; 1823 | } 1824 | .col-sm-pull-11 { 1825 | right: 91.66666667%; 1826 | } 1827 | .col-sm-pull-10 { 1828 | right: 83.33333333%; 1829 | } 1830 | .col-sm-pull-9 { 1831 | right: 75%; 1832 | } 1833 | .col-sm-pull-8 { 1834 | right: 66.66666667%; 1835 | } 1836 | .col-sm-pull-7 { 1837 | right: 58.33333333%; 1838 | } 1839 | .col-sm-pull-6 { 1840 | right: 50%; 1841 | } 1842 | .col-sm-pull-5 { 1843 | right: 41.66666667%; 1844 | } 1845 | .col-sm-pull-4 { 1846 | right: 33.33333333%; 1847 | } 1848 | .col-sm-pull-3 { 1849 | right: 25%; 1850 | } 1851 | .col-sm-pull-2 { 1852 | right: 16.66666667%; 1853 | } 1854 | .col-sm-pull-1 { 1855 | right: 8.33333333%; 1856 | } 1857 | .col-sm-pull-0 { 1858 | right: auto; 1859 | } 1860 | .col-sm-push-12 { 1861 | left: 100%; 1862 | } 1863 | .col-sm-push-11 { 1864 | left: 91.66666667%; 1865 | } 1866 | .col-sm-push-10 { 1867 | left: 83.33333333%; 1868 | } 1869 | .col-sm-push-9 { 1870 | left: 75%; 1871 | } 1872 | .col-sm-push-8 { 1873 | left: 66.66666667%; 1874 | } 1875 | .col-sm-push-7 { 1876 | left: 58.33333333%; 1877 | } 1878 | .col-sm-push-6 { 1879 | left: 50%; 1880 | } 1881 | .col-sm-push-5 { 1882 | left: 41.66666667%; 1883 | } 1884 | .col-sm-push-4 { 1885 | left: 33.33333333%; 1886 | } 1887 | .col-sm-push-3 { 1888 | left: 25%; 1889 | } 1890 | .col-sm-push-2 { 1891 | left: 16.66666667%; 1892 | } 1893 | .col-sm-push-1 { 1894 | left: 8.33333333%; 1895 | } 1896 | .col-sm-push-0 { 1897 | left: auto; 1898 | } 1899 | .col-sm-offset-12 { 1900 | margin-left: 100%; 1901 | } 1902 | .col-sm-offset-11 { 1903 | margin-left: 91.66666667%; 1904 | } 1905 | .col-sm-offset-10 { 1906 | margin-left: 83.33333333%; 1907 | } 1908 | .col-sm-offset-9 { 1909 | margin-left: 75%; 1910 | } 1911 | .col-sm-offset-8 { 1912 | margin-left: 66.66666667%; 1913 | } 1914 | .col-sm-offset-7 { 1915 | margin-left: 58.33333333%; 1916 | } 1917 | .col-sm-offset-6 { 1918 | margin-left: 50%; 1919 | } 1920 | .col-sm-offset-5 { 1921 | margin-left: 41.66666667%; 1922 | } 1923 | .col-sm-offset-4 { 1924 | margin-left: 33.33333333%; 1925 | } 1926 | .col-sm-offset-3 { 1927 | margin-left: 25%; 1928 | } 1929 | .col-sm-offset-2 { 1930 | margin-left: 16.66666667%; 1931 | } 1932 | .col-sm-offset-1 { 1933 | margin-left: 8.33333333%; 1934 | } 1935 | .col-sm-offset-0 { 1936 | margin-left: 0%; 1937 | } 1938 | } 1939 | @media (min-width: 992px) { 1940 | .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 { 1941 | float: left; 1942 | } 1943 | .col-md-12 { 1944 | width: 100%; 1945 | } 1946 | .col-md-11 { 1947 | width: 91.66666667%; 1948 | } 1949 | .col-md-10 { 1950 | width: 83.33333333%; 1951 | } 1952 | .col-md-9 { 1953 | width: 75%; 1954 | } 1955 | .col-md-8 { 1956 | width: 66.66666667%; 1957 | } 1958 | .col-md-7 { 1959 | width: 58.33333333%; 1960 | } 1961 | .col-md-6 { 1962 | width: 50%; 1963 | } 1964 | .col-md-5 { 1965 | width: 41.66666667%; 1966 | } 1967 | .col-md-4 { 1968 | width: 33.33333333%; 1969 | } 1970 | .col-md-3 { 1971 | width: 25%; 1972 | } 1973 | .col-md-2 { 1974 | width: 16.66666667%; 1975 | } 1976 | .col-md-1 { 1977 | width: 8.33333333%; 1978 | } 1979 | .col-md-pull-12 { 1980 | right: 100%; 1981 | } 1982 | .col-md-pull-11 { 1983 | right: 91.66666667%; 1984 | } 1985 | .col-md-pull-10 { 1986 | right: 83.33333333%; 1987 | } 1988 | .col-md-pull-9 { 1989 | right: 75%; 1990 | } 1991 | .col-md-pull-8 { 1992 | right: 66.66666667%; 1993 | } 1994 | .col-md-pull-7 { 1995 | right: 58.33333333%; 1996 | } 1997 | .col-md-pull-6 { 1998 | right: 50%; 1999 | } 2000 | .col-md-pull-5 { 2001 | right: 41.66666667%; 2002 | } 2003 | .col-md-pull-4 { 2004 | right: 33.33333333%; 2005 | } 2006 | .col-md-pull-3 { 2007 | right: 25%; 2008 | } 2009 | .col-md-pull-2 { 2010 | right: 16.66666667%; 2011 | } 2012 | .col-md-pull-1 { 2013 | right: 8.33333333%; 2014 | } 2015 | .col-md-pull-0 { 2016 | right: auto; 2017 | } 2018 | .col-md-push-12 { 2019 | left: 100%; 2020 | } 2021 | .col-md-push-11 { 2022 | left: 91.66666667%; 2023 | } 2024 | .col-md-push-10 { 2025 | left: 83.33333333%; 2026 | } 2027 | .col-md-push-9 { 2028 | left: 75%; 2029 | } 2030 | .col-md-push-8 { 2031 | left: 66.66666667%; 2032 | } 2033 | .col-md-push-7 { 2034 | left: 58.33333333%; 2035 | } 2036 | .col-md-push-6 { 2037 | left: 50%; 2038 | } 2039 | .col-md-push-5 { 2040 | left: 41.66666667%; 2041 | } 2042 | .col-md-push-4 { 2043 | left: 33.33333333%; 2044 | } 2045 | .col-md-push-3 { 2046 | left: 25%; 2047 | } 2048 | .col-md-push-2 { 2049 | left: 16.66666667%; 2050 | } 2051 | .col-md-push-1 { 2052 | left: 8.33333333%; 2053 | } 2054 | .col-md-push-0 { 2055 | left: auto; 2056 | } 2057 | .col-md-offset-12 { 2058 | margin-left: 100%; 2059 | } 2060 | .col-md-offset-11 { 2061 | margin-left: 91.66666667%; 2062 | } 2063 | .col-md-offset-10 { 2064 | margin-left: 83.33333333%; 2065 | } 2066 | .col-md-offset-9 { 2067 | margin-left: 75%; 2068 | } 2069 | .col-md-offset-8 { 2070 | margin-left: 66.66666667%; 2071 | } 2072 | .col-md-offset-7 { 2073 | margin-left: 58.33333333%; 2074 | } 2075 | .col-md-offset-6 { 2076 | margin-left: 50%; 2077 | } 2078 | .col-md-offset-5 { 2079 | margin-left: 41.66666667%; 2080 | } 2081 | .col-md-offset-4 { 2082 | margin-left: 33.33333333%; 2083 | } 2084 | .col-md-offset-3 { 2085 | margin-left: 25%; 2086 | } 2087 | .col-md-offset-2 { 2088 | margin-left: 16.66666667%; 2089 | } 2090 | .col-md-offset-1 { 2091 | margin-left: 8.33333333%; 2092 | } 2093 | .col-md-offset-0 { 2094 | margin-left: 0%; 2095 | } 2096 | } 2097 | @media (min-width: 1200px) { 2098 | .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 { 2099 | float: left; 2100 | } 2101 | .col-lg-12 { 2102 | width: 100%; 2103 | } 2104 | .col-lg-11 { 2105 | width: 91.66666667%; 2106 | } 2107 | .col-lg-10 { 2108 | width: 83.33333333%; 2109 | } 2110 | .col-lg-9 { 2111 | width: 75%; 2112 | } 2113 | .col-lg-8 { 2114 | width: 66.66666667%; 2115 | } 2116 | .col-lg-7 { 2117 | width: 58.33333333%; 2118 | } 2119 | .col-lg-6 { 2120 | width: 50%; 2121 | } 2122 | .col-lg-5 { 2123 | width: 41.66666667%; 2124 | } 2125 | .col-lg-4 { 2126 | width: 33.33333333%; 2127 | } 2128 | .col-lg-3 { 2129 | width: 25%; 2130 | } 2131 | .col-lg-2 { 2132 | width: 16.66666667%; 2133 | } 2134 | .col-lg-1 { 2135 | width: 8.33333333%; 2136 | } 2137 | .col-lg-pull-12 { 2138 | right: 100%; 2139 | } 2140 | .col-lg-pull-11 { 2141 | right: 91.66666667%; 2142 | } 2143 | .col-lg-pull-10 { 2144 | right: 83.33333333%; 2145 | } 2146 | .col-lg-pull-9 { 2147 | right: 75%; 2148 | } 2149 | .col-lg-pull-8 { 2150 | right: 66.66666667%; 2151 | } 2152 | .col-lg-pull-7 { 2153 | right: 58.33333333%; 2154 | } 2155 | .col-lg-pull-6 { 2156 | right: 50%; 2157 | } 2158 | .col-lg-pull-5 { 2159 | right: 41.66666667%; 2160 | } 2161 | .col-lg-pull-4 { 2162 | right: 33.33333333%; 2163 | } 2164 | .col-lg-pull-3 { 2165 | right: 25%; 2166 | } 2167 | .col-lg-pull-2 { 2168 | right: 16.66666667%; 2169 | } 2170 | .col-lg-pull-1 { 2171 | right: 8.33333333%; 2172 | } 2173 | .col-lg-pull-0 { 2174 | right: auto; 2175 | } 2176 | .col-lg-push-12 { 2177 | left: 100%; 2178 | } 2179 | .col-lg-push-11 { 2180 | left: 91.66666667%; 2181 | } 2182 | .col-lg-push-10 { 2183 | left: 83.33333333%; 2184 | } 2185 | .col-lg-push-9 { 2186 | left: 75%; 2187 | } 2188 | .col-lg-push-8 { 2189 | left: 66.66666667%; 2190 | } 2191 | .col-lg-push-7 { 2192 | left: 58.33333333%; 2193 | } 2194 | .col-lg-push-6 { 2195 | left: 50%; 2196 | } 2197 | .col-lg-push-5 { 2198 | left: 41.66666667%; 2199 | } 2200 | .col-lg-push-4 { 2201 | left: 33.33333333%; 2202 | } 2203 | .col-lg-push-3 { 2204 | left: 25%; 2205 | } 2206 | .col-lg-push-2 { 2207 | left: 16.66666667%; 2208 | } 2209 | .col-lg-push-1 { 2210 | left: 8.33333333%; 2211 | } 2212 | .col-lg-push-0 { 2213 | left: auto; 2214 | } 2215 | .col-lg-offset-12 { 2216 | margin-left: 100%; 2217 | } 2218 | .col-lg-offset-11 { 2219 | margin-left: 91.66666667%; 2220 | } 2221 | .col-lg-offset-10 { 2222 | margin-left: 83.33333333%; 2223 | } 2224 | .col-lg-offset-9 { 2225 | margin-left: 75%; 2226 | } 2227 | .col-lg-offset-8 { 2228 | margin-left: 66.66666667%; 2229 | } 2230 | .col-lg-offset-7 { 2231 | margin-left: 58.33333333%; 2232 | } 2233 | .col-lg-offset-6 { 2234 | margin-left: 50%; 2235 | } 2236 | .col-lg-offset-5 { 2237 | margin-left: 41.66666667%; 2238 | } 2239 | .col-lg-offset-4 { 2240 | margin-left: 33.33333333%; 2241 | } 2242 | .col-lg-offset-3 { 2243 | margin-left: 25%; 2244 | } 2245 | .col-lg-offset-2 { 2246 | margin-left: 16.66666667%; 2247 | } 2248 | .col-lg-offset-1 { 2249 | margin-left: 8.33333333%; 2250 | } 2251 | .col-lg-offset-0 { 2252 | margin-left: 0%; 2253 | } 2254 | } 2255 | table { 2256 | background-color: transparent; 2257 | } 2258 | caption { 2259 | padding-top: 8px; 2260 | padding-bottom: 8px; 2261 | color: #aea79f; 2262 | text-align: left; 2263 | } 2264 | th { 2265 | text-align: left; 2266 | } 2267 | .table { 2268 | width: 100%; 2269 | max-width: 100%; 2270 | margin-bottom: 20px; 2271 | } 2272 | .table > thead > tr > th, 2273 | .table > tbody > tr > th, 2274 | .table > tfoot > tr > th, 2275 | .table > thead > tr > td, 2276 | .table > tbody > tr > td, 2277 | .table > tfoot > tr > td { 2278 | padding: 8px; 2279 | line-height: 1.42857143; 2280 | vertical-align: top; 2281 | border-top: 1px solid #dddddd; 2282 | } 2283 | .table > thead > tr > th { 2284 | vertical-align: bottom; 2285 | border-bottom: 2px solid #dddddd; 2286 | } 2287 | .table > caption + thead > tr:first-child > th, 2288 | .table > colgroup + thead > tr:first-child > th, 2289 | .table > thead:first-child > tr:first-child > th, 2290 | .table > caption + thead > tr:first-child > td, 2291 | .table > colgroup + thead > tr:first-child > td, 2292 | .table > thead:first-child > tr:first-child > td { 2293 | border-top: 0; 2294 | } 2295 | .table > tbody + tbody { 2296 | border-top: 2px solid #dddddd; 2297 | } 2298 | .table .table { 2299 | background-color: #ffffff; 2300 | } 2301 | .table-condensed > thead > tr > th, 2302 | .table-condensed > tbody > tr > th, 2303 | .table-condensed > tfoot > tr > th, 2304 | .table-condensed > thead > tr > td, 2305 | .table-condensed > tbody > tr > td, 2306 | .table-condensed > tfoot > tr > td { 2307 | padding: 5px; 2308 | } 2309 | .table-bordered { 2310 | border: 1px solid #dddddd; 2311 | } 2312 | .table-bordered > thead > tr > th, 2313 | .table-bordered > tbody > tr > th, 2314 | .table-bordered > tfoot > tr > th, 2315 | .table-bordered > thead > tr > td, 2316 | .table-bordered > tbody > tr > td, 2317 | .table-bordered > tfoot > tr > td { 2318 | border: 1px solid #dddddd; 2319 | } 2320 | .table-bordered > thead > tr > th, 2321 | .table-bordered > thead > tr > td { 2322 | border-bottom-width: 2px; 2323 | } 2324 | .table-striped > tbody > tr:nth-of-type(odd) { 2325 | background-color: #f9f9f9; 2326 | } 2327 | .table-hover > tbody > tr:hover { 2328 | background-color: #f5f5f5; 2329 | } 2330 | table col[class*="col-"] { 2331 | position: static; 2332 | float: none; 2333 | display: table-column; 2334 | } 2335 | table td[class*="col-"], 2336 | table th[class*="col-"] { 2337 | position: static; 2338 | float: none; 2339 | display: table-cell; 2340 | } 2341 | .table > thead > tr > td.active, 2342 | .table > tbody > tr > td.active, 2343 | .table > tfoot > tr > td.active, 2344 | .table > thead > tr > th.active, 2345 | .table > tbody > tr > th.active, 2346 | .table > tfoot > tr > th.active, 2347 | .table > thead > tr.active > td, 2348 | .table > tbody > tr.active > td, 2349 | .table > tfoot > tr.active > td, 2350 | .table > thead > tr.active > th, 2351 | .table > tbody > tr.active > th, 2352 | .table > tfoot > tr.active > th { 2353 | background-color: #f5f5f5; 2354 | } 2355 | .table-hover > tbody > tr > td.active:hover, 2356 | .table-hover > tbody > tr > th.active:hover, 2357 | .table-hover > tbody > tr.active:hover > td, 2358 | .table-hover > tbody > tr:hover > .active, 2359 | .table-hover > tbody > tr.active:hover > th { 2360 | background-color: #e8e8e8; 2361 | } 2362 | .table > thead > tr > td.success, 2363 | .table > tbody > tr > td.success, 2364 | .table > tfoot > tr > td.success, 2365 | .table > thead > tr > th.success, 2366 | .table > tbody > tr > th.success, 2367 | .table > tfoot > tr > th.success, 2368 | .table > thead > tr.success > td, 2369 | .table > tbody > tr.success > td, 2370 | .table > tfoot > tr.success > td, 2371 | .table > thead > tr.success > th, 2372 | .table > tbody > tr.success > th, 2373 | .table > tfoot > tr.success > th { 2374 | background-color: #dff0d8; 2375 | } 2376 | .table-hover > tbody > tr > td.success:hover, 2377 | .table-hover > tbody > tr > th.success:hover, 2378 | .table-hover > tbody > tr.success:hover > td, 2379 | .table-hover > tbody > tr:hover > .success, 2380 | .table-hover > tbody > tr.success:hover > th { 2381 | background-color: #d0e9c6; 2382 | } 2383 | .table > thead > tr > td.info, 2384 | .table > tbody > tr > td.info, 2385 | .table > tfoot > tr > td.info, 2386 | .table > thead > tr > th.info, 2387 | .table > tbody > tr > th.info, 2388 | .table > tfoot > tr > th.info, 2389 | .table > thead > tr.info > td, 2390 | .table > tbody > tr.info > td, 2391 | .table > tfoot > tr.info > td, 2392 | .table > thead > tr.info > th, 2393 | .table > tbody > tr.info > th, 2394 | .table > tfoot > tr.info > th { 2395 | background-color: #d9edf7; 2396 | } 2397 | .table-hover > tbody > tr > td.info:hover, 2398 | .table-hover > tbody > tr > th.info:hover, 2399 | .table-hover > tbody > tr.info:hover > td, 2400 | .table-hover > tbody > tr:hover > .info, 2401 | .table-hover > tbody > tr.info:hover > th { 2402 | background-color: #c4e3f3; 2403 | } 2404 | .table > thead > tr > td.warning, 2405 | .table > tbody > tr > td.warning, 2406 | .table > tfoot > tr > td.warning, 2407 | .table > thead > tr > th.warning, 2408 | .table > tbody > tr > th.warning, 2409 | .table > tfoot > tr > th.warning, 2410 | .table > thead > tr.warning > td, 2411 | .table > tbody > tr.warning > td, 2412 | .table > tfoot > tr.warning > td, 2413 | .table > thead > tr.warning > th, 2414 | .table > tbody > tr.warning > th, 2415 | .table > tfoot > tr.warning > th { 2416 | background-color: #fcf8e3; 2417 | } 2418 | .table-hover > tbody > tr > td.warning:hover, 2419 | .table-hover > tbody > tr > th.warning:hover, 2420 | .table-hover > tbody > tr.warning:hover > td, 2421 | .table-hover > tbody > tr:hover > .warning, 2422 | .table-hover > tbody > tr.warning:hover > th { 2423 | background-color: #faf2cc; 2424 | } 2425 | .table > thead > tr > td.danger, 2426 | .table > tbody > tr > td.danger, 2427 | .table > tfoot > tr > td.danger, 2428 | .table > thead > tr > th.danger, 2429 | .table > tbody > tr > th.danger, 2430 | .table > tfoot > tr > th.danger, 2431 | .table > thead > tr.danger > td, 2432 | .table > tbody > tr.danger > td, 2433 | .table > tfoot > tr.danger > td, 2434 | .table > thead > tr.danger > th, 2435 | .table > tbody > tr.danger > th, 2436 | .table > tfoot > tr.danger > th { 2437 | background-color: #f2dede; 2438 | } 2439 | .table-hover > tbody > tr > td.danger:hover, 2440 | .table-hover > tbody > tr > th.danger:hover, 2441 | .table-hover > tbody > tr.danger:hover > td, 2442 | .table-hover > tbody > tr:hover > .danger, 2443 | .table-hover > tbody > tr.danger:hover > th { 2444 | background-color: #ebcccc; 2445 | } 2446 | .table-responsive { 2447 | overflow-x: auto; 2448 | min-height: 0.01%; 2449 | } 2450 | @media screen and (max-width: 767px) { 2451 | .table-responsive { 2452 | width: 100%; 2453 | margin-bottom: 15px; 2454 | overflow-y: hidden; 2455 | -ms-overflow-style: -ms-autohiding-scrollbar; 2456 | border: 1px solid #dddddd; 2457 | } 2458 | .table-responsive > .table { 2459 | margin-bottom: 0; 2460 | } 2461 | .table-responsive > .table > thead > tr > th, 2462 | .table-responsive > .table > tbody > tr > th, 2463 | .table-responsive > .table > tfoot > tr > th, 2464 | .table-responsive > .table > thead > tr > td, 2465 | .table-responsive > .table > tbody > tr > td, 2466 | .table-responsive > .table > tfoot > tr > td { 2467 | white-space: nowrap; 2468 | } 2469 | .table-responsive > .table-bordered { 2470 | border: 0; 2471 | } 2472 | .table-responsive > .table-bordered > thead > tr > th:first-child, 2473 | .table-responsive > .table-bordered > tbody > tr > th:first-child, 2474 | .table-responsive > .table-bordered > tfoot > tr > th:first-child, 2475 | .table-responsive > .table-bordered > thead > tr > td:first-child, 2476 | .table-responsive > .table-bordered > tbody > tr > td:first-child, 2477 | .table-responsive > .table-bordered > tfoot > tr > td:first-child { 2478 | border-left: 0; 2479 | } 2480 | .table-responsive > .table-bordered > thead > tr > th:last-child, 2481 | .table-responsive > .table-bordered > tbody > tr > th:last-child, 2482 | .table-responsive > .table-bordered > tfoot > tr > th:last-child, 2483 | .table-responsive > .table-bordered > thead > tr > td:last-child, 2484 | .table-responsive > .table-bordered > tbody > tr > td:last-child, 2485 | .table-responsive > .table-bordered > tfoot > tr > td:last-child { 2486 | border-right: 0; 2487 | } 2488 | .table-responsive > .table-bordered > tbody > tr:last-child > th, 2489 | .table-responsive > .table-bordered > tfoot > tr:last-child > th, 2490 | .table-responsive > .table-bordered > tbody > tr:last-child > td, 2491 | .table-responsive > .table-bordered > tfoot > tr:last-child > td { 2492 | border-bottom: 0; 2493 | } 2494 | } 2495 | fieldset { 2496 | padding: 0; 2497 | margin: 0; 2498 | border: 0; 2499 | min-width: 0; 2500 | } 2501 | legend { 2502 | display: block; 2503 | width: 100%; 2504 | padding: 0; 2505 | margin-bottom: 20px; 2506 | font-size: 21px; 2507 | line-height: inherit; 2508 | color: #333333; 2509 | border: 0; 2510 | border-bottom: 1px solid #e5e5e5; 2511 | } 2512 | label { 2513 | display: inline-block; 2514 | max-width: 100%; 2515 | margin-bottom: 5px; 2516 | font-weight: bold; 2517 | } 2518 | input[type="search"] { 2519 | -webkit-box-sizing: border-box; 2520 | -moz-box-sizing: border-box; 2521 | box-sizing: border-box; 2522 | } 2523 | input[type="radio"], 2524 | input[type="checkbox"] { 2525 | margin: 4px 0 0; 2526 | margin-top: 1px \9; 2527 | line-height: normal; 2528 | } 2529 | input[type="file"] { 2530 | display: block; 2531 | } 2532 | input[type="range"] { 2533 | display: block; 2534 | width: 100%; 2535 | } 2536 | select[multiple], 2537 | select[size] { 2538 | height: auto; 2539 | } 2540 | input[type="file"]:focus, 2541 | input[type="radio"]:focus, 2542 | input[type="checkbox"]:focus { 2543 | outline: 5px auto -webkit-focus-ring-color; 2544 | outline-offset: -2px; 2545 | } 2546 | output { 2547 | display: block; 2548 | padding-top: 9px; 2549 | font-size: 14px; 2550 | line-height: 1.42857143; 2551 | color: #333333; 2552 | } 2553 | .form-control { 2554 | display: block; 2555 | width: 100%; 2556 | height: 38px; 2557 | padding: 8px 12px; 2558 | font-size: 14px; 2559 | line-height: 1.42857143; 2560 | color: #333333; 2561 | background-color: #ffffff; 2562 | background-image: none; 2563 | border: 1px solid #cccccc; 2564 | border-radius: 4px; 2565 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2566 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2567 | -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; 2568 | -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 2569 | transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; 2570 | } 2571 | .form-control:focus { 2572 | border-color: #66afe9; 2573 | outline: 0; 2574 | -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); 2575 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); 2576 | } 2577 | .form-control::-moz-placeholder { 2578 | color: #aea79f; 2579 | opacity: 1; 2580 | } 2581 | .form-control:-ms-input-placeholder { 2582 | color: #aea79f; 2583 | } 2584 | .form-control::-webkit-input-placeholder { 2585 | color: #aea79f; 2586 | } 2587 | .form-control::-ms-expand { 2588 | border: 0; 2589 | background-color: transparent; 2590 | } 2591 | .form-control[disabled], 2592 | .form-control[readonly], 2593 | fieldset[disabled] .form-control { 2594 | background-color: #eeeeee; 2595 | opacity: 1; 2596 | } 2597 | .form-control[disabled], 2598 | fieldset[disabled] .form-control { 2599 | cursor: not-allowed; 2600 | } 2601 | textarea.form-control { 2602 | height: auto; 2603 | } 2604 | input[type="search"] { 2605 | -webkit-appearance: none; 2606 | } 2607 | @media screen and (-webkit-min-device-pixel-ratio: 0) { 2608 | input[type="date"].form-control, 2609 | input[type="time"].form-control, 2610 | input[type="datetime-local"].form-control, 2611 | input[type="month"].form-control { 2612 | line-height: 38px; 2613 | } 2614 | input[type="date"].input-sm, 2615 | input[type="time"].input-sm, 2616 | input[type="datetime-local"].input-sm, 2617 | input[type="month"].input-sm, 2618 | .input-group-sm input[type="date"], 2619 | .input-group-sm input[type="time"], 2620 | .input-group-sm input[type="datetime-local"], 2621 | .input-group-sm input[type="month"] { 2622 | line-height: 30px; 2623 | } 2624 | input[type="date"].input-lg, 2625 | input[type="time"].input-lg, 2626 | input[type="datetime-local"].input-lg, 2627 | input[type="month"].input-lg, 2628 | .input-group-lg input[type="date"], 2629 | .input-group-lg input[type="time"], 2630 | .input-group-lg input[type="datetime-local"], 2631 | .input-group-lg input[type="month"] { 2632 | line-height: 54px; 2633 | } 2634 | } 2635 | .form-group { 2636 | margin-bottom: 15px; 2637 | } 2638 | .radio, 2639 | .checkbox { 2640 | position: relative; 2641 | display: block; 2642 | margin-top: 10px; 2643 | margin-bottom: 10px; 2644 | } 2645 | .radio label, 2646 | .checkbox label { 2647 | min-height: 20px; 2648 | padding-left: 20px; 2649 | margin-bottom: 0; 2650 | font-weight: normal; 2651 | cursor: pointer; 2652 | } 2653 | .radio input[type="radio"], 2654 | .radio-inline input[type="radio"], 2655 | .checkbox input[type="checkbox"], 2656 | .checkbox-inline input[type="checkbox"] { 2657 | position: absolute; 2658 | margin-left: -20px; 2659 | margin-top: 4px \9; 2660 | } 2661 | .radio + .radio, 2662 | .checkbox + .checkbox { 2663 | margin-top: -5px; 2664 | } 2665 | .radio-inline, 2666 | .checkbox-inline { 2667 | position: relative; 2668 | display: inline-block; 2669 | padding-left: 20px; 2670 | margin-bottom: 0; 2671 | vertical-align: middle; 2672 | font-weight: normal; 2673 | cursor: pointer; 2674 | } 2675 | .radio-inline + .radio-inline, 2676 | .checkbox-inline + .checkbox-inline { 2677 | margin-top: 0; 2678 | margin-left: 10px; 2679 | } 2680 | input[type="radio"][disabled], 2681 | input[type="checkbox"][disabled], 2682 | input[type="radio"].disabled, 2683 | input[type="checkbox"].disabled, 2684 | fieldset[disabled] input[type="radio"], 2685 | fieldset[disabled] input[type="checkbox"] { 2686 | cursor: not-allowed; 2687 | } 2688 | .radio-inline.disabled, 2689 | .checkbox-inline.disabled, 2690 | fieldset[disabled] .radio-inline, 2691 | fieldset[disabled] .checkbox-inline { 2692 | cursor: not-allowed; 2693 | } 2694 | .radio.disabled label, 2695 | .checkbox.disabled label, 2696 | fieldset[disabled] .radio label, 2697 | fieldset[disabled] .checkbox label { 2698 | cursor: not-allowed; 2699 | } 2700 | .form-control-static { 2701 | padding-top: 9px; 2702 | padding-bottom: 9px; 2703 | margin-bottom: 0; 2704 | min-height: 34px; 2705 | } 2706 | .form-control-static.input-lg, 2707 | .form-control-static.input-sm { 2708 | padding-left: 0; 2709 | padding-right: 0; 2710 | } 2711 | .input-sm { 2712 | height: 30px; 2713 | padding: 5px 10px; 2714 | font-size: 12px; 2715 | line-height: 1.5; 2716 | border-radius: 3px; 2717 | } 2718 | select.input-sm { 2719 | height: 30px; 2720 | line-height: 30px; 2721 | } 2722 | textarea.input-sm, 2723 | select[multiple].input-sm { 2724 | height: auto; 2725 | } 2726 | .form-group-sm .form-control { 2727 | height: 30px; 2728 | padding: 5px 10px; 2729 | font-size: 12px; 2730 | line-height: 1.5; 2731 | border-radius: 3px; 2732 | } 2733 | .form-group-sm select.form-control { 2734 | height: 30px; 2735 | line-height: 30px; 2736 | } 2737 | .form-group-sm textarea.form-control, 2738 | .form-group-sm select[multiple].form-control { 2739 | height: auto; 2740 | } 2741 | .form-group-sm .form-control-static { 2742 | height: 30px; 2743 | min-height: 32px; 2744 | padding: 6px 10px; 2745 | font-size: 12px; 2746 | line-height: 1.5; 2747 | } 2748 | .input-lg { 2749 | height: 54px; 2750 | padding: 14px 16px; 2751 | font-size: 18px; 2752 | line-height: 1.3333333; 2753 | border-radius: 6px; 2754 | } 2755 | select.input-lg { 2756 | height: 54px; 2757 | line-height: 54px; 2758 | } 2759 | textarea.input-lg, 2760 | select[multiple].input-lg { 2761 | height: auto; 2762 | } 2763 | .form-group-lg .form-control { 2764 | height: 54px; 2765 | padding: 14px 16px; 2766 | font-size: 18px; 2767 | line-height: 1.3333333; 2768 | border-radius: 6px; 2769 | } 2770 | .form-group-lg select.form-control { 2771 | height: 54px; 2772 | line-height: 54px; 2773 | } 2774 | .form-group-lg textarea.form-control, 2775 | .form-group-lg select[multiple].form-control { 2776 | height: auto; 2777 | } 2778 | .form-group-lg .form-control-static { 2779 | height: 54px; 2780 | min-height: 38px; 2781 | padding: 15px 16px; 2782 | font-size: 18px; 2783 | line-height: 1.3333333; 2784 | } 2785 | .has-feedback { 2786 | position: relative; 2787 | } 2788 | .has-feedback .form-control { 2789 | padding-right: 47.5px; 2790 | } 2791 | .form-control-feedback { 2792 | position: absolute; 2793 | top: 0; 2794 | right: 0; 2795 | z-index: 2; 2796 | display: block; 2797 | width: 38px; 2798 | height: 38px; 2799 | line-height: 38px; 2800 | text-align: center; 2801 | pointer-events: none; 2802 | } 2803 | .input-lg + .form-control-feedback, 2804 | .input-group-lg + .form-control-feedback, 2805 | .form-group-lg .form-control + .form-control-feedback { 2806 | width: 54px; 2807 | height: 54px; 2808 | line-height: 54px; 2809 | } 2810 | .input-sm + .form-control-feedback, 2811 | .input-group-sm + .form-control-feedback, 2812 | .form-group-sm .form-control + .form-control-feedback { 2813 | width: 30px; 2814 | height: 30px; 2815 | line-height: 30px; 2816 | } 2817 | .has-success .help-block, 2818 | .has-success .control-label, 2819 | .has-success .radio, 2820 | .has-success .checkbox, 2821 | .has-success .radio-inline, 2822 | .has-success .checkbox-inline, 2823 | .has-success.radio label, 2824 | .has-success.checkbox label, 2825 | .has-success.radio-inline label, 2826 | .has-success.checkbox-inline label { 2827 | color: #468847; 2828 | } 2829 | .has-success .form-control { 2830 | border-color: #468847; 2831 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2832 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2833 | } 2834 | .has-success .form-control:focus { 2835 | border-color: #356635; 2836 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; 2837 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; 2838 | } 2839 | .has-success .input-group-addon { 2840 | color: #468847; 2841 | border-color: #468847; 2842 | background-color: #dff0d8; 2843 | } 2844 | .has-success .form-control-feedback { 2845 | color: #468847; 2846 | } 2847 | .has-warning .help-block, 2848 | .has-warning .control-label, 2849 | .has-warning .radio, 2850 | .has-warning .checkbox, 2851 | .has-warning .radio-inline, 2852 | .has-warning .checkbox-inline, 2853 | .has-warning.radio label, 2854 | .has-warning.checkbox label, 2855 | .has-warning.radio-inline label, 2856 | .has-warning.checkbox-inline label { 2857 | color: #c09853; 2858 | } 2859 | .has-warning .form-control { 2860 | border-color: #c09853; 2861 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2862 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2863 | } 2864 | .has-warning .form-control:focus { 2865 | border-color: #a47e3c; 2866 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; 2867 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; 2868 | } 2869 | .has-warning .input-group-addon { 2870 | color: #c09853; 2871 | border-color: #c09853; 2872 | background-color: #fcf8e3; 2873 | } 2874 | .has-warning .form-control-feedback { 2875 | color: #c09853; 2876 | } 2877 | .has-error .help-block, 2878 | .has-error .control-label, 2879 | .has-error .radio, 2880 | .has-error .checkbox, 2881 | .has-error .radio-inline, 2882 | .has-error .checkbox-inline, 2883 | .has-error.radio label, 2884 | .has-error.checkbox label, 2885 | .has-error.radio-inline label, 2886 | .has-error.checkbox-inline label { 2887 | color: #b94a48; 2888 | } 2889 | .has-error .form-control { 2890 | border-color: #b94a48; 2891 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2892 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 2893 | } 2894 | .has-error .form-control:focus { 2895 | border-color: #953b39; 2896 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; 2897 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; 2898 | } 2899 | .has-error .input-group-addon { 2900 | color: #b94a48; 2901 | border-color: #b94a48; 2902 | background-color: #f2dede; 2903 | } 2904 | .has-error .form-control-feedback { 2905 | color: #b94a48; 2906 | } 2907 | .has-feedback label ~ .form-control-feedback { 2908 | top: 25px; 2909 | } 2910 | .has-feedback label.sr-only ~ .form-control-feedback { 2911 | top: 0; 2912 | } 2913 | .help-block { 2914 | display: block; 2915 | margin-top: 5px; 2916 | margin-bottom: 10px; 2917 | color: #737373; 2918 | } 2919 | @media (min-width: 768px) { 2920 | .form-inline .form-group { 2921 | display: inline-block; 2922 | margin-bottom: 0; 2923 | vertical-align: middle; 2924 | } 2925 | .form-inline .form-control { 2926 | display: inline-block; 2927 | width: auto; 2928 | vertical-align: middle; 2929 | } 2930 | .form-inline .form-control-static { 2931 | display: inline-block; 2932 | } 2933 | .form-inline .input-group { 2934 | display: inline-table; 2935 | vertical-align: middle; 2936 | } 2937 | .form-inline .input-group .input-group-addon, 2938 | .form-inline .input-group .input-group-btn, 2939 | .form-inline .input-group .form-control { 2940 | width: auto; 2941 | } 2942 | .form-inline .input-group > .form-control { 2943 | width: 100%; 2944 | } 2945 | .form-inline .control-label { 2946 | margin-bottom: 0; 2947 | vertical-align: middle; 2948 | } 2949 | .form-inline .radio, 2950 | .form-inline .checkbox { 2951 | display: inline-block; 2952 | margin-top: 0; 2953 | margin-bottom: 0; 2954 | vertical-align: middle; 2955 | } 2956 | .form-inline .radio label, 2957 | .form-inline .checkbox label { 2958 | padding-left: 0; 2959 | } 2960 | .form-inline .radio input[type="radio"], 2961 | .form-inline .checkbox input[type="checkbox"] { 2962 | position: relative; 2963 | margin-left: 0; 2964 | } 2965 | .form-inline .has-feedback .form-control-feedback { 2966 | top: 0; 2967 | } 2968 | } 2969 | .form-horizontal .radio, 2970 | .form-horizontal .checkbox, 2971 | .form-horizontal .radio-inline, 2972 | .form-horizontal .checkbox-inline { 2973 | margin-top: 0; 2974 | margin-bottom: 0; 2975 | padding-top: 9px; 2976 | } 2977 | .form-horizontal .radio, 2978 | .form-horizontal .checkbox { 2979 | min-height: 29px; 2980 | } 2981 | .form-horizontal .form-group { 2982 | margin-left: -15px; 2983 | margin-right: -15px; 2984 | } 2985 | @media (min-width: 768px) { 2986 | .form-horizontal .control-label { 2987 | text-align: right; 2988 | margin-bottom: 0; 2989 | padding-top: 9px; 2990 | } 2991 | } 2992 | .form-horizontal .has-feedback .form-control-feedback { 2993 | right: 15px; 2994 | } 2995 | @media (min-width: 768px) { 2996 | .form-horizontal .form-group-lg .control-label { 2997 | padding-top: 15px; 2998 | font-size: 18px; 2999 | } 3000 | } 3001 | @media (min-width: 768px) { 3002 | .form-horizontal .form-group-sm .control-label { 3003 | padding-top: 6px; 3004 | font-size: 12px; 3005 | } 3006 | } 3007 | .btn { 3008 | display: inline-block; 3009 | margin-bottom: 0; 3010 | font-weight: normal; 3011 | text-align: center; 3012 | vertical-align: middle; 3013 | -ms-touch-action: manipulation; 3014 | touch-action: manipulation; 3015 | cursor: pointer; 3016 | background-image: none; 3017 | border: 1px solid transparent; 3018 | white-space: nowrap; 3019 | padding: 8px 12px; 3020 | font-size: 14px; 3021 | line-height: 1.42857143; 3022 | border-radius: 4px; 3023 | -webkit-user-select: none; 3024 | -moz-user-select: none; 3025 | -ms-user-select: none; 3026 | user-select: none; 3027 | } 3028 | .btn:focus, 3029 | .btn:active:focus, 3030 | .btn.active:focus, 3031 | .btn.focus, 3032 | .btn:active.focus, 3033 | .btn.active.focus { 3034 | outline: 5px auto -webkit-focus-ring-color; 3035 | outline-offset: -2px; 3036 | } 3037 | .btn:hover, 3038 | .btn:focus, 3039 | .btn.focus { 3040 | color: #ffffff; 3041 | text-decoration: none; 3042 | } 3043 | .btn:active, 3044 | .btn.active { 3045 | outline: 0; 3046 | background-image: none; 3047 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3048 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3049 | } 3050 | .btn.disabled, 3051 | .btn[disabled], 3052 | fieldset[disabled] .btn { 3053 | cursor: not-allowed; 3054 | opacity: 0.65; 3055 | filter: alpha(opacity=65); 3056 | -webkit-box-shadow: none; 3057 | box-shadow: none; 3058 | } 3059 | a.btn.disabled, 3060 | fieldset[disabled] a.btn { 3061 | pointer-events: none; 3062 | } 3063 | .btn-default { 3064 | color: #ffffff; 3065 | background-color: #aea79f; 3066 | border-color: #aea79f; 3067 | } 3068 | .btn-default:focus, 3069 | .btn-default.focus { 3070 | color: #ffffff; 3071 | background-color: #978e83; 3072 | border-color: #6f675e; 3073 | } 3074 | .btn-default:hover { 3075 | color: #ffffff; 3076 | background-color: #978e83; 3077 | border-color: #92897e; 3078 | } 3079 | .btn-default:active, 3080 | .btn-default.active, 3081 | .open > .dropdown-toggle.btn-default { 3082 | color: #ffffff; 3083 | background-color: #978e83; 3084 | border-color: #92897e; 3085 | } 3086 | .btn-default:active:hover, 3087 | .btn-default.active:hover, 3088 | .open > .dropdown-toggle.btn-default:hover, 3089 | .btn-default:active:focus, 3090 | .btn-default.active:focus, 3091 | .open > .dropdown-toggle.btn-default:focus, 3092 | .btn-default:active.focus, 3093 | .btn-default.active.focus, 3094 | .open > .dropdown-toggle.btn-default.focus { 3095 | color: #ffffff; 3096 | background-color: #867c71; 3097 | border-color: #6f675e; 3098 | } 3099 | .btn-default:active, 3100 | .btn-default.active, 3101 | .open > .dropdown-toggle.btn-default { 3102 | background-image: none; 3103 | } 3104 | .btn-default.disabled:hover, 3105 | .btn-default[disabled]:hover, 3106 | fieldset[disabled] .btn-default:hover, 3107 | .btn-default.disabled:focus, 3108 | .btn-default[disabled]:focus, 3109 | fieldset[disabled] .btn-default:focus, 3110 | .btn-default.disabled.focus, 3111 | .btn-default[disabled].focus, 3112 | fieldset[disabled] .btn-default.focus { 3113 | background-color: #aea79f; 3114 | border-color: #aea79f; 3115 | } 3116 | .btn-default .badge { 3117 | color: #aea79f; 3118 | background-color: #ffffff; 3119 | } 3120 | .btn-primary { 3121 | color: #ffffff; 3122 | background-color: #e95420; 3123 | border-color: #e95420; 3124 | } 3125 | .btn-primary:focus, 3126 | .btn-primary.focus { 3127 | color: #ffffff; 3128 | background-color: #c34113; 3129 | border-color: #7d2a0c; 3130 | } 3131 | .btn-primary:hover { 3132 | color: #ffffff; 3133 | background-color: #c34113; 3134 | border-color: #b93e12; 3135 | } 3136 | .btn-primary:active, 3137 | .btn-primary.active, 3138 | .open > .dropdown-toggle.btn-primary { 3139 | color: #ffffff; 3140 | background-color: #c34113; 3141 | border-color: #b93e12; 3142 | } 3143 | .btn-primary:active:hover, 3144 | .btn-primary.active:hover, 3145 | .open > .dropdown-toggle.btn-primary:hover, 3146 | .btn-primary:active:focus, 3147 | .btn-primary.active:focus, 3148 | .open > .dropdown-toggle.btn-primary:focus, 3149 | .btn-primary:active.focus, 3150 | .btn-primary.active.focus, 3151 | .open > .dropdown-toggle.btn-primary.focus { 3152 | color: #ffffff; 3153 | background-color: #a23610; 3154 | border-color: #7d2a0c; 3155 | } 3156 | .btn-primary:active, 3157 | .btn-primary.active, 3158 | .open > .dropdown-toggle.btn-primary { 3159 | background-image: none; 3160 | } 3161 | .btn-primary.disabled:hover, 3162 | .btn-primary[disabled]:hover, 3163 | fieldset[disabled] .btn-primary:hover, 3164 | .btn-primary.disabled:focus, 3165 | .btn-primary[disabled]:focus, 3166 | fieldset[disabled] .btn-primary:focus, 3167 | .btn-primary.disabled.focus, 3168 | .btn-primary[disabled].focus, 3169 | fieldset[disabled] .btn-primary.focus { 3170 | background-color: #e95420; 3171 | border-color: #e95420; 3172 | } 3173 | .btn-primary .badge { 3174 | color: #e95420; 3175 | background-color: #ffffff; 3176 | } 3177 | .btn-success { 3178 | color: #ffffff; 3179 | background-color: #38b44a; 3180 | border-color: #38b44a; 3181 | } 3182 | .btn-success:focus, 3183 | .btn-success.focus { 3184 | color: #ffffff; 3185 | background-color: #2c8d3a; 3186 | border-color: #1a5322; 3187 | } 3188 | .btn-success:hover { 3189 | color: #ffffff; 3190 | background-color: #2c8d3a; 3191 | border-color: #298537; 3192 | } 3193 | .btn-success:active, 3194 | .btn-success.active, 3195 | .open > .dropdown-toggle.btn-success { 3196 | color: #ffffff; 3197 | background-color: #2c8d3a; 3198 | border-color: #298537; 3199 | } 3200 | .btn-success:active:hover, 3201 | .btn-success.active:hover, 3202 | .open > .dropdown-toggle.btn-success:hover, 3203 | .btn-success:active:focus, 3204 | .btn-success.active:focus, 3205 | .open > .dropdown-toggle.btn-success:focus, 3206 | .btn-success:active.focus, 3207 | .btn-success.active.focus, 3208 | .open > .dropdown-toggle.btn-success.focus { 3209 | color: #ffffff; 3210 | background-color: #23722f; 3211 | border-color: #1a5322; 3212 | } 3213 | .btn-success:active, 3214 | .btn-success.active, 3215 | .open > .dropdown-toggle.btn-success { 3216 | background-image: none; 3217 | } 3218 | .btn-success.disabled:hover, 3219 | .btn-success[disabled]:hover, 3220 | fieldset[disabled] .btn-success:hover, 3221 | .btn-success.disabled:focus, 3222 | .btn-success[disabled]:focus, 3223 | fieldset[disabled] .btn-success:focus, 3224 | .btn-success.disabled.focus, 3225 | .btn-success[disabled].focus, 3226 | fieldset[disabled] .btn-success.focus { 3227 | background-color: #38b44a; 3228 | border-color: #38b44a; 3229 | } 3230 | .btn-success .badge { 3231 | color: #38b44a; 3232 | background-color: #ffffff; 3233 | } 3234 | .btn-info { 3235 | color: #ffffff; 3236 | background-color: #772953; 3237 | border-color: #772953; 3238 | } 3239 | .btn-info:focus, 3240 | .btn-info.focus { 3241 | color: #ffffff; 3242 | background-color: #511c39; 3243 | border-color: #180811; 3244 | } 3245 | .btn-info:hover { 3246 | color: #ffffff; 3247 | background-color: #511c39; 3248 | border-color: #491933; 3249 | } 3250 | .btn-info:active, 3251 | .btn-info.active, 3252 | .open > .dropdown-toggle.btn-info { 3253 | color: #ffffff; 3254 | background-color: #511c39; 3255 | border-color: #491933; 3256 | } 3257 | .btn-info:active:hover, 3258 | .btn-info.active:hover, 3259 | .open > .dropdown-toggle.btn-info:hover, 3260 | .btn-info:active:focus, 3261 | .btn-info.active:focus, 3262 | .open > .dropdown-toggle.btn-info:focus, 3263 | .btn-info:active.focus, 3264 | .btn-info.active.focus, 3265 | .open > .dropdown-toggle.btn-info.focus { 3266 | color: #ffffff; 3267 | background-color: #371326; 3268 | border-color: #180811; 3269 | } 3270 | .btn-info:active, 3271 | .btn-info.active, 3272 | .open > .dropdown-toggle.btn-info { 3273 | background-image: none; 3274 | } 3275 | .btn-info.disabled:hover, 3276 | .btn-info[disabled]:hover, 3277 | fieldset[disabled] .btn-info:hover, 3278 | .btn-info.disabled:focus, 3279 | .btn-info[disabled]:focus, 3280 | fieldset[disabled] .btn-info:focus, 3281 | .btn-info.disabled.focus, 3282 | .btn-info[disabled].focus, 3283 | fieldset[disabled] .btn-info.focus { 3284 | background-color: #772953; 3285 | border-color: #772953; 3286 | } 3287 | .btn-info .badge { 3288 | color: #772953; 3289 | background-color: #ffffff; 3290 | } 3291 | .btn-warning { 3292 | color: #ffffff; 3293 | background-color: #efb73e; 3294 | border-color: #efb73e; 3295 | } 3296 | .btn-warning:focus, 3297 | .btn-warning.focus { 3298 | color: #ffffff; 3299 | background-color: #e7a413; 3300 | border-color: #a0720d; 3301 | } 3302 | .btn-warning:hover { 3303 | color: #ffffff; 3304 | background-color: #e7a413; 3305 | border-color: #dd9d12; 3306 | } 3307 | .btn-warning:active, 3308 | .btn-warning.active, 3309 | .open > .dropdown-toggle.btn-warning { 3310 | color: #ffffff; 3311 | background-color: #e7a413; 3312 | border-color: #dd9d12; 3313 | } 3314 | .btn-warning:active:hover, 3315 | .btn-warning.active:hover, 3316 | .open > .dropdown-toggle.btn-warning:hover, 3317 | .btn-warning:active:focus, 3318 | .btn-warning.active:focus, 3319 | .open > .dropdown-toggle.btn-warning:focus, 3320 | .btn-warning:active.focus, 3321 | .btn-warning.active.focus, 3322 | .open > .dropdown-toggle.btn-warning.focus { 3323 | color: #ffffff; 3324 | background-color: #c68c10; 3325 | border-color: #a0720d; 3326 | } 3327 | .btn-warning:active, 3328 | .btn-warning.active, 3329 | .open > .dropdown-toggle.btn-warning { 3330 | background-image: none; 3331 | } 3332 | .btn-warning.disabled:hover, 3333 | .btn-warning[disabled]:hover, 3334 | fieldset[disabled] .btn-warning:hover, 3335 | .btn-warning.disabled:focus, 3336 | .btn-warning[disabled]:focus, 3337 | fieldset[disabled] .btn-warning:focus, 3338 | .btn-warning.disabled.focus, 3339 | .btn-warning[disabled].focus, 3340 | fieldset[disabled] .btn-warning.focus { 3341 | background-color: #efb73e; 3342 | border-color: #efb73e; 3343 | } 3344 | .btn-warning .badge { 3345 | color: #efb73e; 3346 | background-color: #ffffff; 3347 | } 3348 | .btn-danger { 3349 | color: #ffffff; 3350 | background-color: #df382c; 3351 | border-color: #df382c; 3352 | } 3353 | .btn-danger:focus, 3354 | .btn-danger.focus { 3355 | color: #ffffff; 3356 | background-color: #bc271c; 3357 | border-color: #791912; 3358 | } 3359 | .btn-danger:hover { 3360 | color: #ffffff; 3361 | background-color: #bc271c; 3362 | border-color: #b3251b; 3363 | } 3364 | .btn-danger:active, 3365 | .btn-danger.active, 3366 | .open > .dropdown-toggle.btn-danger { 3367 | color: #ffffff; 3368 | background-color: #bc271c; 3369 | border-color: #b3251b; 3370 | } 3371 | .btn-danger:active:hover, 3372 | .btn-danger.active:hover, 3373 | .open > .dropdown-toggle.btn-danger:hover, 3374 | .btn-danger:active:focus, 3375 | .btn-danger.active:focus, 3376 | .open > .dropdown-toggle.btn-danger:focus, 3377 | .btn-danger:active.focus, 3378 | .btn-danger.active.focus, 3379 | .open > .dropdown-toggle.btn-danger.focus { 3380 | color: #ffffff; 3381 | background-color: #9d2118; 3382 | border-color: #791912; 3383 | } 3384 | .btn-danger:active, 3385 | .btn-danger.active, 3386 | .open > .dropdown-toggle.btn-danger { 3387 | background-image: none; 3388 | } 3389 | .btn-danger.disabled:hover, 3390 | .btn-danger[disabled]:hover, 3391 | fieldset[disabled] .btn-danger:hover, 3392 | .btn-danger.disabled:focus, 3393 | .btn-danger[disabled]:focus, 3394 | fieldset[disabled] .btn-danger:focus, 3395 | .btn-danger.disabled.focus, 3396 | .btn-danger[disabled].focus, 3397 | fieldset[disabled] .btn-danger.focus { 3398 | background-color: #df382c; 3399 | border-color: #df382c; 3400 | } 3401 | .btn-danger .badge { 3402 | color: #df382c; 3403 | background-color: #ffffff; 3404 | } 3405 | .btn-link { 3406 | color: #e95420; 3407 | font-weight: normal; 3408 | border-radius: 0; 3409 | } 3410 | .btn-link, 3411 | .btn-link:active, 3412 | .btn-link.active, 3413 | .btn-link[disabled], 3414 | fieldset[disabled] .btn-link { 3415 | background-color: transparent; 3416 | -webkit-box-shadow: none; 3417 | box-shadow: none; 3418 | } 3419 | .btn-link, 3420 | .btn-link:hover, 3421 | .btn-link:focus, 3422 | .btn-link:active { 3423 | border-color: transparent; 3424 | } 3425 | .btn-link:hover, 3426 | .btn-link:focus { 3427 | color: #ac3911; 3428 | text-decoration: underline; 3429 | background-color: transparent; 3430 | } 3431 | .btn-link[disabled]:hover, 3432 | fieldset[disabled] .btn-link:hover, 3433 | .btn-link[disabled]:focus, 3434 | fieldset[disabled] .btn-link:focus { 3435 | color: #aea79f; 3436 | text-decoration: none; 3437 | } 3438 | .btn-lg, 3439 | .btn-group-lg > .btn { 3440 | padding: 14px 16px; 3441 | font-size: 18px; 3442 | line-height: 1.3333333; 3443 | border-radius: 6px; 3444 | } 3445 | .btn-sm, 3446 | .btn-group-sm > .btn { 3447 | padding: 5px 10px; 3448 | font-size: 12px; 3449 | line-height: 1.5; 3450 | border-radius: 3px; 3451 | } 3452 | .btn-xs, 3453 | .btn-group-xs > .btn { 3454 | padding: 1px 5px; 3455 | font-size: 12px; 3456 | line-height: 1.5; 3457 | border-radius: 3px; 3458 | } 3459 | .btn-block { 3460 | display: block; 3461 | width: 100%; 3462 | } 3463 | .btn-block + .btn-block { 3464 | margin-top: 5px; 3465 | } 3466 | input[type="submit"].btn-block, 3467 | input[type="reset"].btn-block, 3468 | input[type="button"].btn-block { 3469 | width: 100%; 3470 | } 3471 | .fade { 3472 | opacity: 0; 3473 | -webkit-transition: opacity 0.15s linear; 3474 | -o-transition: opacity 0.15s linear; 3475 | transition: opacity 0.15s linear; 3476 | } 3477 | .fade.in { 3478 | opacity: 1; 3479 | } 3480 | .collapse { 3481 | display: none; 3482 | } 3483 | .collapse.in { 3484 | display: block; 3485 | } 3486 | tr.collapse.in { 3487 | display: table-row; 3488 | } 3489 | tbody.collapse.in { 3490 | display: table-row-group; 3491 | } 3492 | .collapsing { 3493 | position: relative; 3494 | height: 0; 3495 | overflow: hidden; 3496 | -webkit-transition-property: height, visibility; 3497 | -o-transition-property: height, visibility; 3498 | transition-property: height, visibility; 3499 | -webkit-transition-duration: 0.35s; 3500 | -o-transition-duration: 0.35s; 3501 | transition-duration: 0.35s; 3502 | -webkit-transition-timing-function: ease; 3503 | -o-transition-timing-function: ease; 3504 | transition-timing-function: ease; 3505 | } 3506 | .caret { 3507 | display: inline-block; 3508 | width: 0; 3509 | height: 0; 3510 | margin-left: 2px; 3511 | vertical-align: middle; 3512 | border-top: 4px dashed; 3513 | border-top: 4px solid \9; 3514 | border-right: 4px solid transparent; 3515 | border-left: 4px solid transparent; 3516 | } 3517 | .dropup, 3518 | .dropdown { 3519 | position: relative; 3520 | } 3521 | .dropdown-toggle:focus { 3522 | outline: 0; 3523 | } 3524 | .dropdown-menu { 3525 | position: absolute; 3526 | top: 100%; 3527 | left: 0; 3528 | z-index: 1000; 3529 | display: none; 3530 | float: left; 3531 | min-width: 160px; 3532 | padding: 5px 0; 3533 | margin: 2px 0 0; 3534 | list-style: none; 3535 | font-size: 14px; 3536 | text-align: left; 3537 | background-color: #ffffff; 3538 | border: 1px solid #cccccc; 3539 | border: 1px solid rgba(0, 0, 0, 0.15); 3540 | border-radius: 4px; 3541 | -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); 3542 | box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); 3543 | -webkit-background-clip: padding-box; 3544 | background-clip: padding-box; 3545 | } 3546 | .dropdown-menu.pull-right { 3547 | right: 0; 3548 | left: auto; 3549 | } 3550 | .dropdown-menu .divider { 3551 | height: 1px; 3552 | margin: 9px 0; 3553 | overflow: hidden; 3554 | background-color: #e5e5e5; 3555 | } 3556 | .dropdown-menu > li > a { 3557 | display: block; 3558 | padding: 3px 20px; 3559 | clear: both; 3560 | font-weight: normal; 3561 | line-height: 1.42857143; 3562 | color: #333333; 3563 | white-space: nowrap; 3564 | } 3565 | .dropdown-menu > li > a:hover, 3566 | .dropdown-menu > li > a:focus { 3567 | text-decoration: none; 3568 | color: #ffffff; 3569 | background-color: #e95420; 3570 | } 3571 | .dropdown-menu > .active > a, 3572 | .dropdown-menu > .active > a:hover, 3573 | .dropdown-menu > .active > a:focus { 3574 | color: #ffffff; 3575 | text-decoration: none; 3576 | outline: 0; 3577 | background-color: #e95420; 3578 | } 3579 | .dropdown-menu > .disabled > a, 3580 | .dropdown-menu > .disabled > a:hover, 3581 | .dropdown-menu > .disabled > a:focus { 3582 | color: #aea79f; 3583 | } 3584 | .dropdown-menu > .disabled > a:hover, 3585 | .dropdown-menu > .disabled > a:focus { 3586 | text-decoration: none; 3587 | background-color: transparent; 3588 | background-image: none; 3589 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); 3590 | cursor: not-allowed; 3591 | } 3592 | .open > .dropdown-menu { 3593 | display: block; 3594 | } 3595 | .open > a { 3596 | outline: 0; 3597 | } 3598 | .dropdown-menu-right { 3599 | left: auto; 3600 | right: 0; 3601 | } 3602 | .dropdown-menu-left { 3603 | left: 0; 3604 | right: auto; 3605 | } 3606 | .dropdown-header { 3607 | display: block; 3608 | padding: 3px 20px; 3609 | font-size: 12px; 3610 | line-height: 1.42857143; 3611 | color: #aea79f; 3612 | white-space: nowrap; 3613 | } 3614 | .dropdown-backdrop { 3615 | position: fixed; 3616 | left: 0; 3617 | right: 0; 3618 | bottom: 0; 3619 | top: 0; 3620 | z-index: 990; 3621 | } 3622 | .pull-right > .dropdown-menu { 3623 | right: 0; 3624 | left: auto; 3625 | } 3626 | .dropup .caret, 3627 | .navbar-fixed-bottom .dropdown .caret { 3628 | border-top: 0; 3629 | border-bottom: 4px dashed; 3630 | border-bottom: 4px solid \9; 3631 | content: ""; 3632 | } 3633 | .dropup .dropdown-menu, 3634 | .navbar-fixed-bottom .dropdown .dropdown-menu { 3635 | top: auto; 3636 | bottom: 100%; 3637 | margin-bottom: 2px; 3638 | } 3639 | @media (min-width: 768px) { 3640 | .navbar-right .dropdown-menu { 3641 | left: auto; 3642 | right: 0; 3643 | } 3644 | .navbar-right .dropdown-menu-left { 3645 | left: 0; 3646 | right: auto; 3647 | } 3648 | } 3649 | .btn-group, 3650 | .btn-group-vertical { 3651 | position: relative; 3652 | display: inline-block; 3653 | vertical-align: middle; 3654 | } 3655 | .btn-group > .btn, 3656 | .btn-group-vertical > .btn { 3657 | position: relative; 3658 | float: left; 3659 | } 3660 | .btn-group > .btn:hover, 3661 | .btn-group-vertical > .btn:hover, 3662 | .btn-group > .btn:focus, 3663 | .btn-group-vertical > .btn:focus, 3664 | .btn-group > .btn:active, 3665 | .btn-group-vertical > .btn:active, 3666 | .btn-group > .btn.active, 3667 | .btn-group-vertical > .btn.active { 3668 | z-index: 2; 3669 | } 3670 | .btn-group .btn + .btn, 3671 | .btn-group .btn + .btn-group, 3672 | .btn-group .btn-group + .btn, 3673 | .btn-group .btn-group + .btn-group { 3674 | margin-left: -1px; 3675 | } 3676 | .btn-toolbar { 3677 | margin-left: -5px; 3678 | } 3679 | .btn-toolbar .btn, 3680 | .btn-toolbar .btn-group, 3681 | .btn-toolbar .input-group { 3682 | float: left; 3683 | } 3684 | .btn-toolbar > .btn, 3685 | .btn-toolbar > .btn-group, 3686 | .btn-toolbar > .input-group { 3687 | margin-left: 5px; 3688 | } 3689 | .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { 3690 | border-radius: 0; 3691 | } 3692 | .btn-group > .btn:first-child { 3693 | margin-left: 0; 3694 | } 3695 | .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { 3696 | border-bottom-right-radius: 0; 3697 | border-top-right-radius: 0; 3698 | } 3699 | .btn-group > .btn:last-child:not(:first-child), 3700 | .btn-group > .dropdown-toggle:not(:first-child) { 3701 | border-bottom-left-radius: 0; 3702 | border-top-left-radius: 0; 3703 | } 3704 | .btn-group > .btn-group { 3705 | float: left; 3706 | } 3707 | .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { 3708 | border-radius: 0; 3709 | } 3710 | .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, 3711 | .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { 3712 | border-bottom-right-radius: 0; 3713 | border-top-right-radius: 0; 3714 | } 3715 | .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { 3716 | border-bottom-left-radius: 0; 3717 | border-top-left-radius: 0; 3718 | } 3719 | .btn-group .dropdown-toggle:active, 3720 | .btn-group.open .dropdown-toggle { 3721 | outline: 0; 3722 | } 3723 | .btn-group > .btn + .dropdown-toggle { 3724 | padding-left: 8px; 3725 | padding-right: 8px; 3726 | } 3727 | .btn-group > .btn-lg + .dropdown-toggle { 3728 | padding-left: 12px; 3729 | padding-right: 12px; 3730 | } 3731 | .btn-group.open .dropdown-toggle { 3732 | -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3733 | box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); 3734 | } 3735 | .btn-group.open .dropdown-toggle.btn-link { 3736 | -webkit-box-shadow: none; 3737 | box-shadow: none; 3738 | } 3739 | .btn .caret { 3740 | margin-left: 0; 3741 | } 3742 | .btn-lg .caret { 3743 | border-width: 5px 5px 0; 3744 | border-bottom-width: 0; 3745 | } 3746 | .dropup .btn-lg .caret { 3747 | border-width: 0 5px 5px; 3748 | } 3749 | .btn-group-vertical > .btn, 3750 | .btn-group-vertical > .btn-group, 3751 | .btn-group-vertical > .btn-group > .btn { 3752 | display: block; 3753 | float: none; 3754 | width: 100%; 3755 | max-width: 100%; 3756 | } 3757 | .btn-group-vertical > .btn-group > .btn { 3758 | float: none; 3759 | } 3760 | .btn-group-vertical > .btn + .btn, 3761 | .btn-group-vertical > .btn + .btn-group, 3762 | .btn-group-vertical > .btn-group + .btn, 3763 | .btn-group-vertical > .btn-group + .btn-group { 3764 | margin-top: -1px; 3765 | margin-left: 0; 3766 | } 3767 | .btn-group-vertical > .btn:not(:first-child):not(:last-child) { 3768 | border-radius: 0; 3769 | } 3770 | .btn-group-vertical > .btn:first-child:not(:last-child) { 3771 | border-top-right-radius: 4px; 3772 | border-top-left-radius: 4px; 3773 | border-bottom-right-radius: 0; 3774 | border-bottom-left-radius: 0; 3775 | } 3776 | .btn-group-vertical > .btn:last-child:not(:first-child) { 3777 | border-top-right-radius: 0; 3778 | border-top-left-radius: 0; 3779 | border-bottom-right-radius: 4px; 3780 | border-bottom-left-radius: 4px; 3781 | } 3782 | .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { 3783 | border-radius: 0; 3784 | } 3785 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, 3786 | .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { 3787 | border-bottom-right-radius: 0; 3788 | border-bottom-left-radius: 0; 3789 | } 3790 | .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { 3791 | border-top-right-radius: 0; 3792 | border-top-left-radius: 0; 3793 | } 3794 | .btn-group-justified { 3795 | display: table; 3796 | width: 100%; 3797 | table-layout: fixed; 3798 | border-collapse: separate; 3799 | } 3800 | .btn-group-justified > .btn, 3801 | .btn-group-justified > .btn-group { 3802 | float: none; 3803 | display: table-cell; 3804 | width: 1%; 3805 | } 3806 | .btn-group-justified > .btn-group .btn { 3807 | width: 100%; 3808 | } 3809 | .btn-group-justified > .btn-group .dropdown-menu { 3810 | left: auto; 3811 | } 3812 | [data-toggle="buttons"] > .btn input[type="radio"], 3813 | [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], 3814 | [data-toggle="buttons"] > .btn input[type="checkbox"], 3815 | [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { 3816 | position: absolute; 3817 | clip: rect(0, 0, 0, 0); 3818 | pointer-events: none; 3819 | } 3820 | .input-group { 3821 | position: relative; 3822 | display: table; 3823 | border-collapse: separate; 3824 | } 3825 | .input-group[class*="col-"] { 3826 | float: none; 3827 | padding-left: 0; 3828 | padding-right: 0; 3829 | } 3830 | .input-group .form-control { 3831 | position: relative; 3832 | z-index: 2; 3833 | float: left; 3834 | width: 100%; 3835 | margin-bottom: 0; 3836 | } 3837 | .input-group .form-control:focus { 3838 | z-index: 3; 3839 | } 3840 | .input-group-lg > .form-control, 3841 | .input-group-lg > .input-group-addon, 3842 | .input-group-lg > .input-group-btn > .btn { 3843 | height: 54px; 3844 | padding: 14px 16px; 3845 | font-size: 18px; 3846 | line-height: 1.3333333; 3847 | border-radius: 6px; 3848 | } 3849 | select.input-group-lg > .form-control, 3850 | select.input-group-lg > .input-group-addon, 3851 | select.input-group-lg > .input-group-btn > .btn { 3852 | height: 54px; 3853 | line-height: 54px; 3854 | } 3855 | textarea.input-group-lg > .form-control, 3856 | textarea.input-group-lg > .input-group-addon, 3857 | textarea.input-group-lg > .input-group-btn > .btn, 3858 | select[multiple].input-group-lg > .form-control, 3859 | select[multiple].input-group-lg > .input-group-addon, 3860 | select[multiple].input-group-lg > .input-group-btn > .btn { 3861 | height: auto; 3862 | } 3863 | .input-group-sm > .form-control, 3864 | .input-group-sm > .input-group-addon, 3865 | .input-group-sm > .input-group-btn > .btn { 3866 | height: 30px; 3867 | padding: 5px 10px; 3868 | font-size: 12px; 3869 | line-height: 1.5; 3870 | border-radius: 3px; 3871 | } 3872 | select.input-group-sm > .form-control, 3873 | select.input-group-sm > .input-group-addon, 3874 | select.input-group-sm > .input-group-btn > .btn { 3875 | height: 30px; 3876 | line-height: 30px; 3877 | } 3878 | textarea.input-group-sm > .form-control, 3879 | textarea.input-group-sm > .input-group-addon, 3880 | textarea.input-group-sm > .input-group-btn > .btn, 3881 | select[multiple].input-group-sm > .form-control, 3882 | select[multiple].input-group-sm > .input-group-addon, 3883 | select[multiple].input-group-sm > .input-group-btn > .btn { 3884 | height: auto; 3885 | } 3886 | .input-group-addon, 3887 | .input-group-btn, 3888 | .input-group .form-control { 3889 | display: table-cell; 3890 | } 3891 | .input-group-addon:not(:first-child):not(:last-child), 3892 | .input-group-btn:not(:first-child):not(:last-child), 3893 | .input-group .form-control:not(:first-child):not(:last-child) { 3894 | border-radius: 0; 3895 | } 3896 | .input-group-addon, 3897 | .input-group-btn { 3898 | width: 1%; 3899 | white-space: nowrap; 3900 | vertical-align: middle; 3901 | } 3902 | .input-group-addon { 3903 | padding: 8px 12px; 3904 | font-size: 14px; 3905 | font-weight: normal; 3906 | line-height: 1; 3907 | color: #333333; 3908 | text-align: center; 3909 | background-color: #eeeeee; 3910 | border: 1px solid #cccccc; 3911 | border-radius: 4px; 3912 | } 3913 | .input-group-addon.input-sm { 3914 | padding: 5px 10px; 3915 | font-size: 12px; 3916 | border-radius: 3px; 3917 | } 3918 | .input-group-addon.input-lg { 3919 | padding: 14px 16px; 3920 | font-size: 18px; 3921 | border-radius: 6px; 3922 | } 3923 | .input-group-addon input[type="radio"], 3924 | .input-group-addon input[type="checkbox"] { 3925 | margin-top: 0; 3926 | } 3927 | .input-group .form-control:first-child, 3928 | .input-group-addon:first-child, 3929 | .input-group-btn:first-child > .btn, 3930 | .input-group-btn:first-child > .btn-group > .btn, 3931 | .input-group-btn:first-child > .dropdown-toggle, 3932 | .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), 3933 | .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { 3934 | border-bottom-right-radius: 0; 3935 | border-top-right-radius: 0; 3936 | } 3937 | .input-group-addon:first-child { 3938 | border-right: 0; 3939 | } 3940 | .input-group .form-control:last-child, 3941 | .input-group-addon:last-child, 3942 | .input-group-btn:last-child > .btn, 3943 | .input-group-btn:last-child > .btn-group > .btn, 3944 | .input-group-btn:last-child > .dropdown-toggle, 3945 | .input-group-btn:first-child > .btn:not(:first-child), 3946 | .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { 3947 | border-bottom-left-radius: 0; 3948 | border-top-left-radius: 0; 3949 | } 3950 | .input-group-addon:last-child { 3951 | border-left: 0; 3952 | } 3953 | .input-group-btn { 3954 | position: relative; 3955 | font-size: 0; 3956 | white-space: nowrap; 3957 | } 3958 | .input-group-btn > .btn { 3959 | position: relative; 3960 | } 3961 | .input-group-btn > .btn + .btn { 3962 | margin-left: -1px; 3963 | } 3964 | .input-group-btn > .btn:hover, 3965 | .input-group-btn > .btn:focus, 3966 | .input-group-btn > .btn:active { 3967 | z-index: 2; 3968 | } 3969 | .input-group-btn:first-child > .btn, 3970 | .input-group-btn:first-child > .btn-group { 3971 | margin-right: -1px; 3972 | } 3973 | .input-group-btn:last-child > .btn, 3974 | .input-group-btn:last-child > .btn-group { 3975 | z-index: 2; 3976 | margin-left: -1px; 3977 | } 3978 | .nav { 3979 | margin-bottom: 0; 3980 | padding-left: 0; 3981 | list-style: none; 3982 | } 3983 | .nav > li { 3984 | position: relative; 3985 | display: block; 3986 | } 3987 | .nav > li > a { 3988 | position: relative; 3989 | display: block; 3990 | padding: 10px 15px; 3991 | } 3992 | .nav > li > a:hover, 3993 | .nav > li > a:focus { 3994 | text-decoration: none; 3995 | background-color: #eeeeee; 3996 | } 3997 | .nav > li.disabled > a { 3998 | color: #aea79f; 3999 | } 4000 | .nav > li.disabled > a:hover, 4001 | .nav > li.disabled > a:focus { 4002 | color: #aea79f; 4003 | text-decoration: none; 4004 | background-color: transparent; 4005 | cursor: not-allowed; 4006 | } 4007 | .nav .open > a, 4008 | .nav .open > a:hover, 4009 | .nav .open > a:focus { 4010 | background-color: #eeeeee; 4011 | border-color: #e95420; 4012 | } 4013 | .nav .nav-divider { 4014 | height: 1px; 4015 | margin: 9px 0; 4016 | overflow: hidden; 4017 | background-color: #e5e5e5; 4018 | } 4019 | .nav > li > a > img { 4020 | max-width: none; 4021 | } 4022 | .nav-tabs { 4023 | border-bottom: 1px solid #dddddd; 4024 | } 4025 | .nav-tabs > li { 4026 | float: left; 4027 | margin-bottom: -1px; 4028 | } 4029 | .nav-tabs > li > a { 4030 | margin-right: 2px; 4031 | line-height: 1.42857143; 4032 | border: 1px solid transparent; 4033 | border-radius: 4px 4px 0 0; 4034 | } 4035 | .nav-tabs > li > a:hover { 4036 | border-color: #eeeeee #eeeeee #dddddd; 4037 | } 4038 | .nav-tabs > li.active > a, 4039 | .nav-tabs > li.active > a:hover, 4040 | .nav-tabs > li.active > a:focus { 4041 | color: #777777; 4042 | background-color: #ffffff; 4043 | border: 1px solid #dddddd; 4044 | border-bottom-color: transparent; 4045 | cursor: default; 4046 | } 4047 | .nav-tabs.nav-justified { 4048 | width: 100%; 4049 | border-bottom: 0; 4050 | } 4051 | .nav-tabs.nav-justified > li { 4052 | float: none; 4053 | } 4054 | .nav-tabs.nav-justified > li > a { 4055 | text-align: center; 4056 | margin-bottom: 5px; 4057 | } 4058 | .nav-tabs.nav-justified > .dropdown .dropdown-menu { 4059 | top: auto; 4060 | left: auto; 4061 | } 4062 | @media (min-width: 768px) { 4063 | .nav-tabs.nav-justified > li { 4064 | display: table-cell; 4065 | width: 1%; 4066 | } 4067 | .nav-tabs.nav-justified > li > a { 4068 | margin-bottom: 0; 4069 | } 4070 | } 4071 | .nav-tabs.nav-justified > li > a { 4072 | margin-right: 0; 4073 | border-radius: 4px; 4074 | } 4075 | .nav-tabs.nav-justified > .active > a, 4076 | .nav-tabs.nav-justified > .active > a:hover, 4077 | .nav-tabs.nav-justified > .active > a:focus { 4078 | border: 1px solid #dddddd; 4079 | } 4080 | @media (min-width: 768px) { 4081 | .nav-tabs.nav-justified > li > a { 4082 | border-bottom: 1px solid #dddddd; 4083 | border-radius: 4px 4px 0 0; 4084 | } 4085 | .nav-tabs.nav-justified > .active > a, 4086 | .nav-tabs.nav-justified > .active > a:hover, 4087 | .nav-tabs.nav-justified > .active > a:focus { 4088 | border-bottom-color: #ffffff; 4089 | } 4090 | } 4091 | .nav-pills > li { 4092 | float: left; 4093 | } 4094 | .nav-pills > li > a { 4095 | border-radius: 4px; 4096 | } 4097 | .nav-pills > li + li { 4098 | margin-left: 2px; 4099 | } 4100 | .nav-pills > li.active > a, 4101 | .nav-pills > li.active > a:hover, 4102 | .nav-pills > li.active > a:focus { 4103 | color: #ffffff; 4104 | background-color: #e95420; 4105 | } 4106 | .nav-stacked > li { 4107 | float: none; 4108 | } 4109 | .nav-stacked > li + li { 4110 | margin-top: 2px; 4111 | margin-left: 0; 4112 | } 4113 | .nav-justified { 4114 | width: 100%; 4115 | } 4116 | .nav-justified > li { 4117 | float: none; 4118 | } 4119 | .nav-justified > li > a { 4120 | text-align: center; 4121 | margin-bottom: 5px; 4122 | } 4123 | .nav-justified > .dropdown .dropdown-menu { 4124 | top: auto; 4125 | left: auto; 4126 | } 4127 | @media (min-width: 768px) { 4128 | .nav-justified > li { 4129 | display: table-cell; 4130 | width: 1%; 4131 | } 4132 | .nav-justified > li > a { 4133 | margin-bottom: 0; 4134 | } 4135 | } 4136 | .nav-tabs-justified { 4137 | border-bottom: 0; 4138 | } 4139 | .nav-tabs-justified > li > a { 4140 | margin-right: 0; 4141 | border-radius: 4px; 4142 | } 4143 | .nav-tabs-justified > .active > a, 4144 | .nav-tabs-justified > .active > a:hover, 4145 | .nav-tabs-justified > .active > a:focus { 4146 | border: 1px solid #dddddd; 4147 | } 4148 | @media (min-width: 768px) { 4149 | .nav-tabs-justified > li > a { 4150 | border-bottom: 1px solid #dddddd; 4151 | border-radius: 4px 4px 0 0; 4152 | } 4153 | .nav-tabs-justified > .active > a, 4154 | .nav-tabs-justified > .active > a:hover, 4155 | .nav-tabs-justified > .active > a:focus { 4156 | border-bottom-color: #ffffff; 4157 | } 4158 | } 4159 | .tab-content > .tab-pane { 4160 | display: none; 4161 | } 4162 | .tab-content > .active { 4163 | display: block; 4164 | } 4165 | .nav-tabs .dropdown-menu { 4166 | margin-top: -1px; 4167 | border-top-right-radius: 0; 4168 | border-top-left-radius: 0; 4169 | } 4170 | .navbar { 4171 | position: relative; 4172 | min-height: 50px; 4173 | margin-bottom: 20px; 4174 | border: 1px solid transparent; 4175 | } 4176 | @media (min-width: 768px) { 4177 | .navbar { 4178 | border-radius: 4px; 4179 | } 4180 | } 4181 | @media (min-width: 768px) { 4182 | .navbar-header { 4183 | float: left; 4184 | } 4185 | } 4186 | .navbar-collapse { 4187 | overflow-x: visible; 4188 | padding-right: 15px; 4189 | padding-left: 15px; 4190 | border-top: 1px solid transparent; 4191 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); 4192 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); 4193 | -webkit-overflow-scrolling: touch; 4194 | } 4195 | .navbar-collapse.in { 4196 | overflow-y: auto; 4197 | } 4198 | @media (min-width: 768px) { 4199 | .navbar-collapse { 4200 | width: auto; 4201 | border-top: 0; 4202 | -webkit-box-shadow: none; 4203 | box-shadow: none; 4204 | } 4205 | .navbar-collapse.collapse { 4206 | display: block !important; 4207 | height: auto !important; 4208 | padding-bottom: 0; 4209 | overflow: visible !important; 4210 | } 4211 | .navbar-collapse.in { 4212 | overflow-y: visible; 4213 | } 4214 | .navbar-fixed-top .navbar-collapse, 4215 | .navbar-static-top .navbar-collapse, 4216 | .navbar-fixed-bottom .navbar-collapse { 4217 | padding-left: 0; 4218 | padding-right: 0; 4219 | } 4220 | } 4221 | .navbar-fixed-top .navbar-collapse, 4222 | .navbar-fixed-bottom .navbar-collapse { 4223 | max-height: 340px; 4224 | } 4225 | @media (max-device-width: 480px) and (orientation: landscape) { 4226 | .navbar-fixed-top .navbar-collapse, 4227 | .navbar-fixed-bottom .navbar-collapse { 4228 | max-height: 200px; 4229 | } 4230 | } 4231 | .container > .navbar-header, 4232 | .container-fluid > .navbar-header, 4233 | .container > .navbar-collapse, 4234 | .container-fluid > .navbar-collapse { 4235 | margin-right: -15px; 4236 | margin-left: -15px; 4237 | } 4238 | @media (min-width: 768px) { 4239 | .container > .navbar-header, 4240 | .container-fluid > .navbar-header, 4241 | .container > .navbar-collapse, 4242 | .container-fluid > .navbar-collapse { 4243 | margin-right: 0; 4244 | margin-left: 0; 4245 | } 4246 | } 4247 | .navbar-static-top { 4248 | z-index: 1000; 4249 | border-width: 0 0 1px; 4250 | } 4251 | @media (min-width: 768px) { 4252 | .navbar-static-top { 4253 | border-radius: 0; 4254 | } 4255 | } 4256 | .navbar-fixed-top, 4257 | .navbar-fixed-bottom { 4258 | position: fixed; 4259 | right: 0; 4260 | left: 0; 4261 | z-index: 1030; 4262 | } 4263 | @media (min-width: 768px) { 4264 | .navbar-fixed-top, 4265 | .navbar-fixed-bottom { 4266 | border-radius: 0; 4267 | } 4268 | } 4269 | .navbar-fixed-top { 4270 | top: 0; 4271 | border-width: 0 0 1px; 4272 | } 4273 | .navbar-fixed-bottom { 4274 | bottom: 0; 4275 | margin-bottom: 0; 4276 | border-width: 1px 0 0; 4277 | } 4278 | .navbar-brand { 4279 | float: left; 4280 | padding: 15px 15px; 4281 | font-size: 18px; 4282 | line-height: 20px; 4283 | height: 50px; 4284 | } 4285 | .navbar-brand:hover, 4286 | .navbar-brand:focus { 4287 | text-decoration: none; 4288 | } 4289 | .navbar-brand > img { 4290 | display: block; 4291 | } 4292 | @media (min-width: 768px) { 4293 | .navbar > .container .navbar-brand, 4294 | .navbar > .container-fluid .navbar-brand { 4295 | margin-left: -15px; 4296 | } 4297 | } 4298 | .navbar-toggle { 4299 | position: relative; 4300 | float: right; 4301 | margin-right: 15px; 4302 | padding: 9px 10px; 4303 | margin-top: 8px; 4304 | margin-bottom: 8px; 4305 | background-color: transparent; 4306 | background-image: none; 4307 | border: 1px solid transparent; 4308 | border-radius: 4px; 4309 | } 4310 | .navbar-toggle:focus { 4311 | outline: 0; 4312 | } 4313 | .navbar-toggle .icon-bar { 4314 | display: block; 4315 | width: 22px; 4316 | height: 2px; 4317 | border-radius: 1px; 4318 | } 4319 | .navbar-toggle .icon-bar + .icon-bar { 4320 | margin-top: 4px; 4321 | } 4322 | @media (min-width: 768px) { 4323 | .navbar-toggle { 4324 | display: none; 4325 | } 4326 | } 4327 | .navbar-nav { 4328 | margin: 7.5px -15px; 4329 | } 4330 | .navbar-nav > li > a { 4331 | padding-top: 10px; 4332 | padding-bottom: 10px; 4333 | line-height: 20px; 4334 | } 4335 | @media (max-width: 767px) { 4336 | .navbar-nav .open .dropdown-menu { 4337 | position: static; 4338 | float: none; 4339 | width: auto; 4340 | margin-top: 0; 4341 | background-color: transparent; 4342 | border: 0; 4343 | -webkit-box-shadow: none; 4344 | box-shadow: none; 4345 | } 4346 | .navbar-nav .open .dropdown-menu > li > a, 4347 | .navbar-nav .open .dropdown-menu .dropdown-header { 4348 | padding: 5px 15px 5px 25px; 4349 | } 4350 | .navbar-nav .open .dropdown-menu > li > a { 4351 | line-height: 20px; 4352 | } 4353 | .navbar-nav .open .dropdown-menu > li > a:hover, 4354 | .navbar-nav .open .dropdown-menu > li > a:focus { 4355 | background-image: none; 4356 | } 4357 | } 4358 | @media (min-width: 768px) { 4359 | .navbar-nav { 4360 | float: left; 4361 | margin: 0; 4362 | } 4363 | .navbar-nav > li { 4364 | float: left; 4365 | } 4366 | .navbar-nav > li > a { 4367 | padding-top: 15px; 4368 | padding-bottom: 15px; 4369 | } 4370 | } 4371 | .navbar-form { 4372 | margin-left: -15px; 4373 | margin-right: -15px; 4374 | padding: 10px 15px; 4375 | border-top: 1px solid transparent; 4376 | border-bottom: 1px solid transparent; 4377 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 4378 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 4379 | margin-top: 6px; 4380 | margin-bottom: 6px; 4381 | } 4382 | @media (min-width: 768px) { 4383 | .navbar-form .form-group { 4384 | display: inline-block; 4385 | margin-bottom: 0; 4386 | vertical-align: middle; 4387 | } 4388 | .navbar-form .form-control { 4389 | display: inline-block; 4390 | width: auto; 4391 | vertical-align: middle; 4392 | } 4393 | .navbar-form .form-control-static { 4394 | display: inline-block; 4395 | } 4396 | .navbar-form .input-group { 4397 | display: inline-table; 4398 | vertical-align: middle; 4399 | } 4400 | .navbar-form .input-group .input-group-addon, 4401 | .navbar-form .input-group .input-group-btn, 4402 | .navbar-form .input-group .form-control { 4403 | width: auto; 4404 | } 4405 | .navbar-form .input-group > .form-control { 4406 | width: 100%; 4407 | } 4408 | .navbar-form .control-label { 4409 | margin-bottom: 0; 4410 | vertical-align: middle; 4411 | } 4412 | .navbar-form .radio, 4413 | .navbar-form .checkbox { 4414 | display: inline-block; 4415 | margin-top: 0; 4416 | margin-bottom: 0; 4417 | vertical-align: middle; 4418 | } 4419 | .navbar-form .radio label, 4420 | .navbar-form .checkbox label { 4421 | padding-left: 0; 4422 | } 4423 | .navbar-form .radio input[type="radio"], 4424 | .navbar-form .checkbox input[type="checkbox"] { 4425 | position: relative; 4426 | margin-left: 0; 4427 | } 4428 | .navbar-form .has-feedback .form-control-feedback { 4429 | top: 0; 4430 | } 4431 | } 4432 | @media (max-width: 767px) { 4433 | .navbar-form .form-group { 4434 | margin-bottom: 5px; 4435 | } 4436 | .navbar-form .form-group:last-child { 4437 | margin-bottom: 0; 4438 | } 4439 | } 4440 | @media (min-width: 768px) { 4441 | .navbar-form { 4442 | width: auto; 4443 | border: 0; 4444 | margin-left: 0; 4445 | margin-right: 0; 4446 | padding-top: 0; 4447 | padding-bottom: 0; 4448 | -webkit-box-shadow: none; 4449 | box-shadow: none; 4450 | } 4451 | } 4452 | .navbar-nav > li > .dropdown-menu { 4453 | margin-top: 0; 4454 | border-top-right-radius: 0; 4455 | border-top-left-radius: 0; 4456 | } 4457 | .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { 4458 | margin-bottom: 0; 4459 | border-top-right-radius: 4px; 4460 | border-top-left-radius: 4px; 4461 | border-bottom-right-radius: 0; 4462 | border-bottom-left-radius: 0; 4463 | } 4464 | .navbar-btn { 4465 | margin-top: 6px; 4466 | margin-bottom: 6px; 4467 | } 4468 | .navbar-btn.btn-sm { 4469 | margin-top: 10px; 4470 | margin-bottom: 10px; 4471 | } 4472 | .navbar-btn.btn-xs { 4473 | margin-top: 14px; 4474 | margin-bottom: 14px; 4475 | } 4476 | .navbar-text { 4477 | margin-top: 15px; 4478 | margin-bottom: 15px; 4479 | } 4480 | @media (min-width: 768px) { 4481 | .navbar-text { 4482 | float: left; 4483 | margin-left: 15px; 4484 | margin-right: 15px; 4485 | } 4486 | } 4487 | @media (min-width: 768px) { 4488 | .navbar-left { 4489 | float: left !important; 4490 | } 4491 | .navbar-right { 4492 | float: right !important; 4493 | margin-right: -15px; 4494 | } 4495 | .navbar-right ~ .navbar-right { 4496 | margin-right: 0; 4497 | } 4498 | } 4499 | .navbar-default { 4500 | background-color: #e95420; 4501 | border-color: #d34615; 4502 | } 4503 | .navbar-default .navbar-brand { 4504 | color: #ffffff; 4505 | } 4506 | .navbar-default .navbar-brand:hover, 4507 | .navbar-default .navbar-brand:focus { 4508 | color: #ffffff; 4509 | background-color: none; 4510 | } 4511 | .navbar-default .navbar-text { 4512 | color: #ffffff; 4513 | } 4514 | .navbar-default .navbar-nav > li > a { 4515 | color: #ffffff; 4516 | } 4517 | .navbar-default .navbar-nav > li > a:hover, 4518 | .navbar-default .navbar-nav > li > a:focus { 4519 | color: #ffffff; 4520 | background-color: #ac3911; 4521 | } 4522 | .navbar-default .navbar-nav > .active > a, 4523 | .navbar-default .navbar-nav > .active > a:hover, 4524 | .navbar-default .navbar-nav > .active > a:focus { 4525 | color: #ffffff; 4526 | background-color: #c34113; 4527 | } 4528 | .navbar-default .navbar-nav > .disabled > a, 4529 | .navbar-default .navbar-nav > .disabled > a:hover, 4530 | .navbar-default .navbar-nav > .disabled > a:focus { 4531 | color: #cccccc; 4532 | background-color: transparent; 4533 | } 4534 | .navbar-default .navbar-toggle { 4535 | border-color: #ac3911; 4536 | } 4537 | .navbar-default .navbar-toggle:hover, 4538 | .navbar-default .navbar-toggle:focus { 4539 | background-color: #ac3911; 4540 | } 4541 | .navbar-default .navbar-toggle .icon-bar { 4542 | background-color: #ffffff; 4543 | } 4544 | .navbar-default .navbar-collapse, 4545 | .navbar-default .navbar-form { 4546 | border-color: #d34615; 4547 | } 4548 | .navbar-default .navbar-nav > .open > a, 4549 | .navbar-default .navbar-nav > .open > a:hover, 4550 | .navbar-default .navbar-nav > .open > a:focus { 4551 | background-color: #c34113; 4552 | color: #ffffff; 4553 | } 4554 | @media (max-width: 767px) { 4555 | .navbar-default .navbar-nav .open .dropdown-menu > li > a { 4556 | color: #ffffff; 4557 | } 4558 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, 4559 | .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { 4560 | color: #ffffff; 4561 | background-color: #ac3911; 4562 | } 4563 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a, 4564 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, 4565 | .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { 4566 | color: #ffffff; 4567 | background-color: #c34113; 4568 | } 4569 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, 4570 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, 4571 | .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { 4572 | color: #cccccc; 4573 | background-color: transparent; 4574 | } 4575 | } 4576 | .navbar-default .navbar-link { 4577 | color: #ffffff; 4578 | } 4579 | .navbar-default .navbar-link:hover { 4580 | color: #ffffff; 4581 | } 4582 | .navbar-default .btn-link { 4583 | color: #ffffff; 4584 | } 4585 | .navbar-default .btn-link:hover, 4586 | .navbar-default .btn-link:focus { 4587 | color: #ffffff; 4588 | } 4589 | .navbar-default .btn-link[disabled]:hover, 4590 | fieldset[disabled] .navbar-default .btn-link:hover, 4591 | .navbar-default .btn-link[disabled]:focus, 4592 | fieldset[disabled] .navbar-default .btn-link:focus { 4593 | color: #cccccc; 4594 | } 4595 | .navbar-inverse { 4596 | background-color: #772953; 4597 | border-color: #511c39; 4598 | } 4599 | .navbar-inverse .navbar-brand { 4600 | color: #ffffff; 4601 | } 4602 | .navbar-inverse .navbar-brand:hover, 4603 | .navbar-inverse .navbar-brand:focus { 4604 | color: #ffffff; 4605 | background-color: none; 4606 | } 4607 | .navbar-inverse .navbar-text { 4608 | color: #ffffff; 4609 | } 4610 | .navbar-inverse .navbar-nav > li > a { 4611 | color: #ffffff; 4612 | } 4613 | .navbar-inverse .navbar-nav > li > a:hover, 4614 | .navbar-inverse .navbar-nav > li > a:focus { 4615 | color: #ffffff; 4616 | background-color: #3e152b; 4617 | } 4618 | .navbar-inverse .navbar-nav > .active > a, 4619 | .navbar-inverse .navbar-nav > .active > a:hover, 4620 | .navbar-inverse .navbar-nav > .active > a:focus { 4621 | color: #ffffff; 4622 | background-color: #511c39; 4623 | } 4624 | .navbar-inverse .navbar-nav > .disabled > a, 4625 | .navbar-inverse .navbar-nav > .disabled > a:hover, 4626 | .navbar-inverse .navbar-nav > .disabled > a:focus { 4627 | color: #cccccc; 4628 | background-color: transparent; 4629 | } 4630 | .navbar-inverse .navbar-toggle { 4631 | border-color: #3e152b; 4632 | } 4633 | .navbar-inverse .navbar-toggle:hover, 4634 | .navbar-inverse .navbar-toggle:focus { 4635 | background-color: #3e152b; 4636 | } 4637 | .navbar-inverse .navbar-toggle .icon-bar { 4638 | background-color: #ffffff; 4639 | } 4640 | .navbar-inverse .navbar-collapse, 4641 | .navbar-inverse .navbar-form { 4642 | border-color: #5c2040; 4643 | } 4644 | .navbar-inverse .navbar-nav > .open > a, 4645 | .navbar-inverse .navbar-nav > .open > a:hover, 4646 | .navbar-inverse .navbar-nav > .open > a:focus { 4647 | background-color: #511c39; 4648 | color: #ffffff; 4649 | } 4650 | @media (max-width: 767px) { 4651 | .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { 4652 | border-color: #511c39; 4653 | } 4654 | .navbar-inverse .navbar-nav .open .dropdown-menu .divider { 4655 | background-color: #511c39; 4656 | } 4657 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { 4658 | color: #ffffff; 4659 | } 4660 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, 4661 | .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { 4662 | color: #ffffff; 4663 | background-color: #3e152b; 4664 | } 4665 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, 4666 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, 4667 | .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { 4668 | color: #ffffff; 4669 | background-color: #511c39; 4670 | } 4671 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, 4672 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, 4673 | .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { 4674 | color: #cccccc; 4675 | background-color: transparent; 4676 | } 4677 | } 4678 | .navbar-inverse .navbar-link { 4679 | color: #ffffff; 4680 | } 4681 | .navbar-inverse .navbar-link:hover { 4682 | color: #ffffff; 4683 | } 4684 | .navbar-inverse .btn-link { 4685 | color: #ffffff; 4686 | } 4687 | .navbar-inverse .btn-link:hover, 4688 | .navbar-inverse .btn-link:focus { 4689 | color: #ffffff; 4690 | } 4691 | .navbar-inverse .btn-link[disabled]:hover, 4692 | fieldset[disabled] .navbar-inverse .btn-link:hover, 4693 | .navbar-inverse .btn-link[disabled]:focus, 4694 | fieldset[disabled] .navbar-inverse .btn-link:focus { 4695 | color: #cccccc; 4696 | } 4697 | .breadcrumb { 4698 | padding: 8px 15px; 4699 | margin-bottom: 20px; 4700 | list-style: none; 4701 | background-color: #f5f5f5; 4702 | border-radius: 4px; 4703 | } 4704 | .breadcrumb > li { 4705 | display: inline-block; 4706 | } 4707 | .breadcrumb > li + li:before { 4708 | content: "/\00a0"; 4709 | padding: 0 5px; 4710 | color: #cccccc; 4711 | } 4712 | .breadcrumb > .active { 4713 | color: #aea79f; 4714 | } 4715 | .pagination { 4716 | display: inline-block; 4717 | padding-left: 0; 4718 | margin: 20px 0; 4719 | border-radius: 4px; 4720 | } 4721 | .pagination > li { 4722 | display: inline; 4723 | } 4724 | .pagination > li > a, 4725 | .pagination > li > span { 4726 | position: relative; 4727 | float: left; 4728 | padding: 8px 12px; 4729 | line-height: 1.42857143; 4730 | text-decoration: none; 4731 | color: #e95420; 4732 | background-color: #ffffff; 4733 | border: 1px solid #dddddd; 4734 | margin-left: -1px; 4735 | } 4736 | .pagination > li:first-child > a, 4737 | .pagination > li:first-child > span { 4738 | margin-left: 0; 4739 | border-bottom-left-radius: 4px; 4740 | border-top-left-radius: 4px; 4741 | } 4742 | .pagination > li:last-child > a, 4743 | .pagination > li:last-child > span { 4744 | border-bottom-right-radius: 4px; 4745 | border-top-right-radius: 4px; 4746 | } 4747 | .pagination > li > a:hover, 4748 | .pagination > li > span:hover, 4749 | .pagination > li > a:focus, 4750 | .pagination > li > span:focus { 4751 | z-index: 2; 4752 | color: #ac3911; 4753 | background-color: #eeeeee; 4754 | border-color: #dddddd; 4755 | } 4756 | .pagination > .active > a, 4757 | .pagination > .active > span, 4758 | .pagination > .active > a:hover, 4759 | .pagination > .active > span:hover, 4760 | .pagination > .active > a:focus, 4761 | .pagination > .active > span:focus { 4762 | z-index: 3; 4763 | color: #aea79f; 4764 | background-color: #f5f5f5; 4765 | border-color: #dddddd; 4766 | cursor: default; 4767 | } 4768 | .pagination > .disabled > span, 4769 | .pagination > .disabled > span:hover, 4770 | .pagination > .disabled > span:focus, 4771 | .pagination > .disabled > a, 4772 | .pagination > .disabled > a:hover, 4773 | .pagination > .disabled > a:focus { 4774 | color: #aea79f; 4775 | background-color: #ffffff; 4776 | border-color: #dddddd; 4777 | cursor: not-allowed; 4778 | } 4779 | .pagination-lg > li > a, 4780 | .pagination-lg > li > span { 4781 | padding: 14px 16px; 4782 | font-size: 18px; 4783 | line-height: 1.3333333; 4784 | } 4785 | .pagination-lg > li:first-child > a, 4786 | .pagination-lg > li:first-child > span { 4787 | border-bottom-left-radius: 6px; 4788 | border-top-left-radius: 6px; 4789 | } 4790 | .pagination-lg > li:last-child > a, 4791 | .pagination-lg > li:last-child > span { 4792 | border-bottom-right-radius: 6px; 4793 | border-top-right-radius: 6px; 4794 | } 4795 | .pagination-sm > li > a, 4796 | .pagination-sm > li > span { 4797 | padding: 5px 10px; 4798 | font-size: 12px; 4799 | line-height: 1.5; 4800 | } 4801 | .pagination-sm > li:first-child > a, 4802 | .pagination-sm > li:first-child > span { 4803 | border-bottom-left-radius: 3px; 4804 | border-top-left-radius: 3px; 4805 | } 4806 | .pagination-sm > li:last-child > a, 4807 | .pagination-sm > li:last-child > span { 4808 | border-bottom-right-radius: 3px; 4809 | border-top-right-radius: 3px; 4810 | } 4811 | .pager { 4812 | padding-left: 0; 4813 | margin: 20px 0; 4814 | list-style: none; 4815 | text-align: center; 4816 | } 4817 | .pager li { 4818 | display: inline; 4819 | } 4820 | .pager li > a, 4821 | .pager li > span { 4822 | display: inline-block; 4823 | padding: 5px 14px; 4824 | background-color: #ffffff; 4825 | border: 1px solid #dddddd; 4826 | border-radius: 15px; 4827 | } 4828 | .pager li > a:hover, 4829 | .pager li > a:focus { 4830 | text-decoration: none; 4831 | background-color: #eeeeee; 4832 | } 4833 | .pager .next > a, 4834 | .pager .next > span { 4835 | float: right; 4836 | } 4837 | .pager .previous > a, 4838 | .pager .previous > span { 4839 | float: left; 4840 | } 4841 | .pager .disabled > a, 4842 | .pager .disabled > a:hover, 4843 | .pager .disabled > a:focus, 4844 | .pager .disabled > span { 4845 | color: #aea79f; 4846 | background-color: #ffffff; 4847 | cursor: not-allowed; 4848 | } 4849 | .label { 4850 | display: inline; 4851 | padding: .2em .6em .3em; 4852 | font-size: 75%; 4853 | font-weight: bold; 4854 | line-height: 1; 4855 | color: #ffffff; 4856 | text-align: center; 4857 | white-space: nowrap; 4858 | vertical-align: baseline; 4859 | border-radius: .25em; 4860 | } 4861 | a.label:hover, 4862 | a.label:focus { 4863 | color: #ffffff; 4864 | text-decoration: none; 4865 | cursor: pointer; 4866 | } 4867 | .label:empty { 4868 | display: none; 4869 | } 4870 | .btn .label { 4871 | position: relative; 4872 | top: -1px; 4873 | } 4874 | .label-default { 4875 | background-color: #aea79f; 4876 | } 4877 | .label-default[href]:hover, 4878 | .label-default[href]:focus { 4879 | background-color: #978e83; 4880 | } 4881 | .label-primary { 4882 | background-color: #e95420; 4883 | } 4884 | .label-primary[href]:hover, 4885 | .label-primary[href]:focus { 4886 | background-color: #c34113; 4887 | } 4888 | .label-success { 4889 | background-color: #38b44a; 4890 | } 4891 | .label-success[href]:hover, 4892 | .label-success[href]:focus { 4893 | background-color: #2c8d3a; 4894 | } 4895 | .label-info { 4896 | background-color: #772953; 4897 | } 4898 | .label-info[href]:hover, 4899 | .label-info[href]:focus { 4900 | background-color: #511c39; 4901 | } 4902 | .label-warning { 4903 | background-color: #efb73e; 4904 | } 4905 | .label-warning[href]:hover, 4906 | .label-warning[href]:focus { 4907 | background-color: #e7a413; 4908 | } 4909 | .label-danger { 4910 | background-color: #df382c; 4911 | } 4912 | .label-danger[href]:hover, 4913 | .label-danger[href]:focus { 4914 | background-color: #bc271c; 4915 | } 4916 | .badge { 4917 | display: inline-block; 4918 | min-width: 10px; 4919 | padding: 3px 7px; 4920 | font-size: 12px; 4921 | font-weight: bold; 4922 | color: #ffffff; 4923 | line-height: 1; 4924 | vertical-align: middle; 4925 | white-space: nowrap; 4926 | text-align: center; 4927 | background-color: #aea79f; 4928 | border-radius: 10px; 4929 | } 4930 | .badge:empty { 4931 | display: none; 4932 | } 4933 | .btn .badge { 4934 | position: relative; 4935 | top: -1px; 4936 | } 4937 | .btn-xs .badge, 4938 | .btn-group-xs > .btn .badge { 4939 | top: 0; 4940 | padding: 1px 5px; 4941 | } 4942 | a.badge:hover, 4943 | a.badge:focus { 4944 | color: #ffffff; 4945 | text-decoration: none; 4946 | cursor: pointer; 4947 | } 4948 | .list-group-item.active > .badge, 4949 | .nav-pills > .active > a > .badge { 4950 | color: #e95420; 4951 | background-color: #ffffff; 4952 | } 4953 | .list-group-item > .badge { 4954 | float: right; 4955 | } 4956 | .list-group-item > .badge + .badge { 4957 | margin-right: 5px; 4958 | } 4959 | .nav-pills > li > a > .badge { 4960 | margin-left: 3px; 4961 | } 4962 | .jumbotron { 4963 | padding-top: 30px; 4964 | padding-bottom: 30px; 4965 | margin-bottom: 30px; 4966 | color: inherit; 4967 | background-color: #eeeeee; 4968 | } 4969 | .jumbotron h1, 4970 | .jumbotron .h1 { 4971 | color: inherit; 4972 | } 4973 | .jumbotron p { 4974 | margin-bottom: 15px; 4975 | font-size: 21px; 4976 | font-weight: 200; 4977 | } 4978 | .jumbotron > hr { 4979 | border-top-color: #d5d5d5; 4980 | } 4981 | .container .jumbotron, 4982 | .container-fluid .jumbotron { 4983 | border-radius: 6px; 4984 | padding-left: 15px; 4985 | padding-right: 15px; 4986 | } 4987 | .jumbotron .container { 4988 | max-width: 100%; 4989 | } 4990 | @media screen and (min-width: 768px) { 4991 | .jumbotron { 4992 | padding-top: 48px; 4993 | padding-bottom: 48px; 4994 | } 4995 | .container .jumbotron, 4996 | .container-fluid .jumbotron { 4997 | padding-left: 60px; 4998 | padding-right: 60px; 4999 | } 5000 | .jumbotron h1, 5001 | .jumbotron .h1 { 5002 | font-size: 63px; 5003 | } 5004 | } 5005 | .thumbnail { 5006 | display: block; 5007 | padding: 4px; 5008 | margin-bottom: 20px; 5009 | line-height: 1.42857143; 5010 | background-color: #ffffff; 5011 | border: 1px solid #dddddd; 5012 | border-radius: 4px; 5013 | -webkit-transition: border 0.2s ease-in-out; 5014 | -o-transition: border 0.2s ease-in-out; 5015 | transition: border 0.2s ease-in-out; 5016 | } 5017 | .thumbnail > img, 5018 | .thumbnail a > img { 5019 | margin-left: auto; 5020 | margin-right: auto; 5021 | } 5022 | a.thumbnail:hover, 5023 | a.thumbnail:focus, 5024 | a.thumbnail.active { 5025 | border-color: #e95420; 5026 | } 5027 | .thumbnail .caption { 5028 | padding: 9px; 5029 | color: #333333; 5030 | } 5031 | .alert { 5032 | padding: 15px; 5033 | margin-bottom: 20px; 5034 | border: 1px solid transparent; 5035 | border-radius: 4px; 5036 | } 5037 | .alert h4 { 5038 | margin-top: 0; 5039 | color: inherit; 5040 | } 5041 | .alert .alert-link { 5042 | font-weight: bold; 5043 | } 5044 | .alert > p, 5045 | .alert > ul { 5046 | margin-bottom: 0; 5047 | } 5048 | .alert > p + p { 5049 | margin-top: 5px; 5050 | } 5051 | .alert-dismissable, 5052 | .alert-dismissible { 5053 | padding-right: 35px; 5054 | } 5055 | .alert-dismissable .close, 5056 | .alert-dismissible .close { 5057 | position: relative; 5058 | top: -2px; 5059 | right: -21px; 5060 | color: inherit; 5061 | } 5062 | .alert-success { 5063 | background-color: #dff0d8; 5064 | border-color: #d6e9c6; 5065 | color: #468847; 5066 | } 5067 | .alert-success hr { 5068 | border-top-color: #c9e2b3; 5069 | } 5070 | .alert-success .alert-link { 5071 | color: #356635; 5072 | } 5073 | .alert-info { 5074 | background-color: #d9edf7; 5075 | border-color: #bce8f1; 5076 | color: #3a87ad; 5077 | } 5078 | .alert-info hr { 5079 | border-top-color: #a6e1ec; 5080 | } 5081 | .alert-info .alert-link { 5082 | color: #2d6987; 5083 | } 5084 | .alert-warning { 5085 | background-color: #fcf8e3; 5086 | border-color: #fbeed5; 5087 | color: #c09853; 5088 | } 5089 | .alert-warning hr { 5090 | border-top-color: #f8e5be; 5091 | } 5092 | .alert-warning .alert-link { 5093 | color: #a47e3c; 5094 | } 5095 | .alert-danger { 5096 | background-color: #f2dede; 5097 | border-color: #eed3d7; 5098 | color: #b94a48; 5099 | } 5100 | .alert-danger hr { 5101 | border-top-color: #e6c1c7; 5102 | } 5103 | .alert-danger .alert-link { 5104 | color: #953b39; 5105 | } 5106 | @-webkit-keyframes progress-bar-stripes { 5107 | from { 5108 | background-position: 40px 0; 5109 | } 5110 | to { 5111 | background-position: 0 0; 5112 | } 5113 | } 5114 | @-o-keyframes progress-bar-stripes { 5115 | from { 5116 | background-position: 40px 0; 5117 | } 5118 | to { 5119 | background-position: 0 0; 5120 | } 5121 | } 5122 | @keyframes progress-bar-stripes { 5123 | from { 5124 | background-position: 40px 0; 5125 | } 5126 | to { 5127 | background-position: 0 0; 5128 | } 5129 | } 5130 | .progress { 5131 | overflow: hidden; 5132 | height: 20px; 5133 | margin-bottom: 20px; 5134 | background-color: #f5f5f5; 5135 | border-radius: 4px; 5136 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 5137 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); 5138 | } 5139 | .progress-bar { 5140 | float: left; 5141 | width: 0%; 5142 | height: 100%; 5143 | font-size: 12px; 5144 | line-height: 20px; 5145 | color: #ffffff; 5146 | text-align: center; 5147 | background-color: #e95420; 5148 | -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 5149 | box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); 5150 | -webkit-transition: width 0.6s ease; 5151 | -o-transition: width 0.6s ease; 5152 | transition: width 0.6s ease; 5153 | } 5154 | .progress-striped .progress-bar, 5155 | .progress-bar-striped { 5156 | 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); 5157 | 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); 5158 | 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); 5159 | -webkit-background-size: 40px 40px; 5160 | background-size: 40px 40px; 5161 | } 5162 | .progress.active .progress-bar, 5163 | .progress-bar.active { 5164 | -webkit-animation: progress-bar-stripes 2s linear infinite; 5165 | -o-animation: progress-bar-stripes 2s linear infinite; 5166 | animation: progress-bar-stripes 2s linear infinite; 5167 | } 5168 | .progress-bar-success { 5169 | background-color: #38b44a; 5170 | } 5171 | .progress-striped .progress-bar-success { 5172 | 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); 5173 | 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); 5174 | 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); 5175 | } 5176 | .progress-bar-info { 5177 | background-color: #772953; 5178 | } 5179 | .progress-striped .progress-bar-info { 5180 | 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); 5181 | 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); 5182 | 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); 5183 | } 5184 | .progress-bar-warning { 5185 | background-color: #efb73e; 5186 | } 5187 | .progress-striped .progress-bar-warning { 5188 | 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); 5189 | 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); 5190 | 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); 5191 | } 5192 | .progress-bar-danger { 5193 | background-color: #df382c; 5194 | } 5195 | .progress-striped .progress-bar-danger { 5196 | 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); 5197 | 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); 5198 | 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); 5199 | } 5200 | .media { 5201 | margin-top: 15px; 5202 | } 5203 | .media:first-child { 5204 | margin-top: 0; 5205 | } 5206 | .media, 5207 | .media-body { 5208 | zoom: 1; 5209 | overflow: hidden; 5210 | } 5211 | .media-body { 5212 | width: 10000px; 5213 | } 5214 | .media-object { 5215 | display: block; 5216 | } 5217 | .media-object.img-thumbnail { 5218 | max-width: none; 5219 | } 5220 | .media-right, 5221 | .media > .pull-right { 5222 | padding-left: 10px; 5223 | } 5224 | .media-left, 5225 | .media > .pull-left { 5226 | padding-right: 10px; 5227 | } 5228 | .media-left, 5229 | .media-right, 5230 | .media-body { 5231 | display: table-cell; 5232 | vertical-align: top; 5233 | } 5234 | .media-middle { 5235 | vertical-align: middle; 5236 | } 5237 | .media-bottom { 5238 | vertical-align: bottom; 5239 | } 5240 | .media-heading { 5241 | margin-top: 0; 5242 | margin-bottom: 5px; 5243 | } 5244 | .media-list { 5245 | padding-left: 0; 5246 | list-style: none; 5247 | } 5248 | .list-group { 5249 | margin-bottom: 20px; 5250 | padding-left: 0; 5251 | } 5252 | .list-group-item { 5253 | position: relative; 5254 | display: block; 5255 | padding: 10px 15px; 5256 | margin-bottom: -1px; 5257 | background-color: #ffffff; 5258 | border: 1px solid #dddddd; 5259 | } 5260 | .list-group-item:first-child { 5261 | border-top-right-radius: 4px; 5262 | border-top-left-radius: 4px; 5263 | } 5264 | .list-group-item:last-child { 5265 | margin-bottom: 0; 5266 | border-bottom-right-radius: 4px; 5267 | border-bottom-left-radius: 4px; 5268 | } 5269 | a.list-group-item, 5270 | button.list-group-item { 5271 | color: #555555; 5272 | } 5273 | a.list-group-item .list-group-item-heading, 5274 | button.list-group-item .list-group-item-heading { 5275 | color: #333333; 5276 | } 5277 | a.list-group-item:hover, 5278 | button.list-group-item:hover, 5279 | a.list-group-item:focus, 5280 | button.list-group-item:focus { 5281 | text-decoration: none; 5282 | color: #555555; 5283 | background-color: #f5f5f5; 5284 | } 5285 | button.list-group-item { 5286 | width: 100%; 5287 | text-align: left; 5288 | } 5289 | .list-group-item.disabled, 5290 | .list-group-item.disabled:hover, 5291 | .list-group-item.disabled:focus { 5292 | background-color: #eeeeee; 5293 | color: #aea79f; 5294 | cursor: not-allowed; 5295 | } 5296 | .list-group-item.disabled .list-group-item-heading, 5297 | .list-group-item.disabled:hover .list-group-item-heading, 5298 | .list-group-item.disabled:focus .list-group-item-heading { 5299 | color: inherit; 5300 | } 5301 | .list-group-item.disabled .list-group-item-text, 5302 | .list-group-item.disabled:hover .list-group-item-text, 5303 | .list-group-item.disabled:focus .list-group-item-text { 5304 | color: #aea79f; 5305 | } 5306 | .list-group-item.active, 5307 | .list-group-item.active:hover, 5308 | .list-group-item.active:focus { 5309 | z-index: 2; 5310 | color: #ffffff; 5311 | background-color: #e95420; 5312 | border-color: #e95420; 5313 | } 5314 | .list-group-item.active .list-group-item-heading, 5315 | .list-group-item.active:hover .list-group-item-heading, 5316 | .list-group-item.active:focus .list-group-item-heading, 5317 | .list-group-item.active .list-group-item-heading > small, 5318 | .list-group-item.active:hover .list-group-item-heading > small, 5319 | .list-group-item.active:focus .list-group-item-heading > small, 5320 | .list-group-item.active .list-group-item-heading > .small, 5321 | .list-group-item.active:hover .list-group-item-heading > .small, 5322 | .list-group-item.active:focus .list-group-item-heading > .small { 5323 | color: inherit; 5324 | } 5325 | .list-group-item.active .list-group-item-text, 5326 | .list-group-item.active:hover .list-group-item-text, 5327 | .list-group-item.active:focus .list-group-item-text { 5328 | color: #fbe2da; 5329 | } 5330 | .list-group-item-success { 5331 | color: #468847; 5332 | background-color: #dff0d8; 5333 | } 5334 | a.list-group-item-success, 5335 | button.list-group-item-success { 5336 | color: #468847; 5337 | } 5338 | a.list-group-item-success .list-group-item-heading, 5339 | button.list-group-item-success .list-group-item-heading { 5340 | color: inherit; 5341 | } 5342 | a.list-group-item-success:hover, 5343 | button.list-group-item-success:hover, 5344 | a.list-group-item-success:focus, 5345 | button.list-group-item-success:focus { 5346 | color: #468847; 5347 | background-color: #d0e9c6; 5348 | } 5349 | a.list-group-item-success.active, 5350 | button.list-group-item-success.active, 5351 | a.list-group-item-success.active:hover, 5352 | button.list-group-item-success.active:hover, 5353 | a.list-group-item-success.active:focus, 5354 | button.list-group-item-success.active:focus { 5355 | color: #fff; 5356 | background-color: #468847; 5357 | border-color: #468847; 5358 | } 5359 | .list-group-item-info { 5360 | color: #3a87ad; 5361 | background-color: #d9edf7; 5362 | } 5363 | a.list-group-item-info, 5364 | button.list-group-item-info { 5365 | color: #3a87ad; 5366 | } 5367 | a.list-group-item-info .list-group-item-heading, 5368 | button.list-group-item-info .list-group-item-heading { 5369 | color: inherit; 5370 | } 5371 | a.list-group-item-info:hover, 5372 | button.list-group-item-info:hover, 5373 | a.list-group-item-info:focus, 5374 | button.list-group-item-info:focus { 5375 | color: #3a87ad; 5376 | background-color: #c4e3f3; 5377 | } 5378 | a.list-group-item-info.active, 5379 | button.list-group-item-info.active, 5380 | a.list-group-item-info.active:hover, 5381 | button.list-group-item-info.active:hover, 5382 | a.list-group-item-info.active:focus, 5383 | button.list-group-item-info.active:focus { 5384 | color: #fff; 5385 | background-color: #3a87ad; 5386 | border-color: #3a87ad; 5387 | } 5388 | .list-group-item-warning { 5389 | color: #c09853; 5390 | background-color: #fcf8e3; 5391 | } 5392 | a.list-group-item-warning, 5393 | button.list-group-item-warning { 5394 | color: #c09853; 5395 | } 5396 | a.list-group-item-warning .list-group-item-heading, 5397 | button.list-group-item-warning .list-group-item-heading { 5398 | color: inherit; 5399 | } 5400 | a.list-group-item-warning:hover, 5401 | button.list-group-item-warning:hover, 5402 | a.list-group-item-warning:focus, 5403 | button.list-group-item-warning:focus { 5404 | color: #c09853; 5405 | background-color: #faf2cc; 5406 | } 5407 | a.list-group-item-warning.active, 5408 | button.list-group-item-warning.active, 5409 | a.list-group-item-warning.active:hover, 5410 | button.list-group-item-warning.active:hover, 5411 | a.list-group-item-warning.active:focus, 5412 | button.list-group-item-warning.active:focus { 5413 | color: #fff; 5414 | background-color: #c09853; 5415 | border-color: #c09853; 5416 | } 5417 | .list-group-item-danger { 5418 | color: #b94a48; 5419 | background-color: #f2dede; 5420 | } 5421 | a.list-group-item-danger, 5422 | button.list-group-item-danger { 5423 | color: #b94a48; 5424 | } 5425 | a.list-group-item-danger .list-group-item-heading, 5426 | button.list-group-item-danger .list-group-item-heading { 5427 | color: inherit; 5428 | } 5429 | a.list-group-item-danger:hover, 5430 | button.list-group-item-danger:hover, 5431 | a.list-group-item-danger:focus, 5432 | button.list-group-item-danger:focus { 5433 | color: #b94a48; 5434 | background-color: #ebcccc; 5435 | } 5436 | a.list-group-item-danger.active, 5437 | button.list-group-item-danger.active, 5438 | a.list-group-item-danger.active:hover, 5439 | button.list-group-item-danger.active:hover, 5440 | a.list-group-item-danger.active:focus, 5441 | button.list-group-item-danger.active:focus { 5442 | color: #fff; 5443 | background-color: #b94a48; 5444 | border-color: #b94a48; 5445 | } 5446 | .list-group-item-heading { 5447 | margin-top: 0; 5448 | margin-bottom: 5px; 5449 | } 5450 | .list-group-item-text { 5451 | margin-bottom: 0; 5452 | line-height: 1.3; 5453 | } 5454 | .panel { 5455 | margin-bottom: 20px; 5456 | background-color: #ffffff; 5457 | border: 1px solid transparent; 5458 | border-radius: 4px; 5459 | -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 5460 | box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); 5461 | } 5462 | .panel-body { 5463 | padding: 15px; 5464 | } 5465 | .panel-heading { 5466 | padding: 10px 15px; 5467 | border-bottom: 1px solid transparent; 5468 | border-top-right-radius: 3px; 5469 | border-top-left-radius: 3px; 5470 | } 5471 | .panel-heading > .dropdown .dropdown-toggle { 5472 | color: inherit; 5473 | } 5474 | .panel-title { 5475 | margin-top: 0; 5476 | margin-bottom: 0; 5477 | font-size: 16px; 5478 | color: inherit; 5479 | } 5480 | .panel-title > a, 5481 | .panel-title > small, 5482 | .panel-title > .small, 5483 | .panel-title > small > a, 5484 | .panel-title > .small > a { 5485 | color: inherit; 5486 | } 5487 | .panel-footer { 5488 | padding: 10px 15px; 5489 | background-color: #f5f5f5; 5490 | border-top: 1px solid #dddddd; 5491 | border-bottom-right-radius: 3px; 5492 | border-bottom-left-radius: 3px; 5493 | } 5494 | .panel > .list-group, 5495 | .panel > .panel-collapse > .list-group { 5496 | margin-bottom: 0; 5497 | } 5498 | .panel > .list-group .list-group-item, 5499 | .panel > .panel-collapse > .list-group .list-group-item { 5500 | border-width: 1px 0; 5501 | border-radius: 0; 5502 | } 5503 | .panel > .list-group:first-child .list-group-item:first-child, 5504 | .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { 5505 | border-top: 0; 5506 | border-top-right-radius: 3px; 5507 | border-top-left-radius: 3px; 5508 | } 5509 | .panel > .list-group:last-child .list-group-item:last-child, 5510 | .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { 5511 | border-bottom: 0; 5512 | border-bottom-right-radius: 3px; 5513 | border-bottom-left-radius: 3px; 5514 | } 5515 | .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { 5516 | border-top-right-radius: 0; 5517 | border-top-left-radius: 0; 5518 | } 5519 | .panel-heading + .list-group .list-group-item:first-child { 5520 | border-top-width: 0; 5521 | } 5522 | .list-group + .panel-footer { 5523 | border-top-width: 0; 5524 | } 5525 | .panel > .table, 5526 | .panel > .table-responsive > .table, 5527 | .panel > .panel-collapse > .table { 5528 | margin-bottom: 0; 5529 | } 5530 | .panel > .table caption, 5531 | .panel > .table-responsive > .table caption, 5532 | .panel > .panel-collapse > .table caption { 5533 | padding-left: 15px; 5534 | padding-right: 15px; 5535 | } 5536 | .panel > .table:first-child, 5537 | .panel > .table-responsive:first-child > .table:first-child { 5538 | border-top-right-radius: 3px; 5539 | border-top-left-radius: 3px; 5540 | } 5541 | .panel > .table:first-child > thead:first-child > tr:first-child, 5542 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, 5543 | .panel > .table:first-child > tbody:first-child > tr:first-child, 5544 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { 5545 | border-top-left-radius: 3px; 5546 | border-top-right-radius: 3px; 5547 | } 5548 | .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, 5549 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, 5550 | .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, 5551 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, 5552 | .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, 5553 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, 5554 | .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, 5555 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { 5556 | border-top-left-radius: 3px; 5557 | } 5558 | .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, 5559 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, 5560 | .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, 5561 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, 5562 | .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, 5563 | .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, 5564 | .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, 5565 | .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { 5566 | border-top-right-radius: 3px; 5567 | } 5568 | .panel > .table:last-child, 5569 | .panel > .table-responsive:last-child > .table:last-child { 5570 | border-bottom-right-radius: 3px; 5571 | border-bottom-left-radius: 3px; 5572 | } 5573 | .panel > .table:last-child > tbody:last-child > tr:last-child, 5574 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, 5575 | .panel > .table:last-child > tfoot:last-child > tr:last-child, 5576 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { 5577 | border-bottom-left-radius: 3px; 5578 | border-bottom-right-radius: 3px; 5579 | } 5580 | .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, 5581 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, 5582 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, 5583 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, 5584 | .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, 5585 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, 5586 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, 5587 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { 5588 | border-bottom-left-radius: 3px; 5589 | } 5590 | .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, 5591 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, 5592 | .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, 5593 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, 5594 | .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, 5595 | .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, 5596 | .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, 5597 | .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { 5598 | border-bottom-right-radius: 3px; 5599 | } 5600 | .panel > .panel-body + .table, 5601 | .panel > .panel-body + .table-responsive, 5602 | .panel > .table + .panel-body, 5603 | .panel > .table-responsive + .panel-body { 5604 | border-top: 1px solid #dddddd; 5605 | } 5606 | .panel > .table > tbody:first-child > tr:first-child th, 5607 | .panel > .table > tbody:first-child > tr:first-child td { 5608 | border-top: 0; 5609 | } 5610 | .panel > .table-bordered, 5611 | .panel > .table-responsive > .table-bordered { 5612 | border: 0; 5613 | } 5614 | .panel > .table-bordered > thead > tr > th:first-child, 5615 | .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, 5616 | .panel > .table-bordered > tbody > tr > th:first-child, 5617 | .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, 5618 | .panel > .table-bordered > tfoot > tr > th:first-child, 5619 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, 5620 | .panel > .table-bordered > thead > tr > td:first-child, 5621 | .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, 5622 | .panel > .table-bordered > tbody > tr > td:first-child, 5623 | .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, 5624 | .panel > .table-bordered > tfoot > tr > td:first-child, 5625 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { 5626 | border-left: 0; 5627 | } 5628 | .panel > .table-bordered > thead > tr > th:last-child, 5629 | .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, 5630 | .panel > .table-bordered > tbody > tr > th:last-child, 5631 | .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, 5632 | .panel > .table-bordered > tfoot > tr > th:last-child, 5633 | .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, 5634 | .panel > .table-bordered > thead > tr > td:last-child, 5635 | .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, 5636 | .panel > .table-bordered > tbody > tr > td:last-child, 5637 | .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, 5638 | .panel > .table-bordered > tfoot > tr > td:last-child, 5639 | .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { 5640 | border-right: 0; 5641 | } 5642 | .panel > .table-bordered > thead > tr:first-child > td, 5643 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, 5644 | .panel > .table-bordered > tbody > tr:first-child > td, 5645 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, 5646 | .panel > .table-bordered > thead > tr:first-child > th, 5647 | .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, 5648 | .panel > .table-bordered > tbody > tr:first-child > th, 5649 | .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { 5650 | border-bottom: 0; 5651 | } 5652 | .panel > .table-bordered > tbody > tr:last-child > td, 5653 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, 5654 | .panel > .table-bordered > tfoot > tr:last-child > td, 5655 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, 5656 | .panel > .table-bordered > tbody > tr:last-child > th, 5657 | .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, 5658 | .panel > .table-bordered > tfoot > tr:last-child > th, 5659 | .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { 5660 | border-bottom: 0; 5661 | } 5662 | .panel > .table-responsive { 5663 | border: 0; 5664 | margin-bottom: 0; 5665 | } 5666 | .panel-group { 5667 | margin-bottom: 20px; 5668 | } 5669 | .panel-group .panel { 5670 | margin-bottom: 0; 5671 | border-radius: 4px; 5672 | } 5673 | .panel-group .panel + .panel { 5674 | margin-top: 5px; 5675 | } 5676 | .panel-group .panel-heading { 5677 | border-bottom: 0; 5678 | } 5679 | .panel-group .panel-heading + .panel-collapse > .panel-body, 5680 | .panel-group .panel-heading + .panel-collapse > .list-group { 5681 | border-top: 1px solid #dddddd; 5682 | } 5683 | .panel-group .panel-footer { 5684 | border-top: 0; 5685 | } 5686 | .panel-group .panel-footer + .panel-collapse .panel-body { 5687 | border-bottom: 1px solid #dddddd; 5688 | } 5689 | .panel-default { 5690 | border-color: #dddddd; 5691 | } 5692 | .panel-default > .panel-heading { 5693 | color: #333333; 5694 | background-color: #f5f5f5; 5695 | border-color: #dddddd; 5696 | } 5697 | .panel-default > .panel-heading + .panel-collapse > .panel-body { 5698 | border-top-color: #dddddd; 5699 | } 5700 | .panel-default > .panel-heading .badge { 5701 | color: #f5f5f5; 5702 | background-color: #333333; 5703 | } 5704 | .panel-default > .panel-footer + .panel-collapse > .panel-body { 5705 | border-bottom-color: #dddddd; 5706 | } 5707 | .panel-primary { 5708 | border-color: #e95420; 5709 | } 5710 | .panel-primary > .panel-heading { 5711 | color: #ffffff; 5712 | background-color: #e95420; 5713 | border-color: #e95420; 5714 | } 5715 | .panel-primary > .panel-heading + .panel-collapse > .panel-body { 5716 | border-top-color: #e95420; 5717 | } 5718 | .panel-primary > .panel-heading .badge { 5719 | color: #e95420; 5720 | background-color: #ffffff; 5721 | } 5722 | .panel-primary > .panel-footer + .panel-collapse > .panel-body { 5723 | border-bottom-color: #e95420; 5724 | } 5725 | .panel-success { 5726 | border-color: #d6e9c6; 5727 | } 5728 | .panel-success > .panel-heading { 5729 | color: #468847; 5730 | background-color: #dff0d8; 5731 | border-color: #d6e9c6; 5732 | } 5733 | .panel-success > .panel-heading + .panel-collapse > .panel-body { 5734 | border-top-color: #d6e9c6; 5735 | } 5736 | .panel-success > .panel-heading .badge { 5737 | color: #dff0d8; 5738 | background-color: #468847; 5739 | } 5740 | .panel-success > .panel-footer + .panel-collapse > .panel-body { 5741 | border-bottom-color: #d6e9c6; 5742 | } 5743 | .panel-info { 5744 | border-color: #bce8f1; 5745 | } 5746 | .panel-info > .panel-heading { 5747 | color: #3a87ad; 5748 | background-color: #d9edf7; 5749 | border-color: #bce8f1; 5750 | } 5751 | .panel-info > .panel-heading + .panel-collapse > .panel-body { 5752 | border-top-color: #bce8f1; 5753 | } 5754 | .panel-info > .panel-heading .badge { 5755 | color: #d9edf7; 5756 | background-color: #3a87ad; 5757 | } 5758 | .panel-info > .panel-footer + .panel-collapse > .panel-body { 5759 | border-bottom-color: #bce8f1; 5760 | } 5761 | .panel-warning { 5762 | border-color: #fbeed5; 5763 | } 5764 | .panel-warning > .panel-heading { 5765 | color: #c09853; 5766 | background-color: #fcf8e3; 5767 | border-color: #fbeed5; 5768 | } 5769 | .panel-warning > .panel-heading + .panel-collapse > .panel-body { 5770 | border-top-color: #fbeed5; 5771 | } 5772 | .panel-warning > .panel-heading .badge { 5773 | color: #fcf8e3; 5774 | background-color: #c09853; 5775 | } 5776 | .panel-warning > .panel-footer + .panel-collapse > .panel-body { 5777 | border-bottom-color: #fbeed5; 5778 | } 5779 | .panel-danger { 5780 | border-color: #eed3d7; 5781 | } 5782 | .panel-danger > .panel-heading { 5783 | color: #b94a48; 5784 | background-color: #f2dede; 5785 | border-color: #eed3d7; 5786 | } 5787 | .panel-danger > .panel-heading + .panel-collapse > .panel-body { 5788 | border-top-color: #eed3d7; 5789 | } 5790 | .panel-danger > .panel-heading .badge { 5791 | color: #f2dede; 5792 | background-color: #b94a48; 5793 | } 5794 | .panel-danger > .panel-footer + .panel-collapse > .panel-body { 5795 | border-bottom-color: #eed3d7; 5796 | } 5797 | .embed-responsive { 5798 | position: relative; 5799 | display: block; 5800 | height: 0; 5801 | padding: 0; 5802 | overflow: hidden; 5803 | } 5804 | .embed-responsive .embed-responsive-item, 5805 | .embed-responsive iframe, 5806 | .embed-responsive embed, 5807 | .embed-responsive object, 5808 | .embed-responsive video { 5809 | position: absolute; 5810 | top: 0; 5811 | left: 0; 5812 | bottom: 0; 5813 | height: 100%; 5814 | width: 100%; 5815 | border: 0; 5816 | } 5817 | .embed-responsive-16by9 { 5818 | padding-bottom: 56.25%; 5819 | } 5820 | .embed-responsive-4by3 { 5821 | padding-bottom: 75%; 5822 | } 5823 | .well { 5824 | min-height: 20px; 5825 | padding: 19px; 5826 | margin-bottom: 20px; 5827 | background-color: #f5f5f5; 5828 | border: 1px solid #e3e3e3; 5829 | border-radius: 4px; 5830 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 5831 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); 5832 | } 5833 | .well blockquote { 5834 | border-color: #ddd; 5835 | border-color: rgba(0, 0, 0, 0.15); 5836 | } 5837 | .well-lg { 5838 | padding: 24px; 5839 | border-radius: 6px; 5840 | } 5841 | .well-sm { 5842 | padding: 9px; 5843 | border-radius: 3px; 5844 | } 5845 | .close { 5846 | float: right; 5847 | font-size: 21px; 5848 | font-weight: bold; 5849 | line-height: 1; 5850 | color: #000000; 5851 | text-shadow: 0 1px 0 #ffffff; 5852 | opacity: 0.2; 5853 | filter: alpha(opacity=20); 5854 | } 5855 | .close:hover, 5856 | .close:focus { 5857 | color: #000000; 5858 | text-decoration: none; 5859 | cursor: pointer; 5860 | opacity: 0.5; 5861 | filter: alpha(opacity=50); 5862 | } 5863 | button.close { 5864 | padding: 0; 5865 | cursor: pointer; 5866 | background: transparent; 5867 | border: 0; 5868 | -webkit-appearance: none; 5869 | } 5870 | .modal-open { 5871 | overflow: hidden; 5872 | } 5873 | .modal { 5874 | display: none; 5875 | overflow: hidden; 5876 | position: fixed; 5877 | top: 0; 5878 | right: 0; 5879 | bottom: 0; 5880 | left: 0; 5881 | z-index: 1050; 5882 | -webkit-overflow-scrolling: touch; 5883 | outline: 0; 5884 | } 5885 | .modal.fade .modal-dialog { 5886 | -webkit-transform: translate(0, -25%); 5887 | -ms-transform: translate(0, -25%); 5888 | -o-transform: translate(0, -25%); 5889 | transform: translate(0, -25%); 5890 | -webkit-transition: -webkit-transform 0.3s ease-out; 5891 | -o-transition: -o-transform 0.3s ease-out; 5892 | transition: transform 0.3s ease-out; 5893 | } 5894 | .modal.in .modal-dialog { 5895 | -webkit-transform: translate(0, 0); 5896 | -ms-transform: translate(0, 0); 5897 | -o-transform: translate(0, 0); 5898 | transform: translate(0, 0); 5899 | } 5900 | .modal-open .modal { 5901 | overflow-x: hidden; 5902 | overflow-y: auto; 5903 | } 5904 | .modal-dialog { 5905 | position: relative; 5906 | width: auto; 5907 | margin: 10px; 5908 | } 5909 | .modal-content { 5910 | position: relative; 5911 | background-color: #ffffff; 5912 | border: 1px solid #999999; 5913 | border: 1px solid rgba(0, 0, 0, 0.2); 5914 | border-radius: 6px; 5915 | -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 5916 | box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); 5917 | -webkit-background-clip: padding-box; 5918 | background-clip: padding-box; 5919 | outline: 0; 5920 | } 5921 | .modal-backdrop { 5922 | position: fixed; 5923 | top: 0; 5924 | right: 0; 5925 | bottom: 0; 5926 | left: 0; 5927 | z-index: 1040; 5928 | background-color: #000000; 5929 | } 5930 | .modal-backdrop.fade { 5931 | opacity: 0; 5932 | filter: alpha(opacity=0); 5933 | } 5934 | .modal-backdrop.in { 5935 | opacity: 0.5; 5936 | filter: alpha(opacity=50); 5937 | } 5938 | .modal-header { 5939 | padding: 15px; 5940 | border-bottom: 1px solid #e5e5e5; 5941 | } 5942 | .modal-header .close { 5943 | margin-top: -2px; 5944 | } 5945 | .modal-title { 5946 | margin: 0; 5947 | line-height: 1.42857143; 5948 | } 5949 | .modal-body { 5950 | position: relative; 5951 | padding: 20px; 5952 | } 5953 | .modal-footer { 5954 | padding: 20px; 5955 | text-align: right; 5956 | border-top: 1px solid #e5e5e5; 5957 | } 5958 | .modal-footer .btn + .btn { 5959 | margin-left: 5px; 5960 | margin-bottom: 0; 5961 | } 5962 | .modal-footer .btn-group .btn + .btn { 5963 | margin-left: -1px; 5964 | } 5965 | .modal-footer .btn-block + .btn-block { 5966 | margin-left: 0; 5967 | } 5968 | .modal-scrollbar-measure { 5969 | position: absolute; 5970 | top: -9999px; 5971 | width: 50px; 5972 | height: 50px; 5973 | overflow: scroll; 5974 | } 5975 | @media (min-width: 768px) { 5976 | .modal-dialog { 5977 | width: 600px; 5978 | margin: 30px auto; 5979 | } 5980 | .modal-content { 5981 | -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 5982 | box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); 5983 | } 5984 | .modal-sm { 5985 | width: 300px; 5986 | } 5987 | } 5988 | @media (min-width: 992px) { 5989 | .modal-lg { 5990 | width: 900px; 5991 | } 5992 | } 5993 | .tooltip { 5994 | position: absolute; 5995 | z-index: 1070; 5996 | display: block; 5997 | font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; 5998 | font-style: normal; 5999 | font-weight: normal; 6000 | letter-spacing: normal; 6001 | line-break: auto; 6002 | line-height: 1.42857143; 6003 | text-align: left; 6004 | text-align: start; 6005 | text-decoration: none; 6006 | text-shadow: none; 6007 | text-transform: none; 6008 | white-space: normal; 6009 | word-break: normal; 6010 | word-spacing: normal; 6011 | word-wrap: normal; 6012 | font-size: 12px; 6013 | opacity: 0; 6014 | filter: alpha(opacity=0); 6015 | } 6016 | .tooltip.in { 6017 | opacity: 0.9; 6018 | filter: alpha(opacity=90); 6019 | } 6020 | .tooltip.top { 6021 | margin-top: -3px; 6022 | padding: 5px 0; 6023 | } 6024 | .tooltip.right { 6025 | margin-left: 3px; 6026 | padding: 0 5px; 6027 | } 6028 | .tooltip.bottom { 6029 | margin-top: 3px; 6030 | padding: 5px 0; 6031 | } 6032 | .tooltip.left { 6033 | margin-left: -3px; 6034 | padding: 0 5px; 6035 | } 6036 | .tooltip-inner { 6037 | max-width: 200px; 6038 | padding: 3px 8px; 6039 | color: #ffffff; 6040 | text-align: center; 6041 | background-color: #000000; 6042 | border-radius: 4px; 6043 | } 6044 | .tooltip-arrow { 6045 | position: absolute; 6046 | width: 0; 6047 | height: 0; 6048 | border-color: transparent; 6049 | border-style: solid; 6050 | } 6051 | .tooltip.top .tooltip-arrow { 6052 | bottom: 0; 6053 | left: 50%; 6054 | margin-left: -5px; 6055 | border-width: 5px 5px 0; 6056 | border-top-color: #000000; 6057 | } 6058 | .tooltip.top-left .tooltip-arrow { 6059 | bottom: 0; 6060 | right: 5px; 6061 | margin-bottom: -5px; 6062 | border-width: 5px 5px 0; 6063 | border-top-color: #000000; 6064 | } 6065 | .tooltip.top-right .tooltip-arrow { 6066 | bottom: 0; 6067 | left: 5px; 6068 | margin-bottom: -5px; 6069 | border-width: 5px 5px 0; 6070 | border-top-color: #000000; 6071 | } 6072 | .tooltip.right .tooltip-arrow { 6073 | top: 50%; 6074 | left: 0; 6075 | margin-top: -5px; 6076 | border-width: 5px 5px 5px 0; 6077 | border-right-color: #000000; 6078 | } 6079 | .tooltip.left .tooltip-arrow { 6080 | top: 50%; 6081 | right: 0; 6082 | margin-top: -5px; 6083 | border-width: 5px 0 5px 5px; 6084 | border-left-color: #000000; 6085 | } 6086 | .tooltip.bottom .tooltip-arrow { 6087 | top: 0; 6088 | left: 50%; 6089 | margin-left: -5px; 6090 | border-width: 0 5px 5px; 6091 | border-bottom-color: #000000; 6092 | } 6093 | .tooltip.bottom-left .tooltip-arrow { 6094 | top: 0; 6095 | right: 5px; 6096 | margin-top: -5px; 6097 | border-width: 0 5px 5px; 6098 | border-bottom-color: #000000; 6099 | } 6100 | .tooltip.bottom-right .tooltip-arrow { 6101 | top: 0; 6102 | left: 5px; 6103 | margin-top: -5px; 6104 | border-width: 0 5px 5px; 6105 | border-bottom-color: #000000; 6106 | } 6107 | .popover { 6108 | position: absolute; 6109 | top: 0; 6110 | left: 0; 6111 | z-index: 1060; 6112 | display: none; 6113 | max-width: 276px; 6114 | padding: 1px; 6115 | font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; 6116 | font-style: normal; 6117 | font-weight: normal; 6118 | letter-spacing: normal; 6119 | line-break: auto; 6120 | line-height: 1.42857143; 6121 | text-align: left; 6122 | text-align: start; 6123 | text-decoration: none; 6124 | text-shadow: none; 6125 | text-transform: none; 6126 | white-space: normal; 6127 | word-break: normal; 6128 | word-spacing: normal; 6129 | word-wrap: normal; 6130 | font-size: 14px; 6131 | background-color: #ffffff; 6132 | -webkit-background-clip: padding-box; 6133 | background-clip: padding-box; 6134 | border: 1px solid #cccccc; 6135 | border: 1px solid rgba(0, 0, 0, 0.2); 6136 | border-radius: 6px; 6137 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 6138 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); 6139 | } 6140 | .popover.top { 6141 | margin-top: -10px; 6142 | } 6143 | .popover.right { 6144 | margin-left: 10px; 6145 | } 6146 | .popover.bottom { 6147 | margin-top: 10px; 6148 | } 6149 | .popover.left { 6150 | margin-left: -10px; 6151 | } 6152 | .popover-title { 6153 | margin: 0; 6154 | padding: 8px 14px; 6155 | font-size: 14px; 6156 | background-color: #f7f7f7; 6157 | border-bottom: 1px solid #ebebeb; 6158 | border-radius: 5px 5px 0 0; 6159 | } 6160 | .popover-content { 6161 | padding: 9px 14px; 6162 | } 6163 | .popover > .arrow, 6164 | .popover > .arrow:after { 6165 | position: absolute; 6166 | display: block; 6167 | width: 0; 6168 | height: 0; 6169 | border-color: transparent; 6170 | border-style: solid; 6171 | } 6172 | .popover > .arrow { 6173 | border-width: 11px; 6174 | } 6175 | .popover > .arrow:after { 6176 | border-width: 10px; 6177 | content: ""; 6178 | } 6179 | .popover.top > .arrow { 6180 | left: 50%; 6181 | margin-left: -11px; 6182 | border-bottom-width: 0; 6183 | border-top-color: #999999; 6184 | border-top-color: rgba(0, 0, 0, 0.25); 6185 | bottom: -11px; 6186 | } 6187 | .popover.top > .arrow:after { 6188 | content: " "; 6189 | bottom: 1px; 6190 | margin-left: -10px; 6191 | border-bottom-width: 0; 6192 | border-top-color: #ffffff; 6193 | } 6194 | .popover.right > .arrow { 6195 | top: 50%; 6196 | left: -11px; 6197 | margin-top: -11px; 6198 | border-left-width: 0; 6199 | border-right-color: #999999; 6200 | border-right-color: rgba(0, 0, 0, 0.25); 6201 | } 6202 | .popover.right > .arrow:after { 6203 | content: " "; 6204 | left: 1px; 6205 | bottom: -10px; 6206 | border-left-width: 0; 6207 | border-right-color: #ffffff; 6208 | } 6209 | .popover.bottom > .arrow { 6210 | left: 50%; 6211 | margin-left: -11px; 6212 | border-top-width: 0; 6213 | border-bottom-color: #999999; 6214 | border-bottom-color: rgba(0, 0, 0, 0.25); 6215 | top: -11px; 6216 | } 6217 | .popover.bottom > .arrow:after { 6218 | content: " "; 6219 | top: 1px; 6220 | margin-left: -10px; 6221 | border-top-width: 0; 6222 | border-bottom-color: #ffffff; 6223 | } 6224 | .popover.left > .arrow { 6225 | top: 50%; 6226 | right: -11px; 6227 | margin-top: -11px; 6228 | border-right-width: 0; 6229 | border-left-color: #999999; 6230 | border-left-color: rgba(0, 0, 0, 0.25); 6231 | } 6232 | .popover.left > .arrow:after { 6233 | content: " "; 6234 | right: 1px; 6235 | border-right-width: 0; 6236 | border-left-color: #ffffff; 6237 | bottom: -10px; 6238 | } 6239 | .carousel { 6240 | position: relative; 6241 | } 6242 | .carousel-inner { 6243 | position: relative; 6244 | overflow: hidden; 6245 | width: 100%; 6246 | } 6247 | .carousel-inner > .item { 6248 | display: none; 6249 | position: relative; 6250 | -webkit-transition: 0.6s ease-in-out left; 6251 | -o-transition: 0.6s ease-in-out left; 6252 | transition: 0.6s ease-in-out left; 6253 | } 6254 | .carousel-inner > .item > img, 6255 | .carousel-inner > .item > a > img { 6256 | line-height: 1; 6257 | } 6258 | @media all and (transform-3d), (-webkit-transform-3d) { 6259 | .carousel-inner > .item { 6260 | -webkit-transition: -webkit-transform 0.6s ease-in-out; 6261 | -o-transition: -o-transform 0.6s ease-in-out; 6262 | transition: transform 0.6s ease-in-out; 6263 | -webkit-backface-visibility: hidden; 6264 | backface-visibility: hidden; 6265 | -webkit-perspective: 1000px; 6266 | perspective: 1000px; 6267 | } 6268 | .carousel-inner > .item.next, 6269 | .carousel-inner > .item.active.right { 6270 | -webkit-transform: translate3d(100%, 0, 0); 6271 | transform: translate3d(100%, 0, 0); 6272 | left: 0; 6273 | } 6274 | .carousel-inner > .item.prev, 6275 | .carousel-inner > .item.active.left { 6276 | -webkit-transform: translate3d(-100%, 0, 0); 6277 | transform: translate3d(-100%, 0, 0); 6278 | left: 0; 6279 | } 6280 | .carousel-inner > .item.next.left, 6281 | .carousel-inner > .item.prev.right, 6282 | .carousel-inner > .item.active { 6283 | -webkit-transform: translate3d(0, 0, 0); 6284 | transform: translate3d(0, 0, 0); 6285 | left: 0; 6286 | } 6287 | } 6288 | .carousel-inner > .active, 6289 | .carousel-inner > .next, 6290 | .carousel-inner > .prev { 6291 | display: block; 6292 | } 6293 | .carousel-inner > .active { 6294 | left: 0; 6295 | } 6296 | .carousel-inner > .next, 6297 | .carousel-inner > .prev { 6298 | position: absolute; 6299 | top: 0; 6300 | width: 100%; 6301 | } 6302 | .carousel-inner > .next { 6303 | left: 100%; 6304 | } 6305 | .carousel-inner > .prev { 6306 | left: -100%; 6307 | } 6308 | .carousel-inner > .next.left, 6309 | .carousel-inner > .prev.right { 6310 | left: 0; 6311 | } 6312 | .carousel-inner > .active.left { 6313 | left: -100%; 6314 | } 6315 | .carousel-inner > .active.right { 6316 | left: 100%; 6317 | } 6318 | .carousel-control { 6319 | position: absolute; 6320 | top: 0; 6321 | left: 0; 6322 | bottom: 0; 6323 | width: 15%; 6324 | opacity: 0.5; 6325 | filter: alpha(opacity=50); 6326 | font-size: 20px; 6327 | color: #ffffff; 6328 | text-align: center; 6329 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 6330 | background-color: rgba(0, 0, 0, 0); 6331 | } 6332 | .carousel-control.left { 6333 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6334 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6335 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001))); 6336 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); 6337 | background-repeat: repeat-x; 6338 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); 6339 | } 6340 | .carousel-control.right { 6341 | left: auto; 6342 | right: 0; 6343 | background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6344 | background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6345 | background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5))); 6346 | background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); 6347 | background-repeat: repeat-x; 6348 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); 6349 | } 6350 | .carousel-control:hover, 6351 | .carousel-control:focus { 6352 | outline: 0; 6353 | color: #ffffff; 6354 | text-decoration: none; 6355 | opacity: 0.9; 6356 | filter: alpha(opacity=90); 6357 | } 6358 | .carousel-control .icon-prev, 6359 | .carousel-control .icon-next, 6360 | .carousel-control .glyphicon-chevron-left, 6361 | .carousel-control .glyphicon-chevron-right { 6362 | position: absolute; 6363 | top: 50%; 6364 | margin-top: -10px; 6365 | z-index: 5; 6366 | display: inline-block; 6367 | } 6368 | .carousel-control .icon-prev, 6369 | .carousel-control .glyphicon-chevron-left { 6370 | left: 50%; 6371 | margin-left: -10px; 6372 | } 6373 | .carousel-control .icon-next, 6374 | .carousel-control .glyphicon-chevron-right { 6375 | right: 50%; 6376 | margin-right: -10px; 6377 | } 6378 | .carousel-control .icon-prev, 6379 | .carousel-control .icon-next { 6380 | width: 20px; 6381 | height: 20px; 6382 | line-height: 1; 6383 | font-family: serif; 6384 | } 6385 | .carousel-control .icon-prev:before { 6386 | content: '\2039'; 6387 | } 6388 | .carousel-control .icon-next:before { 6389 | content: '\203a'; 6390 | } 6391 | .carousel-indicators { 6392 | position: absolute; 6393 | bottom: 10px; 6394 | left: 50%; 6395 | z-index: 15; 6396 | width: 60%; 6397 | margin-left: -30%; 6398 | padding-left: 0; 6399 | list-style: none; 6400 | text-align: center; 6401 | } 6402 | .carousel-indicators li { 6403 | display: inline-block; 6404 | width: 10px; 6405 | height: 10px; 6406 | margin: 1px; 6407 | text-indent: -999px; 6408 | border: 1px solid #ffffff; 6409 | border-radius: 10px; 6410 | cursor: pointer; 6411 | background-color: #000 \9; 6412 | background-color: rgba(0, 0, 0, 0); 6413 | } 6414 | .carousel-indicators .active { 6415 | margin: 0; 6416 | width: 12px; 6417 | height: 12px; 6418 | background-color: #ffffff; 6419 | } 6420 | .carousel-caption { 6421 | position: absolute; 6422 | left: 15%; 6423 | right: 15%; 6424 | bottom: 20px; 6425 | z-index: 10; 6426 | padding-top: 20px; 6427 | padding-bottom: 20px; 6428 | color: #ffffff; 6429 | text-align: center; 6430 | text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); 6431 | } 6432 | .carousel-caption .btn { 6433 | text-shadow: none; 6434 | } 6435 | @media screen and (min-width: 768px) { 6436 | .carousel-control .glyphicon-chevron-left, 6437 | .carousel-control .glyphicon-chevron-right, 6438 | .carousel-control .icon-prev, 6439 | .carousel-control .icon-next { 6440 | width: 30px; 6441 | height: 30px; 6442 | margin-top: -10px; 6443 | font-size: 30px; 6444 | } 6445 | .carousel-control .glyphicon-chevron-left, 6446 | .carousel-control .icon-prev { 6447 | margin-left: -10px; 6448 | } 6449 | .carousel-control .glyphicon-chevron-right, 6450 | .carousel-control .icon-next { 6451 | margin-right: -10px; 6452 | } 6453 | .carousel-caption { 6454 | left: 20%; 6455 | right: 20%; 6456 | padding-bottom: 30px; 6457 | } 6458 | .carousel-indicators { 6459 | bottom: 20px; 6460 | } 6461 | } 6462 | .clearfix:before, 6463 | .clearfix:after, 6464 | .dl-horizontal dd:before, 6465 | .dl-horizontal dd:after, 6466 | .container:before, 6467 | .container:after, 6468 | .container-fluid:before, 6469 | .container-fluid:after, 6470 | .row:before, 6471 | .row:after, 6472 | .form-horizontal .form-group:before, 6473 | .form-horizontal .form-group:after, 6474 | .btn-toolbar:before, 6475 | .btn-toolbar:after, 6476 | .btn-group-vertical > .btn-group:before, 6477 | .btn-group-vertical > .btn-group:after, 6478 | .nav:before, 6479 | .nav:after, 6480 | .navbar:before, 6481 | .navbar:after, 6482 | .navbar-header:before, 6483 | .navbar-header:after, 6484 | .navbar-collapse:before, 6485 | .navbar-collapse:after, 6486 | .pager:before, 6487 | .pager:after, 6488 | .panel-body:before, 6489 | .panel-body:after, 6490 | .modal-header:before, 6491 | .modal-header:after, 6492 | .modal-footer:before, 6493 | .modal-footer:after { 6494 | content: " "; 6495 | display: table; 6496 | } 6497 | .clearfix:after, 6498 | .dl-horizontal dd:after, 6499 | .container:after, 6500 | .container-fluid:after, 6501 | .row:after, 6502 | .form-horizontal .form-group:after, 6503 | .btn-toolbar:after, 6504 | .btn-group-vertical > .btn-group:after, 6505 | .nav:after, 6506 | .navbar:after, 6507 | .navbar-header:after, 6508 | .navbar-collapse:after, 6509 | .pager:after, 6510 | .panel-body:after, 6511 | .modal-header:after, 6512 | .modal-footer:after { 6513 | clear: both; 6514 | } 6515 | .center-block { 6516 | display: block; 6517 | margin-left: auto; 6518 | margin-right: auto; 6519 | } 6520 | .pull-right { 6521 | float: right !important; 6522 | } 6523 | .pull-left { 6524 | float: left !important; 6525 | } 6526 | .hide { 6527 | display: none !important; 6528 | } 6529 | .show { 6530 | display: block !important; 6531 | } 6532 | .invisible { 6533 | visibility: hidden; 6534 | } 6535 | .text-hide { 6536 | font: 0/0 a; 6537 | color: transparent; 6538 | text-shadow: none; 6539 | background-color: transparent; 6540 | border: 0; 6541 | } 6542 | .hidden { 6543 | display: none !important; 6544 | } 6545 | .affix { 6546 | position: fixed; 6547 | } 6548 | @-ms-viewport { 6549 | width: device-width; 6550 | } 6551 | .visible-xs, 6552 | .visible-sm, 6553 | .visible-md, 6554 | .visible-lg { 6555 | display: none !important; 6556 | } 6557 | .visible-xs-block, 6558 | .visible-xs-inline, 6559 | .visible-xs-inline-block, 6560 | .visible-sm-block, 6561 | .visible-sm-inline, 6562 | .visible-sm-inline-block, 6563 | .visible-md-block, 6564 | .visible-md-inline, 6565 | .visible-md-inline-block, 6566 | .visible-lg-block, 6567 | .visible-lg-inline, 6568 | .visible-lg-inline-block { 6569 | display: none !important; 6570 | } 6571 | @media (max-width: 767px) { 6572 | .visible-xs { 6573 | display: block !important; 6574 | } 6575 | table.visible-xs { 6576 | display: table !important; 6577 | } 6578 | tr.visible-xs { 6579 | display: table-row !important; 6580 | } 6581 | th.visible-xs, 6582 | td.visible-xs { 6583 | display: table-cell !important; 6584 | } 6585 | } 6586 | @media (max-width: 767px) { 6587 | .visible-xs-block { 6588 | display: block !important; 6589 | } 6590 | } 6591 | @media (max-width: 767px) { 6592 | .visible-xs-inline { 6593 | display: inline !important; 6594 | } 6595 | } 6596 | @media (max-width: 767px) { 6597 | .visible-xs-inline-block { 6598 | display: inline-block !important; 6599 | } 6600 | } 6601 | @media (min-width: 768px) and (max-width: 991px) { 6602 | .visible-sm { 6603 | display: block !important; 6604 | } 6605 | table.visible-sm { 6606 | display: table !important; 6607 | } 6608 | tr.visible-sm { 6609 | display: table-row !important; 6610 | } 6611 | th.visible-sm, 6612 | td.visible-sm { 6613 | display: table-cell !important; 6614 | } 6615 | } 6616 | @media (min-width: 768px) and (max-width: 991px) { 6617 | .visible-sm-block { 6618 | display: block !important; 6619 | } 6620 | } 6621 | @media (min-width: 768px) and (max-width: 991px) { 6622 | .visible-sm-inline { 6623 | display: inline !important; 6624 | } 6625 | } 6626 | @media (min-width: 768px) and (max-width: 991px) { 6627 | .visible-sm-inline-block { 6628 | display: inline-block !important; 6629 | } 6630 | } 6631 | @media (min-width: 992px) and (max-width: 1199px) { 6632 | .visible-md { 6633 | display: block !important; 6634 | } 6635 | table.visible-md { 6636 | display: table !important; 6637 | } 6638 | tr.visible-md { 6639 | display: table-row !important; 6640 | } 6641 | th.visible-md, 6642 | td.visible-md { 6643 | display: table-cell !important; 6644 | } 6645 | } 6646 | @media (min-width: 992px) and (max-width: 1199px) { 6647 | .visible-md-block { 6648 | display: block !important; 6649 | } 6650 | } 6651 | @media (min-width: 992px) and (max-width: 1199px) { 6652 | .visible-md-inline { 6653 | display: inline !important; 6654 | } 6655 | } 6656 | @media (min-width: 992px) and (max-width: 1199px) { 6657 | .visible-md-inline-block { 6658 | display: inline-block !important; 6659 | } 6660 | } 6661 | @media (min-width: 1200px) { 6662 | .visible-lg { 6663 | display: block !important; 6664 | } 6665 | table.visible-lg { 6666 | display: table !important; 6667 | } 6668 | tr.visible-lg { 6669 | display: table-row !important; 6670 | } 6671 | th.visible-lg, 6672 | td.visible-lg { 6673 | display: table-cell !important; 6674 | } 6675 | } 6676 | @media (min-width: 1200px) { 6677 | .visible-lg-block { 6678 | display: block !important; 6679 | } 6680 | } 6681 | @media (min-width: 1200px) { 6682 | .visible-lg-inline { 6683 | display: inline !important; 6684 | } 6685 | } 6686 | @media (min-width: 1200px) { 6687 | .visible-lg-inline-block { 6688 | display: inline-block !important; 6689 | } 6690 | } 6691 | @media (max-width: 767px) { 6692 | .hidden-xs { 6693 | display: none !important; 6694 | } 6695 | } 6696 | @media (min-width: 768px) and (max-width: 991px) { 6697 | .hidden-sm { 6698 | display: none !important; 6699 | } 6700 | } 6701 | @media (min-width: 992px) and (max-width: 1199px) { 6702 | .hidden-md { 6703 | display: none !important; 6704 | } 6705 | } 6706 | @media (min-width: 1200px) { 6707 | .hidden-lg { 6708 | display: none !important; 6709 | } 6710 | } 6711 | .visible-print { 6712 | display: none !important; 6713 | } 6714 | @media print { 6715 | .visible-print { 6716 | display: block !important; 6717 | } 6718 | table.visible-print { 6719 | display: table !important; 6720 | } 6721 | tr.visible-print { 6722 | display: table-row !important; 6723 | } 6724 | th.visible-print, 6725 | td.visible-print { 6726 | display: table-cell !important; 6727 | } 6728 | } 6729 | .visible-print-block { 6730 | display: none !important; 6731 | } 6732 | @media print { 6733 | .visible-print-block { 6734 | display: block !important; 6735 | } 6736 | } 6737 | .visible-print-inline { 6738 | display: none !important; 6739 | } 6740 | @media print { 6741 | .visible-print-inline { 6742 | display: inline !important; 6743 | } 6744 | } 6745 | .visible-print-inline-block { 6746 | display: none !important; 6747 | } 6748 | @media print { 6749 | .visible-print-inline-block { 6750 | display: inline-block !important; 6751 | } 6752 | } 6753 | @media print { 6754 | .hidden-print { 6755 | display: none !important; 6756 | } 6757 | } 6758 | .navbar-default .badge { 6759 | background-color: #fff; 6760 | color: #e95420; 6761 | } 6762 | .navbar-inverse .badge { 6763 | background-color: #fff; 6764 | color: #772953; 6765 | } 6766 | @media (max-width: 767px) { 6767 | .navbar .dropdown-menu a { 6768 | color: #fff; 6769 | } 6770 | } 6771 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/templates/phonebook/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Phonebook 7 | 8 | 9 | 10 | 11 | 25 | 26 | 27 | 28 |
29 | All Contacts 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | {% for contact in contacts %} 40 | 41 | 42 | 43 | {% endfor %} 44 | 45 | 46 |
NameNumber
{{ contact.name }} {{ contact.number }}
47 | 48 | 49 | 50 |
51 | {% csrf_token %} 52 |
53 | New Contact 54 |
55 | 56 |
57 | 59 |
60 |
61 |
62 | 63 |
64 | 66 |
67 |
68 |
69 |
70 | 71 |
72 |
73 |
74 |
75 | 76 | 77 | 78 |
79 | 82 |
83 | 84 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | 3 | from djangoproject.phonebook.views import landing_page, create_contact 4 | 5 | urlpatterns = [ 6 | path('', landing_page, name='landing-page'), 7 | path('new-contact', create_contact, name='new-contact'), 8 | ] 9 | 10 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/phonebook/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render, redirect 2 | 3 | from djangoproject.phonebook.models import Contact 4 | 5 | 6 | def landing_page(request): 7 | contacts = Contact.objects.all() 8 | context = { 9 | 'contacts': contacts 10 | } 11 | return render(request, 'phonebook/index.html', context) 12 | 13 | 14 | def create_contact(requests): 15 | name = requests.POST.get('name') 16 | number = requests.POST.get('number') 17 | contact = Contact( 18 | name=name, 19 | number=number 20 | ) 21 | contact.save() 22 | 23 | return redirect('landing-page') -------------------------------------------------------------------------------- /djangoproject/djangoproject/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for djangoproject project. 3 | 4 | Generated by 'django-admin startproject' using Django 3.2.7. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/3.2/ref/settings/ 11 | """ 12 | 13 | from pathlib import Path 14 | 15 | # Build paths inside the project like this: BASE_DIR / 'subdir'. 16 | BASE_DIR = Path(__file__).resolve().parent.parent 17 | 18 | 19 | # Quick-start development settings - unsuitable for production 20 | # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ 21 | 22 | # SECURITY WARNING: keep the secret key used in production secret! 23 | SECRET_KEY = 'django-insecure-t(5zykrcb!9vp5s$s63xny0osf792e6ct(0dni2r3l8e*b4c^)' 24 | 25 | # SECURITY WARNING: don't run with debug turned on in production! 26 | DEBUG = True 27 | 28 | ALLOWED_HOSTS = [] 29 | 30 | 31 | # Application definition 32 | 33 | INSTALLED_APPS = [ 34 | 'django.contrib.admin', 35 | 'django.contrib.auth', 36 | 'django.contrib.contenttypes', 37 | 'django.contrib.sessions', 38 | 'django.contrib.messages', 39 | 'django.contrib.staticfiles', 40 | 41 | 'djangoproject.phonebook', 42 | 43 | ] 44 | 45 | MIDDLEWARE = [ 46 | 'django.middleware.security.SecurityMiddleware', 47 | 'django.contrib.sessions.middleware.SessionMiddleware', 48 | 'django.middleware.common.CommonMiddleware', 49 | 'django.middleware.csrf.CsrfViewMiddleware', 50 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 51 | 'django.contrib.messages.middleware.MessageMiddleware', 52 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 53 | ] 54 | 55 | ROOT_URLCONF = 'djangoproject.urls' 56 | 57 | TEMPLATES = [ 58 | { 59 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 60 | 'DIRS': [], 61 | 'APP_DIRS': True, 62 | 'OPTIONS': { 63 | 'context_processors': [ 64 | 'django.template.context_processors.debug', 65 | 'django.template.context_processors.request', 66 | 'django.contrib.auth.context_processors.auth', 67 | 'django.contrib.messages.context_processors.messages', 68 | ], 69 | }, 70 | }, 71 | ] 72 | 73 | WSGI_APPLICATION = 'djangoproject.wsgi.application' 74 | 75 | 76 | # Database 77 | # https://docs.djangoproject.com/en/3.2/ref/settings/#databases 78 | 79 | DATABASES = { 80 | 'default': { 81 | 'ENGINE': 'django.db.backends.sqlite3', 82 | 'NAME': BASE_DIR / 'db.sqlite3', 83 | } 84 | } 85 | 86 | 87 | # Password validation 88 | # https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators 89 | 90 | AUTH_PASSWORD_VALIDATORS = [ 91 | { 92 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 93 | }, 94 | { 95 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 96 | }, 97 | { 98 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 99 | }, 100 | { 101 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 102 | }, 103 | ] 104 | 105 | 106 | # Internationalization 107 | # https://docs.djangoproject.com/en/3.2/topics/i18n/ 108 | 109 | LANGUAGE_CODE = 'en-us' 110 | 111 | TIME_ZONE = 'UTC' 112 | 113 | USE_I18N = True 114 | 115 | USE_L10N = True 116 | 117 | USE_TZ = True 118 | 119 | 120 | # Static files (CSS, JavaScript, Images) 121 | # https://docs.djangoproject.com/en/3.2/howto/static-files/ 122 | 123 | STATIC_URL = '/static/' 124 | 125 | # Default primary key field type 126 | # https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field 127 | 128 | DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 129 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/urls.py: -------------------------------------------------------------------------------- 1 | """djangoproject URL Configuration 2 | 3 | The `urlpatterns` list routes URLs to views. For more information please see: 4 | https://docs.djangoproject.com/en/3.2/topics/http/urls/ 5 | Examples: 6 | Function views 7 | 1. Add an import: from my_app import views 8 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 9 | Class-based views 10 | 1. Add an import: from other_app.views import Home 11 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 12 | Including another URLconf 13 | 1. Import the include() function: from django.urls import include, path 14 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 15 | """ 16 | from django.contrib import admin 17 | from django.urls import path, include 18 | 19 | urlpatterns = [ 20 | path('admin/', admin.site.urls), 21 | path('', include('djangoproject.phonebook.urls')), 22 | ] 23 | -------------------------------------------------------------------------------- /djangoproject/djangoproject/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for djangoproject project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangoproject.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /djangoproject/identifier.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/identifier.sqlite -------------------------------------------------------------------------------- /djangoproject/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'djangoproject.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /djangoproject/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MitkoVtori/django-phonebook-basic-web-project/54cee096b9b0b89306ddf0e8b32905fdb5573fcf/djangoproject/requirements.txt --------------------------------------------------------------------------------