heidi 0.3.1 → 0.4.0

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