##// END OF EJS Templates
Merge pull request #7268 from Carreau/ungroup-button...
Jonathan Frederic -
r19693:b8e783e1 merge
parent child Browse files
Show More
@@ -1,10426 +1,10439 b''
1 1 /*!
2 2 *
3 3 * Twitter Bootstrap
4 4 *
5 5 */
6 6 /*! normalize.css v3.0.0 | MIT License | git.io/normalize */
7 7 html {
8 8 font-family: sans-serif;
9 9 -ms-text-size-adjust: 100%;
10 10 -webkit-text-size-adjust: 100%;
11 11 }
12 12 body {
13 13 margin: 0;
14 14 }
15 15 article,
16 16 aside,
17 17 details,
18 18 figcaption,
19 19 figure,
20 20 footer,
21 21 header,
22 22 hgroup,
23 23 main,
24 24 nav,
25 25 section,
26 26 summary {
27 27 display: block;
28 28 }
29 29 audio,
30 30 canvas,
31 31 progress,
32 32 video {
33 33 display: inline-block;
34 34 vertical-align: baseline;
35 35 }
36 36 audio:not([controls]) {
37 37 display: none;
38 38 height: 0;
39 39 }
40 40 [hidden],
41 41 template {
42 42 display: none;
43 43 }
44 44 a {
45 45 background: transparent;
46 46 }
47 47 a:active,
48 48 a:hover {
49 49 outline: 0;
50 50 }
51 51 abbr[title] {
52 52 border-bottom: 1px dotted;
53 53 }
54 54 b,
55 55 strong {
56 56 font-weight: bold;
57 57 }
58 58 dfn {
59 59 font-style: italic;
60 60 }
61 61 h1 {
62 62 font-size: 2em;
63 63 margin: 0.67em 0;
64 64 }
65 65 mark {
66 66 background: #ff0;
67 67 color: #000;
68 68 }
69 69 small {
70 70 font-size: 80%;
71 71 }
72 72 sub,
73 73 sup {
74 74 font-size: 75%;
75 75 line-height: 0;
76 76 position: relative;
77 77 vertical-align: baseline;
78 78 }
79 79 sup {
80 80 top: -0.5em;
81 81 }
82 82 sub {
83 83 bottom: -0.25em;
84 84 }
85 85 img {
86 86 border: 0;
87 87 }
88 88 svg:not(:root) {
89 89 overflow: hidden;
90 90 }
91 91 figure {
92 92 margin: 1em 40px;
93 93 }
94 94 hr {
95 95 -moz-box-sizing: content-box;
96 96 box-sizing: content-box;
97 97 height: 0;
98 98 }
99 99 pre {
100 100 overflow: auto;
101 101 }
102 102 code,
103 103 kbd,
104 104 pre,
105 105 samp {
106 106 font-family: monospace, monospace;
107 107 font-size: 1em;
108 108 }
109 109 button,
110 110 input,
111 111 optgroup,
112 112 select,
113 113 textarea {
114 114 color: inherit;
115 115 font: inherit;
116 116 margin: 0;
117 117 }
118 118 button {
119 119 overflow: visible;
120 120 }
121 121 button,
122 122 select {
123 123 text-transform: none;
124 124 }
125 125 button,
126 126 html input[type="button"],
127 127 input[type="reset"],
128 128 input[type="submit"] {
129 129 -webkit-appearance: button;
130 130 cursor: pointer;
131 131 }
132 132 button[disabled],
133 133 html input[disabled] {
134 134 cursor: default;
135 135 }
136 136 button::-moz-focus-inner,
137 137 input::-moz-focus-inner {
138 138 border: 0;
139 139 padding: 0;
140 140 }
141 141 input {
142 142 line-height: normal;
143 143 }
144 144 input[type="checkbox"],
145 145 input[type="radio"] {
146 146 box-sizing: border-box;
147 147 padding: 0;
148 148 }
149 149 input[type="number"]::-webkit-inner-spin-button,
150 150 input[type="number"]::-webkit-outer-spin-button {
151 151 height: auto;
152 152 }
153 153 input[type="search"] {
154 154 -webkit-appearance: textfield;
155 155 -moz-box-sizing: content-box;
156 156 -webkit-box-sizing: content-box;
157 157 box-sizing: content-box;
158 158 }
159 159 input[type="search"]::-webkit-search-cancel-button,
160 160 input[type="search"]::-webkit-search-decoration {
161 161 -webkit-appearance: none;
162 162 }
163 163 fieldset {
164 164 border: 1px solid #c0c0c0;
165 165 margin: 0 2px;
166 166 padding: 0.35em 0.625em 0.75em;
167 167 }
168 168 legend {
169 169 border: 0;
170 170 padding: 0;
171 171 }
172 172 textarea {
173 173 overflow: auto;
174 174 }
175 175 optgroup {
176 176 font-weight: bold;
177 177 }
178 178 table {
179 179 border-collapse: collapse;
180 180 border-spacing: 0;
181 181 }
182 182 td,
183 183 th {
184 184 padding: 0;
185 185 }
186 186 @media print {
187 187 * {
188 188 text-shadow: none !important;
189 189 color: #000 !important;
190 190 background: transparent !important;
191 191 box-shadow: none !important;
192 192 }
193 193 a,
194 194 a:visited {
195 195 text-decoration: underline;
196 196 }
197 197 a[href]:after {
198 198 content: " (" attr(href) ")";
199 199 }
200 200 abbr[title]:after {
201 201 content: " (" attr(title) ")";
202 202 }
203 203 a[href^="javascript:"]:after,
204 204 a[href^="#"]:after {
205 205 content: "";
206 206 }
207 207 pre,
208 208 blockquote {
209 209 border: 1px solid #999;
210 210 page-break-inside: avoid;
211 211 }
212 212 thead {
213 213 display: table-header-group;
214 214 }
215 215 tr,
216 216 img {
217 217 page-break-inside: avoid;
218 218 }
219 219 img {
220 220 max-width: 100% !important;
221 221 }
222 222 p,
223 223 h2,
224 224 h3 {
225 225 orphans: 3;
226 226 widows: 3;
227 227 }
228 228 h2,
229 229 h3 {
230 230 page-break-after: avoid;
231 231 }
232 232 select {
233 233 background: #fff !important;
234 234 }
235 235 .navbar {
236 236 display: none;
237 237 }
238 238 .table td,
239 239 .table th {
240 240 background-color: #fff !important;
241 241 }
242 242 .btn > .caret,
243 243 .dropup > .btn > .caret {
244 244 border-top-color: #000 !important;
245 245 }
246 246 .label {
247 247 border: 1px solid #000;
248 248 }
249 249 .table {
250 250 border-collapse: collapse !important;
251 251 }
252 252 .table-bordered th,
253 253 .table-bordered td {
254 254 border: 1px solid #ddd !important;
255 255 }
256 256 }
257 257 * {
258 258 -webkit-box-sizing: border-box;
259 259 -moz-box-sizing: border-box;
260 260 box-sizing: border-box;
261 261 }
262 262 *:before,
263 263 *:after {
264 264 -webkit-box-sizing: border-box;
265 265 -moz-box-sizing: border-box;
266 266 box-sizing: border-box;
267 267 }
268 268 html {
269 269 font-size: 62.5%;
270 270 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
271 271 }
272 272 body {
273 273 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
274 274 font-size: 13px;
275 275 line-height: 1.42857143;
276 276 color: #000000;
277 277 background-color: #ffffff;
278 278 }
279 279 input,
280 280 button,
281 281 select,
282 282 textarea {
283 283 font-family: inherit;
284 284 font-size: inherit;
285 285 line-height: inherit;
286 286 }
287 287 a {
288 288 color: #428bca;
289 289 text-decoration: none;
290 290 }
291 291 a:hover,
292 292 a:focus {
293 293 color: #2a6496;
294 294 text-decoration: underline;
295 295 }
296 296 a:focus {
297 297 outline: thin dotted;
298 298 outline: 5px auto -webkit-focus-ring-color;
299 299 outline-offset: -2px;
300 300 }
301 301 figure {
302 302 margin: 0;
303 303 }
304 304 img {
305 305 vertical-align: middle;
306 306 }
307 307 .img-responsive,
308 308 .thumbnail > img,
309 309 .thumbnail a > img,
310 310 .carousel-inner > .item > img,
311 311 .carousel-inner > .item > a > img {
312 312 display: block;
313 313 max-width: 100%;
314 314 height: auto;
315 315 }
316 316 .img-rounded {
317 317 border-radius: 6px;
318 318 }
319 319 .img-thumbnail {
320 320 padding: 4px;
321 321 line-height: 1.42857143;
322 322 background-color: #ffffff;
323 323 border: 1px solid #dddddd;
324 324 border-radius: 4px;
325 325 -webkit-transition: all 0.2s ease-in-out;
326 326 transition: all 0.2s ease-in-out;
327 327 display: inline-block;
328 328 max-width: 100%;
329 329 height: auto;
330 330 }
331 331 .img-circle {
332 332 border-radius: 50%;
333 333 }
334 334 hr {
335 335 margin-top: 18px;
336 336 margin-bottom: 18px;
337 337 border: 0;
338 338 border-top: 1px solid #eeeeee;
339 339 }
340 340 .sr-only {
341 341 position: absolute;
342 342 width: 1px;
343 343 height: 1px;
344 344 margin: -1px;
345 345 padding: 0;
346 346 overflow: hidden;
347 347 clip: rect(0, 0, 0, 0);
348 348 border: 0;
349 349 }
350 350 h1,
351 351 h2,
352 352 h3,
353 353 h4,
354 354 h5,
355 355 h6,
356 356 .h1,
357 357 .h2,
358 358 .h3,
359 359 .h4,
360 360 .h5,
361 361 .h6 {
362 362 font-family: inherit;
363 363 font-weight: 500;
364 364 line-height: 1.1;
365 365 color: inherit;
366 366 }
367 367 h1 small,
368 368 h2 small,
369 369 h3 small,
370 370 h4 small,
371 371 h5 small,
372 372 h6 small,
373 373 .h1 small,
374 374 .h2 small,
375 375 .h3 small,
376 376 .h4 small,
377 377 .h5 small,
378 378 .h6 small,
379 379 h1 .small,
380 380 h2 .small,
381 381 h3 .small,
382 382 h4 .small,
383 383 h5 .small,
384 384 h6 .small,
385 385 .h1 .small,
386 386 .h2 .small,
387 387 .h3 .small,
388 388 .h4 .small,
389 389 .h5 .small,
390 390 .h6 .small {
391 391 font-weight: normal;
392 392 line-height: 1;
393 393 color: #999999;
394 394 }
395 395 h1,
396 396 .h1,
397 397 h2,
398 398 .h2,
399 399 h3,
400 400 .h3 {
401 401 margin-top: 18px;
402 402 margin-bottom: 9px;
403 403 }
404 404 h1 small,
405 405 .h1 small,
406 406 h2 small,
407 407 .h2 small,
408 408 h3 small,
409 409 .h3 small,
410 410 h1 .small,
411 411 .h1 .small,
412 412 h2 .small,
413 413 .h2 .small,
414 414 h3 .small,
415 415 .h3 .small {
416 416 font-size: 65%;
417 417 }
418 418 h4,
419 419 .h4,
420 420 h5,
421 421 .h5,
422 422 h6,
423 423 .h6 {
424 424 margin-top: 9px;
425 425 margin-bottom: 9px;
426 426 }
427 427 h4 small,
428 428 .h4 small,
429 429 h5 small,
430 430 .h5 small,
431 431 h6 small,
432 432 .h6 small,
433 433 h4 .small,
434 434 .h4 .small,
435 435 h5 .small,
436 436 .h5 .small,
437 437 h6 .small,
438 438 .h6 .small {
439 439 font-size: 75%;
440 440 }
441 441 h1,
442 442 .h1 {
443 443 font-size: 33px;
444 444 }
445 445 h2,
446 446 .h2 {
447 447 font-size: 27px;
448 448 }
449 449 h3,
450 450 .h3 {
451 451 font-size: 23px;
452 452 }
453 453 h4,
454 454 .h4 {
455 455 font-size: 17px;
456 456 }
457 457 h5,
458 458 .h5 {
459 459 font-size: 13px;
460 460 }
461 461 h6,
462 462 .h6 {
463 463 font-size: 12px;
464 464 }
465 465 p {
466 466 margin: 0 0 9px;
467 467 }
468 468 .lead {
469 469 margin-bottom: 18px;
470 470 font-size: 14px;
471 471 font-weight: 200;
472 472 line-height: 1.4;
473 473 }
474 474 @media (min-width: 768px) {
475 475 .lead {
476 476 font-size: 19.5px;
477 477 }
478 478 }
479 479 small,
480 480 .small {
481 481 font-size: 85%;
482 482 }
483 483 cite {
484 484 font-style: normal;
485 485 }
486 486 .text-left {
487 487 text-align: left;
488 488 }
489 489 .text-right {
490 490 text-align: right;
491 491 }
492 492 .text-center {
493 493 text-align: center;
494 494 }
495 495 .text-justify {
496 496 text-align: justify;
497 497 }
498 498 .text-muted {
499 499 color: #999999;
500 500 }
501 501 .text-primary {
502 502 color: #428bca;
503 503 }
504 504 a.text-primary:hover {
505 505 color: #3071a9;
506 506 }
507 507 .text-success {
508 508 color: #3c763d;
509 509 }
510 510 a.text-success:hover {
511 511 color: #2b542c;
512 512 }
513 513 .text-info {
514 514 color: #31708f;
515 515 }
516 516 a.text-info:hover {
517 517 color: #245269;
518 518 }
519 519 .text-warning {
520 520 color: #8a6d3b;
521 521 }
522 522 a.text-warning:hover {
523 523 color: #66512c;
524 524 }
525 525 .text-danger {
526 526 color: #a94442;
527 527 }
528 528 a.text-danger:hover {
529 529 color: #843534;
530 530 }
531 531 .bg-primary {
532 532 color: #fff;
533 533 background-color: #428bca;
534 534 }
535 535 a.bg-primary:hover {
536 536 background-color: #3071a9;
537 537 }
538 538 .bg-success {
539 539 background-color: #dff0d8;
540 540 }
541 541 a.bg-success:hover {
542 542 background-color: #c1e2b3;
543 543 }
544 544 .bg-info {
545 545 background-color: #d9edf7;
546 546 }
547 547 a.bg-info:hover {
548 548 background-color: #afd9ee;
549 549 }
550 550 .bg-warning {
551 551 background-color: #fcf8e3;
552 552 }
553 553 a.bg-warning:hover {
554 554 background-color: #f7ecb5;
555 555 }
556 556 .bg-danger {
557 557 background-color: #f2dede;
558 558 }
559 559 a.bg-danger:hover {
560 560 background-color: #e4b9b9;
561 561 }
562 562 .page-header {
563 563 padding-bottom: 8px;
564 564 margin: 36px 0 18px;
565 565 border-bottom: 1px solid #eeeeee;
566 566 }
567 567 ul,
568 568 ol {
569 569 margin-top: 0;
570 570 margin-bottom: 9px;
571 571 }
572 572 ul ul,
573 573 ol ul,
574 574 ul ol,
575 575 ol ol {
576 576 margin-bottom: 0;
577 577 }
578 578 .list-unstyled {
579 579 padding-left: 0;
580 580 list-style: none;
581 581 }
582 582 .list-inline {
583 583 padding-left: 0;
584 584 list-style: none;
585 585 margin-left: -5px;
586 586 }
587 587 .list-inline > li {
588 588 display: inline-block;
589 589 padding-left: 5px;
590 590 padding-right: 5px;
591 591 }
592 592 dl {
593 593 margin-top: 0;
594 594 margin-bottom: 18px;
595 595 }
596 596 dt,
597 597 dd {
598 598 line-height: 1.42857143;
599 599 }
600 600 dt {
601 601 font-weight: bold;
602 602 }
603 603 dd {
604 604 margin-left: 0;
605 605 }
606 606 @media (min-width: 540px) {
607 607 .dl-horizontal dt {
608 608 float: left;
609 609 width: 160px;
610 610 clear: left;
611 611 text-align: right;
612 612 overflow: hidden;
613 613 text-overflow: ellipsis;
614 614 white-space: nowrap;
615 615 }
616 616 .dl-horizontal dd {
617 617 margin-left: 180px;
618 618 }
619 619 }
620 620 abbr[title],
621 621 abbr[data-original-title] {
622 622 cursor: help;
623 623 border-bottom: 1px dotted #999999;
624 624 }
625 625 .initialism {
626 626 font-size: 90%;
627 627 text-transform: uppercase;
628 628 }
629 629 blockquote {
630 630 padding: 9px 18px;
631 631 margin: 0 0 18px;
632 632 font-size: inherit;
633 633 border-left: 5px solid #eeeeee;
634 634 }
635 635 blockquote p:last-child,
636 636 blockquote ul:last-child,
637 637 blockquote ol:last-child {
638 638 margin-bottom: 0;
639 639 }
640 640 blockquote footer,
641 641 blockquote small,
642 642 blockquote .small {
643 643 display: block;
644 644 font-size: 80%;
645 645 line-height: 1.42857143;
646 646 color: #999999;
647 647 }
648 648 blockquote footer:before,
649 649 blockquote small:before,
650 650 blockquote .small:before {
651 651 content: '\2014 \00A0';
652 652 }
653 653 .blockquote-reverse,
654 654 blockquote.pull-right {
655 655 padding-right: 15px;
656 656 padding-left: 0;
657 657 border-right: 5px solid #eeeeee;
658 658 border-left: 0;
659 659 text-align: right;
660 660 }
661 661 .blockquote-reverse footer:before,
662 662 blockquote.pull-right footer:before,
663 663 .blockquote-reverse small:before,
664 664 blockquote.pull-right small:before,
665 665 .blockquote-reverse .small:before,
666 666 blockquote.pull-right .small:before {
667 667 content: '';
668 668 }
669 669 .blockquote-reverse footer:after,
670 670 blockquote.pull-right footer:after,
671 671 .blockquote-reverse small:after,
672 672 blockquote.pull-right small:after,
673 673 .blockquote-reverse .small:after,
674 674 blockquote.pull-right .small:after {
675 675 content: '\00A0 \2014';
676 676 }
677 677 blockquote:before,
678 678 blockquote:after {
679 679 content: "";
680 680 }
681 681 address {
682 682 margin-bottom: 18px;
683 683 font-style: normal;
684 684 line-height: 1.42857143;
685 685 }
686 686 code,
687 687 kbd,
688 688 pre,
689 689 samp {
690 690 font-family: monospace;
691 691 }
692 692 code {
693 693 padding: 2px 4px;
694 694 font-size: 90%;
695 695 color: #c7254e;
696 696 background-color: #f9f2f4;
697 697 white-space: nowrap;
698 698 border-radius: 4px;
699 699 }
700 700 kbd {
701 701 padding: 2px 4px;
702 702 font-size: 90%;
703 703 color: #ffffff;
704 704 background-color: #333333;
705 705 border-radius: 3px;
706 706 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
707 707 }
708 708 pre {
709 709 display: block;
710 710 padding: 8.5px;
711 711 margin: 0 0 9px;
712 712 font-size: 12px;
713 713 line-height: 1.42857143;
714 714 word-break: break-all;
715 715 word-wrap: break-word;
716 716 color: #333333;
717 717 background-color: #f5f5f5;
718 718 border: 1px solid #cccccc;
719 719 border-radius: 4px;
720 720 }
721 721 pre code {
722 722 padding: 0;
723 723 font-size: inherit;
724 724 color: inherit;
725 725 white-space: pre-wrap;
726 726 background-color: transparent;
727 727 border-radius: 0;
728 728 }
729 729 .pre-scrollable {
730 730 max-height: 340px;
731 731 overflow-y: scroll;
732 732 }
733 733 .container {
734 734 margin-right: auto;
735 735 margin-left: auto;
736 736 padding-left: 15px;
737 737 padding-right: 15px;
738 738 }
739 739 @media (min-width: 768px) {
740 740 .container {
741 741 width: 750px;
742 742 }
743 743 }
744 744 @media (min-width: 992px) {
745 745 .container {
746 746 width: 970px;
747 747 }
748 748 }
749 749 @media (min-width: 1200px) {
750 750 .container {
751 751 width: 1170px;
752 752 }
753 753 }
754 754 .container-fluid {
755 755 margin-right: auto;
756 756 margin-left: auto;
757 757 padding-left: 15px;
758 758 padding-right: 15px;
759 759 }
760 760 .row {
761 761 margin-left: -15px;
762 762 margin-right: -15px;
763 763 }
764 764 .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
765 765 position: relative;
766 766 min-height: 1px;
767 767 padding-left: 15px;
768 768 padding-right: 15px;
769 769 }
770 770 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
771 771 float: left;
772 772 }
773 773 .col-xs-12 {
774 774 width: 100%;
775 775 }
776 776 .col-xs-11 {
777 777 width: 91.66666667%;
778 778 }
779 779 .col-xs-10 {
780 780 width: 83.33333333%;
781 781 }
782 782 .col-xs-9 {
783 783 width: 75%;
784 784 }
785 785 .col-xs-8 {
786 786 width: 66.66666667%;
787 787 }
788 788 .col-xs-7 {
789 789 width: 58.33333333%;
790 790 }
791 791 .col-xs-6 {
792 792 width: 50%;
793 793 }
794 794 .col-xs-5 {
795 795 width: 41.66666667%;
796 796 }
797 797 .col-xs-4 {
798 798 width: 33.33333333%;
799 799 }
800 800 .col-xs-3 {
801 801 width: 25%;
802 802 }
803 803 .col-xs-2 {
804 804 width: 16.66666667%;
805 805 }
806 806 .col-xs-1 {
807 807 width: 8.33333333%;
808 808 }
809 809 .col-xs-pull-12 {
810 810 right: 100%;
811 811 }
812 812 .col-xs-pull-11 {
813 813 right: 91.66666667%;
814 814 }
815 815 .col-xs-pull-10 {
816 816 right: 83.33333333%;
817 817 }
818 818 .col-xs-pull-9 {
819 819 right: 75%;
820 820 }
821 821 .col-xs-pull-8 {
822 822 right: 66.66666667%;
823 823 }
824 824 .col-xs-pull-7 {
825 825 right: 58.33333333%;
826 826 }
827 827 .col-xs-pull-6 {
828 828 right: 50%;
829 829 }
830 830 .col-xs-pull-5 {
831 831 right: 41.66666667%;
832 832 }
833 833 .col-xs-pull-4 {
834 834 right: 33.33333333%;
835 835 }
836 836 .col-xs-pull-3 {
837 837 right: 25%;
838 838 }
839 839 .col-xs-pull-2 {
840 840 right: 16.66666667%;
841 841 }
842 842 .col-xs-pull-1 {
843 843 right: 8.33333333%;
844 844 }
845 845 .col-xs-pull-0 {
846 846 right: 0%;
847 847 }
848 848 .col-xs-push-12 {
849 849 left: 100%;
850 850 }
851 851 .col-xs-push-11 {
852 852 left: 91.66666667%;
853 853 }
854 854 .col-xs-push-10 {
855 855 left: 83.33333333%;
856 856 }
857 857 .col-xs-push-9 {
858 858 left: 75%;
859 859 }
860 860 .col-xs-push-8 {
861 861 left: 66.66666667%;
862 862 }
863 863 .col-xs-push-7 {
864 864 left: 58.33333333%;
865 865 }
866 866 .col-xs-push-6 {
867 867 left: 50%;
868 868 }
869 869 .col-xs-push-5 {
870 870 left: 41.66666667%;
871 871 }
872 872 .col-xs-push-4 {
873 873 left: 33.33333333%;
874 874 }
875 875 .col-xs-push-3 {
876 876 left: 25%;
877 877 }
878 878 .col-xs-push-2 {
879 879 left: 16.66666667%;
880 880 }
881 881 .col-xs-push-1 {
882 882 left: 8.33333333%;
883 883 }
884 884 .col-xs-push-0 {
885 885 left: 0%;
886 886 }
887 887 .col-xs-offset-12 {
888 888 margin-left: 100%;
889 889 }
890 890 .col-xs-offset-11 {
891 891 margin-left: 91.66666667%;
892 892 }
893 893 .col-xs-offset-10 {
894 894 margin-left: 83.33333333%;
895 895 }
896 896 .col-xs-offset-9 {
897 897 margin-left: 75%;
898 898 }
899 899 .col-xs-offset-8 {
900 900 margin-left: 66.66666667%;
901 901 }
902 902 .col-xs-offset-7 {
903 903 margin-left: 58.33333333%;
904 904 }
905 905 .col-xs-offset-6 {
906 906 margin-left: 50%;
907 907 }
908 908 .col-xs-offset-5 {
909 909 margin-left: 41.66666667%;
910 910 }
911 911 .col-xs-offset-4 {
912 912 margin-left: 33.33333333%;
913 913 }
914 914 .col-xs-offset-3 {
915 915 margin-left: 25%;
916 916 }
917 917 .col-xs-offset-2 {
918 918 margin-left: 16.66666667%;
919 919 }
920 920 .col-xs-offset-1 {
921 921 margin-left: 8.33333333%;
922 922 }
923 923 .col-xs-offset-0 {
924 924 margin-left: 0%;
925 925 }
926 926 @media (min-width: 768px) {
927 927 .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
928 928 float: left;
929 929 }
930 930 .col-sm-12 {
931 931 width: 100%;
932 932 }
933 933 .col-sm-11 {
934 934 width: 91.66666667%;
935 935 }
936 936 .col-sm-10 {
937 937 width: 83.33333333%;
938 938 }
939 939 .col-sm-9 {
940 940 width: 75%;
941 941 }
942 942 .col-sm-8 {
943 943 width: 66.66666667%;
944 944 }
945 945 .col-sm-7 {
946 946 width: 58.33333333%;
947 947 }
948 948 .col-sm-6 {
949 949 width: 50%;
950 950 }
951 951 .col-sm-5 {
952 952 width: 41.66666667%;
953 953 }
954 954 .col-sm-4 {
955 955 width: 33.33333333%;
956 956 }
957 957 .col-sm-3 {
958 958 width: 25%;
959 959 }
960 960 .col-sm-2 {
961 961 width: 16.66666667%;
962 962 }
963 963 .col-sm-1 {
964 964 width: 8.33333333%;
965 965 }
966 966 .col-sm-pull-12 {
967 967 right: 100%;
968 968 }
969 969 .col-sm-pull-11 {
970 970 right: 91.66666667%;
971 971 }
972 972 .col-sm-pull-10 {
973 973 right: 83.33333333%;
974 974 }
975 975 .col-sm-pull-9 {
976 976 right: 75%;
977 977 }
978 978 .col-sm-pull-8 {
979 979 right: 66.66666667%;
980 980 }
981 981 .col-sm-pull-7 {
982 982 right: 58.33333333%;
983 983 }
984 984 .col-sm-pull-6 {
985 985 right: 50%;
986 986 }
987 987 .col-sm-pull-5 {
988 988 right: 41.66666667%;
989 989 }
990 990 .col-sm-pull-4 {
991 991 right: 33.33333333%;
992 992 }
993 993 .col-sm-pull-3 {
994 994 right: 25%;
995 995 }
996 996 .col-sm-pull-2 {
997 997 right: 16.66666667%;
998 998 }
999 999 .col-sm-pull-1 {
1000 1000 right: 8.33333333%;
1001 1001 }
1002 1002 .col-sm-pull-0 {
1003 1003 right: 0%;
1004 1004 }
1005 1005 .col-sm-push-12 {
1006 1006 left: 100%;
1007 1007 }
1008 1008 .col-sm-push-11 {
1009 1009 left: 91.66666667%;
1010 1010 }
1011 1011 .col-sm-push-10 {
1012 1012 left: 83.33333333%;
1013 1013 }
1014 1014 .col-sm-push-9 {
1015 1015 left: 75%;
1016 1016 }
1017 1017 .col-sm-push-8 {
1018 1018 left: 66.66666667%;
1019 1019 }
1020 1020 .col-sm-push-7 {
1021 1021 left: 58.33333333%;
1022 1022 }
1023 1023 .col-sm-push-6 {
1024 1024 left: 50%;
1025 1025 }
1026 1026 .col-sm-push-5 {
1027 1027 left: 41.66666667%;
1028 1028 }
1029 1029 .col-sm-push-4 {
1030 1030 left: 33.33333333%;
1031 1031 }
1032 1032 .col-sm-push-3 {
1033 1033 left: 25%;
1034 1034 }
1035 1035 .col-sm-push-2 {
1036 1036 left: 16.66666667%;
1037 1037 }
1038 1038 .col-sm-push-1 {
1039 1039 left: 8.33333333%;
1040 1040 }
1041 1041 .col-sm-push-0 {
1042 1042 left: 0%;
1043 1043 }
1044 1044 .col-sm-offset-12 {
1045 1045 margin-left: 100%;
1046 1046 }
1047 1047 .col-sm-offset-11 {
1048 1048 margin-left: 91.66666667%;
1049 1049 }
1050 1050 .col-sm-offset-10 {
1051 1051 margin-left: 83.33333333%;
1052 1052 }
1053 1053 .col-sm-offset-9 {
1054 1054 margin-left: 75%;
1055 1055 }
1056 1056 .col-sm-offset-8 {
1057 1057 margin-left: 66.66666667%;
1058 1058 }
1059 1059 .col-sm-offset-7 {
1060 1060 margin-left: 58.33333333%;
1061 1061 }
1062 1062 .col-sm-offset-6 {
1063 1063 margin-left: 50%;
1064 1064 }
1065 1065 .col-sm-offset-5 {
1066 1066 margin-left: 41.66666667%;
1067 1067 }
1068 1068 .col-sm-offset-4 {
1069 1069 margin-left: 33.33333333%;
1070 1070 }
1071 1071 .col-sm-offset-3 {
1072 1072 margin-left: 25%;
1073 1073 }
1074 1074 .col-sm-offset-2 {
1075 1075 margin-left: 16.66666667%;
1076 1076 }
1077 1077 .col-sm-offset-1 {
1078 1078 margin-left: 8.33333333%;
1079 1079 }
1080 1080 .col-sm-offset-0 {
1081 1081 margin-left: 0%;
1082 1082 }
1083 1083 }
1084 1084 @media (min-width: 992px) {
1085 1085 .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1086 1086 float: left;
1087 1087 }
1088 1088 .col-md-12 {
1089 1089 width: 100%;
1090 1090 }
1091 1091 .col-md-11 {
1092 1092 width: 91.66666667%;
1093 1093 }
1094 1094 .col-md-10 {
1095 1095 width: 83.33333333%;
1096 1096 }
1097 1097 .col-md-9 {
1098 1098 width: 75%;
1099 1099 }
1100 1100 .col-md-8 {
1101 1101 width: 66.66666667%;
1102 1102 }
1103 1103 .col-md-7 {
1104 1104 width: 58.33333333%;
1105 1105 }
1106 1106 .col-md-6 {
1107 1107 width: 50%;
1108 1108 }
1109 1109 .col-md-5 {
1110 1110 width: 41.66666667%;
1111 1111 }
1112 1112 .col-md-4 {
1113 1113 width: 33.33333333%;
1114 1114 }
1115 1115 .col-md-3 {
1116 1116 width: 25%;
1117 1117 }
1118 1118 .col-md-2 {
1119 1119 width: 16.66666667%;
1120 1120 }
1121 1121 .col-md-1 {
1122 1122 width: 8.33333333%;
1123 1123 }
1124 1124 .col-md-pull-12 {
1125 1125 right: 100%;
1126 1126 }
1127 1127 .col-md-pull-11 {
1128 1128 right: 91.66666667%;
1129 1129 }
1130 1130 .col-md-pull-10 {
1131 1131 right: 83.33333333%;
1132 1132 }
1133 1133 .col-md-pull-9 {
1134 1134 right: 75%;
1135 1135 }
1136 1136 .col-md-pull-8 {
1137 1137 right: 66.66666667%;
1138 1138 }
1139 1139 .col-md-pull-7 {
1140 1140 right: 58.33333333%;
1141 1141 }
1142 1142 .col-md-pull-6 {
1143 1143 right: 50%;
1144 1144 }
1145 1145 .col-md-pull-5 {
1146 1146 right: 41.66666667%;
1147 1147 }
1148 1148 .col-md-pull-4 {
1149 1149 right: 33.33333333%;
1150 1150 }
1151 1151 .col-md-pull-3 {
1152 1152 right: 25%;
1153 1153 }
1154 1154 .col-md-pull-2 {
1155 1155 right: 16.66666667%;
1156 1156 }
1157 1157 .col-md-pull-1 {
1158 1158 right: 8.33333333%;
1159 1159 }
1160 1160 .col-md-pull-0 {
1161 1161 right: 0%;
1162 1162 }
1163 1163 .col-md-push-12 {
1164 1164 left: 100%;
1165 1165 }
1166 1166 .col-md-push-11 {
1167 1167 left: 91.66666667%;
1168 1168 }
1169 1169 .col-md-push-10 {
1170 1170 left: 83.33333333%;
1171 1171 }
1172 1172 .col-md-push-9 {
1173 1173 left: 75%;
1174 1174 }
1175 1175 .col-md-push-8 {
1176 1176 left: 66.66666667%;
1177 1177 }
1178 1178 .col-md-push-7 {
1179 1179 left: 58.33333333%;
1180 1180 }
1181 1181 .col-md-push-6 {
1182 1182 left: 50%;
1183 1183 }
1184 1184 .col-md-push-5 {
1185 1185 left: 41.66666667%;
1186 1186 }
1187 1187 .col-md-push-4 {
1188 1188 left: 33.33333333%;
1189 1189 }
1190 1190 .col-md-push-3 {
1191 1191 left: 25%;
1192 1192 }
1193 1193 .col-md-push-2 {
1194 1194 left: 16.66666667%;
1195 1195 }
1196 1196 .col-md-push-1 {
1197 1197 left: 8.33333333%;
1198 1198 }
1199 1199 .col-md-push-0 {
1200 1200 left: 0%;
1201 1201 }
1202 1202 .col-md-offset-12 {
1203 1203 margin-left: 100%;
1204 1204 }
1205 1205 .col-md-offset-11 {
1206 1206 margin-left: 91.66666667%;
1207 1207 }
1208 1208 .col-md-offset-10 {
1209 1209 margin-left: 83.33333333%;
1210 1210 }
1211 1211 .col-md-offset-9 {
1212 1212 margin-left: 75%;
1213 1213 }
1214 1214 .col-md-offset-8 {
1215 1215 margin-left: 66.66666667%;
1216 1216 }
1217 1217 .col-md-offset-7 {
1218 1218 margin-left: 58.33333333%;
1219 1219 }
1220 1220 .col-md-offset-6 {
1221 1221 margin-left: 50%;
1222 1222 }
1223 1223 .col-md-offset-5 {
1224 1224 margin-left: 41.66666667%;
1225 1225 }
1226 1226 .col-md-offset-4 {
1227 1227 margin-left: 33.33333333%;
1228 1228 }
1229 1229 .col-md-offset-3 {
1230 1230 margin-left: 25%;
1231 1231 }
1232 1232 .col-md-offset-2 {
1233 1233 margin-left: 16.66666667%;
1234 1234 }
1235 1235 .col-md-offset-1 {
1236 1236 margin-left: 8.33333333%;
1237 1237 }
1238 1238 .col-md-offset-0 {
1239 1239 margin-left: 0%;
1240 1240 }
1241 1241 }
1242 1242 @media (min-width: 1200px) {
1243 1243 .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
1244 1244 float: left;
1245 1245 }
1246 1246 .col-lg-12 {
1247 1247 width: 100%;
1248 1248 }
1249 1249 .col-lg-11 {
1250 1250 width: 91.66666667%;
1251 1251 }
1252 1252 .col-lg-10 {
1253 1253 width: 83.33333333%;
1254 1254 }
1255 1255 .col-lg-9 {
1256 1256 width: 75%;
1257 1257 }
1258 1258 .col-lg-8 {
1259 1259 width: 66.66666667%;
1260 1260 }
1261 1261 .col-lg-7 {
1262 1262 width: 58.33333333%;
1263 1263 }
1264 1264 .col-lg-6 {
1265 1265 width: 50%;
1266 1266 }
1267 1267 .col-lg-5 {
1268 1268 width: 41.66666667%;
1269 1269 }
1270 1270 .col-lg-4 {
1271 1271 width: 33.33333333%;
1272 1272 }
1273 1273 .col-lg-3 {
1274 1274 width: 25%;
1275 1275 }
1276 1276 .col-lg-2 {
1277 1277 width: 16.66666667%;
1278 1278 }
1279 1279 .col-lg-1 {
1280 1280 width: 8.33333333%;
1281 1281 }
1282 1282 .col-lg-pull-12 {
1283 1283 right: 100%;
1284 1284 }
1285 1285 .col-lg-pull-11 {
1286 1286 right: 91.66666667%;
1287 1287 }
1288 1288 .col-lg-pull-10 {
1289 1289 right: 83.33333333%;
1290 1290 }
1291 1291 .col-lg-pull-9 {
1292 1292 right: 75%;
1293 1293 }
1294 1294 .col-lg-pull-8 {
1295 1295 right: 66.66666667%;
1296 1296 }
1297 1297 .col-lg-pull-7 {
1298 1298 right: 58.33333333%;
1299 1299 }
1300 1300 .col-lg-pull-6 {
1301 1301 right: 50%;
1302 1302 }
1303 1303 .col-lg-pull-5 {
1304 1304 right: 41.66666667%;
1305 1305 }
1306 1306 .col-lg-pull-4 {
1307 1307 right: 33.33333333%;
1308 1308 }
1309 1309 .col-lg-pull-3 {
1310 1310 right: 25%;
1311 1311 }
1312 1312 .col-lg-pull-2 {
1313 1313 right: 16.66666667%;
1314 1314 }
1315 1315 .col-lg-pull-1 {
1316 1316 right: 8.33333333%;
1317 1317 }
1318 1318 .col-lg-pull-0 {
1319 1319 right: 0%;
1320 1320 }
1321 1321 .col-lg-push-12 {
1322 1322 left: 100%;
1323 1323 }
1324 1324 .col-lg-push-11 {
1325 1325 left: 91.66666667%;
1326 1326 }
1327 1327 .col-lg-push-10 {
1328 1328 left: 83.33333333%;
1329 1329 }
1330 1330 .col-lg-push-9 {
1331 1331 left: 75%;
1332 1332 }
1333 1333 .col-lg-push-8 {
1334 1334 left: 66.66666667%;
1335 1335 }
1336 1336 .col-lg-push-7 {
1337 1337 left: 58.33333333%;
1338 1338 }
1339 1339 .col-lg-push-6 {
1340 1340 left: 50%;
1341 1341 }
1342 1342 .col-lg-push-5 {
1343 1343 left: 41.66666667%;
1344 1344 }
1345 1345 .col-lg-push-4 {
1346 1346 left: 33.33333333%;
1347 1347 }
1348 1348 .col-lg-push-3 {
1349 1349 left: 25%;
1350 1350 }
1351 1351 .col-lg-push-2 {
1352 1352 left: 16.66666667%;
1353 1353 }
1354 1354 .col-lg-push-1 {
1355 1355 left: 8.33333333%;
1356 1356 }
1357 1357 .col-lg-push-0 {
1358 1358 left: 0%;
1359 1359 }
1360 1360 .col-lg-offset-12 {
1361 1361 margin-left: 100%;
1362 1362 }
1363 1363 .col-lg-offset-11 {
1364 1364 margin-left: 91.66666667%;
1365 1365 }
1366 1366 .col-lg-offset-10 {
1367 1367 margin-left: 83.33333333%;
1368 1368 }
1369 1369 .col-lg-offset-9 {
1370 1370 margin-left: 75%;
1371 1371 }
1372 1372 .col-lg-offset-8 {
1373 1373 margin-left: 66.66666667%;
1374 1374 }
1375 1375 .col-lg-offset-7 {
1376 1376 margin-left: 58.33333333%;
1377 1377 }
1378 1378 .col-lg-offset-6 {
1379 1379 margin-left: 50%;
1380 1380 }
1381 1381 .col-lg-offset-5 {
1382 1382 margin-left: 41.66666667%;
1383 1383 }
1384 1384 .col-lg-offset-4 {
1385 1385 margin-left: 33.33333333%;
1386 1386 }
1387 1387 .col-lg-offset-3 {
1388 1388 margin-left: 25%;
1389 1389 }
1390 1390 .col-lg-offset-2 {
1391 1391 margin-left: 16.66666667%;
1392 1392 }
1393 1393 .col-lg-offset-1 {
1394 1394 margin-left: 8.33333333%;
1395 1395 }
1396 1396 .col-lg-offset-0 {
1397 1397 margin-left: 0%;
1398 1398 }
1399 1399 }
1400 1400 table {
1401 1401 max-width: 100%;
1402 1402 background-color: transparent;
1403 1403 }
1404 1404 th {
1405 1405 text-align: left;
1406 1406 }
1407 1407 .table {
1408 1408 width: 100%;
1409 1409 margin-bottom: 18px;
1410 1410 }
1411 1411 .table > thead > tr > th,
1412 1412 .table > tbody > tr > th,
1413 1413 .table > tfoot > tr > th,
1414 1414 .table > thead > tr > td,
1415 1415 .table > tbody > tr > td,
1416 1416 .table > tfoot > tr > td {
1417 1417 padding: 8px;
1418 1418 line-height: 1.42857143;
1419 1419 vertical-align: top;
1420 1420 border-top: 1px solid #dddddd;
1421 1421 }
1422 1422 .table > thead > tr > th {
1423 1423 vertical-align: bottom;
1424 1424 border-bottom: 2px solid #dddddd;
1425 1425 }
1426 1426 .table > caption + thead > tr:first-child > th,
1427 1427 .table > colgroup + thead > tr:first-child > th,
1428 1428 .table > thead:first-child > tr:first-child > th,
1429 1429 .table > caption + thead > tr:first-child > td,
1430 1430 .table > colgroup + thead > tr:first-child > td,
1431 1431 .table > thead:first-child > tr:first-child > td {
1432 1432 border-top: 0;
1433 1433 }
1434 1434 .table > tbody + tbody {
1435 1435 border-top: 2px solid #dddddd;
1436 1436 }
1437 1437 .table .table {
1438 1438 background-color: #ffffff;
1439 1439 }
1440 1440 .table-condensed > thead > tr > th,
1441 1441 .table-condensed > tbody > tr > th,
1442 1442 .table-condensed > tfoot > tr > th,
1443 1443 .table-condensed > thead > tr > td,
1444 1444 .table-condensed > tbody > tr > td,
1445 1445 .table-condensed > tfoot > tr > td {
1446 1446 padding: 5px;
1447 1447 }
1448 1448 .table-bordered {
1449 1449 border: 1px solid #dddddd;
1450 1450 }
1451 1451 .table-bordered > thead > tr > th,
1452 1452 .table-bordered > tbody > tr > th,
1453 1453 .table-bordered > tfoot > tr > th,
1454 1454 .table-bordered > thead > tr > td,
1455 1455 .table-bordered > tbody > tr > td,
1456 1456 .table-bordered > tfoot > tr > td {
1457 1457 border: 1px solid #dddddd;
1458 1458 }
1459 1459 .table-bordered > thead > tr > th,
1460 1460 .table-bordered > thead > tr > td {
1461 1461 border-bottom-width: 2px;
1462 1462 }
1463 1463 .table-striped > tbody > tr:nth-child(odd) > td,
1464 1464 .table-striped > tbody > tr:nth-child(odd) > th {
1465 1465 background-color: #f9f9f9;
1466 1466 }
1467 1467 .table-hover > tbody > tr:hover > td,
1468 1468 .table-hover > tbody > tr:hover > th {
1469 1469 background-color: #f5f5f5;
1470 1470 }
1471 1471 table col[class*="col-"] {
1472 1472 position: static;
1473 1473 float: none;
1474 1474 display: table-column;
1475 1475 }
1476 1476 table td[class*="col-"],
1477 1477 table th[class*="col-"] {
1478 1478 position: static;
1479 1479 float: none;
1480 1480 display: table-cell;
1481 1481 }
1482 1482 .table > thead > tr > td.active,
1483 1483 .table > tbody > tr > td.active,
1484 1484 .table > tfoot > tr > td.active,
1485 1485 .table > thead > tr > th.active,
1486 1486 .table > tbody > tr > th.active,
1487 1487 .table > tfoot > tr > th.active,
1488 1488 .table > thead > tr.active > td,
1489 1489 .table > tbody > tr.active > td,
1490 1490 .table > tfoot > tr.active > td,
1491 1491 .table > thead > tr.active > th,
1492 1492 .table > tbody > tr.active > th,
1493 1493 .table > tfoot > tr.active > th {
1494 1494 background-color: #f5f5f5;
1495 1495 }
1496 1496 .table-hover > tbody > tr > td.active:hover,
1497 1497 .table-hover > tbody > tr > th.active:hover,
1498 1498 .table-hover > tbody > tr.active:hover > td,
1499 1499 .table-hover > tbody > tr.active:hover > th {
1500 1500 background-color: #e8e8e8;
1501 1501 }
1502 1502 .table > thead > tr > td.success,
1503 1503 .table > tbody > tr > td.success,
1504 1504 .table > tfoot > tr > td.success,
1505 1505 .table > thead > tr > th.success,
1506 1506 .table > tbody > tr > th.success,
1507 1507 .table > tfoot > tr > th.success,
1508 1508 .table > thead > tr.success > td,
1509 1509 .table > tbody > tr.success > td,
1510 1510 .table > tfoot > tr.success > td,
1511 1511 .table > thead > tr.success > th,
1512 1512 .table > tbody > tr.success > th,
1513 1513 .table > tfoot > tr.success > th {
1514 1514 background-color: #dff0d8;
1515 1515 }
1516 1516 .table-hover > tbody > tr > td.success:hover,
1517 1517 .table-hover > tbody > tr > th.success:hover,
1518 1518 .table-hover > tbody > tr.success:hover > td,
1519 1519 .table-hover > tbody > tr.success:hover > th {
1520 1520 background-color: #d0e9c6;
1521 1521 }
1522 1522 .table > thead > tr > td.info,
1523 1523 .table > tbody > tr > td.info,
1524 1524 .table > tfoot > tr > td.info,
1525 1525 .table > thead > tr > th.info,
1526 1526 .table > tbody > tr > th.info,
1527 1527 .table > tfoot > tr > th.info,
1528 1528 .table > thead > tr.info > td,
1529 1529 .table > tbody > tr.info > td,
1530 1530 .table > tfoot > tr.info > td,
1531 1531 .table > thead > tr.info > th,
1532 1532 .table > tbody > tr.info > th,
1533 1533 .table > tfoot > tr.info > th {
1534 1534 background-color: #d9edf7;
1535 1535 }
1536 1536 .table-hover > tbody > tr > td.info:hover,
1537 1537 .table-hover > tbody > tr > th.info:hover,
1538 1538 .table-hover > tbody > tr.info:hover > td,
1539 1539 .table-hover > tbody > tr.info:hover > th {
1540 1540 background-color: #c4e3f3;
1541 1541 }
1542 1542 .table > thead > tr > td.warning,
1543 1543 .table > tbody > tr > td.warning,
1544 1544 .table > tfoot > tr > td.warning,
1545 1545 .table > thead > tr > th.warning,
1546 1546 .table > tbody > tr > th.warning,
1547 1547 .table > tfoot > tr > th.warning,
1548 1548 .table > thead > tr.warning > td,
1549 1549 .table > tbody > tr.warning > td,
1550 1550 .table > tfoot > tr.warning > td,
1551 1551 .table > thead > tr.warning > th,
1552 1552 .table > tbody > tr.warning > th,
1553 1553 .table > tfoot > tr.warning > th {
1554 1554 background-color: #fcf8e3;
1555 1555 }
1556 1556 .table-hover > tbody > tr > td.warning:hover,
1557 1557 .table-hover > tbody > tr > th.warning:hover,
1558 1558 .table-hover > tbody > tr.warning:hover > td,
1559 1559 .table-hover > tbody > tr.warning:hover > th {
1560 1560 background-color: #faf2cc;
1561 1561 }
1562 1562 .table > thead > tr > td.danger,
1563 1563 .table > tbody > tr > td.danger,
1564 1564 .table > tfoot > tr > td.danger,
1565 1565 .table > thead > tr > th.danger,
1566 1566 .table > tbody > tr > th.danger,
1567 1567 .table > tfoot > tr > th.danger,
1568 1568 .table > thead > tr.danger > td,
1569 1569 .table > tbody > tr.danger > td,
1570 1570 .table > tfoot > tr.danger > td,
1571 1571 .table > thead > tr.danger > th,
1572 1572 .table > tbody > tr.danger > th,
1573 1573 .table > tfoot > tr.danger > th {
1574 1574 background-color: #f2dede;
1575 1575 }
1576 1576 .table-hover > tbody > tr > td.danger:hover,
1577 1577 .table-hover > tbody > tr > th.danger:hover,
1578 1578 .table-hover > tbody > tr.danger:hover > td,
1579 1579 .table-hover > tbody > tr.danger:hover > th {
1580 1580 background-color: #ebcccc;
1581 1581 }
1582 1582 @media (max-width: 767px) {
1583 1583 .table-responsive {
1584 1584 width: 100%;
1585 1585 margin-bottom: 13.5px;
1586 1586 overflow-y: hidden;
1587 1587 overflow-x: scroll;
1588 1588 -ms-overflow-style: -ms-autohiding-scrollbar;
1589 1589 border: 1px solid #dddddd;
1590 1590 -webkit-overflow-scrolling: touch;
1591 1591 }
1592 1592 .table-responsive > .table {
1593 1593 margin-bottom: 0;
1594 1594 }
1595 1595 .table-responsive > .table > thead > tr > th,
1596 1596 .table-responsive > .table > tbody > tr > th,
1597 1597 .table-responsive > .table > tfoot > tr > th,
1598 1598 .table-responsive > .table > thead > tr > td,
1599 1599 .table-responsive > .table > tbody > tr > td,
1600 1600 .table-responsive > .table > tfoot > tr > td {
1601 1601 white-space: nowrap;
1602 1602 }
1603 1603 .table-responsive > .table-bordered {
1604 1604 border: 0;
1605 1605 }
1606 1606 .table-responsive > .table-bordered > thead > tr > th:first-child,
1607 1607 .table-responsive > .table-bordered > tbody > tr > th:first-child,
1608 1608 .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1609 1609 .table-responsive > .table-bordered > thead > tr > td:first-child,
1610 1610 .table-responsive > .table-bordered > tbody > tr > td:first-child,
1611 1611 .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1612 1612 border-left: 0;
1613 1613 }
1614 1614 .table-responsive > .table-bordered > thead > tr > th:last-child,
1615 1615 .table-responsive > .table-bordered > tbody > tr > th:last-child,
1616 1616 .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1617 1617 .table-responsive > .table-bordered > thead > tr > td:last-child,
1618 1618 .table-responsive > .table-bordered > tbody > tr > td:last-child,
1619 1619 .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1620 1620 border-right: 0;
1621 1621 }
1622 1622 .table-responsive > .table-bordered > tbody > tr:last-child > th,
1623 1623 .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1624 1624 .table-responsive > .table-bordered > tbody > tr:last-child > td,
1625 1625 .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1626 1626 border-bottom: 0;
1627 1627 }
1628 1628 }
1629 1629 fieldset {
1630 1630 padding: 0;
1631 1631 margin: 0;
1632 1632 border: 0;
1633 1633 min-width: 0;
1634 1634 }
1635 1635 legend {
1636 1636 display: block;
1637 1637 width: 100%;
1638 1638 padding: 0;
1639 1639 margin-bottom: 18px;
1640 1640 font-size: 19.5px;
1641 1641 line-height: inherit;
1642 1642 color: #333333;
1643 1643 border: 0;
1644 1644 border-bottom: 1px solid #e5e5e5;
1645 1645 }
1646 1646 label {
1647 1647 display: inline-block;
1648 1648 margin-bottom: 5px;
1649 1649 font-weight: bold;
1650 1650 }
1651 1651 input[type="search"] {
1652 1652 -webkit-box-sizing: border-box;
1653 1653 -moz-box-sizing: border-box;
1654 1654 box-sizing: border-box;
1655 1655 }
1656 1656 input[type="radio"],
1657 1657 input[type="checkbox"] {
1658 1658 margin: 4px 0 0;
1659 1659 margin-top: 1px \9;
1660 1660 /* IE8-9 */
1661 1661 line-height: normal;
1662 1662 }
1663 1663 input[type="file"] {
1664 1664 display: block;
1665 1665 }
1666 1666 input[type="range"] {
1667 1667 display: block;
1668 1668 width: 100%;
1669 1669 }
1670 1670 select[multiple],
1671 1671 select[size] {
1672 1672 height: auto;
1673 1673 }
1674 1674 input[type="file"]:focus,
1675 1675 input[type="radio"]:focus,
1676 1676 input[type="checkbox"]:focus {
1677 1677 outline: thin dotted;
1678 1678 outline: 5px auto -webkit-focus-ring-color;
1679 1679 outline-offset: -2px;
1680 1680 }
1681 1681 output {
1682 1682 display: block;
1683 1683 padding-top: 7px;
1684 1684 font-size: 13px;
1685 1685 line-height: 1.42857143;
1686 1686 color: #555555;
1687 1687 }
1688 1688 .form-control {
1689 1689 display: block;
1690 1690 width: 100%;
1691 1691 height: 32px;
1692 1692 padding: 6px 12px;
1693 1693 font-size: 13px;
1694 1694 line-height: 1.42857143;
1695 1695 color: #555555;
1696 1696 background-color: #ffffff;
1697 1697 background-image: none;
1698 1698 border: 1px solid #cccccc;
1699 1699 border-radius: 4px;
1700 1700 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1701 1701 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1702 1702 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1703 1703 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1704 1704 }
1705 1705 .form-control:focus {
1706 1706 border-color: #66afe9;
1707 1707 outline: 0;
1708 1708 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1709 1709 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
1710 1710 }
1711 1711 .form-control::-moz-placeholder {
1712 1712 color: #999999;
1713 1713 opacity: 1;
1714 1714 }
1715 1715 .form-control:-ms-input-placeholder {
1716 1716 color: #999999;
1717 1717 }
1718 1718 .form-control::-webkit-input-placeholder {
1719 1719 color: #999999;
1720 1720 }
1721 1721 .form-control[disabled],
1722 1722 .form-control[readonly],
1723 1723 fieldset[disabled] .form-control {
1724 1724 cursor: not-allowed;
1725 1725 background-color: #eeeeee;
1726 1726 opacity: 1;
1727 1727 }
1728 1728 textarea.form-control {
1729 1729 height: auto;
1730 1730 }
1731 1731 input[type="search"] {
1732 1732 -webkit-appearance: none;
1733 1733 }
1734 1734 input[type="date"] {
1735 1735 line-height: 32px;
1736 1736 }
1737 1737 .form-group {
1738 1738 margin-bottom: 15px;
1739 1739 }
1740 1740 .radio,
1741 1741 .checkbox {
1742 1742 display: block;
1743 1743 min-height: 18px;
1744 1744 margin-top: 10px;
1745 1745 margin-bottom: 10px;
1746 1746 padding-left: 20px;
1747 1747 }
1748 1748 .radio label,
1749 1749 .checkbox label {
1750 1750 display: inline;
1751 1751 font-weight: normal;
1752 1752 cursor: pointer;
1753 1753 }
1754 1754 .radio input[type="radio"],
1755 1755 .radio-inline input[type="radio"],
1756 1756 .checkbox input[type="checkbox"],
1757 1757 .checkbox-inline input[type="checkbox"] {
1758 1758 float: left;
1759 1759 margin-left: -20px;
1760 1760 }
1761 1761 .radio + .radio,
1762 1762 .checkbox + .checkbox {
1763 1763 margin-top: -5px;
1764 1764 }
1765 1765 .radio-inline,
1766 1766 .checkbox-inline {
1767 1767 display: inline-block;
1768 1768 padding-left: 20px;
1769 1769 margin-bottom: 0;
1770 1770 vertical-align: middle;
1771 1771 font-weight: normal;
1772 1772 cursor: pointer;
1773 1773 }
1774 1774 .radio-inline + .radio-inline,
1775 1775 .checkbox-inline + .checkbox-inline {
1776 1776 margin-top: 0;
1777 1777 margin-left: 10px;
1778 1778 }
1779 1779 input[type="radio"][disabled],
1780 1780 input[type="checkbox"][disabled],
1781 1781 .radio[disabled],
1782 1782 .radio-inline[disabled],
1783 1783 .checkbox[disabled],
1784 1784 .checkbox-inline[disabled],
1785 1785 fieldset[disabled] input[type="radio"],
1786 1786 fieldset[disabled] input[type="checkbox"],
1787 1787 fieldset[disabled] .radio,
1788 1788 fieldset[disabled] .radio-inline,
1789 1789 fieldset[disabled] .checkbox,
1790 1790 fieldset[disabled] .checkbox-inline {
1791 1791 cursor: not-allowed;
1792 1792 }
1793 1793 .input-sm {
1794 1794 height: 30px;
1795 1795 padding: 5px 10px;
1796 1796 font-size: 12px;
1797 1797 line-height: 1.5;
1798 1798 border-radius: 3px;
1799 1799 }
1800 1800 select.input-sm {
1801 1801 height: 30px;
1802 1802 line-height: 30px;
1803 1803 }
1804 1804 textarea.input-sm,
1805 1805 select[multiple].input-sm {
1806 1806 height: auto;
1807 1807 }
1808 1808 .input-lg {
1809 1809 height: 45px;
1810 1810 padding: 10px 16px;
1811 1811 font-size: 17px;
1812 1812 line-height: 1.33;
1813 1813 border-radius: 6px;
1814 1814 }
1815 1815 select.input-lg {
1816 1816 height: 45px;
1817 1817 line-height: 45px;
1818 1818 }
1819 1819 textarea.input-lg,
1820 1820 select[multiple].input-lg {
1821 1821 height: auto;
1822 1822 }
1823 1823 .has-feedback {
1824 1824 position: relative;
1825 1825 }
1826 1826 .has-feedback .form-control {
1827 1827 padding-right: 40px;
1828 1828 }
1829 1829 .has-feedback .form-control-feedback {
1830 1830 position: absolute;
1831 1831 top: 23px;
1832 1832 right: 0;
1833 1833 display: block;
1834 1834 width: 32px;
1835 1835 height: 32px;
1836 1836 line-height: 32px;
1837 1837 text-align: center;
1838 1838 }
1839 1839 .has-success .help-block,
1840 1840 .has-success .control-label,
1841 1841 .has-success .radio,
1842 1842 .has-success .checkbox,
1843 1843 .has-success .radio-inline,
1844 1844 .has-success .checkbox-inline {
1845 1845 color: #3c763d;
1846 1846 }
1847 1847 .has-success .form-control {
1848 1848 border-color: #3c763d;
1849 1849 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1850 1850 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1851 1851 }
1852 1852 .has-success .form-control:focus {
1853 1853 border-color: #2b542c;
1854 1854 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1855 1855 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1856 1856 }
1857 1857 .has-success .input-group-addon {
1858 1858 color: #3c763d;
1859 1859 border-color: #3c763d;
1860 1860 background-color: #dff0d8;
1861 1861 }
1862 1862 .has-success .form-control-feedback {
1863 1863 color: #3c763d;
1864 1864 }
1865 1865 .has-warning .help-block,
1866 1866 .has-warning .control-label,
1867 1867 .has-warning .radio,
1868 1868 .has-warning .checkbox,
1869 1869 .has-warning .radio-inline,
1870 1870 .has-warning .checkbox-inline {
1871 1871 color: #8a6d3b;
1872 1872 }
1873 1873 .has-warning .form-control {
1874 1874 border-color: #8a6d3b;
1875 1875 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1876 1876 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1877 1877 }
1878 1878 .has-warning .form-control:focus {
1879 1879 border-color: #66512c;
1880 1880 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1881 1881 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1882 1882 }
1883 1883 .has-warning .input-group-addon {
1884 1884 color: #8a6d3b;
1885 1885 border-color: #8a6d3b;
1886 1886 background-color: #fcf8e3;
1887 1887 }
1888 1888 .has-warning .form-control-feedback {
1889 1889 color: #8a6d3b;
1890 1890 }
1891 1891 .has-error .help-block,
1892 1892 .has-error .control-label,
1893 1893 .has-error .radio,
1894 1894 .has-error .checkbox,
1895 1895 .has-error .radio-inline,
1896 1896 .has-error .checkbox-inline {
1897 1897 color: #a94442;
1898 1898 }
1899 1899 .has-error .form-control {
1900 1900 border-color: #a94442;
1901 1901 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1902 1902 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1903 1903 }
1904 1904 .has-error .form-control:focus {
1905 1905 border-color: #843534;
1906 1906 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1907 1907 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1908 1908 }
1909 1909 .has-error .input-group-addon {
1910 1910 color: #a94442;
1911 1911 border-color: #a94442;
1912 1912 background-color: #f2dede;
1913 1913 }
1914 1914 .has-error .form-control-feedback {
1915 1915 color: #a94442;
1916 1916 }
1917 1917 .form-control-static {
1918 1918 margin-bottom: 0;
1919 1919 }
1920 1920 .help-block {
1921 1921 display: block;
1922 1922 margin-top: 5px;
1923 1923 margin-bottom: 10px;
1924 1924 color: #404040;
1925 1925 }
1926 1926 @media (min-width: 768px) {
1927 1927 .form-inline .form-group {
1928 1928 display: inline-block;
1929 1929 margin-bottom: 0;
1930 1930 vertical-align: middle;
1931 1931 }
1932 1932 .form-inline .form-control {
1933 1933 display: inline-block;
1934 1934 width: auto;
1935 1935 vertical-align: middle;
1936 1936 }
1937 1937 .form-inline .input-group > .form-control {
1938 1938 width: 100%;
1939 1939 }
1940 1940 .form-inline .control-label {
1941 1941 margin-bottom: 0;
1942 1942 vertical-align: middle;
1943 1943 }
1944 1944 .form-inline .radio,
1945 1945 .form-inline .checkbox {
1946 1946 display: inline-block;
1947 1947 margin-top: 0;
1948 1948 margin-bottom: 0;
1949 1949 padding-left: 0;
1950 1950 vertical-align: middle;
1951 1951 }
1952 1952 .form-inline .radio input[type="radio"],
1953 1953 .form-inline .checkbox input[type="checkbox"] {
1954 1954 float: none;
1955 1955 margin-left: 0;
1956 1956 }
1957 1957 .form-inline .has-feedback .form-control-feedback {
1958 1958 top: 0;
1959 1959 }
1960 1960 }
1961 1961 .form-horizontal .control-label,
1962 1962 .form-horizontal .radio,
1963 1963 .form-horizontal .checkbox,
1964 1964 .form-horizontal .radio-inline,
1965 1965 .form-horizontal .checkbox-inline {
1966 1966 margin-top: 0;
1967 1967 margin-bottom: 0;
1968 1968 padding-top: 7px;
1969 1969 }
1970 1970 .form-horizontal .radio,
1971 1971 .form-horizontal .checkbox {
1972 1972 min-height: 25px;
1973 1973 }
1974 1974 .form-horizontal .form-group {
1975 1975 margin-left: -15px;
1976 1976 margin-right: -15px;
1977 1977 }
1978 1978 .form-horizontal .form-control-static {
1979 1979 padding-top: 7px;
1980 1980 }
1981 1981 @media (min-width: 768px) {
1982 1982 .form-horizontal .control-label {
1983 1983 text-align: right;
1984 1984 }
1985 1985 }
1986 1986 .form-horizontal .has-feedback .form-control-feedback {
1987 1987 top: 0;
1988 1988 right: 15px;
1989 1989 }
1990 1990 .btn {
1991 1991 display: inline-block;
1992 1992 margin-bottom: 0;
1993 1993 font-weight: normal;
1994 1994 text-align: center;
1995 1995 vertical-align: middle;
1996 1996 cursor: pointer;
1997 1997 background-image: none;
1998 1998 border: 1px solid transparent;
1999 1999 white-space: nowrap;
2000 2000 padding: 6px 12px;
2001 2001 font-size: 13px;
2002 2002 line-height: 1.42857143;
2003 2003 border-radius: 4px;
2004 2004 -webkit-user-select: none;
2005 2005 -moz-user-select: none;
2006 2006 -ms-user-select: none;
2007 2007 user-select: none;
2008 2008 }
2009 2009 .btn:focus,
2010 2010 .btn:active:focus,
2011 2011 .btn.active:focus {
2012 2012 outline: thin dotted;
2013 2013 outline: 5px auto -webkit-focus-ring-color;
2014 2014 outline-offset: -2px;
2015 2015 }
2016 2016 .btn:hover,
2017 2017 .btn:focus {
2018 2018 color: #333333;
2019 2019 text-decoration: none;
2020 2020 }
2021 2021 .btn:active,
2022 2022 .btn.active {
2023 2023 outline: 0;
2024 2024 background-image: none;
2025 2025 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2026 2026 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2027 2027 }
2028 2028 .btn.disabled,
2029 2029 .btn[disabled],
2030 2030 fieldset[disabled] .btn {
2031 2031 cursor: not-allowed;
2032 2032 pointer-events: none;
2033 2033 opacity: 0.65;
2034 2034 filter: alpha(opacity=65);
2035 2035 -webkit-box-shadow: none;
2036 2036 box-shadow: none;
2037 2037 }
2038 2038 .btn-default {
2039 2039 color: #333333;
2040 2040 background-color: #ffffff;
2041 2041 border-color: #cccccc;
2042 2042 }
2043 2043 .btn-default:hover,
2044 2044 .btn-default:focus,
2045 2045 .btn-default:active,
2046 2046 .btn-default.active,
2047 2047 .open .dropdown-toggle.btn-default {
2048 2048 color: #333333;
2049 2049 background-color: #ebebeb;
2050 2050 border-color: #adadad;
2051 2051 }
2052 2052 .btn-default:active,
2053 2053 .btn-default.active,
2054 2054 .open .dropdown-toggle.btn-default {
2055 2055 background-image: none;
2056 2056 }
2057 2057 .btn-default.disabled,
2058 2058 .btn-default[disabled],
2059 2059 fieldset[disabled] .btn-default,
2060 2060 .btn-default.disabled:hover,
2061 2061 .btn-default[disabled]:hover,
2062 2062 fieldset[disabled] .btn-default:hover,
2063 2063 .btn-default.disabled:focus,
2064 2064 .btn-default[disabled]:focus,
2065 2065 fieldset[disabled] .btn-default:focus,
2066 2066 .btn-default.disabled:active,
2067 2067 .btn-default[disabled]:active,
2068 2068 fieldset[disabled] .btn-default:active,
2069 2069 .btn-default.disabled.active,
2070 2070 .btn-default[disabled].active,
2071 2071 fieldset[disabled] .btn-default.active {
2072 2072 background-color: #ffffff;
2073 2073 border-color: #cccccc;
2074 2074 }
2075 2075 .btn-default .badge {
2076 2076 color: #ffffff;
2077 2077 background-color: #333333;
2078 2078 }
2079 2079 .btn-primary {
2080 2080 color: #ffffff;
2081 2081 background-color: #428bca;
2082 2082 border-color: #357ebd;
2083 2083 }
2084 2084 .btn-primary:hover,
2085 2085 .btn-primary:focus,
2086 2086 .btn-primary:active,
2087 2087 .btn-primary.active,
2088 2088 .open .dropdown-toggle.btn-primary {
2089 2089 color: #ffffff;
2090 2090 background-color: #3276b1;
2091 2091 border-color: #285e8e;
2092 2092 }
2093 2093 .btn-primary:active,
2094 2094 .btn-primary.active,
2095 2095 .open .dropdown-toggle.btn-primary {
2096 2096 background-image: none;
2097 2097 }
2098 2098 .btn-primary.disabled,
2099 2099 .btn-primary[disabled],
2100 2100 fieldset[disabled] .btn-primary,
2101 2101 .btn-primary.disabled:hover,
2102 2102 .btn-primary[disabled]:hover,
2103 2103 fieldset[disabled] .btn-primary:hover,
2104 2104 .btn-primary.disabled:focus,
2105 2105 .btn-primary[disabled]:focus,
2106 2106 fieldset[disabled] .btn-primary:focus,
2107 2107 .btn-primary.disabled:active,
2108 2108 .btn-primary[disabled]:active,
2109 2109 fieldset[disabled] .btn-primary:active,
2110 2110 .btn-primary.disabled.active,
2111 2111 .btn-primary[disabled].active,
2112 2112 fieldset[disabled] .btn-primary.active {
2113 2113 background-color: #428bca;
2114 2114 border-color: #357ebd;
2115 2115 }
2116 2116 .btn-primary .badge {
2117 2117 color: #428bca;
2118 2118 background-color: #ffffff;
2119 2119 }
2120 2120 .btn-success {
2121 2121 color: #ffffff;
2122 2122 background-color: #5cb85c;
2123 2123 border-color: #4cae4c;
2124 2124 }
2125 2125 .btn-success:hover,
2126 2126 .btn-success:focus,
2127 2127 .btn-success:active,
2128 2128 .btn-success.active,
2129 2129 .open .dropdown-toggle.btn-success {
2130 2130 color: #ffffff;
2131 2131 background-color: #47a447;
2132 2132 border-color: #398439;
2133 2133 }
2134 2134 .btn-success:active,
2135 2135 .btn-success.active,
2136 2136 .open .dropdown-toggle.btn-success {
2137 2137 background-image: none;
2138 2138 }
2139 2139 .btn-success.disabled,
2140 2140 .btn-success[disabled],
2141 2141 fieldset[disabled] .btn-success,
2142 2142 .btn-success.disabled:hover,
2143 2143 .btn-success[disabled]:hover,
2144 2144 fieldset[disabled] .btn-success:hover,
2145 2145 .btn-success.disabled:focus,
2146 2146 .btn-success[disabled]:focus,
2147 2147 fieldset[disabled] .btn-success:focus,
2148 2148 .btn-success.disabled:active,
2149 2149 .btn-success[disabled]:active,
2150 2150 fieldset[disabled] .btn-success:active,
2151 2151 .btn-success.disabled.active,
2152 2152 .btn-success[disabled].active,
2153 2153 fieldset[disabled] .btn-success.active {
2154 2154 background-color: #5cb85c;
2155 2155 border-color: #4cae4c;
2156 2156 }
2157 2157 .btn-success .badge {
2158 2158 color: #5cb85c;
2159 2159 background-color: #ffffff;
2160 2160 }
2161 2161 .btn-info {
2162 2162 color: #ffffff;
2163 2163 background-color: #5bc0de;
2164 2164 border-color: #46b8da;
2165 2165 }
2166 2166 .btn-info:hover,
2167 2167 .btn-info:focus,
2168 2168 .btn-info:active,
2169 2169 .btn-info.active,
2170 2170 .open .dropdown-toggle.btn-info {
2171 2171 color: #ffffff;
2172 2172 background-color: #39b3d7;
2173 2173 border-color: #269abc;
2174 2174 }
2175 2175 .btn-info:active,
2176 2176 .btn-info.active,
2177 2177 .open .dropdown-toggle.btn-info {
2178 2178 background-image: none;
2179 2179 }
2180 2180 .btn-info.disabled,
2181 2181 .btn-info[disabled],
2182 2182 fieldset[disabled] .btn-info,
2183 2183 .btn-info.disabled:hover,
2184 2184 .btn-info[disabled]:hover,
2185 2185 fieldset[disabled] .btn-info:hover,
2186 2186 .btn-info.disabled:focus,
2187 2187 .btn-info[disabled]:focus,
2188 2188 fieldset[disabled] .btn-info:focus,
2189 2189 .btn-info.disabled:active,
2190 2190 .btn-info[disabled]:active,
2191 2191 fieldset[disabled] .btn-info:active,
2192 2192 .btn-info.disabled.active,
2193 2193 .btn-info[disabled].active,
2194 2194 fieldset[disabled] .btn-info.active {
2195 2195 background-color: #5bc0de;
2196 2196 border-color: #46b8da;
2197 2197 }
2198 2198 .btn-info .badge {
2199 2199 color: #5bc0de;
2200 2200 background-color: #ffffff;
2201 2201 }
2202 2202 .btn-warning {
2203 2203 color: #ffffff;
2204 2204 background-color: #f0ad4e;
2205 2205 border-color: #eea236;
2206 2206 }
2207 2207 .btn-warning:hover,
2208 2208 .btn-warning:focus,
2209 2209 .btn-warning:active,
2210 2210 .btn-warning.active,
2211 2211 .open .dropdown-toggle.btn-warning {
2212 2212 color: #ffffff;
2213 2213 background-color: #ed9c28;
2214 2214 border-color: #d58512;
2215 2215 }
2216 2216 .btn-warning:active,
2217 2217 .btn-warning.active,
2218 2218 .open .dropdown-toggle.btn-warning {
2219 2219 background-image: none;
2220 2220 }
2221 2221 .btn-warning.disabled,
2222 2222 .btn-warning[disabled],
2223 2223 fieldset[disabled] .btn-warning,
2224 2224 .btn-warning.disabled:hover,
2225 2225 .btn-warning[disabled]:hover,
2226 2226 fieldset[disabled] .btn-warning:hover,
2227 2227 .btn-warning.disabled:focus,
2228 2228 .btn-warning[disabled]:focus,
2229 2229 fieldset[disabled] .btn-warning:focus,
2230 2230 .btn-warning.disabled:active,
2231 2231 .btn-warning[disabled]:active,
2232 2232 fieldset[disabled] .btn-warning:active,
2233 2233 .btn-warning.disabled.active,
2234 2234 .btn-warning[disabled].active,
2235 2235 fieldset[disabled] .btn-warning.active {
2236 2236 background-color: #f0ad4e;
2237 2237 border-color: #eea236;
2238 2238 }
2239 2239 .btn-warning .badge {
2240 2240 color: #f0ad4e;
2241 2241 background-color: #ffffff;
2242 2242 }
2243 2243 .btn-danger {
2244 2244 color: #ffffff;
2245 2245 background-color: #d9534f;
2246 2246 border-color: #d43f3a;
2247 2247 }
2248 2248 .btn-danger:hover,
2249 2249 .btn-danger:focus,
2250 2250 .btn-danger:active,
2251 2251 .btn-danger.active,
2252 2252 .open .dropdown-toggle.btn-danger {
2253 2253 color: #ffffff;
2254 2254 background-color: #d2322d;
2255 2255 border-color: #ac2925;
2256 2256 }
2257 2257 .btn-danger:active,
2258 2258 .btn-danger.active,
2259 2259 .open .dropdown-toggle.btn-danger {
2260 2260 background-image: none;
2261 2261 }
2262 2262 .btn-danger.disabled,
2263 2263 .btn-danger[disabled],
2264 2264 fieldset[disabled] .btn-danger,
2265 2265 .btn-danger.disabled:hover,
2266 2266 .btn-danger[disabled]:hover,
2267 2267 fieldset[disabled] .btn-danger:hover,
2268 2268 .btn-danger.disabled:focus,
2269 2269 .btn-danger[disabled]:focus,
2270 2270 fieldset[disabled] .btn-danger:focus,
2271 2271 .btn-danger.disabled:active,
2272 2272 .btn-danger[disabled]:active,
2273 2273 fieldset[disabled] .btn-danger:active,
2274 2274 .btn-danger.disabled.active,
2275 2275 .btn-danger[disabled].active,
2276 2276 fieldset[disabled] .btn-danger.active {
2277 2277 background-color: #d9534f;
2278 2278 border-color: #d43f3a;
2279 2279 }
2280 2280 .btn-danger .badge {
2281 2281 color: #d9534f;
2282 2282 background-color: #ffffff;
2283 2283 }
2284 2284 .btn-link {
2285 2285 color: #428bca;
2286 2286 font-weight: normal;
2287 2287 cursor: pointer;
2288 2288 border-radius: 0;
2289 2289 }
2290 2290 .btn-link,
2291 2291 .btn-link:active,
2292 2292 .btn-link[disabled],
2293 2293 fieldset[disabled] .btn-link {
2294 2294 background-color: transparent;
2295 2295 -webkit-box-shadow: none;
2296 2296 box-shadow: none;
2297 2297 }
2298 2298 .btn-link,
2299 2299 .btn-link:hover,
2300 2300 .btn-link:focus,
2301 2301 .btn-link:active {
2302 2302 border-color: transparent;
2303 2303 }
2304 2304 .btn-link:hover,
2305 2305 .btn-link:focus {
2306 2306 color: #2a6496;
2307 2307 text-decoration: underline;
2308 2308 background-color: transparent;
2309 2309 }
2310 2310 .btn-link[disabled]:hover,
2311 2311 fieldset[disabled] .btn-link:hover,
2312 2312 .btn-link[disabled]:focus,
2313 2313 fieldset[disabled] .btn-link:focus {
2314 2314 color: #999999;
2315 2315 text-decoration: none;
2316 2316 }
2317 2317 .btn-lg,
2318 2318 .btn-group-lg > .btn {
2319 2319 padding: 10px 16px;
2320 2320 font-size: 17px;
2321 2321 line-height: 1.33;
2322 2322 border-radius: 6px;
2323 2323 }
2324 2324 .btn-sm,
2325 2325 .btn-group-sm > .btn {
2326 2326 padding: 5px 10px;
2327 2327 font-size: 12px;
2328 2328 line-height: 1.5;
2329 2329 border-radius: 3px;
2330 2330 }
2331 2331 .btn-xs,
2332 2332 .btn-group-xs > .btn {
2333 2333 padding: 1px 5px;
2334 2334 font-size: 12px;
2335 2335 line-height: 1.5;
2336 2336 border-radius: 3px;
2337 2337 }
2338 2338 .btn-block {
2339 2339 display: block;
2340 2340 width: 100%;
2341 2341 padding-left: 0;
2342 2342 padding-right: 0;
2343 2343 }
2344 2344 .btn-block + .btn-block {
2345 2345 margin-top: 5px;
2346 2346 }
2347 2347 input[type="submit"].btn-block,
2348 2348 input[type="reset"].btn-block,
2349 2349 input[type="button"].btn-block {
2350 2350 width: 100%;
2351 2351 }
2352 2352 .fade {
2353 2353 opacity: 0;
2354 2354 -webkit-transition: opacity 0.15s linear;
2355 2355 transition: opacity 0.15s linear;
2356 2356 }
2357 2357 .fade.in {
2358 2358 opacity: 1;
2359 2359 }
2360 2360 .collapse {
2361 2361 display: none;
2362 2362 }
2363 2363 .collapse.in {
2364 2364 display: block;
2365 2365 }
2366 2366 .collapsing {
2367 2367 position: relative;
2368 2368 height: 0;
2369 2369 overflow: hidden;
2370 2370 -webkit-transition: height 0.35s ease;
2371 2371 transition: height 0.35s ease;
2372 2372 }
2373 2373 @font-face {
2374 2374 font-family: 'Glyphicons Halflings';
2375 2375 src: url('../fonts/glyphicons-halflings-regular.eot');
2376 2376 src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
2377 2377 }
2378 2378 .glyphicon {
2379 2379 position: relative;
2380 2380 top: 1px;
2381 2381 display: inline-block;
2382 2382 font-family: 'Glyphicons Halflings';
2383 2383 font-style: normal;
2384 2384 font-weight: normal;
2385 2385 line-height: 1;
2386 2386 -webkit-font-smoothing: antialiased;
2387 2387 -moz-osx-font-smoothing: grayscale;
2388 2388 }
2389 2389 .glyphicon-asterisk:before {
2390 2390 content: "\2a";
2391 2391 }
2392 2392 .glyphicon-plus:before {
2393 2393 content: "\2b";
2394 2394 }
2395 2395 .glyphicon-euro:before {
2396 2396 content: "\20ac";
2397 2397 }
2398 2398 .glyphicon-minus:before {
2399 2399 content: "\2212";
2400 2400 }
2401 2401 .glyphicon-cloud:before {
2402 2402 content: "\2601";
2403 2403 }
2404 2404 .glyphicon-envelope:before {
2405 2405 content: "\2709";
2406 2406 }
2407 2407 .glyphicon-pencil:before {
2408 2408 content: "\270f";
2409 2409 }
2410 2410 .glyphicon-glass:before {
2411 2411 content: "\e001";
2412 2412 }
2413 2413 .glyphicon-music:before {
2414 2414 content: "\e002";
2415 2415 }
2416 2416 .glyphicon-search:before {
2417 2417 content: "\e003";
2418 2418 }
2419 2419 .glyphicon-heart:before {
2420 2420 content: "\e005";
2421 2421 }
2422 2422 .glyphicon-star:before {
2423 2423 content: "\e006";
2424 2424 }
2425 2425 .glyphicon-star-empty:before {
2426 2426 content: "\e007";
2427 2427 }
2428 2428 .glyphicon-user:before {
2429 2429 content: "\e008";
2430 2430 }
2431 2431 .glyphicon-film:before {
2432 2432 content: "\e009";
2433 2433 }
2434 2434 .glyphicon-th-large:before {
2435 2435 content: "\e010";
2436 2436 }
2437 2437 .glyphicon-th:before {
2438 2438 content: "\e011";
2439 2439 }
2440 2440 .glyphicon-th-list:before {
2441 2441 content: "\e012";
2442 2442 }
2443 2443 .glyphicon-ok:before {
2444 2444 content: "\e013";
2445 2445 }
2446 2446 .glyphicon-remove:before {
2447 2447 content: "\e014";
2448 2448 }
2449 2449 .glyphicon-zoom-in:before {
2450 2450 content: "\e015";
2451 2451 }
2452 2452 .glyphicon-zoom-out:before {
2453 2453 content: "\e016";
2454 2454 }
2455 2455 .glyphicon-off:before {
2456 2456 content: "\e017";
2457 2457 }
2458 2458 .glyphicon-signal:before {
2459 2459 content: "\e018";
2460 2460 }
2461 2461 .glyphicon-cog:before {
2462 2462 content: "\e019";
2463 2463 }
2464 2464 .glyphicon-trash:before {
2465 2465 content: "\e020";
2466 2466 }
2467 2467 .glyphicon-home:before {
2468 2468 content: "\e021";
2469 2469 }
2470 2470 .glyphicon-file:before {
2471 2471 content: "\e022";
2472 2472 }
2473 2473 .glyphicon-time:before {
2474 2474 content: "\e023";
2475 2475 }
2476 2476 .glyphicon-road:before {
2477 2477 content: "\e024";
2478 2478 }
2479 2479 .glyphicon-download-alt:before {
2480 2480 content: "\e025";
2481 2481 }
2482 2482 .glyphicon-download:before {
2483 2483 content: "\e026";
2484 2484 }
2485 2485 .glyphicon-upload:before {
2486 2486 content: "\e027";
2487 2487 }
2488 2488 .glyphicon-inbox:before {
2489 2489 content: "\e028";
2490 2490 }
2491 2491 .glyphicon-play-circle:before {
2492 2492 content: "\e029";
2493 2493 }
2494 2494 .glyphicon-repeat:before {
2495 2495 content: "\e030";
2496 2496 }
2497 2497 .glyphicon-refresh:before {
2498 2498 content: "\e031";
2499 2499 }
2500 2500 .glyphicon-list-alt:before {
2501 2501 content: "\e032";
2502 2502 }
2503 2503 .glyphicon-lock:before {
2504 2504 content: "\e033";
2505 2505 }
2506 2506 .glyphicon-flag:before {
2507 2507 content: "\e034";
2508 2508 }
2509 2509 .glyphicon-headphones:before {
2510 2510 content: "\e035";
2511 2511 }
2512 2512 .glyphicon-volume-off:before {
2513 2513 content: "\e036";
2514 2514 }
2515 2515 .glyphicon-volume-down:before {
2516 2516 content: "\e037";
2517 2517 }
2518 2518 .glyphicon-volume-up:before {
2519 2519 content: "\e038";
2520 2520 }
2521 2521 .glyphicon-qrcode:before {
2522 2522 content: "\e039";
2523 2523 }
2524 2524 .glyphicon-barcode:before {
2525 2525 content: "\e040";
2526 2526 }
2527 2527 .glyphicon-tag:before {
2528 2528 content: "\e041";
2529 2529 }
2530 2530 .glyphicon-tags:before {
2531 2531 content: "\e042";
2532 2532 }
2533 2533 .glyphicon-book:before {
2534 2534 content: "\e043";
2535 2535 }
2536 2536 .glyphicon-bookmark:before {
2537 2537 content: "\e044";
2538 2538 }
2539 2539 .glyphicon-print:before {
2540 2540 content: "\e045";
2541 2541 }
2542 2542 .glyphicon-camera:before {
2543 2543 content: "\e046";
2544 2544 }
2545 2545 .glyphicon-font:before {
2546 2546 content: "\e047";
2547 2547 }
2548 2548 .glyphicon-bold:before {
2549 2549 content: "\e048";
2550 2550 }
2551 2551 .glyphicon-italic:before {
2552 2552 content: "\e049";
2553 2553 }
2554 2554 .glyphicon-text-height:before {
2555 2555 content: "\e050";
2556 2556 }
2557 2557 .glyphicon-text-width:before {
2558 2558 content: "\e051";
2559 2559 }
2560 2560 .glyphicon-align-left:before {
2561 2561 content: "\e052";
2562 2562 }
2563 2563 .glyphicon-align-center:before {
2564 2564 content: "\e053";
2565 2565 }
2566 2566 .glyphicon-align-right:before {
2567 2567 content: "\e054";
2568 2568 }
2569 2569 .glyphicon-align-justify:before {
2570 2570 content: "\e055";
2571 2571 }
2572 2572 .glyphicon-list:before {
2573 2573 content: "\e056";
2574 2574 }
2575 2575 .glyphicon-indent-left:before {
2576 2576 content: "\e057";
2577 2577 }
2578 2578 .glyphicon-indent-right:before {
2579 2579 content: "\e058";
2580 2580 }
2581 2581 .glyphicon-facetime-video:before {
2582 2582 content: "\e059";
2583 2583 }
2584 2584 .glyphicon-picture:before {
2585 2585 content: "\e060";
2586 2586 }
2587 2587 .glyphicon-map-marker:before {
2588 2588 content: "\e062";
2589 2589 }
2590 2590 .glyphicon-adjust:before {
2591 2591 content: "\e063";
2592 2592 }
2593 2593 .glyphicon-tint:before {
2594 2594 content: "\e064";
2595 2595 }
2596 2596 .glyphicon-edit:before {
2597 2597 content: "\e065";
2598 2598 }
2599 2599 .glyphicon-share:before {
2600 2600 content: "\e066";
2601 2601 }
2602 2602 .glyphicon-check:before {
2603 2603 content: "\e067";
2604 2604 }
2605 2605 .glyphicon-move:before {
2606 2606 content: "\e068";
2607 2607 }
2608 2608 .glyphicon-step-backward:before {
2609 2609 content: "\e069";
2610 2610 }
2611 2611 .glyphicon-fast-backward:before {
2612 2612 content: "\e070";
2613 2613 }
2614 2614 .glyphicon-backward:before {
2615 2615 content: "\e071";
2616 2616 }
2617 2617 .glyphicon-play:before {
2618 2618 content: "\e072";
2619 2619 }
2620 2620 .glyphicon-pause:before {
2621 2621 content: "\e073";
2622 2622 }
2623 2623 .glyphicon-stop:before {
2624 2624 content: "\e074";
2625 2625 }
2626 2626 .glyphicon-forward:before {
2627 2627 content: "\e075";
2628 2628 }
2629 2629 .glyphicon-fast-forward:before {
2630 2630 content: "\e076";
2631 2631 }
2632 2632 .glyphicon-step-forward:before {
2633 2633 content: "\e077";
2634 2634 }
2635 2635 .glyphicon-eject:before {
2636 2636 content: "\e078";
2637 2637 }
2638 2638 .glyphicon-chevron-left:before {
2639 2639 content: "\e079";
2640 2640 }
2641 2641 .glyphicon-chevron-right:before {
2642 2642 content: "\e080";
2643 2643 }
2644 2644 .glyphicon-plus-sign:before {
2645 2645 content: "\e081";
2646 2646 }
2647 2647 .glyphicon-minus-sign:before {
2648 2648 content: "\e082";
2649 2649 }
2650 2650 .glyphicon-remove-sign:before {
2651 2651 content: "\e083";
2652 2652 }
2653 2653 .glyphicon-ok-sign:before {
2654 2654 content: "\e084";
2655 2655 }
2656 2656 .glyphicon-question-sign:before {
2657 2657 content: "\e085";
2658 2658 }
2659 2659 .glyphicon-info-sign:before {
2660 2660 content: "\e086";
2661 2661 }
2662 2662 .glyphicon-screenshot:before {
2663 2663 content: "\e087";
2664 2664 }
2665 2665 .glyphicon-remove-circle:before {
2666 2666 content: "\e088";
2667 2667 }
2668 2668 .glyphicon-ok-circle:before {
2669 2669 content: "\e089";
2670 2670 }
2671 2671 .glyphicon-ban-circle:before {
2672 2672 content: "\e090";
2673 2673 }
2674 2674 .glyphicon-arrow-left:before {
2675 2675 content: "\e091";
2676 2676 }
2677 2677 .glyphicon-arrow-right:before {
2678 2678 content: "\e092";
2679 2679 }
2680 2680 .glyphicon-arrow-up:before {
2681 2681 content: "\e093";
2682 2682 }
2683 2683 .glyphicon-arrow-down:before {
2684 2684 content: "\e094";
2685 2685 }
2686 2686 .glyphicon-share-alt:before {
2687 2687 content: "\e095";
2688 2688 }
2689 2689 .glyphicon-resize-full:before {
2690 2690 content: "\e096";
2691 2691 }
2692 2692 .glyphicon-resize-small:before {
2693 2693 content: "\e097";
2694 2694 }
2695 2695 .glyphicon-exclamation-sign:before {
2696 2696 content: "\e101";
2697 2697 }
2698 2698 .glyphicon-gift:before {
2699 2699 content: "\e102";
2700 2700 }
2701 2701 .glyphicon-leaf:before {
2702 2702 content: "\e103";
2703 2703 }
2704 2704 .glyphicon-fire:before {
2705 2705 content: "\e104";
2706 2706 }
2707 2707 .glyphicon-eye-open:before {
2708 2708 content: "\e105";
2709 2709 }
2710 2710 .glyphicon-eye-close:before {
2711 2711 content: "\e106";
2712 2712 }
2713 2713 .glyphicon-warning-sign:before {
2714 2714 content: "\e107";
2715 2715 }
2716 2716 .glyphicon-plane:before {
2717 2717 content: "\e108";
2718 2718 }
2719 2719 .glyphicon-calendar:before {
2720 2720 content: "\e109";
2721 2721 }
2722 2722 .glyphicon-random:before {
2723 2723 content: "\e110";
2724 2724 }
2725 2725 .glyphicon-comment:before {
2726 2726 content: "\e111";
2727 2727 }
2728 2728 .glyphicon-magnet:before {
2729 2729 content: "\e112";
2730 2730 }
2731 2731 .glyphicon-chevron-up:before {
2732 2732 content: "\e113";
2733 2733 }
2734 2734 .glyphicon-chevron-down:before {
2735 2735 content: "\e114";
2736 2736 }
2737 2737 .glyphicon-retweet:before {
2738 2738 content: "\e115";
2739 2739 }
2740 2740 .glyphicon-shopping-cart:before {
2741 2741 content: "\e116";
2742 2742 }
2743 2743 .glyphicon-folder-close:before {
2744 2744 content: "\e117";
2745 2745 }
2746 2746 .glyphicon-folder-open:before {
2747 2747 content: "\e118";
2748 2748 }
2749 2749 .glyphicon-resize-vertical:before {
2750 2750 content: "\e119";
2751 2751 }
2752 2752 .glyphicon-resize-horizontal:before {
2753 2753 content: "\e120";
2754 2754 }
2755 2755 .glyphicon-hdd:before {
2756 2756 content: "\e121";
2757 2757 }
2758 2758 .glyphicon-bullhorn:before {
2759 2759 content: "\e122";
2760 2760 }
2761 2761 .glyphicon-bell:before {
2762 2762 content: "\e123";
2763 2763 }
2764 2764 .glyphicon-certificate:before {
2765 2765 content: "\e124";
2766 2766 }
2767 2767 .glyphicon-thumbs-up:before {
2768 2768 content: "\e125";
2769 2769 }
2770 2770 .glyphicon-thumbs-down:before {
2771 2771 content: "\e126";
2772 2772 }
2773 2773 .glyphicon-hand-right:before {
2774 2774 content: "\e127";
2775 2775 }
2776 2776 .glyphicon-hand-left:before {
2777 2777 content: "\e128";
2778 2778 }
2779 2779 .glyphicon-hand-up:before {
2780 2780 content: "\e129";
2781 2781 }
2782 2782 .glyphicon-hand-down:before {
2783 2783 content: "\e130";
2784 2784 }
2785 2785 .glyphicon-circle-arrow-right:before {
2786 2786 content: "\e131";
2787 2787 }
2788 2788 .glyphicon-circle-arrow-left:before {
2789 2789 content: "\e132";
2790 2790 }
2791 2791 .glyphicon-circle-arrow-up:before {
2792 2792 content: "\e133";
2793 2793 }
2794 2794 .glyphicon-circle-arrow-down:before {
2795 2795 content: "\e134";
2796 2796 }
2797 2797 .glyphicon-globe:before {
2798 2798 content: "\e135";
2799 2799 }
2800 2800 .glyphicon-wrench:before {
2801 2801 content: "\e136";
2802 2802 }
2803 2803 .glyphicon-tasks:before {
2804 2804 content: "\e137";
2805 2805 }
2806 2806 .glyphicon-filter:before {
2807 2807 content: "\e138";
2808 2808 }
2809 2809 .glyphicon-briefcase:before {
2810 2810 content: "\e139";
2811 2811 }
2812 2812 .glyphicon-fullscreen:before {
2813 2813 content: "\e140";
2814 2814 }
2815 2815 .glyphicon-dashboard:before {
2816 2816 content: "\e141";
2817 2817 }
2818 2818 .glyphicon-paperclip:before {
2819 2819 content: "\e142";
2820 2820 }
2821 2821 .glyphicon-heart-empty:before {
2822 2822 content: "\e143";
2823 2823 }
2824 2824 .glyphicon-link:before {
2825 2825 content: "\e144";
2826 2826 }
2827 2827 .glyphicon-phone:before {
2828 2828 content: "\e145";
2829 2829 }
2830 2830 .glyphicon-pushpin:before {
2831 2831 content: "\e146";
2832 2832 }
2833 2833 .glyphicon-usd:before {
2834 2834 content: "\e148";
2835 2835 }
2836 2836 .glyphicon-gbp:before {
2837 2837 content: "\e149";
2838 2838 }
2839 2839 .glyphicon-sort:before {
2840 2840 content: "\e150";
2841 2841 }
2842 2842 .glyphicon-sort-by-alphabet:before {
2843 2843 content: "\e151";
2844 2844 }
2845 2845 .glyphicon-sort-by-alphabet-alt:before {
2846 2846 content: "\e152";
2847 2847 }
2848 2848 .glyphicon-sort-by-order:before {
2849 2849 content: "\e153";
2850 2850 }
2851 2851 .glyphicon-sort-by-order-alt:before {
2852 2852 content: "\e154";
2853 2853 }
2854 2854 .glyphicon-sort-by-attributes:before {
2855 2855 content: "\e155";
2856 2856 }
2857 2857 .glyphicon-sort-by-attributes-alt:before {
2858 2858 content: "\e156";
2859 2859 }
2860 2860 .glyphicon-unchecked:before {
2861 2861 content: "\e157";
2862 2862 }
2863 2863 .glyphicon-expand:before {
2864 2864 content: "\e158";
2865 2865 }
2866 2866 .glyphicon-collapse-down:before {
2867 2867 content: "\e159";
2868 2868 }
2869 2869 .glyphicon-collapse-up:before {
2870 2870 content: "\e160";
2871 2871 }
2872 2872 .glyphicon-log-in:before {
2873 2873 content: "\e161";
2874 2874 }
2875 2875 .glyphicon-flash:before {
2876 2876 content: "\e162";
2877 2877 }
2878 2878 .glyphicon-log-out:before {
2879 2879 content: "\e163";
2880 2880 }
2881 2881 .glyphicon-new-window:before {
2882 2882 content: "\e164";
2883 2883 }
2884 2884 .glyphicon-record:before {
2885 2885 content: "\e165";
2886 2886 }
2887 2887 .glyphicon-save:before {
2888 2888 content: "\e166";
2889 2889 }
2890 2890 .glyphicon-open:before {
2891 2891 content: "\e167";
2892 2892 }
2893 2893 .glyphicon-saved:before {
2894 2894 content: "\e168";
2895 2895 }
2896 2896 .glyphicon-import:before {
2897 2897 content: "\e169";
2898 2898 }
2899 2899 .glyphicon-export:before {
2900 2900 content: "\e170";
2901 2901 }
2902 2902 .glyphicon-send:before {
2903 2903 content: "\e171";
2904 2904 }
2905 2905 .glyphicon-floppy-disk:before {
2906 2906 content: "\e172";
2907 2907 }
2908 2908 .glyphicon-floppy-saved:before {
2909 2909 content: "\e173";
2910 2910 }
2911 2911 .glyphicon-floppy-remove:before {
2912 2912 content: "\e174";
2913 2913 }
2914 2914 .glyphicon-floppy-save:before {
2915 2915 content: "\e175";
2916 2916 }
2917 2917 .glyphicon-floppy-open:before {
2918 2918 content: "\e176";
2919 2919 }
2920 2920 .glyphicon-credit-card:before {
2921 2921 content: "\e177";
2922 2922 }
2923 2923 .glyphicon-transfer:before {
2924 2924 content: "\e178";
2925 2925 }
2926 2926 .glyphicon-cutlery:before {
2927 2927 content: "\e179";
2928 2928 }
2929 2929 .glyphicon-header:before {
2930 2930 content: "\e180";
2931 2931 }
2932 2932 .glyphicon-compressed:before {
2933 2933 content: "\e181";
2934 2934 }
2935 2935 .glyphicon-earphone:before {
2936 2936 content: "\e182";
2937 2937 }
2938 2938 .glyphicon-phone-alt:before {
2939 2939 content: "\e183";
2940 2940 }
2941 2941 .glyphicon-tower:before {
2942 2942 content: "\e184";
2943 2943 }
2944 2944 .glyphicon-stats:before {
2945 2945 content: "\e185";
2946 2946 }
2947 2947 .glyphicon-sd-video:before {
2948 2948 content: "\e186";
2949 2949 }
2950 2950 .glyphicon-hd-video:before {
2951 2951 content: "\e187";
2952 2952 }
2953 2953 .glyphicon-subtitles:before {
2954 2954 content: "\e188";
2955 2955 }
2956 2956 .glyphicon-sound-stereo:before {
2957 2957 content: "\e189";
2958 2958 }
2959 2959 .glyphicon-sound-dolby:before {
2960 2960 content: "\e190";
2961 2961 }
2962 2962 .glyphicon-sound-5-1:before {
2963 2963 content: "\e191";
2964 2964 }
2965 2965 .glyphicon-sound-6-1:before {
2966 2966 content: "\e192";
2967 2967 }
2968 2968 .glyphicon-sound-7-1:before {
2969 2969 content: "\e193";
2970 2970 }
2971 2971 .glyphicon-copyright-mark:before {
2972 2972 content: "\e194";
2973 2973 }
2974 2974 .glyphicon-registration-mark:before {
2975 2975 content: "\e195";
2976 2976 }
2977 2977 .glyphicon-cloud-download:before {
2978 2978 content: "\e197";
2979 2979 }
2980 2980 .glyphicon-cloud-upload:before {
2981 2981 content: "\e198";
2982 2982 }
2983 2983 .glyphicon-tree-conifer:before {
2984 2984 content: "\e199";
2985 2985 }
2986 2986 .glyphicon-tree-deciduous:before {
2987 2987 content: "\e200";
2988 2988 }
2989 2989 .caret {
2990 2990 display: inline-block;
2991 2991 width: 0;
2992 2992 height: 0;
2993 2993 margin-left: 2px;
2994 2994 vertical-align: middle;
2995 2995 border-top: 4px solid;
2996 2996 border-right: 4px solid transparent;
2997 2997 border-left: 4px solid transparent;
2998 2998 }
2999 2999 .dropdown {
3000 3000 position: relative;
3001 3001 }
3002 3002 .dropdown-toggle:focus {
3003 3003 outline: 0;
3004 3004 }
3005 3005 .dropdown-menu {
3006 3006 position: absolute;
3007 3007 top: 100%;
3008 3008 left: 0;
3009 3009 z-index: 1000;
3010 3010 display: none;
3011 3011 float: left;
3012 3012 min-width: 160px;
3013 3013 padding: 5px 0;
3014 3014 margin: 2px 0 0;
3015 3015 list-style: none;
3016 3016 font-size: 13px;
3017 3017 background-color: #ffffff;
3018 3018 border: 1px solid #cccccc;
3019 3019 border: 1px solid rgba(0, 0, 0, 0.15);
3020 3020 border-radius: 4px;
3021 3021 -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3022 3022 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
3023 3023 background-clip: padding-box;
3024 3024 }
3025 3025 .dropdown-menu.pull-right {
3026 3026 right: 0;
3027 3027 left: auto;
3028 3028 }
3029 3029 .dropdown-menu .divider {
3030 3030 height: 1px;
3031 3031 margin: 8px 0;
3032 3032 overflow: hidden;
3033 3033 background-color: #e5e5e5;
3034 3034 }
3035 3035 .dropdown-menu > li > a {
3036 3036 display: block;
3037 3037 padding: 3px 20px;
3038 3038 clear: both;
3039 3039 font-weight: normal;
3040 3040 line-height: 1.42857143;
3041 3041 color: #333333;
3042 3042 white-space: nowrap;
3043 3043 }
3044 3044 .dropdown-menu > li > a:hover,
3045 3045 .dropdown-menu > li > a:focus {
3046 3046 text-decoration: none;
3047 3047 color: #262626;
3048 3048 background-color: #f5f5f5;
3049 3049 }
3050 3050 .dropdown-menu > .active > a,
3051 3051 .dropdown-menu > .active > a:hover,
3052 3052 .dropdown-menu > .active > a:focus {
3053 3053 color: #ffffff;
3054 3054 text-decoration: none;
3055 3055 outline: 0;
3056 3056 background-color: #428bca;
3057 3057 }
3058 3058 .dropdown-menu > .disabled > a,
3059 3059 .dropdown-menu > .disabled > a:hover,
3060 3060 .dropdown-menu > .disabled > a:focus {
3061 3061 color: #999999;
3062 3062 }
3063 3063 .dropdown-menu > .disabled > a:hover,
3064 3064 .dropdown-menu > .disabled > a:focus {
3065 3065 text-decoration: none;
3066 3066 background-color: transparent;
3067 3067 background-image: none;
3068 3068 filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3069 3069 cursor: not-allowed;
3070 3070 }
3071 3071 .open > .dropdown-menu {
3072 3072 display: block;
3073 3073 }
3074 3074 .open > a {
3075 3075 outline: 0;
3076 3076 }
3077 3077 .dropdown-menu-right {
3078 3078 left: auto;
3079 3079 right: 0;
3080 3080 }
3081 3081 .dropdown-menu-left {
3082 3082 left: 0;
3083 3083 right: auto;
3084 3084 }
3085 3085 .dropdown-header {
3086 3086 display: block;
3087 3087 padding: 3px 20px;
3088 3088 font-size: 12px;
3089 3089 line-height: 1.42857143;
3090 3090 color: #999999;
3091 3091 }
3092 3092 .dropdown-backdrop {
3093 3093 position: fixed;
3094 3094 left: 0;
3095 3095 right: 0;
3096 3096 bottom: 0;
3097 3097 top: 0;
3098 3098 z-index: 990;
3099 3099 }
3100 3100 .pull-right > .dropdown-menu {
3101 3101 right: 0;
3102 3102 left: auto;
3103 3103 }
3104 3104 .dropup .caret,
3105 3105 .navbar-fixed-bottom .dropdown .caret {
3106 3106 border-top: 0;
3107 3107 border-bottom: 4px solid;
3108 3108 content: "";
3109 3109 }
3110 3110 .dropup .dropdown-menu,
3111 3111 .navbar-fixed-bottom .dropdown .dropdown-menu {
3112 3112 top: auto;
3113 3113 bottom: 100%;
3114 3114 margin-bottom: 1px;
3115 3115 }
3116 3116 @media (min-width: 540px) {
3117 3117 .navbar-right .dropdown-menu {
3118 3118 left: auto;
3119 3119 right: 0;
3120 3120 }
3121 3121 .navbar-right .dropdown-menu-left {
3122 3122 left: 0;
3123 3123 right: auto;
3124 3124 }
3125 3125 }
3126 3126 .btn-group,
3127 3127 .btn-group-vertical {
3128 3128 position: relative;
3129 3129 display: inline-block;
3130 3130 vertical-align: middle;
3131 3131 }
3132 3132 .btn-group > .btn,
3133 3133 .btn-group-vertical > .btn {
3134 3134 position: relative;
3135 3135 float: left;
3136 3136 }
3137 3137 .btn-group > .btn:hover,
3138 3138 .btn-group-vertical > .btn:hover,
3139 3139 .btn-group > .btn:focus,
3140 3140 .btn-group-vertical > .btn:focus,
3141 3141 .btn-group > .btn:active,
3142 3142 .btn-group-vertical > .btn:active,
3143 3143 .btn-group > .btn.active,
3144 3144 .btn-group-vertical > .btn.active {
3145 3145 z-index: 2;
3146 3146 }
3147 3147 .btn-group > .btn:focus,
3148 3148 .btn-group-vertical > .btn:focus {
3149 3149 outline: none;
3150 3150 }
3151 3151 .btn-group .btn + .btn,
3152 3152 .btn-group .btn + .btn-group,
3153 3153 .btn-group .btn-group + .btn,
3154 3154 .btn-group .btn-group + .btn-group {
3155 3155 margin-left: -1px;
3156 3156 }
3157 3157 .btn-toolbar {
3158 3158 margin-left: -5px;
3159 3159 }
3160 3160 .btn-toolbar .btn-group,
3161 3161 .btn-toolbar .input-group {
3162 3162 float: left;
3163 3163 }
3164 3164 .btn-toolbar > .btn,
3165 3165 .btn-toolbar > .btn-group,
3166 3166 .btn-toolbar > .input-group {
3167 3167 margin-left: 5px;
3168 3168 }
3169 3169 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3170 3170 border-radius: 0;
3171 3171 }
3172 3172 .btn-group > .btn:first-child {
3173 3173 margin-left: 0;
3174 3174 }
3175 3175 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3176 3176 border-bottom-right-radius: 0;
3177 3177 border-top-right-radius: 0;
3178 3178 }
3179 3179 .btn-group > .btn:last-child:not(:first-child),
3180 3180 .btn-group > .dropdown-toggle:not(:first-child) {
3181 3181 border-bottom-left-radius: 0;
3182 3182 border-top-left-radius: 0;
3183 3183 }
3184 3184 .btn-group > .btn-group {
3185 3185 float: left;
3186 3186 }
3187 3187 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3188 3188 border-radius: 0;
3189 3189 }
3190 3190 .btn-group > .btn-group:first-child > .btn:last-child,
3191 3191 .btn-group > .btn-group:first-child > .dropdown-toggle {
3192 3192 border-bottom-right-radius: 0;
3193 3193 border-top-right-radius: 0;
3194 3194 }
3195 3195 .btn-group > .btn-group:last-child > .btn:first-child {
3196 3196 border-bottom-left-radius: 0;
3197 3197 border-top-left-radius: 0;
3198 3198 }
3199 3199 .btn-group .dropdown-toggle:active,
3200 3200 .btn-group.open .dropdown-toggle {
3201 3201 outline: 0;
3202 3202 }
3203 3203 .btn-group > .btn + .dropdown-toggle {
3204 3204 padding-left: 8px;
3205 3205 padding-right: 8px;
3206 3206 }
3207 3207 .btn-group > .btn-lg + .dropdown-toggle {
3208 3208 padding-left: 12px;
3209 3209 padding-right: 12px;
3210 3210 }
3211 3211 .btn-group.open .dropdown-toggle {
3212 3212 -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3213 3213 box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
3214 3214 }
3215 3215 .btn-group.open .dropdown-toggle.btn-link {
3216 3216 -webkit-box-shadow: none;
3217 3217 box-shadow: none;
3218 3218 }
3219 3219 .btn .caret {
3220 3220 margin-left: 0;
3221 3221 }
3222 3222 .btn-lg .caret {
3223 3223 border-width: 5px 5px 0;
3224 3224 border-bottom-width: 0;
3225 3225 }
3226 3226 .dropup .btn-lg .caret {
3227 3227 border-width: 0 5px 5px;
3228 3228 }
3229 3229 .btn-group-vertical > .btn,
3230 3230 .btn-group-vertical > .btn-group,
3231 3231 .btn-group-vertical > .btn-group > .btn {
3232 3232 display: block;
3233 3233 float: none;
3234 3234 width: 100%;
3235 3235 max-width: 100%;
3236 3236 }
3237 3237 .btn-group-vertical > .btn-group > .btn {
3238 3238 float: none;
3239 3239 }
3240 3240 .btn-group-vertical > .btn + .btn,
3241 3241 .btn-group-vertical > .btn + .btn-group,
3242 3242 .btn-group-vertical > .btn-group + .btn,
3243 3243 .btn-group-vertical > .btn-group + .btn-group {
3244 3244 margin-top: -1px;
3245 3245 margin-left: 0;
3246 3246 }
3247 3247 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3248 3248 border-radius: 0;
3249 3249 }
3250 3250 .btn-group-vertical > .btn:first-child:not(:last-child) {
3251 3251 border-top-right-radius: 4px;
3252 3252 border-bottom-right-radius: 0;
3253 3253 border-bottom-left-radius: 0;
3254 3254 }
3255 3255 .btn-group-vertical > .btn:last-child:not(:first-child) {
3256 3256 border-bottom-left-radius: 4px;
3257 3257 border-top-right-radius: 0;
3258 3258 border-top-left-radius: 0;
3259 3259 }
3260 3260 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3261 3261 border-radius: 0;
3262 3262 }
3263 3263 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3264 3264 .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3265 3265 border-bottom-right-radius: 0;
3266 3266 border-bottom-left-radius: 0;
3267 3267 }
3268 3268 .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3269 3269 border-top-right-radius: 0;
3270 3270 border-top-left-radius: 0;
3271 3271 }
3272 3272 .btn-group-justified {
3273 3273 display: table;
3274 3274 width: 100%;
3275 3275 table-layout: fixed;
3276 3276 border-collapse: separate;
3277 3277 }
3278 3278 .btn-group-justified > .btn,
3279 3279 .btn-group-justified > .btn-group {
3280 3280 float: none;
3281 3281 display: table-cell;
3282 3282 width: 1%;
3283 3283 }
3284 3284 .btn-group-justified > .btn-group .btn {
3285 3285 width: 100%;
3286 3286 }
3287 3287 [data-toggle="buttons"] > .btn > input[type="radio"],
3288 3288 [data-toggle="buttons"] > .btn > input[type="checkbox"] {
3289 3289 display: none;
3290 3290 }
3291 3291 .input-group {
3292 3292 position: relative;
3293 3293 display: table;
3294 3294 border-collapse: separate;
3295 3295 }
3296 3296 .input-group[class*="col-"] {
3297 3297 float: none;
3298 3298 padding-left: 0;
3299 3299 padding-right: 0;
3300 3300 }
3301 3301 .input-group .form-control {
3302 3302 position: relative;
3303 3303 z-index: 2;
3304 3304 float: left;
3305 3305 width: 100%;
3306 3306 margin-bottom: 0;
3307 3307 }
3308 3308 .input-group-lg > .form-control,
3309 3309 .input-group-lg > .input-group-addon,
3310 3310 .input-group-lg > .input-group-btn > .btn {
3311 3311 height: 45px;
3312 3312 padding: 10px 16px;
3313 3313 font-size: 17px;
3314 3314 line-height: 1.33;
3315 3315 border-radius: 6px;
3316 3316 }
3317 3317 select.input-group-lg > .form-control,
3318 3318 select.input-group-lg > .input-group-addon,
3319 3319 select.input-group-lg > .input-group-btn > .btn {
3320 3320 height: 45px;
3321 3321 line-height: 45px;
3322 3322 }
3323 3323 textarea.input-group-lg > .form-control,
3324 3324 textarea.input-group-lg > .input-group-addon,
3325 3325 textarea.input-group-lg > .input-group-btn > .btn,
3326 3326 select[multiple].input-group-lg > .form-control,
3327 3327 select[multiple].input-group-lg > .input-group-addon,
3328 3328 select[multiple].input-group-lg > .input-group-btn > .btn {
3329 3329 height: auto;
3330 3330 }
3331 3331 .input-group-sm > .form-control,
3332 3332 .input-group-sm > .input-group-addon,
3333 3333 .input-group-sm > .input-group-btn > .btn {
3334 3334 height: 30px;
3335 3335 padding: 5px 10px;
3336 3336 font-size: 12px;
3337 3337 line-height: 1.5;
3338 3338 border-radius: 3px;
3339 3339 }
3340 3340 select.input-group-sm > .form-control,
3341 3341 select.input-group-sm > .input-group-addon,
3342 3342 select.input-group-sm > .input-group-btn > .btn {
3343 3343 height: 30px;
3344 3344 line-height: 30px;
3345 3345 }
3346 3346 textarea.input-group-sm > .form-control,
3347 3347 textarea.input-group-sm > .input-group-addon,
3348 3348 textarea.input-group-sm > .input-group-btn > .btn,
3349 3349 select[multiple].input-group-sm > .form-control,
3350 3350 select[multiple].input-group-sm > .input-group-addon,
3351 3351 select[multiple].input-group-sm > .input-group-btn > .btn {
3352 3352 height: auto;
3353 3353 }
3354 3354 .input-group-addon,
3355 3355 .input-group-btn,
3356 3356 .input-group .form-control {
3357 3357 display: table-cell;
3358 3358 }
3359 3359 .input-group-addon:not(:first-child):not(:last-child),
3360 3360 .input-group-btn:not(:first-child):not(:last-child),
3361 3361 .input-group .form-control:not(:first-child):not(:last-child) {
3362 3362 border-radius: 0;
3363 3363 }
3364 3364 .input-group-addon,
3365 3365 .input-group-btn {
3366 3366 width: 1%;
3367 3367 white-space: nowrap;
3368 3368 vertical-align: middle;
3369 3369 }
3370 3370 .input-group-addon {
3371 3371 padding: 6px 12px;
3372 3372 font-size: 13px;
3373 3373 font-weight: normal;
3374 3374 line-height: 1;
3375 3375 color: #555555;
3376 3376 text-align: center;
3377 3377 background-color: #eeeeee;
3378 3378 border: 1px solid #cccccc;
3379 3379 border-radius: 4px;
3380 3380 }
3381 3381 .input-group-addon.input-sm {
3382 3382 padding: 5px 10px;
3383 3383 font-size: 12px;
3384 3384 border-radius: 3px;
3385 3385 }
3386 3386 .input-group-addon.input-lg {
3387 3387 padding: 10px 16px;
3388 3388 font-size: 17px;
3389 3389 border-radius: 6px;
3390 3390 }
3391 3391 .input-group-addon input[type="radio"],
3392 3392 .input-group-addon input[type="checkbox"] {
3393 3393 margin-top: 0;
3394 3394 }
3395 3395 .input-group .form-control:first-child,
3396 3396 .input-group-addon:first-child,
3397 3397 .input-group-btn:first-child > .btn,
3398 3398 .input-group-btn:first-child > .btn-group > .btn,
3399 3399 .input-group-btn:first-child > .dropdown-toggle,
3400 3400 .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3401 3401 .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3402 3402 border-bottom-right-radius: 0;
3403 3403 border-top-right-radius: 0;
3404 3404 }
3405 3405 .input-group-addon:first-child {
3406 3406 border-right: 0;
3407 3407 }
3408 3408 .input-group .form-control:last-child,
3409 3409 .input-group-addon:last-child,
3410 3410 .input-group-btn:last-child > .btn,
3411 3411 .input-group-btn:last-child > .btn-group > .btn,
3412 3412 .input-group-btn:last-child > .dropdown-toggle,
3413 3413 .input-group-btn:first-child > .btn:not(:first-child),
3414 3414 .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3415 3415 border-bottom-left-radius: 0;
3416 3416 border-top-left-radius: 0;
3417 3417 }
3418 3418 .input-group-addon:last-child {
3419 3419 border-left: 0;
3420 3420 }
3421 3421 .input-group-btn {
3422 3422 position: relative;
3423 3423 font-size: 0;
3424 3424 white-space: nowrap;
3425 3425 }
3426 3426 .input-group-btn > .btn {
3427 3427 position: relative;
3428 3428 }
3429 3429 .input-group-btn > .btn + .btn {
3430 3430 margin-left: -1px;
3431 3431 }
3432 3432 .input-group-btn > .btn:hover,
3433 3433 .input-group-btn > .btn:focus,
3434 3434 .input-group-btn > .btn:active {
3435 3435 z-index: 2;
3436 3436 }
3437 3437 .input-group-btn:first-child > .btn,
3438 3438 .input-group-btn:first-child > .btn-group {
3439 3439 margin-right: -1px;
3440 3440 }
3441 3441 .input-group-btn:last-child > .btn,
3442 3442 .input-group-btn:last-child > .btn-group {
3443 3443 margin-left: -1px;
3444 3444 }
3445 3445 .nav {
3446 3446 margin-bottom: 0;
3447 3447 padding-left: 0;
3448 3448 list-style: none;
3449 3449 }
3450 3450 .nav > li {
3451 3451 position: relative;
3452 3452 display: block;
3453 3453 }
3454 3454 .nav > li > a {
3455 3455 position: relative;
3456 3456 display: block;
3457 3457 padding: 10px 15px;
3458 3458 }
3459 3459 .nav > li > a:hover,
3460 3460 .nav > li > a:focus {
3461 3461 text-decoration: none;
3462 3462 background-color: #eeeeee;
3463 3463 }
3464 3464 .nav > li.disabled > a {
3465 3465 color: #999999;
3466 3466 }
3467 3467 .nav > li.disabled > a:hover,
3468 3468 .nav > li.disabled > a:focus {
3469 3469 color: #999999;
3470 3470 text-decoration: none;
3471 3471 background-color: transparent;
3472 3472 cursor: not-allowed;
3473 3473 }
3474 3474 .nav .open > a,
3475 3475 .nav .open > a:hover,
3476 3476 .nav .open > a:focus {
3477 3477 background-color: #eeeeee;
3478 3478 border-color: #428bca;
3479 3479 }
3480 3480 .nav .nav-divider {
3481 3481 height: 1px;
3482 3482 margin: 8px 0;
3483 3483 overflow: hidden;
3484 3484 background-color: #e5e5e5;
3485 3485 }
3486 3486 .nav > li > a > img {
3487 3487 max-width: none;
3488 3488 }
3489 3489 .nav-tabs {
3490 3490 border-bottom: 1px solid #dddddd;
3491 3491 }
3492 3492 .nav-tabs > li {
3493 3493 float: left;
3494 3494 margin-bottom: -1px;
3495 3495 }
3496 3496 .nav-tabs > li > a {
3497 3497 margin-right: 2px;
3498 3498 line-height: 1.42857143;
3499 3499 border: 1px solid transparent;
3500 3500 border-radius: 4px 4px 0 0;
3501 3501 }
3502 3502 .nav-tabs > li > a:hover {
3503 3503 border-color: #eeeeee #eeeeee #dddddd;
3504 3504 }
3505 3505 .nav-tabs > li.active > a,
3506 3506 .nav-tabs > li.active > a:hover,
3507 3507 .nav-tabs > li.active > a:focus {
3508 3508 color: #555555;
3509 3509 background-color: #ffffff;
3510 3510 border: 1px solid #dddddd;
3511 3511 border-bottom-color: transparent;
3512 3512 cursor: default;
3513 3513 }
3514 3514 .nav-tabs.nav-justified {
3515 3515 width: 100%;
3516 3516 border-bottom: 0;
3517 3517 }
3518 3518 .nav-tabs.nav-justified > li {
3519 3519 float: none;
3520 3520 }
3521 3521 .nav-tabs.nav-justified > li > a {
3522 3522 text-align: center;
3523 3523 margin-bottom: 5px;
3524 3524 }
3525 3525 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3526 3526 top: auto;
3527 3527 left: auto;
3528 3528 }
3529 3529 @media (min-width: 768px) {
3530 3530 .nav-tabs.nav-justified > li {
3531 3531 display: table-cell;
3532 3532 width: 1%;
3533 3533 }
3534 3534 .nav-tabs.nav-justified > li > a {
3535 3535 margin-bottom: 0;
3536 3536 }
3537 3537 }
3538 3538 .nav-tabs.nav-justified > li > a {
3539 3539 margin-right: 0;
3540 3540 border-radius: 4px;
3541 3541 }
3542 3542 .nav-tabs.nav-justified > .active > a,
3543 3543 .nav-tabs.nav-justified > .active > a:hover,
3544 3544 .nav-tabs.nav-justified > .active > a:focus {
3545 3545 border: 1px solid #dddddd;
3546 3546 }
3547 3547 @media (min-width: 768px) {
3548 3548 .nav-tabs.nav-justified > li > a {
3549 3549 border-bottom: 1px solid #dddddd;
3550 3550 border-radius: 4px 4px 0 0;
3551 3551 }
3552 3552 .nav-tabs.nav-justified > .active > a,
3553 3553 .nav-tabs.nav-justified > .active > a:hover,
3554 3554 .nav-tabs.nav-justified > .active > a:focus {
3555 3555 border-bottom-color: #ffffff;
3556 3556 }
3557 3557 }
3558 3558 .nav-pills > li {
3559 3559 float: left;
3560 3560 }
3561 3561 .nav-pills > li > a {
3562 3562 border-radius: 4px;
3563 3563 }
3564 3564 .nav-pills > li + li {
3565 3565 margin-left: 2px;
3566 3566 }
3567 3567 .nav-pills > li.active > a,
3568 3568 .nav-pills > li.active > a:hover,
3569 3569 .nav-pills > li.active > a:focus {
3570 3570 color: #ffffff;
3571 3571 background-color: #428bca;
3572 3572 }
3573 3573 .nav-stacked > li {
3574 3574 float: none;
3575 3575 }
3576 3576 .nav-stacked > li + li {
3577 3577 margin-top: 2px;
3578 3578 margin-left: 0;
3579 3579 }
3580 3580 .nav-justified {
3581 3581 width: 100%;
3582 3582 }
3583 3583 .nav-justified > li {
3584 3584 float: none;
3585 3585 }
3586 3586 .nav-justified > li > a {
3587 3587 text-align: center;
3588 3588 margin-bottom: 5px;
3589 3589 }
3590 3590 .nav-justified > .dropdown .dropdown-menu {
3591 3591 top: auto;
3592 3592 left: auto;
3593 3593 }
3594 3594 @media (min-width: 768px) {
3595 3595 .nav-justified > li {
3596 3596 display: table-cell;
3597 3597 width: 1%;
3598 3598 }
3599 3599 .nav-justified > li > a {
3600 3600 margin-bottom: 0;
3601 3601 }
3602 3602 }
3603 3603 .nav-tabs-justified {
3604 3604 border-bottom: 0;
3605 3605 }
3606 3606 .nav-tabs-justified > li > a {
3607 3607 margin-right: 0;
3608 3608 border-radius: 4px;
3609 3609 }
3610 3610 .nav-tabs-justified > .active > a,
3611 3611 .nav-tabs-justified > .active > a:hover,
3612 3612 .nav-tabs-justified > .active > a:focus {
3613 3613 border: 1px solid #dddddd;
3614 3614 }
3615 3615 @media (min-width: 768px) {
3616 3616 .nav-tabs-justified > li > a {
3617 3617 border-bottom: 1px solid #dddddd;
3618 3618 border-radius: 4px 4px 0 0;
3619 3619 }
3620 3620 .nav-tabs-justified > .active > a,
3621 3621 .nav-tabs-justified > .active > a:hover,
3622 3622 .nav-tabs-justified > .active > a:focus {
3623 3623 border-bottom-color: #ffffff;
3624 3624 }
3625 3625 }
3626 3626 .tab-content > .tab-pane {
3627 3627 display: none;
3628 3628 }
3629 3629 .tab-content > .active {
3630 3630 display: block;
3631 3631 }
3632 3632 .nav-tabs .dropdown-menu {
3633 3633 margin-top: -1px;
3634 3634 border-top-right-radius: 0;
3635 3635 border-top-left-radius: 0;
3636 3636 }
3637 3637 .navbar {
3638 3638 position: relative;
3639 3639 min-height: 30px;
3640 3640 margin-bottom: 18px;
3641 3641 border: 1px solid transparent;
3642 3642 }
3643 3643 @media (min-width: 540px) {
3644 3644 .navbar {
3645 3645 border-radius: 4px;
3646 3646 }
3647 3647 }
3648 3648 @media (min-width: 540px) {
3649 3649 .navbar-header {
3650 3650 float: left;
3651 3651 }
3652 3652 }
3653 3653 .navbar-collapse {
3654 3654 max-height: 340px;
3655 3655 overflow-x: visible;
3656 3656 padding-right: 15px;
3657 3657 padding-left: 15px;
3658 3658 border-top: 1px solid transparent;
3659 3659 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
3660 3660 -webkit-overflow-scrolling: touch;
3661 3661 }
3662 3662 .navbar-collapse.in {
3663 3663 overflow-y: auto;
3664 3664 }
3665 3665 @media (min-width: 540px) {
3666 3666 .navbar-collapse {
3667 3667 width: auto;
3668 3668 border-top: 0;
3669 3669 box-shadow: none;
3670 3670 }
3671 3671 .navbar-collapse.collapse {
3672 3672 display: block !important;
3673 3673 height: auto !important;
3674 3674 padding-bottom: 0;
3675 3675 overflow: visible !important;
3676 3676 }
3677 3677 .navbar-collapse.in {
3678 3678 overflow-y: visible;
3679 3679 }
3680 3680 .navbar-fixed-top .navbar-collapse,
3681 3681 .navbar-static-top .navbar-collapse,
3682 3682 .navbar-fixed-bottom .navbar-collapse {
3683 3683 padding-left: 0;
3684 3684 padding-right: 0;
3685 3685 }
3686 3686 }
3687 3687 .container > .navbar-header,
3688 3688 .container-fluid > .navbar-header,
3689 3689 .container > .navbar-collapse,
3690 3690 .container-fluid > .navbar-collapse {
3691 3691 margin-right: -15px;
3692 3692 margin-left: -15px;
3693 3693 }
3694 3694 @media (min-width: 540px) {
3695 3695 .container > .navbar-header,
3696 3696 .container-fluid > .navbar-header,
3697 3697 .container > .navbar-collapse,
3698 3698 .container-fluid > .navbar-collapse {
3699 3699 margin-right: 0;
3700 3700 margin-left: 0;
3701 3701 }
3702 3702 }
3703 3703 .navbar-static-top {
3704 3704 z-index: 1000;
3705 3705 border-width: 0 0 1px;
3706 3706 }
3707 3707 @media (min-width: 540px) {
3708 3708 .navbar-static-top {
3709 3709 border-radius: 0;
3710 3710 }
3711 3711 }
3712 3712 .navbar-fixed-top,
3713 3713 .navbar-fixed-bottom {
3714 3714 position: fixed;
3715 3715 right: 0;
3716 3716 left: 0;
3717 3717 z-index: 1030;
3718 3718 }
3719 3719 @media (min-width: 540px) {
3720 3720 .navbar-fixed-top,
3721 3721 .navbar-fixed-bottom {
3722 3722 border-radius: 0;
3723 3723 }
3724 3724 }
3725 3725 .navbar-fixed-top {
3726 3726 top: 0;
3727 3727 border-width: 0 0 1px;
3728 3728 }
3729 3729 .navbar-fixed-bottom {
3730 3730 bottom: 0;
3731 3731 margin-bottom: 0;
3732 3732 border-width: 1px 0 0;
3733 3733 }
3734 3734 .navbar-brand {
3735 3735 float: left;
3736 3736 padding: 6px 15px;
3737 3737 font-size: 17px;
3738 3738 line-height: 18px;
3739 3739 height: 30px;
3740 3740 }
3741 3741 .navbar-brand:hover,
3742 3742 .navbar-brand:focus {
3743 3743 text-decoration: none;
3744 3744 }
3745 3745 @media (min-width: 540px) {
3746 3746 .navbar > .container .navbar-brand,
3747 3747 .navbar > .container-fluid .navbar-brand {
3748 3748 margin-left: -15px;
3749 3749 }
3750 3750 }
3751 3751 .navbar-toggle {
3752 3752 position: relative;
3753 3753 float: right;
3754 3754 margin-right: 15px;
3755 3755 padding: 9px 10px;
3756 3756 margin-top: -2px;
3757 3757 margin-bottom: -2px;
3758 3758 background-color: transparent;
3759 3759 background-image: none;
3760 3760 border: 1px solid transparent;
3761 3761 border-radius: 4px;
3762 3762 }
3763 3763 .navbar-toggle:focus {
3764 3764 outline: none;
3765 3765 }
3766 3766 .navbar-toggle .icon-bar {
3767 3767 display: block;
3768 3768 width: 22px;
3769 3769 height: 2px;
3770 3770 border-radius: 1px;
3771 3771 }
3772 3772 .navbar-toggle .icon-bar + .icon-bar {
3773 3773 margin-top: 4px;
3774 3774 }
3775 3775 @media (min-width: 540px) {
3776 3776 .navbar-toggle {
3777 3777 display: none;
3778 3778 }
3779 3779 }
3780 3780 .navbar-nav {
3781 3781 margin: 3px -15px;
3782 3782 }
3783 3783 .navbar-nav > li > a {
3784 3784 padding-top: 10px;
3785 3785 padding-bottom: 10px;
3786 3786 line-height: 18px;
3787 3787 }
3788 3788 @media (max-width: 539px) {
3789 3789 .navbar-nav .open .dropdown-menu {
3790 3790 position: static;
3791 3791 float: none;
3792 3792 width: auto;
3793 3793 margin-top: 0;
3794 3794 background-color: transparent;
3795 3795 border: 0;
3796 3796 box-shadow: none;
3797 3797 }
3798 3798 .navbar-nav .open .dropdown-menu > li > a,
3799 3799 .navbar-nav .open .dropdown-menu .dropdown-header {
3800 3800 padding: 5px 15px 5px 25px;
3801 3801 }
3802 3802 .navbar-nav .open .dropdown-menu > li > a {
3803 3803 line-height: 18px;
3804 3804 }
3805 3805 .navbar-nav .open .dropdown-menu > li > a:hover,
3806 3806 .navbar-nav .open .dropdown-menu > li > a:focus {
3807 3807 background-image: none;
3808 3808 }
3809 3809 }
3810 3810 @media (min-width: 540px) {
3811 3811 .navbar-nav {
3812 3812 float: left;
3813 3813 margin: 0;
3814 3814 }
3815 3815 .navbar-nav > li {
3816 3816 float: left;
3817 3817 }
3818 3818 .navbar-nav > li > a {
3819 3819 padding-top: 6px;
3820 3820 padding-bottom: 6px;
3821 3821 }
3822 3822 .navbar-nav.navbar-right:last-child {
3823 3823 margin-right: -15px;
3824 3824 }
3825 3825 }
3826 3826 @media (min-width: 540px) {
3827 3827 .navbar-left {
3828 3828 float: left !important;
3829 3829 float: left;
3830 3830 }
3831 3831 .navbar-right {
3832 3832 float: right !important;
3833 3833 float: right;
3834 3834 }
3835 3835 }
3836 3836 .navbar-form {
3837 3837 margin-left: -15px;
3838 3838 margin-right: -15px;
3839 3839 padding: 10px 15px;
3840 3840 border-top: 1px solid transparent;
3841 3841 border-bottom: 1px solid transparent;
3842 3842 -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3843 3843 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3844 3844 margin-top: -1px;
3845 3845 margin-bottom: -1px;
3846 3846 }
3847 3847 @media (min-width: 768px) {
3848 3848 .navbar-form .form-group {
3849 3849 display: inline-block;
3850 3850 margin-bottom: 0;
3851 3851 vertical-align: middle;
3852 3852 }
3853 3853 .navbar-form .form-control {
3854 3854 display: inline-block;
3855 3855 width: auto;
3856 3856 vertical-align: middle;
3857 3857 }
3858 3858 .navbar-form .input-group > .form-control {
3859 3859 width: 100%;
3860 3860 }
3861 3861 .navbar-form .control-label {
3862 3862 margin-bottom: 0;
3863 3863 vertical-align: middle;
3864 3864 }
3865 3865 .navbar-form .radio,
3866 3866 .navbar-form .checkbox {
3867 3867 display: inline-block;
3868 3868 margin-top: 0;
3869 3869 margin-bottom: 0;
3870 3870 padding-left: 0;
3871 3871 vertical-align: middle;
3872 3872 }
3873 3873 .navbar-form .radio input[type="radio"],
3874 3874 .navbar-form .checkbox input[type="checkbox"] {
3875 3875 float: none;
3876 3876 margin-left: 0;
3877 3877 }
3878 3878 .navbar-form .has-feedback .form-control-feedback {
3879 3879 top: 0;
3880 3880 }
3881 3881 }
3882 3882 @media (max-width: 539px) {
3883 3883 .navbar-form .form-group {
3884 3884 margin-bottom: 5px;
3885 3885 }
3886 3886 }
3887 3887 @media (min-width: 540px) {
3888 3888 .navbar-form {
3889 3889 width: auto;
3890 3890 border: 0;
3891 3891 margin-left: 0;
3892 3892 margin-right: 0;
3893 3893 padding-top: 0;
3894 3894 padding-bottom: 0;
3895 3895 -webkit-box-shadow: none;
3896 3896 box-shadow: none;
3897 3897 }
3898 3898 .navbar-form.navbar-right:last-child {
3899 3899 margin-right: -15px;
3900 3900 }
3901 3901 }
3902 3902 .navbar-nav > li > .dropdown-menu {
3903 3903 margin-top: 0;
3904 3904 border-top-right-radius: 0;
3905 3905 border-top-left-radius: 0;
3906 3906 }
3907 3907 .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3908 3908 border-bottom-right-radius: 0;
3909 3909 border-bottom-left-radius: 0;
3910 3910 }
3911 3911 .navbar-btn {
3912 3912 margin-top: -1px;
3913 3913 margin-bottom: -1px;
3914 3914 }
3915 3915 .navbar-btn.btn-sm {
3916 3916 margin-top: 0px;
3917 3917 margin-bottom: 0px;
3918 3918 }
3919 3919 .navbar-btn.btn-xs {
3920 3920 margin-top: 4px;
3921 3921 margin-bottom: 4px;
3922 3922 }
3923 3923 .navbar-text {
3924 3924 margin-top: 6px;
3925 3925 margin-bottom: 6px;
3926 3926 }
3927 3927 @media (min-width: 540px) {
3928 3928 .navbar-text {
3929 3929 float: left;
3930 3930 margin-left: 15px;
3931 3931 margin-right: 15px;
3932 3932 }
3933 3933 .navbar-text.navbar-right:last-child {
3934 3934 margin-right: 0;
3935 3935 }
3936 3936 }
3937 3937 .navbar-default {
3938 3938 background-color: #f8f8f8;
3939 3939 border-color: #e7e7e7;
3940 3940 }
3941 3941 .navbar-default .navbar-brand {
3942 3942 color: #777777;
3943 3943 }
3944 3944 .navbar-default .navbar-brand:hover,
3945 3945 .navbar-default .navbar-brand:focus {
3946 3946 color: #5e5e5e;
3947 3947 background-color: transparent;
3948 3948 }
3949 3949 .navbar-default .navbar-text {
3950 3950 color: #777777;
3951 3951 }
3952 3952 .navbar-default .navbar-nav > li > a {
3953 3953 color: #777777;
3954 3954 }
3955 3955 .navbar-default .navbar-nav > li > a:hover,
3956 3956 .navbar-default .navbar-nav > li > a:focus {
3957 3957 color: #333333;
3958 3958 background-color: transparent;
3959 3959 }
3960 3960 .navbar-default .navbar-nav > .active > a,
3961 3961 .navbar-default .navbar-nav > .active > a:hover,
3962 3962 .navbar-default .navbar-nav > .active > a:focus {
3963 3963 color: #555555;
3964 3964 background-color: #e7e7e7;
3965 3965 }
3966 3966 .navbar-default .navbar-nav > .disabled > a,
3967 3967 .navbar-default .navbar-nav > .disabled > a:hover,
3968 3968 .navbar-default .navbar-nav > .disabled > a:focus {
3969 3969 color: #cccccc;
3970 3970 background-color: transparent;
3971 3971 }
3972 3972 .navbar-default .navbar-toggle {
3973 3973 border-color: #dddddd;
3974 3974 }
3975 3975 .navbar-default .navbar-toggle:hover,
3976 3976 .navbar-default .navbar-toggle:focus {
3977 3977 background-color: #dddddd;
3978 3978 }
3979 3979 .navbar-default .navbar-toggle .icon-bar {
3980 3980 background-color: #888888;
3981 3981 }
3982 3982 .navbar-default .navbar-collapse,
3983 3983 .navbar-default .navbar-form {
3984 3984 border-color: #e7e7e7;
3985 3985 }
3986 3986 .navbar-default .navbar-nav > .open > a,
3987 3987 .navbar-default .navbar-nav > .open > a:hover,
3988 3988 .navbar-default .navbar-nav > .open > a:focus {
3989 3989 background-color: #e7e7e7;
3990 3990 color: #555555;
3991 3991 }
3992 3992 @media (max-width: 539px) {
3993 3993 .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3994 3994 color: #777777;
3995 3995 }
3996 3996 .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3997 3997 .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3998 3998 color: #333333;
3999 3999 background-color: transparent;
4000 4000 }
4001 4001 .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4002 4002 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4003 4003 .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4004 4004 color: #555555;
4005 4005 background-color: #e7e7e7;
4006 4006 }
4007 4007 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4008 4008 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4009 4009 .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4010 4010 color: #cccccc;
4011 4011 background-color: transparent;
4012 4012 }
4013 4013 }
4014 4014 .navbar-default .navbar-link {
4015 4015 color: #777777;
4016 4016 }
4017 4017 .navbar-default .navbar-link:hover {
4018 4018 color: #333333;
4019 4019 }
4020 4020 .navbar-inverse {
4021 4021 background-color: #222222;
4022 4022 border-color: #080808;
4023 4023 }
4024 4024 .navbar-inverse .navbar-brand {
4025 4025 color: #999999;
4026 4026 }
4027 4027 .navbar-inverse .navbar-brand:hover,
4028 4028 .navbar-inverse .navbar-brand:focus {
4029 4029 color: #ffffff;
4030 4030 background-color: transparent;
4031 4031 }
4032 4032 .navbar-inverse .navbar-text {
4033 4033 color: #999999;
4034 4034 }
4035 4035 .navbar-inverse .navbar-nav > li > a {
4036 4036 color: #999999;
4037 4037 }
4038 4038 .navbar-inverse .navbar-nav > li > a:hover,
4039 4039 .navbar-inverse .navbar-nav > li > a:focus {
4040 4040 color: #ffffff;
4041 4041 background-color: transparent;
4042 4042 }
4043 4043 .navbar-inverse .navbar-nav > .active > a,
4044 4044 .navbar-inverse .navbar-nav > .active > a:hover,
4045 4045 .navbar-inverse .navbar-nav > .active > a:focus {
4046 4046 color: #ffffff;
4047 4047 background-color: #080808;
4048 4048 }
4049 4049 .navbar-inverse .navbar-nav > .disabled > a,
4050 4050 .navbar-inverse .navbar-nav > .disabled > a:hover,
4051 4051 .navbar-inverse .navbar-nav > .disabled > a:focus {
4052 4052 color: #444444;
4053 4053 background-color: transparent;
4054 4054 }
4055 4055 .navbar-inverse .navbar-toggle {
4056 4056 border-color: #333333;
4057 4057 }
4058 4058 .navbar-inverse .navbar-toggle:hover,
4059 4059 .navbar-inverse .navbar-toggle:focus {
4060 4060 background-color: #333333;
4061 4061 }
4062 4062 .navbar-inverse .navbar-toggle .icon-bar {
4063 4063 background-color: #ffffff;
4064 4064 }
4065 4065 .navbar-inverse .navbar-collapse,
4066 4066 .navbar-inverse .navbar-form {
4067 4067 border-color: #101010;
4068 4068 }
4069 4069 .navbar-inverse .navbar-nav > .open > a,
4070 4070 .navbar-inverse .navbar-nav > .open > a:hover,
4071 4071 .navbar-inverse .navbar-nav > .open > a:focus {
4072 4072 background-color: #080808;
4073 4073 color: #ffffff;
4074 4074 }
4075 4075 @media (max-width: 539px) {
4076 4076 .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4077 4077 border-color: #080808;
4078 4078 }
4079 4079 .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4080 4080 background-color: #080808;
4081 4081 }
4082 4082 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4083 4083 color: #999999;
4084 4084 }
4085 4085 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4086 4086 .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4087 4087 color: #ffffff;
4088 4088 background-color: transparent;
4089 4089 }
4090 4090 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4091 4091 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4092 4092 .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4093 4093 color: #ffffff;
4094 4094 background-color: #080808;
4095 4095 }
4096 4096 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4097 4097 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4098 4098 .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4099 4099 color: #444444;
4100 4100 background-color: transparent;
4101 4101 }
4102 4102 }
4103 4103 .navbar-inverse .navbar-link {
4104 4104 color: #999999;
4105 4105 }
4106 4106 .navbar-inverse .navbar-link:hover {
4107 4107 color: #ffffff;
4108 4108 }
4109 4109 .breadcrumb {
4110 4110 padding: 8px 15px;
4111 4111 margin-bottom: 18px;
4112 4112 list-style: none;
4113 4113 background-color: #f5f5f5;
4114 4114 border-radius: 4px;
4115 4115 }
4116 4116 .breadcrumb > li {
4117 4117 display: inline-block;
4118 4118 }
4119 4119 .breadcrumb > li + li:before {
4120 4120 content: "/\00a0";
4121 4121 padding: 0 5px;
4122 4122 color: #5e5e5e;
4123 4123 }
4124 4124 .breadcrumb > .active {
4125 4125 color: #999999;
4126 4126 }
4127 4127 .pagination {
4128 4128 display: inline-block;
4129 4129 padding-left: 0;
4130 4130 margin: 18px 0;
4131 4131 border-radius: 4px;
4132 4132 }
4133 4133 .pagination > li {
4134 4134 display: inline;
4135 4135 }
4136 4136 .pagination > li > a,
4137 4137 .pagination > li > span {
4138 4138 position: relative;
4139 4139 float: left;
4140 4140 padding: 6px 12px;
4141 4141 line-height: 1.42857143;
4142 4142 text-decoration: none;
4143 4143 color: #428bca;
4144 4144 background-color: #ffffff;
4145 4145 border: 1px solid #dddddd;
4146 4146 margin-left: -1px;
4147 4147 }
4148 4148 .pagination > li:first-child > a,
4149 4149 .pagination > li:first-child > span {
4150 4150 margin-left: 0;
4151 4151 border-bottom-left-radius: 4px;
4152 4152 border-top-left-radius: 4px;
4153 4153 }
4154 4154 .pagination > li:last-child > a,
4155 4155 .pagination > li:last-child > span {
4156 4156 border-bottom-right-radius: 4px;
4157 4157 border-top-right-radius: 4px;
4158 4158 }
4159 4159 .pagination > li > a:hover,
4160 4160 .pagination > li > span:hover,
4161 4161 .pagination > li > a:focus,
4162 4162 .pagination > li > span:focus {
4163 4163 color: #2a6496;
4164 4164 background-color: #eeeeee;
4165 4165 border-color: #dddddd;
4166 4166 }
4167 4167 .pagination > .active > a,
4168 4168 .pagination > .active > span,
4169 4169 .pagination > .active > a:hover,
4170 4170 .pagination > .active > span:hover,
4171 4171 .pagination > .active > a:focus,
4172 4172 .pagination > .active > span:focus {
4173 4173 z-index: 2;
4174 4174 color: #ffffff;
4175 4175 background-color: #428bca;
4176 4176 border-color: #428bca;
4177 4177 cursor: default;
4178 4178 }
4179 4179 .pagination > .disabled > span,
4180 4180 .pagination > .disabled > span:hover,
4181 4181 .pagination > .disabled > span:focus,
4182 4182 .pagination > .disabled > a,
4183 4183 .pagination > .disabled > a:hover,
4184 4184 .pagination > .disabled > a:focus {
4185 4185 color: #999999;
4186 4186 background-color: #ffffff;
4187 4187 border-color: #dddddd;
4188 4188 cursor: not-allowed;
4189 4189 }
4190 4190 .pagination-lg > li > a,
4191 4191 .pagination-lg > li > span {
4192 4192 padding: 10px 16px;
4193 4193 font-size: 17px;
4194 4194 }
4195 4195 .pagination-lg > li:first-child > a,
4196 4196 .pagination-lg > li:first-child > span {
4197 4197 border-bottom-left-radius: 6px;
4198 4198 border-top-left-radius: 6px;
4199 4199 }
4200 4200 .pagination-lg > li:last-child > a,
4201 4201 .pagination-lg > li:last-child > span {
4202 4202 border-bottom-right-radius: 6px;
4203 4203 border-top-right-radius: 6px;
4204 4204 }
4205 4205 .pagination-sm > li > a,
4206 4206 .pagination-sm > li > span {
4207 4207 padding: 5px 10px;
4208 4208 font-size: 12px;
4209 4209 }
4210 4210 .pagination-sm > li:first-child > a,
4211 4211 .pagination-sm > li:first-child > span {
4212 4212 border-bottom-left-radius: 3px;
4213 4213 border-top-left-radius: 3px;
4214 4214 }
4215 4215 .pagination-sm > li:last-child > a,
4216 4216 .pagination-sm > li:last-child > span {
4217 4217 border-bottom-right-radius: 3px;
4218 4218 border-top-right-radius: 3px;
4219 4219 }
4220 4220 .pager {
4221 4221 padding-left: 0;
4222 4222 margin: 18px 0;
4223 4223 list-style: none;
4224 4224 text-align: center;
4225 4225 }
4226 4226 .pager li {
4227 4227 display: inline;
4228 4228 }
4229 4229 .pager li > a,
4230 4230 .pager li > span {
4231 4231 display: inline-block;
4232 4232 padding: 5px 14px;
4233 4233 background-color: #ffffff;
4234 4234 border: 1px solid #dddddd;
4235 4235 border-radius: 15px;
4236 4236 }
4237 4237 .pager li > a:hover,
4238 4238 .pager li > a:focus {
4239 4239 text-decoration: none;
4240 4240 background-color: #eeeeee;
4241 4241 }
4242 4242 .pager .next > a,
4243 4243 .pager .next > span {
4244 4244 float: right;
4245 4245 }
4246 4246 .pager .previous > a,
4247 4247 .pager .previous > span {
4248 4248 float: left;
4249 4249 }
4250 4250 .pager .disabled > a,
4251 4251 .pager .disabled > a:hover,
4252 4252 .pager .disabled > a:focus,
4253 4253 .pager .disabled > span {
4254 4254 color: #999999;
4255 4255 background-color: #ffffff;
4256 4256 cursor: not-allowed;
4257 4257 }
4258 4258 .label {
4259 4259 display: inline;
4260 4260 padding: .2em .6em .3em;
4261 4261 font-size: 75%;
4262 4262 font-weight: bold;
4263 4263 line-height: 1;
4264 4264 color: #ffffff;
4265 4265 text-align: center;
4266 4266 white-space: nowrap;
4267 4267 vertical-align: baseline;
4268 4268 border-radius: .25em;
4269 4269 }
4270 4270 .label[href]:hover,
4271 4271 .label[href]:focus {
4272 4272 color: #ffffff;
4273 4273 text-decoration: none;
4274 4274 cursor: pointer;
4275 4275 }
4276 4276 .label:empty {
4277 4277 display: none;
4278 4278 }
4279 4279 .btn .label {
4280 4280 position: relative;
4281 4281 top: -1px;
4282 4282 }
4283 4283 .label-default {
4284 4284 background-color: #999999;
4285 4285 }
4286 4286 .label-default[href]:hover,
4287 4287 .label-default[href]:focus {
4288 4288 background-color: #808080;
4289 4289 }
4290 4290 .label-primary {
4291 4291 background-color: #428bca;
4292 4292 }
4293 4293 .label-primary[href]:hover,
4294 4294 .label-primary[href]:focus {
4295 4295 background-color: #3071a9;
4296 4296 }
4297 4297 .label-success {
4298 4298 background-color: #5cb85c;
4299 4299 }
4300 4300 .label-success[href]:hover,
4301 4301 .label-success[href]:focus {
4302 4302 background-color: #449d44;
4303 4303 }
4304 4304 .label-info {
4305 4305 background-color: #5bc0de;
4306 4306 }
4307 4307 .label-info[href]:hover,
4308 4308 .label-info[href]:focus {
4309 4309 background-color: #31b0d5;
4310 4310 }
4311 4311 .label-warning {
4312 4312 background-color: #f0ad4e;
4313 4313 }
4314 4314 .label-warning[href]:hover,
4315 4315 .label-warning[href]:focus {
4316 4316 background-color: #ec971f;
4317 4317 }
4318 4318 .label-danger {
4319 4319 background-color: #d9534f;
4320 4320 }
4321 4321 .label-danger[href]:hover,
4322 4322 .label-danger[href]:focus {
4323 4323 background-color: #c9302c;
4324 4324 }
4325 4325 .badge {
4326 4326 display: inline-block;
4327 4327 min-width: 10px;
4328 4328 padding: 3px 7px;
4329 4329 font-size: 12px;
4330 4330 font-weight: bold;
4331 4331 color: #ffffff;
4332 4332 line-height: 1;
4333 4333 vertical-align: baseline;
4334 4334 white-space: nowrap;
4335 4335 text-align: center;
4336 4336 background-color: #999999;
4337 4337 border-radius: 10px;
4338 4338 }
4339 4339 .badge:empty {
4340 4340 display: none;
4341 4341 }
4342 4342 .btn .badge {
4343 4343 position: relative;
4344 4344 top: -1px;
4345 4345 }
4346 4346 .btn-xs .badge {
4347 4347 top: 0;
4348 4348 padding: 1px 5px;
4349 4349 }
4350 4350 a.badge:hover,
4351 4351 a.badge:focus {
4352 4352 color: #ffffff;
4353 4353 text-decoration: none;
4354 4354 cursor: pointer;
4355 4355 }
4356 4356 a.list-group-item.active > .badge,
4357 4357 .nav-pills > .active > a > .badge {
4358 4358 color: #428bca;
4359 4359 background-color: #ffffff;
4360 4360 }
4361 4361 .nav-pills > li > a > .badge {
4362 4362 margin-left: 3px;
4363 4363 }
4364 4364 .jumbotron {
4365 4365 padding: 30px;
4366 4366 margin-bottom: 30px;
4367 4367 color: inherit;
4368 4368 background-color: #eeeeee;
4369 4369 }
4370 4370 .jumbotron h1,
4371 4371 .jumbotron .h1 {
4372 4372 color: inherit;
4373 4373 }
4374 4374 .jumbotron p {
4375 4375 margin-bottom: 15px;
4376 4376 font-size: 20px;
4377 4377 font-weight: 200;
4378 4378 }
4379 4379 .container .jumbotron {
4380 4380 border-radius: 6px;
4381 4381 }
4382 4382 .jumbotron .container {
4383 4383 max-width: 100%;
4384 4384 }
4385 4385 @media screen and (min-width: 768px) {
4386 4386 .jumbotron {
4387 4387 padding-top: 48px;
4388 4388 padding-bottom: 48px;
4389 4389 }
4390 4390 .container .jumbotron {
4391 4391 padding-left: 60px;
4392 4392 padding-right: 60px;
4393 4393 }
4394 4394 .jumbotron h1,
4395 4395 .jumbotron .h1 {
4396 4396 font-size: 58.5px;
4397 4397 }
4398 4398 }
4399 4399 .thumbnail {
4400 4400 display: block;
4401 4401 padding: 4px;
4402 4402 margin-bottom: 18px;
4403 4403 line-height: 1.42857143;
4404 4404 background-color: #ffffff;
4405 4405 border: 1px solid #dddddd;
4406 4406 border-radius: 4px;
4407 4407 -webkit-transition: all 0.2s ease-in-out;
4408 4408 transition: all 0.2s ease-in-out;
4409 4409 }
4410 4410 .thumbnail > img,
4411 4411 .thumbnail a > img {
4412 4412 margin-left: auto;
4413 4413 margin-right: auto;
4414 4414 }
4415 4415 a.thumbnail:hover,
4416 4416 a.thumbnail:focus,
4417 4417 a.thumbnail.active {
4418 4418 border-color: #428bca;
4419 4419 }
4420 4420 .thumbnail .caption {
4421 4421 padding: 9px;
4422 4422 color: #000000;
4423 4423 }
4424 4424 .alert {
4425 4425 padding: 15px;
4426 4426 margin-bottom: 18px;
4427 4427 border: 1px solid transparent;
4428 4428 border-radius: 4px;
4429 4429 }
4430 4430 .alert h4 {
4431 4431 margin-top: 0;
4432 4432 color: inherit;
4433 4433 }
4434 4434 .alert .alert-link {
4435 4435 font-weight: bold;
4436 4436 }
4437 4437 .alert > p,
4438 4438 .alert > ul {
4439 4439 margin-bottom: 0;
4440 4440 }
4441 4441 .alert > p + p {
4442 4442 margin-top: 5px;
4443 4443 }
4444 4444 .alert-dismissable {
4445 4445 padding-right: 35px;
4446 4446 }
4447 4447 .alert-dismissable .close {
4448 4448 position: relative;
4449 4449 top: -2px;
4450 4450 right: -21px;
4451 4451 color: inherit;
4452 4452 }
4453 4453 .alert-success {
4454 4454 background-color: #dff0d8;
4455 4455 border-color: #d6e9c6;
4456 4456 color: #3c763d;
4457 4457 }
4458 4458 .alert-success hr {
4459 4459 border-top-color: #c9e2b3;
4460 4460 }
4461 4461 .alert-success .alert-link {
4462 4462 color: #2b542c;
4463 4463 }
4464 4464 .alert-info {
4465 4465 background-color: #d9edf7;
4466 4466 border-color: #bce8f1;
4467 4467 color: #31708f;
4468 4468 }
4469 4469 .alert-info hr {
4470 4470 border-top-color: #a6e1ec;
4471 4471 }
4472 4472 .alert-info .alert-link {
4473 4473 color: #245269;
4474 4474 }
4475 4475 .alert-warning {
4476 4476 background-color: #fcf8e3;
4477 4477 border-color: #faebcc;
4478 4478 color: #8a6d3b;
4479 4479 }
4480 4480 .alert-warning hr {
4481 4481 border-top-color: #f7e1b5;
4482 4482 }
4483 4483 .alert-warning .alert-link {
4484 4484 color: #66512c;
4485 4485 }
4486 4486 .alert-danger {
4487 4487 background-color: #f2dede;
4488 4488 border-color: #ebccd1;
4489 4489 color: #a94442;
4490 4490 }
4491 4491 .alert-danger hr {
4492 4492 border-top-color: #e4b9c0;
4493 4493 }
4494 4494 .alert-danger .alert-link {
4495 4495 color: #843534;
4496 4496 }
4497 4497 @-webkit-keyframes progress-bar-stripes {
4498 4498 from {
4499 4499 background-position: 40px 0;
4500 4500 }
4501 4501 to {
4502 4502 background-position: 0 0;
4503 4503 }
4504 4504 }
4505 4505 @keyframes progress-bar-stripes {
4506 4506 from {
4507 4507 background-position: 40px 0;
4508 4508 }
4509 4509 to {
4510 4510 background-position: 0 0;
4511 4511 }
4512 4512 }
4513 4513 .progress {
4514 4514 overflow: hidden;
4515 4515 height: 18px;
4516 4516 margin-bottom: 18px;
4517 4517 background-color: #f5f5f5;
4518 4518 border-radius: 4px;
4519 4519 -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4520 4520 box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
4521 4521 }
4522 4522 .progress-bar {
4523 4523 float: left;
4524 4524 width: 0%;
4525 4525 height: 100%;
4526 4526 font-size: 12px;
4527 4527 line-height: 18px;
4528 4528 color: #ffffff;
4529 4529 text-align: center;
4530 4530 background-color: #428bca;
4531 4531 -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4532 4532 box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
4533 4533 -webkit-transition: width 0.6s ease;
4534 4534 transition: width 0.6s ease;
4535 4535 }
4536 4536 .progress-striped .progress-bar {
4537 4537 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);
4538 4538 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);
4539 4539 background-size: 40px 40px;
4540 4540 }
4541 4541 .progress.active .progress-bar {
4542 4542 -webkit-animation: progress-bar-stripes 2s linear infinite;
4543 4543 animation: progress-bar-stripes 2s linear infinite;
4544 4544 }
4545 4545 .progress-bar-success {
4546 4546 background-color: #5cb85c;
4547 4547 }
4548 4548 .progress-striped .progress-bar-success {
4549 4549 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);
4550 4550 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);
4551 4551 }
4552 4552 .progress-bar-info {
4553 4553 background-color: #5bc0de;
4554 4554 }
4555 4555 .progress-striped .progress-bar-info {
4556 4556 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);
4557 4557 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);
4558 4558 }
4559 4559 .progress-bar-warning {
4560 4560 background-color: #f0ad4e;
4561 4561 }
4562 4562 .progress-striped .progress-bar-warning {
4563 4563 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);
4564 4564 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);
4565 4565 }
4566 4566 .progress-bar-danger {
4567 4567 background-color: #d9534f;
4568 4568 }
4569 4569 .progress-striped .progress-bar-danger {
4570 4570 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);
4571 4571 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);
4572 4572 }
4573 4573 .media,
4574 4574 .media-body {
4575 4575 overflow: hidden;
4576 4576 zoom: 1;
4577 4577 }
4578 4578 .media,
4579 4579 .media .media {
4580 4580 margin-top: 15px;
4581 4581 }
4582 4582 .media:first-child {
4583 4583 margin-top: 0;
4584 4584 }
4585 4585 .media-object {
4586 4586 display: block;
4587 4587 }
4588 4588 .media-heading {
4589 4589 margin: 0 0 5px;
4590 4590 }
4591 4591 .media > .pull-left {
4592 4592 margin-right: 10px;
4593 4593 }
4594 4594 .media > .pull-right {
4595 4595 margin-left: 10px;
4596 4596 }
4597 4597 .media-list {
4598 4598 padding-left: 0;
4599 4599 list-style: none;
4600 4600 }
4601 4601 .list-group {
4602 4602 margin-bottom: 20px;
4603 4603 padding-left: 0;
4604 4604 }
4605 4605 .list-group-item {
4606 4606 position: relative;
4607 4607 display: block;
4608 4608 padding: 10px 15px;
4609 4609 margin-bottom: -1px;
4610 4610 background-color: #ffffff;
4611 4611 border: 1px solid #dddddd;
4612 4612 }
4613 4613 .list-group-item:first-child {
4614 4614 border-top-right-radius: 4px;
4615 4615 border-top-left-radius: 4px;
4616 4616 }
4617 4617 .list-group-item:last-child {
4618 4618 margin-bottom: 0;
4619 4619 border-bottom-right-radius: 4px;
4620 4620 border-bottom-left-radius: 4px;
4621 4621 }
4622 4622 .list-group-item > .badge {
4623 4623 float: right;
4624 4624 }
4625 4625 .list-group-item > .badge + .badge {
4626 4626 margin-right: 5px;
4627 4627 }
4628 4628 a.list-group-item {
4629 4629 color: #555555;
4630 4630 }
4631 4631 a.list-group-item .list-group-item-heading {
4632 4632 color: #333333;
4633 4633 }
4634 4634 a.list-group-item:hover,
4635 4635 a.list-group-item:focus {
4636 4636 text-decoration: none;
4637 4637 background-color: #f5f5f5;
4638 4638 }
4639 4639 a.list-group-item.active,
4640 4640 a.list-group-item.active:hover,
4641 4641 a.list-group-item.active:focus {
4642 4642 z-index: 2;
4643 4643 color: #ffffff;
4644 4644 background-color: #428bca;
4645 4645 border-color: #428bca;
4646 4646 }
4647 4647 a.list-group-item.active .list-group-item-heading,
4648 4648 a.list-group-item.active:hover .list-group-item-heading,
4649 4649 a.list-group-item.active:focus .list-group-item-heading {
4650 4650 color: inherit;
4651 4651 }
4652 4652 a.list-group-item.active .list-group-item-text,
4653 4653 a.list-group-item.active:hover .list-group-item-text,
4654 4654 a.list-group-item.active:focus .list-group-item-text {
4655 4655 color: #e1edf7;
4656 4656 }
4657 4657 .list-group-item-success {
4658 4658 color: #3c763d;
4659 4659 background-color: #dff0d8;
4660 4660 }
4661 4661 a.list-group-item-success {
4662 4662 color: #3c763d;
4663 4663 }
4664 4664 a.list-group-item-success .list-group-item-heading {
4665 4665 color: inherit;
4666 4666 }
4667 4667 a.list-group-item-success:hover,
4668 4668 a.list-group-item-success:focus {
4669 4669 color: #3c763d;
4670 4670 background-color: #d0e9c6;
4671 4671 }
4672 4672 a.list-group-item-success.active,
4673 4673 a.list-group-item-success.active:hover,
4674 4674 a.list-group-item-success.active:focus {
4675 4675 color: #fff;
4676 4676 background-color: #3c763d;
4677 4677 border-color: #3c763d;
4678 4678 }
4679 4679 .list-group-item-info {
4680 4680 color: #31708f;
4681 4681 background-color: #d9edf7;
4682 4682 }
4683 4683 a.list-group-item-info {
4684 4684 color: #31708f;
4685 4685 }
4686 4686 a.list-group-item-info .list-group-item-heading {
4687 4687 color: inherit;
4688 4688 }
4689 4689 a.list-group-item-info:hover,
4690 4690 a.list-group-item-info:focus {
4691 4691 color: #31708f;
4692 4692 background-color: #c4e3f3;
4693 4693 }
4694 4694 a.list-group-item-info.active,
4695 4695 a.list-group-item-info.active:hover,
4696 4696 a.list-group-item-info.active:focus {
4697 4697 color: #fff;
4698 4698 background-color: #31708f;
4699 4699 border-color: #31708f;
4700 4700 }
4701 4701 .list-group-item-warning {
4702 4702 color: #8a6d3b;
4703 4703 background-color: #fcf8e3;
4704 4704 }
4705 4705 a.list-group-item-warning {
4706 4706 color: #8a6d3b;
4707 4707 }
4708 4708 a.list-group-item-warning .list-group-item-heading {
4709 4709 color: inherit;
4710 4710 }
4711 4711 a.list-group-item-warning:hover,
4712 4712 a.list-group-item-warning:focus {
4713 4713 color: #8a6d3b;
4714 4714 background-color: #faf2cc;
4715 4715 }
4716 4716 a.list-group-item-warning.active,
4717 4717 a.list-group-item-warning.active:hover,
4718 4718 a.list-group-item-warning.active:focus {
4719 4719 color: #fff;
4720 4720 background-color: #8a6d3b;
4721 4721 border-color: #8a6d3b;
4722 4722 }
4723 4723 .list-group-item-danger {
4724 4724 color: #a94442;
4725 4725 background-color: #f2dede;
4726 4726 }
4727 4727 a.list-group-item-danger {
4728 4728 color: #a94442;
4729 4729 }
4730 4730 a.list-group-item-danger .list-group-item-heading {
4731 4731 color: inherit;
4732 4732 }
4733 4733 a.list-group-item-danger:hover,
4734 4734 a.list-group-item-danger:focus {
4735 4735 color: #a94442;
4736 4736 background-color: #ebcccc;
4737 4737 }
4738 4738 a.list-group-item-danger.active,
4739 4739 a.list-group-item-danger.active:hover,
4740 4740 a.list-group-item-danger.active:focus {
4741 4741 color: #fff;
4742 4742 background-color: #a94442;
4743 4743 border-color: #a94442;
4744 4744 }
4745 4745 .list-group-item-heading {
4746 4746 margin-top: 0;
4747 4747 margin-bottom: 5px;
4748 4748 }
4749 4749 .list-group-item-text {
4750 4750 margin-bottom: 0;
4751 4751 line-height: 1.3;
4752 4752 }
4753 4753 .panel {
4754 4754 margin-bottom: 18px;
4755 4755 background-color: #ffffff;
4756 4756 border: 1px solid transparent;
4757 4757 border-radius: 4px;
4758 4758 -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4759 4759 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4760 4760 }
4761 4761 .panel-body {
4762 4762 padding: 15px;
4763 4763 }
4764 4764 .panel-heading {
4765 4765 padding: 10px 15px;
4766 4766 border-bottom: 1px solid transparent;
4767 4767 border-top-right-radius: 3px;
4768 4768 border-top-left-radius: 3px;
4769 4769 }
4770 4770 .panel-heading > .dropdown .dropdown-toggle {
4771 4771 color: inherit;
4772 4772 }
4773 4773 .panel-title {
4774 4774 margin-top: 0;
4775 4775 margin-bottom: 0;
4776 4776 font-size: 15px;
4777 4777 color: inherit;
4778 4778 }
4779 4779 .panel-title > a {
4780 4780 color: inherit;
4781 4781 }
4782 4782 .panel-footer {
4783 4783 padding: 10px 15px;
4784 4784 background-color: #f5f5f5;
4785 4785 border-top: 1px solid #dddddd;
4786 4786 border-bottom-right-radius: 3px;
4787 4787 border-bottom-left-radius: 3px;
4788 4788 }
4789 4789 .panel > .list-group {
4790 4790 margin-bottom: 0;
4791 4791 }
4792 4792 .panel > .list-group .list-group-item {
4793 4793 border-width: 1px 0;
4794 4794 border-radius: 0;
4795 4795 }
4796 4796 .panel > .list-group:first-child .list-group-item:first-child {
4797 4797 border-top: 0;
4798 4798 border-top-right-radius: 3px;
4799 4799 border-top-left-radius: 3px;
4800 4800 }
4801 4801 .panel > .list-group:last-child .list-group-item:last-child {
4802 4802 border-bottom: 0;
4803 4803 border-bottom-right-radius: 3px;
4804 4804 border-bottom-left-radius: 3px;
4805 4805 }
4806 4806 .panel-heading + .list-group .list-group-item:first-child {
4807 4807 border-top-width: 0;
4808 4808 }
4809 4809 .panel > .table,
4810 4810 .panel > .table-responsive > .table {
4811 4811 margin-bottom: 0;
4812 4812 }
4813 4813 .panel > .table:first-child,
4814 4814 .panel > .table-responsive:first-child > .table:first-child {
4815 4815 border-top-right-radius: 3px;
4816 4816 border-top-left-radius: 3px;
4817 4817 }
4818 4818 .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4819 4819 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4820 4820 .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4821 4821 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4822 4822 .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4823 4823 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4824 4824 .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4825 4825 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4826 4826 border-top-left-radius: 3px;
4827 4827 }
4828 4828 .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4829 4829 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4830 4830 .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4831 4831 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4832 4832 .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4833 4833 .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4834 4834 .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4835 4835 .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4836 4836 border-top-right-radius: 3px;
4837 4837 }
4838 4838 .panel > .table:last-child,
4839 4839 .panel > .table-responsive:last-child > .table:last-child {
4840 4840 border-bottom-right-radius: 3px;
4841 4841 border-bottom-left-radius: 3px;
4842 4842 }
4843 4843 .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4844 4844 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4845 4845 .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4846 4846 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4847 4847 .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4848 4848 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4849 4849 .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4850 4850 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4851 4851 border-bottom-left-radius: 3px;
4852 4852 }
4853 4853 .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4854 4854 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4855 4855 .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4856 4856 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4857 4857 .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4858 4858 .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4859 4859 .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4860 4860 .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4861 4861 border-bottom-right-radius: 3px;
4862 4862 }
4863 4863 .panel > .panel-body + .table,
4864 4864 .panel > .panel-body + .table-responsive {
4865 4865 border-top: 1px solid #dddddd;
4866 4866 }
4867 4867 .panel > .table > tbody:first-child > tr:first-child th,
4868 4868 .panel > .table > tbody:first-child > tr:first-child td {
4869 4869 border-top: 0;
4870 4870 }
4871 4871 .panel > .table-bordered,
4872 4872 .panel > .table-responsive > .table-bordered {
4873 4873 border: 0;
4874 4874 }
4875 4875 .panel > .table-bordered > thead > tr > th:first-child,
4876 4876 .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4877 4877 .panel > .table-bordered > tbody > tr > th:first-child,
4878 4878 .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4879 4879 .panel > .table-bordered > tfoot > tr > th:first-child,
4880 4880 .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4881 4881 .panel > .table-bordered > thead > tr > td:first-child,
4882 4882 .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4883 4883 .panel > .table-bordered > tbody > tr > td:first-child,
4884 4884 .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4885 4885 .panel > .table-bordered > tfoot > tr > td:first-child,
4886 4886 .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4887 4887 border-left: 0;
4888 4888 }
4889 4889 .panel > .table-bordered > thead > tr > th:last-child,
4890 4890 .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4891 4891 .panel > .table-bordered > tbody > tr > th:last-child,
4892 4892 .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4893 4893 .panel > .table-bordered > tfoot > tr > th:last-child,
4894 4894 .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4895 4895 .panel > .table-bordered > thead > tr > td:last-child,
4896 4896 .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4897 4897 .panel > .table-bordered > tbody > tr > td:last-child,
4898 4898 .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4899 4899 .panel > .table-bordered > tfoot > tr > td:last-child,
4900 4900 .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4901 4901 border-right: 0;
4902 4902 }
4903 4903 .panel > .table-bordered > thead > tr:first-child > td,
4904 4904 .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4905 4905 .panel > .table-bordered > tbody > tr:first-child > td,
4906 4906 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4907 4907 .panel > .table-bordered > thead > tr:first-child > th,
4908 4908 .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4909 4909 .panel > .table-bordered > tbody > tr:first-child > th,
4910 4910 .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4911 4911 border-bottom: 0;
4912 4912 }
4913 4913 .panel > .table-bordered > tbody > tr:last-child > td,
4914 4914 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4915 4915 .panel > .table-bordered > tfoot > tr:last-child > td,
4916 4916 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4917 4917 .panel > .table-bordered > tbody > tr:last-child > th,
4918 4918 .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4919 4919 .panel > .table-bordered > tfoot > tr:last-child > th,
4920 4920 .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4921 4921 border-bottom: 0;
4922 4922 }
4923 4923 .panel > .table-responsive {
4924 4924 border: 0;
4925 4925 margin-bottom: 0;
4926 4926 }
4927 4927 .panel-group {
4928 4928 margin-bottom: 18px;
4929 4929 }
4930 4930 .panel-group .panel {
4931 4931 margin-bottom: 0;
4932 4932 border-radius: 4px;
4933 4933 overflow: hidden;
4934 4934 }
4935 4935 .panel-group .panel + .panel {
4936 4936 margin-top: 5px;
4937 4937 }
4938 4938 .panel-group .panel-heading {
4939 4939 border-bottom: 0;
4940 4940 }
4941 4941 .panel-group .panel-heading + .panel-collapse .panel-body {
4942 4942 border-top: 1px solid #dddddd;
4943 4943 }
4944 4944 .panel-group .panel-footer {
4945 4945 border-top: 0;
4946 4946 }
4947 4947 .panel-group .panel-footer + .panel-collapse .panel-body {
4948 4948 border-bottom: 1px solid #dddddd;
4949 4949 }
4950 4950 .panel-default {
4951 4951 border-color: #dddddd;
4952 4952 }
4953 4953 .panel-default > .panel-heading {
4954 4954 color: #333333;
4955 4955 background-color: #f5f5f5;
4956 4956 border-color: #dddddd;
4957 4957 }
4958 4958 .panel-default > .panel-heading + .panel-collapse .panel-body {
4959 4959 border-top-color: #dddddd;
4960 4960 }
4961 4961 .panel-default > .panel-footer + .panel-collapse .panel-body {
4962 4962 border-bottom-color: #dddddd;
4963 4963 }
4964 4964 .panel-primary {
4965 4965 border-color: #428bca;
4966 4966 }
4967 4967 .panel-primary > .panel-heading {
4968 4968 color: #ffffff;
4969 4969 background-color: #428bca;
4970 4970 border-color: #428bca;
4971 4971 }
4972 4972 .panel-primary > .panel-heading + .panel-collapse .panel-body {
4973 4973 border-top-color: #428bca;
4974 4974 }
4975 4975 .panel-primary > .panel-footer + .panel-collapse .panel-body {
4976 4976 border-bottom-color: #428bca;
4977 4977 }
4978 4978 .panel-success {
4979 4979 border-color: #d6e9c6;
4980 4980 }
4981 4981 .panel-success > .panel-heading {
4982 4982 color: #3c763d;
4983 4983 background-color: #dff0d8;
4984 4984 border-color: #d6e9c6;
4985 4985 }
4986 4986 .panel-success > .panel-heading + .panel-collapse .panel-body {
4987 4987 border-top-color: #d6e9c6;
4988 4988 }
4989 4989 .panel-success > .panel-footer + .panel-collapse .panel-body {
4990 4990 border-bottom-color: #d6e9c6;
4991 4991 }
4992 4992 .panel-info {
4993 4993 border-color: #bce8f1;
4994 4994 }
4995 4995 .panel-info > .panel-heading {
4996 4996 color: #31708f;
4997 4997 background-color: #d9edf7;
4998 4998 border-color: #bce8f1;
4999 4999 }
5000 5000 .panel-info > .panel-heading + .panel-collapse .panel-body {
5001 5001 border-top-color: #bce8f1;
5002 5002 }
5003 5003 .panel-info > .panel-footer + .panel-collapse .panel-body {
5004 5004 border-bottom-color: #bce8f1;
5005 5005 }
5006 5006 .panel-warning {
5007 5007 border-color: #faebcc;
5008 5008 }
5009 5009 .panel-warning > .panel-heading {
5010 5010 color: #8a6d3b;
5011 5011 background-color: #fcf8e3;
5012 5012 border-color: #faebcc;
5013 5013 }
5014 5014 .panel-warning > .panel-heading + .panel-collapse .panel-body {
5015 5015 border-top-color: #faebcc;
5016 5016 }
5017 5017 .panel-warning > .panel-footer + .panel-collapse .panel-body {
5018 5018 border-bottom-color: #faebcc;
5019 5019 }
5020 5020 .panel-danger {
5021 5021 border-color: #ebccd1;
5022 5022 }
5023 5023 .panel-danger > .panel-heading {
5024 5024 color: #a94442;
5025 5025 background-color: #f2dede;
5026 5026 border-color: #ebccd1;
5027 5027 }
5028 5028 .panel-danger > .panel-heading + .panel-collapse .panel-body {
5029 5029 border-top-color: #ebccd1;
5030 5030 }
5031 5031 .panel-danger > .panel-footer + .panel-collapse .panel-body {
5032 5032 border-bottom-color: #ebccd1;
5033 5033 }
5034 5034 .well {
5035 5035 min-height: 20px;
5036 5036 padding: 19px;
5037 5037 margin-bottom: 20px;
5038 5038 background-color: #f5f5f5;
5039 5039 border: 1px solid #e3e3e3;
5040 5040 border-radius: 4px;
5041 5041 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5042 5042 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
5043 5043 }
5044 5044 .well blockquote {
5045 5045 border-color: #ddd;
5046 5046 border-color: rgba(0, 0, 0, 0.15);
5047 5047 }
5048 5048 .well-lg {
5049 5049 padding: 24px;
5050 5050 border-radius: 6px;
5051 5051 }
5052 5052 .well-sm {
5053 5053 padding: 9px;
5054 5054 border-radius: 3px;
5055 5055 }
5056 5056 .close {
5057 5057 float: right;
5058 5058 font-size: 19.5px;
5059 5059 font-weight: bold;
5060 5060 line-height: 1;
5061 5061 color: #000000;
5062 5062 text-shadow: 0 1px 0 #ffffff;
5063 5063 opacity: 0.2;
5064 5064 filter: alpha(opacity=20);
5065 5065 }
5066 5066 .close:hover,
5067 5067 .close:focus {
5068 5068 color: #000000;
5069 5069 text-decoration: none;
5070 5070 cursor: pointer;
5071 5071 opacity: 0.5;
5072 5072 filter: alpha(opacity=50);
5073 5073 }
5074 5074 button.close {
5075 5075 padding: 0;
5076 5076 cursor: pointer;
5077 5077 background: transparent;
5078 5078 border: 0;
5079 5079 -webkit-appearance: none;
5080 5080 }
5081 5081 .modal-open {
5082 5082 overflow: hidden;
5083 5083 }
5084 5084 .modal {
5085 5085 display: none;
5086 5086 overflow: auto;
5087 5087 overflow-y: scroll;
5088 5088 position: fixed;
5089 5089 top: 0;
5090 5090 right: 0;
5091 5091 bottom: 0;
5092 5092 left: 0;
5093 5093 z-index: 1050;
5094 5094 -webkit-overflow-scrolling: touch;
5095 5095 outline: 0;
5096 5096 }
5097 5097 .modal.fade .modal-dialog {
5098 5098 -webkit-transform: translate(0, -25%);
5099 5099 -ms-transform: translate(0, -25%);
5100 5100 transform: translate(0, -25%);
5101 5101 -webkit-transition: -webkit-transform 0.3s ease-out;
5102 5102 -moz-transition: -moz-transform 0.3s ease-out;
5103 5103 -o-transition: -o-transform 0.3s ease-out;
5104 5104 transition: transform 0.3s ease-out;
5105 5105 }
5106 5106 .modal.in .modal-dialog {
5107 5107 -webkit-transform: translate(0, 0);
5108 5108 -ms-transform: translate(0, 0);
5109 5109 transform: translate(0, 0);
5110 5110 }
5111 5111 .modal-dialog {
5112 5112 position: relative;
5113 5113 width: auto;
5114 5114 margin: 10px;
5115 5115 }
5116 5116 .modal-content {
5117 5117 position: relative;
5118 5118 background-color: #ffffff;
5119 5119 border: 1px solid #999999;
5120 5120 border: 1px solid rgba(0, 0, 0, 0.2);
5121 5121 border-radius: 6px;
5122 5122 -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5123 5123 box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
5124 5124 background-clip: padding-box;
5125 5125 outline: none;
5126 5126 }
5127 5127 .modal-backdrop {
5128 5128 position: fixed;
5129 5129 top: 0;
5130 5130 right: 0;
5131 5131 bottom: 0;
5132 5132 left: 0;
5133 5133 z-index: 1040;
5134 5134 background-color: #000000;
5135 5135 }
5136 5136 .modal-backdrop.fade {
5137 5137 opacity: 0;
5138 5138 filter: alpha(opacity=0);
5139 5139 }
5140 5140 .modal-backdrop.in {
5141 5141 opacity: 0.5;
5142 5142 filter: alpha(opacity=50);
5143 5143 }
5144 5144 .modal-header {
5145 5145 padding: 15px;
5146 5146 border-bottom: 1px solid #e5e5e5;
5147 5147 min-height: 16.42857143px;
5148 5148 }
5149 5149 .modal-header .close {
5150 5150 margin-top: -2px;
5151 5151 }
5152 5152 .modal-title {
5153 5153 margin: 0;
5154 5154 line-height: 1.42857143;
5155 5155 }
5156 5156 .modal-body {
5157 5157 position: relative;
5158 5158 padding: 15px;
5159 5159 }
5160 5160 .modal-footer {
5161 5161 margin-top: 15px;
5162 5162 padding: 14px 15px 15px;
5163 5163 text-align: right;
5164 5164 border-top: 1px solid #e5e5e5;
5165 5165 }
5166 5166 .modal-footer .btn + .btn {
5167 5167 margin-left: 5px;
5168 5168 margin-bottom: 0;
5169 5169 }
5170 5170 .modal-footer .btn-group .btn + .btn {
5171 5171 margin-left: -1px;
5172 5172 }
5173 5173 .modal-footer .btn-block + .btn-block {
5174 5174 margin-left: 0;
5175 5175 }
5176 5176 @media (min-width: 768px) {
5177 5177 .modal-dialog {
5178 5178 width: 600px;
5179 5179 margin: 30px auto;
5180 5180 }
5181 5181 .modal-content {
5182 5182 -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5183 5183 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
5184 5184 }
5185 5185 .modal-sm {
5186 5186 width: 300px;
5187 5187 }
5188 5188 }
5189 5189 @media (min-width: 992px) {
5190 5190 .modal-lg {
5191 5191 width: 900px;
5192 5192 }
5193 5193 }
5194 5194 .tooltip {
5195 5195 position: absolute;
5196 5196 z-index: 1030;
5197 5197 display: block;
5198 5198 visibility: visible;
5199 5199 font-size: 12px;
5200 5200 line-height: 1.4;
5201 5201 opacity: 0;
5202 5202 filter: alpha(opacity=0);
5203 5203 }
5204 5204 .tooltip.in {
5205 5205 opacity: 0.9;
5206 5206 filter: alpha(opacity=90);
5207 5207 }
5208 5208 .tooltip.top {
5209 5209 margin-top: -3px;
5210 5210 padding: 5px 0;
5211 5211 }
5212 5212 .tooltip.right {
5213 5213 margin-left: 3px;
5214 5214 padding: 0 5px;
5215 5215 }
5216 5216 .tooltip.bottom {
5217 5217 margin-top: 3px;
5218 5218 padding: 5px 0;
5219 5219 }
5220 5220 .tooltip.left {
5221 5221 margin-left: -3px;
5222 5222 padding: 0 5px;
5223 5223 }
5224 5224 .tooltip-inner {
5225 5225 max-width: 200px;
5226 5226 padding: 3px 8px;
5227 5227 color: #ffffff;
5228 5228 text-align: center;
5229 5229 text-decoration: none;
5230 5230 background-color: #000000;
5231 5231 border-radius: 4px;
5232 5232 }
5233 5233 .tooltip-arrow {
5234 5234 position: absolute;
5235 5235 width: 0;
5236 5236 height: 0;
5237 5237 border-color: transparent;
5238 5238 border-style: solid;
5239 5239 }
5240 5240 .tooltip.top .tooltip-arrow {
5241 5241 bottom: 0;
5242 5242 left: 50%;
5243 5243 margin-left: -5px;
5244 5244 border-width: 5px 5px 0;
5245 5245 border-top-color: #000000;
5246 5246 }
5247 5247 .tooltip.top-left .tooltip-arrow {
5248 5248 bottom: 0;
5249 5249 left: 5px;
5250 5250 border-width: 5px 5px 0;
5251 5251 border-top-color: #000000;
5252 5252 }
5253 5253 .tooltip.top-right .tooltip-arrow {
5254 5254 bottom: 0;
5255 5255 right: 5px;
5256 5256 border-width: 5px 5px 0;
5257 5257 border-top-color: #000000;
5258 5258 }
5259 5259 .tooltip.right .tooltip-arrow {
5260 5260 top: 50%;
5261 5261 left: 0;
5262 5262 margin-top: -5px;
5263 5263 border-width: 5px 5px 5px 0;
5264 5264 border-right-color: #000000;
5265 5265 }
5266 5266 .tooltip.left .tooltip-arrow {
5267 5267 top: 50%;
5268 5268 right: 0;
5269 5269 margin-top: -5px;
5270 5270 border-width: 5px 0 5px 5px;
5271 5271 border-left-color: #000000;
5272 5272 }
5273 5273 .tooltip.bottom .tooltip-arrow {
5274 5274 top: 0;
5275 5275 left: 50%;
5276 5276 margin-left: -5px;
5277 5277 border-width: 0 5px 5px;
5278 5278 border-bottom-color: #000000;
5279 5279 }
5280 5280 .tooltip.bottom-left .tooltip-arrow {
5281 5281 top: 0;
5282 5282 left: 5px;
5283 5283 border-width: 0 5px 5px;
5284 5284 border-bottom-color: #000000;
5285 5285 }
5286 5286 .tooltip.bottom-right .tooltip-arrow {
5287 5287 top: 0;
5288 5288 right: 5px;
5289 5289 border-width: 0 5px 5px;
5290 5290 border-bottom-color: #000000;
5291 5291 }
5292 5292 .popover {
5293 5293 position: absolute;
5294 5294 top: 0;
5295 5295 left: 0;
5296 5296 z-index: 1010;
5297 5297 display: none;
5298 5298 max-width: 276px;
5299 5299 padding: 1px;
5300 5300 text-align: left;
5301 5301 background-color: #ffffff;
5302 5302 background-clip: padding-box;
5303 5303 border: 1px solid #cccccc;
5304 5304 border: 1px solid rgba(0, 0, 0, 0.2);
5305 5305 border-radius: 6px;
5306 5306 -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5307 5307 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
5308 5308 white-space: normal;
5309 5309 }
5310 5310 .popover.top {
5311 5311 margin-top: -10px;
5312 5312 }
5313 5313 .popover.right {
5314 5314 margin-left: 10px;
5315 5315 }
5316 5316 .popover.bottom {
5317 5317 margin-top: 10px;
5318 5318 }
5319 5319 .popover.left {
5320 5320 margin-left: -10px;
5321 5321 }
5322 5322 .popover-title {
5323 5323 margin: 0;
5324 5324 padding: 8px 14px;
5325 5325 font-size: 13px;
5326 5326 font-weight: normal;
5327 5327 line-height: 18px;
5328 5328 background-color: #f7f7f7;
5329 5329 border-bottom: 1px solid #ebebeb;
5330 5330 border-radius: 5px 5px 0 0;
5331 5331 }
5332 5332 .popover-content {
5333 5333 padding: 9px 14px;
5334 5334 }
5335 5335 .popover > .arrow,
5336 5336 .popover > .arrow:after {
5337 5337 position: absolute;
5338 5338 display: block;
5339 5339 width: 0;
5340 5340 height: 0;
5341 5341 border-color: transparent;
5342 5342 border-style: solid;
5343 5343 }
5344 5344 .popover > .arrow {
5345 5345 border-width: 11px;
5346 5346 }
5347 5347 .popover > .arrow:after {
5348 5348 border-width: 10px;
5349 5349 content: "";
5350 5350 }
5351 5351 .popover.top > .arrow {
5352 5352 left: 50%;
5353 5353 margin-left: -11px;
5354 5354 border-bottom-width: 0;
5355 5355 border-top-color: #999999;
5356 5356 border-top-color: rgba(0, 0, 0, 0.25);
5357 5357 bottom: -11px;
5358 5358 }
5359 5359 .popover.top > .arrow:after {
5360 5360 content: " ";
5361 5361 bottom: 1px;
5362 5362 margin-left: -10px;
5363 5363 border-bottom-width: 0;
5364 5364 border-top-color: #ffffff;
5365 5365 }
5366 5366 .popover.right > .arrow {
5367 5367 top: 50%;
5368 5368 left: -11px;
5369 5369 margin-top: -11px;
5370 5370 border-left-width: 0;
5371 5371 border-right-color: #999999;
5372 5372 border-right-color: rgba(0, 0, 0, 0.25);
5373 5373 }
5374 5374 .popover.right > .arrow:after {
5375 5375 content: " ";
5376 5376 left: 1px;
5377 5377 bottom: -10px;
5378 5378 border-left-width: 0;
5379 5379 border-right-color: #ffffff;
5380 5380 }
5381 5381 .popover.bottom > .arrow {
5382 5382 left: 50%;
5383 5383 margin-left: -11px;
5384 5384 border-top-width: 0;
5385 5385 border-bottom-color: #999999;
5386 5386 border-bottom-color: rgba(0, 0, 0, 0.25);
5387 5387 top: -11px;
5388 5388 }
5389 5389 .popover.bottom > .arrow:after {
5390 5390 content: " ";
5391 5391 top: 1px;
5392 5392 margin-left: -10px;
5393 5393 border-top-width: 0;
5394 5394 border-bottom-color: #ffffff;
5395 5395 }
5396 5396 .popover.left > .arrow {
5397 5397 top: 50%;
5398 5398 right: -11px;
5399 5399 margin-top: -11px;
5400 5400 border-right-width: 0;
5401 5401 border-left-color: #999999;
5402 5402 border-left-color: rgba(0, 0, 0, 0.25);
5403 5403 }
5404 5404 .popover.left > .arrow:after {
5405 5405 content: " ";
5406 5406 right: 1px;
5407 5407 border-right-width: 0;
5408 5408 border-left-color: #ffffff;
5409 5409 bottom: -10px;
5410 5410 }
5411 5411 .carousel {
5412 5412 position: relative;
5413 5413 }
5414 5414 .carousel-inner {
5415 5415 position: relative;
5416 5416 overflow: hidden;
5417 5417 width: 100%;
5418 5418 }
5419 5419 .carousel-inner > .item {
5420 5420 display: none;
5421 5421 position: relative;
5422 5422 -webkit-transition: 0.6s ease-in-out left;
5423 5423 transition: 0.6s ease-in-out left;
5424 5424 }
5425 5425 .carousel-inner > .item > img,
5426 5426 .carousel-inner > .item > a > img {
5427 5427 line-height: 1;
5428 5428 }
5429 5429 .carousel-inner > .active,
5430 5430 .carousel-inner > .next,
5431 5431 .carousel-inner > .prev {
5432 5432 display: block;
5433 5433 }
5434 5434 .carousel-inner > .active {
5435 5435 left: 0;
5436 5436 }
5437 5437 .carousel-inner > .next,
5438 5438 .carousel-inner > .prev {
5439 5439 position: absolute;
5440 5440 top: 0;
5441 5441 width: 100%;
5442 5442 }
5443 5443 .carousel-inner > .next {
5444 5444 left: 100%;
5445 5445 }
5446 5446 .carousel-inner > .prev {
5447 5447 left: -100%;
5448 5448 }
5449 5449 .carousel-inner > .next.left,
5450 5450 .carousel-inner > .prev.right {
5451 5451 left: 0;
5452 5452 }
5453 5453 .carousel-inner > .active.left {
5454 5454 left: -100%;
5455 5455 }
5456 5456 .carousel-inner > .active.right {
5457 5457 left: 100%;
5458 5458 }
5459 5459 .carousel-control {
5460 5460 position: absolute;
5461 5461 top: 0;
5462 5462 left: 0;
5463 5463 bottom: 0;
5464 5464 width: 15%;
5465 5465 opacity: 0.5;
5466 5466 filter: alpha(opacity=50);
5467 5467 font-size: 20px;
5468 5468 color: #ffffff;
5469 5469 text-align: center;
5470 5470 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5471 5471 }
5472 5472 .carousel-control.left {
5473 5473 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.5) 0%), color-stop(rgba(0, 0, 0, 0.0001) 100%));
5474 5474 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5475 5475 background-repeat: repeat-x;
5476 5476 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5477 5477 }
5478 5478 .carousel-control.right {
5479 5479 left: auto;
5480 5480 right: 0;
5481 5481 background-image: -webkit-linear-gradient(left, color-stop(rgba(0, 0, 0, 0.0001) 0%), color-stop(rgba(0, 0, 0, 0.5) 100%));
5482 5482 background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5483 5483 background-repeat: repeat-x;
5484 5484 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5485 5485 }
5486 5486 .carousel-control:hover,
5487 5487 .carousel-control:focus {
5488 5488 outline: none;
5489 5489 color: #ffffff;
5490 5490 text-decoration: none;
5491 5491 opacity: 0.9;
5492 5492 filter: alpha(opacity=90);
5493 5493 }
5494 5494 .carousel-control .icon-prev,
5495 5495 .carousel-control .icon-next,
5496 5496 .carousel-control .glyphicon-chevron-left,
5497 5497 .carousel-control .glyphicon-chevron-right {
5498 5498 position: absolute;
5499 5499 top: 50%;
5500 5500 z-index: 5;
5501 5501 display: inline-block;
5502 5502 }
5503 5503 .carousel-control .icon-prev,
5504 5504 .carousel-control .glyphicon-chevron-left {
5505 5505 left: 50%;
5506 5506 }
5507 5507 .carousel-control .icon-next,
5508 5508 .carousel-control .glyphicon-chevron-right {
5509 5509 right: 50%;
5510 5510 }
5511 5511 .carousel-control .icon-prev,
5512 5512 .carousel-control .icon-next {
5513 5513 width: 20px;
5514 5514 height: 20px;
5515 5515 margin-top: -10px;
5516 5516 margin-left: -10px;
5517 5517 font-family: serif;
5518 5518 }
5519 5519 .carousel-control .icon-prev:before {
5520 5520 content: '\2039';
5521 5521 }
5522 5522 .carousel-control .icon-next:before {
5523 5523 content: '\203a';
5524 5524 }
5525 5525 .carousel-indicators {
5526 5526 position: absolute;
5527 5527 bottom: 10px;
5528 5528 left: 50%;
5529 5529 z-index: 15;
5530 5530 width: 60%;
5531 5531 margin-left: -30%;
5532 5532 padding-left: 0;
5533 5533 list-style: none;
5534 5534 text-align: center;
5535 5535 }
5536 5536 .carousel-indicators li {
5537 5537 display: inline-block;
5538 5538 width: 10px;
5539 5539 height: 10px;
5540 5540 margin: 1px;
5541 5541 text-indent: -999px;
5542 5542 border: 1px solid #ffffff;
5543 5543 border-radius: 10px;
5544 5544 cursor: pointer;
5545 5545 background-color: #000 \9;
5546 5546 background-color: rgba(0, 0, 0, 0);
5547 5547 }
5548 5548 .carousel-indicators .active {
5549 5549 margin: 0;
5550 5550 width: 12px;
5551 5551 height: 12px;
5552 5552 background-color: #ffffff;
5553 5553 }
5554 5554 .carousel-caption {
5555 5555 position: absolute;
5556 5556 left: 15%;
5557 5557 right: 15%;
5558 5558 bottom: 20px;
5559 5559 z-index: 10;
5560 5560 padding-top: 20px;
5561 5561 padding-bottom: 20px;
5562 5562 color: #ffffff;
5563 5563 text-align: center;
5564 5564 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5565 5565 }
5566 5566 .carousel-caption .btn {
5567 5567 text-shadow: none;
5568 5568 }
5569 5569 @media screen and (min-width: 768px) {
5570 5570 .carousel-control .glyphicon-chevron-left,
5571 5571 .carousel-control .glyphicon-chevron-right,
5572 5572 .carousel-control .icon-prev,
5573 5573 .carousel-control .icon-next {
5574 5574 width: 30px;
5575 5575 height: 30px;
5576 5576 margin-top: -15px;
5577 5577 margin-left: -15px;
5578 5578 font-size: 30px;
5579 5579 }
5580 5580 .carousel-caption {
5581 5581 left: 20%;
5582 5582 right: 20%;
5583 5583 padding-bottom: 30px;
5584 5584 }
5585 5585 .carousel-indicators {
5586 5586 bottom: 20px;
5587 5587 }
5588 5588 }
5589 5589 .clearfix:before,
5590 5590 .clearfix:after,
5591 5591 .container:before,
5592 5592 .container:after,
5593 5593 .container-fluid:before,
5594 5594 .container-fluid:after,
5595 5595 .row:before,
5596 5596 .row:after,
5597 5597 .form-horizontal .form-group:before,
5598 5598 .form-horizontal .form-group:after,
5599 5599 .btn-toolbar:before,
5600 5600 .btn-toolbar:after,
5601 5601 .btn-group-vertical > .btn-group:before,
5602 5602 .btn-group-vertical > .btn-group:after,
5603 5603 .nav:before,
5604 5604 .nav:after,
5605 5605 .navbar:before,
5606 5606 .navbar:after,
5607 5607 .navbar-header:before,
5608 5608 .navbar-header:after,
5609 5609 .navbar-collapse:before,
5610 5610 .navbar-collapse:after,
5611 5611 .pager:before,
5612 5612 .pager:after,
5613 5613 .panel-body:before,
5614 5614 .panel-body:after,
5615 5615 .modal-footer:before,
5616 .modal-footer:after {
5616 .modal-footer:after,
5617 .item_buttons:before,
5618 .item_buttons:after {
5617 5619 content: " ";
5618 5620 display: table;
5619 5621 }
5620 5622 .clearfix:after,
5621 5623 .container:after,
5622 5624 .container-fluid:after,
5623 5625 .row:after,
5624 5626 .form-horizontal .form-group:after,
5625 5627 .btn-toolbar:after,
5626 5628 .btn-group-vertical > .btn-group:after,
5627 5629 .nav:after,
5628 5630 .navbar:after,
5629 5631 .navbar-header:after,
5630 5632 .navbar-collapse:after,
5631 5633 .pager:after,
5632 5634 .panel-body:after,
5633 .modal-footer:after {
5635 .modal-footer:after,
5636 .item_buttons:after {
5634 5637 clear: both;
5635 5638 }
5636 5639 .center-block {
5637 5640 display: block;
5638 5641 margin-left: auto;
5639 5642 margin-right: auto;
5640 5643 }
5641 5644 .pull-right {
5642 5645 float: right !important;
5643 5646 }
5644 5647 .pull-left {
5645 5648 float: left !important;
5646 5649 }
5647 5650 .hide {
5648 5651 display: none !important;
5649 5652 }
5650 5653 .show {
5651 5654 display: block !important;
5652 5655 }
5653 5656 .invisible {
5654 5657 visibility: hidden;
5655 5658 }
5656 5659 .text-hide {
5657 5660 font: 0/0 a;
5658 5661 color: transparent;
5659 5662 text-shadow: none;
5660 5663 background-color: transparent;
5661 5664 border: 0;
5662 5665 }
5663 5666 .hidden {
5664 5667 display: none !important;
5665 5668 visibility: hidden !important;
5666 5669 }
5667 5670 .affix {
5668 5671 position: fixed;
5669 5672 }
5670 5673 @-ms-viewport {
5671 5674 width: device-width;
5672 5675 }
5673 5676 .visible-xs,
5674 5677 .visible-sm,
5675 5678 .visible-md,
5676 5679 .visible-lg {
5677 5680 display: none !important;
5678 5681 }
5679 5682 @media (max-width: 767px) {
5680 5683 .visible-xs {
5681 5684 display: block !important;
5682 5685 }
5683 5686 table.visible-xs {
5684 5687 display: table;
5685 5688 }
5686 5689 tr.visible-xs {
5687 5690 display: table-row !important;
5688 5691 }
5689 5692 th.visible-xs,
5690 5693 td.visible-xs {
5691 5694 display: table-cell !important;
5692 5695 }
5693 5696 }
5694 5697 @media (min-width: 768px) and (max-width: 991px) {
5695 5698 .visible-sm {
5696 5699 display: block !important;
5697 5700 }
5698 5701 table.visible-sm {
5699 5702 display: table;
5700 5703 }
5701 5704 tr.visible-sm {
5702 5705 display: table-row !important;
5703 5706 }
5704 5707 th.visible-sm,
5705 5708 td.visible-sm {
5706 5709 display: table-cell !important;
5707 5710 }
5708 5711 }
5709 5712 @media (min-width: 992px) and (max-width: 1199px) {
5710 5713 .visible-md {
5711 5714 display: block !important;
5712 5715 }
5713 5716 table.visible-md {
5714 5717 display: table;
5715 5718 }
5716 5719 tr.visible-md {
5717 5720 display: table-row !important;
5718 5721 }
5719 5722 th.visible-md,
5720 5723 td.visible-md {
5721 5724 display: table-cell !important;
5722 5725 }
5723 5726 }
5724 5727 @media (min-width: 1200px) {
5725 5728 .visible-lg {
5726 5729 display: block !important;
5727 5730 }
5728 5731 table.visible-lg {
5729 5732 display: table;
5730 5733 }
5731 5734 tr.visible-lg {
5732 5735 display: table-row !important;
5733 5736 }
5734 5737 th.visible-lg,
5735 5738 td.visible-lg {
5736 5739 display: table-cell !important;
5737 5740 }
5738 5741 }
5739 5742 @media (max-width: 767px) {
5740 5743 .hidden-xs {
5741 5744 display: none !important;
5742 5745 }
5743 5746 }
5744 5747 @media (min-width: 768px) and (max-width: 991px) {
5745 5748 .hidden-sm {
5746 5749 display: none !important;
5747 5750 }
5748 5751 }
5749 5752 @media (min-width: 992px) and (max-width: 1199px) {
5750 5753 .hidden-md {
5751 5754 display: none !important;
5752 5755 }
5753 5756 }
5754 5757 @media (min-width: 1200px) {
5755 5758 .hidden-lg {
5756 5759 display: none !important;
5757 5760 }
5758 5761 }
5759 5762 .visible-print {
5760 5763 display: none !important;
5761 5764 }
5762 5765 @media print {
5763 5766 .visible-print {
5764 5767 display: block !important;
5765 5768 }
5766 5769 table.visible-print {
5767 5770 display: table;
5768 5771 }
5769 5772 tr.visible-print {
5770 5773 display: table-row !important;
5771 5774 }
5772 5775 th.visible-print,
5773 5776 td.visible-print {
5774 5777 display: table-cell !important;
5775 5778 }
5776 5779 }
5777 5780 @media print {
5778 5781 .hidden-print {
5779 5782 display: none !important;
5780 5783 }
5781 5784 }
5782 5785 /*!
5783 5786 *
5784 5787 * Font Awesome
5785 5788 *
5786 5789 */
5787 5790 /*!
5788 5791 * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
5789 5792 * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
5790 5793 */
5791 5794 /* FONT PATH
5792 5795 * -------------------------- */
5793 5796 @font-face {
5794 5797 font-family: 'FontAwesome';
5795 5798 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?v=4.2.0');
5796 5799 src: url('../components/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../components/font-awesome/fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../components/font-awesome/fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../components/font-awesome/fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
5797 5800 font-weight: normal;
5798 5801 font-style: normal;
5799 5802 }
5800 5803 .fa {
5801 5804 display: inline-block;
5802 5805 font: normal normal normal 14px/1 FontAwesome;
5803 5806 font-size: inherit;
5804 5807 text-rendering: auto;
5805 5808 -webkit-font-smoothing: antialiased;
5806 5809 -moz-osx-font-smoothing: grayscale;
5807 5810 }
5808 5811 /* makes the font 33% larger relative to the icon container */
5809 5812 .fa-lg {
5810 5813 font-size: 1.33333333em;
5811 5814 line-height: 0.75em;
5812 5815 vertical-align: -15%;
5813 5816 }
5814 5817 .fa-2x {
5815 5818 font-size: 2em;
5816 5819 }
5817 5820 .fa-3x {
5818 5821 font-size: 3em;
5819 5822 }
5820 5823 .fa-4x {
5821 5824 font-size: 4em;
5822 5825 }
5823 5826 .fa-5x {
5824 5827 font-size: 5em;
5825 5828 }
5826 5829 .fa-fw {
5827 5830 width: 1.28571429em;
5828 5831 text-align: center;
5829 5832 }
5830 5833 .fa-ul {
5831 5834 padding-left: 0;
5832 5835 margin-left: 2.14285714em;
5833 5836 list-style-type: none;
5834 5837 }
5835 5838 .fa-ul > li {
5836 5839 position: relative;
5837 5840 }
5838 5841 .fa-li {
5839 5842 position: absolute;
5840 5843 left: -2.14285714em;
5841 5844 width: 2.14285714em;
5842 5845 top: 0.14285714em;
5843 5846 text-align: center;
5844 5847 }
5845 5848 .fa-li.fa-lg {
5846 5849 left: -1.85714286em;
5847 5850 }
5848 5851 .fa-border {
5849 5852 padding: .2em .25em .15em;
5850 5853 border: solid 0.08em #eeeeee;
5851 5854 border-radius: .1em;
5852 5855 }
5853 5856 .pull-right {
5854 5857 float: right;
5855 5858 }
5856 5859 .pull-left {
5857 5860 float: left;
5858 5861 }
5859 5862 .fa.pull-left {
5860 5863 margin-right: .3em;
5861 5864 }
5862 5865 .fa.pull-right {
5863 5866 margin-left: .3em;
5864 5867 }
5865 5868 .fa-spin {
5866 5869 -webkit-animation: fa-spin 2s infinite linear;
5867 5870 animation: fa-spin 2s infinite linear;
5868 5871 }
5869 5872 @-webkit-keyframes fa-spin {
5870 5873 0% {
5871 5874 -webkit-transform: rotate(0deg);
5872 5875 transform: rotate(0deg);
5873 5876 }
5874 5877 100% {
5875 5878 -webkit-transform: rotate(359deg);
5876 5879 transform: rotate(359deg);
5877 5880 }
5878 5881 }
5879 5882 @keyframes fa-spin {
5880 5883 0% {
5881 5884 -webkit-transform: rotate(0deg);
5882 5885 transform: rotate(0deg);
5883 5886 }
5884 5887 100% {
5885 5888 -webkit-transform: rotate(359deg);
5886 5889 transform: rotate(359deg);
5887 5890 }
5888 5891 }
5889 5892 .fa-rotate-90 {
5890 5893 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
5891 5894 -webkit-transform: rotate(90deg);
5892 5895 -ms-transform: rotate(90deg);
5893 5896 transform: rotate(90deg);
5894 5897 }
5895 5898 .fa-rotate-180 {
5896 5899 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
5897 5900 -webkit-transform: rotate(180deg);
5898 5901 -ms-transform: rotate(180deg);
5899 5902 transform: rotate(180deg);
5900 5903 }
5901 5904 .fa-rotate-270 {
5902 5905 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
5903 5906 -webkit-transform: rotate(270deg);
5904 5907 -ms-transform: rotate(270deg);
5905 5908 transform: rotate(270deg);
5906 5909 }
5907 5910 .fa-flip-horizontal {
5908 5911 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
5909 5912 -webkit-transform: scale(-1, 1);
5910 5913 -ms-transform: scale(-1, 1);
5911 5914 transform: scale(-1, 1);
5912 5915 }
5913 5916 .fa-flip-vertical {
5914 5917 filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
5915 5918 -webkit-transform: scale(1, -1);
5916 5919 -ms-transform: scale(1, -1);
5917 5920 transform: scale(1, -1);
5918 5921 }
5919 5922 :root .fa-rotate-90,
5920 5923 :root .fa-rotate-180,
5921 5924 :root .fa-rotate-270,
5922 5925 :root .fa-flip-horizontal,
5923 5926 :root .fa-flip-vertical {
5924 5927 filter: none;
5925 5928 }
5926 5929 .fa-stack {
5927 5930 position: relative;
5928 5931 display: inline-block;
5929 5932 width: 2em;
5930 5933 height: 2em;
5931 5934 line-height: 2em;
5932 5935 vertical-align: middle;
5933 5936 }
5934 5937 .fa-stack-1x,
5935 5938 .fa-stack-2x {
5936 5939 position: absolute;
5937 5940 left: 0;
5938 5941 width: 100%;
5939 5942 text-align: center;
5940 5943 }
5941 5944 .fa-stack-1x {
5942 5945 line-height: inherit;
5943 5946 }
5944 5947 .fa-stack-2x {
5945 5948 font-size: 2em;
5946 5949 }
5947 5950 .fa-inverse {
5948 5951 color: #ffffff;
5949 5952 }
5950 5953 /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
5951 5954 readers do not read off random characters that represent icons */
5952 5955 .fa-glass:before {
5953 5956 content: "\f000";
5954 5957 }
5955 5958 .fa-music:before {
5956 5959 content: "\f001";
5957 5960 }
5958 5961 .fa-search:before {
5959 5962 content: "\f002";
5960 5963 }
5961 5964 .fa-envelope-o:before {
5962 5965 content: "\f003";
5963 5966 }
5964 5967 .fa-heart:before {
5965 5968 content: "\f004";
5966 5969 }
5967 5970 .fa-star:before {
5968 5971 content: "\f005";
5969 5972 }
5970 5973 .fa-star-o:before {
5971 5974 content: "\f006";
5972 5975 }
5973 5976 .fa-user:before {
5974 5977 content: "\f007";
5975 5978 }
5976 5979 .fa-film:before {
5977 5980 content: "\f008";
5978 5981 }
5979 5982 .fa-th-large:before {
5980 5983 content: "\f009";
5981 5984 }
5982 5985 .fa-th:before {
5983 5986 content: "\f00a";
5984 5987 }
5985 5988 .fa-th-list:before {
5986 5989 content: "\f00b";
5987 5990 }
5988 5991 .fa-check:before {
5989 5992 content: "\f00c";
5990 5993 }
5991 5994 .fa-remove:before,
5992 5995 .fa-close:before,
5993 5996 .fa-times:before {
5994 5997 content: "\f00d";
5995 5998 }
5996 5999 .fa-search-plus:before {
5997 6000 content: "\f00e";
5998 6001 }
5999 6002 .fa-search-minus:before {
6000 6003 content: "\f010";
6001 6004 }
6002 6005 .fa-power-off:before {
6003 6006 content: "\f011";
6004 6007 }
6005 6008 .fa-signal:before {
6006 6009 content: "\f012";
6007 6010 }
6008 6011 .fa-gear:before,
6009 6012 .fa-cog:before {
6010 6013 content: "\f013";
6011 6014 }
6012 6015 .fa-trash-o:before {
6013 6016 content: "\f014";
6014 6017 }
6015 6018 .fa-home:before {
6016 6019 content: "\f015";
6017 6020 }
6018 6021 .fa-file-o:before {
6019 6022 content: "\f016";
6020 6023 }
6021 6024 .fa-clock-o:before {
6022 6025 content: "\f017";
6023 6026 }
6024 6027 .fa-road:before {
6025 6028 content: "\f018";
6026 6029 }
6027 6030 .fa-download:before {
6028 6031 content: "\f019";
6029 6032 }
6030 6033 .fa-arrow-circle-o-down:before {
6031 6034 content: "\f01a";
6032 6035 }
6033 6036 .fa-arrow-circle-o-up:before {
6034 6037 content: "\f01b";
6035 6038 }
6036 6039 .fa-inbox:before {
6037 6040 content: "\f01c";
6038 6041 }
6039 6042 .fa-play-circle-o:before {
6040 6043 content: "\f01d";
6041 6044 }
6042 6045 .fa-rotate-right:before,
6043 6046 .fa-repeat:before {
6044 6047 content: "\f01e";
6045 6048 }
6046 6049 .fa-refresh:before {
6047 6050 content: "\f021";
6048 6051 }
6049 6052 .fa-list-alt:before {
6050 6053 content: "\f022";
6051 6054 }
6052 6055 .fa-lock:before {
6053 6056 content: "\f023";
6054 6057 }
6055 6058 .fa-flag:before {
6056 6059 content: "\f024";
6057 6060 }
6058 6061 .fa-headphones:before {
6059 6062 content: "\f025";
6060 6063 }
6061 6064 .fa-volume-off:before {
6062 6065 content: "\f026";
6063 6066 }
6064 6067 .fa-volume-down:before {
6065 6068 content: "\f027";
6066 6069 }
6067 6070 .fa-volume-up:before {
6068 6071 content: "\f028";
6069 6072 }
6070 6073 .fa-qrcode:before {
6071 6074 content: "\f029";
6072 6075 }
6073 6076 .fa-barcode:before {
6074 6077 content: "\f02a";
6075 6078 }
6076 6079 .fa-tag:before {
6077 6080 content: "\f02b";
6078 6081 }
6079 6082 .fa-tags:before {
6080 6083 content: "\f02c";
6081 6084 }
6082 6085 .fa-book:before {
6083 6086 content: "\f02d";
6084 6087 }
6085 6088 .fa-bookmark:before {
6086 6089 content: "\f02e";
6087 6090 }
6088 6091 .fa-print:before {
6089 6092 content: "\f02f";
6090 6093 }
6091 6094 .fa-camera:before {
6092 6095 content: "\f030";
6093 6096 }
6094 6097 .fa-font:before {
6095 6098 content: "\f031";
6096 6099 }
6097 6100 .fa-bold:before {
6098 6101 content: "\f032";
6099 6102 }
6100 6103 .fa-italic:before {
6101 6104 content: "\f033";
6102 6105 }
6103 6106 .fa-text-height:before {
6104 6107 content: "\f034";
6105 6108 }
6106 6109 .fa-text-width:before {
6107 6110 content: "\f035";
6108 6111 }
6109 6112 .fa-align-left:before {
6110 6113 content: "\f036";
6111 6114 }
6112 6115 .fa-align-center:before {
6113 6116 content: "\f037";
6114 6117 }
6115 6118 .fa-align-right:before {
6116 6119 content: "\f038";
6117 6120 }
6118 6121 .fa-align-justify:before {
6119 6122 content: "\f039";
6120 6123 }
6121 6124 .fa-list:before {
6122 6125 content: "\f03a";
6123 6126 }
6124 6127 .fa-dedent:before,
6125 6128 .fa-outdent:before {
6126 6129 content: "\f03b";
6127 6130 }
6128 6131 .fa-indent:before {
6129 6132 content: "\f03c";
6130 6133 }
6131 6134 .fa-video-camera:before {
6132 6135 content: "\f03d";
6133 6136 }
6134 6137 .fa-photo:before,
6135 6138 .fa-image:before,
6136 6139 .fa-picture-o:before {
6137 6140 content: "\f03e";
6138 6141 }
6139 6142 .fa-pencil:before {
6140 6143 content: "\f040";
6141 6144 }
6142 6145 .fa-map-marker:before {
6143 6146 content: "\f041";
6144 6147 }
6145 6148 .fa-adjust:before {
6146 6149 content: "\f042";
6147 6150 }
6148 6151 .fa-tint:before {
6149 6152 content: "\f043";
6150 6153 }
6151 6154 .fa-edit:before,
6152 6155 .fa-pencil-square-o:before {
6153 6156 content: "\f044";
6154 6157 }
6155 6158 .fa-share-square-o:before {
6156 6159 content: "\f045";
6157 6160 }
6158 6161 .fa-check-square-o:before {
6159 6162 content: "\f046";
6160 6163 }
6161 6164 .fa-arrows:before {
6162 6165 content: "\f047";
6163 6166 }
6164 6167 .fa-step-backward:before {
6165 6168 content: "\f048";
6166 6169 }
6167 6170 .fa-fast-backward:before {
6168 6171 content: "\f049";
6169 6172 }
6170 6173 .fa-backward:before {
6171 6174 content: "\f04a";
6172 6175 }
6173 6176 .fa-play:before {
6174 6177 content: "\f04b";
6175 6178 }
6176 6179 .fa-pause:before {
6177 6180 content: "\f04c";
6178 6181 }
6179 6182 .fa-stop:before {
6180 6183 content: "\f04d";
6181 6184 }
6182 6185 .fa-forward:before {
6183 6186 content: "\f04e";
6184 6187 }
6185 6188 .fa-fast-forward:before {
6186 6189 content: "\f050";
6187 6190 }
6188 6191 .fa-step-forward:before {
6189 6192 content: "\f051";
6190 6193 }
6191 6194 .fa-eject:before {
6192 6195 content: "\f052";
6193 6196 }
6194 6197 .fa-chevron-left:before {
6195 6198 content: "\f053";
6196 6199 }
6197 6200 .fa-chevron-right:before {
6198 6201 content: "\f054";
6199 6202 }
6200 6203 .fa-plus-circle:before {
6201 6204 content: "\f055";
6202 6205 }
6203 6206 .fa-minus-circle:before {
6204 6207 content: "\f056";
6205 6208 }
6206 6209 .fa-times-circle:before {
6207 6210 content: "\f057";
6208 6211 }
6209 6212 .fa-check-circle:before {
6210 6213 content: "\f058";
6211 6214 }
6212 6215 .fa-question-circle:before {
6213 6216 content: "\f059";
6214 6217 }
6215 6218 .fa-info-circle:before {
6216 6219 content: "\f05a";
6217 6220 }
6218 6221 .fa-crosshairs:before {
6219 6222 content: "\f05b";
6220 6223 }
6221 6224 .fa-times-circle-o:before {
6222 6225 content: "\f05c";
6223 6226 }
6224 6227 .fa-check-circle-o:before {
6225 6228 content: "\f05d";
6226 6229 }
6227 6230 .fa-ban:before {
6228 6231 content: "\f05e";
6229 6232 }
6230 6233 .fa-arrow-left:before {
6231 6234 content: "\f060";
6232 6235 }
6233 6236 .fa-arrow-right:before {
6234 6237 content: "\f061";
6235 6238 }
6236 6239 .fa-arrow-up:before {
6237 6240 content: "\f062";
6238 6241 }
6239 6242 .fa-arrow-down:before {
6240 6243 content: "\f063";
6241 6244 }
6242 6245 .fa-mail-forward:before,
6243 6246 .fa-share:before {
6244 6247 content: "\f064";
6245 6248 }
6246 6249 .fa-expand:before {
6247 6250 content: "\f065";
6248 6251 }
6249 6252 .fa-compress:before {
6250 6253 content: "\f066";
6251 6254 }
6252 6255 .fa-plus:before {
6253 6256 content: "\f067";
6254 6257 }
6255 6258 .fa-minus:before {
6256 6259 content: "\f068";
6257 6260 }
6258 6261 .fa-asterisk:before {
6259 6262 content: "\f069";
6260 6263 }
6261 6264 .fa-exclamation-circle:before {
6262 6265 content: "\f06a";
6263 6266 }
6264 6267 .fa-gift:before {
6265 6268 content: "\f06b";
6266 6269 }
6267 6270 .fa-leaf:before {
6268 6271 content: "\f06c";
6269 6272 }
6270 6273 .fa-fire:before {
6271 6274 content: "\f06d";
6272 6275 }
6273 6276 .fa-eye:before {
6274 6277 content: "\f06e";
6275 6278 }
6276 6279 .fa-eye-slash:before {
6277 6280 content: "\f070";
6278 6281 }
6279 6282 .fa-warning:before,
6280 6283 .fa-exclamation-triangle:before {
6281 6284 content: "\f071";
6282 6285 }
6283 6286 .fa-plane:before {
6284 6287 content: "\f072";
6285 6288 }
6286 6289 .fa-calendar:before {
6287 6290 content: "\f073";
6288 6291 }
6289 6292 .fa-random:before {
6290 6293 content: "\f074";
6291 6294 }
6292 6295 .fa-comment:before {
6293 6296 content: "\f075";
6294 6297 }
6295 6298 .fa-magnet:before {
6296 6299 content: "\f076";
6297 6300 }
6298 6301 .fa-chevron-up:before {
6299 6302 content: "\f077";
6300 6303 }
6301 6304 .fa-chevron-down:before {
6302 6305 content: "\f078";
6303 6306 }
6304 6307 .fa-retweet:before {
6305 6308 content: "\f079";
6306 6309 }
6307 6310 .fa-shopping-cart:before {
6308 6311 content: "\f07a";
6309 6312 }
6310 6313 .fa-folder:before {
6311 6314 content: "\f07b";
6312 6315 }
6313 6316 .fa-folder-open:before {
6314 6317 content: "\f07c";
6315 6318 }
6316 6319 .fa-arrows-v:before {
6317 6320 content: "\f07d";
6318 6321 }
6319 6322 .fa-arrows-h:before {
6320 6323 content: "\f07e";
6321 6324 }
6322 6325 .fa-bar-chart-o:before,
6323 6326 .fa-bar-chart:before {
6324 6327 content: "\f080";
6325 6328 }
6326 6329 .fa-twitter-square:before {
6327 6330 content: "\f081";
6328 6331 }
6329 6332 .fa-facebook-square:before {
6330 6333 content: "\f082";
6331 6334 }
6332 6335 .fa-camera-retro:before {
6333 6336 content: "\f083";
6334 6337 }
6335 6338 .fa-key:before {
6336 6339 content: "\f084";
6337 6340 }
6338 6341 .fa-gears:before,
6339 6342 .fa-cogs:before {
6340 6343 content: "\f085";
6341 6344 }
6342 6345 .fa-comments:before {
6343 6346 content: "\f086";
6344 6347 }
6345 6348 .fa-thumbs-o-up:before {
6346 6349 content: "\f087";
6347 6350 }
6348 6351 .fa-thumbs-o-down:before {
6349 6352 content: "\f088";
6350 6353 }
6351 6354 .fa-star-half:before {
6352 6355 content: "\f089";
6353 6356 }
6354 6357 .fa-heart-o:before {
6355 6358 content: "\f08a";
6356 6359 }
6357 6360 .fa-sign-out:before {
6358 6361 content: "\f08b";
6359 6362 }
6360 6363 .fa-linkedin-square:before {
6361 6364 content: "\f08c";
6362 6365 }
6363 6366 .fa-thumb-tack:before {
6364 6367 content: "\f08d";
6365 6368 }
6366 6369 .fa-external-link:before {
6367 6370 content: "\f08e";
6368 6371 }
6369 6372 .fa-sign-in:before {
6370 6373 content: "\f090";
6371 6374 }
6372 6375 .fa-trophy:before {
6373 6376 content: "\f091";
6374 6377 }
6375 6378 .fa-github-square:before {
6376 6379 content: "\f092";
6377 6380 }
6378 6381 .fa-upload:before {
6379 6382 content: "\f093";
6380 6383 }
6381 6384 .fa-lemon-o:before {
6382 6385 content: "\f094";
6383 6386 }
6384 6387 .fa-phone:before {
6385 6388 content: "\f095";
6386 6389 }
6387 6390 .fa-square-o:before {
6388 6391 content: "\f096";
6389 6392 }
6390 6393 .fa-bookmark-o:before {
6391 6394 content: "\f097";
6392 6395 }
6393 6396 .fa-phone-square:before {
6394 6397 content: "\f098";
6395 6398 }
6396 6399 .fa-twitter:before {
6397 6400 content: "\f099";
6398 6401 }
6399 6402 .fa-facebook:before {
6400 6403 content: "\f09a";
6401 6404 }
6402 6405 .fa-github:before {
6403 6406 content: "\f09b";
6404 6407 }
6405 6408 .fa-unlock:before {
6406 6409 content: "\f09c";
6407 6410 }
6408 6411 .fa-credit-card:before {
6409 6412 content: "\f09d";
6410 6413 }
6411 6414 .fa-rss:before {
6412 6415 content: "\f09e";
6413 6416 }
6414 6417 .fa-hdd-o:before {
6415 6418 content: "\f0a0";
6416 6419 }
6417 6420 .fa-bullhorn:before {
6418 6421 content: "\f0a1";
6419 6422 }
6420 6423 .fa-bell:before {
6421 6424 content: "\f0f3";
6422 6425 }
6423 6426 .fa-certificate:before {
6424 6427 content: "\f0a3";
6425 6428 }
6426 6429 .fa-hand-o-right:before {
6427 6430 content: "\f0a4";
6428 6431 }
6429 6432 .fa-hand-o-left:before {
6430 6433 content: "\f0a5";
6431 6434 }
6432 6435 .fa-hand-o-up:before {
6433 6436 content: "\f0a6";
6434 6437 }
6435 6438 .fa-hand-o-down:before {
6436 6439 content: "\f0a7";
6437 6440 }
6438 6441 .fa-arrow-circle-left:before {
6439 6442 content: "\f0a8";
6440 6443 }
6441 6444 .fa-arrow-circle-right:before {
6442 6445 content: "\f0a9";
6443 6446 }
6444 6447 .fa-arrow-circle-up:before {
6445 6448 content: "\f0aa";
6446 6449 }
6447 6450 .fa-arrow-circle-down:before {
6448 6451 content: "\f0ab";
6449 6452 }
6450 6453 .fa-globe:before {
6451 6454 content: "\f0ac";
6452 6455 }
6453 6456 .fa-wrench:before {
6454 6457 content: "\f0ad";
6455 6458 }
6456 6459 .fa-tasks:before {
6457 6460 content: "\f0ae";
6458 6461 }
6459 6462 .fa-filter:before {
6460 6463 content: "\f0b0";
6461 6464 }
6462 6465 .fa-briefcase:before {
6463 6466 content: "\f0b1";
6464 6467 }
6465 6468 .fa-arrows-alt:before {
6466 6469 content: "\f0b2";
6467 6470 }
6468 6471 .fa-group:before,
6469 6472 .fa-users:before {
6470 6473 content: "\f0c0";
6471 6474 }
6472 6475 .fa-chain:before,
6473 6476 .fa-link:before {
6474 6477 content: "\f0c1";
6475 6478 }
6476 6479 .fa-cloud:before {
6477 6480 content: "\f0c2";
6478 6481 }
6479 6482 .fa-flask:before {
6480 6483 content: "\f0c3";
6481 6484 }
6482 6485 .fa-cut:before,
6483 6486 .fa-scissors:before {
6484 6487 content: "\f0c4";
6485 6488 }
6486 6489 .fa-copy:before,
6487 6490 .fa-files-o:before {
6488 6491 content: "\f0c5";
6489 6492 }
6490 6493 .fa-paperclip:before {
6491 6494 content: "\f0c6";
6492 6495 }
6493 6496 .fa-save:before,
6494 6497 .fa-floppy-o:before {
6495 6498 content: "\f0c7";
6496 6499 }
6497 6500 .fa-square:before {
6498 6501 content: "\f0c8";
6499 6502 }
6500 6503 .fa-navicon:before,
6501 6504 .fa-reorder:before,
6502 6505 .fa-bars:before {
6503 6506 content: "\f0c9";
6504 6507 }
6505 6508 .fa-list-ul:before {
6506 6509 content: "\f0ca";
6507 6510 }
6508 6511 .fa-list-ol:before {
6509 6512 content: "\f0cb";
6510 6513 }
6511 6514 .fa-strikethrough:before {
6512 6515 content: "\f0cc";
6513 6516 }
6514 6517 .fa-underline:before {
6515 6518 content: "\f0cd";
6516 6519 }
6517 6520 .fa-table:before {
6518 6521 content: "\f0ce";
6519 6522 }
6520 6523 .fa-magic:before {
6521 6524 content: "\f0d0";
6522 6525 }
6523 6526 .fa-truck:before {
6524 6527 content: "\f0d1";
6525 6528 }
6526 6529 .fa-pinterest:before {
6527 6530 content: "\f0d2";
6528 6531 }
6529 6532 .fa-pinterest-square:before {
6530 6533 content: "\f0d3";
6531 6534 }
6532 6535 .fa-google-plus-square:before {
6533 6536 content: "\f0d4";
6534 6537 }
6535 6538 .fa-google-plus:before {
6536 6539 content: "\f0d5";
6537 6540 }
6538 6541 .fa-money:before {
6539 6542 content: "\f0d6";
6540 6543 }
6541 6544 .fa-caret-down:before {
6542 6545 content: "\f0d7";
6543 6546 }
6544 6547 .fa-caret-up:before {
6545 6548 content: "\f0d8";
6546 6549 }
6547 6550 .fa-caret-left:before {
6548 6551 content: "\f0d9";
6549 6552 }
6550 6553 .fa-caret-right:before {
6551 6554 content: "\f0da";
6552 6555 }
6553 6556 .fa-columns:before {
6554 6557 content: "\f0db";
6555 6558 }
6556 6559 .fa-unsorted:before,
6557 6560 .fa-sort:before {
6558 6561 content: "\f0dc";
6559 6562 }
6560 6563 .fa-sort-down:before,
6561 6564 .fa-sort-desc:before {
6562 6565 content: "\f0dd";
6563 6566 }
6564 6567 .fa-sort-up:before,
6565 6568 .fa-sort-asc:before {
6566 6569 content: "\f0de";
6567 6570 }
6568 6571 .fa-envelope:before {
6569 6572 content: "\f0e0";
6570 6573 }
6571 6574 .fa-linkedin:before {
6572 6575 content: "\f0e1";
6573 6576 }
6574 6577 .fa-rotate-left:before,
6575 6578 .fa-undo:before {
6576 6579 content: "\f0e2";
6577 6580 }
6578 6581 .fa-legal:before,
6579 6582 .fa-gavel:before {
6580 6583 content: "\f0e3";
6581 6584 }
6582 6585 .fa-dashboard:before,
6583 6586 .fa-tachometer:before {
6584 6587 content: "\f0e4";
6585 6588 }
6586 6589 .fa-comment-o:before {
6587 6590 content: "\f0e5";
6588 6591 }
6589 6592 .fa-comments-o:before {
6590 6593 content: "\f0e6";
6591 6594 }
6592 6595 .fa-flash:before,
6593 6596 .fa-bolt:before {
6594 6597 content: "\f0e7";
6595 6598 }
6596 6599 .fa-sitemap:before {
6597 6600 content: "\f0e8";
6598 6601 }
6599 6602 .fa-umbrella:before {
6600 6603 content: "\f0e9";
6601 6604 }
6602 6605 .fa-paste:before,
6603 6606 .fa-clipboard:before {
6604 6607 content: "\f0ea";
6605 6608 }
6606 6609 .fa-lightbulb-o:before {
6607 6610 content: "\f0eb";
6608 6611 }
6609 6612 .fa-exchange:before {
6610 6613 content: "\f0ec";
6611 6614 }
6612 6615 .fa-cloud-download:before {
6613 6616 content: "\f0ed";
6614 6617 }
6615 6618 .fa-cloud-upload:before {
6616 6619 content: "\f0ee";
6617 6620 }
6618 6621 .fa-user-md:before {
6619 6622 content: "\f0f0";
6620 6623 }
6621 6624 .fa-stethoscope:before {
6622 6625 content: "\f0f1";
6623 6626 }
6624 6627 .fa-suitcase:before {
6625 6628 content: "\f0f2";
6626 6629 }
6627 6630 .fa-bell-o:before {
6628 6631 content: "\f0a2";
6629 6632 }
6630 6633 .fa-coffee:before {
6631 6634 content: "\f0f4";
6632 6635 }
6633 6636 .fa-cutlery:before {
6634 6637 content: "\f0f5";
6635 6638 }
6636 6639 .fa-file-text-o:before {
6637 6640 content: "\f0f6";
6638 6641 }
6639 6642 .fa-building-o:before {
6640 6643 content: "\f0f7";
6641 6644 }
6642 6645 .fa-hospital-o:before {
6643 6646 content: "\f0f8";
6644 6647 }
6645 6648 .fa-ambulance:before {
6646 6649 content: "\f0f9";
6647 6650 }
6648 6651 .fa-medkit:before {
6649 6652 content: "\f0fa";
6650 6653 }
6651 6654 .fa-fighter-jet:before {
6652 6655 content: "\f0fb";
6653 6656 }
6654 6657 .fa-beer:before {
6655 6658 content: "\f0fc";
6656 6659 }
6657 6660 .fa-h-square:before {
6658 6661 content: "\f0fd";
6659 6662 }
6660 6663 .fa-plus-square:before {
6661 6664 content: "\f0fe";
6662 6665 }
6663 6666 .fa-angle-double-left:before {
6664 6667 content: "\f100";
6665 6668 }
6666 6669 .fa-angle-double-right:before {
6667 6670 content: "\f101";
6668 6671 }
6669 6672 .fa-angle-double-up:before {
6670 6673 content: "\f102";
6671 6674 }
6672 6675 .fa-angle-double-down:before {
6673 6676 content: "\f103";
6674 6677 }
6675 6678 .fa-angle-left:before {
6676 6679 content: "\f104";
6677 6680 }
6678 6681 .fa-angle-right:before {
6679 6682 content: "\f105";
6680 6683 }
6681 6684 .fa-angle-up:before {
6682 6685 content: "\f106";
6683 6686 }
6684 6687 .fa-angle-down:before {
6685 6688 content: "\f107";
6686 6689 }
6687 6690 .fa-desktop:before {
6688 6691 content: "\f108";
6689 6692 }
6690 6693 .fa-laptop:before {
6691 6694 content: "\f109";
6692 6695 }
6693 6696 .fa-tablet:before {
6694 6697 content: "\f10a";
6695 6698 }
6696 6699 .fa-mobile-phone:before,
6697 6700 .fa-mobile:before {
6698 6701 content: "\f10b";
6699 6702 }
6700 6703 .fa-circle-o:before {
6701 6704 content: "\f10c";
6702 6705 }
6703 6706 .fa-quote-left:before {
6704 6707 content: "\f10d";
6705 6708 }
6706 6709 .fa-quote-right:before {
6707 6710 content: "\f10e";
6708 6711 }
6709 6712 .fa-spinner:before {
6710 6713 content: "\f110";
6711 6714 }
6712 6715 .fa-circle:before {
6713 6716 content: "\f111";
6714 6717 }
6715 6718 .fa-mail-reply:before,
6716 6719 .fa-reply:before {
6717 6720 content: "\f112";
6718 6721 }
6719 6722 .fa-github-alt:before {
6720 6723 content: "\f113";
6721 6724 }
6722 6725 .fa-folder-o:before {
6723 6726 content: "\f114";
6724 6727 }
6725 6728 .fa-folder-open-o:before {
6726 6729 content: "\f115";
6727 6730 }
6728 6731 .fa-smile-o:before {
6729 6732 content: "\f118";
6730 6733 }
6731 6734 .fa-frown-o:before {
6732 6735 content: "\f119";
6733 6736 }
6734 6737 .fa-meh-o:before {
6735 6738 content: "\f11a";
6736 6739 }
6737 6740 .fa-gamepad:before {
6738 6741 content: "\f11b";
6739 6742 }
6740 6743 .fa-keyboard-o:before {
6741 6744 content: "\f11c";
6742 6745 }
6743 6746 .fa-flag-o:before {
6744 6747 content: "\f11d";
6745 6748 }
6746 6749 .fa-flag-checkered:before {
6747 6750 content: "\f11e";
6748 6751 }
6749 6752 .fa-terminal:before {
6750 6753 content: "\f120";
6751 6754 }
6752 6755 .fa-code:before {
6753 6756 content: "\f121";
6754 6757 }
6755 6758 .fa-mail-reply-all:before,
6756 6759 .fa-reply-all:before {
6757 6760 content: "\f122";
6758 6761 }
6759 6762 .fa-star-half-empty:before,
6760 6763 .fa-star-half-full:before,
6761 6764 .fa-star-half-o:before {
6762 6765 content: "\f123";
6763 6766 }
6764 6767 .fa-location-arrow:before {
6765 6768 content: "\f124";
6766 6769 }
6767 6770 .fa-crop:before {
6768 6771 content: "\f125";
6769 6772 }
6770 6773 .fa-code-fork:before {
6771 6774 content: "\f126";
6772 6775 }
6773 6776 .fa-unlink:before,
6774 6777 .fa-chain-broken:before {
6775 6778 content: "\f127";
6776 6779 }
6777 6780 .fa-question:before {
6778 6781 content: "\f128";
6779 6782 }
6780 6783 .fa-info:before {
6781 6784 content: "\f129";
6782 6785 }
6783 6786 .fa-exclamation:before {
6784 6787 content: "\f12a";
6785 6788 }
6786 6789 .fa-superscript:before {
6787 6790 content: "\f12b";
6788 6791 }
6789 6792 .fa-subscript:before {
6790 6793 content: "\f12c";
6791 6794 }
6792 6795 .fa-eraser:before {
6793 6796 content: "\f12d";
6794 6797 }
6795 6798 .fa-puzzle-piece:before {
6796 6799 content: "\f12e";
6797 6800 }
6798 6801 .fa-microphone:before {
6799 6802 content: "\f130";
6800 6803 }
6801 6804 .fa-microphone-slash:before {
6802 6805 content: "\f131";
6803 6806 }
6804 6807 .fa-shield:before {
6805 6808 content: "\f132";
6806 6809 }
6807 6810 .fa-calendar-o:before {
6808 6811 content: "\f133";
6809 6812 }
6810 6813 .fa-fire-extinguisher:before {
6811 6814 content: "\f134";
6812 6815 }
6813 6816 .fa-rocket:before {
6814 6817 content: "\f135";
6815 6818 }
6816 6819 .fa-maxcdn:before {
6817 6820 content: "\f136";
6818 6821 }
6819 6822 .fa-chevron-circle-left:before {
6820 6823 content: "\f137";
6821 6824 }
6822 6825 .fa-chevron-circle-right:before {
6823 6826 content: "\f138";
6824 6827 }
6825 6828 .fa-chevron-circle-up:before {
6826 6829 content: "\f139";
6827 6830 }
6828 6831 .fa-chevron-circle-down:before {
6829 6832 content: "\f13a";
6830 6833 }
6831 6834 .fa-html5:before {
6832 6835 content: "\f13b";
6833 6836 }
6834 6837 .fa-css3:before {
6835 6838 content: "\f13c";
6836 6839 }
6837 6840 .fa-anchor:before {
6838 6841 content: "\f13d";
6839 6842 }
6840 6843 .fa-unlock-alt:before {
6841 6844 content: "\f13e";
6842 6845 }
6843 6846 .fa-bullseye:before {
6844 6847 content: "\f140";
6845 6848 }
6846 6849 .fa-ellipsis-h:before {
6847 6850 content: "\f141";
6848 6851 }
6849 6852 .fa-ellipsis-v:before {
6850 6853 content: "\f142";
6851 6854 }
6852 6855 .fa-rss-square:before {
6853 6856 content: "\f143";
6854 6857 }
6855 6858 .fa-play-circle:before {
6856 6859 content: "\f144";
6857 6860 }
6858 6861 .fa-ticket:before {
6859 6862 content: "\f145";
6860 6863 }
6861 6864 .fa-minus-square:before {
6862 6865 content: "\f146";
6863 6866 }
6864 6867 .fa-minus-square-o:before {
6865 6868 content: "\f147";
6866 6869 }
6867 6870 .fa-level-up:before {
6868 6871 content: "\f148";
6869 6872 }
6870 6873 .fa-level-down:before {
6871 6874 content: "\f149";
6872 6875 }
6873 6876 .fa-check-square:before {
6874 6877 content: "\f14a";
6875 6878 }
6876 6879 .fa-pencil-square:before {
6877 6880 content: "\f14b";
6878 6881 }
6879 6882 .fa-external-link-square:before {
6880 6883 content: "\f14c";
6881 6884 }
6882 6885 .fa-share-square:before {
6883 6886 content: "\f14d";
6884 6887 }
6885 6888 .fa-compass:before {
6886 6889 content: "\f14e";
6887 6890 }
6888 6891 .fa-toggle-down:before,
6889 6892 .fa-caret-square-o-down:before {
6890 6893 content: "\f150";
6891 6894 }
6892 6895 .fa-toggle-up:before,
6893 6896 .fa-caret-square-o-up:before {
6894 6897 content: "\f151";
6895 6898 }
6896 6899 .fa-toggle-right:before,
6897 6900 .fa-caret-square-o-right:before {
6898 6901 content: "\f152";
6899 6902 }
6900 6903 .fa-euro:before,
6901 6904 .fa-eur:before {
6902 6905 content: "\f153";
6903 6906 }
6904 6907 .fa-gbp:before {
6905 6908 content: "\f154";
6906 6909 }
6907 6910 .fa-dollar:before,
6908 6911 .fa-usd:before {
6909 6912 content: "\f155";
6910 6913 }
6911 6914 .fa-rupee:before,
6912 6915 .fa-inr:before {
6913 6916 content: "\f156";
6914 6917 }
6915 6918 .fa-cny:before,
6916 6919 .fa-rmb:before,
6917 6920 .fa-yen:before,
6918 6921 .fa-jpy:before {
6919 6922 content: "\f157";
6920 6923 }
6921 6924 .fa-ruble:before,
6922 6925 .fa-rouble:before,
6923 6926 .fa-rub:before {
6924 6927 content: "\f158";
6925 6928 }
6926 6929 .fa-won:before,
6927 6930 .fa-krw:before {
6928 6931 content: "\f159";
6929 6932 }
6930 6933 .fa-bitcoin:before,
6931 6934 .fa-btc:before {
6932 6935 content: "\f15a";
6933 6936 }
6934 6937 .fa-file:before {
6935 6938 content: "\f15b";
6936 6939 }
6937 6940 .fa-file-text:before {
6938 6941 content: "\f15c";
6939 6942 }
6940 6943 .fa-sort-alpha-asc:before {
6941 6944 content: "\f15d";
6942 6945 }
6943 6946 .fa-sort-alpha-desc:before {
6944 6947 content: "\f15e";
6945 6948 }
6946 6949 .fa-sort-amount-asc:before {
6947 6950 content: "\f160";
6948 6951 }
6949 6952 .fa-sort-amount-desc:before {
6950 6953 content: "\f161";
6951 6954 }
6952 6955 .fa-sort-numeric-asc:before {
6953 6956 content: "\f162";
6954 6957 }
6955 6958 .fa-sort-numeric-desc:before {
6956 6959 content: "\f163";
6957 6960 }
6958 6961 .fa-thumbs-up:before {
6959 6962 content: "\f164";
6960 6963 }
6961 6964 .fa-thumbs-down:before {
6962 6965 content: "\f165";
6963 6966 }
6964 6967 .fa-youtube-square:before {
6965 6968 content: "\f166";
6966 6969 }
6967 6970 .fa-youtube:before {
6968 6971 content: "\f167";
6969 6972 }
6970 6973 .fa-xing:before {
6971 6974 content: "\f168";
6972 6975 }
6973 6976 .fa-xing-square:before {
6974 6977 content: "\f169";
6975 6978 }
6976 6979 .fa-youtube-play:before {
6977 6980 content: "\f16a";
6978 6981 }
6979 6982 .fa-dropbox:before {
6980 6983 content: "\f16b";
6981 6984 }
6982 6985 .fa-stack-overflow:before {
6983 6986 content: "\f16c";
6984 6987 }
6985 6988 .fa-instagram:before {
6986 6989 content: "\f16d";
6987 6990 }
6988 6991 .fa-flickr:before {
6989 6992 content: "\f16e";
6990 6993 }
6991 6994 .fa-adn:before {
6992 6995 content: "\f170";
6993 6996 }
6994 6997 .fa-bitbucket:before {
6995 6998 content: "\f171";
6996 6999 }
6997 7000 .fa-bitbucket-square:before {
6998 7001 content: "\f172";
6999 7002 }
7000 7003 .fa-tumblr:before {
7001 7004 content: "\f173";
7002 7005 }
7003 7006 .fa-tumblr-square:before {
7004 7007 content: "\f174";
7005 7008 }
7006 7009 .fa-long-arrow-down:before {
7007 7010 content: "\f175";
7008 7011 }
7009 7012 .fa-long-arrow-up:before {
7010 7013 content: "\f176";
7011 7014 }
7012 7015 .fa-long-arrow-left:before {
7013 7016 content: "\f177";
7014 7017 }
7015 7018 .fa-long-arrow-right:before {
7016 7019 content: "\f178";
7017 7020 }
7018 7021 .fa-apple:before {
7019 7022 content: "\f179";
7020 7023 }
7021 7024 .fa-windows:before {
7022 7025 content: "\f17a";
7023 7026 }
7024 7027 .fa-android:before {
7025 7028 content: "\f17b";
7026 7029 }
7027 7030 .fa-linux:before {
7028 7031 content: "\f17c";
7029 7032 }
7030 7033 .fa-dribbble:before {
7031 7034 content: "\f17d";
7032 7035 }
7033 7036 .fa-skype:before {
7034 7037 content: "\f17e";
7035 7038 }
7036 7039 .fa-foursquare:before {
7037 7040 content: "\f180";
7038 7041 }
7039 7042 .fa-trello:before {
7040 7043 content: "\f181";
7041 7044 }
7042 7045 .fa-female:before {
7043 7046 content: "\f182";
7044 7047 }
7045 7048 .fa-male:before {
7046 7049 content: "\f183";
7047 7050 }
7048 7051 .fa-gittip:before {
7049 7052 content: "\f184";
7050 7053 }
7051 7054 .fa-sun-o:before {
7052 7055 content: "\f185";
7053 7056 }
7054 7057 .fa-moon-o:before {
7055 7058 content: "\f186";
7056 7059 }
7057 7060 .fa-archive:before {
7058 7061 content: "\f187";
7059 7062 }
7060 7063 .fa-bug:before {
7061 7064 content: "\f188";
7062 7065 }
7063 7066 .fa-vk:before {
7064 7067 content: "\f189";
7065 7068 }
7066 7069 .fa-weibo:before {
7067 7070 content: "\f18a";
7068 7071 }
7069 7072 .fa-renren:before {
7070 7073 content: "\f18b";
7071 7074 }
7072 7075 .fa-pagelines:before {
7073 7076 content: "\f18c";
7074 7077 }
7075 7078 .fa-stack-exchange:before {
7076 7079 content: "\f18d";
7077 7080 }
7078 7081 .fa-arrow-circle-o-right:before {
7079 7082 content: "\f18e";
7080 7083 }
7081 7084 .fa-arrow-circle-o-left:before {
7082 7085 content: "\f190";
7083 7086 }
7084 7087 .fa-toggle-left:before,
7085 7088 .fa-caret-square-o-left:before {
7086 7089 content: "\f191";
7087 7090 }
7088 7091 .fa-dot-circle-o:before {
7089 7092 content: "\f192";
7090 7093 }
7091 7094 .fa-wheelchair:before {
7092 7095 content: "\f193";
7093 7096 }
7094 7097 .fa-vimeo-square:before {
7095 7098 content: "\f194";
7096 7099 }
7097 7100 .fa-turkish-lira:before,
7098 7101 .fa-try:before {
7099 7102 content: "\f195";
7100 7103 }
7101 7104 .fa-plus-square-o:before {
7102 7105 content: "\f196";
7103 7106 }
7104 7107 .fa-space-shuttle:before {
7105 7108 content: "\f197";
7106 7109 }
7107 7110 .fa-slack:before {
7108 7111 content: "\f198";
7109 7112 }
7110 7113 .fa-envelope-square:before {
7111 7114 content: "\f199";
7112 7115 }
7113 7116 .fa-wordpress:before {
7114 7117 content: "\f19a";
7115 7118 }
7116 7119 .fa-openid:before {
7117 7120 content: "\f19b";
7118 7121 }
7119 7122 .fa-institution:before,
7120 7123 .fa-bank:before,
7121 7124 .fa-university:before {
7122 7125 content: "\f19c";
7123 7126 }
7124 7127 .fa-mortar-board:before,
7125 7128 .fa-graduation-cap:before {
7126 7129 content: "\f19d";
7127 7130 }
7128 7131 .fa-yahoo:before {
7129 7132 content: "\f19e";
7130 7133 }
7131 7134 .fa-google:before {
7132 7135 content: "\f1a0";
7133 7136 }
7134 7137 .fa-reddit:before {
7135 7138 content: "\f1a1";
7136 7139 }
7137 7140 .fa-reddit-square:before {
7138 7141 content: "\f1a2";
7139 7142 }
7140 7143 .fa-stumbleupon-circle:before {
7141 7144 content: "\f1a3";
7142 7145 }
7143 7146 .fa-stumbleupon:before {
7144 7147 content: "\f1a4";
7145 7148 }
7146 7149 .fa-delicious:before {
7147 7150 content: "\f1a5";
7148 7151 }
7149 7152 .fa-digg:before {
7150 7153 content: "\f1a6";
7151 7154 }
7152 7155 .fa-pied-piper:before {
7153 7156 content: "\f1a7";
7154 7157 }
7155 7158 .fa-pied-piper-alt:before {
7156 7159 content: "\f1a8";
7157 7160 }
7158 7161 .fa-drupal:before {
7159 7162 content: "\f1a9";
7160 7163 }
7161 7164 .fa-joomla:before {
7162 7165 content: "\f1aa";
7163 7166 }
7164 7167 .fa-language:before {
7165 7168 content: "\f1ab";
7166 7169 }
7167 7170 .fa-fax:before {
7168 7171 content: "\f1ac";
7169 7172 }
7170 7173 .fa-building:before {
7171 7174 content: "\f1ad";
7172 7175 }
7173 7176 .fa-child:before {
7174 7177 content: "\f1ae";
7175 7178 }
7176 7179 .fa-paw:before {
7177 7180 content: "\f1b0";
7178 7181 }
7179 7182 .fa-spoon:before {
7180 7183 content: "\f1b1";
7181 7184 }
7182 7185 .fa-cube:before {
7183 7186 content: "\f1b2";
7184 7187 }
7185 7188 .fa-cubes:before {
7186 7189 content: "\f1b3";
7187 7190 }
7188 7191 .fa-behance:before {
7189 7192 content: "\f1b4";
7190 7193 }
7191 7194 .fa-behance-square:before {
7192 7195 content: "\f1b5";
7193 7196 }
7194 7197 .fa-steam:before {
7195 7198 content: "\f1b6";
7196 7199 }
7197 7200 .fa-steam-square:before {
7198 7201 content: "\f1b7";
7199 7202 }
7200 7203 .fa-recycle:before {
7201 7204 content: "\f1b8";
7202 7205 }
7203 7206 .fa-automobile:before,
7204 7207 .fa-car:before {
7205 7208 content: "\f1b9";
7206 7209 }
7207 7210 .fa-cab:before,
7208 7211 .fa-taxi:before {
7209 7212 content: "\f1ba";
7210 7213 }
7211 7214 .fa-tree:before {
7212 7215 content: "\f1bb";
7213 7216 }
7214 7217 .fa-spotify:before {
7215 7218 content: "\f1bc";
7216 7219 }
7217 7220 .fa-deviantart:before {
7218 7221 content: "\f1bd";
7219 7222 }
7220 7223 .fa-soundcloud:before {
7221 7224 content: "\f1be";
7222 7225 }
7223 7226 .fa-database:before {
7224 7227 content: "\f1c0";
7225 7228 }
7226 7229 .fa-file-pdf-o:before {
7227 7230 content: "\f1c1";
7228 7231 }
7229 7232 .fa-file-word-o:before {
7230 7233 content: "\f1c2";
7231 7234 }
7232 7235 .fa-file-excel-o:before {
7233 7236 content: "\f1c3";
7234 7237 }
7235 7238 .fa-file-powerpoint-o:before {
7236 7239 content: "\f1c4";
7237 7240 }
7238 7241 .fa-file-photo-o:before,
7239 7242 .fa-file-picture-o:before,
7240 7243 .fa-file-image-o:before {
7241 7244 content: "\f1c5";
7242 7245 }
7243 7246 .fa-file-zip-o:before,
7244 7247 .fa-file-archive-o:before {
7245 7248 content: "\f1c6";
7246 7249 }
7247 7250 .fa-file-sound-o:before,
7248 7251 .fa-file-audio-o:before {
7249 7252 content: "\f1c7";
7250 7253 }
7251 7254 .fa-file-movie-o:before,
7252 7255 .fa-file-video-o:before {
7253 7256 content: "\f1c8";
7254 7257 }
7255 7258 .fa-file-code-o:before {
7256 7259 content: "\f1c9";
7257 7260 }
7258 7261 .fa-vine:before {
7259 7262 content: "\f1ca";
7260 7263 }
7261 7264 .fa-codepen:before {
7262 7265 content: "\f1cb";
7263 7266 }
7264 7267 .fa-jsfiddle:before {
7265 7268 content: "\f1cc";
7266 7269 }
7267 7270 .fa-life-bouy:before,
7268 7271 .fa-life-buoy:before,
7269 7272 .fa-life-saver:before,
7270 7273 .fa-support:before,
7271 7274 .fa-life-ring:before {
7272 7275 content: "\f1cd";
7273 7276 }
7274 7277 .fa-circle-o-notch:before {
7275 7278 content: "\f1ce";
7276 7279 }
7277 7280 .fa-ra:before,
7278 7281 .fa-rebel:before {
7279 7282 content: "\f1d0";
7280 7283 }
7281 7284 .fa-ge:before,
7282 7285 .fa-empire:before {
7283 7286 content: "\f1d1";
7284 7287 }
7285 7288 .fa-git-square:before {
7286 7289 content: "\f1d2";
7287 7290 }
7288 7291 .fa-git:before {
7289 7292 content: "\f1d3";
7290 7293 }
7291 7294 .fa-hacker-news:before {
7292 7295 content: "\f1d4";
7293 7296 }
7294 7297 .fa-tencent-weibo:before {
7295 7298 content: "\f1d5";
7296 7299 }
7297 7300 .fa-qq:before {
7298 7301 content: "\f1d6";
7299 7302 }
7300 7303 .fa-wechat:before,
7301 7304 .fa-weixin:before {
7302 7305 content: "\f1d7";
7303 7306 }
7304 7307 .fa-send:before,
7305 7308 .fa-paper-plane:before {
7306 7309 content: "\f1d8";
7307 7310 }
7308 7311 .fa-send-o:before,
7309 7312 .fa-paper-plane-o:before {
7310 7313 content: "\f1d9";
7311 7314 }
7312 7315 .fa-history:before {
7313 7316 content: "\f1da";
7314 7317 }
7315 7318 .fa-circle-thin:before {
7316 7319 content: "\f1db";
7317 7320 }
7318 7321 .fa-header:before {
7319 7322 content: "\f1dc";
7320 7323 }
7321 7324 .fa-paragraph:before {
7322 7325 content: "\f1dd";
7323 7326 }
7324 7327 .fa-sliders:before {
7325 7328 content: "\f1de";
7326 7329 }
7327 7330 .fa-share-alt:before {
7328 7331 content: "\f1e0";
7329 7332 }
7330 7333 .fa-share-alt-square:before {
7331 7334 content: "\f1e1";
7332 7335 }
7333 7336 .fa-bomb:before {
7334 7337 content: "\f1e2";
7335 7338 }
7336 7339 .fa-soccer-ball-o:before,
7337 7340 .fa-futbol-o:before {
7338 7341 content: "\f1e3";
7339 7342 }
7340 7343 .fa-tty:before {
7341 7344 content: "\f1e4";
7342 7345 }
7343 7346 .fa-binoculars:before {
7344 7347 content: "\f1e5";
7345 7348 }
7346 7349 .fa-plug:before {
7347 7350 content: "\f1e6";
7348 7351 }
7349 7352 .fa-slideshare:before {
7350 7353 content: "\f1e7";
7351 7354 }
7352 7355 .fa-twitch:before {
7353 7356 content: "\f1e8";
7354 7357 }
7355 7358 .fa-yelp:before {
7356 7359 content: "\f1e9";
7357 7360 }
7358 7361 .fa-newspaper-o:before {
7359 7362 content: "\f1ea";
7360 7363 }
7361 7364 .fa-wifi:before {
7362 7365 content: "\f1eb";
7363 7366 }
7364 7367 .fa-calculator:before {
7365 7368 content: "\f1ec";
7366 7369 }
7367 7370 .fa-paypal:before {
7368 7371 content: "\f1ed";
7369 7372 }
7370 7373 .fa-google-wallet:before {
7371 7374 content: "\f1ee";
7372 7375 }
7373 7376 .fa-cc-visa:before {
7374 7377 content: "\f1f0";
7375 7378 }
7376 7379 .fa-cc-mastercard:before {
7377 7380 content: "\f1f1";
7378 7381 }
7379 7382 .fa-cc-discover:before {
7380 7383 content: "\f1f2";
7381 7384 }
7382 7385 .fa-cc-amex:before {
7383 7386 content: "\f1f3";
7384 7387 }
7385 7388 .fa-cc-paypal:before {
7386 7389 content: "\f1f4";
7387 7390 }
7388 7391 .fa-cc-stripe:before {
7389 7392 content: "\f1f5";
7390 7393 }
7391 7394 .fa-bell-slash:before {
7392 7395 content: "\f1f6";
7393 7396 }
7394 7397 .fa-bell-slash-o:before {
7395 7398 content: "\f1f7";
7396 7399 }
7397 7400 .fa-trash:before {
7398 7401 content: "\f1f8";
7399 7402 }
7400 7403 .fa-copyright:before {
7401 7404 content: "\f1f9";
7402 7405 }
7403 7406 .fa-at:before {
7404 7407 content: "\f1fa";
7405 7408 }
7406 7409 .fa-eyedropper:before {
7407 7410 content: "\f1fb";
7408 7411 }
7409 7412 .fa-paint-brush:before {
7410 7413 content: "\f1fc";
7411 7414 }
7412 7415 .fa-birthday-cake:before {
7413 7416 content: "\f1fd";
7414 7417 }
7415 7418 .fa-area-chart:before {
7416 7419 content: "\f1fe";
7417 7420 }
7418 7421 .fa-pie-chart:before {
7419 7422 content: "\f200";
7420 7423 }
7421 7424 .fa-line-chart:before {
7422 7425 content: "\f201";
7423 7426 }
7424 7427 .fa-lastfm:before {
7425 7428 content: "\f202";
7426 7429 }
7427 7430 .fa-lastfm-square:before {
7428 7431 content: "\f203";
7429 7432 }
7430 7433 .fa-toggle-off:before {
7431 7434 content: "\f204";
7432 7435 }
7433 7436 .fa-toggle-on:before {
7434 7437 content: "\f205";
7435 7438 }
7436 7439 .fa-bicycle:before {
7437 7440 content: "\f206";
7438 7441 }
7439 7442 .fa-bus:before {
7440 7443 content: "\f207";
7441 7444 }
7442 7445 .fa-ioxhost:before {
7443 7446 content: "\f208";
7444 7447 }
7445 7448 .fa-angellist:before {
7446 7449 content: "\f209";
7447 7450 }
7448 7451 .fa-cc:before {
7449 7452 content: "\f20a";
7450 7453 }
7451 7454 .fa-shekel:before,
7452 7455 .fa-sheqel:before,
7453 7456 .fa-ils:before {
7454 7457 content: "\f20b";
7455 7458 }
7456 7459 .fa-meanpath:before {
7457 7460 content: "\f20c";
7458 7461 }
7459 7462 /*!
7460 7463 *
7461 7464 * IPython base
7462 7465 *
7463 7466 */
7464 7467 .modal.fade .modal-dialog {
7465 7468 -webkit-transform: translate(0, 0);
7466 7469 -ms-transform: translate(0, 0);
7467 7470 transform: translate(0, 0);
7468 7471 }
7469 7472 code {
7470 7473 color: #000000;
7471 7474 }
7472 7475 pre {
7473 7476 font-size: inherit;
7474 7477 line-height: inherit;
7475 7478 }
7476 7479 label {
7477 7480 font-weight: normal;
7478 7481 }
7479 7482 .border-box-sizing {
7480 7483 box-sizing: border-box;
7481 7484 -moz-box-sizing: border-box;
7482 7485 -webkit-box-sizing: border-box;
7483 7486 }
7484 7487 .corner-all {
7485 7488 border-radius: 4px;
7486 7489 }
7487 7490 .no-padding {
7488 7491 padding: 0px;
7489 7492 }
7490 7493 /* Flexible box model classes */
7491 7494 /* Taken from Alex Russell http://infrequently.org/2009/08/css-3-progress/ */
7492 7495 /* This file is a compatability layer. It allows the usage of flexible box
7493 7496 model layouts accross multiple browsers, including older browsers. The newest,
7494 7497 universal implementation of the flexible box model is used when available (see
7495 7498 `Modern browsers` comments below). Browsers that are known to implement this
7496 7499 new spec completely include:
7497 7500
7498 7501 Firefox 28.0+
7499 7502 Chrome 29.0+
7500 7503 Internet Explorer 11+
7501 7504 Opera 17.0+
7502 7505
7503 7506 Browsers not listed, including Safari, are supported via the styling under the
7504 7507 `Old browsers` comments below.
7505 7508 */
7506 7509 .hbox {
7507 7510 /* Old browsers */
7508 7511 display: -webkit-box;
7509 7512 -webkit-box-orient: horizontal;
7510 7513 -webkit-box-align: stretch;
7511 7514 display: -moz-box;
7512 7515 -moz-box-orient: horizontal;
7513 7516 -moz-box-align: stretch;
7514 7517 display: box;
7515 7518 box-orient: horizontal;
7516 7519 box-align: stretch;
7517 7520 /* Modern browsers */
7518 7521 display: flex;
7519 7522 flex-direction: row;
7520 7523 align-items: stretch;
7521 7524 }
7522 7525 .hbox > * {
7523 7526 /* Old browsers */
7524 7527 -webkit-box-flex: 0;
7525 7528 -moz-box-flex: 0;
7526 7529 box-flex: 0;
7527 7530 /* Modern browsers */
7528 7531 flex: none;
7529 7532 }
7530 7533 .vbox {
7531 7534 /* Old browsers */
7532 7535 display: -webkit-box;
7533 7536 -webkit-box-orient: vertical;
7534 7537 -webkit-box-align: stretch;
7535 7538 display: -moz-box;
7536 7539 -moz-box-orient: vertical;
7537 7540 -moz-box-align: stretch;
7538 7541 display: box;
7539 7542 box-orient: vertical;
7540 7543 box-align: stretch;
7541 7544 /* Modern browsers */
7542 7545 display: flex;
7543 7546 flex-direction: column;
7544 7547 align-items: stretch;
7545 7548 }
7546 7549 .vbox > * {
7547 7550 /* Old browsers */
7548 7551 -webkit-box-flex: 0;
7549 7552 -moz-box-flex: 0;
7550 7553 box-flex: 0;
7551 7554 /* Modern browsers */
7552 7555 flex: none;
7553 7556 }
7554 7557 .hbox.reverse,
7555 7558 .vbox.reverse,
7556 7559 .reverse {
7557 7560 /* Old browsers */
7558 7561 -webkit-box-direction: reverse;
7559 7562 -moz-box-direction: reverse;
7560 7563 box-direction: reverse;
7561 7564 /* Modern browsers */
7562 7565 flex-direction: row-reverse;
7563 7566 }
7564 7567 .hbox.box-flex0,
7565 7568 .vbox.box-flex0,
7566 7569 .box-flex0 {
7567 7570 /* Old browsers */
7568 7571 -webkit-box-flex: 0;
7569 7572 -moz-box-flex: 0;
7570 7573 box-flex: 0;
7571 7574 /* Modern browsers */
7572 7575 flex: none;
7573 7576 width: auto;
7574 7577 }
7575 7578 .hbox.box-flex1,
7576 7579 .vbox.box-flex1,
7577 7580 .box-flex1 {
7578 7581 /* Old browsers */
7579 7582 -webkit-box-flex: 1;
7580 7583 -moz-box-flex: 1;
7581 7584 box-flex: 1;
7582 7585 /* Modern browsers */
7583 7586 flex: 1;
7584 7587 }
7585 7588 .hbox.box-flex,
7586 7589 .vbox.box-flex,
7587 7590 .box-flex {
7588 7591 /* Old browsers */
7589 7592 /* Old browsers */
7590 7593 -webkit-box-flex: 1;
7591 7594 -moz-box-flex: 1;
7592 7595 box-flex: 1;
7593 7596 /* Modern browsers */
7594 7597 flex: 1;
7595 7598 }
7596 7599 .hbox.box-flex2,
7597 7600 .vbox.box-flex2,
7598 7601 .box-flex2 {
7599 7602 /* Old browsers */
7600 7603 -webkit-box-flex: 2;
7601 7604 -moz-box-flex: 2;
7602 7605 box-flex: 2;
7603 7606 /* Modern browsers */
7604 7607 flex: 2;
7605 7608 }
7606 7609 .box-group1 {
7607 7610 /* Deprecated */
7608 7611 -webkit-box-flex-group: 1;
7609 7612 -moz-box-flex-group: 1;
7610 7613 box-flex-group: 1;
7611 7614 }
7612 7615 .box-group2 {
7613 7616 /* Deprecated */
7614 7617 -webkit-box-flex-group: 2;
7615 7618 -moz-box-flex-group: 2;
7616 7619 box-flex-group: 2;
7617 7620 }
7618 7621 .hbox.start,
7619 7622 .vbox.start,
7620 7623 .start {
7621 7624 /* Old browsers */
7622 7625 -webkit-box-pack: start;
7623 7626 -moz-box-pack: start;
7624 7627 box-pack: start;
7625 7628 /* Modern browsers */
7626 7629 justify-content: flex-start;
7627 7630 }
7628 7631 .hbox.end,
7629 7632 .vbox.end,
7630 7633 .end {
7631 7634 /* Old browsers */
7632 7635 -webkit-box-pack: end;
7633 7636 -moz-box-pack: end;
7634 7637 box-pack: end;
7635 7638 /* Modern browsers */
7636 7639 justify-content: flex-end;
7637 7640 }
7638 7641 .hbox.center,
7639 7642 .vbox.center,
7640 7643 .center {
7641 7644 /* Old browsers */
7642 7645 -webkit-box-pack: center;
7643 7646 -moz-box-pack: center;
7644 7647 box-pack: center;
7645 7648 /* Modern browsers */
7646 7649 justify-content: center;
7647 7650 }
7648 7651 .hbox.baseline,
7649 7652 .vbox.baseline,
7650 7653 .baseline {
7651 7654 /* Old browsers */
7652 7655 -webkit-box-pack: baseline;
7653 7656 -moz-box-pack: baseline;
7654 7657 box-pack: baseline;
7655 7658 /* Modern browsers */
7656 7659 justify-content: baseline;
7657 7660 }
7658 7661 .hbox.stretch,
7659 7662 .vbox.stretch,
7660 7663 .stretch {
7661 7664 /* Old browsers */
7662 7665 -webkit-box-pack: stretch;
7663 7666 -moz-box-pack: stretch;
7664 7667 box-pack: stretch;
7665 7668 /* Modern browsers */
7666 7669 justify-content: stretch;
7667 7670 }
7668 7671 .hbox.align-start,
7669 7672 .vbox.align-start,
7670 7673 .align-start {
7671 7674 /* Old browsers */
7672 7675 -webkit-box-align: start;
7673 7676 -moz-box-align: start;
7674 7677 box-align: start;
7675 7678 /* Modern browsers */
7676 7679 align-items: flex-start;
7677 7680 }
7678 7681 .hbox.align-end,
7679 7682 .vbox.align-end,
7680 7683 .align-end {
7681 7684 /* Old browsers */
7682 7685 -webkit-box-align: end;
7683 7686 -moz-box-align: end;
7684 7687 box-align: end;
7685 7688 /* Modern browsers */
7686 7689 align-items: flex-end;
7687 7690 }
7688 7691 .hbox.align-center,
7689 7692 .vbox.align-center,
7690 7693 .align-center {
7691 7694 /* Old browsers */
7692 7695 -webkit-box-align: center;
7693 7696 -moz-box-align: center;
7694 7697 box-align: center;
7695 7698 /* Modern browsers */
7696 7699 align-items: center;
7697 7700 }
7698 7701 .hbox.align-baseline,
7699 7702 .vbox.align-baseline,
7700 7703 .align-baseline {
7701 7704 /* Old browsers */
7702 7705 -webkit-box-align: baseline;
7703 7706 -moz-box-align: baseline;
7704 7707 box-align: baseline;
7705 7708 /* Modern browsers */
7706 7709 align-items: baseline;
7707 7710 }
7708 7711 .hbox.align-stretch,
7709 7712 .vbox.align-stretch,
7710 7713 .align-stretch {
7711 7714 /* Old browsers */
7712 7715 -webkit-box-align: stretch;
7713 7716 -moz-box-align: stretch;
7714 7717 box-align: stretch;
7715 7718 /* Modern browsers */
7716 7719 align-items: stretch;
7717 7720 }
7718 7721 div.error {
7719 7722 margin: 2em;
7720 7723 text-align: center;
7721 7724 }
7722 7725 div.error > h1 {
7723 7726 font-size: 500%;
7724 7727 line-height: normal;
7725 7728 }
7726 7729 div.error > p {
7727 7730 font-size: 200%;
7728 7731 line-height: normal;
7729 7732 }
7730 7733 div.traceback-wrapper {
7731 7734 text-align: left;
7732 7735 max-width: 800px;
7733 7736 margin: auto;
7734 7737 }
7735 7738 /**
7736 7739 * Primary styles
7737 7740 *
7738 7741 * Author: IPython Development Team
7739 7742 */
7740 7743 body {
7741 7744 background-color: white;
7742 7745 /* This makes sure that the body covers the entire window and needs to
7743 7746 be in a different element than the display: box in wrapper below */
7744 7747 position: absolute;
7745 7748 left: 0px;
7746 7749 right: 0px;
7747 7750 top: 0px;
7748 7751 bottom: 0px;
7749 7752 overflow: visible;
7750 7753 }
7751 7754 div#header {
7752 7755 /* Initially hidden to prevent FLOUC */
7753 7756 display: none;
7754 7757 background-color: #ffffff;
7755 7758 /* Display over codemirror */
7756 7759 z-index: 100;
7757 7760 }
7758 7761 div#header #header-container {
7759 7762 padding-left: 30px;
7760 7763 padding-bottom: 5px;
7761 7764 padding-top: 5px;
7762 7765 box-sizing: border-box;
7763 7766 -moz-box-sizing: border-box;
7764 7767 -webkit-box-sizing: border-box;
7765 7768 }
7766 7769 div#header .header-bar {
7767 7770 width: 100%;
7768 7771 height: 0px;
7769 7772 border-bottom: 1px solid #e7e7e7;
7770 7773 }
7771 7774 @media print {
7772 7775 div#header {
7773 7776 display: none !important;
7774 7777 }
7775 7778 }
7776 7779 #header-spacer {
7777 7780 width: 100%;
7778 7781 visibility: hidden;
7779 7782 }
7780 7783 @media print {
7781 7784 #header-spacer {
7782 7785 display: none;
7783 7786 }
7784 7787 }
7785 7788 #ipython_notebook {
7786 7789 padding-left: 0px;
7787 7790 padding-top: 1px;
7788 7791 padding-bottom: 1px;
7789 7792 }
7790 7793 #noscript {
7791 7794 width: auto;
7792 7795 padding-top: 16px;
7793 7796 padding-bottom: 16px;
7794 7797 text-align: center;
7795 7798 font-size: 22px;
7796 7799 color: red;
7797 7800 font-weight: bold;
7798 7801 }
7799 7802 #ipython_notebook img {
7800 7803 height: 28px;
7801 7804 }
7802 7805 #site {
7803 7806 width: 100%;
7804 7807 display: none;
7805 7808 box-sizing: border-box;
7806 7809 -moz-box-sizing: border-box;
7807 7810 -webkit-box-sizing: border-box;
7808 7811 }
7809 7812 /* Smaller buttons */
7810 7813 .ui-button .ui-button-text {
7811 7814 padding: 0.2em 0.8em;
7812 7815 font-size: 77%;
7813 7816 }
7814 7817 input.ui-button {
7815 7818 padding: 0.3em 0.9em;
7816 7819 }
7817 7820 span#login_widget {
7818 7821 float: right;
7819 7822 }
7820 7823 span#login_widget > .button,
7821 7824 #logout {
7822 7825 color: #333333;
7823 7826 background-color: #ffffff;
7824 7827 border-color: #cccccc;
7825 7828 }
7826 7829 span#login_widget > .button:hover,
7827 7830 #logout:hover,
7828 7831 span#login_widget > .button:focus,
7829 7832 #logout:focus,
7830 7833 span#login_widget > .button:active,
7831 7834 #logout:active,
7832 7835 span#login_widget > .button.active,
7833 7836 #logout.active,
7834 7837 .open .dropdown-togglespan#login_widget > .button,
7835 7838 .open .dropdown-toggle#logout {
7836 7839 color: #333333;
7837 7840 background-color: #ebebeb;
7838 7841 border-color: #adadad;
7839 7842 }
7840 7843 span#login_widget > .button:active,
7841 7844 #logout:active,
7842 7845 span#login_widget > .button.active,
7843 7846 #logout.active,
7844 7847 .open .dropdown-togglespan#login_widget > .button,
7845 7848 .open .dropdown-toggle#logout {
7846 7849 background-image: none;
7847 7850 }
7848 7851 span#login_widget > .button.disabled,
7849 7852 #logout.disabled,
7850 7853 span#login_widget > .button[disabled],
7851 7854 #logout[disabled],
7852 7855 fieldset[disabled] span#login_widget > .button,
7853 7856 fieldset[disabled] #logout,
7854 7857 span#login_widget > .button.disabled:hover,
7855 7858 #logout.disabled:hover,
7856 7859 span#login_widget > .button[disabled]:hover,
7857 7860 #logout[disabled]:hover,
7858 7861 fieldset[disabled] span#login_widget > .button:hover,
7859 7862 fieldset[disabled] #logout:hover,
7860 7863 span#login_widget > .button.disabled:focus,
7861 7864 #logout.disabled:focus,
7862 7865 span#login_widget > .button[disabled]:focus,
7863 7866 #logout[disabled]:focus,
7864 7867 fieldset[disabled] span#login_widget > .button:focus,
7865 7868 fieldset[disabled] #logout:focus,
7866 7869 span#login_widget > .button.disabled:active,
7867 7870 #logout.disabled:active,
7868 7871 span#login_widget > .button[disabled]:active,
7869 7872 #logout[disabled]:active,
7870 7873 fieldset[disabled] span#login_widget > .button:active,
7871 7874 fieldset[disabled] #logout:active,
7872 7875 span#login_widget > .button.disabled.active,
7873 7876 #logout.disabled.active,
7874 7877 span#login_widget > .button[disabled].active,
7875 7878 #logout[disabled].active,
7876 7879 fieldset[disabled] span#login_widget > .button.active,
7877 7880 fieldset[disabled] #logout.active {
7878 7881 background-color: #ffffff;
7879 7882 border-color: #cccccc;
7880 7883 }
7881 7884 span#login_widget > .button .badge,
7882 7885 #logout .badge {
7883 7886 color: #ffffff;
7884 7887 background-color: #333333;
7885 7888 }
7886 7889 .nav-header {
7887 7890 text-transform: none;
7888 7891 }
7889 7892 #header > span {
7890 7893 margin-top: 10px;
7891 7894 }
7892 7895 .modal_stretch .modal-dialog {
7893 7896 /* Old browsers */
7894 7897 display: -webkit-box;
7895 7898 -webkit-box-orient: vertical;
7896 7899 -webkit-box-align: stretch;
7897 7900 display: -moz-box;
7898 7901 -moz-box-orient: vertical;
7899 7902 -moz-box-align: stretch;
7900 7903 display: box;
7901 7904 box-orient: vertical;
7902 7905 box-align: stretch;
7903 7906 /* Modern browsers */
7904 7907 display: flex;
7905 7908 flex-direction: column;
7906 7909 align-items: stretch;
7907 7910 min-height: 80%;
7908 7911 }
7909 7912 .modal_stretch .modal-dialog .modal-body {
7910 7913 max-height: none;
7911 7914 flex: 1;
7912 7915 }
7913 7916 @media (min-width: 768px) {
7914 7917 .modal .modal-dialog {
7915 7918 width: 700px;
7916 7919 }
7917 7920 }
7918 7921 /*!
7919 7922 *
7920 7923 * IPython auth
7921 7924 *
7922 7925 */
7923 7926 .center-nav {
7924 7927 display: inline-block;
7925 7928 margin-bottom: -4px;
7926 7929 }
7927 7930 /*!
7928 7931 *
7929 7932 * IPython tree view
7930 7933 *
7931 7934 */
7932 7935 /* We need an invisible input field on top of the sentense*/
7933 7936 /* "Drag file onto the list ..." */
7934 7937 .alternate_upload {
7935 7938 background-color: none;
7936 7939 display: inline;
7937 7940 }
7938 7941 .alternate_upload.form {
7939 7942 padding: 0;
7940 7943 margin: 0;
7941 7944 }
7942 7945 .alternate_upload input.fileinput {
7943 7946 display: inline;
7944 7947 opacity: 0;
7945 7948 z-index: 2;
7946 7949 width: 12ex;
7947 7950 margin-right: -12ex;
7948 7951 }
7949 7952 .alternate_upload .input-overlay {
7950 7953 display: inline-block;
7951 7954 font-weight: bold;
7952 7955 }
7953 7956 /**
7954 7957 * Primary styles
7955 7958 *
7956 7959 * Author: IPython Development Team
7957 7960 */
7958 7961 ul#tabs {
7959 7962 margin-bottom: 4px;
7960 7963 }
7961 7964 ul#tabs a {
7962 7965 padding-top: 6px;
7963 7966 padding-bottom: 4px;
7964 7967 }
7965 7968 ul.breadcrumb a:focus,
7966 7969 ul.breadcrumb a:hover {
7967 7970 text-decoration: none;
7968 7971 }
7969 7972 ul.breadcrumb i.icon-home {
7970 7973 font-size: 16px;
7971 7974 margin-right: 4px;
7972 7975 }
7973 7976 ul.breadcrumb span {
7974 7977 color: #5e5e5e;
7975 7978 }
7976 7979 .list_toolbar {
7977 7980 padding: 4px 0 4px 0;
7978 7981 vertical-align: middle;
7979 7982 }
7980 7983 .list_toolbar .tree-buttons {
7981 7984 padding-top: 2px;
7982 7985 }
7983 7986 .list_toolbar [class*="span"] {
7984 7987 min-height: 24px;
7985 7988 }
7986 7989 .list_header {
7987 7990 font-weight: bold;
7988 7991 }
7989 7992 .list_container {
7990 7993 margin-top: 4px;
7991 7994 margin-bottom: 20px;
7992 7995 border: 1px solid #ababab;
7993 7996 border-radius: 4px;
7994 7997 }
7995 7998 .list_container > div {
7996 7999 border-bottom: 1px solid #ababab;
7997 8000 }
7998 8001 .list_container > div:hover .list-item {
7999 8002 background-color: red;
8000 8003 }
8001 8004 .list_container > div:last-child {
8002 8005 border: none;
8003 8006 }
8004 8007 .list_item:hover .list_item {
8005 8008 background-color: #ddd;
8006 8009 }
8007 8010 .list_item a {
8008 8011 text-decoration: none;
8009 8012 }
8010 8013 .action_col {
8011 8014 text-align: right;
8012 8015 }
8013 8016 .list_header > div,
8014 8017 .list_item > div {
8015 8018 padding-top: 4px;
8016 8019 padding-bottom: 4px;
8017 8020 padding-left: 7px;
8018 8021 padding-right: 7px;
8019 8022 line-height: 22px;
8020 8023 }
8021 8024 .item_name {
8022 8025 line-height: 22px;
8023 8026 height: 24px;
8024 8027 }
8025 8028 .item_icon {
8026 8029 font-size: 14px;
8027 8030 color: #5e5e5e;
8028 8031 margin-right: 7px;
8029 8032 }
8030 8033 .item_buttons {
8031 8034 line-height: 1em;
8035 margin-left: -5px;
8032 8036 }
8033 8037 .item_buttons .btn {
8034 8038 min-width: 13ex;
8035 8039 }
8040 .item_buttons .btn-group,
8041 .item_buttons .input-group {
8042 float: left;
8043 }
8044 .item_buttons > .btn,
8045 .item_buttons > .btn-group,
8046 .item_buttons > .input-group {
8047 margin-left: 5px;
8048 }
8036 8049 .toolbar_info {
8037 8050 height: 24px;
8038 8051 line-height: 24px;
8039 8052 }
8040 8053 input.nbname_input,
8041 8054 input.engine_num_input {
8042 8055 padding-top: 3px;
8043 8056 padding-bottom: 3px;
8044 8057 height: 22px;
8045 8058 line-height: 14px;
8046 8059 margin: 0px;
8047 8060 }
8048 8061 input.engine_num_input {
8049 8062 width: 60px;
8050 8063 }
8051 8064 .highlight_text {
8052 8065 color: blue;
8053 8066 }
8054 8067 #project_name > .breadcrumb {
8055 8068 padding: 0px;
8056 8069 margin-bottom: 0px;
8057 8070 background-color: transparent;
8058 8071 font-weight: bold;
8059 8072 }
8060 8073 .tab-content .row {
8061 8074 margin-left: 0px;
8062 8075 margin-right: 0px;
8063 8076 }
8064 8077 .folder_icon:before {
8065 8078 display: inline-block;
8066 8079 font: normal normal normal 14px/1 FontAwesome;
8067 8080 font-size: inherit;
8068 8081 text-rendering: auto;
8069 8082 -webkit-font-smoothing: antialiased;
8070 8083 -moz-osx-font-smoothing: grayscale;
8071 8084 content: "\f114";
8072 8085 }
8073 8086 .folder_icon:before.pull-left {
8074 8087 margin-right: .3em;
8075 8088 }
8076 8089 .folder_icon:before.pull-right {
8077 8090 margin-left: .3em;
8078 8091 }
8079 8092 .notebook_icon:before {
8080 8093 display: inline-block;
8081 8094 font: normal normal normal 14px/1 FontAwesome;
8082 8095 font-size: inherit;
8083 8096 text-rendering: auto;
8084 8097 -webkit-font-smoothing: antialiased;
8085 8098 -moz-osx-font-smoothing: grayscale;
8086 8099 content: "\f02d";
8087 8100 }
8088 8101 .notebook_icon:before.pull-left {
8089 8102 margin-right: .3em;
8090 8103 }
8091 8104 .notebook_icon:before.pull-right {
8092 8105 margin-left: .3em;
8093 8106 }
8094 8107 .file_icon:before {
8095 8108 display: inline-block;
8096 8109 font: normal normal normal 14px/1 FontAwesome;
8097 8110 font-size: inherit;
8098 8111 text-rendering: auto;
8099 8112 -webkit-font-smoothing: antialiased;
8100 8113 -moz-osx-font-smoothing: grayscale;
8101 8114 content: "\f016";
8102 8115 }
8103 8116 .file_icon:before.pull-left {
8104 8117 margin-right: .3em;
8105 8118 }
8106 8119 .file_icon:before.pull-right {
8107 8120 margin-left: .3em;
8108 8121 }
8109 8122 ul#new-notebook-menu {
8110 8123 left: auto;
8111 8124 right: 0;
8112 8125 }
8113 8126 .kernel-menu-icon {
8114 8127 padding-right: 12px;
8115 8128 width: 24px;
8116 8129 content: "\f096";
8117 8130 }
8118 8131 .kernel-menu-icon:before {
8119 8132 content: "\f096";
8120 8133 }
8121 8134 .kernel-menu-icon-current:before {
8122 8135 content: "\f00c";
8123 8136 }
8124 8137 /*!
8125 8138 *
8126 8139 * IPython text editor webapp
8127 8140 *
8128 8141 */
8129 8142 .selected-keymap i.fa {
8130 8143 padding: 0px 5px;
8131 8144 }
8132 8145 .selected-keymap i.fa:before {
8133 8146 content: "\f00c";
8134 8147 }
8135 8148 #mode-menu {
8136 8149 overflow: auto;
8137 8150 max-height: 20em;
8138 8151 }
8139 8152 #texteditor-container {
8140 8153 border-bottom: 1px solid #ccc;
8141 8154 }
8142 8155 #filename {
8143 8156 font-size: 16pt;
8144 8157 display: table;
8145 8158 padding: 0px 5px;
8146 8159 }
8147 8160 /*!
8148 8161 *
8149 8162 * IPython notebook
8150 8163 *
8151 8164 */
8152 8165 /* CSS font colors for translated ANSI colors. */
8153 8166 .ansibold {
8154 8167 font-weight: bold;
8155 8168 }
8156 8169 /* use dark versions for foreground, to improve visibility */
8157 8170 .ansiblack {
8158 8171 color: black;
8159 8172 }
8160 8173 .ansired {
8161 8174 color: darkred;
8162 8175 }
8163 8176 .ansigreen {
8164 8177 color: darkgreen;
8165 8178 }
8166 8179 .ansiyellow {
8167 8180 color: #c4a000;
8168 8181 }
8169 8182 .ansiblue {
8170 8183 color: darkblue;
8171 8184 }
8172 8185 .ansipurple {
8173 8186 color: darkviolet;
8174 8187 }
8175 8188 .ansicyan {
8176 8189 color: steelblue;
8177 8190 }
8178 8191 .ansigray {
8179 8192 color: gray;
8180 8193 }
8181 8194 /* and light for background, for the same reason */
8182 8195 .ansibgblack {
8183 8196 background-color: black;
8184 8197 }
8185 8198 .ansibgred {
8186 8199 background-color: red;
8187 8200 }
8188 8201 .ansibggreen {
8189 8202 background-color: green;
8190 8203 }
8191 8204 .ansibgyellow {
8192 8205 background-color: yellow;
8193 8206 }
8194 8207 .ansibgblue {
8195 8208 background-color: blue;
8196 8209 }
8197 8210 .ansibgpurple {
8198 8211 background-color: magenta;
8199 8212 }
8200 8213 .ansibgcyan {
8201 8214 background-color: cyan;
8202 8215 }
8203 8216 .ansibggray {
8204 8217 background-color: gray;
8205 8218 }
8206 8219 div.cell {
8207 8220 border: 1px solid transparent;
8208 8221 /* Old browsers */
8209 8222 display: -webkit-box;
8210 8223 -webkit-box-orient: vertical;
8211 8224 -webkit-box-align: stretch;
8212 8225 display: -moz-box;
8213 8226 -moz-box-orient: vertical;
8214 8227 -moz-box-align: stretch;
8215 8228 display: box;
8216 8229 box-orient: vertical;
8217 8230 box-align: stretch;
8218 8231 /* Modern browsers */
8219 8232 display: flex;
8220 8233 flex-direction: column;
8221 8234 align-items: stretch;
8222 8235 border-radius: 4px;
8223 8236 box-sizing: border-box;
8224 8237 -moz-box-sizing: border-box;
8225 8238 -webkit-box-sizing: border-box;
8226 8239 border-width: thin;
8227 8240 border-style: solid;
8228 8241 width: 100%;
8229 8242 padding: 5px 5px 5px 0px;
8230 8243 /* This acts as a spacer between cells, that is outside the border */
8231 8244 margin: 0px;
8232 8245 outline: none;
8233 8246 }
8234 8247 div.cell.selected {
8235 8248 border-color: #ababab;
8236 8249 /* Don't border the cells when printing */
8237 8250 }
8238 8251 @media print {
8239 8252 div.cell.selected {
8240 8253 border-color: transparent;
8241 8254 }
8242 8255 }
8243 8256 div.cell.edit_mode {
8244 8257 border-color: green;
8245 8258 /* Don't border the cells when printing */
8246 8259 }
8247 8260 @media print {
8248 8261 div.cell.edit_mode {
8249 8262 border-color: transparent;
8250 8263 }
8251 8264 }
8252 8265 div.prompt {
8253 8266 /* This needs to be wide enough for 3 digit prompt numbers: In[100]: */
8254 8267 min-width: 15ex;
8255 8268 /* This padding is tuned to match the padding on the CodeMirror editor. */
8256 8269 padding: 0.4em;
8257 8270 margin: 0px;
8258 8271 font-family: monospace;
8259 8272 text-align: right;
8260 8273 /* This has to match that of the the CodeMirror class line-height below */
8261 8274 line-height: 1.21429em;
8262 8275 }
8263 8276 @media (max-width: 480px) {
8264 8277 div.prompt {
8265 8278 text-align: left;
8266 8279 }
8267 8280 }
8268 8281 div.inner_cell {
8269 8282 /* Old browsers */
8270 8283 display: -webkit-box;
8271 8284 -webkit-box-orient: vertical;
8272 8285 -webkit-box-align: stretch;
8273 8286 display: -moz-box;
8274 8287 -moz-box-orient: vertical;
8275 8288 -moz-box-align: stretch;
8276 8289 display: box;
8277 8290 box-orient: vertical;
8278 8291 box-align: stretch;
8279 8292 /* Modern browsers */
8280 8293 display: flex;
8281 8294 flex-direction: column;
8282 8295 align-items: stretch;
8283 8296 /* Old browsers */
8284 8297 -webkit-box-flex: 1;
8285 8298 -moz-box-flex: 1;
8286 8299 box-flex: 1;
8287 8300 /* Modern browsers */
8288 8301 flex: 1;
8289 8302 }
8290 8303 /* input_area and input_prompt must match in top border and margin for alignment */
8291 8304 div.input_area {
8292 8305 border: 1px solid #cfcfcf;
8293 8306 border-radius: 4px;
8294 8307 background: #f7f7f7;
8295 8308 line-height: 1.21429em;
8296 8309 }
8297 8310 /* This is needed so that empty prompt areas can collapse to zero height when there
8298 8311 is no content in the output_subarea and the prompt. The main purpose of this is
8299 8312 to make sure that empty JavaScript output_subareas have no height. */
8300 8313 div.prompt:empty {
8301 8314 padding-top: 0;
8302 8315 padding-bottom: 0;
8303 8316 }
8304 8317 div.unrecognized_cell {
8305 8318 padding: 5px 5px 5px 0px;
8306 8319 /* Old browsers */
8307 8320 display: -webkit-box;
8308 8321 -webkit-box-orient: horizontal;
8309 8322 -webkit-box-align: stretch;
8310 8323 display: -moz-box;
8311 8324 -moz-box-orient: horizontal;
8312 8325 -moz-box-align: stretch;
8313 8326 display: box;
8314 8327 box-orient: horizontal;
8315 8328 box-align: stretch;
8316 8329 /* Modern browsers */
8317 8330 display: flex;
8318 8331 flex-direction: row;
8319 8332 align-items: stretch;
8320 8333 }
8321 8334 div.unrecognized_cell .inner_cell {
8322 8335 border-radius: 4px;
8323 8336 padding: 5px;
8324 8337 font-weight: bold;
8325 8338 color: red;
8326 8339 border: 1px solid #cfcfcf;
8327 8340 background: #eaeaea;
8328 8341 }
8329 8342 div.unrecognized_cell .inner_cell a {
8330 8343 color: inherit;
8331 8344 text-decoration: none;
8332 8345 }
8333 8346 div.unrecognized_cell .inner_cell a:hover {
8334 8347 color: inherit;
8335 8348 text-decoration: none;
8336 8349 }
8337 8350 @media (max-width: 480px) {
8338 8351 div.unrecognized_cell > div.prompt {
8339 8352 display: none;
8340 8353 }
8341 8354 }
8342 8355 div.code_cell {
8343 8356 /* avoid page breaking on code cells when printing */
8344 8357 }
8345 8358 @media print {
8346 8359 div.code_cell {
8347 8360 page-break-inside: avoid;
8348 8361 }
8349 8362 }
8350 8363 /* any special styling for code cells that are currently running goes here */
8351 8364 div.input {
8352 8365 page-break-inside: avoid;
8353 8366 /* Old browsers */
8354 8367 display: -webkit-box;
8355 8368 -webkit-box-orient: horizontal;
8356 8369 -webkit-box-align: stretch;
8357 8370 display: -moz-box;
8358 8371 -moz-box-orient: horizontal;
8359 8372 -moz-box-align: stretch;
8360 8373 display: box;
8361 8374 box-orient: horizontal;
8362 8375 box-align: stretch;
8363 8376 /* Modern browsers */
8364 8377 display: flex;
8365 8378 flex-direction: row;
8366 8379 align-items: stretch;
8367 8380 }
8368 8381 @media (max-width: 480px) {
8369 8382 div.input {
8370 8383 /* Old browsers */
8371 8384 display: -webkit-box;
8372 8385 -webkit-box-orient: vertical;
8373 8386 -webkit-box-align: stretch;
8374 8387 display: -moz-box;
8375 8388 -moz-box-orient: vertical;
8376 8389 -moz-box-align: stretch;
8377 8390 display: box;
8378 8391 box-orient: vertical;
8379 8392 box-align: stretch;
8380 8393 /* Modern browsers */
8381 8394 display: flex;
8382 8395 flex-direction: column;
8383 8396 align-items: stretch;
8384 8397 }
8385 8398 }
8386 8399 /* input_area and input_prompt must match in top border and margin for alignment */
8387 8400 div.input_prompt {
8388 8401 color: navy;
8389 8402 border-top: 1px solid transparent;
8390 8403 }
8391 8404 div.input_area > div.highlight {
8392 8405 margin: 0.4em;
8393 8406 border: none;
8394 8407 padding: 0px;
8395 8408 background-color: transparent;
8396 8409 }
8397 8410 div.input_area > div.highlight > pre {
8398 8411 margin: 0px;
8399 8412 border: none;
8400 8413 padding: 0px;
8401 8414 background-color: transparent;
8402 8415 }
8403 8416 /* The following gets added to the <head> if it is detected that the user has a
8404 8417 * monospace font with inconsistent normal/bold/italic height. See
8405 8418 * notebookmain.js. Such fonts will have keywords vertically offset with
8406 8419 * respect to the rest of the text. The user should select a better font.
8407 8420 * See: https://github.com/ipython/ipython/issues/1503
8408 8421 *
8409 8422 * .CodeMirror span {
8410 8423 * vertical-align: bottom;
8411 8424 * }
8412 8425 */
8413 8426 .CodeMirror {
8414 8427 line-height: 1.21429em;
8415 8428 /* Changed from 1em to our global default */
8416 8429 height: auto;
8417 8430 /* Changed to auto to autogrow */
8418 8431 background: none;
8419 8432 /* Changed from white to allow our bg to show through */
8420 8433 }
8421 8434 .CodeMirror-scroll {
8422 8435 /* The CodeMirror docs are a bit fuzzy on if overflow-y should be hidden or visible.*/
8423 8436 /* We have found that if it is visible, vertical scrollbars appear with font size changes.*/
8424 8437 overflow-y: hidden;
8425 8438 overflow-x: auto;
8426 8439 }
8427 8440 .CodeMirror-lines {
8428 8441 /* In CM2, this used to be 0.4em, but in CM3 it went to 4px. We need the em value because */
8429 8442 /* we have set a different line-height and want this to scale with that. */
8430 8443 padding: 0.4em;
8431 8444 }
8432 8445 .CodeMirror-linenumber {
8433 8446 padding: 0 8px 0 4px;
8434 8447 }
8435 8448 .CodeMirror-gutters {
8436 8449 border-bottom-left-radius: 4px;
8437 8450 border-top-left-radius: 4px;
8438 8451 }
8439 8452 .CodeMirror pre {
8440 8453 /* In CM3 this went to 4px from 0 in CM2. We need the 0 value because of how we size */
8441 8454 /* .CodeMirror-lines */
8442 8455 padding: 0;
8443 8456 border: 0;
8444 8457 border-radius: 0;
8445 8458 }
8446 8459 .CodeMirror-vscrollbar,
8447 8460 .CodeMirror-hscrollbar {
8448 8461 display: none !important;
8449 8462 }
8450 8463 /*
8451 8464
8452 8465 Original style from softwaremaniacs.org (c) Ivan Sagalaev <Maniac@SoftwareManiacs.Org>
8453 8466 Adapted from GitHub theme
8454 8467
8455 8468 */
8456 8469 .highlight-base {
8457 8470 color: #000000;
8458 8471 }
8459 8472 .highlight-variable {
8460 8473 color: #000000;
8461 8474 }
8462 8475 .highlight-variable-2 {
8463 8476 color: #1a1a1a;
8464 8477 }
8465 8478 .highlight-variable-3 {
8466 8479 color: #333333;
8467 8480 }
8468 8481 .highlight-string {
8469 8482 color: #BA2121;
8470 8483 }
8471 8484 .highlight-comment {
8472 8485 color: #408080;
8473 8486 font-style: italic;
8474 8487 }
8475 8488 .highlight-number {
8476 8489 color: #080;
8477 8490 }
8478 8491 .highlight-atom {
8479 8492 color: #88F;
8480 8493 }
8481 8494 .highlight-keyword {
8482 8495 color: #008000;
8483 8496 font-weight: bold;
8484 8497 }
8485 8498 .highlight-builtin {
8486 8499 color: #008000;
8487 8500 }
8488 8501 .highlight-error {
8489 8502 color: #f00;
8490 8503 }
8491 8504 .highlight-operator {
8492 8505 color: #AA22FF;
8493 8506 font-weight: bold;
8494 8507 }
8495 8508 .highlight-meta {
8496 8509 color: #AA22FF;
8497 8510 }
8498 8511 /* previously not defined, copying from default codemirror */
8499 8512 .highlight-def {
8500 8513 color: #00f;
8501 8514 }
8502 8515 .highlight-string-2 {
8503 8516 color: #f50;
8504 8517 }
8505 8518 .highlight-qualifier {
8506 8519 color: #555;
8507 8520 }
8508 8521 .highlight-bracket {
8509 8522 color: #997;
8510 8523 }
8511 8524 .highlight-tag {
8512 8525 color: #170;
8513 8526 }
8514 8527 .highlight-attribute {
8515 8528 color: #00c;
8516 8529 }
8517 8530 .highlight-header {
8518 8531 color: blue;
8519 8532 }
8520 8533 .highlight-quote {
8521 8534 color: #090;
8522 8535 }
8523 8536 .highlight-link {
8524 8537 color: #00c;
8525 8538 }
8526 8539 /* apply the same style to codemirror */
8527 8540 .cm-s-ipython span.cm-keyword {
8528 8541 color: #008000;
8529 8542 font-weight: bold;
8530 8543 }
8531 8544 .cm-s-ipython span.cm-atom {
8532 8545 color: #88F;
8533 8546 }
8534 8547 .cm-s-ipython span.cm-number {
8535 8548 color: #080;
8536 8549 }
8537 8550 .cm-s-ipython span.cm-def {
8538 8551 color: #00f;
8539 8552 }
8540 8553 .cm-s-ipython span.cm-variable {
8541 8554 color: #000000;
8542 8555 }
8543 8556 .cm-s-ipython span.cm-operator {
8544 8557 color: #AA22FF;
8545 8558 font-weight: bold;
8546 8559 }
8547 8560 .cm-s-ipython span.cm-variable-2 {
8548 8561 color: #1a1a1a;
8549 8562 }
8550 8563 .cm-s-ipython span.cm-variable-3 {
8551 8564 color: #333333;
8552 8565 }
8553 8566 .cm-s-ipython span.cm-comment {
8554 8567 color: #408080;
8555 8568 font-style: italic;
8556 8569 }
8557 8570 .cm-s-ipython span.cm-string {
8558 8571 color: #BA2121;
8559 8572 }
8560 8573 .cm-s-ipython span.cm-string-2 {
8561 8574 color: #f50;
8562 8575 }
8563 8576 .cm-s-ipython span.cm-meta {
8564 8577 color: #AA22FF;
8565 8578 }
8566 8579 .cm-s-ipython span.cm-qualifier {
8567 8580 color: #555;
8568 8581 }
8569 8582 .cm-s-ipython span.cm-builtin {
8570 8583 color: #008000;
8571 8584 }
8572 8585 .cm-s-ipython span.cm-bracket {
8573 8586 color: #997;
8574 8587 }
8575 8588 .cm-s-ipython span.cm-tag {
8576 8589 color: #170;
8577 8590 }
8578 8591 .cm-s-ipython span.cm-attribute {
8579 8592 color: #00c;
8580 8593 }
8581 8594 .cm-s-ipython span.cm-header {
8582 8595 color: blue;
8583 8596 }
8584 8597 .cm-s-ipython span.cm-quote {
8585 8598 color: #090;
8586 8599 }
8587 8600 .cm-s-ipython span.cm-link {
8588 8601 color: #00c;
8589 8602 }
8590 8603 .cm-s-ipython span.cm-error {
8591 8604 color: #f00;
8592 8605 }
8593 8606 .cm-s-ipython span.cm-tab {
8594 8607 background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAMCAYAAAAkuj5RAAAAAXNSR0IArs4c6QAAAGFJREFUSMft1LsRQFAQheHPowAKoACx3IgEKtaEHujDjORSgWTH/ZOdnZOcM/sgk/kFFWY0qV8foQwS4MKBCS3qR6ixBJvElOobYAtivseIE120FaowJPN75GMu8j/LfMwNjh4HUpwg4LUAAAAASUVORK5CYII=);
8595 8608 background-position: right;
8596 8609 background-repeat: no-repeat;
8597 8610 }
8598 8611 div.output_wrapper {
8599 8612 /* this position must be relative to enable descendents to be absolute within it */
8600 8613 position: relative;
8601 8614 /* Old browsers */
8602 8615 display: -webkit-box;
8603 8616 -webkit-box-orient: vertical;
8604 8617 -webkit-box-align: stretch;
8605 8618 display: -moz-box;
8606 8619 -moz-box-orient: vertical;
8607 8620 -moz-box-align: stretch;
8608 8621 display: box;
8609 8622 box-orient: vertical;
8610 8623 box-align: stretch;
8611 8624 /* Modern browsers */
8612 8625 display: flex;
8613 8626 flex-direction: column;
8614 8627 align-items: stretch;
8615 8628 }
8616 8629 /* class for the output area when it should be height-limited */
8617 8630 div.output_scroll {
8618 8631 /* ideally, this would be max-height, but FF barfs all over that */
8619 8632 height: 24em;
8620 8633 /* FF needs this *and the wrapper* to specify full width, or it will shrinkwrap */
8621 8634 width: 100%;
8622 8635 overflow: auto;
8623 8636 border-radius: 4px;
8624 8637 -webkit-box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8625 8638 box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8);
8626 8639 display: block;
8627 8640 }
8628 8641 /* output div while it is collapsed */
8629 8642 div.output_collapsed {
8630 8643 margin: 0px;
8631 8644 padding: 0px;
8632 8645 /* Old browsers */
8633 8646 display: -webkit-box;
8634 8647 -webkit-box-orient: vertical;
8635 8648 -webkit-box-align: stretch;
8636 8649 display: -moz-box;
8637 8650 -moz-box-orient: vertical;
8638 8651 -moz-box-align: stretch;
8639 8652 display: box;
8640 8653 box-orient: vertical;
8641 8654 box-align: stretch;
8642 8655 /* Modern browsers */
8643 8656 display: flex;
8644 8657 flex-direction: column;
8645 8658 align-items: stretch;
8646 8659 }
8647 8660 div.out_prompt_overlay {
8648 8661 height: 100%;
8649 8662 padding: 0px 0.4em;
8650 8663 position: absolute;
8651 8664 border-radius: 4px;
8652 8665 }
8653 8666 div.out_prompt_overlay:hover {
8654 8667 /* use inner shadow to get border that is computed the same on WebKit/FF */
8655 8668 -webkit-box-shadow: inset 0 0 1px #000000;
8656 8669 box-shadow: inset 0 0 1px #000000;
8657 8670 background: rgba(240, 240, 240, 0.5);
8658 8671 }
8659 8672 div.output_prompt {
8660 8673 color: darkred;
8661 8674 }
8662 8675 /* This class is the outer container of all output sections. */
8663 8676 div.output_area {
8664 8677 padding: 0px;
8665 8678 page-break-inside: avoid;
8666 8679 /* Old browsers */
8667 8680 display: -webkit-box;
8668 8681 -webkit-box-orient: horizontal;
8669 8682 -webkit-box-align: stretch;
8670 8683 display: -moz-box;
8671 8684 -moz-box-orient: horizontal;
8672 8685 -moz-box-align: stretch;
8673 8686 display: box;
8674 8687 box-orient: horizontal;
8675 8688 box-align: stretch;
8676 8689 /* Modern browsers */
8677 8690 display: flex;
8678 8691 flex-direction: row;
8679 8692 align-items: stretch;
8680 8693 }
8681 8694 div.output_area .MathJax_Display {
8682 8695 text-align: left !important;
8683 8696 }
8684 8697 div.output_area .rendered_html table {
8685 8698 margin-left: 0;
8686 8699 margin-right: 0;
8687 8700 }
8688 8701 div.output_area .rendered_html img {
8689 8702 margin-left: 0;
8690 8703 margin-right: 0;
8691 8704 }
8692 8705 /* This is needed to protect the pre formating from global settings such
8693 8706 as that of bootstrap */
8694 8707 .output {
8695 8708 /* Old browsers */
8696 8709 display: -webkit-box;
8697 8710 -webkit-box-orient: vertical;
8698 8711 -webkit-box-align: stretch;
8699 8712 display: -moz-box;
8700 8713 -moz-box-orient: vertical;
8701 8714 -moz-box-align: stretch;
8702 8715 display: box;
8703 8716 box-orient: vertical;
8704 8717 box-align: stretch;
8705 8718 /* Modern browsers */
8706 8719 display: flex;
8707 8720 flex-direction: column;
8708 8721 align-items: stretch;
8709 8722 }
8710 8723 @media (max-width: 480px) {
8711 8724 div.output_area {
8712 8725 /* Old browsers */
8713 8726 display: -webkit-box;
8714 8727 -webkit-box-orient: vertical;
8715 8728 -webkit-box-align: stretch;
8716 8729 display: -moz-box;
8717 8730 -moz-box-orient: vertical;
8718 8731 -moz-box-align: stretch;
8719 8732 display: box;
8720 8733 box-orient: vertical;
8721 8734 box-align: stretch;
8722 8735 /* Modern browsers */
8723 8736 display: flex;
8724 8737 flex-direction: column;
8725 8738 align-items: stretch;
8726 8739 }
8727 8740 }
8728 8741 div.output_area pre {
8729 8742 margin: 0;
8730 8743 padding: 0;
8731 8744 border: 0;
8732 8745 vertical-align: baseline;
8733 8746 color: black;
8734 8747 background-color: transparent;
8735 8748 border-radius: 0;
8736 8749 }
8737 8750 /* This class is for the output subarea inside the output_area and after
8738 8751 the prompt div. */
8739 8752 div.output_subarea {
8740 8753 padding: 0.4em 0.4em 0em 0.4em;
8741 8754 /* Old browsers */
8742 8755 -webkit-box-flex: 1;
8743 8756 -moz-box-flex: 1;
8744 8757 box-flex: 1;
8745 8758 /* Modern browsers */
8746 8759 flex: 1;
8747 8760 }
8748 8761 /* The rest of the output_* classes are for special styling of the different
8749 8762 output types */
8750 8763 /* all text output has this class: */
8751 8764 div.output_text {
8752 8765 text-align: left;
8753 8766 color: #000000;
8754 8767 /* This has to match that of the the CodeMirror class line-height below */
8755 8768 line-height: 1.21429em;
8756 8769 }
8757 8770 /* stdout/stderr are 'text' as well as 'stream', but execute_result/error are *not* streams */
8758 8771 div.output_stderr {
8759 8772 background: #fdd;
8760 8773 /* very light red background for stderr */
8761 8774 }
8762 8775 div.output_latex {
8763 8776 text-align: left;
8764 8777 }
8765 8778 /* Empty output_javascript divs should have no height */
8766 8779 div.output_javascript:empty {
8767 8780 padding: 0;
8768 8781 }
8769 8782 .js-error {
8770 8783 color: darkred;
8771 8784 }
8772 8785 /* raw_input styles */
8773 8786 div.raw_input_container {
8774 8787 font-family: monospace;
8775 8788 padding-top: 5px;
8776 8789 }
8777 8790 span.raw_input_prompt {
8778 8791 /* nothing needed here */
8779 8792 }
8780 8793 input.raw_input {
8781 8794 font-family: inherit;
8782 8795 font-size: inherit;
8783 8796 color: inherit;
8784 8797 width: auto;
8785 8798 /* make sure input baseline aligns with prompt */
8786 8799 vertical-align: baseline;
8787 8800 /* padding + margin = 0.5em between prompt and cursor */
8788 8801 padding: 0em 0.25em;
8789 8802 margin: 0em 0.25em;
8790 8803 }
8791 8804 input.raw_input:focus {
8792 8805 box-shadow: none;
8793 8806 }
8794 8807 p.p-space {
8795 8808 margin-bottom: 10px;
8796 8809 }
8797 8810 div.output_unrecognized {
8798 8811 padding: 5px;
8799 8812 font-weight: bold;
8800 8813 color: red;
8801 8814 }
8802 8815 div.output_unrecognized a {
8803 8816 color: inherit;
8804 8817 text-decoration: none;
8805 8818 }
8806 8819 div.output_unrecognized a:hover {
8807 8820 color: inherit;
8808 8821 text-decoration: none;
8809 8822 }
8810 8823 .rendered_html {
8811 8824 color: #000000;
8812 8825 /* any extras will just be numbers: */
8813 8826 }
8814 8827 .rendered_html em {
8815 8828 font-style: italic;
8816 8829 }
8817 8830 .rendered_html strong {
8818 8831 font-weight: bold;
8819 8832 }
8820 8833 .rendered_html u {
8821 8834 text-decoration: underline;
8822 8835 }
8823 8836 .rendered_html :link {
8824 8837 text-decoration: underline;
8825 8838 }
8826 8839 .rendered_html :visited {
8827 8840 text-decoration: underline;
8828 8841 }
8829 8842 .rendered_html h1 {
8830 8843 font-size: 185.7%;
8831 8844 margin: 1.08em 0 0 0;
8832 8845 font-weight: bold;
8833 8846 line-height: 1.0;
8834 8847 }
8835 8848 .rendered_html h2 {
8836 8849 font-size: 157.1%;
8837 8850 margin: 1.27em 0 0 0;
8838 8851 font-weight: bold;
8839 8852 line-height: 1.0;
8840 8853 }
8841 8854 .rendered_html h3 {
8842 8855 font-size: 128.6%;
8843 8856 margin: 1.55em 0 0 0;
8844 8857 font-weight: bold;
8845 8858 line-height: 1.0;
8846 8859 }
8847 8860 .rendered_html h4 {
8848 8861 font-size: 100%;
8849 8862 margin: 2em 0 0 0;
8850 8863 font-weight: bold;
8851 8864 line-height: 1.0;
8852 8865 }
8853 8866 .rendered_html h5 {
8854 8867 font-size: 100%;
8855 8868 margin: 2em 0 0 0;
8856 8869 font-weight: bold;
8857 8870 line-height: 1.0;
8858 8871 font-style: italic;
8859 8872 }
8860 8873 .rendered_html h6 {
8861 8874 font-size: 100%;
8862 8875 margin: 2em 0 0 0;
8863 8876 font-weight: bold;
8864 8877 line-height: 1.0;
8865 8878 font-style: italic;
8866 8879 }
8867 8880 .rendered_html h1:first-child {
8868 8881 margin-top: 0.538em;
8869 8882 }
8870 8883 .rendered_html h2:first-child {
8871 8884 margin-top: 0.636em;
8872 8885 }
8873 8886 .rendered_html h3:first-child {
8874 8887 margin-top: 0.777em;
8875 8888 }
8876 8889 .rendered_html h4:first-child {
8877 8890 margin-top: 1em;
8878 8891 }
8879 8892 .rendered_html h5:first-child {
8880 8893 margin-top: 1em;
8881 8894 }
8882 8895 .rendered_html h6:first-child {
8883 8896 margin-top: 1em;
8884 8897 }
8885 8898 .rendered_html ul {
8886 8899 list-style: disc;
8887 8900 margin: 0em 2em;
8888 8901 padding-left: 0px;
8889 8902 }
8890 8903 .rendered_html ul ul {
8891 8904 list-style: square;
8892 8905 margin: 0em 2em;
8893 8906 }
8894 8907 .rendered_html ul ul ul {
8895 8908 list-style: circle;
8896 8909 margin: 0em 2em;
8897 8910 }
8898 8911 .rendered_html ol {
8899 8912 list-style: decimal;
8900 8913 margin: 0em 2em;
8901 8914 padding-left: 0px;
8902 8915 }
8903 8916 .rendered_html ol ol {
8904 8917 list-style: upper-alpha;
8905 8918 margin: 0em 2em;
8906 8919 }
8907 8920 .rendered_html ol ol ol {
8908 8921 list-style: lower-alpha;
8909 8922 margin: 0em 2em;
8910 8923 }
8911 8924 .rendered_html ol ol ol ol {
8912 8925 list-style: lower-roman;
8913 8926 margin: 0em 2em;
8914 8927 }
8915 8928 .rendered_html ol ol ol ol ol {
8916 8929 list-style: decimal;
8917 8930 margin: 0em 2em;
8918 8931 }
8919 8932 .rendered_html * + ul {
8920 8933 margin-top: 1em;
8921 8934 }
8922 8935 .rendered_html * + ol {
8923 8936 margin-top: 1em;
8924 8937 }
8925 8938 .rendered_html hr {
8926 8939 color: black;
8927 8940 background-color: black;
8928 8941 }
8929 8942 .rendered_html pre {
8930 8943 margin: 1em 2em;
8931 8944 }
8932 8945 .rendered_html pre,
8933 8946 .rendered_html code {
8934 8947 border: 0;
8935 8948 background-color: #ffffff;
8936 8949 color: #000000;
8937 8950 font-size: 100%;
8938 8951 padding: 0px;
8939 8952 }
8940 8953 .rendered_html blockquote {
8941 8954 margin: 1em 2em;
8942 8955 }
8943 8956 .rendered_html table {
8944 8957 margin-left: auto;
8945 8958 margin-right: auto;
8946 8959 border: 1px solid black;
8947 8960 border-collapse: collapse;
8948 8961 }
8949 8962 .rendered_html tr,
8950 8963 .rendered_html th,
8951 8964 .rendered_html td {
8952 8965 border: 1px solid black;
8953 8966 border-collapse: collapse;
8954 8967 margin: 1em 2em;
8955 8968 }
8956 8969 .rendered_html td,
8957 8970 .rendered_html th {
8958 8971 text-align: left;
8959 8972 vertical-align: middle;
8960 8973 padding: 4px;
8961 8974 }
8962 8975 .rendered_html th {
8963 8976 font-weight: bold;
8964 8977 }
8965 8978 .rendered_html * + table {
8966 8979 margin-top: 1em;
8967 8980 }
8968 8981 .rendered_html p {
8969 8982 text-align: justify;
8970 8983 }
8971 8984 .rendered_html * + p {
8972 8985 margin-top: 1em;
8973 8986 }
8974 8987 .rendered_html img {
8975 8988 display: block;
8976 8989 margin-left: auto;
8977 8990 margin-right: auto;
8978 8991 }
8979 8992 .rendered_html * + img {
8980 8993 margin-top: 1em;
8981 8994 }
8982 8995 div.text_cell {
8983 8996 padding: 5px 5px 5px 0px;
8984 8997 /* Old browsers */
8985 8998 display: -webkit-box;
8986 8999 -webkit-box-orient: horizontal;
8987 9000 -webkit-box-align: stretch;
8988 9001 display: -moz-box;
8989 9002 -moz-box-orient: horizontal;
8990 9003 -moz-box-align: stretch;
8991 9004 display: box;
8992 9005 box-orient: horizontal;
8993 9006 box-align: stretch;
8994 9007 /* Modern browsers */
8995 9008 display: flex;
8996 9009 flex-direction: row;
8997 9010 align-items: stretch;
8998 9011 }
8999 9012 @media (max-width: 480px) {
9000 9013 div.text_cell > div.prompt {
9001 9014 display: none;
9002 9015 }
9003 9016 }
9004 9017 div.text_cell_render {
9005 9018 /*font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;*/
9006 9019 outline: none;
9007 9020 resize: none;
9008 9021 width: inherit;
9009 9022 border-style: none;
9010 9023 padding: 0.5em 0.5em 0.5em 0.4em;
9011 9024 color: #000000;
9012 9025 box-sizing: border-box;
9013 9026 -moz-box-sizing: border-box;
9014 9027 -webkit-box-sizing: border-box;
9015 9028 }
9016 9029 a.anchor-link:link {
9017 9030 text-decoration: none;
9018 9031 padding: 0px 20px;
9019 9032 visibility: hidden;
9020 9033 }
9021 9034 h1:hover .anchor-link,
9022 9035 h2:hover .anchor-link,
9023 9036 h3:hover .anchor-link,
9024 9037 h4:hover .anchor-link,
9025 9038 h5:hover .anchor-link,
9026 9039 h6:hover .anchor-link {
9027 9040 visibility: visible;
9028 9041 }
9029 9042 .text_cell.rendered .input_area {
9030 9043 display: none;
9031 9044 }
9032 9045 .text_cell.unrendered .text_cell_render {
9033 9046 display: none;
9034 9047 }
9035 9048 .cm-header-1,
9036 9049 .cm-header-2,
9037 9050 .cm-header-3,
9038 9051 .cm-header-4,
9039 9052 .cm-header-5,
9040 9053 .cm-header-6 {
9041 9054 font-weight: bold;
9042 9055 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
9043 9056 }
9044 9057 .cm-header-1 {
9045 9058 font-size: 185.7%;
9046 9059 }
9047 9060 .cm-header-2 {
9048 9061 font-size: 157.1%;
9049 9062 }
9050 9063 .cm-header-3 {
9051 9064 font-size: 128.6%;
9052 9065 }
9053 9066 .cm-header-4 {
9054 9067 font-size: 110%;
9055 9068 }
9056 9069 .cm-header-5 {
9057 9070 font-size: 100%;
9058 9071 font-style: italic;
9059 9072 }
9060 9073 .cm-header-6 {
9061 9074 font-size: 100%;
9062 9075 font-style: italic;
9063 9076 }
9064 9077 .widget-area {
9065 9078 /*
9066 9079 LESS file that styles IPython notebook widgets and the area they sit in.
9067 9080
9068 9081 The widget area typically looks something like this:
9069 9082 +------------------------------------------+
9070 9083 | widget-area |
9071 9084 | +--------+---------------------------+ |
9072 9085 | | prompt | widget-subarea | |
9073 9086 | | | +--------+ +--------+ | |
9074 9087 | | | | widget | | widget | | |
9075 9088 | | | +--------+ +--------+ | |
9076 9089 | +--------+---------------------------+ |
9077 9090 +------------------------------------------+
9078 9091 */
9079 9092 page-break-inside: avoid;
9080 9093 /* Old browsers */
9081 9094 display: -webkit-box;
9082 9095 -webkit-box-orient: horizontal;
9083 9096 -webkit-box-align: stretch;
9084 9097 display: -moz-box;
9085 9098 -moz-box-orient: horizontal;
9086 9099 -moz-box-align: stretch;
9087 9100 display: box;
9088 9101 box-orient: horizontal;
9089 9102 box-align: stretch;
9090 9103 /* Modern browsers */
9091 9104 display: flex;
9092 9105 flex-direction: row;
9093 9106 align-items: stretch;
9094 9107 }
9095 9108 .widget-area .widget-subarea {
9096 9109 padding: 0.44em 0.4em 0.4em 1px;
9097 9110 margin-left: 6px;
9098 9111 box-sizing: border-box;
9099 9112 -moz-box-sizing: border-box;
9100 9113 -webkit-box-sizing: border-box;
9101 9114 /* Old browsers */
9102 9115 display: -webkit-box;
9103 9116 -webkit-box-orient: vertical;
9104 9117 -webkit-box-align: stretch;
9105 9118 display: -moz-box;
9106 9119 -moz-box-orient: vertical;
9107 9120 -moz-box-align: stretch;
9108 9121 display: box;
9109 9122 box-orient: vertical;
9110 9123 box-align: stretch;
9111 9124 /* Modern browsers */
9112 9125 display: flex;
9113 9126 flex-direction: column;
9114 9127 align-items: stretch;
9115 9128 /* Old browsers */
9116 9129 -webkit-box-flex: 2;
9117 9130 -moz-box-flex: 2;
9118 9131 box-flex: 2;
9119 9132 /* Modern browsers */
9120 9133 flex: 2;
9121 9134 /* Old browsers */
9122 9135 -webkit-box-align: start;
9123 9136 -moz-box-align: start;
9124 9137 box-align: start;
9125 9138 /* Modern browsers */
9126 9139 align-items: flex-start;
9127 9140 }
9128 9141 .widget-area.connection-problems .prompt:after {
9129 9142 content: "\f127";
9130 9143 font-family: 'FontAwesome';
9131 9144 color: #d9534f;
9132 9145 font-size: 14px;
9133 9146 top: 3px;
9134 9147 padding: 3px;
9135 9148 }
9136 9149 /* THE CLASSES BELOW CAN APPEAR ANYWHERE IN THE DOM (POSSIBLEY OUTSIDE OF
9137 9150 THE WIDGET AREA). */
9138 9151 .slide-track {
9139 9152 /* Slider Track */
9140 9153 border: 1px solid #CCCCCC;
9141 9154 background: #FFFFFF;
9142 9155 border-radius: 4px;
9143 9156 /* Round the corners of the slide track */
9144 9157 }
9145 9158 .widget-hslider {
9146 9159 /* Horizontal jQuery Slider
9147 9160
9148 9161 Both the horizontal and vertical versions of the slider are characterized
9149 9162 by a styled div that contains an invisible jQuery slide div which
9150 9163 contains a visible slider handle div. This is requred so we can control
9151 9164 how the slider is drawn and 'fix' the issue where the slide handle
9152 9165 doesn't stop at the end of the slide.
9153 9166
9154 9167 Both horizontal and vertical sliders have this div nesting:
9155 9168 +------------------------------------------+
9156 9169 | widget-(h/v)slider |
9157 9170 | +--------+---------------------------+ |
9158 9171 | | ui-slider | |
9159 9172 | | +------------------+ | |
9160 9173 | | | ui-slider-handle | | |
9161 9174 | | +------------------+ | |
9162 9175 | +--------+---------------------------+ |
9163 9176 +------------------------------------------+
9164 9177 */
9165 9178 /* Fix the padding of the slide track so the ui-slider is sized
9166 9179 correctly. */
9167 9180 padding-left: 8px;
9168 9181 padding-right: 5px;
9169 9182 overflow: visible;
9170 9183 /* Default size of the slider */
9171 9184 width: 350px;
9172 9185 height: 5px;
9173 9186 max-height: 5px;
9174 9187 margin-top: 13px;
9175 9188 margin-bottom: 10px;
9176 9189 /* Style the slider track */
9177 9190 /* Slider Track */
9178 9191 border: 1px solid #CCCCCC;
9179 9192 background: #FFFFFF;
9180 9193 border-radius: 4px;
9181 9194 /* Round the corners of the slide track */
9182 9195 /* Make the div a flex box (makes FF behave correctly). */
9183 9196 /* Old browsers */
9184 9197 display: -webkit-box;
9185 9198 -webkit-box-orient: horizontal;
9186 9199 -webkit-box-align: stretch;
9187 9200 display: -moz-box;
9188 9201 -moz-box-orient: horizontal;
9189 9202 -moz-box-align: stretch;
9190 9203 display: box;
9191 9204 box-orient: horizontal;
9192 9205 box-align: stretch;
9193 9206 /* Modern browsers */
9194 9207 display: flex;
9195 9208 flex-direction: row;
9196 9209 align-items: stretch;
9197 9210 }
9198 9211 .widget-hslider .ui-slider {
9199 9212 /* Inner, invisible slide div */
9200 9213 border: 0px !important;
9201 9214 background: none !important;
9202 9215 /* Old browsers */
9203 9216 display: -webkit-box;
9204 9217 -webkit-box-orient: horizontal;
9205 9218 -webkit-box-align: stretch;
9206 9219 display: -moz-box;
9207 9220 -moz-box-orient: horizontal;
9208 9221 -moz-box-align: stretch;
9209 9222 display: box;
9210 9223 box-orient: horizontal;
9211 9224 box-align: stretch;
9212 9225 /* Modern browsers */
9213 9226 display: flex;
9214 9227 flex-direction: row;
9215 9228 align-items: stretch;
9216 9229 /* Old browsers */
9217 9230 -webkit-box-flex: 1;
9218 9231 -moz-box-flex: 1;
9219 9232 box-flex: 1;
9220 9233 /* Modern browsers */
9221 9234 flex: 1;
9222 9235 }
9223 9236 .widget-hslider .ui-slider .ui-slider-handle {
9224 9237 width: 14px !important;
9225 9238 height: 28px !important;
9226 9239 margin-top: -8px !important;
9227 9240 }
9228 9241 .widget-hslider .ui-slider .ui-slider-range {
9229 9242 height: 12px !important;
9230 9243 margin-top: -4px !important;
9231 9244 }
9232 9245 .widget-vslider {
9233 9246 /* Vertical jQuery Slider */
9234 9247 /* Fix the padding of the slide track so the ui-slider is sized
9235 9248 correctly. */
9236 9249 padding-bottom: 8px;
9237 9250 overflow: visible;
9238 9251 /* Default size of the slider */
9239 9252 width: 5px;
9240 9253 max-width: 5px;
9241 9254 height: 250px;
9242 9255 margin-left: 12px;
9243 9256 /* Style the slider track */
9244 9257 /* Slider Track */
9245 9258 border: 1px solid #CCCCCC;
9246 9259 background: #FFFFFF;
9247 9260 border-radius: 4px;
9248 9261 /* Round the corners of the slide track */
9249 9262 /* Make the div a flex box (makes FF behave correctly). */
9250 9263 /* Old browsers */
9251 9264 display: -webkit-box;
9252 9265 -webkit-box-orient: vertical;
9253 9266 -webkit-box-align: stretch;
9254 9267 display: -moz-box;
9255 9268 -moz-box-orient: vertical;
9256 9269 -moz-box-align: stretch;
9257 9270 display: box;
9258 9271 box-orient: vertical;
9259 9272 box-align: stretch;
9260 9273 /* Modern browsers */
9261 9274 display: flex;
9262 9275 flex-direction: column;
9263 9276 align-items: stretch;
9264 9277 }
9265 9278 .widget-vslider .ui-slider {
9266 9279 /* Inner, invisible slide div */
9267 9280 border: 0px !important;
9268 9281 background: none !important;
9269 9282 margin-left: -4px;
9270 9283 margin-top: 5px;
9271 9284 /* Old browsers */
9272 9285 display: -webkit-box;
9273 9286 -webkit-box-orient: vertical;
9274 9287 -webkit-box-align: stretch;
9275 9288 display: -moz-box;
9276 9289 -moz-box-orient: vertical;
9277 9290 -moz-box-align: stretch;
9278 9291 display: box;
9279 9292 box-orient: vertical;
9280 9293 box-align: stretch;
9281 9294 /* Modern browsers */
9282 9295 display: flex;
9283 9296 flex-direction: column;
9284 9297 align-items: stretch;
9285 9298 /* Old browsers */
9286 9299 -webkit-box-flex: 1;
9287 9300 -moz-box-flex: 1;
9288 9301 box-flex: 1;
9289 9302 /* Modern browsers */
9290 9303 flex: 1;
9291 9304 }
9292 9305 .widget-vslider .ui-slider .ui-slider-handle {
9293 9306 width: 28px !important;
9294 9307 height: 14px !important;
9295 9308 margin-left: -9px;
9296 9309 }
9297 9310 .widget-vslider .ui-slider .ui-slider-range {
9298 9311 width: 12px !important;
9299 9312 margin-left: -1px !important;
9300 9313 }
9301 9314 .widget-text {
9302 9315 /* String Textbox - used for TextBoxView and TextAreaView */
9303 9316 width: 350px;
9304 9317 margin: 0px;
9305 9318 }
9306 9319 .widget-listbox {
9307 9320 /* Listbox */
9308 9321 width: 350px;
9309 9322 margin-bottom: 0px;
9310 9323 }
9311 9324 .widget-numeric-text {
9312 9325 /* Single Line Textbox - used for IntTextView and FloatTextView */
9313 9326 width: 150px;
9314 9327 margin: 0px;
9315 9328 }
9316 9329 .widget-progress {
9317 9330 /* Progress Bar */
9318 9331 margin-top: 6px;
9319 9332 width: 350px;
9320 9333 }
9321 9334 .widget-progress .progress-bar {
9322 9335 /* Disable progress bar animation */
9323 9336 -webkit-transition: none;
9324 9337 -moz-transition: none;
9325 9338 -ms-transition: none;
9326 9339 -o-transition: none;
9327 9340 transition: none;
9328 9341 }
9329 9342 .widget-combo-btn {
9330 9343 /* ComboBox Main Button */
9331 9344 min-width: 125px;
9332 9345 }
9333 9346 .widget_item .dropdown-menu li a {
9334 9347 color: inherit;
9335 9348 }
9336 9349 .widget-hbox {
9337 9350 /* Horizontal widgets */
9338 9351 /* Old browsers */
9339 9352 display: -webkit-box;
9340 9353 -webkit-box-orient: horizontal;
9341 9354 -webkit-box-align: stretch;
9342 9355 display: -moz-box;
9343 9356 -moz-box-orient: horizontal;
9344 9357 -moz-box-align: stretch;
9345 9358 display: box;
9346 9359 box-orient: horizontal;
9347 9360 box-align: stretch;
9348 9361 /* Modern browsers */
9349 9362 display: flex;
9350 9363 flex-direction: row;
9351 9364 align-items: stretch;
9352 9365 }
9353 9366 .widget-hbox input[type="checkbox"] {
9354 9367 margin-top: 9px;
9355 9368 margin-bottom: 10px;
9356 9369 }
9357 9370 .widget-hbox .widget-label {
9358 9371 /* Horizontal Label */
9359 9372 min-width: 10ex;
9360 9373 padding-right: 8px;
9361 9374 padding-top: 5px;
9362 9375 text-align: right;
9363 9376 vertical-align: text-top;
9364 9377 }
9365 9378 .widget-hbox .widget-readout {
9366 9379 padding-left: 8px;
9367 9380 padding-top: 5px;
9368 9381 text-align: left;
9369 9382 vertical-align: text-top;
9370 9383 }
9371 9384 .widget-vbox {
9372 9385 /* Vertical widgets */
9373 9386 /* Old browsers */
9374 9387 display: -webkit-box;
9375 9388 -webkit-box-orient: vertical;
9376 9389 -webkit-box-align: stretch;
9377 9390 display: -moz-box;
9378 9391 -moz-box-orient: vertical;
9379 9392 -moz-box-align: stretch;
9380 9393 display: box;
9381 9394 box-orient: vertical;
9382 9395 box-align: stretch;
9383 9396 /* Modern browsers */
9384 9397 display: flex;
9385 9398 flex-direction: column;
9386 9399 align-items: stretch;
9387 9400 }
9388 9401 .widget-vbox .widget-label {
9389 9402 /* Vertical Label */
9390 9403 padding-bottom: 5px;
9391 9404 text-align: center;
9392 9405 vertical-align: text-bottom;
9393 9406 }
9394 9407 .widget-vbox .widget-readout {
9395 9408 /* Vertical Label */
9396 9409 padding-top: 5px;
9397 9410 text-align: center;
9398 9411 vertical-align: text-top;
9399 9412 }
9400 9413 .widget-modal {
9401 9414 /* Box - ModalView */
9402 9415 overflow: hidden;
9403 9416 position: absolute !important;
9404 9417 top: 0px;
9405 9418 left: 0px;
9406 9419 margin-left: 0px !important;
9407 9420 }
9408 9421 .widget-modal-body {
9409 9422 /* Box - ModalView Body */
9410 9423 max-height: none !important;
9411 9424 }
9412 9425 .widget-box {
9413 9426 /* Box */
9414 9427 box-sizing: border-box;
9415 9428 -moz-box-sizing: border-box;
9416 9429 -webkit-box-sizing: border-box;
9417 9430 /* Old browsers */
9418 9431 -webkit-box-align: start;
9419 9432 -moz-box-align: start;
9420 9433 box-align: start;
9421 9434 /* Modern browsers */
9422 9435 align-items: flex-start;
9423 9436 }
9424 9437 .widget-radio-box {
9425 9438 /* Contains RadioButtonsWidget */
9426 9439 /* Old browsers */
9427 9440 display: -webkit-box;
9428 9441 -webkit-box-orient: vertical;
9429 9442 -webkit-box-align: stretch;
9430 9443 display: -moz-box;
9431 9444 -moz-box-orient: vertical;
9432 9445 -moz-box-align: stretch;
9433 9446 display: box;
9434 9447 box-orient: vertical;
9435 9448 box-align: stretch;
9436 9449 /* Modern browsers */
9437 9450 display: flex;
9438 9451 flex-direction: column;
9439 9452 align-items: stretch;
9440 9453 box-sizing: border-box;
9441 9454 -moz-box-sizing: border-box;
9442 9455 -webkit-box-sizing: border-box;
9443 9456 padding-top: 4px;
9444 9457 }
9445 9458 .widget-radio-box label {
9446 9459 margin-top: 0px;
9447 9460 }
9448 9461 .docked-widget-modal {
9449 9462 /* Horizontal Label */
9450 9463 overflow: hidden;
9451 9464 position: relative !important;
9452 9465 top: 0px !important;
9453 9466 left: 0px !important;
9454 9467 margin-left: 0px !important;
9455 9468 }
9456 9469 /*!
9457 9470 *
9458 9471 * IPython notebook webapp
9459 9472 *
9460 9473 */
9461 9474 body {
9462 9475 background-color: #ffffff;
9463 9476 }
9464 9477 @media (max-width: 767px) {
9465 9478 body.notebook_app {
9466 9479 padding-left: 0px;
9467 9480 padding-right: 0px;
9468 9481 }
9469 9482 }
9470 9483 #ipython-main-app {
9471 9484 box-sizing: border-box;
9472 9485 -moz-box-sizing: border-box;
9473 9486 -webkit-box-sizing: border-box;
9474 9487 }
9475 9488 div#notebook_panel {
9476 9489 margin: 0px 0px 0px 0px;
9477 9490 padding: 0px;
9478 9491 box-sizing: border-box;
9479 9492 -moz-box-sizing: border-box;
9480 9493 -webkit-box-sizing: border-box;
9481 9494 }
9482 9495 div#notebook {
9483 9496 font-size: 14px;
9484 9497 line-height: 20px;
9485 9498 overflow-y: hidden;
9486 9499 overflow-x: auto;
9487 9500 width: 100%;
9488 9501 /* This spaces the cell away from the edge of the notebook area */
9489 9502 padding: 2em 0 2em 0;
9490 9503 margin: 0px;
9491 9504 outline: none;
9492 9505 box-sizing: border-box;
9493 9506 -moz-box-sizing: border-box;
9494 9507 -webkit-box-sizing: border-box;
9495 9508 }
9496 9509 div.ui-widget-content {
9497 9510 border: 1px solid #ababab;
9498 9511 outline: none;
9499 9512 }
9500 9513 pre.dialog {
9501 9514 background-color: #f7f7f7;
9502 9515 border: 1px solid #ddd;
9503 9516 border-radius: 4px;
9504 9517 padding: 0.4em;
9505 9518 padding-left: 2em;
9506 9519 }
9507 9520 p.dialog {
9508 9521 padding: 0.2em;
9509 9522 }
9510 9523 /* Word-wrap output correctly. This is the CSS3 spelling, though Firefox seems
9511 9524 to not honor it correctly. Webkit browsers (Chrome, rekonq, Safari) do.
9512 9525 */
9513 9526 pre,
9514 9527 code,
9515 9528 kbd,
9516 9529 samp {
9517 9530 white-space: pre-wrap;
9518 9531 }
9519 9532 #fonttest {
9520 9533 font-family: monospace;
9521 9534 }
9522 9535 p {
9523 9536 margin-bottom: 0;
9524 9537 }
9525 9538 .end_space {
9526 9539 height: 200px;
9527 9540 }
9528 9541 .lower-header-bar {
9529 9542 width: 100%;
9530 9543 height: 0px;
9531 9544 border-bottom: 1px solid #e7e7e7;
9532 9545 margin-bottom: -1px;
9533 9546 }
9534 9547 .notebook_app #header {
9535 9548 -webkit-box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9536 9549 box-shadow: 1px 4px 9px -6px rgba(0, 0, 0, 0.25);
9537 9550 }
9538 9551 /* CSS for the cell toolbar */
9539 9552 .celltoolbar {
9540 9553 border: thin solid #CFCFCF;
9541 9554 border-bottom: none;
9542 9555 background: #EEE;
9543 9556 border-radius: 4px 4px 0px 0px;
9544 9557 width: 100%;
9545 9558 height: 29px;
9546 9559 padding-right: 4px;
9547 9560 /* Old browsers */
9548 9561 display: -webkit-box;
9549 9562 -webkit-box-orient: horizontal;
9550 9563 -webkit-box-align: stretch;
9551 9564 display: -moz-box;
9552 9565 -moz-box-orient: horizontal;
9553 9566 -moz-box-align: stretch;
9554 9567 display: box;
9555 9568 box-orient: horizontal;
9556 9569 box-align: stretch;
9557 9570 /* Modern browsers */
9558 9571 display: flex;
9559 9572 flex-direction: row;
9560 9573 align-items: stretch;
9561 9574 /* Old browsers */
9562 9575 -webkit-box-pack: end;
9563 9576 -moz-box-pack: end;
9564 9577 box-pack: end;
9565 9578 /* Modern browsers */
9566 9579 justify-content: flex-end;
9567 9580 }
9568 9581 .ctb_hideshow {
9569 9582 display: none;
9570 9583 vertical-align: bottom;
9571 9584 }
9572 9585 /* ctb_show is added to the ctb_hideshow div to show the cell toolbar.
9573 9586 Cell toolbars are only shown when the ctb_global_show class is also set.
9574 9587 */
9575 9588 .ctb_global_show .ctb_show.ctb_hideshow {
9576 9589 display: block;
9577 9590 }
9578 9591 .ctb_global_show .ctb_show + .input_area,
9579 9592 .ctb_global_show .ctb_show + div.text_cell_input {
9580 9593 border-top-right-radius: 0px;
9581 9594 border-top-left-radius: 0px;
9582 9595 }
9583 9596 .celltoolbar {
9584 9597 font-size: 87%;
9585 9598 padding-top: 3px;
9586 9599 }
9587 9600 .celltoolbar select {
9588 9601 display: block;
9589 9602 width: 100%;
9590 9603 height: 32px;
9591 9604 padding: 6px 12px;
9592 9605 font-size: 13px;
9593 9606 line-height: 1.42857143;
9594 9607 color: #555555;
9595 9608 background-color: #ffffff;
9596 9609 background-image: none;
9597 9610 border: 1px solid #cccccc;
9598 9611 border-radius: 4px;
9599 9612 -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9600 9613 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
9601 9614 -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9602 9615 transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
9603 9616 height: 30px;
9604 9617 padding: 5px 10px;
9605 9618 font-size: 12px;
9606 9619 line-height: 1.5;
9607 9620 border-radius: 3px;
9608 9621 width: inherit;
9609 9622 font-size: 87%;
9610 9623 height: 22px;
9611 9624 display: inline-block;
9612 9625 }
9613 9626 .celltoolbar select:focus {
9614 9627 border-color: #66afe9;
9615 9628 outline: 0;
9616 9629 -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9617 9630 box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
9618 9631 }
9619 9632 .celltoolbar select::-moz-placeholder {
9620 9633 color: #999999;
9621 9634 opacity: 1;
9622 9635 }
9623 9636 .celltoolbar select:-ms-input-placeholder {
9624 9637 color: #999999;
9625 9638 }
9626 9639 .celltoolbar select::-webkit-input-placeholder {
9627 9640 color: #999999;
9628 9641 }
9629 9642 .celltoolbar select[disabled],
9630 9643 .celltoolbar select[readonly],
9631 9644 fieldset[disabled] .celltoolbar select {
9632 9645 cursor: not-allowed;
9633 9646 background-color: #eeeeee;
9634 9647 opacity: 1;
9635 9648 }
9636 9649 textarea.celltoolbar select {
9637 9650 height: auto;
9638 9651 }
9639 9652 select.celltoolbar select {
9640 9653 height: 30px;
9641 9654 line-height: 30px;
9642 9655 }
9643 9656 textarea.celltoolbar select,
9644 9657 select[multiple].celltoolbar select {
9645 9658 height: auto;
9646 9659 }
9647 9660 .celltoolbar label {
9648 9661 margin-left: 5px;
9649 9662 margin-right: 5px;
9650 9663 }
9651 9664 .completions {
9652 9665 position: absolute;
9653 9666 z-index: 10;
9654 9667 overflow: hidden;
9655 9668 border: 1px solid #ababab;
9656 9669 border-radius: 4px;
9657 9670 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
9658 9671 box-shadow: 0px 6px 10px -1px #adadad;
9659 9672 }
9660 9673 .completions select {
9661 9674 background: white;
9662 9675 outline: none;
9663 9676 border: none;
9664 9677 padding: 0px;
9665 9678 margin: 0px;
9666 9679 overflow: auto;
9667 9680 font-family: monospace;
9668 9681 font-size: 110%;
9669 9682 color: #000000;
9670 9683 width: auto;
9671 9684 }
9672 9685 .completions select option.context {
9673 9686 color: #3071a9;
9674 9687 }
9675 9688 #kernel_logo_widget {
9676 9689 margin-right: 1em;
9677 9690 float: right !important;
9678 9691 float: right;
9679 9692 }
9680 9693 #kernel_logo_widget .current_kernel_logo {
9681 9694 display: none;
9682 9695 margin-top: -1px;
9683 9696 margin-bottom: -1px;
9684 9697 width: 32px;
9685 9698 height: 32px;
9686 9699 }
9687 9700 #menubar {
9688 9701 box-sizing: border-box;
9689 9702 -moz-box-sizing: border-box;
9690 9703 -webkit-box-sizing: border-box;
9691 9704 }
9692 9705 #menubar .navbar {
9693 9706 border-top: 1px;
9694 9707 border-radius: 0px 0px 4px 4px;
9695 9708 margin-bottom: 6px;
9696 9709 }
9697 9710 #menubar .navbar-toggle {
9698 9711 float: left;
9699 9712 }
9700 9713 #menubar .navbar-collapse {
9701 9714 clear: left;
9702 9715 }
9703 9716 .nav-wrapper {
9704 9717 border-bottom: 1px solid #e7e7e7;
9705 9718 }
9706 9719 i.menu-icon {
9707 9720 padding-top: 4px;
9708 9721 }
9709 9722 ul#help_menu li a {
9710 9723 overflow: hidden;
9711 9724 padding-right: 2.2em;
9712 9725 }
9713 9726 ul#help_menu li a i {
9714 9727 margin-right: -1.2em;
9715 9728 }
9716 9729 .dropdown-submenu {
9717 9730 position: relative;
9718 9731 }
9719 9732 .dropdown-submenu > .dropdown-menu {
9720 9733 top: 0;
9721 9734 left: 100%;
9722 9735 margin-top: -6px;
9723 9736 margin-left: -1px;
9724 9737 -webkit-border-radius: 0 6px 6px 6px;
9725 9738 -moz-border-radius: 0 6px 6px 6px;
9726 9739 border-radius: 0 6px 6px 6px;
9727 9740 }
9728 9741 .dropdown-submenu:hover > .dropdown-menu {
9729 9742 display: block;
9730 9743 }
9731 9744 .dropdown-submenu > a:after {
9732 9745 display: block;
9733 9746 content: " ";
9734 9747 float: right;
9735 9748 width: 0;
9736 9749 height: 0;
9737 9750 border-color: transparent;
9738 9751 border-style: solid;
9739 9752 border-width: 5px 0 5px 5px;
9740 9753 border-left-color: #cccccc;
9741 9754 margin-top: 5px;
9742 9755 margin-right: -10px;
9743 9756 }
9744 9757 .dropdown-submenu:hover > a:after {
9745 9758 border-left-color: #ffffff;
9746 9759 }
9747 9760 .dropdown-submenu.pull-left {
9748 9761 float: none;
9749 9762 }
9750 9763 .dropdown-submenu.pull-left > .dropdown-menu {
9751 9764 left: -100%;
9752 9765 margin-left: 10px;
9753 9766 -webkit-border-radius: 6px 0 6px 6px;
9754 9767 -moz-border-radius: 6px 0 6px 6px;
9755 9768 border-radius: 6px 0 6px 6px;
9756 9769 }
9757 9770 #notification_area {
9758 9771 float: right !important;
9759 9772 float: right;
9760 9773 z-index: 10;
9761 9774 }
9762 9775 .indicator_area {
9763 9776 color: #777777;
9764 9777 margin-left: 5px;
9765 9778 margin-right: 5px;
9766 9779 width: 11px;
9767 9780 z-index: 10;
9768 9781 text-align: center;
9769 9782 }
9770 9783 #kernel_indicator {
9771 9784 float: right !important;
9772 9785 float: right;
9773 9786 color: #777777;
9774 9787 margin-left: 5px;
9775 9788 margin-right: 5px;
9776 9789 width: 11px;
9777 9790 z-index: 10;
9778 9791 text-align: center;
9779 9792 width: auto;
9780 9793 border-left: 1px solid;
9781 9794 }
9782 9795 #kernel_indicator .kernel_indicator_name {
9783 9796 padding-left: 5px;
9784 9797 padding-right: 5px;
9785 9798 }
9786 9799 #modal_indicator {
9787 9800 float: right !important;
9788 9801 float: right;
9789 9802 color: #777777;
9790 9803 margin-left: 5px;
9791 9804 margin-right: 5px;
9792 9805 width: 11px;
9793 9806 z-index: 10;
9794 9807 text-align: center;
9795 9808 }
9796 9809 .edit_mode_icon:before {
9797 9810 display: inline-block;
9798 9811 font: normal normal normal 14px/1 FontAwesome;
9799 9812 font-size: inherit;
9800 9813 text-rendering: auto;
9801 9814 -webkit-font-smoothing: antialiased;
9802 9815 -moz-osx-font-smoothing: grayscale;
9803 9816 content: "\f040";
9804 9817 }
9805 9818 .edit_mode_icon:before.pull-left {
9806 9819 margin-right: .3em;
9807 9820 }
9808 9821 .edit_mode_icon:before.pull-right {
9809 9822 margin-left: .3em;
9810 9823 }
9811 9824 .command_mode_icon:before {
9812 9825 display: inline-block;
9813 9826 font: normal normal normal 14px/1 FontAwesome;
9814 9827 font-size: inherit;
9815 9828 text-rendering: auto;
9816 9829 -webkit-font-smoothing: antialiased;
9817 9830 -moz-osx-font-smoothing: grayscale;
9818 9831 content: ' ';
9819 9832 }
9820 9833 .command_mode_icon:before.pull-left {
9821 9834 margin-right: .3em;
9822 9835 }
9823 9836 .command_mode_icon:before.pull-right {
9824 9837 margin-left: .3em;
9825 9838 }
9826 9839 .kernel_idle_icon:before {
9827 9840 display: inline-block;
9828 9841 font: normal normal normal 14px/1 FontAwesome;
9829 9842 font-size: inherit;
9830 9843 text-rendering: auto;
9831 9844 -webkit-font-smoothing: antialiased;
9832 9845 -moz-osx-font-smoothing: grayscale;
9833 9846 content: "\f10c";
9834 9847 }
9835 9848 .kernel_idle_icon:before.pull-left {
9836 9849 margin-right: .3em;
9837 9850 }
9838 9851 .kernel_idle_icon:before.pull-right {
9839 9852 margin-left: .3em;
9840 9853 }
9841 9854 .kernel_busy_icon:before {
9842 9855 display: inline-block;
9843 9856 font: normal normal normal 14px/1 FontAwesome;
9844 9857 font-size: inherit;
9845 9858 text-rendering: auto;
9846 9859 -webkit-font-smoothing: antialiased;
9847 9860 -moz-osx-font-smoothing: grayscale;
9848 9861 content: "\f111";
9849 9862 }
9850 9863 .kernel_busy_icon:before.pull-left {
9851 9864 margin-right: .3em;
9852 9865 }
9853 9866 .kernel_busy_icon:before.pull-right {
9854 9867 margin-left: .3em;
9855 9868 }
9856 9869 .kernel_dead_icon:before {
9857 9870 display: inline-block;
9858 9871 font: normal normal normal 14px/1 FontAwesome;
9859 9872 font-size: inherit;
9860 9873 text-rendering: auto;
9861 9874 -webkit-font-smoothing: antialiased;
9862 9875 -moz-osx-font-smoothing: grayscale;
9863 9876 content: "\f1e2";
9864 9877 }
9865 9878 .kernel_dead_icon:before.pull-left {
9866 9879 margin-right: .3em;
9867 9880 }
9868 9881 .kernel_dead_icon:before.pull-right {
9869 9882 margin-left: .3em;
9870 9883 }
9871 9884 .kernel_disconnected_icon:before {
9872 9885 display: inline-block;
9873 9886 font: normal normal normal 14px/1 FontAwesome;
9874 9887 font-size: inherit;
9875 9888 text-rendering: auto;
9876 9889 -webkit-font-smoothing: antialiased;
9877 9890 -moz-osx-font-smoothing: grayscale;
9878 9891 content: "\f127";
9879 9892 }
9880 9893 .kernel_disconnected_icon:before.pull-left {
9881 9894 margin-right: .3em;
9882 9895 }
9883 9896 .kernel_disconnected_icon:before.pull-right {
9884 9897 margin-left: .3em;
9885 9898 }
9886 9899 .notification_widget {
9887 9900 color: #777777;
9888 9901 z-index: 10;
9889 9902 background: rgba(240, 240, 240, 0.5);
9890 9903 color: #333333;
9891 9904 background-color: #ffffff;
9892 9905 border-color: #cccccc;
9893 9906 }
9894 9907 .notification_widget:hover,
9895 9908 .notification_widget:focus,
9896 9909 .notification_widget:active,
9897 9910 .notification_widget.active,
9898 9911 .open .dropdown-toggle.notification_widget {
9899 9912 color: #333333;
9900 9913 background-color: #ebebeb;
9901 9914 border-color: #adadad;
9902 9915 }
9903 9916 .notification_widget:active,
9904 9917 .notification_widget.active,
9905 9918 .open .dropdown-toggle.notification_widget {
9906 9919 background-image: none;
9907 9920 }
9908 9921 .notification_widget.disabled,
9909 9922 .notification_widget[disabled],
9910 9923 fieldset[disabled] .notification_widget,
9911 9924 .notification_widget.disabled:hover,
9912 9925 .notification_widget[disabled]:hover,
9913 9926 fieldset[disabled] .notification_widget:hover,
9914 9927 .notification_widget.disabled:focus,
9915 9928 .notification_widget[disabled]:focus,
9916 9929 fieldset[disabled] .notification_widget:focus,
9917 9930 .notification_widget.disabled:active,
9918 9931 .notification_widget[disabled]:active,
9919 9932 fieldset[disabled] .notification_widget:active,
9920 9933 .notification_widget.disabled.active,
9921 9934 .notification_widget[disabled].active,
9922 9935 fieldset[disabled] .notification_widget.active {
9923 9936 background-color: #ffffff;
9924 9937 border-color: #cccccc;
9925 9938 }
9926 9939 .notification_widget .badge {
9927 9940 color: #ffffff;
9928 9941 background-color: #333333;
9929 9942 }
9930 9943 .notification_widget.warning {
9931 9944 color: #ffffff;
9932 9945 background-color: #f0ad4e;
9933 9946 border-color: #eea236;
9934 9947 }
9935 9948 .notification_widget.warning:hover,
9936 9949 .notification_widget.warning:focus,
9937 9950 .notification_widget.warning:active,
9938 9951 .notification_widget.warning.active,
9939 9952 .open .dropdown-toggle.notification_widget.warning {
9940 9953 color: #ffffff;
9941 9954 background-color: #ed9c28;
9942 9955 border-color: #d58512;
9943 9956 }
9944 9957 .notification_widget.warning:active,
9945 9958 .notification_widget.warning.active,
9946 9959 .open .dropdown-toggle.notification_widget.warning {
9947 9960 background-image: none;
9948 9961 }
9949 9962 .notification_widget.warning.disabled,
9950 9963 .notification_widget.warning[disabled],
9951 9964 fieldset[disabled] .notification_widget.warning,
9952 9965 .notification_widget.warning.disabled:hover,
9953 9966 .notification_widget.warning[disabled]:hover,
9954 9967 fieldset[disabled] .notification_widget.warning:hover,
9955 9968 .notification_widget.warning.disabled:focus,
9956 9969 .notification_widget.warning[disabled]:focus,
9957 9970 fieldset[disabled] .notification_widget.warning:focus,
9958 9971 .notification_widget.warning.disabled:active,
9959 9972 .notification_widget.warning[disabled]:active,
9960 9973 fieldset[disabled] .notification_widget.warning:active,
9961 9974 .notification_widget.warning.disabled.active,
9962 9975 .notification_widget.warning[disabled].active,
9963 9976 fieldset[disabled] .notification_widget.warning.active {
9964 9977 background-color: #f0ad4e;
9965 9978 border-color: #eea236;
9966 9979 }
9967 9980 .notification_widget.warning .badge {
9968 9981 color: #f0ad4e;
9969 9982 background-color: #ffffff;
9970 9983 }
9971 9984 .notification_widget.success {
9972 9985 color: #ffffff;
9973 9986 background-color: #5cb85c;
9974 9987 border-color: #4cae4c;
9975 9988 }
9976 9989 .notification_widget.success:hover,
9977 9990 .notification_widget.success:focus,
9978 9991 .notification_widget.success:active,
9979 9992 .notification_widget.success.active,
9980 9993 .open .dropdown-toggle.notification_widget.success {
9981 9994 color: #ffffff;
9982 9995 background-color: #47a447;
9983 9996 border-color: #398439;
9984 9997 }
9985 9998 .notification_widget.success:active,
9986 9999 .notification_widget.success.active,
9987 10000 .open .dropdown-toggle.notification_widget.success {
9988 10001 background-image: none;
9989 10002 }
9990 10003 .notification_widget.success.disabled,
9991 10004 .notification_widget.success[disabled],
9992 10005 fieldset[disabled] .notification_widget.success,
9993 10006 .notification_widget.success.disabled:hover,
9994 10007 .notification_widget.success[disabled]:hover,
9995 10008 fieldset[disabled] .notification_widget.success:hover,
9996 10009 .notification_widget.success.disabled:focus,
9997 10010 .notification_widget.success[disabled]:focus,
9998 10011 fieldset[disabled] .notification_widget.success:focus,
9999 10012 .notification_widget.success.disabled:active,
10000 10013 .notification_widget.success[disabled]:active,
10001 10014 fieldset[disabled] .notification_widget.success:active,
10002 10015 .notification_widget.success.disabled.active,
10003 10016 .notification_widget.success[disabled].active,
10004 10017 fieldset[disabled] .notification_widget.success.active {
10005 10018 background-color: #5cb85c;
10006 10019 border-color: #4cae4c;
10007 10020 }
10008 10021 .notification_widget.success .badge {
10009 10022 color: #5cb85c;
10010 10023 background-color: #ffffff;
10011 10024 }
10012 10025 .notification_widget.info {
10013 10026 color: #ffffff;
10014 10027 background-color: #5bc0de;
10015 10028 border-color: #46b8da;
10016 10029 }
10017 10030 .notification_widget.info:hover,
10018 10031 .notification_widget.info:focus,
10019 10032 .notification_widget.info:active,
10020 10033 .notification_widget.info.active,
10021 10034 .open .dropdown-toggle.notification_widget.info {
10022 10035 color: #ffffff;
10023 10036 background-color: #39b3d7;
10024 10037 border-color: #269abc;
10025 10038 }
10026 10039 .notification_widget.info:active,
10027 10040 .notification_widget.info.active,
10028 10041 .open .dropdown-toggle.notification_widget.info {
10029 10042 background-image: none;
10030 10043 }
10031 10044 .notification_widget.info.disabled,
10032 10045 .notification_widget.info[disabled],
10033 10046 fieldset[disabled] .notification_widget.info,
10034 10047 .notification_widget.info.disabled:hover,
10035 10048 .notification_widget.info[disabled]:hover,
10036 10049 fieldset[disabled] .notification_widget.info:hover,
10037 10050 .notification_widget.info.disabled:focus,
10038 10051 .notification_widget.info[disabled]:focus,
10039 10052 fieldset[disabled] .notification_widget.info:focus,
10040 10053 .notification_widget.info.disabled:active,
10041 10054 .notification_widget.info[disabled]:active,
10042 10055 fieldset[disabled] .notification_widget.info:active,
10043 10056 .notification_widget.info.disabled.active,
10044 10057 .notification_widget.info[disabled].active,
10045 10058 fieldset[disabled] .notification_widget.info.active {
10046 10059 background-color: #5bc0de;
10047 10060 border-color: #46b8da;
10048 10061 }
10049 10062 .notification_widget.info .badge {
10050 10063 color: #5bc0de;
10051 10064 background-color: #ffffff;
10052 10065 }
10053 10066 .notification_widget.danger {
10054 10067 color: #ffffff;
10055 10068 background-color: #d9534f;
10056 10069 border-color: #d43f3a;
10057 10070 }
10058 10071 .notification_widget.danger:hover,
10059 10072 .notification_widget.danger:focus,
10060 10073 .notification_widget.danger:active,
10061 10074 .notification_widget.danger.active,
10062 10075 .open .dropdown-toggle.notification_widget.danger {
10063 10076 color: #ffffff;
10064 10077 background-color: #d2322d;
10065 10078 border-color: #ac2925;
10066 10079 }
10067 10080 .notification_widget.danger:active,
10068 10081 .notification_widget.danger.active,
10069 10082 .open .dropdown-toggle.notification_widget.danger {
10070 10083 background-image: none;
10071 10084 }
10072 10085 .notification_widget.danger.disabled,
10073 10086 .notification_widget.danger[disabled],
10074 10087 fieldset[disabled] .notification_widget.danger,
10075 10088 .notification_widget.danger.disabled:hover,
10076 10089 .notification_widget.danger[disabled]:hover,
10077 10090 fieldset[disabled] .notification_widget.danger:hover,
10078 10091 .notification_widget.danger.disabled:focus,
10079 10092 .notification_widget.danger[disabled]:focus,
10080 10093 fieldset[disabled] .notification_widget.danger:focus,
10081 10094 .notification_widget.danger.disabled:active,
10082 10095 .notification_widget.danger[disabled]:active,
10083 10096 fieldset[disabled] .notification_widget.danger:active,
10084 10097 .notification_widget.danger.disabled.active,
10085 10098 .notification_widget.danger[disabled].active,
10086 10099 fieldset[disabled] .notification_widget.danger.active {
10087 10100 background-color: #d9534f;
10088 10101 border-color: #d43f3a;
10089 10102 }
10090 10103 .notification_widget.danger .badge {
10091 10104 color: #d9534f;
10092 10105 background-color: #ffffff;
10093 10106 }
10094 10107 div#pager {
10095 10108 background-color: #ffffff;
10096 10109 font-size: 14px;
10097 10110 line-height: 20px;
10098 10111 overflow: hidden;
10099 10112 display: none;
10100 10113 position: fixed;
10101 10114 bottom: 0px;
10102 10115 width: 100%;
10103 10116 max-height: 50%;
10104 10117 padding-top: 8px;
10105 10118 /* Display over codemirror */
10106 10119 z-index: 100;
10107 10120 /* Hack which prevents jquery ui resizable from changing top. */
10108 10121 top: inherit !important;
10109 10122 }
10110 10123 div#pager pre {
10111 10124 line-height: 1.21429em;
10112 10125 color: #000000;
10113 10126 background-color: #f7f7f7;
10114 10127 padding: 0.4em;
10115 10128 }
10116 10129 div#pager #pager-button-area {
10117 10130 position: absolute;
10118 10131 top: 8px;
10119 10132 right: 20px;
10120 10133 }
10121 10134 div#pager #pager-contents {
10122 10135 position: relative;
10123 10136 overflow: auto;
10124 10137 width: 100%;
10125 10138 height: 100%;
10126 10139 }
10127 10140 div#pager #pager-contents #pager-container {
10128 10141 position: relative;
10129 10142 padding: 15px 0px;
10130 10143 box-sizing: border-box;
10131 10144 -moz-box-sizing: border-box;
10132 10145 -webkit-box-sizing: border-box;
10133 10146 }
10134 10147 div#pager .ui-resizable-handle {
10135 10148 top: 0px;
10136 10149 height: 8px;
10137 10150 background: #f7f7f7;
10138 10151 border-top: 1px solid #cfcfcf;
10139 10152 border-bottom: 1px solid #cfcfcf;
10140 10153 /* Similar to the notebook header's shadow, but not
10141 10154 exactly the same. The settings had to be adjusted
10142 10155 to get the shadow to show. */
10143 10156 -webkit-box-shadow: 1px 4px 9px -3px rgba(0, 0, 0, 0.15);
10144 10157 box-shadow: 1px 4px 9px -3px rgba(0, 0, 0, 0.15);
10145 10158 /* This injects handle bars (a short, wide = symbol) for
10146 10159 the resize handle. */
10147 10160 }
10148 10161 div#pager .ui-resizable-handle::after {
10149 10162 content: '';
10150 10163 top: 2px;
10151 10164 left: 50%;
10152 10165 height: 3px;
10153 10166 width: 30px;
10154 10167 margin-left: -15px;
10155 10168 position: absolute;
10156 10169 border-top: 1px solid #cfcfcf;
10157 10170 }
10158 10171 .quickhelp {
10159 10172 /* Old browsers */
10160 10173 display: -webkit-box;
10161 10174 -webkit-box-orient: horizontal;
10162 10175 -webkit-box-align: stretch;
10163 10176 display: -moz-box;
10164 10177 -moz-box-orient: horizontal;
10165 10178 -moz-box-align: stretch;
10166 10179 display: box;
10167 10180 box-orient: horizontal;
10168 10181 box-align: stretch;
10169 10182 /* Modern browsers */
10170 10183 display: flex;
10171 10184 flex-direction: row;
10172 10185 align-items: stretch;
10173 10186 }
10174 10187 .shortcut_key {
10175 10188 display: inline-block;
10176 10189 width: 20ex;
10177 10190 text-align: right;
10178 10191 font-family: monospace;
10179 10192 }
10180 10193 .shortcut_descr {
10181 10194 display: inline-block;
10182 10195 /* Old browsers */
10183 10196 -webkit-box-flex: 1;
10184 10197 -moz-box-flex: 1;
10185 10198 box-flex: 1;
10186 10199 /* Modern browsers */
10187 10200 flex: 1;
10188 10201 }
10189 10202 span.save_widget {
10190 10203 margin-top: 6px;
10191 10204 }
10192 10205 span.save_widget span.filename {
10193 10206 height: 1em;
10194 10207 line-height: 1em;
10195 10208 padding: 3px;
10196 10209 border: none;
10197 10210 font-size: 146.5%;
10198 10211 border-radius: 4px;
10199 10212 }
10200 10213 span.save_widget span.filename:hover {
10201 10214 background-color: #e6e6e6;
10202 10215 }
10203 10216 span.checkpoint_status,
10204 10217 span.autosave_status {
10205 10218 font-size: small;
10206 10219 }
10207 10220 @media (max-width: 767px) {
10208 10221 span.save_widget {
10209 10222 font-size: small;
10210 10223 }
10211 10224 span.checkpoint_status,
10212 10225 span.autosave_status {
10213 10226 display: none;
10214 10227 }
10215 10228 }
10216 10229 @media (min-width: 768px) and (max-width: 979px) {
10217 10230 span.checkpoint_status {
10218 10231 display: none;
10219 10232 }
10220 10233 span.autosave_status {
10221 10234 font-size: x-small;
10222 10235 }
10223 10236 }
10224 10237 .toolbar {
10225 10238 padding: 0px;
10226 10239 margin-left: -5px;
10227 10240 margin-top: -5px;
10228 10241 margin-bottom: 5px;
10229 10242 box-sizing: border-box;
10230 10243 -moz-box-sizing: border-box;
10231 10244 -webkit-box-sizing: border-box;
10232 10245 }
10233 10246 .toolbar select,
10234 10247 .toolbar label {
10235 10248 width: auto;
10236 10249 vertical-align: middle;
10237 10250 margin-right: 2px;
10238 10251 margin-bottom: 0px;
10239 10252 display: inline;
10240 10253 font-size: 92%;
10241 10254 margin-left: 0.3em;
10242 10255 margin-right: 0.3em;
10243 10256 padding: 0px;
10244 10257 padding-top: 3px;
10245 10258 }
10246 10259 .toolbar .btn {
10247 10260 padding: 2px 8px;
10248 10261 }
10249 10262 .toolbar .btn-group {
10250 10263 margin-top: 0px;
10251 10264 margin-left: 5px;
10252 10265 }
10253 10266 #maintoolbar {
10254 10267 margin-bottom: -3px;
10255 10268 margin-top: -8px;
10256 10269 border: 0px;
10257 10270 min-height: 27px;
10258 10271 margin-left: 32px;
10259 10272 padding-top: 11px;
10260 10273 padding-bottom: 3px;
10261 10274 }
10262 10275 #maintoolbar .navbar-text {
10263 10276 float: none;
10264 10277 vertical-align: middle;
10265 10278 text-align: right;
10266 10279 margin-left: 5px;
10267 10280 margin-right: 0px;
10268 10281 margin-top: 0px;
10269 10282 }
10270 10283 .select-xs {
10271 10284 height: 24px;
10272 10285 }
10273 10286 /**
10274 10287 * Primary styles
10275 10288 *
10276 10289 * Author: IPython Development Team
10277 10290 */
10278 10291 /** WARNING IF YOU ARE EDITTING THIS FILE, if this is a .css file, It has a lot
10279 10292 * of chance of beeing generated from the ../less/[samename].less file, you can
10280 10293 * try to get back the less file by reverting somme commit in history
10281 10294 **/
10282 10295 /*
10283 10296 * We'll try to get something pretty, so we
10284 10297 * have some strange css to have the scroll bar on
10285 10298 * the left with fix button on the top right of the tooltip
10286 10299 */
10287 10300 @-moz-keyframes fadeOut {
10288 10301 from {
10289 10302 opacity: 1;
10290 10303 }
10291 10304 to {
10292 10305 opacity: 0;
10293 10306 }
10294 10307 }
10295 10308 @-webkit-keyframes fadeOut {
10296 10309 from {
10297 10310 opacity: 1;
10298 10311 }
10299 10312 to {
10300 10313 opacity: 0;
10301 10314 }
10302 10315 }
10303 10316 @-moz-keyframes fadeIn {
10304 10317 from {
10305 10318 opacity: 0;
10306 10319 }
10307 10320 to {
10308 10321 opacity: 1;
10309 10322 }
10310 10323 }
10311 10324 @-webkit-keyframes fadeIn {
10312 10325 from {
10313 10326 opacity: 0;
10314 10327 }
10315 10328 to {
10316 10329 opacity: 1;
10317 10330 }
10318 10331 }
10319 10332 /*properties of tooltip after "expand"*/
10320 10333 .bigtooltip {
10321 10334 overflow: auto;
10322 10335 height: 200px;
10323 10336 -webkit-transition-property: height;
10324 10337 -webkit-transition-duration: 500ms;
10325 10338 -moz-transition-property: height;
10326 10339 -moz-transition-duration: 500ms;
10327 10340 transition-property: height;
10328 10341 transition-duration: 500ms;
10329 10342 }
10330 10343 /*properties of tooltip before "expand"*/
10331 10344 .smalltooltip {
10332 10345 -webkit-transition-property: height;
10333 10346 -webkit-transition-duration: 500ms;
10334 10347 -moz-transition-property: height;
10335 10348 -moz-transition-duration: 500ms;
10336 10349 transition-property: height;
10337 10350 transition-duration: 500ms;
10338 10351 text-overflow: ellipsis;
10339 10352 overflow: hidden;
10340 10353 height: 80px;
10341 10354 }
10342 10355 .tooltipbuttons {
10343 10356 position: absolute;
10344 10357 padding-right: 15px;
10345 10358 top: 0px;
10346 10359 right: 0px;
10347 10360 }
10348 10361 .tooltiptext {
10349 10362 /*avoid the button to overlap on some docstring*/
10350 10363 padding-right: 30px;
10351 10364 }
10352 10365 .ipython_tooltip {
10353 10366 max-width: 700px;
10354 10367 /*fade-in animation when inserted*/
10355 10368 -webkit-animation: fadeOut 400ms;
10356 10369 -moz-animation: fadeOut 400ms;
10357 10370 animation: fadeOut 400ms;
10358 10371 -webkit-animation: fadeIn 400ms;
10359 10372 -moz-animation: fadeIn 400ms;
10360 10373 animation: fadeIn 400ms;
10361 10374 vertical-align: middle;
10362 10375 background-color: #f7f7f7;
10363 10376 overflow: visible;
10364 10377 border: #ababab 1px solid;
10365 10378 outline: none;
10366 10379 padding: 3px;
10367 10380 margin: 0px;
10368 10381 padding-left: 7px;
10369 10382 font-family: monospace;
10370 10383 min-height: 50px;
10371 10384 -moz-box-shadow: 0px 6px 10px -1px #adadad;
10372 10385 -webkit-box-shadow: 0px 6px 10px -1px #adadad;
10373 10386 box-shadow: 0px 6px 10px -1px #adadad;
10374 10387 border-radius: 4px;
10375 10388 position: absolute;
10376 10389 z-index: 1000;
10377 10390 }
10378 10391 .ipython_tooltip a {
10379 10392 float: right;
10380 10393 }
10381 10394 .ipython_tooltip .tooltiptext pre {
10382 10395 border: 0;
10383 10396 border-radius: 0;
10384 10397 font-size: 100%;
10385 10398 background-color: #f7f7f7;
10386 10399 }
10387 10400 .pretooltiparrow {
10388 10401 left: 0px;
10389 10402 margin: 0px;
10390 10403 top: -16px;
10391 10404 width: 40px;
10392 10405 height: 16px;
10393 10406 overflow: hidden;
10394 10407 position: absolute;
10395 10408 }
10396 10409 .pretooltiparrow:before {
10397 10410 background-color: #f7f7f7;
10398 10411 border: 1px #ababab solid;
10399 10412 z-index: 11;
10400 10413 content: "";
10401 10414 position: absolute;
10402 10415 left: 15px;
10403 10416 top: 10px;
10404 10417 width: 25px;
10405 10418 height: 25px;
10406 10419 -webkit-transform: rotate(45deg);
10407 10420 -moz-transform: rotate(45deg);
10408 10421 -ms-transform: rotate(45deg);
10409 10422 -o-transform: rotate(45deg);
10410 10423 }
10411 10424 .terminal {
10412 10425 float: left;
10413 10426 border: black solid 5px;
10414 10427 font-family: "DejaVu Sans Mono", "Liberation Mono", monospace;
10415 10428 font-size: 11px;
10416 10429 color: white;
10417 10430 background: black;
10418 10431 }
10419 10432 .terminal-cursor {
10420 10433 color: black;
10421 10434 background: white;
10422 10435 }
10423 10436 #terminado-container {
10424 10437 margin: 8px;
10425 10438 }
10426 10439 /*# sourceMappingURL=style.min.css.map */ No newline at end of file
@@ -1,527 +1,527 b''
1 1 // Copyright (c) IPython Development Team.
2 2 // Distributed under the terms of the Modified BSD License.
3 3
4 4 define([
5 5 'base/js/namespace',
6 6 'jquery',
7 7 'base/js/utils',
8 8 'base/js/dialog',
9 9 'base/js/events',
10 10 ], function(IPython, $, utils, dialog, events) {
11 11 "use strict";
12 12
13 13 var NotebookList = function (selector, options) {
14 14 /**
15 15 * Constructor
16 16 *
17 17 * Parameters:
18 18 * selector: string
19 19 * options: dictionary
20 20 * Dictionary of keyword arguments.
21 21 * session_list: SessionList instance
22 22 * element_name: string
23 23 * base_url: string
24 24 * notebook_path: string
25 25 * contents: Contents instance
26 26 */
27 27 var that = this;
28 28 this.session_list = options.session_list;
29 29 // allow code re-use by just changing element_name in kernellist.js
30 30 this.element_name = options.element_name || 'notebook';
31 31 this.selector = selector;
32 32 if (this.selector !== undefined) {
33 33 this.element = $(selector);
34 34 this.style();
35 35 this.bind_events();
36 36 }
37 37 this.notebooks_list = [];
38 38 this.sessions = {};
39 39 this.base_url = options.base_url || utils.get_body_data("baseUrl");
40 40 this.notebook_path = options.notebook_path || utils.get_body_data("notebookPath");
41 41 this.contents = options.contents;
42 42 if (this.session_list && this.session_list.events) {
43 43 this.session_list.events.on('sessions_loaded.Dashboard',
44 44 function(e, d) { that.sessions_loaded(d); });
45 45 }
46 46 };
47 47
48 48 NotebookList.prototype.style = function () {
49 49 var prefix = '#' + this.element_name;
50 50 $(prefix + '_toolbar').addClass('list_toolbar');
51 51 $(prefix + '_list_info').addClass('toolbar_info');
52 52 $(prefix + '_buttons').addClass('toolbar_buttons');
53 53 $(prefix + '_list_header').addClass('list_header');
54 54 this.element.addClass("list_container");
55 55 };
56 56
57 57
58 58 NotebookList.prototype.bind_events = function () {
59 59 var that = this;
60 60 $('#refresh_' + this.element_name + '_list').click(function () {
61 61 that.load_sessions();
62 62 });
63 63 this.element.bind('dragover', function () {
64 64 return false;
65 65 });
66 66 this.element.bind('drop', function(event){
67 67 that.handleFilesUpload(event,'drop');
68 68 return false;
69 69 });
70 70 };
71 71
72 72 NotebookList.prototype.handleFilesUpload = function(event, dropOrForm) {
73 73 var that = this;
74 74 var files;
75 75 if(dropOrForm =='drop'){
76 76 files = event.originalEvent.dataTransfer.files;
77 77 } else
78 78 {
79 79 files = event.originalEvent.target.files;
80 80 }
81 81 for (var i = 0; i < files.length; i++) {
82 82 var f = files[i];
83 83 var name_and_ext = utils.splitext(f.name);
84 84 var file_ext = name_and_ext[1];
85 85
86 86 var reader = new FileReader();
87 87 if (file_ext === '.ipynb') {
88 88 reader.readAsText(f);
89 89 } else {
90 90 // read non-notebook files as binary
91 91 reader.readAsArrayBuffer(f);
92 92 }
93 93 var item = that.new_item(0);
94 94 item.addClass('new-file');
95 95 that.add_name_input(f.name, item, file_ext == '.ipynb' ? 'notebook' : 'file');
96 96 // Store the list item in the reader so we can use it later
97 97 // to know which item it belongs to.
98 98 $(reader).data('item', item);
99 99 reader.onload = function (event) {
100 100 var item = $(event.target).data('item');
101 101 that.add_file_data(event.target.result, item);
102 102 that.add_upload_button(item);
103 103 };
104 104 reader.onerror = function (event) {
105 105 var item = $(event.target).data('item');
106 106 var name = item.data('name');
107 107 item.remove();
108 108 dialog.modal({
109 109 title : 'Failed to read file',
110 110 body : "Failed to read file '" + name + "'",
111 111 buttons : {'OK' : { 'class' : 'btn-primary' }}
112 112 });
113 113 };
114 114 }
115 115 // Replace the file input form wth a clone of itself. This is required to
116 116 // reset the form. Otherwise, if you upload a file, delete it and try to
117 117 // upload it again, the changed event won't fire.
118 118 var form = $('input.fileinput');
119 119 form.replaceWith(form.clone(true));
120 120 return false;
121 121 };
122 122
123 123 NotebookList.prototype.clear_list = function (remove_uploads) {
124 124 /**
125 125 * Clears the navigation tree.
126 126 *
127 127 * Parameters
128 128 * remove_uploads: bool=False
129 129 * Should upload prompts also be removed from the tree.
130 130 */
131 131 if (remove_uploads) {
132 132 this.element.children('.list_item').remove();
133 133 } else {
134 134 this.element.children('.list_item:not(.new-file)').remove();
135 135 }
136 136 };
137 137
138 138 NotebookList.prototype.load_sessions = function(){
139 139 this.session_list.load_sessions();
140 140 };
141 141
142 142
143 143 NotebookList.prototype.sessions_loaded = function(data){
144 144 this.sessions = data;
145 145 this.load_list();
146 146 };
147 147
148 148 NotebookList.prototype.load_list = function () {
149 149 var that = this;
150 150 this.contents.list_contents(that.notebook_path).then(
151 151 $.proxy(this.draw_notebook_list, this),
152 152 function(error) {
153 153 that.draw_notebook_list({content: []}, "Server error: " + error.message);
154 154 }
155 155 );
156 156 };
157 157
158 158 /**
159 159 * Draw the list of notebooks
160 160 * @method draw_notebook_list
161 161 * @param {Array} list An array of dictionaries representing files or
162 162 * directories.
163 163 * @param {String} error_msg An error message
164 164 */
165 165
166 166
167 167 var type_order = {'directory':0,'notebook':1,'file':2};
168 168
169 169 NotebookList.prototype.draw_notebook_list = function (list, error_msg) {
170 170 list.content.sort(function(a, b) {
171 171 if (type_order[a['type']] < type_order[b['type']]) {
172 172 return -1;
173 173 }
174 174 if (type_order[a['type']] > type_order[b['type']]) {
175 175 return 1;
176 176 }
177 177 if (a['name'] < b['name']) {
178 178 return -1;
179 179 }
180 180 if (a['name'] > b['name']) {
181 181 return 1;
182 182 }
183 183 return 0;
184 184 });
185 185 var message = error_msg || 'Notebook list empty.';
186 186 var item = null;
187 187 var model = null;
188 188 var len = list.content.length;
189 189 this.clear_list();
190 190 var n_uploads = this.element.children('.list_item').length;
191 191 if (len === 0) {
192 192 item = this.new_item(0);
193 193 var span12 = item.children().first();
194 194 span12.empty();
195 195 span12.append($('<div style="margin:auto;text-align:center;color:grey"/>').text(message));
196 196 }
197 197 var path = this.notebook_path;
198 198 var offset = n_uploads;
199 199 if (path !== '') {
200 200 item = this.new_item(offset);
201 201 model = {
202 202 type: 'directory',
203 203 name: '..',
204 204 path: utils.url_path_split(path)[0],
205 205 };
206 206 this.add_link(model, item);
207 207 offset += 1;
208 208 }
209 209 for (var i=0; i<len; i++) {
210 210 model = list.content[i];
211 211 item = this.new_item(i+offset);
212 212 this.add_link(model, item);
213 213 }
214 214 // Trigger an event when we've finished drawing the notebook list.
215 215 events.trigger('draw_notebook_list.NotebookList');
216 216 };
217 217
218 218
219 219 NotebookList.prototype.new_item = function (index) {
220 220 var item = $('<div/>').addClass("list_item").addClass("row");
221 221 // item.addClass('list_item ui-widget ui-widget-content ui-helper-clearfix');
222 222 // item.css('border-top-style','none');
223 223 item.append($("<div/>").addClass("col-md-12").append(
224 224 $('<i/>').addClass('item_icon')
225 225 ).append(
226 226 $("<a/>").addClass("item_link").append(
227 227 $("<span/>").addClass("item_name")
228 228 )
229 229 ).append(
230 $('<div/>').addClass("item_buttons btn-group pull-right")
230 $('<div/>').addClass("item_buttons pull-right")
231 231 ));
232 232
233 233 if (index === -1) {
234 234 this.element.append(item);
235 235 } else {
236 236 this.element.children().eq(index).after(item);
237 237 }
238 238 return item;
239 239 };
240 240
241 241
242 242 NotebookList.icons = {
243 243 directory: 'folder_icon',
244 244 notebook: 'notebook_icon',
245 245 file: 'file_icon',
246 246 };
247 247
248 248 NotebookList.uri_prefixes = {
249 249 directory: 'tree',
250 250 notebook: 'notebooks',
251 251 file: 'edit',
252 252 };
253 253
254 254
255 255 NotebookList.prototype.add_link = function (model, item) {
256 256 var path = model.path,
257 257 name = model.name;
258 258 item.data('name', name);
259 259 item.data('path', path);
260 260 item.find(".item_name").text(name);
261 261 var icon = NotebookList.icons[model.type];
262 262 var uri_prefix = NotebookList.uri_prefixes[model.type];
263 263 item.find(".item_icon").addClass(icon).addClass('icon-fixed-width');
264 264 var link = item.find("a.item_link")
265 265 .attr('href',
266 266 utils.url_join_encode(
267 267 this.base_url,
268 268 uri_prefix,
269 269 path
270 270 )
271 271 );
272 272 // directory nav doesn't open new tabs
273 273 // files, notebooks do
274 274 if (model.type !== "directory") {
275 275 link.attr('target','_blank');
276 276 }
277 277 if (model.type !== 'directory') {
278 278 this.add_duplicate_button(item);
279 279 }
280 280 if (model.type == 'file') {
281 281 this.add_delete_button(item);
282 282 } else if (model.type == 'notebook') {
283 283 if (this.sessions[path] === undefined){
284 284 this.add_delete_button(item);
285 285 } else {
286 286 this.add_shutdown_button(item, this.sessions[path]);
287 287 }
288 288 }
289 289 };
290 290
291 291
292 292 NotebookList.prototype.add_name_input = function (name, item, icon_type) {
293 293 item.data('name', name);
294 294 item.find(".item_icon").addClass(NotebookList.icons[icon_type]).addClass('icon-fixed-width');
295 295 item.find(".item_name").empty().append(
296 296 $('<input/>')
297 297 .addClass("filename_input")
298 298 .attr('value', name)
299 299 .attr('size', '30')
300 300 .attr('type', 'text')
301 301 .keyup(function(event){
302 302 if(event.keyCode == 13){item.find('.upload_button').click();}
303 303 else if(event.keyCode == 27){item.remove();}
304 304 })
305 305 );
306 306 };
307 307
308 308
309 309 NotebookList.prototype.add_file_data = function (data, item) {
310 310 item.data('filedata', data);
311 311 };
312 312
313 313
314 314 NotebookList.prototype.add_shutdown_button = function (item, session) {
315 315 var that = this;
316 316 var shutdown_button = $("<button/>").text("Shutdown").addClass("btn btn-xs btn-warning").
317 317 click(function (e) {
318 318 var settings = {
319 319 processData : false,
320 320 cache : false,
321 321 type : "DELETE",
322 322 dataType : "json",
323 323 success : function () {
324 324 that.load_sessions();
325 325 },
326 326 error : utils.log_ajax_error,
327 327 };
328 328 var url = utils.url_join_encode(
329 329 that.base_url,
330 330 'api/sessions',
331 331 session
332 332 );
333 333 $.ajax(url, settings);
334 334 return false;
335 335 });
336 336 item.find(".item_buttons").append(shutdown_button);
337 337 };
338 338
339 339 NotebookList.prototype.add_duplicate_button = function (item) {
340 340 var notebooklist = this;
341 341 var duplicate_button = $("<button/>").text("Duplicate").addClass("btn btn-default btn-xs").
342 342 click(function (e) {
343 343 // $(this) is the button that was clicked.
344 344 var that = $(this);
345 345 var name = item.data('name');
346 346 var path = item.data('path');
347 347 var message = 'Are you sure you want to duplicate ' + name + '?';
348 348 var copy_from = {copy_from : path};
349 349 IPython.dialog.modal({
350 350 title : "Duplicate " + name,
351 351 body : message,
352 352 buttons : {
353 353 Duplicate : {
354 354 class: "btn-primary",
355 355 click: function() {
356 356 notebooklist.contents.copy(path, notebooklist.notebook_path).then(function () {
357 357 notebooklist.load_list();
358 358 });
359 359 }
360 360 },
361 361 Cancel : {}
362 362 }
363 363 });
364 364 return false;
365 365 });
366 366 item.find(".item_buttons").append(duplicate_button);
367 367 };
368 368
369 369 NotebookList.prototype.add_delete_button = function (item) {
370 370 var notebooklist = this;
371 371 var delete_button = $("<button/>").text("Delete").addClass("btn btn-default btn-xs").
372 372 click(function (e) {
373 373 // $(this) is the button that was clicked.
374 374 var that = $(this);
375 375 // We use the filename from the parent list_item element's
376 376 // data because the outer scope's values change as we iterate through the loop.
377 377 var parent_item = that.parents('div.list_item');
378 378 var name = parent_item.data('name');
379 379 var path = parent_item.data('path');
380 380 var message = 'Are you sure you want to permanently delete the file: ' + name + '?';
381 381 dialog.modal({
382 382 title : "Delete file",
383 383 body : message,
384 384 buttons : {
385 385 Delete : {
386 386 class: "btn-danger",
387 387 click: function() {
388 388 notebooklist.contents.delete(path).then(
389 389 function() {
390 390 notebooklist.notebook_deleted(path);
391 391 }
392 392 );
393 393 }
394 394 },
395 395 Cancel : {}
396 396 }
397 397 });
398 398 return false;
399 399 });
400 400 item.find(".item_buttons").append(delete_button);
401 401 };
402 402
403 403 NotebookList.prototype.notebook_deleted = function(path) {
404 404 /**
405 405 * Remove the deleted notebook.
406 406 */
407 407 $( ":data(path)" ).each(function() {
408 408 var element = $(this);
409 409 if (element.data("path") == path) {
410 410 element.remove();
411 411 events.trigger('notebook_deleted.NotebookList');
412 412 }
413 413 });
414 414 };
415 415
416 416
417 417 NotebookList.prototype.add_upload_button = function (item) {
418 418 var that = this;
419 419 var upload_button = $('<button/>').text("Upload")
420 420 .addClass('btn btn-primary btn-xs upload_button')
421 421 .click(function (e) {
422 422 var filename = item.find('.item_name > input').val();
423 423 var path = utils.url_path_join(that.notebook_path, filename);
424 424 var filedata = item.data('filedata');
425 425 var format = 'text';
426 426 if (filename.length === 0 || filename[0] === '.') {
427 427 dialog.modal({
428 428 title : 'Invalid file name',
429 429 body : "File names must be at least one character and not start with a dot",
430 430 buttons : {'OK' : { 'class' : 'btn-primary' }}
431 431 });
432 432 return false;
433 433 }
434 434 if (filedata instanceof ArrayBuffer) {
435 435 // base64-encode binary file data
436 436 var bytes = '';
437 437 var buf = new Uint8Array(filedata);
438 438 var nbytes = buf.byteLength;
439 439 for (var i=0; i<nbytes; i++) {
440 440 bytes += String.fromCharCode(buf[i]);
441 441 }
442 442 filedata = btoa(bytes);
443 443 format = 'base64';
444 444 }
445 445 var model = {};
446 446
447 447 var name_and_ext = utils.splitext(filename);
448 448 var file_ext = name_and_ext[1];
449 449 var content_type;
450 450 if (file_ext === '.ipynb') {
451 451 model.type = 'notebook';
452 452 model.format = 'json';
453 453 try {
454 454 model.content = JSON.parse(filedata);
455 455 } catch (e) {
456 456 dialog.modal({
457 457 title : 'Cannot upload invalid Notebook',
458 458 body : "The error was: " + e,
459 459 buttons : {'OK' : {
460 460 'class' : 'btn-primary',
461 461 click: function () {
462 462 item.remove();
463 463 }
464 464 }}
465 465 });
466 466 return false;
467 467 }
468 468 content_type = 'application/json';
469 469 } else {
470 470 model.type = 'file';
471 471 model.format = format;
472 472 model.content = filedata;
473 473 content_type = 'application/octet-stream';
474 474 }
475 475 filedata = item.data('filedata');
476 476
477 477 var on_success = function () {
478 478 item.removeClass('new-file');
479 479 that.add_link(model, item);
480 480 that.add_delete_button(item);
481 481 that.session_list.load_sessions();
482 482 };
483 483
484 484 var exists = false;
485 485 $.each(that.element.find('.list_item:not(.new-file)'), function(k,v){
486 486 if ($(v).data('name') === filename) { exists = true; return false; }
487 487 });
488 488
489 489 if (exists) {
490 490 dialog.modal({
491 491 title : "Replace file",
492 492 body : 'There is already a file named ' + filename + ', do you want to replace it?',
493 493 buttons : {
494 494 Overwrite : {
495 495 class: "btn-danger",
496 496 click: function () {
497 497 that.contents.save(path, model).then(on_success);
498 498 }
499 499 },
500 500 Cancel : {
501 501 click: function() { item.remove(); }
502 502 }
503 503 }
504 504 });
505 505 } else {
506 506 that.contents.save(path, model).then(on_success);
507 507 }
508 508
509 509 return false;
510 510 });
511 511 var cancel_button = $('<button/>').text("Cancel")
512 512 .addClass("btn btn-default btn-xs")
513 513 .click(function (e) {
514 514 item.remove();
515 515 return false;
516 516 });
517 517 item.find(".item_buttons").empty()
518 518 .append(upload_button)
519 519 .append(cancel_button);
520 520 };
521 521
522 522
523 523 // Backwards compatability.
524 524 IPython.NotebookList = NotebookList;
525 525
526 526 return {'NotebookList': NotebookList};
527 527 });
@@ -1,176 +1,177 b''
1 1
2 2 /**
3 3 * Primary styles
4 4 *
5 5 * Author: IPython Development Team
6 6 */
7 7
8 8 @dashboard_tb_pad: 4px;
9 9 @dashboard_lr_pad: 7px;
10 10 // These are the total heights of the Bootstrap small and mini buttons. These values
11 11 // are not less variables so we have to track them statically.
12 12 @btn_small_height: 24px;
13 13 @btn_mini_height: 22px;
14 14 @dark_dashboard_color: @breadcrumb-color;
15 15
16 16 ul#tabs {
17 17 margin-bottom: @dashboard_tb_pad;
18 18 }
19 19
20 20 ul#tabs a {
21 21 padding-top: @dashboard_tb_pad + 2px;
22 22 padding-bottom: @dashboard_tb_pad;
23 23 }
24 24
25 25 ul.breadcrumb {
26 26 a:focus, a:hover {
27 27 text-decoration: none;
28 28 }
29 29 i.icon-home {
30 30 font-size: 16px;
31 31 margin-right: 4px;
32 32 }
33 33
34 34 span {
35 35 color: @dark_dashboard_color;
36 36 }
37 37 }
38 38
39 39 .list_toolbar {
40 40 padding: @dashboard_tb_pad 0 @dashboard_tb_pad 0;
41 41 vertical-align: middle;
42 42
43 43 .tree-buttons {
44 44 padding-top: 2px;
45 45 }
46 46 }
47 47
48 48 .list_toolbar [class*="span"] {
49 49 min-height: @btn_small_height;
50 50 }
51 51
52 52 .list_header {
53 53 font-weight: bold;
54 54 }
55 55
56 56 .list_container {
57 57 margin-top: @dashboard_tb_pad;
58 58 margin-bottom: 5*@dashboard_tb_pad;
59 59 border: 1px solid @border_color;
60 60 border-radius: 4px;
61 61 }
62 62
63 63 .list_container > div {
64 64 border-bottom: 1px solid @border_color;
65 65 &:hover .list-item{
66 66 background-color: red;
67 67 };
68 68 }
69 69
70 70 .list_container > div:last-child {
71 71 border: none;
72 72 }
73 73
74 74 .list_item {
75 75 &:hover .list_item {
76 76 background-color: #ddd;
77 77 };
78 78 a {text-decoration: none;}
79 79 }
80 80
81 81 .action_col {
82 82 text-align: right;
83 83 }
84 84
85 85 .list_header>div, .list_item>div {
86 86 padding-top: @dashboard_tb_pad;
87 87 padding-bottom: @dashboard_tb_pad;
88 88 padding-left: @dashboard_lr_pad;
89 89 padding-right: @dashboard_lr_pad;
90 90 line-height: @btn_mini_height;
91 91 }
92 92
93 93 .item_name {
94 94 line-height: @btn_mini_height;
95 95 height: @btn_small_height;
96 96 }
97 97
98 98 .item_icon {
99 99 font-size: 14px;
100 100 color: @dark_dashboard_color;
101 101 margin-right: @dashboard_lr_pad;
102 102 }
103 103
104 104 .item_buttons {
105 105 line-height: 1em;
106 106 .btn {
107 107 min-width: 13ex;
108 108 }
109 .btn-toolbar();
109 110 }
110 111
111 112 .toolbar_info {
112 113 height: @btn_small_height;
113 114 line-height: @btn_small_height;
114 115 }
115 116
116 117 input.nbname_input, input.engine_num_input {
117 118 // These settings give these inputs a height that matches @btn_mini_height = 22
118 119 padding-top: 3px;
119 120 padding-bottom: 3px;
120 121 height: @btn_mini_height;
121 122 line-height: 14px;
122 123 margin: 0px;
123 124 }
124 125
125 126 input.engine_num_input {
126 127 width: 60px;
127 128 }
128 129
129 130 .highlight_text {
130 131 color: blue;
131 132 }
132 133
133 134 #project_name > .breadcrumb {
134 135 padding: 0px;
135 136 margin-bottom: 0px;
136 137 background-color: transparent;
137 138 font-weight: bold;
138 139
139 140 }
140 141
141 142 .tab-content .row {
142 143 margin-left: 0px;
143 144 margin-right: 0px;
144 145 }
145 146
146 147 .folder_icon:before {
147 148 .icon(@fa-var-folder-o)
148 149 }
149 150
150 151 .notebook_icon:before {
151 152 .icon(@fa-var-book)
152 153 }
153 154
154 155 .file_icon:before {
155 156 .icon(@fa-var-file-o)
156 157 }
157 158
158 159 ul#new-notebook-menu {
159 160 // align right instead of left
160 161 left: auto;
161 162 right: 0;
162 163 }
163 164
164 165 .kernel-menu-icon {
165 166 padding-right: 12px;
166 167 width: 24px;
167 168 content: @fa-var-square-o;
168 169 }
169 170
170 171 .kernel-menu-icon:before {
171 172 content: @fa-var-square-o;
172 173 }
173 174
174 175 .kernel-menu-icon-current:before {
175 176 content: @fa-var-check;
176 177 }
@@ -1,140 +1,142 b''
1 1 {% extends "page.html" %}
2 2
3 3 {% block title %}{{page_title}}{% endblock %}
4 4
5 5
6 6 {% block stylesheet %}
7 7 {{super()}}
8 8 <link rel="stylesheet" href="{{ static_url("tree/css/override.css") }}" type="text/css" />
9 9 {% endblock %}
10 10
11 11 {% block params %}
12 12
13 13 data-base-url="{{base_url}}"
14 14 data-notebook-path="{{notebook_path}}"
15 15 data-terminals-available="{{terminals_available}}"
16 16
17 17 {% endblock %}
18 18
19 19
20 20 {% block site %}
21 21
22 22 <div id="ipython-main-app" class="container">
23 23 <div id="tab_content" class="tabbable">
24 24 <ul id="tabs" class="nav nav-tabs">
25 25 <li class="active"><a href="#notebooks" data-toggle="tab">Files</a></li>
26 26 <li><a href="#running" data-toggle="tab">Running</a></li>
27 27 {% if terminals_available %}
28 28 <li><a href="#terminals" data-toggle="tab">Terminals</a></li>
29 29 {% endif %}
30 30 <li><a href="#clusters" data-toggle="tab">Clusters</a></li>
31 31 </ul>
32 32 <div class="tab-content">
33 33 <div id="notebooks" class="tab-pane active">
34 34 <div id="notebook_toolbar" class="row">
35 35 <div class="col-sm-12 no-padding">
36 36 <form id='alternate_upload' class='alternate_upload'>
37 37 <span id="notebook_list_info">
38 38 To import a notebook, drag the file onto the listing below or
39 39 <span class="input-overlay">
40 40 <input type="file" name="datafile" class="fileinput" multiple='multiple'>
41 41 click here.
42 42 </span>
43 43 </span>
44 44 </form>
45 <div id="notebook_buttons" class="pull-right">
45 <div id="notebook_buttons" class="pull-right btn-toolbar">
46 46 <div id="new-notebook-buttons" class="btn-group">
47 47 <button id="new_notebook" class="btn btn-default btn-xs">
48 48 New Notebook
49 49 </button>
50 50 <button class="dropdown-toggle btn btn-default btn-xs" data-toggle="dropdown">
51 51 <span id="current-kernel">Loading...</span>
52 52 <span class="caret"></span>
53 53 </button>
54 54 <ul id="new-notebook-menu" class="dropdown-menu"></ul>
55 55 </div>
56 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
56 <div class="btn-group">
57 <button id="refresh_notebook_list" title="Refresh notebook list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
58 </div>
57 59 </div>
58 60 </div>
59 61 </div>
60 62 <div id="notebook_list">
61 63 <div id="notebook_list_header" class="row list_header">
62 64 <div id="project_name">
63 65 <ul class="breadcrumb">
64 66 <li><a href="{{breadcrumbs[0][0]}}"><i class="fa fa-home"></i></a></li>
65 67 {% for crumb in breadcrumbs[1:] %}
66 68 <li><a href="{{crumb[0]}}">{{crumb[1]}}</a></li>
67 69 {% endfor %}
68 70 </ul>
69 71 </div>
70 72 </div>
71 73 </div>
72 74 </div>
73 75 <div id="running" class="tab-pane">
74 76 <div id="running_toolbar" class="row">
75 77 <div class="col-sm-8 no-padding">
76 78 <span id="running_list_info">Currently running IPython notebooks</span>
77 79 </div>
78 80 <div class="col-sm-4 no-padding tree-buttons">
79 81 <span id="running_buttons" class="pull-right">
80 82 <button id="refresh_running_list" title="Refresh running list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
81 83 </span>
82 84 </div>
83 85 </div>
84 86 <div id="running_list">
85 87 <div id="running_list_header" class="row list_header">
86 88 <div> There are no notebooks running. </div>
87 89 </div>
88 90 </div>
89 91 </div>
90 92 {% if terminals_available %}
91 93 <div id="terminals" class="tab-pane">
92 94 <div id="terminal_toolbar" class="row">
93 95 <div class="col-xs-8 no-padding">
94 96 <span id="terminal_list_info">Currently running terminals</span>
95 97 </div>
96 98 <div class="col-xs-4 no-padding tree-buttons">
97 99 <span id="terminal_buttons" class="pull-right">
98 100 <button id="new_terminal" title="New terminal" class="btn btn-default btn-xs">New Terminal</button>
99 101 <button id="refresh_terminal_list" title="Refresh terminal list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
100 102 </span>
101 103 </div>
102 104 </div>
103 105 <div id="terminal_list">
104 106 <div id="terminal_list_header" class="row list_header">
105 107 <div> There are no terminals running. </div>
106 108 </div>
107 109 </div>
108 110 </div>
109 111 {% endif %}
110 112 <div id="clusters" class="tab-pane">
111 113 <div id="cluster_toolbar" class="row">
112 114 <div class="col-xs-8 no-padding">
113 115 <span id="cluster_list_info">IPython parallel computing clusters</span>
114 116 </div>
115 117 <div class="col-xs-4 no-padding tree-buttons">
116 118 <span id="cluster_buttons" class="pull-right">
117 119 <button id="refresh_cluster_list" title="Refresh cluster list" class="btn btn-default btn-xs"><i class="fa fa-refresh"></i></button>
118 120 </span>
119 121 </div>
120 122 </div>
121 123 <div id="cluster_list">
122 124 <div id="cluster_list_header" class="row list_header">
123 125 <div class="profile_col col-xs-4">profile</div>
124 126 <div class="status_col col-xs-3">status</div>
125 127 <div class="engines_col col-xs-3" title="Enter the number of engines to start or empty for default"># of engines</div>
126 128 <div class="action_col col-xs-2">action</div>
127 129 </div>
128 130 </div>
129 131 </div>
130 132 </div><!-- class:tab-content -->
131 133 </div><!-- id:tab_content -->
132 134 </div><!-- ipython-main-app -->
133 135
134 136 {% endblock %}
135 137
136 138 {% block script %}
137 139 {{super()}}
138 140
139 141 <script src="{{ static_url("tree/js/main.js") }}" type="text/javascript" charset="utf-8"></script>
140 142 {% endblock %}
General Comments 0
You need to be logged in to leave comments. Login now