interpol 0.0.3 → 0.0.4

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