fhirsmith 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/FHIRsmith.png +0 -0
  3. package/README.md +277 -0
  4. package/config-template.json +144 -0
  5. package/library/folder-setup.js +58 -0
  6. package/library/html-server.js +166 -0
  7. package/library/html.js +835 -0
  8. package/library/i18nsupport.js +259 -0
  9. package/library/languages.js +779 -0
  10. package/library/logger-telnet.js +205 -0
  11. package/library/logger.js +279 -0
  12. package/library/package-manager.js +876 -0
  13. package/library/utilities.js +196 -0
  14. package/library/version-utilities.js +1056 -0
  15. package/npmprojector/config-example.json +13 -0
  16. package/npmprojector/indexer.js +394 -0
  17. package/npmprojector/npmprojector.js +395 -0
  18. package/npmprojector/readme.md +174 -0
  19. package/npmprojector/watcher.js +335 -0
  20. package/package.json +119 -0
  21. package/packages/package-crawler.js +846 -0
  22. package/packages/packages-template.html +126 -0
  23. package/packages/packages.js +2838 -0
  24. package/passwords.ini +2 -0
  25. package/publisher/publisher-template.html +208 -0
  26. package/publisher/publisher.js +2167 -0
  27. package/publisher/task-draft.js +458 -0
  28. package/registry/api.js +735 -0
  29. package/registry/crawler.js +637 -0
  30. package/registry/model.js +513 -0
  31. package/registry/readme.md +243 -0
  32. package/registry/registry-data.json +121015 -0
  33. package/registry/registry-template.html +126 -0
  34. package/registry/registry.js +1395 -0
  35. package/registry/test-runner.js +237 -0
  36. package/root-template.html +124 -0
  37. package/server.js +524 -0
  38. package/shl/private-key.pem +5 -0
  39. package/shl/public-key.pem +18 -0
  40. package/shl/shl.js +1125 -0
  41. package/shl/vhl.js +69 -0
  42. package/static/FHIRsmith128.png +0 -0
  43. package/static/FHIRsmith16.png +0 -0
  44. package/static/FHIRsmith32.png +0 -0
  45. package/static/FHIRsmith64.png +0 -0
  46. package/static/assets/css/bootstrap-fhir.css +5302 -0
  47. package/static/assets/css/bootstrap-glyphicons.css +2 -0
  48. package/static/assets/css/bootstrap.css +4097 -0
  49. package/static/assets/css/jquery-ui.css +523 -0
  50. package/static/assets/css/jquery-ui.structure.css +863 -0
  51. package/static/assets/css/jquery-ui.structure.min.css +5 -0
  52. package/static/assets/css/jquery-ui.theme.css +439 -0
  53. package/static/assets/css/jquery-ui.theme.min.css +5 -0
  54. package/static/assets/css/jquery.ui.all.css +7 -0
  55. package/static/assets/css/modules.css +18 -0
  56. package/static/assets/css/project.css +367 -0
  57. package/static/assets/css/pygments-manni.css +66 -0
  58. package/static/assets/css/tags.css +74 -0
  59. package/static/assets/css/xml.css +2 -0
  60. package/static/assets/fonts/glyphiconshalflings-regular.eot +0 -0
  61. package/static/assets/fonts/glyphiconshalflings-regular.otf +0 -0
  62. package/static/assets/fonts/glyphiconshalflings-regular.svg +175 -0
  63. package/static/assets/fonts/glyphiconshalflings-regular.ttf +0 -0
  64. package/static/assets/fonts/glyphiconshalflings-regular.woff +0 -0
  65. package/static/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
  66. package/static/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  67. package/static/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
  68. package/static/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
  69. package/static/assets/ico/favicon.ico +0 -0
  70. package/static/assets/ico/favicon.png +0 -0
  71. package/static/assets/images/fhir-logo-www.png +0 -0
  72. package/static/assets/images/fhir-logo.png +0 -0
  73. package/static/assets/images/hl7-logo.png +0 -0
  74. package/static/assets/images/logo_ansinew.jpg +0 -0
  75. package/static/assets/images/search.png +0 -0
  76. package/static/assets/images/stripe.png +0 -0
  77. package/static/assets/images/target.png +0 -0
  78. package/static/assets/images/tx-registry-root.gif +0 -0
  79. package/static/assets/images/tx-registry.png +0 -0
  80. package/static/assets/images/tx-server.png +0 -0
  81. package/static/assets/images/tx-version.png +0 -0
  82. package/static/assets/js/bootstrap.min.js +6 -0
  83. package/static/assets/js/fhir-gw.js +259 -0
  84. package/static/assets/js/fhir.js +2 -0
  85. package/static/assets/js/html5shiv.js +8 -0
  86. package/static/assets/js/jcookie.js +96 -0
  87. package/static/assets/js/jquery-ui.min.js +6 -0
  88. package/static/assets/js/jquery.js +10716 -0
  89. package/static/assets/js/jquery.min.js +2 -0
  90. package/static/assets/js/jquery.ui.core.js +314 -0
  91. package/static/assets/js/jquery.ui.draggable.js +825 -0
  92. package/static/assets/js/jquery.ui.mouse.js +162 -0
  93. package/static/assets/js/jquery.ui.resizable.js +842 -0
  94. package/static/assets/js/jquery.ui.widget.js +268 -0
  95. package/static/assets/js/json2.js +487 -0
  96. package/static/assets/js/jtip.js +97 -0
  97. package/static/assets/js/respond.min.js +6 -0
  98. package/static/assets/js/statuspage.js +70 -0
  99. package/static/assets/js/xml.js +2 -0
  100. package/static/dist/js/bootstrap.js +1964 -0
  101. package/static/favicon.png +0 -0
  102. package/static/fhir.css +626 -0
  103. package/static/icon-fhir-16.png +0 -0
  104. package/static/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  105. package/static/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  106. package/static/images/ui-bg_flat_10_000000_40x100.png +0 -0
  107. package/static/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  108. package/static/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  109. package/static/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  110. package/static/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  111. package/static/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  112. package/static/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  113. package/static/images/ui-icons_222222_256x240.png +0 -0
  114. package/static/images/ui-icons_228ef1_256x240.png +0 -0
  115. package/static/images/ui-icons_ef8c08_256x240.png +0 -0
  116. package/static/images/ui-icons_ffd27a_256x240.png +0 -0
  117. package/static/images/ui-icons_ffffff_256x240.png +0 -0
  118. package/static/js/jquery.effects.blind.js +49 -0
  119. package/static/js/jquery.effects.bounce.js +78 -0
  120. package/static/js/jquery.effects.clip.js +54 -0
  121. package/static/js/jquery.effects.core.js +763 -0
  122. package/static/js/jquery.effects.drop.js +50 -0
  123. package/static/js/jquery.effects.explode.js +79 -0
  124. package/static/js/jquery.effects.fade.js +32 -0
  125. package/static/js/jquery.effects.fold.js +56 -0
  126. package/static/js/jquery.effects.highlight.js +50 -0
  127. package/static/js/jquery.effects.pulsate.js +51 -0
  128. package/static/js/jquery.effects.scale.js +178 -0
  129. package/static/js/jquery.effects.shake.js +57 -0
  130. package/static/js/jquery.effects.slide.js +50 -0
  131. package/static/js/jquery.effects.transfer.js +45 -0
  132. package/static/js/jquery.ui.accordion.js +611 -0
  133. package/static/js/jquery.ui.autocomplete.js +612 -0
  134. package/static/js/jquery.ui.button.js +416 -0
  135. package/static/js/jquery.ui.datepicker.js +1823 -0
  136. package/static/js/jquery.ui.dialog.js +878 -0
  137. package/static/js/jquery.ui.droppable.js +296 -0
  138. package/static/js/jquery.ui.position.js +252 -0
  139. package/static/js/jquery.ui.progressbar.js +109 -0
  140. package/static/js/jquery.ui.selectable.js +266 -0
  141. package/static/js/jquery.ui.slider.js +666 -0
  142. package/static/js/jquery.ui.sortable.js +1077 -0
  143. package/static/js/jquery.ui.tabs.js +758 -0
  144. package/stats.js +80 -0
  145. package/test-cache/vsac/vsac-valuesets.db +0 -0
  146. package/token/nginx_passport_setup.md +383 -0
  147. package/token/security_guide.md +294 -0
  148. package/token/token-template.html +330 -0
  149. package/token/token.js +1300 -0
  150. package/translations/Messages.properties +1510 -0
  151. package/translations/Messages_ar.properties +1399 -0
  152. package/translations/Messages_de.properties +836 -0
  153. package/translations/Messages_es.properties +737 -0
  154. package/translations/Messages_fr.properties +1 -0
  155. package/translations/Messages_ja.properties +893 -0
  156. package/translations/Messages_nl.properties +1357 -0
  157. package/translations/Messages_pt.properties +1302 -0
  158. package/translations/Messages_ru.properties +1 -0
  159. package/translations/Messages_uz.properties +1 -0
  160. package/translations/Messages_zh.properties +1 -0
  161. package/translations/rendering-phrases.properties +1128 -0
  162. package/translations/rendering-phrases_ar.properties +1091 -0
  163. package/translations/rendering-phrases_de.properties +6 -0
  164. package/translations/rendering-phrases_es.properties +6 -0
  165. package/translations/rendering-phrases_fr.properties +624 -0
  166. package/translations/rendering-phrases_ja.properties +21 -0
  167. package/translations/rendering-phrases_nl.properties +970 -0
  168. package/translations/rendering-phrases_pt.properties +1020 -0
  169. package/translations/rendering-phrases_ru.properties +1094 -0
  170. package/translations/rendering-phrases_uz.properties +1 -0
  171. package/translations/rendering-phrases_zh.properties +1 -0
  172. package/tx/README.md +418 -0
  173. package/tx/cm/cm-api.js +110 -0
  174. package/tx/cm/cm-database.js +735 -0
  175. package/tx/cm/cm-package.js +325 -0
  176. package/tx/cs/cs-api.js +789 -0
  177. package/tx/cs/cs-areacode.js +615 -0
  178. package/tx/cs/cs-country.js +1110 -0
  179. package/tx/cs/cs-cpt.js +785 -0
  180. package/tx/cs/cs-cs.js +1579 -0
  181. package/tx/cs/cs-currency.js +539 -0
  182. package/tx/cs/cs-db.js +1321 -0
  183. package/tx/cs/cs-hgvs.js +329 -0
  184. package/tx/cs/cs-lang.js +465 -0
  185. package/tx/cs/cs-loinc.js +1485 -0
  186. package/tx/cs/cs-mimetypes.js +238 -0
  187. package/tx/cs/cs-ndc.js +704 -0
  188. package/tx/cs/cs-omop.js +1025 -0
  189. package/tx/cs/cs-provider-api.js +43 -0
  190. package/tx/cs/cs-provider-list.js +37 -0
  191. package/tx/cs/cs-rxnorm.js +808 -0
  192. package/tx/cs/cs-snomed.js +1102 -0
  193. package/tx/cs/cs-ucum.js +514 -0
  194. package/tx/cs/cs-unii.js +271 -0
  195. package/tx/cs/cs-uri.js +218 -0
  196. package/tx/cs/cs-usstates.js +305 -0
  197. package/tx/dev.fhir.org.yml +14 -0
  198. package/tx/fixtures/test-cases-setup.json +18 -0
  199. package/tx/fixtures/test-cases.yml +16 -0
  200. package/tx/html/codesystem-operations.liquid +25 -0
  201. package/tx/html/home-metrics.liquid +247 -0
  202. package/tx/html/operations-form.liquid +148 -0
  203. package/tx/html/search-form.liquid +62 -0
  204. package/tx/html/tx-template.html +133 -0
  205. package/tx/html/valueset-operations.liquid +54 -0
  206. package/tx/importers/atc-to-fhir.js +316 -0
  207. package/tx/importers/import-loinc.module.js +1536 -0
  208. package/tx/importers/import-ndc.module.js +1088 -0
  209. package/tx/importers/import-rxnorm.module.js +898 -0
  210. package/tx/importers/import-sct.module.js +2457 -0
  211. package/tx/importers/import-unii.module.js +601 -0
  212. package/tx/importers/readme.md +453 -0
  213. package/tx/importers/subset-loinc.module.js +1081 -0
  214. package/tx/importers/subset-rxnorm.module.js +938 -0
  215. package/tx/importers/tx-import-base.js +351 -0
  216. package/tx/importers/tx-import-settings.js +310 -0
  217. package/tx/importers/tx-import.js +357 -0
  218. package/tx/library/canonical-resource.js +88 -0
  219. package/tx/library/capabilitystatement.js +292 -0
  220. package/tx/library/codesystem.js +774 -0
  221. package/tx/library/conceptmap.js +568 -0
  222. package/tx/library/designations.js +932 -0
  223. package/tx/library/errors.js +77 -0
  224. package/tx/library/extensions.js +117 -0
  225. package/tx/library/namingsystem.js +322 -0
  226. package/tx/library/operation-outcome.js +127 -0
  227. package/tx/library/parameters.js +105 -0
  228. package/tx/library/renderer.js +1559 -0
  229. package/tx/library/terminologycapabilities.js +418 -0
  230. package/tx/library/ucum-parsers.js +1029 -0
  231. package/tx/library/ucum-service.js +370 -0
  232. package/tx/library/ucum-types.js +1099 -0
  233. package/tx/library/valueset.js +543 -0
  234. package/tx/library.js +676 -0
  235. package/tx/ocl/cm-ocl.js +106 -0
  236. package/tx/ocl/cs-ocl.js +39 -0
  237. package/tx/ocl/vs-ocl.js +105 -0
  238. package/tx/operation-context.js +568 -0
  239. package/tx/params.js +613 -0
  240. package/tx/provider.js +403 -0
  241. package/tx/sct/ecl.js +1560 -0
  242. package/tx/sct/expressions.js +2077 -0
  243. package/tx/sct/structures.js +1396 -0
  244. package/tx/tx-html.js +1063 -0
  245. package/tx/tx.fhir.org.yml +39 -0
  246. package/tx/tx.js +927 -0
  247. package/tx/vs/vs-api.js +112 -0
  248. package/tx/vs/vs-database.js +786 -0
  249. package/tx/vs/vs-package.js +358 -0
  250. package/tx/vs/vs-vsac.js +366 -0
  251. package/tx/workers/batch-validate.js +129 -0
  252. package/tx/workers/batch.js +361 -0
  253. package/tx/workers/closure.js +32 -0
  254. package/tx/workers/expand.js +1845 -0
  255. package/tx/workers/lookup.js +407 -0
  256. package/tx/workers/metadata.js +467 -0
  257. package/tx/workers/operations.js +34 -0
  258. package/tx/workers/read.js +164 -0
  259. package/tx/workers/search.js +384 -0
  260. package/tx/workers/subsumes.js +334 -0
  261. package/tx/workers/translate.js +492 -0
  262. package/tx/workers/validate.js +2504 -0
  263. package/tx/workers/worker.js +904 -0
  264. package/tx/xml/capabilitystatement-xml.js +63 -0
  265. package/tx/xml/codesystem-xml.js +62 -0
  266. package/tx/xml/conceptmap-xml.js +65 -0
  267. package/tx/xml/namingsystem-xml.js +65 -0
  268. package/tx/xml/operationoutcome-xml.js +127 -0
  269. package/tx/xml/parameters-xml.js +312 -0
  270. package/tx/xml/terminologycapabilities-xml.js +64 -0
  271. package/tx/xml/valueset-xml.js +64 -0
  272. package/tx/xml/xml-base.js +603 -0
  273. package/vcl/vcl-parser.js +1098 -0
  274. package/vcl/vcl.js +253 -0
  275. package/windows-install.js +19 -0
  276. package/xig/xig-template.html +124 -0
  277. package/xig/xig.js +3049 -0
