mongo_fe 0.1.0

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