spiderfw 0.6.21 → 0.6.22

Sign up to get free protection for your applications and to get access to all the features.
Files changed (149) hide show
  1. data/CHANGELOG +33 -0
  2. data/Rakefile +0 -1
  3. data/VERSION +1 -1
  4. data/apps/core/admin/_init.rb +4 -0
  5. data/apps/core/admin/admin.rb +20 -4
  6. data/apps/core/admin/controllers/admin_controller.rb +63 -4
  7. data/apps/core/admin/controllers/app_admin_controller.rb +15 -0
  8. data/apps/core/admin/data/locale/it/LC_MESSAGES/admin.mo +0 -0
  9. data/apps/core/admin/po/admin.pot +33 -0
  10. data/apps/core/admin/po/it/admin.po +34 -0
  11. data/apps/core/admin/public/css/admin.css +13 -0
  12. data/apps/core/admin/public/css/login.css +51 -0
  13. data/apps/core/admin/public/css/sass/admin.css +198 -0
  14. data/apps/core/admin/public/css/sass/bootstrap/bootstrap.css +3107 -0
  15. data/apps/core/admin/public/img/css/header_bg.png +0 -0
  16. data/apps/core/admin/public/img/css/noise.png +0 -0
  17. data/apps/core/admin/public/img/css/side_bg.png +0 -0
  18. data/apps/core/admin/public/img/icons/logout.png +0 -0
  19. data/apps/core/admin/public/img/icons-s845a69dd9f.png +0 -0
  20. data/apps/core/admin/public/js/bootstrap-alerts.js +113 -0
  21. data/apps/core/admin/public/js/bootstrap-buttons.js +62 -0
  22. data/apps/core/admin/public/js/bootstrap-dropdown.js +55 -0
  23. data/apps/core/admin/public/js/bootstrap-modal.js +260 -0
  24. data/apps/core/admin/public/js/bootstrap-popover.js +90 -0
  25. data/apps/core/admin/public/js/bootstrap-scrollspy.js +107 -0
  26. data/apps/core/admin/public/js/bootstrap-tabs.js +80 -0
  27. data/apps/core/admin/public/js/bootstrap-twipsy.js +321 -0
  28. data/apps/core/admin/public/sass/admin.scss +167 -0
  29. data/apps/core/admin/public/sass/bootstrap/bootstrap.scss +29 -0
  30. data/apps/core/admin/public/sass/bootstrap/forms.scss +478 -0
  31. data/apps/core/admin/public/sass/bootstrap/mixins.scss +220 -0
  32. data/apps/core/admin/public/sass/bootstrap/patterns.scss +1062 -0
  33. data/apps/core/admin/public/sass/bootstrap/reset.scss +141 -0
  34. data/apps/core/admin/public/sass/bootstrap/scaffolding.scss +136 -0
  35. data/apps/core/admin/public/sass/bootstrap/tables.scss +224 -0
  36. data/apps/core/admin/public/sass/bootstrap/type.scss +187 -0
  37. data/apps/core/admin/public/sass/bootstrap/variables.scss +60 -0
  38. data/apps/core/admin/public/sass/grid.scss +54 -0
  39. data/apps/core/admin/views/_app_info.shtml +5 -0
  40. data/apps/core/admin/views/admin.layout.shtml +35 -0
  41. data/apps/core/admin/views/index.shtml +1 -1
  42. data/apps/core/admin/views/login.layout.shtml +13 -0
  43. data/apps/core/auth/controllers/mixins/auth_helper.rb +1 -1
  44. data/apps/core/auth/models/super_user.rb +6 -0
  45. data/apps/core/auth/models/user.rb +9 -0
  46. data/apps/core/components/assets.rb +5 -1
  47. data/apps/core/components/data/locale/it/LC_MESSAGES/spider_components.mo +0 -0
  48. data/apps/core/components/po/it/spider_components.po +23 -9
  49. data/apps/core/components/po/spider_components.pot +16 -8
  50. data/apps/core/components/public/css/admin.css +0 -12
  51. data/apps/core/components/public/css/crud.css +16 -19
  52. data/apps/core/components/public/css/table.css +11 -5
  53. data/apps/core/components/public/js/less-1.1.3.min.js +16 -0
  54. data/apps/core/components/public/widgets/table.js +1 -1
  55. data/apps/core/components/widgets/admin/admin.rb +10 -0
  56. data/apps/core/components/widgets/admin/admin.shtml +24 -4
  57. data/apps/core/components/widgets/confirm/confirm.rb +2 -2
  58. data/apps/core/components/widgets/confirm/confirm.shtml +5 -2
  59. data/apps/core/components/widgets/crud/crud.rb +10 -1
  60. data/apps/core/components/widgets/crud/crud.shtml +18 -21
  61. data/apps/core/components/widgets/menu/menu.shtml +1 -2
  62. data/apps/core/components/widgets/switcher/switcher.rb +6 -3
  63. data/apps/core/components/widgets/switcher/templates/default.shtml +3 -1
  64. data/apps/core/components/widgets/table/table.rb +3 -2
  65. data/apps/core/components/widgets/table/table.shtml +44 -25
  66. data/apps/core/forms/data/locale/it/LC_MESSAGES/spider_forms.mo +0 -0
  67. data/apps/core/forms/po/it/spider_forms.po +7 -2
  68. data/apps/core/forms/po/spider_forms.pot +5 -1
  69. data/apps/core/forms/public/css/form.css +3 -3
  70. data/apps/core/forms/public/css/html_area.css +0 -1
  71. data/apps/core/forms/public/date_time.js +4 -3
  72. data/apps/core/forms/public/select.js +5 -4
  73. data/apps/core/forms/tags/element_label.erb +1 -1
  74. data/apps/core/forms/tags/row.erb +1 -1
  75. data/apps/core/forms/widgets/form/form.rb +23 -1
  76. data/apps/core/forms/widgets/form/form.shtml +7 -8
  77. data/apps/core/forms/widgets/inputs/checkbox/checkbox.shtml +3 -3
  78. data/apps/core/forms/widgets/inputs/date_time/date_time.shtml +3 -3
  79. data/apps/core/forms/widgets/inputs/file_input/file_input.rb +4 -2
  80. data/apps/core/forms/widgets/inputs/file_input/file_input.shtml +1 -1
  81. data/apps/core/forms/widgets/inputs/hidden/hidden.shtml +1 -1
  82. data/apps/core/forms/widgets/inputs/html_area/html_area.shtml +2 -2
  83. data/apps/core/forms/widgets/inputs/password/password.shtml +3 -3
  84. data/apps/core/forms/widgets/inputs/search_select/search_select.shtml +2 -2
  85. data/apps/core/forms/widgets/inputs/select/select.shtml +16 -13
  86. data/apps/core/forms/widgets/inputs/text/text.shtml +3 -3
  87. data/apps/core/forms/widgets/inputs/text_area/text_area.shtml +5 -2
  88. data/apps/core/forms/widgets/inputs/time_span/time_span.shtml +3 -3
  89. data/apps/messenger/_init.rb +10 -2
  90. data/apps/messenger/controllers/messenger_admin_controller.rb +53 -0
  91. data/apps/messenger/controllers/messenger_controller.rb +2 -0
  92. data/apps/messenger/controllers/mixins/messenger_helper.rb +2 -2
  93. data/apps/messenger/models/message.rb +1 -1
  94. data/apps/messenger/public/app_icon.png +0 -0
  95. data/apps/messenger/views/admin/_admin.layout.shtml +26 -0
  96. data/apps/messenger/views/admin/index.shtml +13 -0
  97. data/apps/messenger/views/admin/queue.shtml +28 -0
  98. data/apps/messenger/views/index.shtml +3 -3
  99. data/data/locale/it/LC_MESSAGES/spider.mo +0 -0
  100. data/lib/spiderfw/app.rb +10 -1
  101. data/lib/spiderfw/cache/template_cache.rb +21 -22
  102. data/lib/spiderfw/cmd/commands/app.rb +3 -3
  103. data/lib/spiderfw/cmd/commands/setup.rb +1 -1
  104. data/lib/spiderfw/config/options/spider.rb +18 -2
  105. data/lib/spiderfw/controller/controller.rb +9 -3
  106. data/lib/spiderfw/controller/dispatcher.rb +25 -12
  107. data/lib/spiderfw/controller/home_controller.rb +3 -3
  108. data/lib/spiderfw/controller/http_controller.rb +11 -0
  109. data/lib/spiderfw/controller/mixins/static_content.rb +3 -12
  110. data/lib/spiderfw/controller/mixins/visual.rb +21 -20
  111. data/lib/spiderfw/controller/request.rb +1 -3
  112. data/lib/spiderfw/http/adapters/mongrel.rb +1 -1
  113. data/lib/spiderfw/i18n/gettext.rb +14 -0
  114. data/lib/spiderfw/i18n/shtml_parser.rb +2 -2
  115. data/lib/spiderfw/model/base_model.rb +4 -3
  116. data/lib/spiderfw/model/mappers/db_mapper.rb +137 -79
  117. data/lib/spiderfw/model/mappers/mapper.rb +6 -2
  118. data/lib/spiderfw/model/migrations/drop_element.rb +1 -1
  119. data/lib/spiderfw/model/migrations/previous_model.rb +73 -0
  120. data/lib/spiderfw/model/migrations/rename_element.rb +42 -0
  121. data/lib/spiderfw/model/migrations.rb +14 -1
  122. data/lib/spiderfw/model/mixins/tree.rb +65 -19
  123. data/lib/spiderfw/model/model_hash.rb +9 -5
  124. data/lib/spiderfw/model/query.rb +8 -0
  125. data/lib/spiderfw/model/query_funcs.rb +23 -0
  126. data/lib/spiderfw/model/query_set.rb +1 -1
  127. data/lib/spiderfw/model/request.rb +11 -3
  128. data/lib/spiderfw/model/storage/db/adapters/mysql.rb +28 -1
  129. data/lib/spiderfw/model/storage/db/adapters/oracle.rb +10 -10
  130. data/lib/spiderfw/model/storage/db/db_schema.rb +20 -3
  131. data/lib/spiderfw/model/storage/db/db_storage.rb +39 -17
  132. data/lib/spiderfw/setup/app_manager.rb +69 -31
  133. data/lib/spiderfw/setup/setup_task.rb +76 -8
  134. data/lib/spiderfw/spider.rb +21 -1
  135. data/lib/spiderfw/templates/blocks/text.rb +4 -4
  136. data/lib/spiderfw/templates/blocks/text_domain.rb +25 -0
  137. data/lib/spiderfw/templates/blocks/widget.rb +1 -1
  138. data/lib/spiderfw/templates/layout.rb +160 -92
  139. data/lib/spiderfw/templates/resources/less.rb +10 -2
  140. data/lib/spiderfw/templates/resources/sass.rb +66 -9
  141. data/lib/spiderfw/templates/template.rb +35 -10
  142. data/lib/spiderfw/templates/template_blocks.rb +6 -3
  143. data/lib/spiderfw/utils/logger.rb +20 -0
  144. data/lib/spiderfw/utils/memory.rb +7 -3
  145. data/lib/spiderfw/widget/widget.rb +13 -7
  146. data/lib/spiderfw/widget/widget_attributes.rb +2 -2
  147. data/spider.gemspec +1 -0
  148. metadata +68 -11
  149. data/apps/core/admin/views/spider_admin.layout.shtml +0 -23
