rails_email_preview 0.2.4 → 0.2.5

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