comparison src/main/resources/org/ssdt_ohio/gradle/userdoc/templates/stylesheet.css @ 16:8400a7db1330

USASR-1307: update templates to groovydoc 2.3.6
author smith@nwoca.org
date Wed, 31 Dec 2014 22:35:45 +0000
parents 9de72de14ab3
children e2d02e8742be
comparison
equal deleted inserted replaced
15:e3c55e83c9a4 16:8400a7db1330
1 .code, pre 1 @charset "${props.charset}";
2 { 2
3 border: 1px dashed #6699CC; 3 /*! normalize.css v2.1.0 | MIT License | git.io/normalize */
4 background-color: #F4F4F4; 4 article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
5 padding: 5px; 5 display: block
6 } 6 }
7 7
8 body 8 audio, canvas, video {
9 { 9 display: inline-block
10 font-size: 10pt; 10 }
11 font-family: 'Lucida Grande',verdana,arial,helvetica,sans-serif; 11
12 background-color: #fff; 12 audio:not([controls]) {
13 color: #333; 13 display: none;
14 } 14 height: 0
15 15 }
16 /* Link colors */ 16
17 a 17 [hidden] {
18 { 18 display: none
19 color:#569D2F; 19 }
20 text-decoration:none; 20
21 } 21 html {
22 22 font-family: sans-serif;
23 a:hover 23 -webkit-text-size-adjust: 100%;
24 { 24 -ms-text-size-adjust: 100%
25 text-decoration:underline; 25 }
26 } 26
27 27 body {
28 /* Headings */ 28 margin: 0
29 h1 29 }
30 { 30
31 background: url(tapestry.png) no-repeat; 31 a:focus {
32 font-size:28px; 32 outline: thin dotted
33 color:#007c00; 33 }
34 padding: 2.0em; 34
35 } 35 a:active, a:hover {
36 h1,h2,h3 { 36 outline: 0
37 color: #569D2F; 37 }
38 } 38
39 39 h1 {
40 wbr:after 40 font-size: 2em;
41 { 41 margin: .67em 0
42 content: "\00200B"; /* IE fix */ 42 }
43 } 43
44 44 abbr[title] {
45 /* Table colors */ 45 border-bottom: 1px dotted
46 46 }
47 table 47
48 { 48 b, strong {
49 background: #fff; 49 font-weight: bold
50 border-collapse: collapse; 50 }
51 } 51
52 52 dfn {
53 td 53 font-style: italic
54 { 54 }
55 border: 1px dotted #ccc; 55
56 background: #F4F4F4; 56 hr {
57 } 57 -moz-box-sizing: content-box;
58 58 box-sizing: content-box;
59 th 59 height: 0
60 { 60 }
61 border:none; 61
62 background-color: #569D2F; 62 mark {
63 background: #ff0;
64 color: #000
65 }
66
67 code, kbd, pre, samp {
68 font-family: monospace, serif;
69 font-size: 1em
70 }
71
72 pre {
73 white-space: pre-wrap
74 }
75
76 q {
77 quotes: "\201C" "\201D" "\2018" "\2019"
78 }
79
80 small {
81 font-size: 80%
82 }
83
84 sub, sup {
85 font-size: 75%;
86 line-height: 0;
87 position: relative;
88 vertical-align: baseline
89 }
90
91 sup {
92 top: -0.5em
93 }
94
95 sub {
96 bottom: -0.25em
97 }
98
99 img {
100 border: 0
101 }
102
103 svg:not(:root) {
104 overflow: hidden
105 }
106
107 figure {
108 margin: 0
109 }
110
111 fieldset {
112 border: 1px solid #c0c0c0;
113 margin: 0 2px;
114 padding: .35em .625em .75em
115 }
116
117 legend {
118 border: 0;
119 padding: 0
120 }
121
122 button, input, select, textarea {
123 font-family: inherit;
124 font-size: 100%;
125 margin: 0
126 }
127
128 button, input {
129 line-height: normal
130 }
131
132 button, select {
133 text-transform: none
134 }
135
136 button, html input[type="button"], input[type="reset"], input[type="submit"] {
137 -webkit-appearance: button;
138 cursor: pointer
139 }
140
141 button[disabled], html input[disabled] {
142 cursor: default
143 }
144
145 input[type="checkbox"], input[type="radio"] {
146 box-sizing: border-box;
147 padding: 0
148 }
149
150 input[type="search"] {
151 -webkit-appearance: textfield;
152 -moz-box-sizing: content-box;
153 -webkit-box-sizing: content-box;
154 box-sizing: content-box
155 }
156
157 input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
158 -webkit-appearance: none
159 }
160
161 button::-moz-focus-inner, input::-moz-focus-inner {
162 border: 0;
163 padding: 0
164 }
165
166 textarea {
167 overflow: auto;
168 vertical-align: top
169 }
170
171 table {
172 border-collapse: collapse;
173 border-spacing: 0
174 }
175
176 @-ms-viewport {
177 width: device-width
178 }
179
180 @media screen and (max-width: 400px) {
181 @-ms-viewport {
182 width: 320px
183 }
184 }
185
186 .hidden {
187 display: none !important;
188 visibility: hidden !important
189 }
190
191 .visible-xs {
192 display: none !important
193 }
194
195 tr.visible-xs {
196 display: none !important
197 }
198
199 th.visible-xs, td.visible-xs {
200 display: none !important
201 }
202
203 @media (max-width: 767px) {
204 .visible-xs {
205 display: block !important
206 }
207
208 tr.visible-xs {
209 display: table-row !important
210 }
211
212 th.visible-xs, td.visible-xs {
213 display: table-cell !important
214 }
215 }
216
217 @media (min-width: 768px) and (max-width: 991px) {
218 .visible-xs.visible-sm {
219 display: block !important
220 }
221
222 tr.visible-xs.visible-sm {
223 display: table-row !important
224 }
225
226 th.visible-xs.visible-sm, td.visible-xs.visible-sm {
227 display: table-cell !important
228 }
229 }
230
231 @media (min-width: 992px) and (max-width: 1199px) {
232 .visible-xs.visible-md {
233 display: block !important
234 }
235
236 tr.visible-xs.visible-md {
237 display: table-row !important
238 }
239
240 th.visible-xs.visible-md, td.visible-xs.visible-md {
241 display: table-cell !important
242 }
243 }
244
245 @media (min-width: 1200px) {
246 .visible-xs.visible-lg {
247 display: block !important
248 }
249
250 tr.visible-xs.visible-lg {
251 display: table-row !important
252 }
253
254 th.visible-xs.visible-lg, td.visible-xs.visible-lg {
255 display: table-cell !important
256 }
257 }
258
259 .visible-sm {
260 display: none !important
261 }
262
263 tr.visible-sm {
264 display: none !important
265 }
266
267 th.visible-sm, td.visible-sm {
268 display: none !important
269 }
270
271 @media (max-width: 767px) {
272 .visible-sm.visible-xs {
273 display: block !important
274 }
275
276 tr.visible-sm.visible-xs {
277 display: table-row !important
278 }
279
280 th.visible-sm.visible-xs, td.visible-sm.visible-xs {
281 display: table-cell !important
282 }
283 }
284
285 @media (min-width: 768px) and (max-width: 991px) {
286 .visible-sm {
287 display: block !important
288 }
289
290 tr.visible-sm {
291 display: table-row !important
292 }
293
294 th.visible-sm, td.visible-sm {
295 display: table-cell !important
296 }
297 }
298
299 @media (min-width: 992px) and (max-width: 1199px) {
300 .visible-sm.visible-md {
301 display: block !important
302 }
303
304 tr.visible-sm.visible-md {
305 display: table-row !important
306 }
307
308 th.visible-sm.visible-md, td.visible-sm.visible-md {
309 display: table-cell !important
310 }
311 }
312
313 @media (min-width: 1200px) {
314 .visible-sm.visible-lg {
315 display: block !important
316 }
317
318 tr.visible-sm.visible-lg {
319 display: table-row !important
320 }
321
322 th.visible-sm.visible-lg, td.visible-sm.visible-lg {
323 display: table-cell !important
324 }
325 }
326
327 .visible-md {
328 display: none !important
329 }
330
331 tr.visible-md {
332 display: none !important
333 }
334
335 th.visible-md, td.visible-md {
336 display: none !important
337 }
338
339 @media (max-width: 767px) {
340 .visible-md.visible-xs {
341 display: block !important
342 }
343
344 tr.visible-md.visible-xs {
345 display: table-row !important
346 }
347
348 th.visible-md.visible-xs, td.visible-md.visible-xs {
349 display: table-cell !important
350 }
351 }
352
353 @media (min-width: 768px) and (max-width: 991px) {
354 .visible-md.visible-sm {
355 display: block !important
356 }
357
358 tr.visible-md.visible-sm {
359 display: table-row !important
360 }
361
362 th.visible-md.visible-sm, td.visible-md.visible-sm {
363 display: table-cell !important
364 }
365 }
366
367 @media (min-width: 992px) and (max-width: 1199px) {
368 .visible-md {
369 display: block !important
370 }
371
372 tr.visible-md {
373 display: table-row !important
374 }
375
376 th.visible-md, td.visible-md {
377 display: table-cell !important
378 }
379 }
380
381 @media (min-width: 1200px) {
382 .visible-md.visible-lg {
383 display: block !important
384 }
385
386 tr.visible-md.visible-lg {
387 display: table-row !important
388 }
389
390 th.visible-md.visible-lg, td.visible-md.visible-lg {
391 display: table-cell !important
392 }
393 }
394
395 .visible-lg {
396 display: none !important
397 }
398
399 tr.visible-lg {
400 display: none !important
401 }
402
403 th.visible-lg, td.visible-lg {
404 display: none !important
405 }
406
407 @media (max-width: 767px) {
408 .visible-lg.visible-xs {
409 display: block !important
410 }
411
412 tr.visible-lg.visible-xs {
413 display: table-row !important
414 }
415
416 th.visible-lg.visible-xs, td.visible-lg.visible-xs {
417 display: table-cell !important
418 }
419 }
420
421 @media (min-width: 768px) and (max-width: 991px) {
422 .visible-lg.visible-sm {
423 display: block !important
424 }
425
426 tr.visible-lg.visible-sm {
427 display: table-row !important
428 }
429
430 th.visible-lg.visible-sm, td.visible-lg.visible-sm {
431 display: table-cell !important
432 }
433 }
434
435 @media (min-width: 992px) and (max-width: 1199px) {
436 .visible-lg.visible-md {
437 display: block !important
438 }
439
440 tr.visible-lg.visible-md {
441 display: table-row !important
442 }
443
444 th.visible-lg.visible-md, td.visible-lg.visible-md {
445 display: table-cell !important
446 }
447 }
448
449 @media (min-width: 1200px) {
450 .visible-lg {
451 display: block !important
452 }
453
454 tr.visible-lg {
455 display: table-row !important
456 }
457
458 th.visible-lg, td.visible-lg {
459 display: table-cell !important
460 }
461 }
462
463 .hidden-xs {
464 display: block !important
465 }
466
467 tr.hidden-xs {
468 display: table-row !important
469 }
470
471 th.hidden-xs, td.hidden-xs {
472 display: table-cell !important
473 }
474
475 @media (max-width: 767px) {
476 .hidden-xs {
477 display: none !important
478 }
479
480 tr.hidden-xs {
481 display: none !important
482 }
483
484 th.hidden-xs, td.hidden-xs {
485 display: none !important
486 }
487 }
488
489 @media (min-width: 768px) and (max-width: 991px) {
490 .hidden-xs.hidden-sm {
491 display: none !important
492 }
493
494 tr.hidden-xs.hidden-sm {
495 display: none !important
496 }
497
498 th.hidden-xs.hidden-sm, td.hidden-xs.hidden-sm {
499 display: none !important
500 }
501 }
502
503 @media (min-width: 992px) and (max-width: 1199px) {
504 .hidden-xs.hidden-md {
505 display: none !important
506 }
507
508 tr.hidden-xs.hidden-md {
509 display: none !important
510 }
511
512 th.hidden-xs.hidden-md, td.hidden-xs.hidden-md {
513 display: none !important
514 }
515 }
516
517 @media (min-width: 1200px) {
518 .hidden-xs.hidden-lg {
519 display: none !important
520 }
521
522 tr.hidden-xs.hidden-lg {
523 display: none !important
524 }
525
526 th.hidden-xs.hidden-lg, td.hidden-xs.hidden-lg {
527 display: none !important
528 }
529 }
530
531 .hidden-sm {
532 display: block !important
533 }
534
535 tr.hidden-sm {
536 display: table-row !important
537 }
538
539 th.hidden-sm, td.hidden-sm {
540 display: table-cell !important
541 }
542
543 @media (max-width: 767px) {
544 .hidden-sm.hidden-xs {
545 display: none !important
546 }
547
548 tr.hidden-sm.hidden-xs {
549 display: none !important
550 }
551
552 th.hidden-sm.hidden-xs, td.hidden-sm.hidden-xs {
553 display: none !important
554 }
555 }
556
557 @media (min-width: 768px) and (max-width: 991px) {
558 .hidden-sm {
559 display: none !important
560 }
561
562 tr.hidden-sm {
563 display: none !important
564 }
565
566 th.hidden-sm, td.hidden-sm {
567 display: none !important
568 }
569 }
570
571 @media (min-width: 992px) and (max-width: 1199px) {
572 .hidden-sm.hidden-md {
573 display: none !important
574 }
575
576 tr.hidden-sm.hidden-md {
577 display: none !important
578 }
579
580 th.hidden-sm.hidden-md, td.hidden-sm.hidden-md {
581 display: none !important
582 }
583 }
584
585 @media (min-width: 1200px) {
586 .hidden-sm.hidden-lg {
587 display: none !important
588 }
589
590 tr.hidden-sm.hidden-lg {
591 display: none !important
592 }
593
594 th.hidden-sm.hidden-lg, td.hidden-sm.hidden-lg {
595 display: none !important
596 }
597 }
598
599 .hidden-md {
600 display: block !important
601 }
602
603 tr.hidden-md {
604 display: table-row !important
605 }
606
607 th.hidden-md, td.hidden-md {
608 display: table-cell !important
609 }
610
611 @media (max-width: 767px) {
612 .hidden-md.hidden-xs {
613 display: none !important
614 }
615
616 tr.hidden-md.hidden-xs {
617 display: none !important
618 }
619
620 th.hidden-md.hidden-xs, td.hidden-md.hidden-xs {
621 display: none !important
622 }
623 }
624
625 @media (min-width: 768px) and (max-width: 991px) {
626 .hidden-md.hidden-sm {
627 display: none !important
628 }
629
630 tr.hidden-md.hidden-sm {
631 display: none !important
632 }
633
634 th.hidden-md.hidden-sm, td.hidden-md.hidden-sm {
635 display: none !important
636 }
637 }
638
639 @media (min-width: 992px) and (max-width: 1199px) {
640 .hidden-md {
641 display: none !important
642 }
643
644 tr.hidden-md {
645 display: none !important
646 }
647
648 th.hidden-md, td.hidden-md {
649 display: none !important
650 }
651 }
652
653 @media (min-width: 1200px) {
654 .hidden-md.hidden-lg {
655 display: none !important
656 }
657
658 tr.hidden-md.hidden-lg {
659 display: none !important
660 }
661
662 th.hidden-md.hidden-lg, td.hidden-md.hidden-lg {
663 display: none !important
664 }
665 }
666
667 .hidden-lg {
668 display: block !important
669 }
670
671 tr.hidden-lg {
672 display: table-row !important
673 }
674
675 th.hidden-lg, td.hidden-lg {
676 display: table-cell !important
677 }
678
679 @media (max-width: 767px) {
680 .hidden-lg.hidden-xs {
681 display: none !important
682 }
683
684 tr.hidden-lg.hidden-xs {
685 display: none !important
686 }
687
688 th.hidden-lg.hidden-xs, td.hidden-lg.hidden-xs {
689 display: none !important
690 }
691 }
692
693 @media (min-width: 768px) and (max-width: 991px) {
694 .hidden-lg.hidden-sm {
695 display: none !important
696 }
697
698 tr.hidden-lg.hidden-sm {
699 display: none !important
700 }
701
702 th.hidden-lg.hidden-sm, td.hidden-lg.hidden-sm {
703 display: none !important
704 }
705 }
706
707 @media (min-width: 992px) and (max-width: 1199px) {
708 .hidden-lg.hidden-md {
709 display: none !important
710 }
711
712 tr.hidden-lg.hidden-md {
713 display: none !important
714 }
715
716 th.hidden-lg.hidden-md, td.hidden-lg.hidden-md {
717 display: none !important
718 }
719 }
720
721 @media (min-width: 1200px) {
722 .hidden-lg {
723 display: none !important
724 }
725
726 tr.hidden-lg {
727 display: none !important
728 }
729
730 th.hidden-lg, td.hidden-lg {
731 display: none !important
732 }
733 }
734
735 .visible-print {
736 display: none !important
737 }
738
739 tr.visible-print {
740 display: none !important
741 }
742
743 th.visible-print, td.visible-print {
744 display: none !important
745 }
746
747 @media print {
748 .visible-print {
749 display: block !important
750 }
751
752 tr.visible-print {
753 display: table-row !important
754 }
755
756 th.visible-print, td.visible-print {
757 display: table-cell !important
758 }
759
760 .hidden-print {
761 display: none !important
762 }
763
764 tr.hidden-print {
765 display: none !important
766 }
767
768 th.hidden-print, td.hidden-print {
769 display: none !important
770 }
771 }
772
773 .container {
774 margin-right: auto;
775 margin-left: auto;
776 padding-left: 15px;
777 padding-right: 15px
778 }
779
780 .container:before, .container:after {
781 content: " ";
782 display: table
783 }
784
785 .container:after {
786 clear: both
787 }
788
789 .row-fluid {
790 margin-left: -15px;
791 margin-right: -15px
792 }
793
794 .row-fluid:before, .row-fluid:after {
795 content: " ";
796 display: table
797 }
798
799 .row-fluid:after {
800 clear: both
801 }
802
803 .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, .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, .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, .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 {
804 position: relative;
805 min-height: 1px;
806 padding-left: 15px;
807 padding-right: 15px
808 }
809
810 .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 {
811 float: left
812 }
813
814 .col-xs-1 {
815 width: 8.333333333333332%
816 }
817
818 .col-xs-2 {
819 width: 16.666666666666664%
820 }
821
822 .col-xs-3 {
823 width: 25%
824 }
825
826 .col-xs-4 {
827 width: 33.33333333333333%
828 }
829
830 .col-xs-5 {
831 width: 41.66666666666667%
832 }
833
834 .col-xs-6 {
835 width: 50%
836 }
837
838 .col-xs-7 {
839 width: 58.333333333333336%
840 }
841
842 .col-xs-8 {
843 width: 66.66666666666666%
844 }
845
846 .col-xs-9 {
847 width: 75%
848 }
849
850 .col-xs-10 {
851 width: 83.33333333333334%
852 }
853
854 .col-xs-11 {
855 width: 91.66666666666666%
856 }
857
858 .col-xs-12 {
859 width: 100%
860 }
861
862 @media (min-width: 768px) {
863 .container {
864 max-width: 750px
865 }
866
867 .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 {
868 float: left
869 }
870
871 .col-sm-1 {
872 width: 8.333333333333332%
873 }
874
875 .col-sm-2 {
876 width: 16.666666666666664%
877 }
878
879 .col-sm-3 {
880 width: 25%
881 }
882
883 .col-sm-4 {
884 width: 33.33333333333333%
885 }
886
887 .col-sm-5 {
888 width: 41.66666666666667%
889 }
890
891 .col-sm-6 {
892 width: 50%
893 }
894
895 .col-sm-7 {
896 width: 58.333333333333336%
897 }
898
899 .col-sm-8 {
900 width: 66.66666666666666%
901 }
902
903 .col-sm-9 {
904 width: 75%
905 }
906
907 .col-sm-10 {
908 width: 83.33333333333334%
909 }
910
911 .col-sm-11 {
912 width: 91.66666666666666%
913 }
914
915 .col-sm-12 {
916 width: 100%
917 }
918
919 .col-sm-push-1 {
920 left: 8.333333333333332%
921 }
922
923 .col-sm-push-2 {
924 left: 16.666666666666664%
925 }
926
927 .col-sm-push-3 {
928 left: 25%
929 }
930
931 .col-sm-push-4 {
932 left: 33.33333333333333%
933 }
934
935 .col-sm-push-5 {
936 left: 41.66666666666667%
937 }
938
939 .col-sm-push-6 {
940 left: 50%
941 }
942
943 .col-sm-push-7 {
944 left: 58.333333333333336%
945 }
946
947 .col-sm-push-8 {
948 left: 66.66666666666666%
949 }
950
951 .col-sm-push-9 {
952 left: 75%
953 }
954
955 .col-sm-push-10 {
956 left: 83.33333333333334%
957 }
958
959 .col-sm-push-11 {
960 left: 91.66666666666666%
961 }
962
963 .col-sm-pull-1 {
964 right: 8.333333333333332%
965 }
966
967 .col-sm-pull-2 {
968 right: 16.666666666666664%
969 }
970
971 .col-sm-pull-3 {
972 right: 25%
973 }
974
975 .col-sm-pull-4 {
976 right: 33.33333333333333%
977 }
978
979 .col-sm-pull-5 {
980 right: 41.66666666666667%
981 }
982
983 .col-sm-pull-6 {
984 right: 50%
985 }
986
987 .col-sm-pull-7 {
988 right: 58.333333333333336%
989 }
990
991 .col-sm-pull-8 {
992 right: 66.66666666666666%
993 }
994
995 .col-sm-pull-9 {
996 right: 75%
997 }
998
999 .col-sm-pull-10 {
1000 right: 83.33333333333334%
1001 }
1002
1003 .col-sm-pull-11 {
1004 right: 91.66666666666666%
1005 }
1006
1007 .col-sm-offset-1 {
1008 margin-left: 8.333333333333332%
1009 }
1010
1011 .col-sm-offset-2 {
1012 margin-left: 16.666666666666664%
1013 }
1014
1015 .col-sm-offset-3 {
1016 margin-left: 25%
1017 }
1018
1019 .col-sm-offset-4 {
1020 margin-left: 33.33333333333333%
1021 }
1022
1023 .col-sm-offset-5 {
1024 margin-left: 41.66666666666667%
1025 }
1026
1027 .col-sm-offset-6 {
1028 margin-left: 50%
1029 }
1030
1031 .col-sm-offset-7 {
1032 margin-left: 58.333333333333336%
1033 }
1034
1035 .col-sm-offset-8 {
1036 margin-left: 66.66666666666666%
1037 }
1038
1039 .col-sm-offset-9 {
1040 margin-left: 75%
1041 }
1042
1043 .col-sm-offset-10 {
1044 margin-left: 83.33333333333334%
1045 }
1046
1047 .col-sm-offset-11 {
1048 margin-left: 91.66666666666666%
1049 }
1050 }
1051
1052 @media (min-width: 992px) {
1053 .container {
1054 max-width: 970px
1055 }
1056
1057 .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 {
1058 float: left
1059 }
1060
1061 .col-md-1 {
1062 width: 8.333333333333332%
1063 }
1064
1065 .col-md-2 {
1066 width: 16.666666666666664%
1067 }
1068
1069 .col-md-3 {
1070 width: 25%
1071 }
1072
1073 .col-md-4 {
1074 width: 33.33333333333333%
1075 }
1076
1077 .col-md-5 {
1078 width: 41.66666666666667%
1079 }
1080
1081 .col-md-6 {
1082 width: 50%
1083 }
1084
1085 .col-md-7 {
1086 width: 58.333333333333336%
1087 }
1088
1089 .col-md-8 {
1090 width: 66.66666666666666%
1091 }
1092
1093 .col-md-9 {
1094 width: 75%
1095 }
1096
1097 .col-md-10 {
1098 width: 83.33333333333334%
1099 }
1100
1101 .col-md-11 {
1102 width: 91.66666666666666%
1103 }
1104
1105 .col-md-12 {
1106 width: 100%
1107 }
1108
1109 .col-md-push-0 {
1110 left: auto
1111 }
1112
1113 .col-md-push-1 {
1114 left: 8.333333333333332%
1115 }
1116
1117 .col-md-push-2 {
1118 left: 16.666666666666664%
1119 }
1120
1121 .col-md-push-3 {
1122 left: 25%
1123 }
1124
1125 .col-md-push-4 {
1126 left: 33.33333333333333%
1127 }
1128
1129 .col-md-push-5 {
1130 left: 41.66666666666667%
1131 }
1132
1133 .col-md-push-6 {
1134 left: 50%
1135 }
1136
1137 .col-md-push-7 {
1138 left: 58.333333333333336%
1139 }
1140
1141 .col-md-push-8 {
1142 left: 66.66666666666666%
1143 }
1144
1145 .col-md-push-9 {
1146 left: 75%
1147 }
1148
1149 .col-md-push-10 {
1150 left: 83.33333333333334%
1151 }
1152
1153 .col-md-push-11 {
1154 left: 91.66666666666666%
1155 }
1156
1157 .col-md-pull-0 {
1158 right: auto
1159 }
1160
1161 .col-md-pull-1 {
1162 right: 8.333333333333332%
1163 }
1164
1165 .col-md-pull-2 {
1166 right: 16.666666666666664%
1167 }
1168
1169 .col-md-pull-3 {
1170 right: 25%
1171 }
1172
1173 .col-md-pull-4 {
1174 right: 33.33333333333333%
1175 }
1176
1177 .col-md-pull-5 {
1178 right: 41.66666666666667%
1179 }
1180
1181 .col-md-pull-6 {
1182 right: 50%
1183 }
1184
1185 .col-md-pull-7 {
1186 right: 58.333333333333336%
1187 }
1188
1189 .col-md-pull-8 {
1190 right: 66.66666666666666%
1191 }
1192
1193 .col-md-pull-9 {
1194 right: 75%
1195 }
1196
1197 .col-md-pull-10 {
1198 right: 83.33333333333334%
1199 }
1200
1201 .col-md-pull-11 {
1202 right: 91.66666666666666%
1203 }
1204
1205 .col-md-offset-0 {
1206 margin-left: 0
1207 }
1208
1209 .col-md-offset-1 {
1210 margin-left: 8.333333333333332%
1211 }
1212
1213 .col-md-offset-2 {
1214 margin-left: 16.666666666666664%
1215 }
1216
1217 .col-md-offset-3 {
1218 margin-left: 25%
1219 }
1220
1221 .col-md-offset-4 {
1222 margin-left: 33.33333333333333%
1223 }
1224
1225 .col-md-offset-5 {
1226 margin-left: 41.66666666666667%
1227 }
1228
1229 .col-md-offset-6 {
1230 margin-left: 50%
1231 }
1232
1233 .col-md-offset-7 {
1234 margin-left: 58.333333333333336%
1235 }
1236
1237 .col-md-offset-8 {
1238 margin-left: 66.66666666666666%
1239 }
1240
1241 .col-md-offset-9 {
1242 margin-left: 75%
1243 }
1244
1245 .col-md-offset-10 {
1246 margin-left: 83.33333333333334%
1247 }
1248
1249 .col-md-offset-11 {
1250 margin-left: 91.66666666666666%
1251 }
1252 }
1253
1254 @media (min-width: 1200px) {
1255 .container {
1256 max-width: 1170px
1257 }
1258
1259 .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 {
1260 float: left
1261 }
1262
1263 .col-lg-1 {
1264 width: 8.333333333333332%
1265 }
1266
1267 .col-lg-2 {
1268 width: 16.666666666666664%
1269 }
1270
1271 .col-lg-3 {
1272 width: 25%
1273 }
1274
1275 .col-lg-4 {
1276 width: 33.33333333333333%
1277 }
1278
1279 .col-lg-5 {
1280 width: 41.66666666666667%
1281 }
1282
1283 .col-lg-6 {
1284 width: 50%
1285 }
1286
1287 .col-lg-7 {
1288 width: 58.333333333333336%
1289 }
1290
1291 .col-lg-8 {
1292 width: 66.66666666666666%
1293 }
1294
1295 .col-lg-9 {
1296 width: 75%
1297 }
1298
1299 .col-lg-10 {
1300 width: 83.33333333333334%
1301 }
1302
1303 .col-lg-11 {
1304 width: 91.66666666666666%
1305 }
1306
1307 .col-lg-12 {
1308 width: 100%
1309 }
1310
1311 .col-lg-push-0 {
1312 left: auto
1313 }
1314
1315 .col-lg-push-1 {
1316 left: 8.333333333333332%
1317 }
1318
1319 .col-lg-push-2 {
1320 left: 16.666666666666664%
1321 }
1322
1323 .col-lg-push-3 {
1324 left: 25%
1325 }
1326
1327 .col-lg-push-4 {
1328 left: 33.33333333333333%
1329 }
1330
1331 .col-lg-push-5 {
1332 left: 41.66666666666667%
1333 }
1334
1335 .col-lg-push-6 {
1336 left: 50%
1337 }
1338
1339 .col-lg-push-7 {
1340 left: 58.333333333333336%
1341 }
1342
1343 .col-lg-push-8 {
1344 left: 66.66666666666666%
1345 }
1346
1347 .col-lg-push-9 {
1348 left: 75%
1349 }
1350
1351 .col-lg-push-10 {
1352 left: 83.33333333333334%
1353 }
1354
1355 .col-lg-push-11 {
1356 left: 91.66666666666666%
1357 }
1358
1359 .col-lg-pull-0 {
1360 right: auto
1361 }
1362
1363 .col-lg-pull-1 {
1364 right: 8.333333333333332%
1365 }
1366
1367 .col-lg-pull-2 {
1368 right: 16.666666666666664%
1369 }
1370
1371 .col-lg-pull-3 {
1372 right: 25%
1373 }
1374
1375 .col-lg-pull-4 {
1376 right: 33.33333333333333%
1377 }
1378
1379 .col-lg-pull-5 {
1380 right: 41.66666666666667%
1381 }
1382
1383 .col-lg-pull-6 {
1384 right: 50%
1385 }
1386
1387 .col-lg-pull-7 {
1388 right: 58.333333333333336%
1389 }
1390
1391 .col-lg-pull-8 {
1392 right: 66.66666666666666%
1393 }
1394
1395 .col-lg-pull-9 {
1396 right: 75%
1397 }
1398
1399 .col-lg-pull-10 {
1400 right: 83.33333333333334%
1401 }
1402
1403 .col-lg-pull-11 {
1404 right: 91.66666666666666%
1405 }
1406
1407 .col-lg-offset-0 {
1408 margin-left: 0
1409 }
1410
1411 .col-lg-offset-1 {
1412 margin-left: 8.333333333333332%
1413 }
1414
1415 .col-lg-offset-2 {
1416 margin-left: 16.666666666666664%
1417 }
1418
1419 .col-lg-offset-3 {
1420 margin-left: 25%
1421 }
1422
1423 .col-lg-offset-4 {
1424 margin-left: 33.33333333333333%
1425 }
1426
1427 .col-lg-offset-5 {
1428 margin-left: 41.66666666666667%
1429 }
1430
1431 .col-lg-offset-6 {
1432 margin-left: 50%
1433 }
1434
1435 .col-lg-offset-7 {
1436 margin-left: 58.333333333333336%
1437 }
1438
1439 .col-lg-offset-8 {
1440 margin-left: 66.66666666666666%
1441 }
1442
1443 .col-lg-offset-9 {
1444 margin-left: 75%
1445 }
1446
1447 .col-lg-offset-10 {
1448 margin-left: 83.33333333333334%
1449 }
1450
1451 .col-lg-offset-11 {
1452 margin-left: 91.66666666666666%
1453 }
1454 }
1455
1456 .btn {
1457 display: inline-block;
1458 padding: 6px 12px;
1459 margin-bottom: 0;
1460 font-size: 14px;
1461 font-weight: normal;
1462 line-height: 1.428571429;
1463 text-align: center;
1464 vertical-align: middle;
1465 cursor: pointer;
1466 border: 1px solid transparent;
1467 border-radius: 0;
1468 white-space: nowrap;
1469 -webkit-user-select: none;
1470 -moz-user-select: none;
1471 -ms-user-select: none;
1472 -o-user-select: none;
1473 user-select: none
1474 }
1475
1476 .btn:focus {
1477 outline: thin dotted #333;
1478 outline: 5px auto -webkit-focus-ring-color;
1479 outline-offset: -2px
1480 }
1481
1482 .btn:hover, .btn:focus {
1483 color: #333;
1484 text-decoration: none
1485 }
1486
1487 .btn:active, .btn.active {
1488 outline: 0;
1489 background-image: none
1490 }
1491
1492 .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
1493 cursor: not-allowed;
1494 pointer-events: none;
1495 opacity: .65;
1496 filter: alpha(opacity=65);
1497 -webkit-box-shadow: none;
1498 box-shadow: none
1499 }
1500
1501 .btn-default {
1502 color: #333;
1503 background-color: #fff;
1504 border-color: #ccc
1505 }
1506
1507 .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
1508 color: #333;
1509 background-color: #ebebeb;
1510 border-color: #adadad
1511 }
1512
1513 .btn-default:active, .btn-default.active, .open .dropdown-toggle.btn-default {
1514 background-image: none
1515 }
1516
1517 .btn-default.disabled, .btn-default[disabled], fieldset[disabled] .btn-default, .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled:active, .btn-default[disabled]:active, fieldset[disabled] .btn-default:active, .btn-default.disabled.active, .btn-default[disabled].active, fieldset[disabled] .btn-default.active {
1518 background-color: #fff;
1519 border-color: #ccc
1520 }
1521
1522 .btn-primary {
1523 color: #fff;
1524 background-color: #428bca;
1525 border-color: #357ebd
1526 }
1527
1528 .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
1529 color: #fff;
1530 background-color: #3276b1;
1531 border-color: #285e8e
1532 }
1533
1534 .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary {
1535 background-image: none
1536 }
1537
1538 .btn-primary.disabled, .btn-primary[disabled], fieldset[disabled] .btn-primary, .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled:active, .btn-primary[disabled]:active, fieldset[disabled] .btn-primary:active, .btn-primary.disabled.active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary.active {
1539 background-color: #428bca;
1540 border-color: #357ebd
1541 }
1542
1543 .btn-warning {
1544 color: #fff;
1545 background-color: #f0ad4e;
1546 border-color: #eea236
1547 }
1548
1549 .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
1550 color: #fff;
1551 background-color: #ed9c28;
1552 border-color: #d58512
1553 }
1554
1555 .btn-warning:active, .btn-warning.active, .open .dropdown-toggle.btn-warning {
1556 background-image: none
1557 }
1558
1559 .btn-warning.disabled, .btn-warning[disabled], fieldset[disabled] .btn-warning, .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled:active, .btn-warning[disabled]:active, fieldset[disabled] .btn-warning:active, .btn-warning.disabled.active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning.active {
1560 background-color: #f0ad4e;
1561 border-color: #eea236
1562 }
1563
1564 .btn-danger {
1565 color: #fff;
1566 background-color: #d9534f;
1567 border-color: #d43f3a
1568 }
1569
1570 .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
1571 color: #fff;
1572 background-color: #d2322d;
1573 border-color: #ac2925
1574 }
1575
1576 .btn-danger:active, .btn-danger.active, .open .dropdown-toggle.btn-danger {
1577 background-image: none
1578 }
1579
1580 .btn-danger.disabled, .btn-danger[disabled], fieldset[disabled] .btn-danger, .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled:active, .btn-danger[disabled]:active, fieldset[disabled] .btn-danger:active, .btn-danger.disabled.active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger.active {
1581 background-color: #d9534f;
1582 border-color: #d43f3a
1583 }
1584
1585 .btn-success {
1586 color: #fff;
1587 background-color: #5cb85c;
1588 border-color: #4cae4c
1589 }
1590
1591 .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
1592 color: #fff;
1593 background-color: #47a447;
1594 border-color: #398439
1595 }
1596
1597 .btn-success:active, .btn-success.active, .open .dropdown-toggle.btn-success {
1598 background-image: none
1599 }
1600
1601 .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active {
1602 background-color: #5cb85c;
1603 border-color: #4cae4c
1604 }
1605
1606 .btn-info {
1607 color: #fff;
1608 background-color: #5bc0de;
1609 border-color: #46b8da
1610 }
1611
1612 .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
1613 color: #fff;
1614 background-color: #39b3d7;
1615 border-color: #269abc
1616 }
1617
1618 .btn-info:active, .btn-info.active, .open .dropdown-toggle.btn-info {
1619 background-image: none
1620 }
1621
1622 .btn-info.disabled, .btn-info[disabled], fieldset[disabled] .btn-info, .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled:active, .btn-info[disabled]:active, fieldset[disabled] .btn-info:active, .btn-info.disabled.active, .btn-info[disabled].active, fieldset[disabled] .btn-info.active {
1623 background-color: #5bc0de;
1624 border-color: #46b8da
1625 }
1626
1627 .btn-link {
1628 color: #428bca;
1629 font-weight: normal;
1630 cursor: pointer;
1631 border-radius: 0
1632 }
1633
1634 .btn-link, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
1635 background-color: transparent;
1636 -webkit-box-shadow: none;
1637 box-shadow: none
1638 }
1639
1640 .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
1641 border-color: transparent
1642 }
1643
1644 .btn-link:hover, .btn-link:focus {
1645 color: #2a6496;
1646 text-decoration: underline;
1647 background-color: transparent
1648 }
1649
1650 .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus {
1651 color: #999;
1652 text-decoration: none
1653 }
1654
1655 .btn-lg {
1656 padding: 10px 16px;
1657 font-size: 18px;
1658 line-height: 1.33;
1659 border-radius: 6px
1660 }
1661
1662 .btn-sm, .btn-xs {
1663 padding: 5px 10px;
1664 font-size: 12px;
1665 line-height: 1.5;
1666 border-radius: 3px
1667 }
1668
1669 .btn-xs {
1670 padding: 1px 5px
1671 }
1672
1673 .btn-block {
1674 display: block;
1675 width: 100%;
1676 padding-left: 0;
1677 padding-right: 0
1678 }
1679
1680 .btn-block + .btn-block {
1681 margin-top: 5px
1682 }
1683
1684 input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block {
1685 width: 100%
1686 }
1687
1688 .btn-default .caret {
1689 border-top-color: #333
1690 }
1691
1692 .btn-primary .caret, .btn-success .caret, .btn-warning .caret, .btn-danger .caret, .btn-info .caret {
1693 border-top-color: #fff
1694 }
1695
1696 .dropup .btn-default .caret {
1697 border-bottom-color: #333
1698 }
1699
1700 .dropup .btn-primary .caret, .dropup .btn-success .caret, .dropup .btn-warning .caret, .dropup .btn-danger .caret, .dropup .btn-info .caret {
1701 border-bottom-color: #fff
1702 }
1703
1704 .btn-group, .btn-group-vertical {
1705 position: relative;
1706 display: inline-block;
1707 vertical-align: middle
1708 }
1709
1710 .btn-group > .btn, .btn-group-vertical > .btn {
1711 position: relative;
1712 float: left
1713 }
1714
1715 .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active {
1716 z-index: 2
1717 }
1718
1719 .btn-group > .btn:focus, .btn-group-vertical > .btn:focus {
1720 outline: 0
1721 }
1722
1723 .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
1724 margin-left: -1px
1725 }
1726
1727 .btn-toolbar:before, .btn-toolbar:after {
1728 content: " ";
1729 display: table
1730 }
1731
1732 .btn-toolbar:after {
1733 clear: both
1734 }
1735
1736 .btn-toolbar .btn-group {
1737 float: left
1738 }
1739
1740 .btn-toolbar > .btn + .btn, .btn-toolbar > .btn-group + .btn, .btn-toolbar > .btn + .btn-group, .btn-toolbar > .btn-group + .btn-group {
1741 margin-left: 5px
1742 }
1743
1744 .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
1745 border-radius: 0
1746 }
1747
1748 .btn-group > .btn:first-child {
1749 margin-left: 0
1750 }
1751
1752 .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
1753 border-bottom-right-radius: 0;
1754 border-top-right-radius: 0
1755 }
1756
1757 .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
1758 border-bottom-left-radius: 0;
1759 border-top-left-radius: 0
1760 }
1761
1762 .btn-group > .btn-group {
1763 float: left
1764 }
1765
1766 .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
1767 border-radius: 0
1768 }
1769
1770 .btn-group > .btn-group:first-child > .btn:last-child, .btn-group > .btn-group:first-child > .dropdown-toggle {
1771 border-bottom-right-radius: 0;
1772 border-top-right-radius: 0
1773 }
1774
1775 .btn-group > .btn-group:last-child > .btn:first-child {
1776 border-bottom-left-radius: 0;
1777 border-top-left-radius: 0
1778 }
1779
1780 .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
1781 outline: 0
1782 }
1783
1784 .btn-group-xs > .btn {
1785 padding: 5px 10px;
1786 font-size: 12px;
1787 line-height: 1.5;
1788 border-radius: 3px;
1789 padding: 1px 5px
1790 }
1791
1792 .btn-group-sm > .btn {
1793 padding: 5px 10px;
1794 font-size: 12px;
1795 line-height: 1.5;
1796 border-radius: 3px
1797 }
1798
1799 .btn-group-lg > .btn {
1800 padding: 10px 16px;
1801 font-size: 18px;
1802 line-height: 1.33;
1803 border-radius: 6px
1804 }
1805
1806 .btn-group > .btn + .dropdown-toggle {
1807 padding-left: 8px;
1808 padding-right: 8px
1809 }
1810
1811 .btn-group > .btn-lg + .dropdown-toggle {
1812 padding-left: 12px;
1813 padding-right: 12px
1814 }
1815
1816 .btn-group.open .dropdown-toggle {
1817 background: #f2f2f2
1818 }
1819
1820 .btn .caret {
1821 margin-left: 0
1822 }
1823
1824 .btn-lg .caret {
1825 border-width: 5px 5px 0;
1826 border-bottom-width: 0
1827 }
1828
1829 .dropup .btn-lg .caret {
1830 border-width: 0 5px 5px
1831 }
1832
1833 .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
1834 display: block;
1835 float: none;
1836 width: 100%;
1837 max-width: 100%
1838 }
1839
1840 .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
1841 content: " ";
1842 display: table
1843 }
1844
1845 .btn-group-vertical > .btn-group:after {
1846 clear: both
1847 }
1848
1849 .btn-group-vertical > .btn-group > .btn {
1850 float: none
1851 }
1852
1853 .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
1854 margin-top: -1px;
1855 margin-left: 0
1856 }
1857
1858 .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
1859 border-radius: 0
1860 }
1861
1862 .btn-group-vertical > .btn:first-child:not(:last-child) {
1863 border-top-right-radius: 0;
1864 border-bottom-right-radius: 0;
1865 border-bottom-left-radius: 0
1866 }
1867
1868 .btn-group-vertical > .btn:last-child:not(:first-child) {
1869 border-bottom-left-radius: 0;
1870 border-top-right-radius: 0;
1871 border-top-left-radius: 0
1872 }
1873
1874 .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
1875 border-radius: 0
1876 }
1877
1878 .btn-group-vertical > .btn-group:first-child > .btn:last-child, .btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
1879 border-bottom-right-radius: 0;
1880 border-bottom-left-radius: 0
1881 }
1882
1883 .btn-group-vertical > .btn-group:last-child > .btn:first-child {
1884 border-top-right-radius: 0;
1885 border-top-left-radius: 0
1886 }
1887
1888 .btn-group-justified {
1889 display: table;
1890 width: 100%;
1891 table-layout: fixed;
1892 border-collapse: separate
1893 }
1894
1895 .btn-group-justified .btn {
1896 float: none;
1897 display: table-cell;
1898 width: 1%
1899 }
1900
1901 [data-toggle="buttons"] > .btn > input[type="radio"], [data-toggle="buttons"] > .btn > input[type="checkbox"] {
1902 display: none
1903 }
1904
1905 .caret {
1906 display: inline-block;
1907 width: 0;
1908 height: 0;
1909 margin-left: 2px;
1910 vertical-align: middle;
1911 border-top: 4px solid #000;
1912 border-right: 4px solid transparent;
1913 border-left: 4px solid transparent;
1914 border-bottom: 0 dotted;
1915 content: ""
1916 }
1917
1918 .dropdown {
1919 position: relative
1920 }
1921
1922 .dropdown-toggle:focus {
1923 outline: 0
1924 }
1925
1926 .dropdown-menu {
1927 position: absolute;
1928 top: 100%;
1929 left: 0;
1930 z-index: 1000;
1931 display: none;
1932 float: left;
1933 min-width: 160px;
1934 padding: 5px 0;
1935 margin: 2px 0 0;
1936 list-style: none;
1937 font-size: 14px;
1938 background-color: #fff;
1939 border: 1px solid #ccc;
1940 border: 1px solid rgba(0, 0, 0, 0.15);
1941 border-radius: 0;
1942 background-clip: padding-box
1943 }
1944
1945 .dropdown-menu.pull-right {
1946 right: 0;
1947 left: auto
1948 }
1949
1950 .dropdown-menu .divider {
1951 height: 1px;
1952 margin: 9px 0;
1953 overflow: hidden;
1954 background-color: #e5e5e5
1955 }
1956
1957 .dropdown-menu > li > a {
1958 font-size: 14px;
1959 text-decoration: none;
1960 display: block;
1961 padding: 5px 20px;
1962 clear: both;
1963 font-weight: normal;
1964 line-height: 1.428571429;
1965 color: #333;
1966 white-space: nowrap
1967 }
1968
1969 .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
1970 text-decoration: none;
1971 color: #fff;
1972 background-color: #428bca
1973 }
1974
1975 .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
1976 color: #fff;
1977 text-decoration: none;
1978 outline: 0;
1979 background-color: #428bca
1980 }
1981
1982 .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
1983 color: #999
1984 }
1985
1986 .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
1987 text-decoration: none;
1988 background-color: transparent;
1989 background-image: none;
1990 filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
1991 cursor: not-allowed
1992 }
1993
1994 .open > .dropdown-menu {
1995 display: block
1996 }
1997
1998 .open > a {
1999 outline: 0
2000 }
2001
2002 .dropdown-header {
2003 display: block;
2004 padding: 3px 20px;
2005 font-size: 12px;
2006 line-height: 1.428571429;
2007 color: #999
2008 }
2009
2010 .dropdown-backdrop {
2011 position: fixed;
2012 left: 0;
2013 right: 0;
2014 bottom: 0;
2015 top: 0;
2016 z-index: 990
2017 }
2018
2019 .pull-right > .dropdown-menu {
2020 right: 0;
2021 left: auto
2022 }
2023
2024 .dropup .caret, .navbar-fixed-bottom .dropdown .caret {
2025 border-top: 0 dotted;
2026 border-bottom: 4px solid #000;
2027 content: ""
2028 }
2029
2030 .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
2031 top: auto;
2032 bottom: 100%;
2033 margin-bottom: 1px
2034 }
2035
2036 @media (min-width: 768px) {
2037 .navbar-right .dropdown-menu {
2038 right: 0;
2039 left: auto
2040 }
2041 }
2042
2043 body, html {
2044 font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
2045 margin: 0;
2046 background: #ededed;
2047 color: #343437;
2048 line-height: 2em;
2049 font-weight: 300;
2050 font-size: .95em
2051 }
2052
2053 h1 {
2054 font-size: 2.5em;
2055 margin: .8em 0
2056 }
2057
2058 body.center {
2059 padding: 0 30px;
2060 background: #FFF;
2061 font-size: 1em
2062 }
2063
2064 ul li {
2065 list-style-type: disc
2066 }
2067
2068 a {
2069 color: #4290ad;
2070 text-decoration: none;
2071 font-weight: normal
2072 }
2073
2074 a:hover {
2075 text-decoration: underline
2076 }
2077
2078 h1, h2, h3 {
2079 font-weight: 300;
2080 line-height: 1.2em
2081 }
2082
2083 .topNav, .bottomNav {
2084 background: #f2f2f2;
2085 margin: 0 -30px;
2086 margin-bottom: 20px
2087 }
2088
2089 .topNav:before, .bottomNav:before, .topNav:after, .bottomNav:after {
2090 content: " ";
2091 display: table
2092 }
2093
2094 .topNav:after, .bottomNav:after {
2095 clear: both
2096 }
2097
2098 .topNav ul.navList, .bottomNav ul.navList {
2099 padding: 10px 20px;
2100 margin: 0;
2101 list-style-type: none
2102 }
2103
2104 .topNav ul.navList li, .bottomNav ul.navList li {
2105 display: inline;
2106 padding: 0 10px
2107 }
2108
2109 .topNav ul.navList li.navBarCell1Rev, .bottomNav ul.navList li.navBarCell1Rev {
2110 font-weight: bold
2111 }
2112
2113 .bottomNav {
2114 margin-top: 30px;
2115 margin-bottom: 0
2116 }
2117
2118 .aboutLanguage {
2119 color: #BBB;
2120 background: white;
2121 text-align: center;
2122 padding: 20px 0
2123 }
2124
2125 .subNav {
2126 padding-bottom: 10px;
2127 margin-bottom: 10px;
2128 border-bottom: 1px solid #EEE
2129 }
2130
2131 .subNav:before, .subNav:after {
2132 content: " ";
2133 display: table
2134 }
2135
2136 .subNav:after {
2137 clear: both
2138 }
2139
2140 .subNav div:before, .subNav div:after {
2141 content: " ";
2142 display: table
2143 }
2144
2145 .subNav div:after {
2146 clear: both
2147 }
2148
2149 .subNav ul.navList, .subNav ul {
2150 font-size: .9em;
2151 margin: 0;
2152 padding: 00;
2153 float: left;
2154 list-style-type: none
2155 }
2156
2157 .subNav ul.navList li, .subNav ul li {
2158 padding: 0 5px;
2159 display: inline
2160 }
2161
2162 table.overviewSummary, .contentContainer ul li table {
2163 width: 100%;
2164 margin: 20px 0
2165 }
2166
2167 table.overviewSummary caption, .contentContainer ul li table caption {
2168 text-align: left;
2169 font-weight: 100;
2170 font-size: 1em;
2171 float: left;
2172 padding: 0 10px;
2173 margin-top: 10px;
2174 background: #db4800;
2175 color: white
2176 }
2177
2178 table.overviewSummary tr th, .contentContainer ul li table tr th {
2179 padding: 10px;
2180 font-weight: bold;
2181 font-size: 1em;
2182 text-align: left
2183 }
2184
2185 table.overviewSummary tr td, .contentContainer ul li table tr td {
2186 vertical-align: top;
2187 font-size: .9em;
2188 padding: 5px 10px;
2189 border-top: 1px solid #EEE
2190 }
2191
2192 table.overviewSummary tbody > tr:nth-child(odd) > td, .contentContainer ul li table tbody > tr:nth-child(odd) > td {
2193 background-color: #f9f9f9
2194 }
2195
2196 body.left {
2197 padding-top: 10px
2198 }
2199
2200 body.left h1, body.left h2 {
2201 display: inline;
2202 text-align: left;
2203 font-weight: 100;
2204 font-size: 1em;
2205 margin: 0 10px;
2206 padding: 3px 10px;
2207 margin-top: 10px;
2208 background: #db4800;
63 color: white; 2209 color: white;
64 text-align: left; 2210 line-height: 40px
65 } 2211 }
66 2212
67 .TableHeadingColor th 2213 body.left .indexHeader {
68 { 2214 margin: 0;
69 background-color: #569D2F; 2215 padding: 0 15px;
70 background-repeat: repeat-x; 2216 font-size: .9em
71 color:#fff; 2217 }
72 font-size:14px; 2218
73 height:26px; 2219 body.left ul {
74 } 2220 list-style-type: none;
75 .TableHeadingColor th font[size="+2"] 2221 margin: 0;
76 { 2222 padding: 0
77 font-size: 10pt; 2223 }
78 } 2224
79 table.parameters tbody th 2225 body.left ul li {
80 { 2226 margin: 0;
81 background: #F4F4F4; 2227 padding: 0
82 color: #333; 2228 }
83 border: 1px dotted #ccc; 2229
84 font-weight: normal; 2230 body.left ul li a {
85 } 2231 display: block;
86 table.parameters thead tr.columnHeaders th 2232 padding: 0 15px;
87 { 2233 text-decoration: none
88 background: #e6e6e6; 2234 }
89 color: #6e6e6e; 2235
90 border-left: 1px dotted #999; 2236 body.left ul li a:hover {
91 border-right: 1px dotted #999; 2237 text-decoration: underline
92 } 2238 }
93 body > dt > b 2239
94 { 2240 .contentContainer .header ul, .contentContainer ul.blockList {
95 display: block; 2241 padding: 0
96 padding: 0.3em 0 0 0.3em; 2242 }
97 margin-top: 1em; 2243
98 background: #569D2F; 2244 .contentContainer .header ul > li, .contentContainer ul.blockList > li {
99 color: #fff; 2245 list-style-type: none
100 border: 1px solid black; 2246 }
101 font-size: 14px; 2247
102 height: 26px; 2248 .contentContainer ul.inheritance {
103 } 2249 margin-left: 0;
104 2250 padding-left: 0
105 .TableSubHeadingColor 2251 }
106 { 2252
107 background: #f7ffee; 2253 .contentContainer ul.inheritance li {
108 2254 list-style-type: none
109 } 2255 }
110 .TableSubHeadingColor a 2256
111 { 2257 .contentContainer ul.inheritance ul.inheritance {
112 color: white; 2258 padding-left: 20px
113 text-decoration: underline; 2259 }
114 } 2260
115 .TableSubHeadingColor a:hover 2261 .contentContainer hr {
116 { 2262 border: 0 none;
117 color: white; 2263 border-top: 1px solid #EEE;
118 text-decoration: underline; 2264 margin-top: 30px;
119 } 2265 margin-botom: 0
120 2266 }
121 .TableRowColor 2267
122 { 2268 ul.blockList ul.blockList, ul.blockList ul.blockListLast {
123 background: #fff; 2269 border: 1px solid #EEE;
124 } 2270 margin: 20px 0;
125 2271 padding: 0 20px
126 .TableRowColor a 2272 }
127 { 2273
128 border-bottom:none; 2274 ul.blockList ul.blockList h4, ul.blockList ul.blockListLast h4, ul.blockList ul.blockList h3, ul.blockList ul.blockListLast h3 {
129 color:#569D2F; 2275 font-size: 1em;
130 font-weight:normal; 2276 font-weight: bold;
131 } 2277 line-height: 2em;
132 2278 text-indent: 10px;
133 tr.TableRowColor:hover 2279 border-bottom: 1px solid #EEE;
134 { 2280 margin: 0 -20px;
135 background:#eef2e1; 2281 padding: 5px 0;
136 } 2282 background: #f2f2f2
137 2283 }
138 2284
139 /* Font used in left-hand frame lists */ 2285 ul.blockList ul.blockList li, ul.blockList ul.blockListLast li {
140 .FrameTitleFont 2286 list-style-type: none
141 { 2287 }
142 font-size: 120%; 2288
143 font-weight:bold; 2289 ul.horizontal {
144 } 2290 list-style-type: none;
145 2291 padding: 0;
146 .FrameTitleFont a 2292 margin: 0;
147 { 2293 font-size: .9em
148 color: #333; 2294 }
149 } 2295
150 2296 ul.horizontal li {
151 .FrameHeadingFont 2297 display: inline
152 { 2298 }
153 font-weight: bold; 2299
154 font-size:95%; 2300 span.strong {
155 } 2301 font-weight: bold
156 2302 }
157 .FrameItemFont 2303
158 { 2304 a span.strong {
159 line-height:130%; 2305 font-weight: normal
160 font-size: 95%; 2306 }
161 }
162
163 .FrameItemFont a
164 {
165 color:#333;
166 }
167
168 .FrameItemFont a:hover
169 {
170 color:#249901;
171 border-bottom:none;
172 text-decoration:underline;
173 }
174
175 /* Navigation bar fonts and colors */
176 .NavBarCell1
177 {
178 background-color:#fff;
179 border:none;
180 }
181
182 .NavBarCell1Rev
183 {
184 background-color:#e3faa5;
185 border:1px solid #9ad00c;
186 padding:0;
187 margin:0;
188 }
189
190 .NavBarCell1 a
191 {
192 color:#333;
193 text-decoration:none;
194 }
195
196 .NavBarFont1Rev
197 {
198
199 }
200
201 .NavBarCell2
202 {
203 border:none;
204 }
205
206 .NavBarCell2 a
207 {
208 color:#569D2F;
209 font-size:90%;
210 }
211
212 .NavBarCell3
213 {
214 border:none;
215 }