@@ -0,0 +1,3107 @@
1
+ /*
2
+ * Bootstrap v1.3.0
3
+ *
4
+ * Copyright 2011 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 @twitter by @mdo and @fat.
9
+ *
10
+ * Converted to Sass by @johnwlong.
11
+ *
12
+ * Date: @DATE
13
+ */
14
+ /* Reset.scss
15
+ * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc).
16
+ * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */
17
+ /* line 9, ../../../sass/bootstrap/reset.scss */
18
+ html, body {
19
+ margin: 0;
20
+ padding: 0;
21
+ }
22
+
23
+ /* line 10, ../../../sass/bootstrap/reset.scss */
24
+ h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, cite, code, del, dfn, em, img, q, s, samp, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td {
25
+ margin: 0;
26
+ padding: 0;
27
+ border: 0;
28
+ font-weight: normal;
29
+ font-style: normal;
30
+ font-size: 100%;
31
+ line-height: 1;
32
+ font-family: inherit;
33
+ }
34
+
35
+ /* line 11, ../../../sass/bootstrap/reset.scss */
36
+ table {
37
+ border-collapse: collapse;
38
+ border-spacing: 0;
39
+ }
40
+
41
+ /* line 12, ../../../sass/bootstrap/reset.scss */
42
+ ol, ul {
43
+ list-style: none;
44
+ }
45
+
46
+ /* line 13, ../../../sass/bootstrap/reset.scss */
47
+ q:before, q:after, blockquote:before, blockquote:after {
48
+ content: "";
49
+ }
50
+
51
+ /* line 23, ../../../sass/bootstrap/reset.scss */
52
+ html {
53
+ overflow-y: scroll;
54
+ font-size: 100%;
55
+ -webkit-text-size-adjust: 100%;
56
+ -ms-text-size-adjust: 100%;
57
+ }
58
+
59
+ /* line 30, ../../../sass/bootstrap/reset.scss */
60
+ a:focus {
61
+ outline: thin dotted;
62
+ }
63
+
64
+ /* line 35, ../../../sass/bootstrap/reset.scss */
65
+ a:hover,
66
+ a:active {
67
+ outline: 0;
68
+ }
69
+
70
+ /* line 51, ../../../sass/bootstrap/reset.scss */
71
+ article,
72
+ aside,
73
+ details,
74
+ figcaption,
75
+ figure,
76
+ footer,
77
+ header,
78
+ hgroup,
79
+ nav,
80
+ section {
81
+ display: block;
82
+ }
83
+
84
+ /* line 60, ../../../sass/bootstrap/reset.scss */
85
+ audio,
86
+ canvas,
87
+ video {
88
+ display: inline-block;
89
+ *display: inline;
90
+ *zoom: 1;
91
+ }
92
+
93
+ /* line 69, ../../../sass/bootstrap/reset.scss */
94
+ audio:not([controls]) {
95
+ display: none;
96
+ }
97
+
98
+ /* line 77, ../../../sass/bootstrap/reset.scss */
99
+ sub,
100
+ sup {
101
+ font-size: 75%;
102
+ line-height: 0;
103
+ position: relative;
104
+ vertical-align: baseline;
105
+ }
106
+
107
+ /* line 83, ../../../sass/bootstrap/reset.scss */
108
+ sup {
109
+ top: -0.5em;
110
+ }
111
+
112
+ /* line 86, ../../../sass/bootstrap/reset.scss */
113
+ sub {
114
+ bottom: -0.25em;
115
+ }
116
+
117
+ /* line 93, ../../../sass/bootstrap/reset.scss */
118
+ img {
119
+ border: 0;
120
+ -ms-interpolation-mode: bicubic;
121
+ }
122
+
123
+ /* line 106, ../../../sass/bootstrap/reset.scss */
124
+ button,
125
+ input,
126
+ select,
127
+ textarea {
128
+ font-size: 100%;
129
+ margin: 0;
130
+ vertical-align: baseline;
131
+ *vertical-align: middle;
132
+ }
133
+
134
+ /* line 113, ../../../sass/bootstrap/reset.scss */
135
+ button,
136
+ input {
137
+ line-height: normal;
138
+ *overflow: visible;
139
+ }
140
+
141
+ /* line 118, ../../../sass/bootstrap/reset.scss */
142
+ button::-moz-focus-inner,
143
+ input::-moz-focus-inner {
144
+ border: 0;
145
+ padding: 0;
146
+ }
147
+
148
+ /* line 125, ../../../sass/bootstrap/reset.scss */
149
+ button,
150
+ input[type="button"],
151
+ input[type="reset"],
152
+ input[type="submit"] {
153
+ cursor: pointer;
154
+ -webkit-appearance: button;
155
+ }
156
+
157
+ /* line 129, ../../../sass/bootstrap/reset.scss */
158
+ input[type="search"] {
159
+ -webkit-appearance: textfield;
160
+ -webkit-box-sizing: content-box;
161
+ -moz-box-sizing: content-box;
162
+ box-sizing: content-box;
163
+ }
164
+
165
+ /* line 135, ../../../sass/bootstrap/reset.scss */
166
+ input[type="search"]::-webkit-search-decoration {
167
+ -webkit-appearance: none;
168
+ }
169
+
170
+ /* line 138, ../../../sass/bootstrap/reset.scss */
171
+ textarea {
172
+ overflow: auto;
173
+ vertical-align: top;
174
+ }
175
+
176
+ /* variables.scss
177
+ * Variables and mixins to pre-ignite any new web development project
178
+ * ------------------------------------------------------------------ */
179
+ /* Mixins.scss
180
+ * Snippets of reusable CSS to develop faster and keep code readable
181
+ * ----------------------------------------------------------------- */
182
+ /* line 18, ../../../sass/bootstrap/mixins.scss */
183
+ .clearfix {
184
+ zoom: 1;
185
+ }
186
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
187
+ .clearfix:before, .clearfix:after {
188
+ display: table;
189
+ content: "";
190
+ zoom: 1;
191
+ }
192
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
193
+ .clearfix:after {
194
+ clear: both;
195
+ }
196
+
197
+ /* line 78, ../../../sass/bootstrap/mixins.scss */
198
+ .fixed-container {
199
+ width: 940px;
200
+ margin-left: auto;
201
+ margin-right: auto;
202
+ zoom: 1;
203
+ }
204
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
205
+ .fixed-container:before, .fixed-container:after {
206
+ display: table;
207
+ content: "";
208
+ zoom: 1;
209
+ }
210
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
211
+ .fixed-container:after {
212
+ clear: both;
213
+ }
214
+
215
+ /*
216
+ * Scaffolding.scss
217
+ * Basic and global styles for generating a grid system, structural layout, and page templates
218
+ * ------------------------------------------------------------------------------------------- */
219
+ /* line 10, ../../../sass/bootstrap/scaffolding.scss */
220
+ body {
221
+ background-color: white;
222
+ margin: 0;
223
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
224
+ font-size: 13px;
225
+ font-weight: normal;
226
+ line-height: 18px;
227
+ color: #404040;
228
+ }
229
+
230
+ /* line 18, ../../../sass/bootstrap/scaffolding.scss */
231
+ .container {
232
+ width: 940px;
233
+ margin-left: auto;
234
+ margin-right: auto;
235
+ zoom: 1;
236
+ }
237
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
238
+ .container:before, .container:after {
239
+ display: table;
240
+ content: "";
241
+ zoom: 1;
242
+ }
243
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
244
+ .container:after {
245
+ clear: both;
246
+ }
247
+
248
+ /* line 23, ../../../sass/bootstrap/scaffolding.scss */
249
+ .container-fluid {
250
+ position: relative;
251
+ min-width: 940px;
252
+ padding-left: 20px;
253
+ padding-right: 20px;
254
+ zoom: 1;
255
+ }
256
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
257
+ .container-fluid:before, .container-fluid:after {
258
+ display: table;
259
+ content: "";
260
+ zoom: 1;
261
+ }
262
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
263
+ .container-fluid:after {
264
+ clear: both;
265
+ }
266
+ /* line 29, ../../../sass/bootstrap/scaffolding.scss */
267
+ .container-fluid > .sidebar {
268
+ position: absolute;
269
+ top: 0;
270
+ left: 20px;
271
+ width: 220px;
272
+ }
273
+ /* line 36, ../../../sass/bootstrap/scaffolding.scss */
274
+ .container-fluid > .content {
275
+ margin-left: 240px;
276
+ }
277
+
278
+ /* line 46, ../../../sass/bootstrap/scaffolding.scss */
279
+ a {
280
+ color: #0069d6;
281
+ text-decoration: none;
282
+ line-height: inherit;
283
+ font-weight: inherit;
284
+ }
285
+ /* line 51, ../../../sass/bootstrap/scaffolding.scss */
286
+ a:hover {
287
+ color: #00438a;
288
+ text-decoration: underline;
289
+ }
290
+
291
+ /* line 58, ../../../sass/bootstrap/scaffolding.scss */
292
+ .pull-right {
293
+ float: right;
294
+ }
295
+
296
+ /* line 61, ../../../sass/bootstrap/scaffolding.scss */
297
+ .pull-left {
298
+ float: left;
299
+ }
300
+
301
+ /* line 66, ../../../sass/bootstrap/scaffolding.scss */
302
+ .hide {
303
+ display: none;
304
+ }
305
+
306
+ /* line 69, ../../../sass/bootstrap/scaffolding.scss */
307
+ .show {
308
+ display: block;
309
+ }
310
+
311
+ /* line 78, ../../../sass/bootstrap/scaffolding.scss */
312
+ .row {
313
+ zoom: 1;
314
+ margin-left: -20px;
315
+ }
316
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
317
+ .row:before, .row:after {
318
+ display: table;
319
+ content: "";
320
+ zoom: 1;
321
+ }
322
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
323
+ .row:after {
324
+ clear: both;
325
+ }
326
+
327
+ /* line 85, ../../../sass/bootstrap/scaffolding.scss */
328
+ .row > [class*="span"] {
329
+ display: inline;
330
+ float: left;
331
+ margin-left: 20px;
332
+ }
333
+
334
+ /* line 90, ../../../sass/bootstrap/scaffolding.scss */
335
+ .span1 {
336
+ width: 40px;
337
+ }
338
+
339
+ /* line 91, ../../../sass/bootstrap/scaffolding.scss */
340
+ .span2 {
341
+ width: 100px;
342
+ }
343
+
344
+ /* line 92, ../../../sass/bootstrap/scaffolding.scss */
345
+ .span3 {
346
+ width: 160px;
347
+ }
348
+
349
+ /* line 93, ../../../sass/bootstrap/scaffolding.scss */
350
+ .span4 {
351
+ width: 220px;
352
+ }
353
+
354
+ /* line 94, ../../../sass/bootstrap/scaffolding.scss */
355
+ .span5 {
356
+ width: 280px;
357
+ }
358
+
359
+ /* line 95, ../../../sass/bootstrap/scaffolding.scss */
360
+ .span6 {
361
+ width: 340px;
362
+ }
363
+
364
+ /* line 96, ../../../sass/bootstrap/scaffolding.scss */
365
+ .span7 {
366
+ width: 400px;
367
+ }
368
+
369
+ /* line 97, ../../../sass/bootstrap/scaffolding.scss */
370
+ .span8 {
371
+ width: 460px;
372
+ }
373
+
374
+ /* line 98, ../../../sass/bootstrap/scaffolding.scss */
375
+ .span9 {
376
+ width: 520px;
377
+ }
378
+
379
+ /* line 99, ../../../sass/bootstrap/scaffolding.scss */
380
+ .span10 {
381
+ width: 580px;
382
+ }
383
+
384
+ /* line 100, ../../../sass/bootstrap/scaffolding.scss */
385
+ .span11 {
386
+ width: 640px;
387
+ }
388
+
389
+ /* line 101, ../../../sass/bootstrap/scaffolding.scss */
390
+ .span12 {
391
+ width: 700px;
392
+ }
393
+
394
+ /* line 102, ../../../sass/bootstrap/scaffolding.scss */
395
+ .span13 {
396
+ width: 760px;
397
+ }
398
+
399
+ /* line 103, ../../../sass/bootstrap/scaffolding.scss */
400
+ .span14 {
401
+ width: 820px;
402
+ }
403
+
404
+ /* line 104, ../../../sass/bootstrap/scaffolding.scss */
405
+ .span15 {
406
+ width: 880px;
407
+ }
408
+
409
+ /* line 105, ../../../sass/bootstrap/scaffolding.scss */
410
+ .span16 {
411
+ width: 940px;
412
+ }
413
+
414
+ /* line 108, ../../../sass/bootstrap/scaffolding.scss */
415
+ .span17 {
416
+ width: 1000px;
417
+ }
418
+
419
+ /* line 109, ../../../sass/bootstrap/scaffolding.scss */
420
+ .span18 {
421
+ width: 1060px;
422
+ }
423
+
424
+ /* line 110, ../../../sass/bootstrap/scaffolding.scss */
425
+ .span19 {
426
+ width: 1120px;
427
+ }
428
+
429
+ /* line 111, ../../../sass/bootstrap/scaffolding.scss */
430
+ .span20 {
431
+ width: 1180px;
432
+ }
433
+
434
+ /* line 112, ../../../sass/bootstrap/scaffolding.scss */
435
+ .span21 {
436
+ width: 1240px;
437
+ }
438
+
439
+ /* line 113, ../../../sass/bootstrap/scaffolding.scss */
440
+ .span22 {
441
+ width: 1300px;
442
+ }
443
+
444
+ /* line 114, ../../../sass/bootstrap/scaffolding.scss */
445
+ .span23 {
446
+ width: 1360px;
447
+ }
448
+
449
+ /* line 115, ../../../sass/bootstrap/scaffolding.scss */
450
+ .span24 {
451
+ width: 1420px;
452
+ }
453
+
454
+ /* line 119, ../../../sass/bootstrap/scaffolding.scss */
455
+ .row > .offset1 {
456
+ margin-left: 80px;
457
+ }
458
+ /* line 120, ../../../sass/bootstrap/scaffolding.scss */
459
+ .row > .offset2 {
460
+ margin-left: 140px;
461
+ }
462
+ /* line 121, ../../../sass/bootstrap/scaffolding.scss */
463
+ .row > .offset3 {
464
+ margin-left: 200px;
465
+ }
466
+ /* line 122, ../../../sass/bootstrap/scaffolding.scss */
467
+ .row > .offset4 {
468
+ margin-left: 260px;
469
+ }
470
+ /* line 123, ../../../sass/bootstrap/scaffolding.scss */
471
+ .row > .offset5 {
472
+ margin-left: 320px;
473
+ }
474
+ /* line 124, ../../../sass/bootstrap/scaffolding.scss */
475
+ .row > .offset6 {
476
+ margin-left: 380px;
477
+ }
478
+ /* line 125, ../../../sass/bootstrap/scaffolding.scss */
479
+ .row > .offset7 {
480
+ margin-left: 440px;
481
+ }
482
+ /* line 126, ../../../sass/bootstrap/scaffolding.scss */
483
+ .row > .offset8 {
484
+ margin-left: 500px;
485
+ }
486
+ /* line 127, ../../../sass/bootstrap/scaffolding.scss */
487
+ .row > .offset9 {
488
+ margin-left: 560px;
489
+ }
490
+ /* line 128, ../../../sass/bootstrap/scaffolding.scss */
491
+ .row > .offset10 {
492
+ margin-left: 620px;
493
+ }
494
+ /* line 129, ../../../sass/bootstrap/scaffolding.scss */
495
+ .row > .offset11 {
496
+ margin-left: 680px;
497
+ }
498
+ /* line 130, ../../../sass/bootstrap/scaffolding.scss */
499
+ .row > .offset12 {
500
+ margin-left: 740px;
501
+ }
502
+
503
+ /* line 133, ../../../sass/bootstrap/scaffolding.scss */
504
+ .span-one-third {
505
+ width: 300px;
506
+ }
507
+
508
+ /* line 134, ../../../sass/bootstrap/scaffolding.scss */
509
+ .span-two-thirds {
510
+ width: 620px;
511
+ }
512
+
513
+ /* line 135, ../../../sass/bootstrap/scaffolding.scss */
514
+ .offset-one-third {
515
+ margin-left: 340px;
516
+ }
517
+
518
+ /* line 136, ../../../sass/bootstrap/scaffolding.scss */
519
+ .offset-two-thirds {
520
+ margin-left: 660px;
521
+ }
522
+
523
+ /* Typography.scss
524
+ * Headings, body text, lists, code, and more for a versatile and durable typography system
525
+ * ---------------------------------------------------------------------------------------- */
526
+ /* line 9, ../../../sass/bootstrap/type.scss */
527
+ p {
528
+ font-size: 13px;
529
+ font-weight: normal;
530
+ line-height: 18px;
531
+ margin-bottom: 9px;
532
+ }
533
+ /* line 12, ../../../sass/bootstrap/type.scss */
534
+ p small {
535
+ font-size: 11px;
536
+ color: #bfbfbf;
537
+ }
538
+
539
+ /* line 22, ../../../sass/bootstrap/type.scss */
540
+ h1, h2, h3, h4, h5, h6 {
541
+ font-weight: bold;
542
+ color: #404040;
543
+ }
544
+ /* line 25, ../../../sass/bootstrap/type.scss */
545
+ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
546
+ color: #bfbfbf;
547
+ }
548
+
549
+ /* line 29, ../../../sass/bootstrap/type.scss */
550
+ h1 {
551
+ margin-bottom: 18px;
552
+ font-size: 30px;
553
+ line-height: 36px;
554
+ }
555
+ /* line 33, ../../../sass/bootstrap/type.scss */
556
+ h1 small {
557
+ font-size: 18px;
558
+ }
559
+
560
+ /* line 37, ../../../sass/bootstrap/type.scss */
561
+ h2 {
562
+ font-size: 24px;
563
+ line-height: 36px;
564
+ }
565
+ /* line 40, ../../../sass/bootstrap/type.scss */
566
+ h2 small {
567
+ font-size: 14px;
568
+ }
569
+
570
+ /* line 44, ../../../sass/bootstrap/type.scss */
571
+ h3, h4, h5, h6 {
572
+ line-height: 36px;
573
+ }
574
+
575
+ /* line 47, ../../../sass/bootstrap/type.scss */
576
+ h3 {
577
+ font-size: 18px;
578
+ }
579
+ /* line 49, ../../../sass/bootstrap/type.scss */
580
+ h3 small {
581
+ font-size: 14px;
582
+ }
583
+
584
+ /* line 53, ../../../sass/bootstrap/type.scss */
585
+ h4 {
586
+ font-size: 16px;
587
+ }
588
+ /* line 55, ../../../sass/bootstrap/type.scss */
589
+ h4 small {
590
+ font-size: 12px;
591
+ }
592
+
593
+ /* line 59, ../../../sass/bootstrap/type.scss */
594
+ h5 {
595
+ font-size: 14px;
596
+ }
597
+
598
+ /* line 62, ../../../sass/bootstrap/type.scss */
599
+ h6 {
600
+ font-size: 13px;
601
+ color: #bfbfbf;
602
+ text-transform: uppercase;
603
+ }
604
+
605
+ /* line 73, ../../../sass/bootstrap/type.scss */
606
+ ul, ol {
607
+ margin: 0 0 18px 25px;
608
+ }
609
+
610
+ /* line 79, ../../../sass/bootstrap/type.scss */
611
+ ul ul,
612
+ ul ol,
613
+ ol ol,
614
+ ol ul {
615
+ margin-bottom: 0;
616
+ }
617
+
618
+ /* line 82, ../../../sass/bootstrap/type.scss */
619
+ ul {
620
+ list-style: disc;
621
+ }
622
+
623
+ /* line 85, ../../../sass/bootstrap/type.scss */
624
+ ol {
625
+ list-style: decimal;
626
+ }
627
+
628
+ /* line 88, ../../../sass/bootstrap/type.scss */
629
+ li {
630
+ line-height: 18px;
631
+ color: gray;
632
+ }
633
+
634
+ /* line 92, ../../../sass/bootstrap/type.scss */
635
+ ul.unstyled {
636
+ list-style: none;
637
+ margin-left: 0;
638
+ }
639
+
640
+ /* line 98, ../../../sass/bootstrap/type.scss */
641
+ dl {
642
+ margin-bottom: 18px;
643
+ }
644
+ /* line 100, ../../../sass/bootstrap/type.scss */
645
+ dl dt, dl dd {
646
+ line-height: 18px;
647
+ }
648
+ /* line 103, ../../../sass/bootstrap/type.scss */
649
+ dl dt {
650
+ font-weight: bold;
651
+ }
652
+ /* line 106, ../../../sass/bootstrap/type.scss */
653
+ dl dd {
654
+ margin-left: 9px;
655
+ }
656
+
657
+ /* line 115, ../../../sass/bootstrap/type.scss */
658
+ hr {
659
+ margin: 20px 0 19px;
660
+ border: 0;
661
+ border-bottom: 1px solid #eee;
662
+ }
663
+
664
+ /* line 122, ../../../sass/bootstrap/type.scss */
665
+ strong {
666
+ font-style: inherit;
667
+ font-weight: bold;
668
+ }
669
+
670
+ /* line 126, ../../../sass/bootstrap/type.scss */
671
+ em {
672
+ font-style: italic;
673
+ font-weight: inherit;
674
+ line-height: inherit;
675
+ }
676
+
677
+ /* line 131, ../../../sass/bootstrap/type.scss */
678
+ .muted {
679
+ color: #bfbfbf;
680
+ }
681
+
682
+ /* line 136, ../../../sass/bootstrap/type.scss */
683
+ blockquote {
684
+ margin-bottom: 18px;
685
+ border-left: 5px solid #eee;
686
+ padding-left: 15px;
687
+ }
688
+ /* line 140, ../../../sass/bootstrap/type.scss */
689
+ blockquote p {
690
+ font-size: 14px;
691
+ font-weight: 300;
692
+ line-height: 18px;
693
+ margin-bottom: 0;
694
+ }
695
+ /* line 144, ../../../sass/bootstrap/type.scss */
696
+ blockquote small {
697
+ display: block;
698
+ font-size: 12px;
699
+ font-weight: 300;
700
+ line-height: 18px;
701
+ color: #bfbfbf;
702
+ }
703
+ /* line 148, ../../../sass/bootstrap/type.scss */
704
+ blockquote small:before {
705
+ content: '\2014 \00A0';
706
+ }
707
+
708
+ /* line 155, ../../../sass/bootstrap/type.scss */
709
+ address {
710
+ display: block;
711
+ line-height: 18px;
712
+ margin-bottom: 18px;
713
+ }
714
+
715
+ /* line 162, ../../../sass/bootstrap/type.scss */
716
+ code, pre {
717
+ padding: 0 3px 2px;
718
+ font-family: Monaco, Andale Mono, Courier New, monospace;
719
+ font-size: 12px;
720
+ -webkit-border-radius: 3px;
721
+ -moz-border-radius: 3px;
722
+ border-radius: 3px;
723
+ }
724
+
725
+ /* line 168, ../../../sass/bootstrap/type.scss */
726
+ code {
727
+ background-color: #fee9cc;
728
+ color: rgba(0, 0, 0, 0.75);
729
+ padding: 1px 3px;
730
+ }
731
+
732
+ /* line 173, ../../../sass/bootstrap/type.scss */
733
+ pre {
734
+ background-color: #f5f5f5;
735
+ display: block;
736
+ padding: 8.5px;
737
+ margin: 0 0 18px;
738
+ line-height: 18px;
739
+ font-size: 12px;
740
+ border: 1px solid #ccc;
741
+ border: 1px solid rgba(0, 0, 0, 0.15);
742
+ -webkit-border-radius: 3px;
743
+ -moz-border-radius: 3px;
744
+ border-radius: 3px;
745
+ white-space: pre;
746
+ white-space: pre-wrap;
747
+ word-wrap: break-word;
748
+ }
749
+
750
+ /* Forms.scss
751
+ * Base styles for various input types, form layouts, and states
752
+ * ------------------------------------------------------------- */
753
+ /* line 9, ../../../sass/bootstrap/forms.scss */
754
+ form {
755
+ margin-bottom: 18px;
756
+ }
757
+
758
+ /* line 14, ../../../sass/bootstrap/forms.scss */
759
+ fieldset {
760
+ margin-bottom: 18px;
761
+ padding-top: 18px;
762
+ }
763
+ /* line 17, ../../../sass/bootstrap/forms.scss */
764
+ fieldset legend {
765
+ display: block;
766
+ padding-left: 150px;
767
+ font-size: 19.5px;
768
+ line-height: 1;
769
+ color: #404040;
770
+ *padding: 0 0 5px 145px;
771
+ /* IE6-7 */
772
+ *line-height: 1.5;
773
+ /* IE6-7 */
774
+ }
775
+
776
+ /* line 29, ../../../sass/bootstrap/forms.scss */
777
+ form .formrow {
778
+ margin-bottom: 18px;
779
+ zoom: 1;
780
+ }
781
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
782
+ form .formrow:before, form .formrow:after {
783
+ display: table;
784
+ content: "";
785
+ zoom: 1;
786
+ }
787
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
788
+ form .formrow:after {
789
+ clear: both;
790
+ }
791
+
792
+ /* line 38, ../../../sass/bootstrap/forms.scss */
793
+ label,
794
+ input,
795
+ select,
796
+ textarea {
797
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
798
+ font-size: 13px;
799
+ font-weight: normal;
800
+ line-height: normal;
801
+ }
802
+
803
+ /* line 43, ../../../sass/bootstrap/forms.scss */
804
+ label {
805
+ padding-top: 6px;
806
+ font-size: 13px;
807
+ line-height: 18px;
808
+ float: left;
809
+ width: 130px;
810
+ text-align: right;
811
+ color: #404040;
812
+ }
813
+
814
+ /* line 54, ../../../sass/bootstrap/forms.scss */
815
+ form .input {
816
+ margin-left: 150px;
817
+ }
818
+
819
+ /* line 60, ../../../sass/bootstrap/forms.scss */
820
+ input[type=checkbox],
821
+ input[type=radio] {
822
+ cursor: pointer;
823
+ }
824
+
825
+ /* line 68, ../../../sass/bootstrap/forms.scss */
826
+ input,
827
+ textarea,
828
+ select,
829
+ .uneditable-input {
830
+ display: inline-block;
831
+ width: 210px;
832
+ height: 18px;
833
+ padding: 4px;
834
+ font-size: 13px;
835
+ line-height: 18px;
836
+ color: gray;
837
+ border: 1px solid #ccc;
838
+ -webkit-border-radius: 3px;
839
+ -moz-border-radius: 3px;
840
+ border-radius: 3px;
841
+ }
842
+
843
+ /* line 81, ../../../sass/bootstrap/forms.scss */
844
+ select {
845
+ padding: initial;
846
+ }
847
+
848
+ /* line 87, ../../../sass/bootstrap/forms.scss */
849
+ input[type=checkbox],
850
+ input[type=radio] {
851
+ width: auto;
852
+ height: auto;
853
+ padding: 0;
854
+ margin: 3px 0;
855
+ *margin-top: 0;
856
+ /* IE6-7 */
857
+ line-height: normal;
858
+ border: none;
859
+ }
860
+
861
+ /* line 97, ../../../sass/bootstrap/forms.scss */
862
+ input[type=file] {
863
+ background-color: white;
864
+ padding: initial;
865
+ border: initial;
866
+ line-height: initial;
867
+ -webkit-box-shadow: none;
868
+ -moz-box-shadow: none;
869
+ box-shadow: none;
870
+ }
871
+
872
+ /* line 107, ../../../sass/bootstrap/forms.scss */
873
+ input[type=button],
874
+ input[type=reset],
875
+ input[type=submit] {
876
+ width: auto;
877
+ height: auto;
878
+ }
879
+
880
+ /* line 113, ../../../sass/bootstrap/forms.scss */
881
+ select,
882
+ input[type=file] {
883
+ height: 27px;
884
+ *height: auto;
885
+ line-height: 27px;
886
+ *margin-top: 4px;
887
+ /* For IE7, add top margin to align select with labels */
888
+ }
889
+
890
+ /* line 121, ../../../sass/bootstrap/forms.scss */
891
+ select[multiple] {
892
+ height: inherit;
893
+ background-color: white;
894
+ }
895
+
896
+ /* line 126, ../../../sass/bootstrap/forms.scss */
897
+ textarea {
898
+ height: auto;
899
+ }
900
+
901
+ /* line 131, ../../../sass/bootstrap/forms.scss */
902
+ .uneditable-input {
903
+ background-color: white;
904
+ display: block;
905
+ border-color: #eee;
906
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
907
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
908
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
909
+ cursor: not-allowed;
910
+ }
911
+
912
+ /* line 140, ../../../sass/bootstrap/forms.scss */
913
+ :-moz-placeholder {
914
+ color: #bfbfbf;
915
+ }
916
+
917
+ /* line 143, ../../../sass/bootstrap/forms.scss */
918
+ ::-webkit-input-placeholder {
919
+ color: #bfbfbf;
920
+ }
921
+
922
+ /* line 149, ../../../sass/bootstrap/forms.scss */
923
+ input,
924
+ textarea {
925
+ -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
926
+ -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
927
+ -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
928
+ -o-transition: border linear 0.2s, box-shadow linear 0.2s;
929
+ transition: border linear 0.2s, box-shadow linear 0.2s;
930
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
931
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
932
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
933
+ }
934
+
935
+ /* line 155, ../../../sass/bootstrap/forms.scss */
936
+ input:focus,
937
+ textarea:focus {
938
+ outline: 0;
939
+ border-color: rgba(82, 168, 236, 0.8);
940
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
941
+ -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
942
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6);
943
+ }
944
+
945
+ /* line 163, ../../../sass/bootstrap/forms.scss */
946
+ input[type=file]:focus,
947
+ input[type=checkbox]:focus,
948
+ select:focus {
949
+ -webkit-box-shadow: none;
950
+ -moz-box-shadow: none;
951
+ box-shadow: none;
952
+ outline: 1px dotted #666;
953
+ }
954
+
955
+ /* line 176, ../../../sass/bootstrap/forms.scss */
956
+ form .formrow.error > label,
957
+ form .formrow.error .help-block,
958
+ form .formrow.error .help-inline {
959
+ color: #b94a48;
960
+ }
961
+ /* line 181, ../../../sass/bootstrap/forms.scss */
962
+ form .formrow.error input,
963
+ form .formrow.error textarea {
964
+ color: #b94a48;
965
+ border-color: #ee5f5b;
966
+ }
967
+ /* line 184, ../../../sass/bootstrap/forms.scss */
968
+ form .formrow.error input:focus,
969
+ form .formrow.error textarea:focus {
970
+ border-color: #e9322d;
971
+ -webkit-box-shadow: 0 0 6px #f8b9b7;
972
+ -moz-box-shadow: 0 0 6px #f8b9b7;
973
+ box-shadow: 0 0 6px #f8b9b7;
974
+ }
975
+ /* line 191, ../../../sass/bootstrap/forms.scss */
976
+ form .formrow.error .input-prepend .add-on,
977
+ form .formrow.error .input-append .add-on {
978
+ color: #b94a48;
979
+ background-color: #fce6e6;
980
+ border-color: #b94a48;
981
+ }
982
+
983
+ /* line 176, ../../../sass/bootstrap/forms.scss */
984
+ form .formrow.warning > label, form .formrow.warning .help-block, form .formrow.warning .help-inline {
985
+ color: #c09853;
986
+ }
987
+ /* line 181, ../../../sass/bootstrap/forms.scss */
988
+ form .formrow.warning input, form .formrow.warning textarea {
989
+ color: #c09853;
990
+ border-color: #ccae64;
991
+ }
992
+ /* line 184, ../../../sass/bootstrap/forms.scss */
993
+ form .formrow.warning input:focus, form .formrow.warning textarea:focus {
994
+ border-color: #be9a3f;
995
+ -webkit-box-shadow: 0 0 6px #e5d6b1;
996
+ -moz-box-shadow: 0 0 6px #e5d6b1;
997
+ box-shadow: 0 0 6px #e5d6b1;
998
+ }
999
+ /* line 191, ../../../sass/bootstrap/forms.scss */
1000
+ form .formrow.warning .input-prepend .add-on, form .formrow.warning .input-append .add-on {
1001
+ color: #c09853;
1002
+ background-color: #d2b877;
1003
+ border-color: #c09853;
1004
+ }
1005
+
1006
+ /* line 176, ../../../sass/bootstrap/forms.scss */
1007
+ form .formrow.success > label, form .formrow.success .help-block, form .formrow.success .help-inline {
1008
+ color: #468847;
1009
+ }
1010
+ /* line 181, ../../../sass/bootstrap/forms.scss */
1011
+ form .formrow.success input, form .formrow.success textarea {
1012
+ color: #468847;
1013
+ border-color: #57a957;
1014
+ }
1015
+ /* line 184, ../../../sass/bootstrap/forms.scss */
1016
+ form .formrow.success input:focus, form .formrow.success textarea:focus {
1017
+ border-color: #458845;
1018
+ -webkit-box-shadow: 0 0 6px #9acc9a;
1019
+ -moz-box-shadow: 0 0 6px #9acc9a;
1020
+ box-shadow: 0 0 6px #9acc9a;
1021
+ }
1022
+ /* line 191, ../../../sass/bootstrap/forms.scss */
1023
+ form .formrow.success .input-prepend .add-on, form .formrow.success .input-append .add-on {
1024
+ color: #468847;
1025
+ background-color: #bcddbc;
1026
+ border-color: #468847;
1027
+ }
1028
+
1029
+ /* line 216, ../../../sass/bootstrap/forms.scss */
1030
+ .input-mini,
1031
+ input.mini,
1032
+ textarea.mini,
1033
+ select.mini {
1034
+ width: 60px;
1035
+ }
1036
+
1037
+ /* line 222, ../../../sass/bootstrap/forms.scss */
1038
+ .input-small,
1039
+ input.small,
1040
+ textarea.small,
1041
+ select.small {
1042
+ width: 90px;
1043
+ }
1044
+
1045
+ /* line 228, ../../../sass/bootstrap/forms.scss */
1046
+ .input-medium,
1047
+ input.medium,
1048
+ textarea.medium,
1049
+ select.medium {
1050
+ width: 150px;
1051
+ }
1052
+
1053
+ /* line 234, ../../../sass/bootstrap/forms.scss */
1054
+ .input-large,
1055
+ input.large,
1056
+ textarea.large,
1057
+ select.large {
1058
+ width: 210px;
1059
+ }
1060
+
1061
+ /* line 240, ../../../sass/bootstrap/forms.scss */
1062
+ .input-xlarge,
1063
+ input.xlarge,
1064
+ textarea.xlarge,
1065
+ select.xlarge {
1066
+ width: 270px;
1067
+ }
1068
+
1069
+ /* line 246, ../../../sass/bootstrap/forms.scss */
1070
+ .input-xxlarge,
1071
+ input.xxlarge,
1072
+ textarea.xxlarge,
1073
+ select.xxlarge {
1074
+ width: 530px;
1075
+ }
1076
+
1077
+ /* line 249, ../../../sass/bootstrap/forms.scss */
1078
+ textarea.xxlarge {
1079
+ overflow-y: auto;
1080
+ }
1081
+
1082
+ /* line 265, ../../../sass/bootstrap/forms.scss */
1083
+ input.span1,
1084
+ textarea.span1 {
1085
+ display: inline-block;
1086
+ float: none;
1087
+ width: 30px;
1088
+ margin-left: 0;
1089
+ }
1090
+ /* line 266, ../../../sass/bootstrap/forms.scss */
1091
+ input.span2,
1092
+ textarea.span2 {
1093
+ display: inline-block;
1094
+ float: none;
1095
+ width: 90px;
1096
+ margin-left: 0;
1097
+ }
1098
+ /* line 267, ../../../sass/bootstrap/forms.scss */
1099
+ input.span3,
1100
+ textarea.span3 {
1101
+ display: inline-block;
1102
+ float: none;
1103
+ width: 150px;
1104
+ margin-left: 0;
1105
+ }
1106
+ /* line 268, ../../../sass/bootstrap/forms.scss */
1107
+ input.span4,
1108
+ textarea.span4 {
1109
+ display: inline-block;
1110
+ float: none;
1111
+ width: 210px;
1112
+ margin-left: 0;
1113
+ }
1114
+ /* line 269, ../../../sass/bootstrap/forms.scss */
1115
+ input.span5,
1116
+ textarea.span5 {
1117
+ display: inline-block;
1118
+ float: none;
1119
+ width: 270px;
1120
+ margin-left: 0;
1121
+ }
1122
+ /* line 270, ../../../sass/bootstrap/forms.scss */
1123
+ input.span6,
1124
+ textarea.span6 {
1125
+ display: inline-block;
1126
+ float: none;
1127
+ width: 330px;
1128
+ margin-left: 0;
1129
+ }
1130
+ /* line 271, ../../../sass/bootstrap/forms.scss */
1131
+ input.span7,
1132
+ textarea.span7 {
1133
+ display: inline-block;
1134
+ float: none;
1135
+ width: 390px;
1136
+ margin-left: 0;
1137
+ }
1138
+ /* line 272, ../../../sass/bootstrap/forms.scss */
1139
+ input.span8,
1140
+ textarea.span8 {
1141
+ display: inline-block;
1142
+ float: none;
1143
+ width: 450px;
1144
+ margin-left: 0;
1145
+ }
1146
+ /* line 273, ../../../sass/bootstrap/forms.scss */
1147
+ input.span9,
1148
+ textarea.span9 {
1149
+ display: inline-block;
1150
+ float: none;
1151
+ width: 510px;
1152
+ margin-left: 0;
1153
+ }
1154
+ /* line 274, ../../../sass/bootstrap/forms.scss */
1155
+ input.span10,
1156
+ textarea.span10 {
1157
+ display: inline-block;
1158
+ float: none;
1159
+ width: 570px;
1160
+ margin-left: 0;
1161
+ }
1162
+ /* line 275, ../../../sass/bootstrap/forms.scss */
1163
+ input.span11,
1164
+ textarea.span11 {
1165
+ display: inline-block;
1166
+ float: none;
1167
+ width: 630px;
1168
+ margin-left: 0;
1169
+ }
1170
+ /* line 276, ../../../sass/bootstrap/forms.scss */
1171
+ input.span12,
1172
+ textarea.span12 {
1173
+ display: inline-block;
1174
+ float: none;
1175
+ width: 690px;
1176
+ margin-left: 0;
1177
+ }
1178
+ /* line 277, ../../../sass/bootstrap/forms.scss */
1179
+ input.span13,
1180
+ textarea.span13 {
1181
+ display: inline-block;
1182
+ float: none;
1183
+ width: 750px;
1184
+ margin-left: 0;
1185
+ }
1186
+ /* line 278, ../../../sass/bootstrap/forms.scss */
1187
+ input.span14,
1188
+ textarea.span14 {
1189
+ display: inline-block;
1190
+ float: none;
1191
+ width: 810px;
1192
+ margin-left: 0;
1193
+ }
1194
+ /* line 279, ../../../sass/bootstrap/forms.scss */
1195
+ input.span15,
1196
+ textarea.span15 {
1197
+ display: inline-block;
1198
+ float: none;
1199
+ width: 870px;
1200
+ margin-left: 0;
1201
+ }
1202
+ /* line 280, ../../../sass/bootstrap/forms.scss */
1203
+ input.span16,
1204
+ textarea.span16 {
1205
+ display: inline-block;
1206
+ float: none;
1207
+ width: 930px;
1208
+ margin-left: 0;
1209
+ }
1210
+
1211
+ /* line 289, ../../../sass/bootstrap/forms.scss */
1212
+ input[disabled],
1213
+ select[disabled],
1214
+ textarea[disabled],
1215
+ input[readonly],
1216
+ select[readonly],
1217
+ textarea[readonly] {
1218
+ background-color: #f5f5f5;
1219
+ border-color: #ddd;
1220
+ cursor: not-allowed;
1221
+ }
1222
+
1223
+ /* line 296, ../../../sass/bootstrap/forms.scss */
1224
+ .actions {
1225
+ background: #f5f5f5;
1226
+ margin-top: 18px;
1227
+ margin-bottom: 18px;
1228
+ padding: 17px 20px 18px 150px;
1229
+ border-top: 1px solid #ddd;
1230
+ -webkit-border-radius: 0 0 3px 3px;
1231
+ -moz-border-radius: 0 0 3px 3px;
1232
+ border-radius: 0 0 3px 3px;
1233
+ }
1234
+ /* line 303, ../../../sass/bootstrap/forms.scss */
1235
+ .actions .secondary-action {
1236
+ float: right;
1237
+ }
1238
+ /* line 305, ../../../sass/bootstrap/forms.scss */
1239
+ .actions .secondary-action a {
1240
+ line-height: 30px;
1241
+ }
1242
+ /* line 307, ../../../sass/bootstrap/forms.scss */
1243
+ .actions .secondary-action a:hover {
1244
+ text-decoration: underline;
1245
+ }
1246
+
1247
+ /* line 316, ../../../sass/bootstrap/forms.scss */
1248
+ .help-inline,
1249
+ .help-block {
1250
+ font-size: 13px;
1251
+ line-height: 18px;
1252
+ color: #bfbfbf;
1253
+ }
1254
+
1255
+ /* line 321, ../../../sass/bootstrap/forms.scss */
1256
+ .help-inline {
1257
+ padding-left: 5px;
1258
+ *position: relative;
1259
+ /* IE6-7 */
1260
+ *top: -5px;
1261
+ /* IE6-7 */
1262
+ }
1263
+
1264
+ /* line 328, ../../../sass/bootstrap/forms.scss */
1265
+ .help-block {
1266
+ display: block;
1267
+ max-width: 600px;
1268
+ }
1269
+
1270
+ /* line 334, ../../../sass/bootstrap/forms.scss */
1271
+ .inline-inputs {
1272
+ color: gray;
1273
+ }
1274
+ /* line 336, ../../../sass/bootstrap/forms.scss */
1275
+ .inline-inputs span {
1276
+ padding: 0 2px 0 1px;
1277
+ }
1278
+
1279
+ /* line 344, ../../../sass/bootstrap/forms.scss */
1280
+ .input-prepend input,
1281
+ .input-append input {
1282
+ -webkit-border-radius: 0 3px 3px 0;
1283
+ -moz-border-radius: 0 3px 3px 0;
1284
+ border-radius: 0 3px 3px 0;
1285
+ }
1286
+ /* line 347, ../../../sass/bootstrap/forms.scss */
1287
+ .input-prepend .add-on,
1288
+ .input-append .add-on {
1289
+ position: relative;
1290
+ background: #f5f5f5;
1291
+ border: 1px solid #ccc;
1292
+ z-index: 2;
1293
+ float: left;
1294
+ display: block;
1295
+ width: auto;
1296
+ min-width: 16px;
1297
+ height: 18px;
1298
+ padding: 4px 4px 4px 5px;
1299
+ margin-right: -1px;
1300
+ font-weight: normal;
1301
+ line-height: 18px;
1302
+ color: #bfbfbf;
1303
+ text-align: center;
1304
+ text-shadow: 0 1px 0 white;
1305
+ -webkit-border-radius: 3px 0 0 3px;
1306
+ -moz-border-radius: 3px 0 0 3px;
1307
+ border-radius: 3px 0 0 3px;
1308
+ }
1309
+ /* line 366, ../../../sass/bootstrap/forms.scss */
1310
+ .input-prepend .active,
1311
+ .input-append .active {
1312
+ background: #a9dba9;
1313
+ border-color: #46a546;
1314
+ }
1315
+
1316
+ /* line 372, ../../../sass/bootstrap/forms.scss */
1317
+ .input-prepend .add-on {
1318
+ *margin-top: 1px;
1319
+ /* IE6-7 */
1320
+ }
1321
+
1322
+ /* line 377, ../../../sass/bootstrap/forms.scss */
1323
+ .input-append input {
1324
+ float: left;
1325
+ -webkit-border-radius: 3px 0 0 3px;
1326
+ -moz-border-radius: 3px 0 0 3px;
1327
+ border-radius: 3px 0 0 3px;
1328
+ }
1329
+ /* line 381, ../../../sass/bootstrap/forms.scss */
1330
+ .input-append .add-on {
1331
+ -webkit-border-radius: 0 3px 3px 0;
1332
+ -moz-border-radius: 0 3px 3px 0;
1333
+ border-radius: 0 3px 3px 0;
1334
+ margin-right: 0;
1335
+ margin-left: -1px;
1336
+ }
1337
+
1338
+ /* line 389, ../../../sass/bootstrap/forms.scss */
1339
+ .inputs-list {
1340
+ margin: 0 0 5px;
1341
+ width: 100%;
1342
+ }
1343
+ /* line 392, ../../../sass/bootstrap/forms.scss */
1344
+ .inputs-list li {
1345
+ display: block;
1346
+ padding: 0;
1347
+ width: 100%;
1348
+ }
1349
+ /* line 397, ../../../sass/bootstrap/forms.scss */
1350
+ .inputs-list label {
1351
+ display: block;
1352
+ float: none;
1353
+ width: auto;
1354
+ padding: 0;
1355
+ margin-left: 20px;
1356
+ line-height: 18px;
1357
+ text-align: left;
1358
+ white-space: normal;
1359
+ }
1360
+ /* line 406, ../../../sass/bootstrap/forms.scss */
1361
+ .inputs-list label strong {
1362
+ color: gray;
1363
+ }
1364
+ /* line 409, ../../../sass/bootstrap/forms.scss */
1365
+ .inputs-list label small {
1366
+ font-size: 11px;
1367
+ font-weight: normal;
1368
+ }
1369
+ /* line 414, ../../../sass/bootstrap/forms.scss */
1370
+ .inputs-list .inputs-list {
1371
+ margin-left: 25px;
1372
+ margin-bottom: 10px;
1373
+ padding-top: 0;
1374
+ }
1375
+ /* line 419, ../../../sass/bootstrap/forms.scss */
1376
+ .inputs-list:first-child {
1377
+ padding-top: 5px;
1378
+ }
1379
+ /* line 422, ../../../sass/bootstrap/forms.scss */
1380
+ .inputs-list li + li {
1381
+ padding-top: 2px;
1382
+ }
1383
+ /* line 426, ../../../sass/bootstrap/forms.scss */
1384
+ .inputs-list input[type=radio],
1385
+ .inputs-list input[type=checkbox] {
1386
+ margin-bottom: 0;
1387
+ margin-left: -20px;
1388
+ float: left;
1389
+ }
1390
+
1391
+ /* line 434, ../../../sass/bootstrap/forms.scss */
1392
+ .form-stacked {
1393
+ padding-left: 20px;
1394
+ }
1395
+ /* line 436, ../../../sass/bootstrap/forms.scss */
1396
+ .form-stacked fieldset {
1397
+ padding-top: 9px;
1398
+ }
1399
+ /* line 439, ../../../sass/bootstrap/forms.scss */
1400
+ .form-stacked legend {
1401
+ margin-left: 0;
1402
+ }
1403
+ /* line 442, ../../../sass/bootstrap/forms.scss */
1404
+ .form-stacked label {
1405
+ display: block;
1406
+ float: none;
1407
+ width: auto;
1408
+ font-weight: bold;
1409
+ text-align: left;
1410
+ line-height: 20px;
1411
+ padding-top: 0;
1412
+ }
1413
+ /* line 451, ../../../sass/bootstrap/forms.scss */
1414
+ .form-stacked .formrow {
1415
+ margin-bottom: 9px;
1416
+ }
1417
+ /* line 453, ../../../sass/bootstrap/forms.scss */
1418
+ .form-stacked .formrow div.input {
1419
+ margin-left: 0;
1420
+ }
1421
+ /* line 457, ../../../sass/bootstrap/forms.scss */
1422
+ .form-stacked .inputs-list {
1423
+ margin-bottom: 0;
1424
+ }
1425
+ /* line 459, ../../../sass/bootstrap/forms.scss */
1426
+ .form-stacked .inputs-list li {
1427
+ padding-top: 0;
1428
+ }
1429
+ /* line 461, ../../../sass/bootstrap/forms.scss */
1430
+ .form-stacked .inputs-list li label {
1431
+ font-weight: normal;
1432
+ padding-top: 0;
1433
+ }
1434
+ /* line 467, ../../../sass/bootstrap/forms.scss */
1435
+ .form-stacked div.formrow.error {
1436
+ padding-top: 10px;
1437
+ padding-bottom: 10px;
1438
+ padding-left: 10px;
1439
+ margin-top: 0;
1440
+ margin-left: -10px;
1441
+ }
1442
+ /* line 474, ../../../sass/bootstrap/forms.scss */
1443
+ .form-stacked .actions {
1444
+ margin-left: -20px;
1445
+ padding-left: 20px;
1446
+ }
1447
+
1448
+ /*
1449
+ * Tables.scss
1450
+ * Tables for, you guessed it, tabular data
1451
+ * ---------------------------------------- */
1452
+ /* line 10, ../../../sass/bootstrap/tables.scss */
1453
+ table {
1454
+ width: 100%;
1455
+ margin-bottom: 18px;
1456
+ padding: 0;
1457
+ font-size: 13px;
1458
+ border-collapse: collapse;
1459
+ }
1460
+ /* line 17, ../../../sass/bootstrap/tables.scss */
1461
+ table th,
1462
+ table td {
1463
+ padding: 10px 10px 9px;
1464
+ line-height: 18px;
1465
+ text-align: left;
1466
+ }
1467
+ /* line 22, ../../../sass/bootstrap/tables.scss */
1468
+ table th {
1469
+ padding-top: 9px;
1470
+ font-weight: bold;
1471
+ vertical-align: middle;
1472
+ }
1473
+ /* line 27, ../../../sass/bootstrap/tables.scss */
1474
+ table td {
1475
+ vertical-align: top;
1476
+ border-top: 1px solid #ddd;
1477
+ }
1478
+ /* line 32, ../../../sass/bootstrap/tables.scss */
1479
+ table tbody th {
1480
+ border-top: 1px solid #ddd;
1481
+ vertical-align: top;
1482
+ }
1483
+
1484
+ /* line 42, ../../../sass/bootstrap/tables.scss */
1485
+ .condensed-table th,
1486
+ .condensed-table td {
1487
+ padding: 5px 5px 4px;
1488
+ }
1489
+
1490
+ /* line 52, ../../../sass/bootstrap/tables.scss */
1491
+ .bordered-table {
1492
+ border: 1px solid #ddd;
1493
+ border-collapse: separate;
1494
+ *border-collapse: collapse;
1495
+ /* IE7, collapse table to remove spacing */
1496
+ -webkit-border-radius: 4px;
1497
+ -moz-border-radius: 4px;
1498
+ border-radius: 4px;
1499
+ }
1500
+ /* line 59, ../../../sass/bootstrap/tables.scss */
1501
+ .bordered-table th + th,
1502
+ .bordered-table td + td,
1503
+ .bordered-table th + td {
1504
+ border-left: 1px solid #ddd;
1505
+ }
1506
+ /* line 63, ../../../sass/bootstrap/tables.scss */
1507
+ .bordered-table thead tr:first-child th:first-child,
1508
+ .bordered-table tbody tr:first-child td:first-child {
1509
+ -webkit-border-radius: 4px 0 0 0;
1510
+ -moz-border-radius: 4px 0 0 0;
1511
+ border-radius: 4px 0 0 0;
1512
+ }
1513
+ /* line 67, ../../../sass/bootstrap/tables.scss */
1514
+ .bordered-table thead tr:first-child th:last-child,
1515
+ .bordered-table tbody tr:first-child td:last-child {
1516
+ -webkit-border-radius: 0 4px 0 0;
1517
+ -moz-border-radius: 0 4px 0 0;
1518
+ border-radius: 0 4px 0 0;
1519
+ }
1520
+ /* line 70, ../../../sass/bootstrap/tables.scss */
1521
+ .bordered-table tbody tr:last-child td:first-child {
1522
+ -webkit-border-radius: 0 0 0 4px;
1523
+ -moz-border-radius: 0 0 0 4px;
1524
+ border-radius: 0 0 0 4px;
1525
+ }
1526
+ /* line 73, ../../../sass/bootstrap/tables.scss */
1527
+ .bordered-table tbody tr:last-child td:last-child {
1528
+ -webkit-border-radius: 0 0 4px 0;
1529
+ -moz-border-radius: 0 0 4px 0;
1530
+ border-radius: 0 0 4px 0;
1531
+ }
1532
+
1533
+ /* line 88, ../../../sass/bootstrap/tables.scss */
1534
+ table .span1 {
1535
+ width: 20px;
1536
+ }
1537
+ /* line 89, ../../../sass/bootstrap/tables.scss */
1538
+ table .span2 {
1539
+ width: 60px;
1540
+ }
1541
+ /* line 90, ../../../sass/bootstrap/tables.scss */
1542
+ table .span3 {
1543
+ width: 100px;
1544
+ }
1545
+ /* line 91, ../../../sass/bootstrap/tables.scss */
1546
+ table .span4 {
1547
+ width: 140px;
1548
+ }
1549
+ /* line 92, ../../../sass/bootstrap/tables.scss */
1550
+ table .span5 {
1551
+ width: 180px;
1552
+ }
1553
+ /* line 93, ../../../sass/bootstrap/tables.scss */
1554
+ table .span6 {
1555
+ width: 220px;
1556
+ }
1557
+ /* line 94, ../../../sass/bootstrap/tables.scss */
1558
+ table .span7 {
1559
+ width: 260px;
1560
+ }
1561
+ /* line 95, ../../../sass/bootstrap/tables.scss */
1562
+ table .span8 {
1563
+ width: 300px;
1564
+ }
1565
+ /* line 96, ../../../sass/bootstrap/tables.scss */
1566
+ table .span9 {
1567
+ width: 340px;
1568
+ }
1569
+ /* line 97, ../../../sass/bootstrap/tables.scss */
1570
+ table .span10 {
1571
+ width: 380px;
1572
+ }
1573
+ /* line 98, ../../../sass/bootstrap/tables.scss */
1574
+ table .span11 {
1575
+ width: 420px;
1576
+ }
1577
+ /* line 99, ../../../sass/bootstrap/tables.scss */
1578
+ table .span12 {
1579
+ width: 460px;
1580
+ }
1581
+ /* line 100, ../../../sass/bootstrap/tables.scss */
1582
+ table .span13 {
1583
+ width: 500px;
1584
+ }
1585
+ /* line 101, ../../../sass/bootstrap/tables.scss */
1586
+ table .span14 {
1587
+ width: 540px;
1588
+ }
1589
+ /* line 102, ../../../sass/bootstrap/tables.scss */
1590
+ table .span15 {
1591
+ width: 580px;
1592
+ }
1593
+ /* line 103, ../../../sass/bootstrap/tables.scss */
1594
+ table .span16 {
1595
+ width: 620px;
1596
+ }
1597
+
1598
+ /* line 115, ../../../sass/bootstrap/tables.scss */
1599
+ .zebra-striped tbody tr:nth-child(odd) td,
1600
+ .zebra-striped tbody tr:nth-child(odd) th,
1601
+ .zebra-striped tbody tr.odd td, .zebra-striped tbody tr.odd th {
1602
+ background-color: #f9f9f9;
1603
+ }
1604
+ /* line 119, ../../../sass/bootstrap/tables.scss */
1605
+ .zebra-striped tbody tr:hover td,
1606
+ .zebra-striped tbody tr:hover th {
1607
+ background-color: #f5f5f5;
1608
+ }
1609
+
1610
+ /* line 128, ../../../sass/bootstrap/tables.scss */
1611
+ table .sortable:after {
1612
+ content: "";
1613
+ float: right;
1614
+ margin-top: 7px;
1615
+ border-width: 0 4px 4px;
1616
+ border-style: solid;
1617
+ border-color: #000 transparent;
1618
+ visibility: hidden;
1619
+ }
1620
+ /* line 140, ../../../sass/bootstrap/tables.scss */
1621
+ table .sorted-asc,
1622
+ table .sorted-desc {
1623
+ background-color: rgba(141, 192, 219, 0.25);
1624
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
1625
+ }
1626
+ /* line 146, ../../../sass/bootstrap/tables.scss */
1627
+ table .sortable:hover:after {
1628
+ visibility: visible;
1629
+ }
1630
+ /* line 153, ../../../sass/bootstrap/tables.scss */
1631
+ table .sorted-desc:after,
1632
+ table .sorted-desc:hover:after {
1633
+ visibility: visible;
1634
+ filter: alpha(opacity=60);
1635
+ -khtml-opacity: 0.6;
1636
+ -moz-opacity: 0.6;
1637
+ opacity: 0.6;
1638
+ }
1639
+ /* line 160, ../../../sass/bootstrap/tables.scss */
1640
+ table .sorted-asc:after {
1641
+ border-bottom: none;
1642
+ border-left: 4px solid transparent;
1643
+ border-right: 4px solid transparent;
1644
+ border-top: 4px solid #000;
1645
+ visibility: visible;
1646
+ -webkit-box-shadow: none;
1647
+ -moz-box-shadow: none;
1648
+ box-shadow: none;
1649
+ filter: alpha(opacity=60);
1650
+ -khtml-opacity: 0.6;
1651
+ -moz-opacity: 0.6;
1652
+ opacity: 0.6;
1653
+ }
1654
+ /* line 171, ../../../sass/bootstrap/tables.scss */
1655
+ table .blue {
1656
+ color: #049cdb;
1657
+ border-bottom-color: #049cdb;
1658
+ }
1659
+ /* line 176, ../../../sass/bootstrap/tables.scss */
1660
+ table .sorted-asc.blue,
1661
+ table .sorted-desc.blue {
1662
+ background-color: #ade6fe;
1663
+ }
1664
+ /* line 180, ../../../sass/bootstrap/tables.scss */
1665
+ table .green {
1666
+ color: #46a546;
1667
+ border-bottom-color: #46a546;
1668
+ }
1669
+ /* line 185, ../../../sass/bootstrap/tables.scss */
1670
+ table .sorted-asc.green,
1671
+ table .sorted-desc.green {
1672
+ background-color: #cdeacd;
1673
+ }
1674
+ /* line 189, ../../../sass/bootstrap/tables.scss */
1675
+ table .red {
1676
+ color: #9d261d;
1677
+ border-bottom-color: #9d261d;
1678
+ }
1679
+ /* line 194, ../../../sass/bootstrap/tables.scss */
1680
+ table .sorted-asc.red,
1681
+ table .sorted-desc.red {
1682
+ background-color: #f4c8c5;
1683
+ }
1684
+ /* line 198, ../../../sass/bootstrap/tables.scss */
1685
+ table .yellow {
1686
+ color: #ffc40d;
1687
+ border-bottom-color: #ffc40d;
1688
+ }
1689
+ /* line 203, ../../../sass/bootstrap/tables.scss */
1690
+ table .sorted-asc.yellow,
1691
+ table .sorted-desc.yellow {
1692
+ background-color: #fff6d9;
1693
+ }
1694
+ /* line 207, ../../../sass/bootstrap/tables.scss */
1695
+ table .orange {
1696
+ color: #f89406;
1697
+ border-bottom-color: #f89406;
1698
+ }
1699
+ /* line 212, ../../../sass/bootstrap/tables.scss */
1700
+ table .sorted-asc.orange,
1701
+ table .sorted-desc.orange {
1702
+ background-color: #fee9cc;
1703
+ }
1704
+ /* line 216, ../../../sass/bootstrap/tables.scss */
1705
+ table .purple {
1706
+ color: #7a43b6;
1707
+ border-bottom-color: #7a43b6;
1708
+ }
1709
+ /* line 221, ../../../sass/bootstrap/tables.scss */
1710
+ table .sorted-asc.purple,
1711
+ table .sorted-desc.purple {
1712
+ background-color: #e2d5f0;
1713
+ }
1714
+
1715
+ /* Patterns.scss
1716
+ * Repeatable UI elements outside the base styles provided from the scaffolding
1717
+ * ---------------------------------------------------------------------------- */
1718
+ /* line 10, ../../../sass/bootstrap/patterns.scss */
1719
+ .topbar {
1720
+ height: 40px;
1721
+ position: fixed;
1722
+ top: 0;
1723
+ left: 0;
1724
+ right: 0;
1725
+ z-index: 10000;
1726
+ overflow: visible;
1727
+ }
1728
+ /* line 20, ../../../sass/bootstrap/patterns.scss */
1729
+ .topbar a {
1730
+ color: #bfbfbf;
1731
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
1732
+ }
1733
+ /* line 29, ../../../sass/bootstrap/patterns.scss */
1734
+ .topbar h3 a:hover,
1735
+ .topbar .brand:hover,
1736
+ .topbar ul .active > a {
1737
+ background-color: #333;
1738
+ background-color: rgba(255, 255, 255, 0.05);
1739
+ color: white;
1740
+ text-decoration: none;
1741
+ }
1742
+ /* line 38, ../../../sass/bootstrap/patterns.scss */
1743
+ .topbar h3 {
1744
+ position: relative;
1745
+ }
1746
+ /* line 42, ../../../sass/bootstrap/patterns.scss */
1747
+ .topbar h3 a,
1748
+ .topbar .brand {
1749
+ float: left;
1750
+ display: block;
1751
+ padding: 8px 20px 12px;
1752
+ margin-left: -20px;
1753
+ color: white;
1754
+ font-size: 20px;
1755
+ font-weight: 200;
1756
+ line-height: 1;
1757
+ }
1758
+ /* line 54, ../../../sass/bootstrap/patterns.scss */
1759
+ .topbar p {
1760
+ margin: 0;
1761
+ line-height: 40px;
1762
+ }
1763
+ /* line 57, ../../../sass/bootstrap/patterns.scss */
1764
+ .topbar p a:hover {
1765
+ background-color: transparent;
1766
+ color: white;
1767
+ }
1768
+ /* line 64, ../../../sass/bootstrap/patterns.scss */
1769
+ .topbar form {
1770
+ float: left;
1771
+ margin: 5px 0 0 0;
1772
+ position: relative;
1773
+ filter: alpha(opacity=100);
1774
+ -khtml-opacity: 1;
1775
+ -moz-opacity: 1;
1776
+ opacity: 1;
1777
+ }
1778
+ /* line 71, ../../../sass/bootstrap/patterns.scss */
1779
+ .topbar form.pull-right {
1780
+ float: right;
1781
+ }
1782
+ /* line 74, ../../../sass/bootstrap/patterns.scss */
1783
+ .topbar input {
1784
+ background-color: #444;
1785
+ background-color: rgba(255, 255, 255, 0.3);
1786
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1787
+ font-size: normal;
1788
+ font-weight: 13px;
1789
+ line-height: 1;
1790
+ padding: 4px 9px;
1791
+ color: white;
1792
+ color: rgba(255, 255, 255, 0.75);
1793
+ border: 1px solid #111;
1794
+ -webkit-border-radius: 4px;
1795
+ -moz-border-radius: 4px;
1796
+ border-radius: 4px;
1797
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1798
+ -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1799
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.25);
1800
+ -webkit-transition: none;
1801
+ -moz-transition: none;
1802
+ -ms-transition: none;
1803
+ -o-transition: none;
1804
+ transition: none;
1805
+ }
1806
+ /* line 88, ../../../sass/bootstrap/patterns.scss */
1807
+ .topbar input:-moz-placeholder {
1808
+ color: #e6e6e6;
1809
+ }
1810
+ /* line 91, ../../../sass/bootstrap/patterns.scss */
1811
+ .topbar input::-webkit-input-placeholder {
1812
+ color: #e6e6e6;
1813
+ }
1814
+ /* line 95, ../../../sass/bootstrap/patterns.scss */
1815
+ .topbar input:hover {
1816
+ background-color: #bfbfbf;
1817
+ background-color: rgba(255, 255, 255, 0.5);
1818
+ color: white;
1819
+ }
1820
+ /* line 102, ../../../sass/bootstrap/patterns.scss */
1821
+ .topbar input:focus, .topbar input.focused {
1822
+ outline: 0;
1823
+ background-color: white;
1824
+ color: #404040;
1825
+ text-shadow: 0 1px 0 white;
1826
+ border: 0;
1827
+ padding: 5px 10px;
1828
+ -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1829
+ -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1830
+ box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
1831
+ }
1832
+
1833
+ /* line 117, ../../../sass/bootstrap/patterns.scss */
1834
+ .topbar-inner,
1835
+ .topbar .fill {
1836
+ background-color: #222;
1837
+ background-color: #222222;
1838
+ background-repeat: repeat-x;
1839
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222));
1840
+ background-image: -moz-linear-gradient(top, #333333, #222222);
1841
+ background-image: -ms-linear-gradient(top, #333333, #222222);
1842
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222));
1843
+ background-image: -webkit-linear-gradient(top, #333333, #222222);
1844
+ background-image: -o-linear-gradient(top, #333333, #222222);
1845
+ background-image: linear-gradient(top, #333333, #222222);
1846
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0);
1847
+ -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1848
+ -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1849
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
1850
+ }
1851
+
1852
+ /* line 132, ../../../sass/bootstrap/patterns.scss */
1853
+ .topbar div > ul,
1854
+ .nav {
1855
+ display: block;
1856
+ float: left;
1857
+ margin: 0 10px 0 0;
1858
+ position: relative;
1859
+ left: 0;
1860
+ }
1861
+ /* line 138, ../../../sass/bootstrap/patterns.scss */
1862
+ .topbar div > ul > li,
1863
+ .nav > li {
1864
+ display: block;
1865
+ float: left;
1866
+ }
1867
+ /* line 142, ../../../sass/bootstrap/patterns.scss */
1868
+ .topbar div > ul a,
1869
+ .nav a {
1870
+ display: block;
1871
+ float: none;
1872
+ padding: 10px 10px 11px;
1873
+ line-height: 19px;
1874
+ text-decoration: none;
1875
+ }
1876
+ /* line 148, ../../../sass/bootstrap/patterns.scss */
1877
+ .topbar div > ul a:hover,
1878
+ .nav a:hover {
1879
+ color: white;
1880
+ text-decoration: none;
1881
+ }
1882
+ /* line 153, ../../../sass/bootstrap/patterns.scss */
1883
+ .topbar div > ul .active > a,
1884
+ .nav .active > a {
1885
+ background-color: #222;
1886
+ background-color: rgba(0, 0, 0, 0.5);
1887
+ }
1888
+ /* line 159, ../../../sass/bootstrap/patterns.scss */
1889
+ .topbar div > ul.secondary-nav,
1890
+ .nav.secondary-nav {
1891
+ float: right;
1892
+ margin-left: 10px;
1893
+ margin-right: 0;
1894
+ }
1895
+ /* line 165, ../../../sass/bootstrap/patterns.scss */
1896
+ .topbar div > ul.secondary-nav .menu-dropdown,
1897
+ .topbar div > ul.secondary-nav .dropdown-menu,
1898
+ .nav.secondary-nav .menu-dropdown,
1899
+ .nav.secondary-nav .dropdown-menu {
1900
+ right: 0;
1901
+ border: 0;
1902
+ }
1903
+ /* line 175, ../../../sass/bootstrap/patterns.scss */
1904
+ .topbar div > ul a.menu:hover,
1905
+ .topbar div > ul li.open .menu,
1906
+ .topbar div > ul .dropdown-toggle:hover,
1907
+ .topbar div > ul .dropdown.open .dropdown-toggle,
1908
+ .nav a.menu:hover,
1909
+ .nav li.open .menu,
1910
+ .nav .dropdown-toggle:hover,
1911
+ .nav .dropdown.open .dropdown-toggle {
1912
+ background: #444;
1913
+ background: rgba(255, 255, 255, 0.05);
1914
+ }
1915
+ /* line 181, ../../../sass/bootstrap/patterns.scss */
1916
+ .topbar div > ul .menu-dropdown,
1917
+ .topbar div > ul .dropdown-menu,
1918
+ .nav .menu-dropdown,
1919
+ .nav .dropdown-menu {
1920
+ background-color: #333;
1921
+ }
1922
+ /* line 185, ../../../sass/bootstrap/patterns.scss */
1923
+ .topbar div > ul .menu-dropdown a.menu,
1924
+ .topbar div > ul .menu-dropdown .dropdown-toggle,
1925
+ .topbar div > ul .dropdown-menu a.menu,
1926
+ .topbar div > ul .dropdown-menu .dropdown-toggle,
1927
+ .nav .menu-dropdown a.menu,
1928
+ .nav .menu-dropdown .dropdown-toggle,
1929
+ .nav .dropdown-menu a.menu,
1930
+ .nav .dropdown-menu .dropdown-toggle {
1931
+ color: white;
1932
+ }
1933
+ /* line 187, ../../../sass/bootstrap/patterns.scss */
1934
+ .topbar div > ul .menu-dropdown a.menu.open,
1935
+ .topbar div > ul .menu-dropdown .dropdown-toggle.open,
1936
+ .topbar div > ul .dropdown-menu a.menu.open,
1937
+ .topbar div > ul .dropdown-menu .dropdown-toggle.open,
1938
+ .nav .menu-dropdown a.menu.open,
1939
+ .nav .menu-dropdown .dropdown-toggle.open,
1940
+ .nav .dropdown-menu a.menu.open,
1941
+ .nav .dropdown-menu .dropdown-toggle.open {
1942
+ background: #444;
1943
+ background: rgba(255, 255, 255, 0.05);
1944
+ }
1945
+ /* line 192, ../../../sass/bootstrap/patterns.scss */
1946
+ .topbar div > ul .menu-dropdown li a,
1947
+ .topbar div > ul .dropdown-menu li a,
1948
+ .nav .menu-dropdown li a,
1949
+ .nav .dropdown-menu li a {
1950
+ color: #999;
1951
+ text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
1952
+ }
1953
+ /* line 195, ../../../sass/bootstrap/patterns.scss */
1954
+ .topbar div > ul .menu-dropdown li a:hover,
1955
+ .topbar div > ul .dropdown-menu li a:hover,
1956
+ .nav .menu-dropdown li a:hover,
1957
+ .nav .dropdown-menu li a:hover {
1958
+ background-color: #191919;
1959
+ background-repeat: repeat-x;
1960
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919));
1961
+ background-image: -moz-linear-gradient(top, #292929, #191919);
1962
+ background-image: -ms-linear-gradient(top, #292929, #191919);
1963
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919));
1964
+ background-image: -webkit-linear-gradient(top, #292929, #191919);
1965
+ background-image: -o-linear-gradient(top, #292929, #191919);
1966
+ background-image: linear-gradient(top, #292929, #191919);
1967
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0);
1968
+ color: white;
1969
+ }
1970
+ /* line 200, ../../../sass/bootstrap/patterns.scss */
1971
+ .topbar div > ul .menu-dropdown .active a,
1972
+ .topbar div > ul .dropdown-menu .active a,
1973
+ .nav .menu-dropdown .active a,
1974
+ .nav .dropdown-menu .active a {
1975
+ color: white;
1976
+ }
1977
+ /* line 203, ../../../sass/bootstrap/patterns.scss */
1978
+ .topbar div > ul .menu-dropdown .divider,
1979
+ .topbar div > ul .dropdown-menu .divider,
1980
+ .nav .menu-dropdown .divider,
1981
+ .nav .dropdown-menu .divider {
1982
+ background-color: #222;
1983
+ border-color: #444;
1984
+ }
1985
+
1986
+ /* line 212, ../../../sass/bootstrap/patterns.scss */
1987
+ .topbar ul .menu-dropdown li a,
1988
+ .topbar ul .dropdown-menu li a {
1989
+ padding: 4px 15px;
1990
+ }
1991
+
1992
+ /* line 220, ../../../sass/bootstrap/patterns.scss */
1993
+ li.menu,
1994
+ .dropdown {
1995
+ position: relative;
1996
+ }
1997
+
1998
+ /* line 226, ../../../sass/bootstrap/patterns.scss */
1999
+ a.menu:after,
2000
+ .dropdown-toggle:after {
2001
+ width: 0;
2002
+ height: 0;
2003
+ display: inline-block;
2004
+ content: "↓";
2005
+ text-indent: -99999px;
2006
+ vertical-align: top;
2007
+ margin-top: 8px;
2008
+ margin-left: 4px;
2009
+ border-left: 4px solid transparent;
2010
+ border-right: 4px solid transparent;
2011
+ border-top: 4px solid white;
2012
+ filter: alpha(opacity=50);
2013
+ -khtml-opacity: 0.5;
2014
+ -moz-opacity: 0.5;
2015
+ opacity: 0.5;
2016
+ }
2017
+
2018
+ /* line 243, ../../../sass/bootstrap/patterns.scss */
2019
+ .menu-dropdown,
2020
+ .dropdown-menu {
2021
+ background-color: white;
2022
+ float: left;
2023
+ display: none;
2024
+ position: absolute;
2025
+ top: 40px;
2026
+ z-index: 900;
2027
+ min-width: 160px;
2028
+ max-width: 220px;
2029
+ _width: 160px;
2030
+ margin-left: 0;
2031
+ margin-right: 0;
2032
+ padding: 6px 0;
2033
+ zoom: 1;
2034
+ border-color: #999;
2035
+ border-color: rgba(0, 0, 0, 0.2);
2036
+ border-style: solid;
2037
+ border-width: 0 1px 1px;
2038
+ -webkit-border-radius: 0 0 6px 6px;
2039
+ -moz-border-radius: 0 0 6px 6px;
2040
+ border-radius: 0 0 6px 6px;
2041
+ -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
2042
+ -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
2043
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
2044
+ -webkit-background-clip: padding-box;
2045
+ -moz-background-clip: padding-box;
2046
+ background-clip: padding-box;
2047
+ }
2048
+ /* line 266, ../../../sass/bootstrap/patterns.scss */
2049
+ .menu-dropdown li,
2050
+ .dropdown-menu li {
2051
+ float: none;
2052
+ display: block;
2053
+ background-color: none;
2054
+ }
2055
+ /* line 272, ../../../sass/bootstrap/patterns.scss */
2056
+ .menu-dropdown .divider,
2057
+ .dropdown-menu .divider {
2058
+ height: 1px;
2059
+ margin: 5px 0;
2060
+ overflow: hidden;
2061
+ background-color: #eee;
2062
+ border-bottom: 1px solid white;
2063
+ }
2064
+
2065
+ /* line 284, ../../../sass/bootstrap/patterns.scss */
2066
+ .topbar .dropdown-menu a,
2067
+ .dropdown-menu a {
2068
+ display: block;
2069
+ padding: 4px 15px;
2070
+ clear: both;
2071
+ font-weight: normal;
2072
+ line-height: 18px;
2073
+ color: gray;
2074
+ text-shadow: 0 1px 0 white;
2075
+ }
2076
+ /* line 294, ../../../sass/bootstrap/patterns.scss */
2077
+ .topbar .dropdown-menu a:hover, .topbar .dropdown-menu a.hover,
2078
+ .dropdown-menu a:hover,
2079
+ .dropdown-menu a.hover {
2080
+ background-color: #dddddd;
2081
+ background-repeat: repeat-x;
2082
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd));
2083
+ background-image: -moz-linear-gradient(top, #eeeeee, #dddddd);
2084
+ background-image: -ms-linear-gradient(top, #eeeeee, #dddddd);
2085
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd));
2086
+ background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd);
2087
+ background-image: -o-linear-gradient(top, #eeeeee, #dddddd);
2088
+ background-image: linear-gradient(top, #eeeeee, #dddddd);
2089
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0);
2090
+ color: #404040;
2091
+ text-decoration: none;
2092
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
2093
+ -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
2094
+ box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025);
2095
+ }
2096
+
2097
+ /* line 310, ../../../sass/bootstrap/patterns.scss */
2098
+ .open .menu,
2099
+ .open .dropdown-toggle,
2100
+ .dropdown.open .menu,
2101
+ .dropdown.open .dropdown-toggle {
2102
+ color: white;
2103
+ background: #ccc;
2104
+ background: rgba(0, 0, 0, 0.3);
2105
+ }
2106
+ /* line 317, ../../../sass/bootstrap/patterns.scss */
2107
+ .open .menu-dropdown,
2108
+ .open .dropdown-menu,
2109
+ .dropdown.open .menu-dropdown,
2110
+ .dropdown.open .dropdown-menu {
2111
+ display: block;
2112
+ }
2113
+
2114
+ /* line 328, ../../../sass/bootstrap/patterns.scss */
2115
+ .tabs,
2116
+ .pills {
2117
+ margin: 0 0 18px;
2118
+ padding: 0;
2119
+ list-style: none;
2120
+ zoom: 1;
2121
+ }
2122
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
2123
+ .tabs:before, .tabs:after,
2124
+ .pills:before,
2125
+ .pills:after {
2126
+ display: table;
2127
+ content: "";
2128
+ zoom: 1;
2129
+ }
2130
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
2131
+ .tabs:after,
2132
+ .pills:after {
2133
+ clear: both;
2134
+ }
2135
+ /* line 333, ../../../sass/bootstrap/patterns.scss */
2136
+ .tabs > li,
2137
+ .pills > li {
2138
+ float: left;
2139
+ }
2140
+ /* line 335, ../../../sass/bootstrap/patterns.scss */
2141
+ .tabs > li > a,
2142
+ .pills > li > a {
2143
+ display: block;
2144
+ }
2145
+
2146
+ /* line 342, ../../../sass/bootstrap/patterns.scss */
2147
+ .tabs {
2148
+ border-color: #ddd;
2149
+ border-style: solid;
2150
+ border-width: 0 0 1px;
2151
+ }
2152
+ /* line 346, ../../../sass/bootstrap/patterns.scss */
2153
+ .tabs > li {
2154
+ position: relative;
2155
+ margin-bottom: -1px;
2156
+ }
2157
+ /* line 349, ../../../sass/bootstrap/patterns.scss */
2158
+ .tabs > li > a {
2159
+ padding: 0 15px;
2160
+ margin-right: 2px;
2161
+ line-height: 34px;
2162
+ border: 1px solid transparent;
2163
+ -webkit-border-radius: 4px 4px 0 0;
2164
+ -moz-border-radius: 4px 4px 0 0;
2165
+ border-radius: 4px 4px 0 0;
2166
+ }
2167
+ /* line 355, ../../../sass/bootstrap/patterns.scss */
2168
+ .tabs > li > a:hover {
2169
+ text-decoration: none;
2170
+ background-color: #eee;
2171
+ border-color: #eee #eee #ddd;
2172
+ }
2173
+ /* line 364, ../../../sass/bootstrap/patterns.scss */
2174
+ .tabs .active > a,
2175
+ .tabs .active > a:hover {
2176
+ color: gray;
2177
+ background-color: white;
2178
+ border: 1px solid #ddd;
2179
+ border-bottom-color: transparent;
2180
+ cursor: default;
2181
+ }
2182
+
2183
+ /* line 377, ../../../sass/bootstrap/patterns.scss */
2184
+ .tabs .menu-dropdown,
2185
+ .tabs .dropdown-menu {
2186
+ top: 35px;
2187
+ border-width: 1px;
2188
+ -webkit-border-radius: 0 6px 6px 6px;
2189
+ -moz-border-radius: 0 6px 6px 6px;
2190
+ border-radius: 0 6px 6px 6px;
2191
+ }
2192
+ /* line 384, ../../../sass/bootstrap/patterns.scss */
2193
+ .tabs a.menu:after,
2194
+ .tabs .dropdown-toggle:after {
2195
+ border-top-color: #999;
2196
+ margin-top: 15px;
2197
+ margin-left: 5px;
2198
+ }
2199
+ /* line 391, ../../../sass/bootstrap/patterns.scss */
2200
+ .tabs li.open.menu .menu,
2201
+ .tabs .open.dropdown .dropdown-toggle {
2202
+ border-color: #999;
2203
+ }
2204
+ /* line 396, ../../../sass/bootstrap/patterns.scss */
2205
+ .tabs li.open a.menu:after,
2206
+ .tabs .dropdown.open .dropdown-toggle:after {
2207
+ border-top-color: #555;
2208
+ }
2209
+
2210
+ /* line 403, ../../../sass/bootstrap/patterns.scss */
2211
+ .pills a {
2212
+ margin: 5px 3px 5px 0;
2213
+ padding: 0 15px;
2214
+ line-height: 30px;
2215
+ text-shadow: 0 1px 1px white;
2216
+ -webkit-border-radius: 15px;
2217
+ -moz-border-radius: 15px;
2218
+ border-radius: 15px;
2219
+ }
2220
+ /* line 409, ../../../sass/bootstrap/patterns.scss */
2221
+ .pills a:hover {
2222
+ color: white;
2223
+ text-decoration: none;
2224
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
2225
+ background-color: #00438a;
2226
+ }
2227
+ /* line 416, ../../../sass/bootstrap/patterns.scss */
2228
+ .pills .active a {
2229
+ color: white;
2230
+ text-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
2231
+ background-color: #0069d6;
2232
+ }
2233
+
2234
+ /* line 424, ../../../sass/bootstrap/patterns.scss */
2235
+ .pills-vertical > li {
2236
+ float: none;
2237
+ }
2238
+
2239
+ /* line 435, ../../../sass/bootstrap/patterns.scss */
2240
+ .tab-content > .tab-pane,
2241
+ .pill-content > .pill-pane,
2242
+ .tab-content > div,
2243
+ .pill-content > div {
2244
+ display: none;
2245
+ }
2246
+
2247
+ /* line 439, ../../../sass/bootstrap/patterns.scss */
2248
+ .tab-content > .active,
2249
+ .pill-content > .active {
2250
+ display: block;
2251
+ }
2252
+
2253
+ /* line 447, ../../../sass/bootstrap/patterns.scss */
2254
+ .breadcrumb {
2255
+ padding: 7px 14px;
2256
+ margin: 0 0 18px;
2257
+ background-color: #f5f5f5;
2258
+ background-repeat: repeat-x;
2259
+ background-image: -khtml-gradient(linear, left top, left bottom, from(white), to(#f5f5f5));
2260
+ background-image: -moz-linear-gradient(top, white, #f5f5f5);
2261
+ background-image: -ms-linear-gradient(top, white, #f5f5f5);
2262
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, white), color-stop(100%, #f5f5f5));
2263
+ background-image: -webkit-linear-gradient(top, white, #f5f5f5);
2264
+ background-image: -o-linear-gradient(top, white, #f5f5f5);
2265
+ background-image: linear-gradient(top, #ffffff, #f5f5f5);
2266
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#f5f5f5', GradientType=0);
2267
+ border: 1px solid #ddd;
2268
+ -webkit-border-radius: 3px;
2269
+ -moz-border-radius: 3px;
2270
+ border-radius: 3px;
2271
+ -webkit-box-shadow: inset 0 1px 0 white;
2272
+ -moz-box-shadow: inset 0 1px 0 white;
2273
+ box-shadow: inset 0 1px 0 white;
2274
+ }
2275
+ /* line 454, ../../../sass/bootstrap/patterns.scss */
2276
+ .breadcrumb li {
2277
+ display: inline;
2278
+ text-shadow: 0 1px 0 white;
2279
+ }
2280
+ /* line 458, ../../../sass/bootstrap/patterns.scss */
2281
+ .breadcrumb .divider {
2282
+ padding: 0 5px;
2283
+ color: #bfbfbf;
2284
+ }
2285
+ /* line 462, ../../../sass/bootstrap/patterns.scss */
2286
+ .breadcrumb .active a {
2287
+ color: #404040;
2288
+ }
2289
+
2290
+ /* line 471, ../../../sass/bootstrap/patterns.scss */
2291
+ .hero-unit {
2292
+ background-color: #f5f5f5;
2293
+ margin-top: 60px;
2294
+ margin-bottom: 30px;
2295
+ padding: 60px;
2296
+ -webkit-border-radius: 6px;
2297
+ -moz-border-radius: 6px;
2298
+ border-radius: 6px;
2299
+ }
2300
+ /* line 477, ../../../sass/bootstrap/patterns.scss */
2301
+ .hero-unit h1 {
2302
+ margin-bottom: 0;
2303
+ font-size: 60px;
2304
+ line-height: 1;
2305
+ letter-spacing: -1px;
2306
+ }
2307
+ /* line 483, ../../../sass/bootstrap/patterns.scss */
2308
+ .hero-unit p {
2309
+ font-size: 18px;
2310
+ font-weight: 200;
2311
+ line-height: 27px;
2312
+ }
2313
+
2314
+ /* line 489, ../../../sass/bootstrap/patterns.scss */
2315
+ footer {
2316
+ margin-top: 17px;
2317
+ padding-top: 17px;
2318
+ border-top: 1px solid #eee;
2319
+ }
2320
+
2321
+ /* line 498, ../../../sass/bootstrap/patterns.scss */
2322
+ .page-header {
2323
+ margin-bottom: 17px;
2324
+ border-bottom: 1px solid #ddd;
2325
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2326
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2327
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2328
+ }
2329
+ /* line 502, ../../../sass/bootstrap/patterns.scss */
2330
+ .page-header h1 {
2331
+ margin-bottom: 8px;
2332
+ }
2333
+
2334
+ /* line 522, ../../../sass/bootstrap/patterns.scss */
2335
+ .btn.danger, .btn.danger:hover, .btn.error, .btn.error:hover, .btn.success, .btn.success:hover, .btn.info, .btn.info:hover,
2336
+ .alert-message.danger,
2337
+ .alert-message.danger:hover,
2338
+ .alert-message.error,
2339
+ .alert-message.error:hover,
2340
+ .alert-message.success,
2341
+ .alert-message.success:hover,
2342
+ .alert-message.info,
2343
+ .alert-message.info:hover {
2344
+ color: white;
2345
+ }
2346
+ /* line 526, ../../../sass/bootstrap/patterns.scss */
2347
+ .btn .close,
2348
+ .alert-message .close {
2349
+ font-family: Arial, sans-serif;
2350
+ line-height: 18px;
2351
+ }
2352
+ /* line 532, ../../../sass/bootstrap/patterns.scss */
2353
+ .btn.danger, .btn.error,
2354
+ .alert-message.danger,
2355
+ .alert-message.error {
2356
+ background-color: #c43c35;
2357
+ background-repeat: repeat-x;
2358
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
2359
+ background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
2360
+ background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
2361
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
2362
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
2363
+ background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
2364
+ background-image: linear-gradient(top, #ee5f5b, #c43c35);
2365
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
2366
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2367
+ border-color: #c43c35 #c43c35 #882a25;
2368
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2369
+ }
2370
+ /* line 536, ../../../sass/bootstrap/patterns.scss */
2371
+ .btn.success,
2372
+ .alert-message.success {
2373
+ background-color: #57a957;
2374
+ background-repeat: repeat-x;
2375
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
2376
+ background-image: -moz-linear-gradient(top, #62c462, #57a957);
2377
+ background-image: -ms-linear-gradient(top, #62c462, #57a957);
2378
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
2379
+ background-image: -webkit-linear-gradient(top, #62c462, #57a957);
2380
+ background-image: -o-linear-gradient(top, #62c462, #57a957);
2381
+ background-image: linear-gradient(top, #62c462, #57a957);
2382
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
2383
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2384
+ border-color: #57a957 #57a957 #3d773d;
2385
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2386
+ }
2387
+ /* line 540, ../../../sass/bootstrap/patterns.scss */
2388
+ .btn.info,
2389
+ .alert-message.info {
2390
+ background-color: #339bb9;
2391
+ background-repeat: repeat-x;
2392
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9));
2393
+ background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
2394
+ background-image: -ms-linear-gradient(top, #5bc0de, #339bb9);
2395
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9));
2396
+ background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
2397
+ background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
2398
+ background-image: linear-gradient(top, #5bc0de, #339bb9);
2399
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0);
2400
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2401
+ border-color: #339bb9 #339bb9 #22697d;
2402
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2403
+ }
2404
+
2405
+ /* line 546, ../../../sass/bootstrap/patterns.scss */
2406
+ .btn {
2407
+ cursor: pointer;
2408
+ display: inline-block;
2409
+ background-color: #e6e6e6;
2410
+ background-repeat: no-repeat;
2411
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(white), color-stop(25%, white), to(#e6e6e6));
2412
+ background-image: -webkit-linear-gradient(white, white 25%, #e6e6e6);
2413
+ background-image: -moz-linear-gradient(white, white 25%, #e6e6e6);
2414
+ background-image: -ms-linear-gradient(white, white 25%, #e6e6e6);
2415
+ background-image: -o-linear-gradient(white, white 25%, #e6e6e6);
2416
+ background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6);
2417
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='white', endColorstr='#e6e6e6', GradientType=0);
2418
+ padding: 5px 14px 6px;
2419
+ text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
2420
+ color: #333;
2421
+ font-size: 13px;
2422
+ line-height: normal;
2423
+ border: 1px solid #ccc;
2424
+ border-bottom-color: #bbb;
2425
+ -webkit-border-radius: 4px;
2426
+ -moz-border-radius: 4px;
2427
+ border-radius: 4px;
2428
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2429
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2430
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
2431
+ -webkit-transition: 0.1s linear all;
2432
+ -moz-transition: 0.1s linear all;
2433
+ -ms-transition: 0.1s linear all;
2434
+ -o-transition: 0.1s linear all;
2435
+ transition: 0.1s linear all;
2436
+ }
2437
+ /* line 562, ../../../sass/bootstrap/patterns.scss */
2438
+ .btn:hover {
2439
+ background-position: 0 -15px;
2440
+ color: #333;
2441
+ text-decoration: none;
2442
+ }
2443
+ /* line 569, ../../../sass/bootstrap/patterns.scss */
2444
+ .btn:focus {
2445
+ outline: 1px dotted #666;
2446
+ }
2447
+ /* line 574, ../../../sass/bootstrap/patterns.scss */
2448
+ .btn.primary {
2449
+ color: white;
2450
+ background-color: #0064cd;
2451
+ background-repeat: repeat-x;
2452
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd));
2453
+ background-image: -moz-linear-gradient(top, #049cdb, #0064cd);
2454
+ background-image: -ms-linear-gradient(top, #049cdb, #0064cd);
2455
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd));
2456
+ background-image: -webkit-linear-gradient(top, #049cdb, #0064cd);
2457
+ background-image: -o-linear-gradient(top, #049cdb, #0064cd);
2458
+ background-image: linear-gradient(top, #049cdb, #0064cd);
2459
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0);
2460
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2461
+ border-color: #0064cd #0064cd #003f81;
2462
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2463
+ }
2464
+ /* line 584, ../../../sass/bootstrap/patterns.scss */
2465
+ .btn.active, .btn:active {
2466
+ -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
2467
+ -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
2468
+ box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
2469
+ }
2470
+ /* line 588, ../../../sass/bootstrap/patterns.scss */
2471
+ .btn.disabled {
2472
+ cursor: default;
2473
+ background-image: none;
2474
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2475
+ filter: alpha(opacity=65);
2476
+ -khtml-opacity: 0.65;
2477
+ -moz-opacity: 0.65;
2478
+ opacity: 0.65;
2479
+ -webkit-box-shadow: none;
2480
+ -moz-box-shadow: none;
2481
+ box-shadow: none;
2482
+ }
2483
+ /* line 595, ../../../sass/bootstrap/patterns.scss */
2484
+ .btn[disabled] {
2485
+ cursor: default;
2486
+ background-image: none;
2487
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2488
+ filter: alpha(opacity=65);
2489
+ -khtml-opacity: 0.65;
2490
+ -moz-opacity: 0.65;
2491
+ opacity: 0.65;
2492
+ -webkit-box-shadow: none;
2493
+ -moz-box-shadow: none;
2494
+ box-shadow: none;
2495
+ }
2496
+ /* line 606, ../../../sass/bootstrap/patterns.scss */
2497
+ .btn.large {
2498
+ font-size: 15px;
2499
+ line-height: normal;
2500
+ padding: 9px 14px 9px;
2501
+ -webkit-border-radius: 6px;
2502
+ -moz-border-radius: 6px;
2503
+ border-radius: 6px;
2504
+ }
2505
+ /* line 612, ../../../sass/bootstrap/patterns.scss */
2506
+ .btn.small {
2507
+ padding: 7px 9px 7px;
2508
+ font-size: 11px;
2509
+ }
2510
+
2511
+ /* line 619, ../../../sass/bootstrap/patterns.scss */
2512
+ :root .alert-message,
2513
+ :root .btn {
2514
+ border-radius: 0 \0;
2515
+ }
2516
+
2517
+ /* line 626, ../../../sass/bootstrap/patterns.scss */
2518
+ button.btn::-moz-focus-inner,
2519
+ input[type=submit].btn::-moz-focus-inner {
2520
+ padding: 0;
2521
+ border: 0;
2522
+ }
2523
+
2524
+ /* line 635, ../../../sass/bootstrap/patterns.scss */
2525
+ .close {
2526
+ float: right;
2527
+ color: black;
2528
+ font-size: 20px;
2529
+ font-weight: bold;
2530
+ line-height: 13.5px;
2531
+ text-shadow: 0 1px 0 white;
2532
+ filter: alpha(opacity=25);
2533
+ -khtml-opacity: 0.25;
2534
+ -moz-opacity: 0.25;
2535
+ opacity: 0.25;
2536
+ }
2537
+ /* line 643, ../../../sass/bootstrap/patterns.scss */
2538
+ .close:hover {
2539
+ color: black;
2540
+ text-decoration: none;
2541
+ filter: alpha(opacity=40);
2542
+ -khtml-opacity: 0.4;
2543
+ -moz-opacity: 0.4;
2544
+ opacity: 0.4;
2545
+ }
2546
+
2547
+ /* line 655, ../../../sass/bootstrap/patterns.scss */
2548
+ .alert-message {
2549
+ position: relative;
2550
+ padding: 7px 15px;
2551
+ margin-bottom: 18px;
2552
+ color: #404040;
2553
+ background-color: #eedc94;
2554
+ background-repeat: repeat-x;
2555
+ background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
2556
+ background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
2557
+ background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
2558
+ background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
2559
+ background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
2560
+ background-image: -o-linear-gradient(top, #fceec1, #eedc94);
2561
+ background-image: linear-gradient(top, #fceec1, #eedc94);
2562
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
2563
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
2564
+ border-color: #eedc94 #eedc94 #e4c652;
2565
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
2566
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2567
+ border-width: 1px;
2568
+ border-style: solid;
2569
+ -webkit-border-radius: 4px;
2570
+ -moz-border-radius: 4px;
2571
+ border-radius: 4px;
2572
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2573
+ -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2574
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
2575
+ }
2576
+ /* line 668, ../../../sass/bootstrap/patterns.scss */
2577
+ .alert-message .close {
2578
+ margin-top: 1px;
2579
+ *margin-top: 0;
2580
+ }
2581
+ /* line 674, ../../../sass/bootstrap/patterns.scss */
2582
+ .alert-message a {
2583
+ font-weight: bold;
2584
+ color: #404040;
2585
+ }
2586
+ /* line 681, ../../../sass/bootstrap/patterns.scss */
2587
+ .alert-message.danger p a, .alert-message.error p a, .alert-message.success p a, .alert-message.info p a {
2588
+ color: white;
2589
+ }
2590
+ /* line 686, ../../../sass/bootstrap/patterns.scss */
2591
+ .alert-message h5 {
2592
+ line-height: 18px;
2593
+ }
2594
+ /* line 689, ../../../sass/bootstrap/patterns.scss */
2595
+ .alert-message p {
2596
+ margin-bottom: 0;
2597
+ }
2598
+ /* line 692, ../../../sass/bootstrap/patterns.scss */
2599
+ .alert-message div {
2600
+ margin-top: 5px;
2601
+ margin-bottom: 2px;
2602
+ line-height: 28px;
2603
+ }
2604
+ /* line 697, ../../../sass/bootstrap/patterns.scss */
2605
+ .alert-message .btn {
2606
+ -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2607
+ -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2608
+ box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
2609
+ }
2610
+ /* line 702, ../../../sass/bootstrap/patterns.scss */
2611
+ .alert-message.block-message {
2612
+ background-image: none;
2613
+ background-color: #fdf5d9;
2614
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2615
+ padding: 14px;
2616
+ border-color: #fceec1;
2617
+ -webkit-box-shadow: none;
2618
+ -moz-box-shadow: none;
2619
+ box-shadow: none;
2620
+ }
2621
+ /* line 709, ../../../sass/bootstrap/patterns.scss */
2622
+ .alert-message.block-message ul, .alert-message.block-message p {
2623
+ margin-right: 30px;
2624
+ }
2625
+ /* line 712, ../../../sass/bootstrap/patterns.scss */
2626
+ .alert-message.block-message ul {
2627
+ margin-bottom: 0;
2628
+ }
2629
+ /* line 715, ../../../sass/bootstrap/patterns.scss */
2630
+ .alert-message.block-message li {
2631
+ color: #404040;
2632
+ }
2633
+ /* line 718, ../../../sass/bootstrap/patterns.scss */
2634
+ .alert-message.block-message .alert-actions {
2635
+ margin-top: 5px;
2636
+ }
2637
+ /* line 723, ../../../sass/bootstrap/patterns.scss */
2638
+ .alert-message.block-message.error, .alert-message.block-message.success, .alert-message.block-message.info {
2639
+ color: #404040;
2640
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
2641
+ }
2642
+ /* line 727, ../../../sass/bootstrap/patterns.scss */
2643
+ .alert-message.block-message.error {
2644
+ background-color: #fddfde;
2645
+ border-color: #fbc7c6;
2646
+ }
2647
+ /* line 731, ../../../sass/bootstrap/patterns.scss */
2648
+ .alert-message.block-message.success {
2649
+ background-color: #d1eed1;
2650
+ border-color: #bfe7bf;
2651
+ }
2652
+ /* line 735, ../../../sass/bootstrap/patterns.scss */
2653
+ .alert-message.block-message.info {
2654
+ background-color: #ddf4fb;
2655
+ border-color: #c6edf9;
2656
+ }
2657
+ /* line 743, ../../../sass/bootstrap/patterns.scss */
2658
+ .alert-message.block-message.danger p a, .alert-message.block-message.error p a, .alert-message.block-message.success p a, .alert-message.block-message.info p a {
2659
+ color: #404040;
2660
+ }
2661
+
2662
+ /* line 754, ../../../sass/bootstrap/patterns.scss */
2663
+ .pagination {
2664
+ height: 36px;
2665
+ margin: 18px 0;
2666
+ }
2667
+ /* line 757, ../../../sass/bootstrap/patterns.scss */
2668
+ .pagination ul {
2669
+ float: left;
2670
+ margin: 0;
2671
+ margin-left: auto;
2672
+ margin-right: auto;
2673
+ border: 1px solid #ddd;
2674
+ border: 1px solid rgba(0, 0, 0, 0.15);
2675
+ -webkit-border-radius: 3px;
2676
+ -moz-border-radius: 3px;
2677
+ border-radius: 3px;
2678
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2679
+ -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2680
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
2681
+ }
2682
+ /* line 767, ../../../sass/bootstrap/patterns.scss */
2683
+ .pagination li {
2684
+ display: inline;
2685
+ }
2686
+ /* line 770, ../../../sass/bootstrap/patterns.scss */
2687
+ .pagination a {
2688
+ float: left;
2689
+ padding: 0 14px;
2690
+ line-height: 34px;
2691
+ border-right: 1px solid;
2692
+ border-right-color: #ddd;
2693
+ border-right-color: rgba(0, 0, 0, 0.15);
2694
+ *border-right-color: #ddd;
2695
+ /* IE6-7 */
2696
+ text-decoration: none;
2697
+ }
2698
+ /* line 781, ../../../sass/bootstrap/patterns.scss */
2699
+ .pagination a:hover,
2700
+ .pagination .active a {
2701
+ background-color: #c7eefe;
2702
+ }
2703
+ /* line 785, ../../../sass/bootstrap/patterns.scss */
2704
+ .pagination .disabled a,
2705
+ .pagination .disabled a:hover {
2706
+ background-color: transparent;
2707
+ color: #bfbfbf;
2708
+ }
2709
+ /* line 789, ../../../sass/bootstrap/patterns.scss */
2710
+ .pagination .next a {
2711
+ border: 0;
2712
+ }
2713
+
2714
+ /* line 798, ../../../sass/bootstrap/patterns.scss */
2715
+ .well {
2716
+ background-color: #f5f5f5;
2717
+ margin-bottom: 20px;
2718
+ padding: 19px;
2719
+ min-height: 20px;
2720
+ border: 1px solid #eee;
2721
+ border: 1px solid rgba(0, 0, 0, 0.05);
2722
+ -webkit-border-radius: 4px;
2723
+ -moz-border-radius: 4px;
2724
+ border-radius: 4px;
2725
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2726
+ -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2727
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
2728
+ }
2729
+ /* line 807, ../../../sass/bootstrap/patterns.scss */
2730
+ .well blockquote {
2731
+ border-color: #ddd;
2732
+ border-color: rgba(0, 0, 0, 0.15);
2733
+ }
2734
+
2735
+ /* line 817, ../../../sass/bootstrap/patterns.scss */
2736
+ .modal-backdrop {
2737
+ background-color: black;
2738
+ position: fixed;
2739
+ top: 0;
2740
+ left: 0;
2741
+ right: 0;
2742
+ bottom: 0;
2743
+ z-index: 10000;
2744
+ }
2745
+ /* line 826, ../../../sass/bootstrap/patterns.scss */
2746
+ .modal-backdrop.fade {
2747
+ opacity: 0;
2748
+ }
2749
+
2750
+ /* line 830, ../../../sass/bootstrap/patterns.scss */
2751
+ .modal-backdrop,
2752
+ .modal-backdrop.fade.in {
2753
+ filter: alpha(opacity=80);
2754
+ -khtml-opacity: 0.8;
2755
+ -moz-opacity: 0.8;
2756
+ opacity: 0.8;
2757
+ }
2758
+
2759
+ /* line 834, ../../../sass/bootstrap/patterns.scss */
2760
+ .modal {
2761
+ position: fixed;
2762
+ top: 50%;
2763
+ left: 50%;
2764
+ z-index: 11000;
2765
+ width: 560px;
2766
+ margin: -250px 0 0 -280px;
2767
+ background-color: white;
2768
+ border: 1px solid #999;
2769
+ border: 1px solid rgba(0, 0, 0, 0.3);
2770
+ *border: 1px solid #999;
2771
+ /* IE6-7 */
2772
+ -webkit-border-radius: 6px;
2773
+ -moz-border-radius: 6px;
2774
+ border-radius: 6px;
2775
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2776
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2777
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2778
+ -webkit-background-clip: padding-box;
2779
+ -moz-background-clip: padding-box;
2780
+ background-clip: padding-box;
2781
+ }
2782
+ /* line 848, ../../../sass/bootstrap/patterns.scss */
2783
+ .modal .close {
2784
+ margin-top: 7px;
2785
+ }
2786
+ /* line 849, ../../../sass/bootstrap/patterns.scss */
2787
+ .modal.fade {
2788
+ -webkit-transition: "opacity .3s linear, top .3s ease-out";
2789
+ -moz-transition: "opacity .3s linear, top .3s ease-out";
2790
+ -ms-transition: "opacity .3s linear, top .3s ease-out";
2791
+ -o-transition: "opacity .3s linear, top .3s ease-out";
2792
+ transition: "opacity .3s linear, top .3s ease-out";
2793
+ top: -25%;
2794
+ }
2795
+ /* line 853, ../../../sass/bootstrap/patterns.scss */
2796
+ .modal.fade.in {
2797
+ top: 50%;
2798
+ }
2799
+
2800
+ /* line 855, ../../../sass/bootstrap/patterns.scss */
2801
+ .modal-header {
2802
+ border-bottom: 1px solid #eee;
2803
+ padding: 5px 15px;
2804
+ }
2805
+
2806
+ /* line 859, ../../../sass/bootstrap/patterns.scss */
2807
+ .modal-body {
2808
+ padding: 15px;
2809
+ }
2810
+
2811
+ /* line 862, ../../../sass/bootstrap/patterns.scss */
2812
+ .modal-body form {
2813
+ margin-bottom: 0;
2814
+ }
2815
+
2816
+ /* line 865, ../../../sass/bootstrap/patterns.scss */
2817
+ .modal-footer {
2818
+ background-color: #f5f5f5;
2819
+ padding: 14px 15px 15px;
2820
+ border-top: 1px solid #ddd;
2821
+ -webkit-border-radius: 0 0 6px 6px;
2822
+ -moz-border-radius: 0 0 6px 6px;
2823
+ border-radius: 0 0 6px 6px;
2824
+ -webkit-box-shadow: inset 0 1px 0 white;
2825
+ -moz-box-shadow: inset 0 1px 0 white;
2826
+ box-shadow: inset 0 1px 0 white;
2827
+ zoom: 1;
2828
+ margin-bottom: 0;
2829
+ }
2830
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
2831
+ .modal-footer:before, .modal-footer:after {
2832
+ display: table;
2833
+ content: "";
2834
+ zoom: 1;
2835
+ }
2836
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
2837
+ .modal-footer:after {
2838
+ clear: both;
2839
+ }
2840
+ /* line 873, ../../../sass/bootstrap/patterns.scss */
2841
+ .modal-footer .btn {
2842
+ float: right;
2843
+ margin-left: 5px;
2844
+ }
2845
+
2846
+ /* line 881, ../../../sass/bootstrap/patterns.scss */
2847
+ .modal .popover,
2848
+ .modal .twipsy {
2849
+ z-index: 12000;
2850
+ }
2851
+
2852
+ /* line 927, ../../../sass/bootstrap/patterns.scss */
2853
+ .twipsy {
2854
+ display: block;
2855
+ position: absolute;
2856
+ visibility: visible;
2857
+ padding: 5px;
2858
+ font-size: 11px;
2859
+ z-index: 1000;
2860
+ filter: alpha(opacity=80);
2861
+ -khtml-opacity: 0.8;
2862
+ -moz-opacity: 0.8;
2863
+ opacity: 0.8;
2864
+ }
2865
+ /* line 935, ../../../sass/bootstrap/patterns.scss */
2866
+ .twipsy.fade.in {
2867
+ filter: alpha(opacity=80);
2868
+ -khtml-opacity: 0.8;
2869
+ -moz-opacity: 0.8;
2870
+ opacity: 0.8;
2871
+ }
2872
+ /* line 938, ../../../sass/bootstrap/patterns.scss */
2873
+ .twipsy.above .twipsy-arrow {
2874
+ bottom: 0;
2875
+ left: 50%;
2876
+ margin-left: -5px;
2877
+ border-left: 5px solid transparent;
2878
+ border-right: 5px solid transparent;
2879
+ border-top: 5px solid black;
2880
+ }
2881
+ /* line 939, ../../../sass/bootstrap/patterns.scss */
2882
+ .twipsy.left .twipsy-arrow {
2883
+ top: 50%;
2884
+ right: 0;
2885
+ margin-top: -5px;
2886
+ border-top: 5px solid transparent;
2887
+ border-bottom: 5px solid transparent;
2888
+ border-left: 5px solid black;
2889
+ }
2890
+ /* line 940, ../../../sass/bootstrap/patterns.scss */
2891
+ .twipsy.below .twipsy-arrow {
2892
+ top: 0;
2893
+ left: 50%;
2894
+ margin-left: -5px;
2895
+ border-left: 5px solid transparent;
2896
+ border-right: 5px solid transparent;
2897
+ border-bottom: 5px solid black;
2898
+ }
2899
+ /* line 941, ../../../sass/bootstrap/patterns.scss */
2900
+ .twipsy.right .twipsy-arrow {
2901
+ top: 50%;
2902
+ left: 0;
2903
+ margin-top: -5px;
2904
+ border-top: 5px solid transparent;
2905
+ border-bottom: 5px solid transparent;
2906
+ border-right: 5px solid black;
2907
+ }
2908
+
2909
+ /* line 943, ../../../sass/bootstrap/patterns.scss */
2910
+ .twipsy-inner {
2911
+ padding: 3px 8px;
2912
+ background-color: black;
2913
+ color: white;
2914
+ text-align: center;
2915
+ max-width: 200px;
2916
+ text-decoration: none;
2917
+ -webkit-border-radius: 4px;
2918
+ -moz-border-radius: 4px;
2919
+ border-radius: 4px;
2920
+ }
2921
+
2922
+ /* line 952, ../../../sass/bootstrap/patterns.scss */
2923
+ .twipsy-arrow {
2924
+ position: absolute;
2925
+ width: 0;
2926
+ height: 0;
2927
+ }
2928
+
2929
+ /* line 962, ../../../sass/bootstrap/patterns.scss */
2930
+ .popover {
2931
+ position: absolute;
2932
+ top: 0;
2933
+ left: 0;
2934
+ z-index: 1000;
2935
+ padding: 5px;
2936
+ display: none;
2937
+ }
2938
+ /* line 969, ../../../sass/bootstrap/patterns.scss */
2939
+ .popover.above .arrow {
2940
+ bottom: 0;
2941
+ left: 50%;
2942
+ margin-left: -5px;
2943
+ border-left: 5px solid transparent;
2944
+ border-right: 5px solid transparent;
2945
+ border-top: 5px solid black;
2946
+ }
2947
+ /* line 970, ../../../sass/bootstrap/patterns.scss */
2948
+ .popover.right .arrow {
2949
+ top: 50%;
2950
+ left: 0;
2951
+ margin-top: -5px;
2952
+ border-top: 5px solid transparent;
2953
+ border-bottom: 5px solid transparent;
2954
+ border-right: 5px solid black;
2955
+ }
2956
+ /* line 971, ../../../sass/bootstrap/patterns.scss */
2957
+ .popover.below .arrow {
2958
+ top: 0;
2959
+ left: 50%;
2960
+ margin-left: -5px;
2961
+ border-left: 5px solid transparent;
2962
+ border-right: 5px solid transparent;
2963
+ border-bottom: 5px solid black;
2964
+ }
2965
+ /* line 972, ../../../sass/bootstrap/patterns.scss */
2966
+ .popover.left .arrow {
2967
+ top: 50%;
2968
+ right: 0;
2969
+ margin-top: -5px;
2970
+ border-top: 5px solid transparent;
2971
+ border-bottom: 5px solid transparent;
2972
+ border-left: 5px solid black;
2973
+ }
2974
+ /* line 973, ../../../sass/bootstrap/patterns.scss */
2975
+ .popover .arrow {
2976
+ position: absolute;
2977
+ width: 0;
2978
+ height: 0;
2979
+ }
2980
+ /* line 978, ../../../sass/bootstrap/patterns.scss */
2981
+ .popover .inner {
2982
+ background: black;
2983
+ background: rgba(0, 0, 0, 0.8);
2984
+ padding: 3px;
2985
+ overflow: hidden;
2986
+ width: 280px;
2987
+ -webkit-border-radius: 6px;
2988
+ -moz-border-radius: 6px;
2989
+ border-radius: 6px;
2990
+ -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2991
+ -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2992
+ box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
2993
+ }
2994
+ /* line 987, ../../../sass/bootstrap/patterns.scss */
2995
+ .popover .title {
2996
+ background-color: #f5f5f5;
2997
+ padding: 9px 15px;
2998
+ line-height: 1;
2999
+ -webkit-border-radius: 3px 3px 0 0;
3000
+ -moz-border-radius: 3px 3px 0 0;
3001
+ border-radius: 3px 3px 0 0;
3002
+ border-bottom: 1px solid #eee;
3003
+ }
3004
+ /* line 994, ../../../sass/bootstrap/patterns.scss */
3005
+ .popover .content {
3006
+ background-color: white;
3007
+ padding: 14px;
3008
+ -webkit-border-radius: 0 0 3px 3px;
3009
+ -moz-border-radius: 0 0 3px 3px;
3010
+ border-radius: 0 0 3px 3px;
3011
+ -webkit-background-clip: padding-box;
3012
+ -moz-background-clip: padding-box;
3013
+ background-clip: padding-box;
3014
+ }
3015
+ /* line 999, ../../../sass/bootstrap/patterns.scss */
3016
+ .popover .content p, .popover .content ul, .popover .content ol {
3017
+ margin-bottom: 0;
3018
+ }
3019
+
3020
+ /* line 1008, ../../../sass/bootstrap/patterns.scss */
3021
+ .fade {
3022
+ -webkit-transition: opacity 0.15s linear;
3023
+ -moz-transition: opacity 0.15s linear;
3024
+ -ms-transition: opacity 0.15s linear;
3025
+ -o-transition: opacity 0.15s linear;
3026
+ transition: opacity 0.15s linear;
3027
+ opacity: 0;
3028
+ }
3029
+ /* line 1011, ../../../sass/bootstrap/patterns.scss */
3030
+ .fade.in {
3031
+ opacity: 1;
3032
+ }
3033
+
3034
+ /* line 1020, ../../../sass/bootstrap/patterns.scss */
3035
+ .label {
3036
+ padding: 1px 3px 2px;
3037
+ font-size: 9.75px;
3038
+ font-weight: bold;
3039
+ color: white;
3040
+ text-transform: uppercase;
3041
+ white-space: nowrap;
3042
+ background-color: #bfbfbf;
3043
+ -webkit-border-radius: 3px;
3044
+ -moz-border-radius: 3px;
3045
+ border-radius: 3px;
3046
+ }
3047
+ /* line 1029, ../../../sass/bootstrap/patterns.scss */
3048
+ .label.important {
3049
+ background-color: #c43c35;
3050
+ }
3051
+ /* line 1030, ../../../sass/bootstrap/patterns.scss */
3052
+ .label.warning {
3053
+ background-color: #f89406;
3054
+ }
3055
+ /* line 1031, ../../../sass/bootstrap/patterns.scss */
3056
+ .label.success {
3057
+ background-color: #46a546;
3058
+ }
3059
+ /* line 1032, ../../../sass/bootstrap/patterns.scss */
3060
+ .label.notice {
3061
+ background-color: #62cffc;
3062
+ }
3063
+
3064
+ /* line 1039, ../../../sass/bootstrap/patterns.scss */
3065
+ .media-grid {
3066
+ margin-left: -20px;
3067
+ margin-bottom: 0;
3068
+ zoom: 1;
3069
+ }
3070
+ /* line 9, ../../../sass/bootstrap/mixins.scss */
3071
+ .media-grid:before, .media-grid:after {
3072
+ display: table;
3073
+ content: "";
3074
+ zoom: 1;
3075
+ }
3076
+ /* line 14, ../../../sass/bootstrap/mixins.scss */
3077
+ .media-grid:after {
3078
+ clear: both;
3079
+ }
3080
+ /* line 1043, ../../../sass/bootstrap/patterns.scss */
3081
+ .media-grid li {
3082
+ display: inline;
3083
+ }
3084
+ /* line 1046, ../../../sass/bootstrap/patterns.scss */
3085
+ .media-grid a {
3086
+ float: left;
3087
+ padding: 4px;
3088
+ margin: 0 0 18px 20px;
3089
+ border: 1px solid #ddd;
3090
+ -webkit-border-radius: 4px;
3091
+ -moz-border-radius: 4px;
3092
+ border-radius: 4px;
3093
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3094
+ -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3095
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075);
3096
+ }
3097
+ /* line 1053, ../../../sass/bootstrap/patterns.scss */
3098
+ .media-grid a img {
3099
+ display: block;
3100
+ }
3101
+ /* line 1056, ../../../sass/bootstrap/patterns.scss */
3102
+ .media-grid a:hover {
3103
+ border-color: #0069d6;
3104
+ -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3105
+ -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3106
+ box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
3107
+ }