@@ -0,0 +1,4097 @@
1
+ /*!
2
+ * Bootstrap v3.0.0
3
+ *
4
+ * Copyright 2013 Twitter, Inc
5
+ * Licensed under the Apache License v2.0
6
+ * http://www.apache.org/licenses/LICENSE-2.0
7
+ *
8
+ * Designed and built with all the love in the world by @mdo and @fat.
9
+ */
10
+ /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+ audio,
26
+ canvas,
27
+ video {
28
+ display: inline-block;
29
+ }
30
+ audio:not([controls]) {
31
+ display: none;
32
+ height: 0;
33
+ }
34
+ [hidden] {
35
+ display: none;
36
+ }
37
+ html {
38
+ font-family: sans-serif;
39
+ -webkit-text-size-adjust: 100%;
40
+ -ms-text-size-adjust: 100%;
41
+ }
42
+ body {
43
+ margin: 0;
44
+ }
45
+ a:focus {
46
+ outline: thin dotted;
47
+ }
48
+ a:active,
49
+ a:hover {
50
+ outline: 0;
51
+ }
52
+ h1 {
53
+ font-size: 2em;
54
+ margin: 0.67em 0;
55
+ }
56
+ abbr[title] {
57
+ border-bottom: 1px dotted;
58
+ }
59
+ b,
60
+ strong {
61
+ font-weight: bold;
62
+ }
63
+ dfn {
64
+ font-style: italic;
65
+ }
66
+ hr {
67
+ -moz-box-sizing: content-box;
68
+ box-sizing: content-box;
69
+ height: 0;
70
+ }
71
+ mark {
72
+ background: #ff0;
73
+ color: #000;
74
+ }
75
+ code,
76
+ kbd,
77
+ pre,
78
+ samp {
79
+ font-family: monospace, serif;
80
+ font-size: 1em;
81
+ }
82
+ pre {
83
+ white-space: pre-wrap;
84
+ }
85
+ q {
86
+ quotes: "\201C" "\201D" "\2018" "\2019";
87
+ }
88
+ small {
89
+ font-size: 80%;
90
+ }
91
+ sub,
92
+ sup {
93
+ font-size: 75%;
94
+ line-height: 0;
95
+ position: relative;
96
+ vertical-align: baseline;
97
+ }
98
+ sup {
99
+ top: -0.5em;
100
+ }
101
+ sub {
102
+ bottom: -0.25em;
103
+ }
104
+ img {
105
+ border: 0;
106
+ }
107
+ svg:not(:root) {
108
+ overflow: hidden;
109
+ }
110
+ figure {
111
+ margin: 0;
112
+ }
113
+ fieldset {
114
+ border: 1px solid #c0c0c0;
115
+ margin: 0 2px;
116
+ padding: 0.35em 0.625em 0.75em;
117
+ }
118
+ legend {
119
+ border: 0;
120
+ padding: 0;
121
+ }
122
+ button,
123
+ input,
124
+ select,
125
+ textarea {
126
+ font-family: inherit;
127
+ font-size: 100%;
128
+ margin: 0;
129
+ }
130
+ button,
131
+ input {
132
+ line-height: normal;
133
+ }
134
+ button,
135
+ select {
136
+ text-transform: none;
137
+ }
138
+ button,
139
+ html input[type="button"],
140
+ input[type="reset"],
141
+ input[type="submit"] {
142
+ -webkit-appearance: button;
143
+ cursor: pointer;
144
+ }
145
+ button[disabled],
146
+ html input[disabled] {
147
+ cursor: default;
148
+ }
149
+ input[type="checkbox"],
150
+ input[type="radio"] {
151
+ box-sizing: border-box;
152
+ padding: 0;
153
+ }
154
+ input[type="search"] {
155
+ -webkit-appearance: textfield;
156
+ -moz-box-sizing: content-box;
157
+ -webkit-box-sizing: content-box;
158
+ box-sizing: content-box;
159
+ }
160
+ input[type="search"]::-webkit-search-cancel-button,
161
+ input[type="search"]::-webkit-search-decoration {
162
+ -webkit-appearance: none;
163
+ }
164
+ button::-moz-focus-inner,
165
+ input::-moz-focus-inner {
166
+ border: 0;
167
+ padding: 0;
168
+ }
169
+ textarea {
170
+ overflow: auto;
171
+ vertical-align: top;
172
+ }
173
+ table {
174
+ border-collapse: collapse;
175
+ border-spacing: 0;
176
+ }
177
+ @media print {
178
+ * {
179
+ text-shadow: none !important;
180
+ color: #000 !important;
181
+ background: transparent !important;
182
+ box-shadow: none !important;
183
+ }
184
+ a,
185
+ a:visited {
186
+ text-decoration: underline;
187
+ }
188
+ a[href]:after {
189
+ content: " (" attr(href) ")";
190
+ }
191
+ abbr[title]:after {
192
+ content: " (" attr(title) ")";
193
+ }
194
+ .ir a:after,
195
+ a[href^="javascript:"]:after,
196
+ a[href^="#"]:after {
197
+ content: "";
198
+ }
199
+ pre,
200
+ blockquote {
201
+ border: 1px solid #999;
202
+ page-break-inside: avoid;
203
+ }
204
+ thead {
205
+ display: table-header-group;
206
+ }
207
+ tr,
208
+ img {
209
+ page-break-inside: avoid;
210
+ }
211
+ img {
212
+ max-width: 100% !important;
213
+ }
214
+ @page {
215
+ margin: 2cm .5cm;
216
+ }
217
+ p,
218
+ h2,
219
+ h3 {
220
+ orphans: 3;
221
+ widows: 3;
222
+ }
223
+ h2,
224
+ h3 {
225
+ page-break-after: avoid;
226
+ }
227
+ .navbar {
228
+ display: none;
229
+ }
230
+ .table td,
231
+ .table th {
232
+ background-color: #fff !important;
233
+ }
234
+ .btn > .caret,
235
+ .dropup > .btn > .caret {
236
+ border-top-color: #000 !important;
237
+ }
238
+ .label {
239
+ border: 1px solid #000;
240
+ }
241
+ .table {
242
+ border-collapse: collapse !important;
243
+ }
244
+ .table-bordered th,
245
+ .table-bordered td {
246
+ border: 1px solid #ddd !important;
247
+ }
248
+ }
249
+ * {
250
+ -webkit-box-sizing: border-box;
251
+ -moz-box-sizing: border-box;
252
+ box-sizing: border-box;
253
+ }
254
+ html {
255
+ font-size: 62.5%;
256
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
257
+ }
258
+ body {
259
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
260
+ font-size: 14px;
261
+ line-height: 1.428571429;
262
+ color: #333333;
263
+ background-color: #ffffff;
264
+ }
265
+ input,
266
+ button,
267
+ select,
268
+ textarea {
269
+ font-family: inherit;
270
+ font-size: inherit;
271
+ line-height: inherit;
272
+ }
273
+ a {
274
+ color: #428bca;
275
+ text-decoration: none;
276
+ }
277
+ a:hover,
278
+ a:focus {
279
+ color: #2a6496;
280
+ text-decoration: underline;
281
+ }
282
+ a:focus {
283
+ outline: thin dotted #333;
284
+ outline: 5px auto -webkit-focus-ring-color;
285
+ outline-offset: -2px;
286
+ }
287
+ img {
288
+ vertical-align: middle;
289
+ }
290
+ .img-responsive {
291
+ display: inline-block;
292
+ max-width: 100%;
293
+ height: auto;
294
+ }
295
+ .img-rounded {
296
+ border-radius: 6px;
297
+ }
298
+ .img-circle {
299
+ border-radius: 500px;
300
+ }
301
+ hr {
302
+ margin-top: 20px;
303
+ margin-bottom: 20px;
304
+ border: 0;
305
+ border-top: 1px solid #eeeeee;
306
+ }
307
+ p {
308
+ margin: 0 0 10px;
309
+ }
310
+ .lead {
311
+ margin-bottom: 20px;
312
+ font-size: 16.099999999999998px;
313
+ font-weight: 200;
314
+ line-height: 1.4;
315
+ }
316
+ @media (min-width: 768px) {
317
+ .lead {
318
+ font-size: 21px;
319
+ }
320
+ }
321
+ small {
322
+ font-size: 85%;
323
+ }
324
+ cite {
325
+ font-style: normal;
326
+ }
327
+ .text-muted {
328
+ color: #999999;
329
+ }
330
+ .text-primary {
331
+ color: #428bca;
332
+ }
333
+ .text-warning {
334
+ color: #c09853;
335
+ }
336
+ .text-danger {
337
+ color: #b94a48;
338
+ }
339
+ .text-success {
340
+ color: #468847;
341
+ }
342
+ .text-info {
343
+ color: #3a87ad;
344
+ }
345
+ .text-left {
346
+ text-align: left;
347
+ }
348
+ .text-right {
349
+ text-align: right;
350
+ }
351
+ .text-center {
352
+ text-align: center;
353
+ }
354
+ h1,
355
+ h2,
356
+ h3,
357
+ h4,
358
+ h5,
359
+ h6,
360
+ .h1,
361
+ .h2,
362
+ .h3,
363
+ .h4,
364
+ .h5,
365
+ .h6 {
366
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
367
+ font-weight: 500;
368
+ line-height: 1.1;
369
+ }
370
+ h1 small,
371
+ h2 small,
372
+ h3 small,
373
+ h4 small,
374
+ h5 small,
375
+ h6 small,
376
+ .h1 small,
377
+ .h2 small,
378
+ .h3 small,
379
+ .h4 small,
380
+ .h5 small,
381
+ .h6 small {
382
+ font-weight: normal;
383
+ line-height: 1;
384
+ color: #999999;
385
+ }
386
+ h1,
387
+ h2,
388
+ h3 {
389
+ margin-top: 20px;
390
+ margin-bottom: 10px;
391
+ }
392
+ h4,
393
+ h5,
394
+ h6 {
395
+ margin-top: 10px;
396
+ margin-bottom: 10px;
397
+ }
398
+ h1,
399
+ .h1 {
400
+ font-size: 38px;
401
+ }
402
+ h2,
403
+ .h2 {
404
+ font-size: 32px;
405
+ }
406
+ h3,
407
+ .h3 {
408
+ font-size: 24px;
409
+ }
410
+ h4,
411
+ .h4 {
412
+ font-size: 18px;
413
+ }
414
+ h5,
415
+ .h5 {
416
+ font-size: 14px;
417
+ }
418
+ h6,
419
+ .h6 {
420
+ font-size: 12px;
421
+ }
422
+ h1 small,
423
+ .h1 small {
424
+ font-size: 24px;
425
+ }
426
+ h2 small,
427
+ .h2 small {
428
+ font-size: 18px;
429
+ }
430
+ h3 small,
431
+ .h3 small,
432
+ h4 small,
433
+ .h4 small {
434
+ font-size: 14px;
435
+ }
436
+ .page-header {
437
+ padding-bottom: 9px;
438
+ margin: 40px 0 20px;
439
+ border-bottom: 1px solid #eeeeee;
440
+ }
441
+ ul,
442
+ ol {
443
+ margin-top: 0;
444
+ margin-bottom: 10px;
445
+ }
446
+ ul ul,
447
+ ol ul,
448
+ ul ol,
449
+ ol ol {
450
+ margin-bottom: 0;
451
+ }
452
+ .list-unstyled {
453
+ padding-left: 0;
454
+ list-style: none;
455
+ }
456
+ .list-inline {
457
+ padding-left: 0;
458
+ list-style: none;
459
+ }
460
+ .list-inline > li {
461
+ display: inline-block;
462
+ padding-left: 5px;
463
+ padding-right: 5px;
464
+ }
465
+ dl {
466
+ margin-bottom: 20px;
467
+ }
468
+ dt,
469
+ dd {
470
+ line-height: 1.428571429;
471
+ }
472
+ dt {
473
+ font-weight: bold;
474
+ }
475
+ dd {
476
+ margin-left: 0;
477
+ }
478
+ .dl-horizontal dt {
479
+ float: left;
480
+ width: 160px;
481
+ clear: left;
482
+ text-align: right;
483
+ overflow: hidden;
484
+ text-overflow: ellipsis;
485
+ white-space: nowrap;
486
+ }
487
+ .dl-horizontal dd {
488
+ margin-left: 180px;
489
+ }
490
+ .dl-horizontal dd:before,
491
+ .dl-horizontal dd:after {
492
+ content: " ";
493
+ /* 1 */
494
+
495
+ display: table;
496
+ /* 2 */
497
+
498
+ }
499
+ .dl-horizontal dd:after {
500
+ clear: both;
501
+ }
502
+ .dl-horizontal dd:before,
503
+ .dl-horizontal dd:after {
504
+ content: " ";
505
+ /* 1 */
506
+
507
+ display: table;
508
+ /* 2 */
509
+
510
+ }
511
+ .dl-horizontal dd:after {
512
+ clear: both;
513
+ }
514
+ abbr[title],
515
+ abbr[data-original-title] {
516
+ cursor: help;
517
+ border-bottom: 1px dotted #999999;
518
+ }
519
+ abbr.initialism {
520
+ font-size: 90%;
521
+ text-transform: uppercase;
522
+ }
523
+ blockquote {
524
+ padding: 10px 20px;
525
+ margin: 0 0 20px;
526
+ border-left: 5px solid #eeeeee;
527
+ }
528
+ blockquote p {
529
+ font-size: 17.5px;
530
+ font-weight: 300;
531
+ line-height: 1.25;
532
+ }
533
+ blockquote p:last-child {
534
+ margin-bottom: 0;
535
+ }
536
+ blockquote small {
537
+ display: block;
538
+ line-height: 1.428571429;
539
+ color: #999999;
540
+ }
541
+ blockquote small:before {
542
+ content: '\2014 \00A0';
543
+ }
544
+ blockquote.pull-right {
545
+ float: right;
546
+ padding-right: 15px;
547
+ padding-left: 0;
548
+ border-right: 5px solid #eeeeee;
549
+ border-left: 0;
550
+ }
551
+ blockquote.pull-right p,
552
+ blockquote.pull-right small {
553
+ text-align: right;
554
+ }
555
+ blockquote.pull-right small:before {
556
+ content: '';
557
+ }
558
+ blockquote.pull-right small:after {
559
+ content: '\00A0 \2014';
560
+ }
561
+ q:before,
562
+ q:after,
563
+ blockquote:before,
564
+ blockquote:after {
565
+ content: "";
566
+ }
567
+ address {
568
+ display: block;
569
+ margin-bottom: 20px;
570
+ font-style: normal;
571
+ line-height: 1.428571429;
572
+ }
573
+ code,
574
+ pre {
575
+ font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
576
+ }
577
+ code {
578
+ padding: 2px 4px;
579
+ color: #005c00;
580
+ background-color: #f9f2f4;
581
+ white-space: nowrap;
582
+ border-radius: 4px;
583
+ }
584
+ pre {
585
+ display: block;
586
+ padding: 9.5px;
587
+ margin: 0 0 10px;
588
+ font-size: 13px;
589
+ line-height: 1.428571429;
590
+ word-break: break-all;
591
+ word-wrap: break-word;
592
+ color: #333333;
593
+ background-color: #f5f5f5;
594
+ border: 1px solid #cccccc;
595
+ border-radius: 4px;
596
+ }
597
+ pre.prettyprint {
598
+ margin-bottom: 20px;
599
+ }
600
+ pre code {
601
+ padding: 0;
602
+ color: inherit;
603
+ white-space: pre-wrap;
604
+ background-color: transparent;
605
+ border: 0;
606
+ }
607
+ .pre-scrollable {
608
+ max-height: 340px;
609
+ overflow-y: scroll;
610
+ }
611
+ .container {
612
+ margin-right: auto;
613
+ margin-left: auto;
614
+ }
615
+ .container:before,
616
+ .container:after {
617
+ content: " ";
618
+ /* 1 */
619
+
620
+ display: table;
621
+ /* 2 */
622
+
623
+ }
624
+ .container:after {
625
+ clear: both;
626
+ }
627
+ .container:before,
628
+ .container:after {
629
+ content: " ";
630
+ /* 1 */
631
+
632
+ display: table;
633
+ /* 2 */
634
+
635
+ }
636
+ .container:after {
637
+ clear: both;
638
+ }
639
+ .row:before,
640
+ .row:after {
641
+ content: " ";
642
+ /* 1 */
643
+
644
+ display: table;
645
+ /* 2 */
646
+
647
+ }
648
+ .row:after {
649
+ clear: both;
650
+ }
651
+ .row:before,
652
+ .row:after {
653
+ content: " ";
654
+ /* 1 */
655
+
656
+ display: table;
657
+ /* 2 */
658
+
659
+ }
660
+ .row:after {
661
+ clear: both;
662
+ }
663
+ @media (min-width: 768px) {
664
+ .row {
665
+ margin-left: -15px;
666
+ margin-right: -15px;
667
+ }
668
+ }
669
+ .row .row {
670
+ margin-left: -15px;
671
+ margin-right: -15px;
672
+ }
673
+ .col-1,
674
+ .col-2,
675
+ .col-3,
676
+ .col-4,
677
+ .col-5,
678
+ .col-6,
679
+ .col-7,
680
+ .col-8,
681
+ .col-9,
682
+ .col-10,
683
+ .col-11,
684
+ .col-12,
685
+ .col-sm-1,
686
+ .col-sm-2,
687
+ .col-sm-3,
688
+ .col-sm-4,
689
+ .col-sm-5,
690
+ .col-sm-6,
691
+ .col-sm-7,
692
+ .col-sm-8,
693
+ .col-sm-9,
694
+ .col-sm-10,
695
+ .col-sm-11,
696
+ .col-sm-12,
697
+ .col-lg-1,
698
+ .col-lg-2,
699
+ .col-lg-3,
700
+ .col-lg-4,
701
+ .col-lg-5,
702
+ .col-lg-6,
703
+ .col-lg-7,
704
+ .col-lg-8,
705
+ .col-lg-9,
706
+ .col-lg-10,
707
+ .col-lg-11,
708
+ .col-lg-12 {
709
+ position: relative;
710
+ min-height: 1px;
711
+ padding-left: 15px;
712
+ padding-right: 15px;
713
+ }
714
+ .col-1,
715
+ .col-2,
716
+ .col-3,
717
+ .col-4,
718
+ .col-5,
719
+ .col-6,
720
+ .col-7,
721
+ .col-8,
722
+ .col-9,
723
+ .col-10,
724
+ .col-11,
725
+ .col-12 {
726
+ float: left;
727
+ }
728
+ .col-1 {
729
+ width: 8.333333333333332%;
730
+ }
731
+ .col-2 {
732
+ width: 16.666666666666664%;
733
+ }
734
+ .col-3 {
735
+ width: 25%;
736
+ }
737
+ .col-4 {
738
+ width: 33.33333333333333%;
739
+ }
740
+ .col-5 {
741
+ width: 41.66666666666667%;
742
+ }
743
+ .col-6 {
744
+ width: 50%;
745
+ }
746
+ .col-7 {
747
+ width: 58.333333333333336%;
748
+ }
749
+ .col-8 {
750
+ width: 66.66666666666666%;
751
+ }
752
+ .col-9 {
753
+ width: 75%;
754
+ }
755
+ .col-10 {
756
+ width: 83.33333333333334%;
757
+ }
758
+ .col-11 {
759
+ width: 91.66666666666666%;
760
+ }
761
+ .col-12 {
762
+ width: 100%;
763
+ }
764
+ @media (min-width: 768px) {
765
+ .container {
766
+ max-width: 728px;
767
+ }
768
+ .col-sm-1,
769
+ .col-sm-2,
770
+ .col-sm-3,
771
+ .col-sm-4,
772
+ .col-sm-5,
773
+ .col-sm-6,
774
+ .col-sm-7,
775
+ .col-sm-8,
776
+ .col-sm-9,
777
+ .col-sm-10,
778
+ .col-sm-11,
779
+ .col-sm-12 {
780
+ float: left;
781
+ }
782
+ .col-sm-1 {
783
+ width: 8.333333333333332%;
784
+ }
785
+ .col-sm-2 {
786
+ width: 16.666666666666664%;
787
+ }
788
+ .col-sm-3 {
789
+ width: 25%;
790
+ }
791
+ .col-sm-4 {
792
+ width: 33.33333333333333%;
793
+ }
794
+ .col-sm-5 {
795
+ width: 41.66666666666667%;
796
+ }
797
+ .col-sm-6 {
798
+ width: 50%;
799
+ }
800
+ .col-sm-7 {
801
+ width: 58.333333333333336%;
802
+ }
803
+ .col-sm-8 {
804
+ width: 66.66666666666666%;
805
+ }
806
+ .col-sm-9 {
807
+ width: 75%;
808
+ }
809
+ .col-sm-10 {
810
+ width: 83.33333333333334%;
811
+ }
812
+ .col-sm-11 {
813
+ width: 91.66666666666666%;
814
+ }
815
+ .col-sm-12 {
816
+ width: 100%;
817
+ }
818
+ .col-push-1 {
819
+ left: 8.333333333333332%;
820
+ }
821
+ .col-push-2 {
822
+ left: 16.666666666666664%;
823
+ }
824
+ .col-push-3 {
825
+ left: 25%;
826
+ }
827
+ .col-push-4 {
828
+ left: 33.33333333333333%;
829
+ }
830
+ .col-push-5 {
831
+ left: 41.66666666666667%;
832
+ }
833
+ .col-push-6 {
834
+ left: 50%;
835
+ }
836
+ .col-push-7 {
837
+ left: 58.333333333333336%;
838
+ }
839
+ .col-push-8 {
840
+ left: 66.66666666666666%;
841
+ }
842
+ .col-push-9 {
843
+ left: 75%;
844
+ }
845
+ .col-push-10 {
846
+ left: 83.33333333333334%;
847
+ }
848
+ .col-push-11 {
849
+ left: 91.66666666666666%;
850
+ }
851
+ .col-pull-1 {
852
+ right: 8.333333333333332%;
853
+ }
854
+ .col-pull-2 {
855
+ right: 16.666666666666664%;
856
+ }
857
+ .col-pull-3 {
858
+ right: 25%;
859
+ }
860
+ .col-pull-4 {
861
+ right: 33.33333333333333%;
862
+ }
863
+ .col-pull-5 {
864
+ right: 41.66666666666667%;
865
+ }
866
+ .col-pull-6 {
867
+ right: 50%;
868
+ }
869
+ .col-pull-7 {
870
+ right: 58.333333333333336%;
871
+ }
872
+ .col-pull-8 {
873
+ right: 66.66666666666666%;
874
+ }
875
+ .col-pull-9 {
876
+ right: 75%;
877
+ }
878
+ .col-pull-10 {
879
+ right: 83.33333333333334%;
880
+ }
881
+ .col-pull-11 {
882
+ right: 91.66666666666666%;
883
+ }
884
+ }
885
+ @media (min-width: 992px) {
886
+ .container {
887
+ max-width: 940px;
888
+ }
889
+ .col-lg-1,
890
+ .col-lg-2,
891
+ .col-lg-3,
892
+ .col-lg-4,
893
+ .col-lg-5,
894
+ .col-lg-6,
895
+ .col-lg-7,
896
+ .col-lg-8,
897
+ .col-lg-9,
898
+ .col-lg-10,
899
+ .col-lg-11,
900
+ .col-lg-12 {
901
+ float: left;
902
+ }
903
+ .col-lg-1 {
904
+ width: 8.333333333333332%;
905
+ }
906
+ .col-lg-2 {
907
+ width: 16.666666666666664%;
908
+ }
909
+ .col-lg-3 {
910
+ width: 25%;
911
+ }
912
+ .col-lg-4 {
913
+ width: 33.33333333333333%;
914
+ }
915
+ .col-lg-5 {
916
+ width: 41.66666666666667%;
917
+ }
918
+ .col-lg-6 {
919
+ width: 50%;
920
+ }
921
+ .col-lg-7 {
922
+ width: 58.333333333333336%;
923
+ }
924
+ .col-lg-8 {
925
+ width: 66.66666666666666%;
926
+ }
927
+ .col-lg-9 {
928
+ width: 75%;
929
+ }
930
+ .col-lg-10 {
931
+ width: 83.33333333333334%;
932
+ }
933
+ .col-lg-11 {
934
+ width: 91.66666666666666%;
935
+ }
936
+ .col-lg-12 {
937
+ width: 100%;
938
+ }
939
+ .col-offset-1 {
940
+ margin-left: 8.333333333333332%;
941
+ }
942
+ .col-offset-2 {
943
+ margin-left: 16.666666666666664%;
944
+ }
945
+ .col-offset-3 {
946
+ margin-left: 25%;
947
+ }
948
+ .col-offset-4 {
949
+ margin-left: 33.33333333333333%;
950
+ }
951
+ .col-offset-5 {
952
+ margin-left: 41.66666666666667%;
953
+ }
954
+ .col-offset-6 {
955
+ margin-left: 50%;
956
+ }
957
+ .col-offset-7 {
958
+ margin-left: 58.333333333333336%;
959
+ }
960
+ .col-offset-8 {
961
+ margin-left: 66.66666666666666%;
962
+ }
963
+ .col-offset-9 {
964
+ margin-left: 75%;
965
+ }
966
+ .col-offset-10 {
967
+ margin-left: 83.33333333333334%;
968
+ }
969
+ .col-offset-11 {
970
+ margin-left: 91.66666666666666%;
971
+ }
972
+ }
973
+ @media (min-width: 1200px) {
974
+ .container {
975
+ max-width: 1170px;
976
+ }
977
+ }
978
+ table {
979
+ max-width: 100%;
980
+ background-color: transparent;
981
+ }
982
+ th {
983
+ text-align: left;
984
+ }
985
+ .table {
986
+ width: 100%;
987
+ margin-bottom: 20px;
988
+ }
989
+ .table thead > tr > th,
990
+ .table tbody > tr > th,
991
+ .table tfoot > tr > th,
992
+ .table thead > tr > td,
993
+ .table tbody > tr > td,
994
+ .table tfoot > tr > td {
995
+ padding: 8px;
996
+ line-height: 1.428571429;
997
+ vertical-align: top;
998
+ border-top: 1px solid #dddddd;
999
+ }
1000
+ .table thead > tr > th {
1001
+ vertical-align: bottom;
1002
+ }
1003
+ .table caption + thead tr:first-child th,
1004
+ .table colgroup + thead tr:first-child th,
1005
+ .table thead:first-child tr:first-child th,
1006
+ .table caption + thead tr:first-child td,
1007
+ .table colgroup + thead tr:first-child td,
1008
+ .table thead:first-child tr:first-child td {
1009
+ border-top: 0;
1010
+ }
1011
+ .table tbody + tbody {
1012
+ border-top: 2px solid #dddddd;
1013
+ }
1014
+ .table .table {
1015
+ background-color: #ffffff;
1016
+ }
1017
+ .table-condensed thead > tr > th,
1018
+ .table-condensed tbody > tr > th,
1019
+ .table-condensed tfoot > tr > th,
1020
+ .table-condensed thead > tr > td,
1021
+ .table-condensed tbody > tr > td,
1022
+ .table-condensed tfoot > tr > td {
1023
+ padding: 5px;
1024
+ }
1025
+ .table-bordered {
1026
+ border: 1px solid #dddddd;
1027
+ }
1028
+ .table-bordered > thead > tr > th,
1029
+ .table-bordered > tbody > tr > th,
1030
+ .table-bordered > tfoot > tr > th,
1031
+ .table-bordered > thead > tr > td,
1032
+ .table-bordered > tbody > tr > td,
1033
+ .table-bordered > tfoot > tr > td {
1034
+ border: 1px solid #dddddd;
1035
+ }
1036
+ .table-striped > tbody > tr:nth-child(odd) > td,
1037
+ .table-striped > tbody > tr:nth-child(odd) > th {
1038
+ background-color: #f9f9f9;
1039
+ }
1040
+ .table-hover > tbody > tr:hover > td,
1041
+ .table-hover > tbody > tr:hover > th {
1042
+ background-color: #f5f5f5;
1043
+ }
1044
+ table col[class^="col-"] {
1045
+ float: none;
1046
+ display: table-column;
1047
+ }
1048
+ table td[class^="col-"],
1049
+ table th[class^="col-"] {
1050
+ float: none;
1051
+ display: table-cell;
1052
+ }
1053
+ .table > thead > tr > td.active,
1054
+ .table > tbody > tr > td.active,
1055
+ .table > tfoot > tr > td.active,
1056
+ .table > thead > tr > th.active,
1057
+ .table > tbody > tr > th.active,
1058
+ .table > tfoot > tr > th.active,
1059
+ .table > thead > tr.active > td,
1060
+ .table > tbody > tr.active > td,
1061
+ .table > tfoot > tr.active > td,
1062
+ .table > thead > tr.active > th,
1063
+ .table > tbody > tr.active > th,
1064
+ .table > tfoot > tr.active > th {
1065
+ background-color: #f5f5f5;
1066
+ }
1067
+ .table > thead > tr > td.success,
1068
+ .table > tbody > tr > td.success,
1069
+ .table > tfoot > tr > td.success,
1070
+ .table > thead > tr > th.success,
1071
+ .table > tbody > tr > th.success,
1072
+ .table > tfoot > tr > th.success,
1073
+ .table > thead > tr.success > td,
1074
+ .table > tbody > tr.success > td,
1075
+ .table > tfoot > tr.success > td,
1076
+ .table > thead > tr.success > th,
1077
+ .table > tbody > tr.success > th,
1078
+ .table > tfoot > tr.success > th {
1079
+ background-color: #dff0d8;
1080
+ border-color: #d6e9c6;
1081
+ }
1082
+ .table > thead > tr > td.danger,
1083
+ .table > tbody > tr > td.danger,
1084
+ .table > tfoot > tr > td.danger,
1085
+ .table > thead > tr > th.danger,
1086
+ .table > tbody > tr > th.danger,
1087
+ .table > tfoot > tr > th.danger,
1088
+ .table > thead > tr.danger > td,
1089
+ .table > tbody > tr.danger > td,
1090
+ .table > tfoot > tr.danger > td,
1091
+ .table > thead > tr.danger > th,
1092
+ .table > tbody > tr.danger > th,
1093
+ .table > tfoot > tr.danger > th {
1094
+ background-color: #f2dede;
1095
+ border-color: #eed3d7;
1096
+ }
1097
+ .table > thead > tr > td.warning,
1098
+ .table > tbody > tr > td.warning,
1099
+ .table > tfoot > tr > td.warning,
1100
+ .table > thead > tr > th.warning,
1101
+ .table > tbody > tr > th.warning,
1102
+ .table > tfoot > tr > th.warning,
1103
+ .table > thead > tr.warning > td,
1104
+ .table > tbody > tr.warning > td,
1105
+ .table > tfoot > tr.warning > td,
1106
+ .table > thead > tr.warning > th,
1107
+ .table > tbody > tr.warning > th,
1108
+ .table > tfoot > tr.warning > th {
1109
+ background-color: #fcf8e3;
1110
+ border-color: #fbeed5;
1111
+ }
1112
+ .table-hover > tbody > tr > td.success:hover,
1113
+ .table-hover > tbody > tr > th.success:hover,
1114
+ .table-hover > tbody > tr.success:hover > td {
1115
+ background-color: #d0e9c6;
1116
+ border-color: #c9e2b3;
1117
+ }
1118
+ .table-hover > tbody > tr > td.danger:hover,
1119
+ .table-hover > tbody > tr > th.danger:hover,
1120
+ .table-hover > tbody > tr.danger:hover > td {
1121
+ background-color: #ebcccc;
1122
+ border-color: #e6c1c7;
1123
+ }
1124
+ .table-hover > tbody > tr > td.warning:hover,
1125
+ .table-hover > tbody > tr > th.warning:hover,
1126
+ .table-hover > tbody > tr.warning:hover > td {
1127
+ background-color: #faf2cc;
1128
+ border-color: #f8e5be;
1129
+ }
1130
+ fieldset {
1131
+ padding: 0;
1132
+ margin: 0;
1133
+ border: 0;
1134
+ }
1135
+ legend {
1136
+ display: block;
1137
+ width: 100%;
1138
+ padding: 0;
1139
+ margin-bottom: 20px;
1140
+ font-size: 21px;
1141
+ line-height: inherit;
1142
+ color: #333333;
1143
+ border: 0;
1144
+ border-bottom: 1px solid #e5e5e5;
1145
+ }
1146
+ label {
1147
+ display: inline-block;
1148
+ margin-bottom: 5px;
1149
+ font-weight: bold;
1150
+ }
1151
+ input[type="search"] {
1152
+ -webkit-box-sizing: border-box;
1153
+ -moz-box-sizing: border-box;
1154
+ box-sizing: border-box;
1155
+ }
1156
+ input[type="radio"],
1157
+ input[type="checkbox"] {
1158
+ margin: 4px 0 0;
1159
+ margin-top: 1px \9;
1160
+ /* IE8-9 */
1161
+
1162
+ line-height: normal;
1163
+ }
1164
+ input[type="file"] {
1165
+ display: block;
1166
+ }
1167
+ select[multiple],
1168
+ select[size] {
1169
+ height: auto;
1170
+ }
1171
+ select optgroup {
1172
+ font-size: inherit;
1173
+ font-style: inherit;
1174
+ font-family: inherit;
1175
+ }
1176
+ input[type="file"]:focus,
1177
+ input[type="radio"]:focus,
1178
+ input[type="checkbox"]:focus {
1179
+ outline: thin dotted #333;
1180
+ outline: 5px auto -webkit-focus-ring-color;
1181
+ outline-offset: -2px;
1182
+ }
1183
+ input[type="number"]::-webkit-outer-spin-button,
1184
+ input[type="number"]::-webkit-inner-spin-button {
1185
+ height: auto;
1186
+ }
1187
+ .form-control:-moz-placeholder {
1188
+ color: #999999;
1189
+ }
1190
+ .form-control::-moz-placeholder {
1191
+ color: #999999;
1192
+ }
1193
+ .form-control:-ms-input-placeholder {
1194
+ color: #999999;
1195
+ }
1196
+ .form-control::-webkit-input-placeholder {
1197
+ color: #999999;
1198
+ }
1199
+ .form-control {
1200
+ display: block;
1201
+ width: 100%;
1202
+ height: 38px;
1203
+ padding: 8px 12px;
1204
+ font-size: 14px;
1205
+ line-height: 1.428571429;
1206
+ color: #555555;
1207
+ vertical-align: middle;
1208
+ background-color: #ffffff;
1209
+ border: 1px solid #cccccc;
1210
+ border-radius: 4px;
1211
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1212
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1213
+ -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1214
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1215
+ }
1216
+ .form-control:focus {
1217
+ border-color: rgba(82, 168, 236, 0.8);
1218
+ outline: 0;
1219
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
1220
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
1221
+ }
1222
+ .form-control[disabled],
1223
+ .form-control[readonly],
1224
+ fieldset[disabled] .form-control {
1225
+ cursor: not-allowed;
1226
+ background-color: #eeeeee;
1227
+ }
1228
+ textarea.form-control {
1229
+ height: auto;
1230
+ }
1231
+ .form-group {
1232
+ margin-bottom: 15px;
1233
+ }
1234
+ .radio,
1235
+ .checkbox {
1236
+ display: block;
1237
+ min-height: 20px;
1238
+ margin-top: 10px;
1239
+ margin-bottom: 10px;
1240
+ padding-left: 20px;
1241
+ vertical-align: middle;
1242
+ }
1243
+ .radio label,
1244
+ .checkbox label {
1245
+ display: inline;
1246
+ margin-bottom: 0;
1247
+ font-weight: normal;
1248
+ cursor: pointer;
1249
+ }
1250
+ .radio input[type="radio"],
1251
+ .radio-inline input[type="radio"],
1252
+ .checkbox input[type="checkbox"],
1253
+ .checkbox-inline input[type="checkbox"] {
1254
+ float: left;
1255
+ margin-left: -20px;
1256
+ }
1257
+ .radio + .radio,
1258
+ .checkbox + .checkbox {
1259
+ margin-top: -5px;
1260
+ }
1261
+ .radio-inline,
1262
+ .checkbox-inline {
1263
+ display: inline-block;
1264
+ padding-left: 20px;
1265
+ margin-bottom: 0;
1266
+ vertical-align: middle;
1267
+ font-weight: normal;
1268
+ cursor: pointer;
1269
+ }
1270
+ .radio-inline + .radio-inline,
1271
+ .checkbox-inline + .checkbox-inline {
1272
+ margin-top: 0;
1273
+ margin-left: 10px;
1274
+ }
1275
+ .input-large {
1276
+ height: 56px;
1277
+ padding: 14px 16px;
1278
+ font-size: 18px;
1279
+ border-radius: 6px;
1280
+ }
1281
+ .input-small {
1282
+ height: 30px;
1283
+ padding: 5px 10px;
1284
+ font-size: 12px;
1285
+ border-radius: 3px;
1286
+ }
1287
+ select.input-large {
1288
+ height: 56px;
1289
+ line-height: 56px;
1290
+ }
1291
+ select.input-small {
1292
+ height: 30px;
1293
+ line-height: 30px;
1294
+ }
1295
+ textarea.input-large,
1296
+ textarea.input-small {
1297
+ height: auto;
1298
+ }
1299
+ .has-warning .help-block,
1300
+ .has-warning .control-label {
1301
+ color: #c09853;
1302
+ }
1303
+ .has-warning .form-control {
1304
+ padding-right: 32px;
1305
+ border-color: #c09853;
1306
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1307
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1308
+ }
1309
+ .has-warning .form-control:focus {
1310
+ border-color: #a47e3c;
1311
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1312
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
1313
+ }
1314
+ .has-warning .input-group-addon {
1315
+ color: #c09853;
1316
+ border-color: #c09853;
1317
+ background-color: #fcf8e3;
1318
+ }
1319
+ .has-error .help-block,
1320
+ .has-error .control-label {
1321
+ color: #b94a48;
1322
+ }
1323
+ .has-error .form-control {
1324
+ padding-right: 32px;
1325
+ border-color: #b94a48;
1326
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1327
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1328
+ }
1329
+ .has-error .form-control:focus {
1330
+ border-color: #953b39;
1331
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1332
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
1333
+ }
1334
+ .has-error .input-group-addon {
1335
+ color: #b94a48;
1336
+ border-color: #b94a48;
1337
+ background-color: #f2dede;
1338
+ }
1339
+ .has-success .help-block,
1340
+ .has-success .control-label {
1341
+ color: #468847;
1342
+ }
1343
+ .has-success .form-control {
1344
+ padding-right: 32px;
1345
+ border-color: #468847;
1346
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1347
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1348
+ }
1349
+ .has-success .form-control:focus {
1350
+ border-color: #356635;
1351
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1352
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
1353
+ }
1354
+ .has-success .input-group-addon {
1355
+ color: #468847;
1356
+ border-color: #468847;
1357
+ background-color: #dff0d8;
1358
+ }
1359
+ .help-block {
1360
+ display: block;
1361
+ margin-top: 5px;
1362
+ margin-bottom: 10px;
1363
+ color: #737373;
1364
+ }
1365
+ .btn {
1366
+ display: inline-block;
1367
+ padding: 8px 12px;
1368
+ margin-bottom: 0;
1369
+ font-size: 14px;
1370
+ font-weight: 500;
1371
+ line-height: 1.428571429;
1372
+ text-align: center;
1373
+ vertical-align: middle;
1374
+ cursor: pointer;
1375
+ border: 1px solid transparent;
1376
+ border-radius: 4px;
1377
+ white-space: nowrap;
1378
+ -webkit-user-select: none;
1379
+ -moz-user-select: none;
1380
+ -ms-user-select: none;
1381
+ -o-user-select: none;
1382
+ user-select: none;
1383
+ }
1384
+ .btn:focus {
1385
+ outline: thin dotted #333;
1386
+ outline: 5px auto -webkit-focus-ring-color;
1387
+ outline-offset: -2px;
1388
+ }
1389
+ .btn:hover,
1390
+ .btn:focus {
1391
+ color: #ffffff;
1392
+ text-decoration: none;
1393
+ }
1394
+ .btn:active,
1395
+ .btn.active {
1396
+ outline: 0;
1397
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1398
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1399
+ }
1400
+ .btn.disabled,
1401
+ .btn[disabled],
1402
+ fieldset[disabled] .btn {
1403
+ cursor: default;
1404
+ pointer-events: none;
1405
+ opacity: 0.65;
1406
+ filter: alpha(opacity=65);
1407
+ -webkit-box-shadow: none;
1408
+ box-shadow: none;
1409
+ }
1410
+ .btn-default {
1411
+ color: #ffffff;
1412
+ background-color: #474949;
1413
+ border-color: #474949;
1414
+ }
1415
+ .btn-default:hover,
1416
+ .btn-default:focus,
1417
+ .btn-default:active,
1418
+ .btn-default.active {
1419
+ background-color: #3a3c3c;
1420
+ border-color: #2e2f2f;
1421
+ }
1422
+ .btn-default.disabled,
1423
+ .btn-default[disabled],
1424
+ fieldset[disabled] .btn-default,
1425
+ .btn-default.disabled:hover,
1426
+ .btn-default[disabled]:hover,
1427
+ fieldset[disabled] .btn-default:hover,
1428
+ .btn-default.disabled:focus,
1429
+ .btn-default[disabled]:focus,
1430
+ fieldset[disabled] .btn-default:focus,
1431
+ .btn-default.disabled:active,
1432
+ .btn-default[disabled]:active,
1433
+ fieldset[disabled] .btn-default:active,
1434
+ .btn-default.disabled.active,
1435
+ .btn-default[disabled].active,
1436
+ fieldset[disabled] .btn-default.active {
1437
+ background-color: #474949;
1438
+ border-color: #474949;
1439
+ }
1440
+ .btn-primary {
1441
+ color: #ffffff;
1442
+ background-color: #428bca;
1443
+ border-color: #428bca;
1444
+ }
1445
+ .btn-primary:hover,
1446
+ .btn-primary:focus,
1447
+ .btn-primary:active,
1448
+ .btn-primary.active {
1449
+ background-color: #357ebd;
1450
+ border-color: #3071a9;
1451
+ }
1452
+ .btn-primary.disabled,
1453
+ .btn-primary[disabled],
1454
+ fieldset[disabled] .btn-primary,
1455
+ .btn-primary.disabled:hover,
1456
+ .btn-primary[disabled]:hover,
1457
+ fieldset[disabled] .btn-primary:hover,
1458
+ .btn-primary.disabled:focus,
1459
+ .btn-primary[disabled]:focus,
1460
+ fieldset[disabled] .btn-primary:focus,
1461
+ .btn-primary.disabled:active,
1462
+ .btn-primary[disabled]:active,
1463
+ fieldset[disabled] .btn-primary:active,
1464
+ .btn-primary.disabled.active,
1465
+ .btn-primary[disabled].active,
1466
+ fieldset[disabled] .btn-primary.active {
1467
+ background-color: #428bca;
1468
+ border-color: #428bca;
1469
+ }
1470
+ .btn-warning {
1471
+ color: #ffffff;
1472
+ background-color: #f0ad4e;
1473
+ border-color: #f0ad4e;
1474
+ }
1475
+ .btn-warning:hover,
1476
+ .btn-warning:focus,
1477
+ .btn-warning:active,
1478
+ .btn-warning.active {
1479
+ background-color: #eea236;
1480
+ border-color: #ec971f;
1481
+ }
1482
+ .btn-warning.disabled,
1483
+ .btn-warning[disabled],
1484
+ fieldset[disabled] .btn-warning,
1485
+ .btn-warning.disabled:hover,
1486
+ .btn-warning[disabled]:hover,
1487
+ fieldset[disabled] .btn-warning:hover,
1488
+ .btn-warning.disabled:focus,
1489
+ .btn-warning[disabled]:focus,
1490
+ fieldset[disabled] .btn-warning:focus,
1491
+ .btn-warning.disabled:active,
1492
+ .btn-warning[disabled]:active,
1493
+ fieldset[disabled] .btn-warning:active,
1494
+ .btn-warning.disabled.active,
1495
+ .btn-warning[disabled].active,
1496
+ fieldset[disabled] .btn-warning.active {
1497
+ background-color: #f0ad4e;
1498
+ border-color: #f0ad4e;
1499
+ }
1500
+ .btn-danger {
1501
+ color: #ffffff;
1502
+ background-color: #d9534f;
1503
+ border-color: #d9534f;
1504
+ }
1505
+ .btn-danger:hover,
1506
+ .btn-danger:focus,
1507
+ .btn-danger:active,
1508
+ .btn-danger.active {
1509
+ background-color: #d43f3a;
1510
+ border-color: #c9302c;
1511
+ }
1512
+ .btn-danger.disabled,
1513
+ .btn-danger[disabled],
1514
+ fieldset[disabled] .btn-danger,
1515
+ .btn-danger.disabled:hover,
1516
+ .btn-danger[disabled]:hover,
1517
+ fieldset[disabled] .btn-danger:hover,
1518
+ .btn-danger.disabled:focus,
1519
+ .btn-danger[disabled]:focus,
1520
+ fieldset[disabled] .btn-danger:focus,
1521
+ .btn-danger.disabled:active,
1522
+ .btn-danger[disabled]:active,
1523
+ fieldset[disabled] .btn-danger:active,
1524
+ .btn-danger.disabled.active,
1525
+ .btn-danger[disabled].active,
1526
+ fieldset[disabled] .btn-danger.active {
1527
+ background-color: #d9534f;
1528
+ border-color: #d9534f;
1529
+ }
1530
+ .btn-success {
1531
+ color: #ffffff;
1532
+ background-color: #5cb85c;
1533
+ border-color: #5cb85c;
1534
+ }
1535
+ .btn-success:hover,
1536
+ .btn-success:focus,
1537
+ .btn-success:active,
1538
+ .btn-success.active {
1539
+ background-color: #4cae4c;
1540
+ border-color: #449d44;
1541
+ }
1542
+ .btn-success.disabled,
1543
+ .btn-success[disabled],
1544
+ fieldset[disabled] .btn-success,
1545
+ .btn-success.disabled:hover,
1546
+ .btn-success[disabled]:hover,
1547
+ fieldset[disabled] .btn-success:hover,
1548
+ .btn-success.disabled:focus,
1549
+ .btn-success[disabled]:focus,
1550
+ fieldset[disabled] .btn-success:focus,
1551
+ .btn-success.disabled:active,
1552
+ .btn-success[disabled]:active,
1553
+ fieldset[disabled] .btn-success:active,
1554
+ .btn-success.disabled.active,
1555
+ .btn-success[disabled].active,
1556
+ fieldset[disabled] .btn-success.active {
1557
+ background-color: #5cb85c;
1558
+ border-color: #5cb85c;
1559
+ }
1560
+ .btn-info {
1561
+ color: #ffffff;
1562
+ background-color: #5bc0de;
1563
+ border-color: #5bc0de;
1564
+ }
1565
+ .btn-info:hover,
1566
+ .btn-info:focus,
1567
+ .btn-info:active,
1568
+ .btn-info.active {
1569
+ background-color: #46b8da;
1570
+ border-color: #31b0d5;
1571
+ }
1572
+ .btn-info.disabled,
1573
+ .btn-info[disabled],
1574
+ fieldset[disabled] .btn-info,
1575
+ .btn-info.disabled:hover,
1576
+ .btn-info[disabled]:hover,
1577
+ fieldset[disabled] .btn-info:hover,
1578
+ .btn-info.disabled:focus,
1579
+ .btn-info[disabled]:focus,
1580
+ fieldset[disabled] .btn-info:focus,
1581
+ .btn-info.disabled:active,
1582
+ .btn-info[disabled]:active,
1583
+ fieldset[disabled] .btn-info:active,
1584
+ .btn-info.disabled.active,
1585
+ .btn-info[disabled].active,
1586
+ fieldset[disabled] .btn-info.active {
1587
+ background-color: #5bc0de;
1588
+ border-color: #5bc0de;
1589
+ }
1590
+ .btn-link {
1591
+ color: #428bca;
1592
+ font-weight: normal;
1593
+ cursor: pointer;
1594
+ border-radius: 0;
1595
+ }
1596
+ .btn-link,
1597
+ .btn-link:active,
1598
+ .btn-link[disabled],
1599
+ fieldset[disabled] .btn-link {
1600
+ background-color: transparent;
1601
+ -webkit-box-shadow: none;
1602
+ box-shadow: none;
1603
+ }
1604
+ .btn-link,
1605
+ .btn-link:hover,
1606
+ .btn-link:focus,
1607
+ .btn-link:active {
1608
+ border-color: transparent;
1609
+ }
1610
+ .btn-link:hover,
1611
+ .btn-link:focus {
1612
+ color: #2a6496;
1613
+ text-decoration: underline;
1614
+ background-color: transparent;
1615
+ }
1616
+ .btn-link[disabled]:hover,
1617
+ fieldset[disabled] .btn-link:hover,
1618
+ .btn-link[disabled]:focus,
1619
+ fieldset[disabled] .btn-link:focus {
1620
+ color: #333333;
1621
+ text-decoration: none;
1622
+ }
1623
+ .btn-large {
1624
+ padding: 14px 16px;
1625
+ font-size: 18px;
1626
+ border-radius: 6px;
1627
+ }
1628
+ .btn-small,
1629
+ .btn-mini {
1630
+ padding: 5px 10px;
1631
+ font-size: 12px;
1632
+ line-height: 1.5;
1633
+ border-radius: 3px;
1634
+ }
1635
+ .btn-mini {
1636
+ padding: 3px 5px;
1637
+ }
1638
+ .btn-block {
1639
+ display: block;
1640
+ width: 100%;
1641
+ padding-left: 0;
1642
+ padding-right: 0;
1643
+ }
1644
+ .btn-block + .btn-block {
1645
+ margin-top: 5px;
1646
+ }
1647
+ input[type="submit"].btn-block,
1648
+ input[type="reset"].btn-block,
1649
+ input[type="button"].btn-block {
1650
+ width: 100%;
1651
+ }
1652
+ .fade {
1653
+ opacity: 0;
1654
+ -webkit-transition: opacity 0.15s linear;
1655
+ transition: opacity 0.15s linear;
1656
+ }
1657
+ .fade.in {
1658
+ opacity: 1;
1659
+ }
1660
+ .collapse {
1661
+ display: none;
1662
+ }
1663
+ .collapse.in {
1664
+ display: block;
1665
+ }
1666
+ .collapsing {
1667
+ position: relative;
1668
+ height: 0;
1669
+ overflow: hidden;
1670
+ -webkit-transition: height 0.35s ease;
1671
+ transition: height 0.35s ease;
1672
+ }
1673
+ .input-group {
1674
+ position: relative;
1675
+ display: table;
1676
+ border-collapse: separate;
1677
+ }
1678
+ .input-group.col {
1679
+ float: none;
1680
+ padding-left: 0;
1681
+ padding-right: 0;
1682
+ }
1683
+ .input-group .form-control {
1684
+ width: 100%;
1685
+ margin-bottom: 0;
1686
+ }
1687
+ .input-group-addon,
1688
+ .input-group-btn,
1689
+ .input-group .form-control {
1690
+ display: table-cell;
1691
+ }
1692
+ .input-group-addon:not(:first-child):not(:last-child),
1693
+ .input-group-btn:not(:first-child):not(:last-child),
1694
+ .input-group .form-control:not(:first-child):not(:last-child) {
1695
+ border-radius: 0;
1696
+ }
1697
+ .input-group-addon,
1698
+ .input-group-btn {
1699
+ width: 1%;
1700
+ white-space: nowrap;
1701
+ vertical-align: middle;
1702
+ }
1703
+ .input-group-addon {
1704
+ -webkit-box-sizing: border-box;
1705
+ -moz-box-sizing: border-box;
1706
+ box-sizing: border-box;
1707
+ padding: 8px 12px;
1708
+ font-size: 14px;
1709
+ font-weight: normal;
1710
+ line-height: 1.428571429;
1711
+ text-align: center;
1712
+ background-color: #eeeeee;
1713
+ border: 1px solid #cccccc;
1714
+ border-radius: 4px;
1715
+ }
1716
+ .input-group-addon.input-small {
1717
+ padding: 5px 10px;
1718
+ font-size: 12px;
1719
+ border-radius: 3px;
1720
+ }
1721
+ .input-group-addon.input-large {
1722
+ padding: 14px 16px;
1723
+ font-size: 18px;
1724
+ border-radius: 6px;
1725
+ }
1726
+ .input-group-addon input[type="radio"],
1727
+ .input-group-addon input[type="checkbox"] {
1728
+ margin-top: 0;
1729
+ }
1730
+ .input-group .form-control:first-child,
1731
+ .input-group-addon:first-child,
1732
+ .input-group-btn:first-child > .btn,
1733
+ .input-group-btn:first-child > .dropdown-toggle,
1734
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
1735
+ border-bottom-right-radius: 0;
1736
+ border-top-right-radius: 0;
1737
+ }
1738
+ .input-group-addon:first-child {
1739
+ border-right: 0;
1740
+ }
1741
+ .input-group .form-control:last-child,
1742
+ .input-group-addon:last-child,
1743
+ .input-group-btn:last-child > .btn,
1744
+ .input-group-btn:last-child > .dropdown-toggle,
1745
+ .input-group-btn:first-child > .btn:not(:first-child) {
1746
+ border-bottom-left-radius: 0;
1747
+ border-top-left-radius: 0;
1748
+ }
1749
+ .input-group-addon:last-child {
1750
+ border-left: 0;
1751
+ }
1752
+ .input-group-btn {
1753
+ position: relative;
1754
+ white-space: nowrap;
1755
+ }
1756
+ .input-group-btn > .btn {
1757
+ position: relative;
1758
+ }
1759
+ .input-group-btn > .btn + .btn {
1760
+ margin-left: -4px;
1761
+ }
1762
+ .input-group-btn > .btn:hover,
1763
+ .input-group-btn > .btn:active {
1764
+ z-index: 2;
1765
+ }
1766
+ .form-inline .form-control,
1767
+ .form-inline .radio,
1768
+ .form-inline .checkbox {
1769
+ display: inline-block;
1770
+ }
1771
+ .form-inline .radio,
1772
+ .form-inline .checkbox {
1773
+ margin-top: 0;
1774
+ margin-bottom: 0;
1775
+ }
1776
+ .form-horizontal .control-label {
1777
+ padding-top: 9px;
1778
+ }
1779
+ .form-horizontal .form-group:before,
1780
+ .form-horizontal .form-group:after {
1781
+ content: " ";
1782
+ /* 1 */
1783
+
1784
+ display: table;
1785
+ /* 2 */
1786
+
1787
+ }
1788
+ .form-horizontal .form-group:after {
1789
+ clear: both;
1790
+ }
1791
+ .form-horizontal .form-group:before,
1792
+ .form-horizontal .form-group:after {
1793
+ content: " ";
1794
+ /* 1 */
1795
+
1796
+ display: table;
1797
+ /* 2 */
1798
+
1799
+ }
1800
+ .form-horizontal .form-group:after {
1801
+ clear: both;
1802
+ }
1803
+ @media (min-width: 768px) {
1804
+ .form-horizontal .form-group {
1805
+ margin-left: -15px;
1806
+ margin-right: -15px;
1807
+ }
1808
+ }
1809
+ .form-horizontal .form-group .row {
1810
+ margin-left: -15px;
1811
+ margin-right: -15px;
1812
+ }
1813
+ @media (min-width: 768px) {
1814
+ .form-horizontal .control-label {
1815
+ text-align: right;
1816
+ }
1817
+ }
1818
+ .caret {
1819
+ display: inline-block;
1820
+ width: 0;
1821
+ height: 0;
1822
+ margin-left: 2px;
1823
+ vertical-align: middle;
1824
+ border-top: 4px solid #000000;
1825
+ border-right: 4px solid transparent;
1826
+ border-left: 4px solid transparent;
1827
+ content: "";
1828
+ }
1829
+ .dropdown-menu {
1830
+ position: absolute;
1831
+ top: 100%;
1832
+ left: 0;
1833
+ z-index: 1000;
1834
+ display: none;
1835
+ float: left;
1836
+ min-width: 160px;
1837
+ padding: 5px 0;
1838
+ margin: 2px 0 0;
1839
+ list-style: none;
1840
+ background-color: #ffffff;
1841
+ border: 1px solid #cccccc;
1842
+ border: 1px solid rgba(0, 0, 0, 0.15);
1843
+ border-radius: 4px;
1844
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1845
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1846
+ background-clip: padding-box;
1847
+ }
1848
+ .dropdown-menu.pull-right {
1849
+ right: 0;
1850
+ left: auto;
1851
+ }
1852
+ .dropdown-menu .divider {
1853
+ height: 1px;
1854
+ margin: 9px 0;
1855
+ overflow: hidden;
1856
+ background-color: #e5e5e5;
1857
+ }
1858
+ .dropdown-menu > li > a {
1859
+ display: block;
1860
+ padding: 3px 20px;
1861
+ clear: both;
1862
+ font-weight: normal;
1863
+ line-height: 1.428571429;
1864
+ color: #333333;
1865
+ white-space: nowrap;
1866
+ }
1867
+ .dropdown-menu > li > a:hover,
1868
+ .dropdown-menu > li > a:focus {
1869
+ text-decoration: none;
1870
+ color: #ffffff;
1871
+ background-color: #357ebd;
1872
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
1873
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
1874
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
1875
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
1876
+ background-repeat: repeat-x;
1877
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
1878
+ }
1879
+ .dropdown-menu > .active > a,
1880
+ .dropdown-menu > .active > a:hover,
1881
+ .dropdown-menu > .active > a:focus {
1882
+ color: #ffffff;
1883
+ text-decoration: none;
1884
+ outline: 0;
1885
+ background-color: #357ebd;
1886
+ background-image: -webkit-gradient(linear, left 0%, left 100%, from(#428bca), to(#357ebd));
1887
+ background-image: -webkit-linear-gradient(top, #428bca, 0%, #357ebd, 100%);
1888
+ background-image: -moz-linear-gradient(top, #428bca 0%, #357ebd 100%);
1889
+ background-image: linear-gradient(to bottom, #428bca 0%, #357ebd 100%);
1890
+ background-repeat: repeat-x;
1891
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff357ebd', GradientType=0);
1892
+ }
1893
+ .dropdown-menu > .disabled > a,
1894
+ .dropdown-menu > .disabled > a:hover,
1895
+ .dropdown-menu > .disabled > a:focus {
1896
+ color: #999999;
1897
+ }
1898
+ .dropdown-menu > .disabled > a:hover,
1899
+ .dropdown-menu > .disabled > a:focus {
1900
+ text-decoration: none;
1901
+ background-color: transparent;
1902
+ background-image: none;
1903
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
1904
+ cursor: not-allowed;
1905
+ }
1906
+ .open > .dropdown-menu {
1907
+ display: block;
1908
+ }
1909
+ .open > a {
1910
+ outline: 0;
1911
+ }
1912
+ .dropdown-header {
1913
+ display: block;
1914
+ padding: 3px 20px;
1915
+ font-size: 12px;
1916
+ line-height: 1.428571429;
1917
+ color: #999999;
1918
+ }
1919
+ .dropdown-backdrop {
1920
+ position: fixed;
1921
+ left: 0;
1922
+ right: 0;
1923
+ bottom: 0;
1924
+ top: 0;
1925
+ z-index: 990;
1926
+ }
1927
+ .pull-right > .dropdown-menu {
1928
+ right: 0;
1929
+ left: auto;
1930
+ }
1931
+ .dropup .caret,
1932
+ .navbar-fixed-bottom .dropdown .caret {
1933
+ border-top: 0;
1934
+ border-bottom: 4px solid #000000;
1935
+ content: "";
1936
+ }
1937
+ .dropup .dropdown-menu,
1938
+ .navbar-fixed-bottom .dropdown .dropdown-menu {
1939
+ top: auto;
1940
+ bottom: 100%;
1941
+ margin-bottom: 1px;
1942
+ }
1943
+ .list-group {
1944
+ margin-bottom: 20px;
1945
+ padding-left: 0;
1946
+ }
1947
+ .list-group-item {
1948
+ position: relative;
1949
+ display: block;
1950
+ padding: 10px 30px 10px 15px;
1951
+ margin-bottom: -1px;
1952
+ background-color: #ffffff;
1953
+ border: 1px solid #dddddd;
1954
+ }
1955
+ .list-group-item:first-child {
1956
+ border-top-right-radius: 4px;
1957
+ border-top-left-radius: 4px;
1958
+ }
1959
+ .list-group-item:last-child {
1960
+ margin-bottom: 0;
1961
+ border-bottom-right-radius: 4px;
1962
+ border-bottom-left-radius: 4px;
1963
+ }
1964
+ .list-group-item > .badge {
1965
+ float: right;
1966
+ margin-right: -15px;
1967
+ }
1968
+ .list-group-item-heading {
1969
+ margin-top: 0;
1970
+ margin-bottom: 5px;
1971
+ }
1972
+ .list-group-item-text {
1973
+ margin-bottom: 0;
1974
+ line-height: 1.3;
1975
+ }
1976
+ a.list-group-item .list-group-item-heading {
1977
+ color: #333333;
1978
+ }
1979
+ a.list-group-item .list-group-item-text {
1980
+ color: #555555;
1981
+ }
1982
+ a.list-group-item:hover,
1983
+ a.list-group-item:focus {
1984
+ text-decoration: none;
1985
+ background-color: #f5f5f5;
1986
+ }
1987
+ a.list-group-item.active {
1988
+ z-index: 2;
1989
+ color: #ffffff;
1990
+ background-color: #428bca;
1991
+ border-color: #428bca;
1992
+ }
1993
+ a.list-group-item.active .list-group-item-heading {
1994
+ color: inherit;
1995
+ }
1996
+ a.list-group-item.active .list-group-item-text {
1997
+ color: #e1edf7;
1998
+ }
1999
+ .panel {
2000
+ padding: 15px;
2001
+ margin-bottom: 20px;
2002
+ background-color: #ffffff;
2003
+ border: 1px solid #dddddd;
2004
+ border-radius: 4px;
2005
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2006
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
2007
+ }
2008
+ .panel-heading {
2009
+ margin: -15px -15px 15px;
2010
+ padding: 10px 15px;
2011
+ background-color: #f5f5f5;
2012
+ border-bottom: 1px solid #dddddd;
2013
+ border-top-left-radius: 3px;
2014
+ border-top-right-radius: 3px;
2015
+ }
2016
+ .panel-title {
2017
+ margin-top: 0;
2018
+ margin-bottom: 0;
2019
+ font-size: 17.5px;
2020
+ font-weight: 500;
2021
+ }
2022
+ .panel-footer {
2023
+ margin: 15px -15px -15px;
2024
+ padding: 10px 15px;
2025
+ background-color: #f5f5f5;
2026
+ border-top: 1px solid #dddddd;
2027
+ border-bottom-left-radius: 3px;
2028
+ border-bottom-right-radius: 3px;
2029
+ }
2030
+ .panel-primary {
2031
+ border-color: #428bca;
2032
+ }
2033
+ .panel-primary .panel-heading {
2034
+ color: #ffffff;
2035
+ background-color: #428bca;
2036
+ border-color: #428bca;
2037
+ }
2038
+ .panel-success {
2039
+ border-color: #d6e9c6;
2040
+ }
2041
+ .panel-success .panel-heading {
2042
+ color: #468847;
2043
+ background-color: #dff0d8;
2044
+ border-color: #d6e9c6;
2045
+ }
2046
+ .panel-warning {
2047
+ border-color: #fbeed5;
2048
+ }
2049
+ .panel-warning .panel-heading {
2050
+ color: #c09853;
2051
+ background-color: #fcf8e3;
2052
+ border-color: #fbeed5;
2053
+ }
2054
+ .panel-danger {
2055
+ border-color: #eed3d7;
2056
+ }
2057
+ .panel-danger .panel-heading {
2058
+ color: #b94a48;
2059
+ background-color: #f2dede;
2060
+ border-color: #eed3d7;
2061
+ }
2062
+ .panel-info {
2063
+ border-color: #bce8f1;
2064
+ }
2065
+ .panel-info .panel-heading {
2066
+ color: #3a87ad;
2067
+ background-color: #d9edf7;
2068
+ border-color: #bce8f1;
2069
+ }
2070
+ .list-group-flush {
2071
+ margin: 15px -15px -15px;
2072
+ }
2073
+ .list-group-flush .list-group-item {
2074
+ border-width: 1px 0;
2075
+ }
2076
+ .list-group-flush .list-group-item:first-child {
2077
+ border-top-right-radius: 0;
2078
+ border-top-left-radius: 0;
2079
+ }
2080
+ .list-group-flush .list-group-item:last-child {
2081
+ border-bottom: 0;
2082
+ }
2083
+ .well {
2084
+ min-height: 20px;
2085
+ padding: 19px;
2086
+ margin-bottom: 20px;
2087
+ background-color: #f5f5f5;
2088
+ border: 1px solid #e3e3e3;
2089
+ border-radius: 4px;
2090
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2091
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2092
+ }
2093
+ .well blockquote {
2094
+ border-color: #ddd;
2095
+ border-color: rgba(0, 0, 0, 0.15);
2096
+ }
2097
+ .well-large {
2098
+ padding: 24px;
2099
+ border-radius: 6px;
2100
+ }
2101
+ .well-small {
2102
+ padding: 9px;
2103
+ border-radius: 3px;
2104
+ }
2105
+ .close {
2106
+ float: right;
2107
+ font-size: 21px;
2108
+ font-weight: bold;
2109
+ line-height: 1;
2110
+ color: #000000;
2111
+ text-shadow: 0 1px 0 #ffffff;
2112
+ opacity: 0.2;
2113
+ filter: alpha(opacity=20);
2114
+ }
2115
+ .close:hover,
2116
+ .close:focus {
2117
+ color: #000000;
2118
+ text-decoration: none;
2119
+ cursor: pointer;
2120
+ opacity: 0.5;
2121
+ filter: alpha(opacity=50);
2122
+ }
2123
+ button.close {
2124
+ padding: 0;
2125
+ cursor: pointer;
2126
+ background: transparent;
2127
+ border: 0;
2128
+ -webkit-appearance: none;
2129
+ }
2130
+ .nav {
2131
+ margin-bottom: 0;
2132
+ padding-left: 0;
2133
+ list-style: none;
2134
+ }
2135
+ .nav:before,
2136
+ .nav:after {
2137
+ content: " ";
2138
+ /* 1 */
2139
+
2140
+ display: table;
2141
+ /* 2 */
2142
+
2143
+ }
2144
+ .nav:after {
2145
+ clear: both;
2146
+ }
2147
+ .nav:before,
2148
+ .nav:after {
2149
+ content: " ";
2150
+ /* 1 */
2151
+
2152
+ display: table;
2153
+ /* 2 */
2154
+
2155
+ }
2156
+ .nav:after {
2157
+ clear: both;
2158
+ }
2159
+ .nav > li {
2160
+ position: relative;
2161
+ display: block;
2162
+ }
2163
+ .nav > li > a {
2164
+ position: relative;
2165
+ display: block;
2166
+ padding: 10px 15px;
2167
+ }
2168
+ .nav > li > a:hover,
2169
+ .nav > li > a:focus {
2170
+ text-decoration: none;
2171
+ background-color: #eeeeee;
2172
+ }
2173
+ .nav > li.disabled > a {
2174
+ color: #999999;
2175
+ }
2176
+ .nav > li.disabled > a:hover,
2177
+ .nav > li.disabled > a:focus {
2178
+ color: #999999;
2179
+ text-decoration: none;
2180
+ background-color: transparent;
2181
+ cursor: not-allowed;
2182
+ }
2183
+ .nav.open > a,
2184
+ .nav.open > a:hover,
2185
+ .nav.open > a:focus {
2186
+ color: #ffffff;
2187
+ background-color: #428bca;
2188
+ border-color: #428bca;
2189
+ }
2190
+ .nav.open > a .caret,
2191
+ .nav.open > a:hover .caret,
2192
+ .nav.open > a:focus .caret {
2193
+ border-top-color: #ffffff;
2194
+ border-bottom-color: #ffffff;
2195
+ }
2196
+ .nav > .pull-right {
2197
+ float: right;
2198
+ }
2199
+ .nav .nav-divider {
2200
+ height: 1px;
2201
+ margin: 9px 0;
2202
+ overflow: hidden;
2203
+ background-color: #e5e5e5;
2204
+ }
2205
+ .nav-justified {
2206
+ width: 100%;
2207
+ }
2208
+ .nav-justified > li {
2209
+ float: none;
2210
+ display: table-cell;
2211
+ width: 1%;
2212
+ }
2213
+ .nav-justified > li > a {
2214
+ text-align: center;
2215
+ }
2216
+ .nav-tabs-justified {
2217
+ border-bottom: 0;
2218
+ }
2219
+ .nav-tabs-justified > li > a {
2220
+ border-bottom: 1px solid #dddddd;
2221
+ margin-right: 0;
2222
+ }
2223
+ .nav-tabs-justified > .active > a {
2224
+ border-bottom-color: #ffffff;
2225
+ }
2226
+ .nav-tabs {
2227
+ border-bottom: 1px solid #dddddd;
2228
+ }
2229
+ .nav-tabs > li {
2230
+ float: left;
2231
+ margin-bottom: -1px;
2232
+ }
2233
+ .nav-tabs > li > a {
2234
+ margin-right: 2px;
2235
+ line-height: 1.428571429;
2236
+ border: 1px solid transparent;
2237
+ border-radius: 4px 4px 0 0;
2238
+ }
2239
+ .nav-tabs > li > a:hover {
2240
+ border-color: #eeeeee;
2241
+ }
2242
+ .nav-tabs > li.active > a,
2243
+ .nav-tabs > li.active > a:hover,
2244
+ .nav-tabs > li.active > a:focus {
2245
+ color: #555555;
2246
+ background-color: #ffffff;
2247
+ border: 1px solid #dddddd;
2248
+ border-bottom-color: transparent;
2249
+ cursor: default;
2250
+ }
2251
+ .nav-tabs.nav-justified {
2252
+ width: 100%;
2253
+ border-bottom: 0;
2254
+ }
2255
+ .nav-tabs.nav-justified > li {
2256
+ float: none;
2257
+ display: table-cell;
2258
+ width: 1%;
2259
+ }
2260
+ .nav-tabs.nav-justified > li > a {
2261
+ text-align: center;
2262
+ }
2263
+ .nav-tabs.nav-justified > li > a {
2264
+ border-bottom: 1px solid #dddddd;
2265
+ margin-right: 0;
2266
+ }
2267
+ .nav-tabs.nav-justified > .active > a {
2268
+ border-bottom-color: #ffffff;
2269
+ }
2270
+ .nav-pills > li {
2271
+ float: left;
2272
+ }
2273
+ .nav-pills > li > a {
2274
+ border-radius: 5px;
2275
+ }
2276
+ .nav-pills > li + li {
2277
+ margin-left: 2px;
2278
+ }
2279
+ .nav-pills > li.active > a,
2280
+ .nav-pills > li.active > a:hover,
2281
+ .nav-pills > li.active > a:focus {
2282
+ color: #ffffff;
2283
+ background-color: #428bca;
2284
+ }
2285
+ .nav-stacked > li {
2286
+ float: none;
2287
+ }
2288
+ .nav-stacked > li + li {
2289
+ margin-top: 2px;
2290
+ margin-left: 0;
2291
+ }
2292
+ .tabbable:before,
2293
+ .tabbable:after {
2294
+ content: " ";
2295
+ /* 1 */
2296
+
2297
+ display: table;
2298
+ /* 2 */
2299
+
2300
+ }
2301
+ .tabbable:after {
2302
+ clear: both;
2303
+ }
2304
+ .tabbable:before,
2305
+ .tabbable:after {
2306
+ content: " ";
2307
+ /* 1 */
2308
+
2309
+ display: table;
2310
+ /* 2 */
2311
+
2312
+ }
2313
+ .tabbable:after {
2314
+ clear: both;
2315
+ }
2316
+ .tab-content > .tab-pane,
2317
+ .pill-content > .pill-pane {
2318
+ display: none;
2319
+ }
2320
+ .tab-content > .active,
2321
+ .pill-content > .active {
2322
+ display: block;
2323
+ }
2324
+ .nav .caret {
2325
+ border-top-color: #428bca;
2326
+ border-bottom-color: #428bca;
2327
+ }
2328
+ .nav a:hover .caret {
2329
+ border-top-color: #2a6496;
2330
+ border-bottom-color: #2a6496;
2331
+ }
2332
+ .nav-tabs .dropdown-menu {
2333
+ margin-top: -1px;
2334
+ border-top-right-radius: 0;
2335
+ border-top-left-radius: 0;
2336
+ }
2337
+ .navbar {
2338
+ position: relative;
2339
+ min-height: 50px;
2340
+ margin-bottom: 20px;
2341
+ padding-left: 15px;
2342
+ padding-right: 15px;
2343
+ background-color: #eeeeee;
2344
+ border-radius: 4px;
2345
+ }
2346
+ .navbar:before,
2347
+ .navbar:after {
2348
+ content: " ";
2349
+ /* 1 */
2350
+
2351
+ display: table;
2352
+ /* 2 */
2353
+
2354
+ }
2355
+ .navbar:after {
2356
+ clear: both;
2357
+ }
2358
+ .navbar:before,
2359
+ .navbar:after {
2360
+ content: " ";
2361
+ /* 1 */
2362
+
2363
+ display: table;
2364
+ /* 2 */
2365
+
2366
+ }
2367
+ .navbar:after {
2368
+ clear: both;
2369
+ }
2370
+ .navbar-nav {
2371
+ margin-top: 10px;
2372
+ margin-bottom: 15px;
2373
+ }
2374
+ .navbar-nav > li > a {
2375
+ padding-top: 15px;
2376
+ padding-bottom: 15px;
2377
+ color: #777777;
2378
+ line-height: 20px;
2379
+ border-radius: 4px;
2380
+ }
2381
+ .navbar-nav > li > a:hover,
2382
+ .navbar-nav > li > a:focus {
2383
+ color: #333333;
2384
+ background-color: transparent;
2385
+ }
2386
+ .navbar-nav > .active > a,
2387
+ .navbar-nav > .active > a:hover,
2388
+ .navbar-nav > .active > a:focus {
2389
+ color: #555555;
2390
+ background-color: #d5d5d5;
2391
+ }
2392
+ .navbar-nav > .disabled > a,
2393
+ .navbar-nav > .disabled > a:hover,
2394
+ .navbar-nav > .disabled > a:focus {
2395
+ color: #cccccc;
2396
+ background-color: transparent;
2397
+ }
2398
+ .navbar-nav.pull-right {
2399
+ width: 100%;
2400
+ }
2401
+ .navbar-static-top {
2402
+ border-radius: 0;
2403
+ }
2404
+ .navbar-fixed-top,
2405
+ .navbar-fixed-bottom {
2406
+ position: fixed;
2407
+ right: 0;
2408
+ left: 0;
2409
+ z-index: 1030;
2410
+ border-radius: 0;
2411
+ }
2412
+ .navbar-fixed-top {
2413
+ top: 0;
2414
+ }
2415
+ .navbar-fixed-bottom {
2416
+ bottom: 0;
2417
+ margin-bottom: 0;
2418
+ }
2419
+ .navbar-brand {
2420
+ display: block;
2421
+ max-width: 200px;
2422
+ margin-left: auto;
2423
+ margin-right: auto;
2424
+ padding: 15px 15px;
2425
+ font-size: 18px;
2426
+ font-weight: 500;
2427
+ line-height: 20px;
2428
+ color: #777777;
2429
+ text-align: center;
2430
+ }
2431
+ .navbar-brand:hover,
2432
+ .navbar-brand:focus {
2433
+ color: #5e5e5e;
2434
+ text-decoration: none;
2435
+ background-color: transparent;
2436
+ }
2437
+ .navbar-toggle {
2438
+ position: absolute;
2439
+ top: 9px;
2440
+ right: 10px;
2441
+ width: 48px;
2442
+ height: 32px;
2443
+ padding: 8px 12px;
2444
+ background-color: transparent;
2445
+ border: 1px solid #dddddd;
2446
+ border-radius: 4px;
2447
+ }
2448
+ .navbar-toggle:hover,
2449
+ .navbar-toggle:focus {
2450
+ background-color: #dddddd;
2451
+ }
2452
+ .navbar-toggle .icon-bar {
2453
+ display: block;
2454
+ width: 22px;
2455
+ height: 2px;
2456
+ background-color: #cccccc;
2457
+ border-radius: 1px;
2458
+ }
2459
+ .navbar-toggle .icon-bar + .icon-bar {
2460
+ margin-top: 4px;
2461
+ }
2462
+ .navbar-form {
2463
+ margin-top: 6px;
2464
+ margin-bottom: 6px;
2465
+ }
2466
+ .navbar-form .form-control,
2467
+ .navbar-form .radio,
2468
+ .navbar-form .checkbox {
2469
+ display: inline-block;
2470
+ }
2471
+ .navbar-form .radio,
2472
+ .navbar-form .checkbox {
2473
+ margin-top: 0;
2474
+ margin-bottom: 0;
2475
+ }
2476
+ .navbar-nav > li > .dropdown-menu {
2477
+ margin-top: 0;
2478
+ border-top-left-radius: 0;
2479
+ border-top-right-radius: 0;
2480
+ }
2481
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
2482
+ border-bottom-left-radius: 0;
2483
+ border-bottom-right-radius: 0;
2484
+ }
2485
+ .navbar-nav > .dropdown > a:hover .caret,
2486
+ .navbar-nav > .dropdown > a:focus .caret {
2487
+ border-top-color: #333333;
2488
+ border-bottom-color: #333333;
2489
+ }
2490
+ .navbar-nav > .open > a,
2491
+ .navbar-nav > .open > a:hover,
2492
+ .navbar-nav > .open > a:focus {
2493
+ background-color: #d5d5d5;
2494
+ color: #555555;
2495
+ }
2496
+ .navbar-nav > .open > a .caret,
2497
+ .navbar-nav > .open > a:hover .caret,
2498
+ .navbar-nav > .open > a:focus .caret {
2499
+ border-top-color: #555555;
2500
+ border-bottom-color: #555555;
2501
+ }
2502
+ .navbar-nav > .dropdown > a .caret {
2503
+ border-top-color: #777777;
2504
+ border-bottom-color: #777777;
2505
+ }
2506
+ .navbar-nav.pull-right > li > .dropdown-menu,
2507
+ .navbar-nav > li > .dropdown-menu.pull-right {
2508
+ left: auto;
2509
+ right: 0;
2510
+ }
2511
+ .navbar-inverse {
2512
+ background-color: #222222;
2513
+ }
2514
+ .navbar-inverse .navbar-brand {
2515
+ color: #999999;
2516
+ }
2517
+ .navbar-inverse .navbar-brand:hover,
2518
+ .navbar-inverse .navbar-brand:focus {
2519
+ color: #ffffff;
2520
+ background-color: transparent;
2521
+ }
2522
+ .navbar-inverse .navbar-text {
2523
+ color: #999999;
2524
+ }
2525
+ .navbar-inverse .navbar-nav > li > a {
2526
+ color: #999999;
2527
+ }
2528
+ .navbar-inverse .navbar-nav > li > a:hover,
2529
+ .navbar-inverse .navbar-nav > li > a:focus {
2530
+ color: #ffffff;
2531
+ background-color: transparent;
2532
+ }
2533
+ .navbar-inverse .navbar-nav > .active > a,
2534
+ .navbar-inverse .navbar-nav > .active > a:hover,
2535
+ .navbar-inverse .navbar-nav > .active > a:focus {
2536
+ color: #ffffff;
2537
+ background-color: #080808;
2538
+ }
2539
+ .navbar-inverse .navbar-nav > .disabled > a,
2540
+ .navbar-inverse .navbar-nav > .disabled > a:hover,
2541
+ .navbar-inverse .navbar-nav > .disabled > a:focus {
2542
+ color: #444444;
2543
+ background-color: transparent;
2544
+ }
2545
+ .navbar-inverse .navbar-toggle {
2546
+ border-color: #333333;
2547
+ }
2548
+ .navbar-inverse .navbar-toggle:hover,
2549
+ .navbar-inverse .navbar-toggle:focus {
2550
+ background-color: #333333;
2551
+ }
2552
+ .navbar-inverse .navbar-toggle .icon-bar {
2553
+ background-color: #ffffff;
2554
+ }
2555
+ .navbar-inverse .navbar-nav > .open > a,
2556
+ .navbar-inverse .navbar-nav > .open > a:hover,
2557
+ .navbar-inverse .navbar-nav > .open > a:focus {
2558
+ background-color: #080808;
2559
+ color: #ffffff;
2560
+ }
2561
+ .navbar-inverse .navbar-nav > .dropdown > a:hover .caret {
2562
+ border-top-color: #ffffff;
2563
+ border-bottom-color: #ffffff;
2564
+ }
2565
+ .navbar-inverse .navbar-nav > .dropdown > a .caret {
2566
+ border-top-color: #999999;
2567
+ border-bottom-color: #999999;
2568
+ }
2569
+ .navbar-inverse .navbar-nav > .open > a .caret,
2570
+ .navbar-inverse .navbar-nav > .open > a:hover .caret,
2571
+ .navbar-inverse .navbar-nav > .open > a:focus .caret {
2572
+ border-top-color: #ffffff;
2573
+ border-bottom-color: #ffffff;
2574
+ }
2575
+ @media screen and (min-width: 768px) {
2576
+ .navbar-brand {
2577
+ float: left;
2578
+ margin-left: -15px;
2579
+ margin-right: 5px;
2580
+ }
2581
+ .navbar-nav {
2582
+ float: left;
2583
+ margin-top: 0;
2584
+ margin-bottom: 0;
2585
+ }
2586
+ .navbar-nav > li {
2587
+ float: left;
2588
+ }
2589
+ .navbar-nav > li > a {
2590
+ border-radius: 0;
2591
+ }
2592
+ .navbar-nav.pull-right {
2593
+ float: right;
2594
+ width: auto;
2595
+ }
2596
+ .navbar-toggle {
2597
+ position: relative;
2598
+ top: auto;
2599
+ left: auto;
2600
+ display: none;
2601
+ }
2602
+ .nav-collapse.collapse {
2603
+ display: block !important;
2604
+ height: auto !important;
2605
+ overflow: visible !important;
2606
+ }
2607
+ }
2608
+ .navbar-btn {
2609
+ margin-top: 6px;
2610
+ }
2611
+ .navbar-text {
2612
+ margin-top: 15px;
2613
+ margin-bottom: 15px;
2614
+ }
2615
+ .navbar-link {
2616
+ color: #777777;
2617
+ }
2618
+ .navbar-link:hover {
2619
+ color: #333333;
2620
+ }
2621
+ .navbar-inverse .navbar-link {
2622
+ color: #999999;
2623
+ }
2624
+ .navbar-inverse .navbar-link:hover {
2625
+ color: #ffffff;
2626
+ }
2627
+ .btn .caret {
2628
+ border-top-color: #ffffff;
2629
+ }
2630
+ .dropup .btn .caret {
2631
+ border-bottom-color: #ffffff;
2632
+ }
2633
+ .btn-group,
2634
+ .btn-group-vertical {
2635
+ position: relative;
2636
+ display: inline-block;
2637
+ vertical-align: middle;
2638
+ }
2639
+ .btn-group > .btn,
2640
+ .btn-group-vertical > .btn {
2641
+ position: relative;
2642
+ float: left;
2643
+ }
2644
+ .btn-group > .btn:hover,
2645
+ .btn-group-vertical > .btn:hover,
2646
+ .btn-group > .btn:focus,
2647
+ .btn-group-vertical > .btn:focus,
2648
+ .btn-group > .btn:active,
2649
+ .btn-group-vertical > .btn:active {
2650
+ z-index: 2;
2651
+ }
2652
+ .btn-group .btn + .btn {
2653
+ margin-left: -1px;
2654
+ }
2655
+ .btn-toolbar:before,
2656
+ .btn-toolbar:after {
2657
+ content: " ";
2658
+ /* 1 */
2659
+
2660
+ display: table;
2661
+ /* 2 */
2662
+
2663
+ }
2664
+ .btn-toolbar:after {
2665
+ clear: both;
2666
+ }
2667
+ .btn-toolbar:before,
2668
+ .btn-toolbar:after {
2669
+ content: " ";
2670
+ /* 1 */
2671
+
2672
+ display: table;
2673
+ /* 2 */
2674
+
2675
+ }
2676
+ .btn-toolbar:after {
2677
+ clear: both;
2678
+ }
2679
+ .btn-toolbar .btn-group {
2680
+ float: left;
2681
+ }
2682
+ .btn-toolbar > .btn + .btn,
2683
+ .btn-toolbar > .btn-group + .btn,
2684
+ .btn-toolbar > .btn + .btn-group,
2685
+ .btn-toolbar > .btn-group + .btn-group {
2686
+ margin-left: 5px;
2687
+ }
2688
+ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2689
+ border-radius: 0;
2690
+ }
2691
+ .btn-group > .btn:first-child {
2692
+ margin-left: 0;
2693
+ }
2694
+ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2695
+ border-bottom-right-radius: 0;
2696
+ border-top-right-radius: 0;
2697
+ }
2698
+ .btn-group > .btn:last-child:not(:first-child),
2699
+ .btn-group > .dropdown-toggle:not(:first-child) {
2700
+ border-bottom-left-radius: 0;
2701
+ border-top-left-radius: 0;
2702
+ }
2703
+ .btn-group > .btn-group {
2704
+ float: left;
2705
+ }
2706
+ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2707
+ border-radius: 0;
2708
+ }
2709
+ .btn-group > .btn-group:first-child > .btn:last-child,
2710
+ .btn-group > .btn-group:first-child > .dropdown-toggle {
2711
+ border-bottom-right-radius: 0;
2712
+ border-top-right-radius: 0;
2713
+ }
2714
+ .btn-group > .btn-group:last-child > .btn:first-child {
2715
+ border-bottom-left-radius: 0;
2716
+ border-top-left-radius: 0;
2717
+ }
2718
+ .btn-group .dropdown-toggle:active,
2719
+ .btn-group.open .dropdown-toggle {
2720
+ outline: 0;
2721
+ }
2722
+ .btn-group > .btn + .dropdown-toggle {
2723
+ padding-left: 8px;
2724
+ padding-right: 8px;
2725
+ }
2726
+ .btn-group > .btn-large + .dropdown-toggle {
2727
+ padding-left: 12px;
2728
+ padding-right: 12px;
2729
+ }
2730
+ .btn-group.open .dropdown-toggle {
2731
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2732
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2733
+ }
2734
+ .btn .caret {
2735
+ margin-left: 0;
2736
+ }
2737
+ .btn-large .caret {
2738
+ border-width: 5px;
2739
+ }
2740
+ .dropup .btn-large .caret {
2741
+ border-bottom-width: 5px;
2742
+ }
2743
+ .btn-group-vertical > .btn {
2744
+ display: block;
2745
+ float: none;
2746
+ width: 100%;
2747
+ max-width: 100%;
2748
+ }
2749
+ .btn-group-vertical > .btn + .btn {
2750
+ margin-top: -1px;
2751
+ }
2752
+ .btn-group-vertical .btn:not(:first-child):not(:last-child) {
2753
+ border-radius: 0;
2754
+ }
2755
+ .btn-group-vertical .btn:first-child {
2756
+ border-bottom-right-radius: 0;
2757
+ border-bottom-left-radius: 0;
2758
+ }
2759
+ .btn-group-vertical .btn:last-child {
2760
+ border-top-right-radius: 0;
2761
+ border-top-left-radius: 0;
2762
+ }
2763
+ .btn-group-justified {
2764
+ display: table;
2765
+ width: 100%;
2766
+ }
2767
+ .btn-group-justified .btn {
2768
+ float: none;
2769
+ display: table-cell;
2770
+ width: 1%;
2771
+ }
2772
+ .btn-group[data-toggle="buttons"] > .btn > input[type="radio"],
2773
+ .btn-group[data-toggle="buttons"] > .btn > input[type="checkbox"] {
2774
+ display: none;
2775
+ }
2776
+ .breadcrumb {
2777
+ padding: 8px 15px;
2778
+ margin-bottom: 20px;
2779
+ list-style: none;
2780
+ background-color: #f5f5f5;
2781
+ border-radius: 4px;
2782
+ }
2783
+ .breadcrumb > li {
2784
+ display: inline-block;
2785
+ }
2786
+ .breadcrumb > li + li:before {
2787
+ content: "/\00a0";
2788
+ padding: 0 5px;
2789
+ color: #cccccc;
2790
+ }
2791
+ .breadcrumb > .active {
2792
+ color: #999999;
2793
+ }
2794
+ .pagination {
2795
+ display: inline-block;
2796
+ padding-left: 0;
2797
+ margin: 20px 0;
2798
+ border-radius: 4px;
2799
+ }
2800
+ .pagination > li {
2801
+ display: inline;
2802
+ }
2803
+ .pagination > li > a,
2804
+ .pagination > li > span {
2805
+ float: left;
2806
+ padding: 4px 12px;
2807
+ line-height: 1.428571429;
2808
+ text-decoration: none;
2809
+ background-color: #ffffff;
2810
+ border: 1px solid #dddddd;
2811
+ border-left-width: 0;
2812
+ }
2813
+ .pagination > li:first-child > a,
2814
+ .pagination > li:first-child > span {
2815
+ border-left-width: 1px;
2816
+ border-bottom-left-radius: 4px;
2817
+ border-top-left-radius: 4px;
2818
+ }
2819
+ .pagination > li:last-child > a,
2820
+ .pagination > li:last-child > span {
2821
+ border-bottom-right-radius: 4px;
2822
+ border-top-right-radius: 4px;
2823
+ }
2824
+ .pagination > li > a:hover,
2825
+ .pagination > li > a:focus,
2826
+ .pagination > .active > a,
2827
+ .pagination > .active > span {
2828
+ background-color: #f5f5f5;
2829
+ }
2830
+ .pagination > .active > a,
2831
+ .pagination > .active > span {
2832
+ color: #999999;
2833
+ cursor: default;
2834
+ }
2835
+ .pagination > .disabled > span,
2836
+ .pagination > .disabled > a,
2837
+ .pagination > .disabled > a:hover,
2838
+ .pagination > .disabled > a:focus {
2839
+ color: #999999;
2840
+ background-color: #ffffff;
2841
+ cursor: not-allowed;
2842
+ }
2843
+ .pagination-large > li > a,
2844
+ .pagination-large > li > span {
2845
+ padding: 14px 16px;
2846
+ font-size: 18px;
2847
+ }
2848
+ .pagination-large > li:first-child > a,
2849
+ .pagination-large > li:first-child > span {
2850
+ border-bottom-left-radius: 6px;
2851
+ border-top-left-radius: 6px;
2852
+ }
2853
+ .pagination-large > li:last-child > a,
2854
+ .pagination-large > li:last-child > span {
2855
+ border-bottom-right-radius: 6px;
2856
+ border-top-right-radius: 6px;
2857
+ }
2858
+ .pagination-small > li > a,
2859
+ .pagination-small > li > span {
2860
+ padding: 5px 10px;
2861
+ font-size: 12px;
2862
+ }
2863
+ .pagination-small > li:first-child > a,
2864
+ .pagination-small > li:first-child > span {
2865
+ border-bottom-left-radius: 3px;
2866
+ border-top-left-radius: 3px;
2867
+ }
2868
+ .pagination-small > li:last-child > a,
2869
+ .pagination-small > li:last-child > span {
2870
+ border-bottom-right-radius: 3px;
2871
+ border-top-right-radius: 3px;
2872
+ }
2873
+ .pager {
2874
+ padding-left: 0;
2875
+ margin: 20px 0;
2876
+ list-style: none;
2877
+ text-align: center;
2878
+ }
2879
+ .pager:before,
2880
+ .pager:after {
2881
+ content: " ";
2882
+ /* 1 */
2883
+
2884
+ display: table;
2885
+ /* 2 */
2886
+
2887
+ }
2888
+ .pager:after {
2889
+ clear: both;
2890
+ }
2891
+ .pager:before,
2892
+ .pager:after {
2893
+ content: " ";
2894
+ /* 1 */
2895
+
2896
+ display: table;
2897
+ /* 2 */
2898
+
2899
+ }
2900
+ .pager:after {
2901
+ clear: both;
2902
+ }
2903
+ .pager li {
2904
+ display: inline;
2905
+ }
2906
+ .pager li > a,
2907
+ .pager li > span {
2908
+ display: inline-block;
2909
+ padding: 5px 14px;
2910
+ background-color: #ffffff;
2911
+ border: 1px solid #dddddd;
2912
+ border-radius: 15px;
2913
+ }
2914
+ .pager li > a:hover,
2915
+ .pager li > a:focus {
2916
+ text-decoration: none;
2917
+ background-color: #f5f5f5;
2918
+ }
2919
+ .pager .next > a,
2920
+ .pager .next > span {
2921
+ float: right;
2922
+ }
2923
+ .pager .previous > a,
2924
+ .pager .previous > span {
2925
+ float: left;
2926
+ }
2927
+ .pager .disabled > a,
2928
+ .pager .disabled > a:hover,
2929
+ .pager .disabled > a:focus,
2930
+ .pager .disabled > span {
2931
+ color: #999999;
2932
+ background-color: #ffffff;
2933
+ cursor: not-allowed;
2934
+ }
2935
+ .modal-open {
2936
+ overflow: hidden;
2937
+ }
2938
+ .modal {
2939
+ display: none;
2940
+ overflow: auto;
2941
+ overflow-y: scroll;
2942
+ position: fixed;
2943
+ top: 0;
2944
+ right: 0;
2945
+ bottom: 0;
2946
+ left: 0;
2947
+ z-index: 1040;
2948
+ }
2949
+ .modal.fade .modal-dialog {
2950
+ -webkit-transform: translate(0, -25%);
2951
+ -ms-transform: translate(0, -25%);
2952
+ transform: translate(0, -25%);
2953
+ -webkit-transition: -webkit-transform 0.3s ease-out;
2954
+ -moz-transition: -moz-transform 0.3s ease-out;
2955
+ -o-transition: -o-transform 0.3s ease-out;
2956
+ transition: transform 0.3s ease-out;
2957
+ }
2958
+ .modal.fade.in .modal-dialog {
2959
+ -webkit-transform: translate(0, 0);
2960
+ -ms-transform: translate(0, 0);
2961
+ transform: translate(0, 0);
2962
+ }
2963
+ .modal-dialog {
2964
+ margin-left: auto;
2965
+ margin-right: auto;
2966
+ width: auto;
2967
+ padding: 10px;
2968
+ z-index: 1050;
2969
+ }
2970
+ .modal-content {
2971
+ position: relative;
2972
+ background-color: #ffffff;
2973
+ border: 1px solid #999999;
2974
+ border: 1px solid rgba(0, 0, 0, 0.2);
2975
+ border-radius: 6px;
2976
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2977
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
2978
+ background-clip: padding-box;
2979
+ outline: none;
2980
+ }
2981
+ .modal-backdrop {
2982
+ position: fixed;
2983
+ top: 0;
2984
+ right: 0;
2985
+ bottom: 0;
2986
+ left: 0;
2987
+ z-index: 1030;
2988
+ background-color: #000000;
2989
+ }
2990
+ .modal-backdrop.fade {
2991
+ opacity: 0;
2992
+ filter: alpha(opacity=0);
2993
+ }
2994
+ .modal-backdrop.fade.in {
2995
+ opacity: 0.5;
2996
+ filter: alpha(opacity=50);
2997
+ }
2998
+ .modal-header {
2999
+ padding: 15px;
3000
+ border-bottom: 1px solid #e5e5e5;
3001
+ min-height: 16.428571429px;
3002
+ }
3003
+ .modal-header .close {
3004
+ margin-top: -2px;
3005
+ }
3006
+ .modal-title {
3007
+ margin: 0;
3008
+ line-height: 1.428571429;
3009
+ }
3010
+ .modal-body {
3011
+ position: relative;
3012
+ padding: 20px;
3013
+ }
3014
+ .modal-footer {
3015
+ margin-top: 15px;
3016
+ padding: 19px 20px 20px;
3017
+ text-align: right;
3018
+ border-top: 1px solid #e5e5e5;
3019
+ }
3020
+ .modal-footer:before,
3021
+ .modal-footer:after {
3022
+ content: " ";
3023
+ /* 1 */
3024
+
3025
+ display: table;
3026
+ /* 2 */
3027
+
3028
+ }
3029
+ .modal-footer:after {
3030
+ clear: both;
3031
+ }
3032
+ .modal-footer:before,
3033
+ .modal-footer:after {
3034
+ content: " ";
3035
+ /* 1 */
3036
+
3037
+ display: table;
3038
+ /* 2 */
3039
+
3040
+ }
3041
+ .modal-footer:after {
3042
+ clear: both;
3043
+ }
3044
+ .modal-footer .btn + .btn {
3045
+ margin-left: 5px;
3046
+ margin-bottom: 0;
3047
+ }
3048
+ .modal-footer .btn-group .btn + .btn {
3049
+ margin-left: -1px;
3050
+ }
3051
+ .modal-footer .btn-block + .btn-block {
3052
+ margin-left: 0;
3053
+ }
3054
+ @media screen and (min-width: 768px) {
3055
+ .modal-dialog {
3056
+ left: 50%;
3057
+ right: auto;
3058
+ width: 600px;
3059
+ padding-top: 30px;
3060
+ padding-bottom: 30px;
3061
+ }
3062
+ .modal-content {
3063
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3064
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3065
+ }
3066
+ }
3067
+ .tooltip {
3068
+ position: absolute;
3069
+ z-index: 1030;
3070
+ display: block;
3071
+ visibility: visible;
3072
+ font-size: 12px;
3073
+ line-height: 1.4;
3074
+ opacity: 0;
3075
+ filter: alpha(opacity=0);
3076
+ }
3077
+ .tooltip.in {
3078
+ opacity: 1;
3079
+ filter: alpha(opacity=100);
3080
+ }
3081
+ .tooltip.top {
3082
+ margin-top: -3px;
3083
+ padding: 5px 0;
3084
+ }
3085
+ .tooltip.right {
3086
+ margin-left: 3px;
3087
+ padding: 0 5px;
3088
+ }
3089
+ .tooltip.bottom {
3090
+ margin-top: 3px;
3091
+ padding: 5px 0;
3092
+ }
3093
+ .tooltip.left {
3094
+ margin-left: -3px;
3095
+ padding: 0 5px;
3096
+ }
3097
+ .tooltip-inner {
3098
+ max-width: 200px;
3099
+ padding: 3px 8px;
3100
+ color: #ffffff;
3101
+ text-align: center;
3102
+ text-decoration: none;
3103
+ background-color: rgba(0, 0, 0, 0.9);
3104
+ border-radius: 4px;
3105
+ }
3106
+ .tooltip-arrow {
3107
+ position: absolute;
3108
+ width: 0;
3109
+ height: 0;
3110
+ border-color: transparent;
3111
+ border-style: solid;
3112
+ }
3113
+ .tooltip.top .tooltip-arrow {
3114
+ bottom: 0;
3115
+ left: 50%;
3116
+ margin-left: -5px;
3117
+ border-width: 5px 5px 0;
3118
+ border-top-color: rgba(0, 0, 0, 0.9);
3119
+ }
3120
+ .tooltip.top-left .tooltip-arrow {
3121
+ bottom: 0;
3122
+ left: 5px;
3123
+ border-width: 5px 5px 0;
3124
+ border-top-color: rgba(0, 0, 0, 0.9);
3125
+ }
3126
+ .tooltip.top-right .tooltip-arrow {
3127
+ bottom: 0;
3128
+ right: 5px;
3129
+ border-width: 5px 5px 0;
3130
+ border-top-color: rgba(0, 0, 0, 0.9);
3131
+ }
3132
+ .tooltip.right .tooltip-arrow {
3133
+ top: 50%;
3134
+ left: 0;
3135
+ margin-top: -5px;
3136
+ border-width: 5px 5px 5px 0;
3137
+ border-right-color: rgba(0, 0, 0, 0.9);
3138
+ }
3139
+ .tooltip.left .tooltip-arrow {
3140
+ top: 50%;
3141
+ right: 0;
3142
+ margin-top: -5px;
3143
+ border-width: 5px 0 5px 5px;
3144
+ border-left-color: rgba(0, 0, 0, 0.9);
3145
+ }
3146
+ .tooltip.bottom .tooltip-arrow {
3147
+ top: 0;
3148
+ left: 50%;
3149
+ margin-left: -5px;
3150
+ border-width: 0 5px 5px;
3151
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3152
+ }
3153
+ .tooltip.bottom-left .tooltip-arrow {
3154
+ top: 0;
3155
+ left: 5px;
3156
+ border-width: 0 5px 5px;
3157
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3158
+ }
3159
+ .tooltip.bottom-right .tooltip-arrow {
3160
+ top: 0;
3161
+ right: 5px;
3162
+ border-width: 0 5px 5px;
3163
+ border-bottom-color: rgba(0, 0, 0, 0.9);
3164
+ }
3165
+ .popover {
3166
+ position: absolute;
3167
+ top: 0;
3168
+ left: 0;
3169
+ z-index: 1010;
3170
+ display: none;
3171
+ max-width: 276px;
3172
+ padding: 1px;
3173
+ text-align: left;
3174
+ background-color: #ffffff;
3175
+ -webkit-bg-clip: padding-box;
3176
+ -moz-bg-clip: padding;
3177
+ background-clip: padding-box;
3178
+ border: 1px solid #cccccc;
3179
+ border: 1px solid rgba(0, 0, 0, 0.2);
3180
+ border-radius: 6px;
3181
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3182
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3183
+ white-space: normal;
3184
+ }
3185
+ .popover.top {
3186
+ margin-top: -10px;
3187
+ }
3188
+ .popover.right {
3189
+ margin-left: 10px;
3190
+ }
3191
+ .popover.bottom {
3192
+ margin-top: 10px;
3193
+ }
3194
+ .popover.left {
3195
+ margin-left: -10px;
3196
+ }
3197
+ .popover-title {
3198
+ margin: 0;
3199
+ padding: 8px 14px;
3200
+ font-size: 14px;
3201
+ font-weight: normal;
3202
+ line-height: 18px;
3203
+ background-color: #f7f7f7;
3204
+ border-bottom: 1px solid #ebebeb;
3205
+ border-radius: 5px 5px 0 0;
3206
+ }
3207
+ .popover-content {
3208
+ padding: 9px 14px;
3209
+ }
3210
+ .popover .arrow,
3211
+ .popover .arrow:after {
3212
+ position: absolute;
3213
+ display: block;
3214
+ width: 0;
3215
+ height: 0;
3216
+ border-color: transparent;
3217
+ border-style: solid;
3218
+ }
3219
+ .popover .arrow {
3220
+ border-width: 11px;
3221
+ }
3222
+ .popover .arrow:after {
3223
+ border-width: 10px;
3224
+ content: "";
3225
+ }
3226
+ .popover.top .arrow {
3227
+ left: 50%;
3228
+ margin-left: -11px;
3229
+ border-bottom-width: 0;
3230
+ border-top-color: #999999;
3231
+ border-top-color: rgba(0, 0, 0, 0.25);
3232
+ bottom: -11px;
3233
+ }
3234
+ .popover.top .arrow:after {
3235
+ content: " ";
3236
+ bottom: 1px;
3237
+ margin-left: -10px;
3238
+ border-bottom-width: 0;
3239
+ border-top-color: #ffffff;
3240
+ }
3241
+ .popover.right .arrow {
3242
+ top: 50%;
3243
+ left: -11px;
3244
+ margin-top: -11px;
3245
+ border-left-width: 0;
3246
+ border-right-color: #999999;
3247
+ border-right-color: rgba(0, 0, 0, 0.25);
3248
+ }
3249
+ .popover.right .arrow:after {
3250
+ content: " ";
3251
+ left: 1px;
3252
+ bottom: -10px;
3253
+ border-left-width: 0;
3254
+ border-right-color: #ffffff;
3255
+ }
3256
+ .popover.bottom .arrow {
3257
+ left: 50%;
3258
+ margin-left: -11px;
3259
+ border-top-width: 0;
3260
+ border-bottom-color: #999999;
3261
+ border-bottom-color: rgba(0, 0, 0, 0.25);
3262
+ top: -11px;
3263
+ }
3264
+ .popover.bottom .arrow:after {
3265
+ content: " ";
3266
+ top: 1px;
3267
+ margin-left: -10px;
3268
+ border-top-width: 0;
3269
+ border-bottom-color: #ffffff;
3270
+ }
3271
+ .popover.left .arrow {
3272
+ top: 50%;
3273
+ right: -11px;
3274
+ margin-top: -11px;
3275
+ border-right-width: 0;
3276
+ border-left-color: #999999;
3277
+ border-left-color: rgba(0, 0, 0, 0.25);
3278
+ }
3279
+ .popover.left .arrow:after {
3280
+ content: " ";
3281
+ right: 1px;
3282
+ border-right-width: 0;
3283
+ border-left-color: #ffffff;
3284
+ bottom: -10px;
3285
+ }
3286
+ .alert {
3287
+ padding: 10px 35px 10px 15px;
3288
+ margin-bottom: 20px;
3289
+ color: #c09853;
3290
+ background-color: #fcf8e3;
3291
+ border: 1px solid #fbeed5;
3292
+ border-radius: 4px;
3293
+ }
3294
+ .alert h4 {
3295
+ margin-top: 0;
3296
+ color: inherit;
3297
+ }
3298
+ .alert hr {
3299
+ border-top-color: #f8e5be;
3300
+ }
3301
+ .alert .alert-link {
3302
+ font-weight: 500;
3303
+ color: #a47e3c;
3304
+ }
3305
+ .alert .close {
3306
+ position: relative;
3307
+ top: -2px;
3308
+ right: -21px;
3309
+ color: inherit;
3310
+ }
3311
+ .alert-success {
3312
+ background-color: #dff0d8;
3313
+ border-color: #d6e9c6;
3314
+ color: #468847;
3315
+ }
3316
+ .alert-success hr {
3317
+ border-top-color: #c9e2b3;
3318
+ }
3319
+ .alert-success .alert-link {
3320
+ color: #356635;
3321
+ }
3322
+ .alert-danger {
3323
+ background-color: #f2dede;
3324
+ border-color: #eed3d7;
3325
+ color: #b94a48;
3326
+ }
3327
+ .alert-danger hr {
3328
+ border-top-color: #e6c1c7;
3329
+ }
3330
+ .alert-danger .alert-link {
3331
+ color: #953b39;
3332
+ }
3333
+ .alert-info {
3334
+ background-color: #d9edf7;
3335
+ border-color: #bce8f1;
3336
+ color: #3a87ad;
3337
+ }
3338
+ .alert-info hr {
3339
+ border-top-color: #a6e1ec;
3340
+ }
3341
+ .alert-info .alert-link {
3342
+ color: #2d6987;
3343
+ }
3344
+ .alert-block {
3345
+ padding-top: 15px;
3346
+ padding-bottom: 15px;
3347
+ }
3348
+ .alert-block > p,
3349
+ .alert-block > ul {
3350
+ margin-bottom: 0;
3351
+ }
3352
+ .alert-block p + p {
3353
+ margin-top: 5px;
3354
+ }
3355
+ .thumbnail,
3356
+ .img-thumbnail {
3357
+ padding: 4px;
3358
+ line-height: 1.428571429;
3359
+ background-color: #ffffff;
3360
+ border: 1px solid #dddddd;
3361
+ border-radius: 4px;
3362
+ -webkit-transition: all 0.2s ease-in-out;
3363
+ transition: all 0.2s ease-in-out;
3364
+ }
3365
+ .thumbnail {
3366
+ display: block;
3367
+ }
3368
+ .thumbnail > img,
3369
+ .img-thumbnail {
3370
+ display: inline-block;
3371
+ max-width: 100%;
3372
+ height: auto;
3373
+ }
3374
+ a.thumbnail:hover,
3375
+ a.thumbnail:focus {
3376
+ border-color: #428bca;
3377
+ }
3378
+ .thumbnail > img {
3379
+ margin-left: auto;
3380
+ margin-right: auto;
3381
+ }
3382
+ .thumbnail .caption {
3383
+ padding: 9px;
3384
+ color: #333333;
3385
+ }
3386
+ .media,
3387
+ .media-body {
3388
+ overflow: hidden;
3389
+ zoom: 1;
3390
+ }
3391
+ .media,
3392
+ .media .media {
3393
+ margin-top: 15px;
3394
+ }
3395
+ .media:first-child {
3396
+ margin-top: 0;
3397
+ }
3398
+ .media-object {
3399
+ display: block;
3400
+ }
3401
+ .media-heading {
3402
+ margin: 0 0 5px;
3403
+ }
3404
+ .media > .pull-left {
3405
+ margin-right: 10px;
3406
+ }
3407
+ .media > .pull-right {
3408
+ margin-left: 10px;
3409
+ }
3410
+ .media-list {
3411
+ padding-left: 0;
3412
+ list-style: none;
3413
+ }
3414
+ .label {
3415
+ display: inline;
3416
+ padding: .25em .6em;
3417
+ font-size: 75%;
3418
+ font-weight: 500;
3419
+ line-height: 1;
3420
+ color: #ffffff;
3421
+ text-align: center;
3422
+ white-space: nowrap;
3423
+ vertical-align: baseline;
3424
+ background-color: #999999;
3425
+ border-radius: .25em;
3426
+ }
3427
+ .label[href]:hover,
3428
+ .label[href]:focus {
3429
+ color: #ffffff;
3430
+ text-decoration: none;
3431
+ cursor: pointer;
3432
+ background-color: #808080;
3433
+ }
3434
+ .label-danger {
3435
+ background-color: #d9534f;
3436
+ }
3437
+ .label-danger[href]:hover,
3438
+ .label-danger[href]:focus {
3439
+ background-color: #c9302c;
3440
+ }
3441
+ .label-success {
3442
+ background-color: #5cb85c;
3443
+ }
3444
+ .label-success[href]:hover,
3445
+ .label-success[href]:focus {
3446
+ background-color: #449d44;
3447
+ }
3448
+ .label-warning {
3449
+ background-color: #f0ad4e;
3450
+ }
3451
+ .label-warning[href]:hover,
3452
+ .label-warning[href]:focus {
3453
+ background-color: #ec971f;
3454
+ }
3455
+ .label-info {
3456
+ background-color: #5bc0de;
3457
+ }
3458
+ .label-info[href]:hover,
3459
+ .label-info[href]:focus {
3460
+ background-color: #31b0d5;
3461
+ }
3462
+ .badge {
3463
+ display: inline-block;
3464
+ min-width: 10px;
3465
+ padding: 3px 7px;
3466
+ font-size: 12px;
3467
+ font-weight: bold;
3468
+ color: #ffffff;
3469
+ line-height: 1;
3470
+ vertical-align: baseline;
3471
+ white-space: nowrap;
3472
+ text-align: center;
3473
+ background-color: #999999;
3474
+ border-radius: 10px;
3475
+ }
3476
+ .badge:empty {
3477
+ display: none;
3478
+ }
3479
+ a.badge:hover,
3480
+ a.badge:focus {
3481
+ color: #ffffff;
3482
+ text-decoration: none;
3483
+ cursor: pointer;
3484
+ }
3485
+ .btn .badge {
3486
+ position: relative;
3487
+ top: -1px;
3488
+ }
3489
+ a.list-group-item.active > .badge,
3490
+ .nav-pills > .active > a > .badge {
3491
+ color: #428bca;
3492
+ background-color: #ffffff;
3493
+ }
3494
+ .nav-pills > li > a > .badge {
3495
+ margin-left: 3px;
3496
+ }
3497
+ @-webkit-keyframes progress-bar-stripes {
3498
+ from {
3499
+ background-position: 40px 0;
3500
+ }
3501
+ to {
3502
+ background-position: 0 0;
3503
+ }
3504
+ }
3505
+ @-moz-keyframes progress-bar-stripes {
3506
+ from {
3507
+ background-position: 40px 0;
3508
+ }
3509
+ to {
3510
+ background-position: 0 0;
3511
+ }
3512
+ }
3513
+ @-ms-keyframes progress-bar-stripes {
3514
+ from {
3515
+ background-position: 40px 0;
3516
+ }
3517
+ to {
3518
+ background-position: 0 0;
3519
+ }
3520
+ }
3521
+ @-o-keyframes progress-bar-stripes {
3522
+ from {
3523
+ background-position: 0 0;
3524
+ }
3525
+ to {
3526
+ background-position: 40px 0;
3527
+ }
3528
+ }
3529
+ @keyframes progress-bar-stripes {
3530
+ from {
3531
+ background-position: 40px 0;
3532
+ }
3533
+ to {
3534
+ background-position: 0 0;
3535
+ }
3536
+ }
3537
+ .progress {
3538
+ overflow: hidden;
3539
+ height: 20px;
3540
+ margin-bottom: 20px;
3541
+ background-color: #f5f5f5;
3542
+ border-radius: 4px;
3543
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3544
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3545
+ }
3546
+ .progress-bar {
3547
+ float: left;
3548
+ width: 0%;
3549
+ height: 100%;
3550
+ font-size: 12px;
3551
+ color: #ffffff;
3552
+ text-align: center;
3553
+ background-color: #428bca;
3554
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3555
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3556
+ -webkit-transition: width 0.6s ease;
3557
+ transition: width 0.6s ease;
3558
+ }
3559
+ .progress-striped .progress-bar {
3560
+ background-color: #428bca;
3561
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3562
+ 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);
3563
+ background-image: -moz-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);
3564
+ 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);
3565
+ background-size: 40px 40px;
3566
+ }
3567
+ .progress.active .progress-bar {
3568
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
3569
+ -moz-animation: progress-bar-stripes 2s linear infinite;
3570
+ -ms-animation: progress-bar-stripes 2s linear infinite;
3571
+ -o-animation: progress-bar-stripes 2s linear infinite;
3572
+ animation: progress-bar-stripes 2s linear infinite;
3573
+ }
3574
+ .progress-bar-danger {
3575
+ background-color: #d9534f;
3576
+ }
3577
+ .progress-striped .progress-bar-danger {
3578
+ background-color: #d9534f;
3579
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3580
+ 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);
3581
+ background-image: -moz-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);
3582
+ 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);
3583
+ }
3584
+ .progress-bar-success {
3585
+ background-color: #5cb85c;
3586
+ }
3587
+ .progress-striped .progress-bar-success {
3588
+ background-color: #5cb85c;
3589
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3590
+ 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);
3591
+ background-image: -moz-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);
3592
+ 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);
3593
+ }
3594
+ .progress-bar-warning {
3595
+ background-color: #f0ad4e;
3596
+ }
3597
+ .progress-striped .progress-bar-warning {
3598
+ background-color: #f0ad4e;
3599
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3600
+ 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);
3601
+ background-image: -moz-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);
3602
+ 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);
3603
+ }
3604
+ .progress-bar-info {
3605
+ background-color: #5bc0de;
3606
+ }
3607
+ .progress-striped .progress-bar-info {
3608
+ background-color: #5bc0de;
3609
+ background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
3610
+ 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);
3611
+ background-image: -moz-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);
3612
+ 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);
3613
+ }
3614
+ .accordion {
3615
+ margin-bottom: 20px;
3616
+ }
3617
+ .accordion-group {
3618
+ margin-bottom: 2px;
3619
+ border: 1px solid #e5e5e5;
3620
+ border-radius: 4px;
3621
+ }
3622
+ .accordion-heading {
3623
+ border-bottom: 0;
3624
+ }
3625
+ .accordion-heading .accordion-toggle {
3626
+ display: block;
3627
+ padding: 8px 15px;
3628
+ cursor: pointer;
3629
+ }
3630
+ .accordion-inner {
3631
+ padding: 9px 15px;
3632
+ border-top: 1px solid #e5e5e5;
3633
+ }
3634
+ .carousel {
3635
+ position: relative;
3636
+ }
3637
+ .carousel-inner {
3638
+ position: relative;
3639
+ overflow: hidden;
3640
+ width: 100%;
3641
+ }
3642
+ .carousel-inner > .item {
3643
+ display: none;
3644
+ position: relative;
3645
+ -webkit-transition: 0.6s ease-in-out left;
3646
+ transition: 0.6s ease-in-out left;
3647
+ }
3648
+ .carousel-inner > .item > img,
3649
+ .carousel-inner > .item > a > img {
3650
+ display: inline-block;
3651
+ max-width: 100%;
3652
+ height: auto;
3653
+ line-height: 1;
3654
+ }
3655
+ .carousel-inner > .active,
3656
+ .carousel-inner > .next,
3657
+ .carousel-inner > .prev {
3658
+ display: block;
3659
+ }
3660
+ .carousel-inner > .active {
3661
+ left: 0;
3662
+ }
3663
+ .carousel-inner > .next,
3664
+ .carousel-inner > .prev {
3665
+ position: absolute;
3666
+ top: 0;
3667
+ width: 100%;
3668
+ }
3669
+ .carousel-inner > .next {
3670
+ left: 100%;
3671
+ }
3672
+ .carousel-inner > .prev {
3673
+ left: -100%;
3674
+ }
3675
+ .carousel-inner > .next.left,
3676
+ .carousel-inner > .prev.right {
3677
+ left: 0;
3678
+ }
3679
+ .carousel-inner > .active.left {
3680
+ left: -100%;
3681
+ }
3682
+ .carousel-inner > .active.right {
3683
+ left: 100%;
3684
+ }
3685
+ .carousel-control {
3686
+ position: absolute;
3687
+ top: 0;
3688
+ left: 0;
3689
+ bottom: 0;
3690
+ width: 15%;
3691
+ opacity: 0.5;
3692
+ filter: alpha(opacity=50);
3693
+ font-size: 20px;
3694
+ color: #ffffff;
3695
+ text-align: center;
3696
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3697
+ }
3698
+ .carousel-control.left {
3699
+ background-color: rgba(0, 0, 0, 0.0001);
3700
+ background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
3701
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
3702
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3703
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3704
+ background-repeat: repeat-x;
3705
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
3706
+ background-color: transparent;
3707
+ }
3708
+ .carousel-control.right {
3709
+ left: auto;
3710
+ right: 0;
3711
+ background-color: rgba(0, 0, 0, 0.5);
3712
+ background-image: -webkit-gradient(linear, 0% top, 100% top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
3713
+ background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
3714
+ background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3715
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3716
+ background-repeat: repeat-x;
3717
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
3718
+ background-color: transparent;
3719
+ }
3720
+ .carousel-control:hover,
3721
+ .carousel-control:focus {
3722
+ color: #ffffff;
3723
+ text-decoration: none;
3724
+ opacity: 0.9;
3725
+ filter: alpha(opacity=90);
3726
+ }
3727
+ .carousel-control .glyphicon,
3728
+ .carousel-control .icon-prev,
3729
+ .carousel-control .icon-next {
3730
+ position: absolute;
3731
+ top: 50%;
3732
+ left: 50%;
3733
+ z-index: 5;
3734
+ display: inline-block;
3735
+ width: 20px;
3736
+ height: 20px;
3737
+ margin-top: -10px;
3738
+ margin-left: -10px;
3739
+ font-family: serif;
3740
+ }
3741
+ .carousel-control .icon-prev:before {
3742
+ content: '\2039';
3743
+ }
3744
+ .carousel-control .icon-next:before {
3745
+ content: '\203a';
3746
+ }
3747
+ .carousel-indicators {
3748
+ position: absolute;
3749
+ bottom: 10px;
3750
+ left: 50%;
3751
+ z-index: 15;
3752
+ width: 120px;
3753
+ margin-left: -60px;
3754
+ padding-left: 0;
3755
+ list-style: none;
3756
+ text-align: center;
3757
+ }
3758
+ .carousel-indicators li {
3759
+ display: inline-block;
3760
+ width: 10px;
3761
+ height: 10px;
3762
+ margin: 1px;
3763
+ text-indent: -999px;
3764
+ border: 1px solid #ffffff;
3765
+ border-radius: 10px;
3766
+ cursor: pointer;
3767
+ }
3768
+ .carousel-indicators .active {
3769
+ margin: 0;
3770
+ width: 12px;
3771
+ height: 12px;
3772
+ background-color: #ffffff;
3773
+ }
3774
+ .carousel-caption {
3775
+ position: absolute;
3776
+ left: 15%;
3777
+ right: 15%;
3778
+ bottom: 20px;
3779
+ z-index: 10;
3780
+ padding-top: 20px;
3781
+ padding-bottom: 20px;
3782
+ color: #ffffff;
3783
+ text-align: center;
3784
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3785
+ }
3786
+ .carousel-caption .btn {
3787
+ text-shadow: none;
3788
+ }
3789
+ @media screen and (min-width: 768px) {
3790
+ .carousel-control .glyphicon,
3791
+ .carousel-control .icon-prev,
3792
+ .carousel-control .icon-next {
3793
+ width: 30px;
3794
+ height: 30px;
3795
+ margin-top: -15px;
3796
+ margin-left: -15px;
3797
+ font-size: 30px;
3798
+ }
3799
+ .carousel-caption {
3800
+ left: 20%;
3801
+ right: 20%;
3802
+ padding-bottom: 30px;
3803
+ }
3804
+ .carousel-indicators {
3805
+ bottom: 20px;
3806
+ }
3807
+ }
3808
+ .jumbotron {
3809
+ padding: 30px;
3810
+ margin-bottom: 30px;
3811
+ font-size: 21px;
3812
+ font-weight: 200;
3813
+ line-height: 2.1428571435;
3814
+ color: inherit;
3815
+ background-color: #eeeeee;
3816
+ }
3817
+ .jumbotron h1 {
3818
+ line-height: 1;
3819
+ color: inherit;
3820
+ }
3821
+ .jumbotron p {
3822
+ line-height: 1.4;
3823
+ }
3824
+ @media screen and (min-width: 768px) {
3825
+ .jumbotron {
3826
+ padding: 50px 60px;
3827
+ border-radius: 6px;
3828
+ }
3829
+ .jumbotron h1 {
3830
+ font-size: 63px;
3831
+ }
3832
+ }
3833
+ .clearfix:before,
3834
+ .clearfix:after {
3835
+ content: " ";
3836
+ /* 1 */
3837
+
3838
+ display: table;
3839
+ /* 2 */
3840
+
3841
+ }
3842
+ .clearfix:after {
3843
+ clear: both;
3844
+ }
3845
+ .pull-right {
3846
+ float: right;
3847
+ }
3848
+ .pull-left {
3849
+ float: left;
3850
+ }
3851
+ .hide {
3852
+ display: none !important;
3853
+ }
3854
+ .show {
3855
+ display: block !important;
3856
+ }
3857
+ .invisible {
3858
+ visibility: hidden;
3859
+ }
3860
+ .text-hide {
3861
+ font: 0/0 a;
3862
+ color: transparent;
3863
+ text-shadow: none;
3864
+ background-color: transparent;
3865
+ border: 0;
3866
+ }
3867
+ .affix {
3868
+ position: fixed;
3869
+ }
3870
+ @-ms-viewport {
3871
+ width: device-width;
3872
+ }
3873
+ @media screen and (max-width: 400px) {
3874
+ @-ms-viewport {
3875
+ width: 320px;
3876
+ }
3877
+ }
3878
+ .hidden {
3879
+ display: none !important;
3880
+ visibility: hidden !important;
3881
+ }
3882
+ .visible-sm {
3883
+ display: block !important;
3884
+ }
3885
+ tr.visible-sm {
3886
+ display: table-row !important;
3887
+ }
3888
+ th.visible-sm,
3889
+ td.visible-sm {
3890
+ display: table-cell !important;
3891
+ }
3892
+ .visible-md {
3893
+ display: none !important;
3894
+ }
3895
+ tr.visible-md {
3896
+ display: none !important;
3897
+ }
3898
+ th.visible-md,
3899
+ td.visible-md {
3900
+ display: none !important;
3901
+ }
3902
+ .visible-lg {
3903
+ display: none !important;
3904
+ }
3905
+ tr.visible-lg {
3906
+ display: none !important;
3907
+ }
3908
+ th.visible-lg,
3909
+ td.visible-lg {
3910
+ display: none !important;
3911
+ }
3912
+ .hidden-sm {
3913
+ display: none !important;
3914
+ }
3915
+ tr.hidden-sm {
3916
+ display: none !important;
3917
+ }
3918
+ th.hidden-sm,
3919
+ td.hidden-sm {
3920
+ display: none !important;
3921
+ }
3922
+ .hidden-md {
3923
+ display: block !important;
3924
+ }
3925
+ tr.hidden-md {
3926
+ display: table-row !important;
3927
+ }
3928
+ th.hidden-md,
3929
+ td.hidden-md {
3930
+ display: table-cell !important;
3931
+ }
3932
+ .hidden-lg {
3933
+ display: block !important;
3934
+ }
3935
+ tr.hidden-lg {
3936
+ display: table-row !important;
3937
+ }
3938
+ th.hidden-lg,
3939
+ td.hidden-lg {
3940
+ display: table-cell !important;
3941
+ }
3942
+ @media (min-width: 768px) and (max-width: 991px) {
3943
+ .visible-sm {
3944
+ display: none !important;
3945
+ }
3946
+ tr.visible-sm {
3947
+ display: none !important;
3948
+ }
3949
+ th.visible-sm,
3950
+ td.visible-sm {
3951
+ display: none !important;
3952
+ }
3953
+ .visible-md {
3954
+ display: block !important;
3955
+ }
3956
+ tr.visible-md {
3957
+ display: table-row !important;
3958
+ }
3959
+ th.visible-md,
3960
+ td.visible-md {
3961
+ display: table-cell !important;
3962
+ }
3963
+ .visible-lg {
3964
+ display: none !important;
3965
+ }
3966
+ tr.visible-lg {
3967
+ display: none !important;
3968
+ }
3969
+ th.visible-lg,
3970
+ td.visible-lg {
3971
+ display: none !important;
3972
+ }
3973
+ .hidden-sm {
3974
+ display: block !important;
3975
+ }
3976
+ tr.hidden-sm {
3977
+ display: table-row !important;
3978
+ }
3979
+ th.hidden-sm,
3980
+ td.hidden-sm {
3981
+ display: table-cell !important;
3982
+ }
3983
+ .hidden-md {
3984
+ display: none !important;
3985
+ }
3986
+ tr.hidden-md {
3987
+ display: none !important;
3988
+ }
3989
+ th.hidden-md,
3990
+ td.hidden-md {
3991
+ display: none !important;
3992
+ }
3993
+ .hidden-lg {
3994
+ display: block !important;
3995
+ }
3996
+ tr.hidden-lg {
3997
+ display: table-row !important;
3998
+ }
3999
+ th.hidden-lg,
4000
+ td.hidden-lg {
4001
+ display: table-cell !important;
4002
+ }
4003
+ }
4004
+ @media (min-width: 992px) {
4005
+ .visible-sm {
4006
+ display: none !important;
4007
+ }
4008
+ tr.visible-sm {
4009
+ display: none !important;
4010
+ }
4011
+ th.visible-sm,
4012
+ td.visible-sm {
4013
+ display: none !important;
4014
+ }
4015
+ .visible-md {
4016
+ display: none !important;
4017
+ }
4018
+ tr.visible-md {
4019
+ display: none !important;
4020
+ }
4021
+ th.visible-md,
4022
+ td.visible-md {
4023
+ display: none !important;
4024
+ }
4025
+ .visible-lg {
4026
+ display: block !important;
4027
+ }
4028
+ tr.visible-lg {
4029
+ display: table-row !important;
4030
+ }
4031
+ th.visible-lg,
4032
+ td.visible-lg {
4033
+ display: table-cell !important;
4034
+ }
4035
+ .hidden-sm {
4036
+ display: block !important;
4037
+ }
4038
+ tr.hidden-sm {
4039
+ display: table-row !important;
4040
+ }
4041
+ th.hidden-sm,
4042
+ td.hidden-sm {
4043
+ display: table-cell !important;
4044
+ }
4045
+ .hidden-md {
4046
+ display: block !important;
4047
+ }
4048
+ tr.hidden-md {
4049
+ display: table-row !important;
4050
+ }
4051
+ th.hidden-md,
4052
+ td.hidden-md {
4053
+ display: table-cell !important;
4054
+ }
4055
+ .hidden-lg {
4056
+ display: none !important;
4057
+ }
4058
+ tr.hidden-lg {
4059
+ display: none !important;
4060
+ }
4061
+ th.hidden-lg,
4062
+ td.hidden-lg {
4063
+ display: none !important;
4064
+ }
4065
+ }
4066
+ .visible-print {
4067
+ display: none !important;
4068
+ }
4069
+ tr.visible-print {
4070
+ display: none !important;
4071
+ }
4072
+ th.visible-print,
4073
+ td.visible-print {
4074
+ display: none !important;
4075
+ }
4076
+ @media print {
4077
+ .visible-print {
4078
+ display: block !important;
4079
+ }
4080
+ tr.visible-print {
4081
+ display: table-row !important;
4082
+ }
4083
+ th.visible-print,
4084
+ td.visible-print {
4085
+ display: table-cell !important;
4086
+ }
4087
+ .hidden-print {
4088
+ display: none !important;
4089
+ }
4090
+ tr.hidden-print {
4091
+ display: none !important;
4092
+ }
4093
+ th.hidden-print,
4094
+ td.hidden-print {
4095
+ display: none !important;
4096
+ }
4097
+ }