├── README.md ├── add.php ├── api.php ├── assets ├── API-dashboard.1.1.0.min.css ├── NABIA.png ├── bootstrap.min.css └── style.css ├── capes ├── nabiacape.png └── nabiacapedev.png ├── dashboard ├── config.php ├── index.php ├── login.php ├── logout.php ├── logs.php ├── scripts │ └── app │ │ └── app.1.1.0.js └── today-logs.php ├── index.php ├── logs ├── API-USAGE-14.3.2022.log ├── API-USAGE.log └── log_14.3.2022.log ├── upload.php ├── users.json └── uuid.json /README.md: -------------------------------------------------------------------------------- 1 | # Cape-API 2 | This is the cape API for Hacked Clients, You Can use this api by looking at the documentaion below. 3 | 4 | 5 | URL : "http://localhost/" 6 | 7 | To Get A Users Cape You shall use the URL 8 | 9 | ```gradle 10 | http://localhost/api.php?username={USERNAME} 11 | ``` 12 | Were it states "{USERNAME}" you shall replace it wil the Users mc name and or code you want to use to verify them 13 | 14 | the end result will be something like 15 | 16 | ```gradle 17 | http://localhost/api.php?username=TuxIsCool 18 | ``` 19 | 20 | This Will return An image that you can use 21 | 22 | # Adding / Removing Users 23 | 24 | To Add A User You Can Use The GUI Hosted on the base domain 25 | 26 | ```gradle 27 | http://localhost/add.php 28 | ``` 29 | This URL Will Take You To The Adding Page 30 | 31 | To Remove A User you can use the main page and click the X next to the users name you wish to remove 32 | 33 | 34 | # Password 35 | 36 | For the password vist https://phppasswordhash.com/ and hash your password then place it in 37 | 38 | ```gradle 39 | dashboard/config.php 40 | ``` 41 | 42 | on line 4 -------------------------------------------------------------------------------- /add.php: -------------------------------------------------------------------------------- 1 | 42 | 43 | 44 | 45 | 46 | Cape API 47 | 48 | 49 | 50 | 51 | 52 | 53 |

Nabia | Capes API

54 | Home 55 |
56 |
57 | 58 | 59 | 72 |
73 | 74 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- 1 | .main-navbar { 593 | box-shadow: 0 .125rem .625rem rgba(90, 97, 105, .12) 594 | } 595 | 596 | .main-sidebar { 597 | top: 0; 598 | position: fixed; 599 | height: calc(100vh); 600 | background: #fff; 601 | z-index: 1070; 602 | will-change: transform; 603 | transition: -webkit-transform .2s ease-in-out; 604 | transition: transform .2s ease-in-out; 605 | transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out; 606 | box-shadow: 0 .125rem 9.375rem rgba(90, 97, 105, .1), 0 .25rem .5rem rgba(90, 97, 105, .12), 0 .9375rem 1.375rem rgba(90, 97, 105, .1), 0 .4375rem 2.1875rem rgba(165, 182, 201, .1) 607 | } 608 | 609 | .main-sidebar.open { 610 | -webkit-transform: translateX(0); 611 | transform: translateX(0); 612 | box-shadow: 0 .125rem 9.375rem rgba(90, 97, 105, .1), 0 .25rem .5rem rgba(90, 97, 105, .12), 0 .9375rem 1.375rem rgba(90, 97, 105, .1), 0 .4375rem 2.1875rem rgba(165, 182, 201, .1) 613 | } 614 | 615 | .main-sidebar .toggle-sidebar { 616 | position: absolute; 617 | right: 0; 618 | height: 100%; 619 | padding: 1.25rem; 620 | font-size: 1.25rem; 621 | border-left: 1px solid #e1e5eb 622 | } 623 | 624 | .main-sidebar .toggle-sidebar:hover { 625 | cursor: pointer 626 | } 627 | 628 | .main-sidebar .navbar-brand { 629 | overflow: hidden; 630 | height: 3.75rem; 631 | font-size: 1rem 632 | } 633 | 634 | .main-sidebar .nav-wrapper { 635 | overflow-y: auto; 636 | overflow-x: hidden; 637 | height: calc(100vh - 3.75rem - 1px) 638 | } 639 | 640 | .main-sidebar .nav .nav-item, 641 | .main-sidebar .nav .nav-link { 642 | white-space: nowrap; 643 | min-width: 100%; 644 | max-width: 100%; 645 | overflow: hidden; 646 | text-overflow: ellipsis; 647 | font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 648 | will-change: background-color, box-shadow, color; 649 | transition: box-shadow .2s ease, color .2s ease, background-color .2s ease; 650 | font-size: .85rem 651 | } 652 | 653 | .main-sidebar .nav .nav-item .nav-link { 654 | border-bottom: 1px solid #e1e5eb; 655 | font-weight: 400; 656 | color: #3d5170; 657 | padding: .9375rem 1.5625rem 658 | } 659 | 660 | .main-sidebar .nav .nav-item .nav-link i { 661 | min-width: 1.25rem; 662 | font-size: 90%; 663 | text-align: center; 664 | vertical-align: middle; 665 | will-change: color; 666 | color: #cacedb; 667 | transition: color .2s ease; 668 | margin-right: .375rem 669 | } 670 | 671 | .main-sidebar .nav .nav-item .nav-link i.material-icons { 672 | font-size: 1.125rem; 673 | top: -1px 674 | } 675 | 676 | .main-sidebar .nav .nav-item .nav-link.active, 677 | .main-sidebar .nav .nav-item .nav-link:hover, 678 | .main-sidebar .nav .nav-item.active, 679 | .main-sidebar .nav .nav-item:hover { 680 | box-shadow: inset .1875rem 0 0 #007bff; 681 | background-color: #fbfbfb; 682 | color: #007bff 683 | } 684 | 685 | .main-sidebar .nav .nav-item .nav-link.active i, 686 | .main-sidebar .nav .nav-item .nav-link:hover i, 687 | .main-sidebar .nav .nav-item.active i, 688 | .main-sidebar .nav .nav-item:hover i { 689 | color: #007bff 690 | } 691 | 692 | .main-sidebar .nav--no-borders .nav-item .nav-link { 693 | border-bottom: 0 694 | } 695 | 696 | .main-sidebar .nav--no-borders .dropdown-menu { 697 | box-shadow: inset 0 0 .4375rem rgba(61, 81, 112, .2) 698 | } 699 | 700 | .main-sidebar .nav--no-borders .dropdown-menu .dropdown-item:first-child { 701 | border-top: 1px solid #e1e5eb 702 | } 703 | 704 | .main-sidebar .dropdown-menu { 705 | position: static!important; 706 | -webkit-transform: translate(0)!important; 707 | transform: translate(0)!important; 708 | box-shadow: none; 709 | border-radius: 0; 710 | width: 100%; 711 | border: none; 712 | padding: 0; 713 | box-shadow: inset 0 -.1875rem .1875rem rgba(61, 81, 112, .08) 714 | } 715 | 716 | .main-sidebar .dropdown-menu .dropdown-item { 717 | padding: .75rem 1.75rem; 718 | border-bottom: 1px solid #f0f2f5; 719 | color: #3d5170; 720 | font-size: .8125rem; 721 | font-weight: 400 722 | } 723 | 724 | .main-sidebar .dropdown-menu .dropdown-item.active, 725 | .main-sidebar .dropdown-menu .dropdown-item:hover { 726 | color: #007bff 727 | } 728 | 729 | .main-sidebar .dropdown-menu .dropdown-item:hover { 730 | background: 0 0 731 | } 732 | 733 | .main-sidebar .dropdown-menu .dropdown-item.active { 734 | background-color: #fbfbfb 735 | } 736 | 737 | .main-sidebar .dropdown-menu .dropdown-item:last-of-type { 738 | border-bottom: 1px solid #e1e5eb 739 | } 740 | 741 | .main-sidebar .dropdown-menu .dropdown-divider { 742 | margin: 0 743 | } 744 | 745 | .main-sidebar .dropdown-toggle { 746 | position: relative 747 | } 748 | 749 | .main-sidebar .dropdown-toggle::after { 750 | background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTcuNDEgNy44NEwxMiAxMi40Mmw0LjU5LTQuNThMMTggOS4yNWwtNiA2LTYtNnoiLz4gICAgPHBhdGggZD0iTTAtLjc1aDI0djI0SDB6IiBmaWxsPSJub25lIi8+PC9zdmc+); 751 | background-position: center center; 752 | width: .875rem; 753 | height: .5625rem; 754 | transition: -webkit-transform 250ms ease-in-out; 755 | transition: transform 250ms ease-in-out; 756 | transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out; 757 | border: none; 758 | position: absolute; 759 | top: 50%; 760 | right: .625rem; 761 | -webkit-transform: translateY(-50%); 762 | transform: translateY(-50%); 763 | opacity: .1; 764 | will-change: transform 765 | } 766 | 767 | .main-sidebar .dropdown.show .dropdown-toggle::after { 768 | -webkit-transform: translateY(-50%) rotateZ(180deg); 769 | transform: translateY(-50%) rotateZ(180deg) 770 | } 771 | 772 | .main-navbar__search .input-group-prepend .input-group-text, 773 | .main-sidebar__search .input-group-prepend .input-group-text { 774 | font-size: .6875rem; 775 | padding: .75rem 1.0625rem 776 | } 777 | 778 | .main-footer { 779 | height: 3.75rem 780 | } 781 | 782 | .main-footer .copyright { 783 | color: #818ea3 784 | } 785 | 786 | .page-header .page-title { 787 | font-size: 1.625rem; 788 | font-weight: 500; 789 | line-height: 1; 790 | margin: 0; 791 | padding: 0 792 | } 793 | 794 | .page-header .page-subtitle { 795 | letter-spacing: .125rem; 796 | color: #818ea3; 797 | font-size: .625rem 798 | } 799 | 800 | .stats-small { 801 | min-height: 8.7rem; 802 | overflow: hidden!important 803 | } 804 | 805 | .stats-small canvas { 806 | position: absolute; 807 | bottom: 0 808 | } 809 | 810 | .stats-small__data { 811 | -ms-flex: 1; 812 | flex: 1; 813 | display: -ms-flexbox; 814 | display: flex; 815 | -ms-flex-pack: center; 816 | justify-content: center; 817 | -ms-flex-flow: column; 818 | flex-flow: column; 819 | max-width: 50%; 820 | z-index: 1 821 | } 822 | 823 | .stats-small__label { 824 | font-size: .625rem; 825 | letter-spacing: .0625rem; 826 | color: #818ea3 827 | } 828 | 829 | .stats-small__value { 830 | font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; 831 | font-size: 1.5rem; 832 | font-weight: 500 833 | } 834 | 835 | .stats-small__percentage { 836 | position: relative; 837 | display: table; 838 | margin-left: auto; 839 | padding-left: .9375rem 840 | } 841 | 842 | .stats-small__percentage--decrease, 843 | .stats-small__percentage--increase { 844 | font-size: .75rem 845 | } 846 | 847 | .stats-small__percentage--decrease::before, 848 | .stats-small__percentage--increase::before { 849 | content: ""; 850 | width: .75rem; 851 | height: .375rem; 852 | position: absolute; 853 | left: 0; 854 | top: 50%; 855 | -webkit-transform: translateY(-50%); 856 | transform: translateY(-50%); 857 | background-position: center center; 858 | background-repeat: no-repeat 859 | } 860 | 861 | .stats-small__percentage--increase { 862 | color: #17c671 863 | } 864 | 865 | .stats-small__percentage--increase::before { 866 | background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMTdjNjcxIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gPHBhdGggZD0iTTcgMTRsNS01IDUgNXoiLz4gPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiA8L3N2Zz4=) 867 | } 868 | 869 | .stats-small__percentage--decrease { 870 | color: #c4183c 871 | } 872 | 873 | .stats-small__percentage--decrease::before { 874 | background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjYzQxODNjIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTcgMTBsNSA1IDUtNXoiLz4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==) 875 | } 876 | 877 | .stats-small--1 .stats-small__data { 878 | max-width: 100% 879 | } 880 | 881 | .stats-small--1 .stats-small__percentage { 882 | margin: 0 auto 883 | } 884 | 885 | .stats-small--1 .stats-small__value { 886 | font-size: 2.0625rem 887 | } 888 | 889 | .stats-small--1 .stats-small__label { 890 | font-size: .75rem 891 | } 892 | 893 | .stats-small--1 .stats-small__percentage { 894 | font-size: .75rem 895 | } 896 | 897 | .stats-small--1 canvas { 898 | opacity: .5 899 | } 900 | -------------------------------------------------------------------------------- /assets/NABIA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThnksCJ/Cape-API/f5a85da386baf0d10ace17d64b56f69d80bc108a/assets/NABIA.png -------------------------------------------------------------------------------- /assets/bootstrap.min.css: -------------------------------------------------------------------------------- 1 | /*!* Bootstrap v3.3.7 (http://getbootstrap.com)* Copyright 2011-2016 Twitter, Inc.* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*/ 2 | /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ 3 | html{ 4 | font-family:sans-serif; 5 | -webkit-text-size-adjust:100%; 6 | -ms-text-size-adjust:100% 7 | } 8 | body{ 9 | margin:0 10 | } 11 | article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{ 12 | display:block 13 | } 14 | audio,canvas,progress,video{ 15 | display:inline-block; 16 | vertical-align:baseline 17 | } 18 | audio:not([controls]){ 19 | display:none; 20 | height:0 21 | } 22 | [hidden],template{ 23 | display:none 24 | } 25 | a{ 26 | background-color:transparent 27 | } 28 | a:active,a:hover{ 29 | outline:0 30 | } 31 | abbr[title]{ 32 | border-bottom:1px dotted 33 | } 34 | b,strong{ 35 | font-weight:700 36 | } 37 | dfn{ 38 | font-style:italic 39 | } 40 | h1{ 41 | margin:.67em 0; 42 | font-size:2em 43 | } 44 | mark{ 45 | color:#000; 46 | background:#ff0 47 | } 48 | small{ 49 | font-size:80% 50 | } 51 | sub,sup{ 52 | position:relative; 53 | font-size:75%; 54 | line-height:0; 55 | vertical-align:baseline 56 | } 57 | sup{ 58 | top:-.5em 59 | } 60 | sub{ 61 | bottom:-.25em 62 | } 63 | img{ 64 | border:0 65 | } 66 | svg:not(:root){ 67 | overflow:hidden 68 | } 69 | figure{ 70 | margin:1em 40px 71 | } 72 | hr{ 73 | height:0; 74 | -webkit-box-sizing:content-box; 75 | -moz-box-sizing:content-box; 76 | box-sizing:content-box 77 | } 78 | pre{ 79 | overflow:auto 80 | } 81 | code,kbd,pre,samp{ 82 | font-family:monospace,monospace; 83 | font-size:1em 84 | } 85 | button,input,optgroup,select,textarea{ 86 | margin:0; 87 | font:inherit; 88 | color:inherit 89 | } 90 | button{ 91 | overflow:visible 92 | } 93 | button,select{ 94 | text-transform:none 95 | } 96 | button,html input[type=button],input[type=reset],input[type=submit]{ 97 | -webkit-appearance:button; 98 | cursor:pointer 99 | } 100 | button[disabled],html input[disabled]{ 101 | cursor:default 102 | } 103 | button::-moz-focus-inner,input::-moz-focus-inner{ 104 | padding:0; 105 | border:0 106 | } 107 | input{ 108 | line-height:normal 109 | } 110 | input[type=checkbox],input[type=radio]{ 111 | -webkit-box-sizing:border-box; 112 | -moz-box-sizing:border-box; 113 | box-sizing:border-box; 114 | padding:0 115 | } 116 | input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{ 117 | height:auto 118 | } 119 | input[type=search]{ 120 | -webkit-box-sizing:content-box; 121 | -moz-box-sizing:content-box; 122 | box-sizing:content-box; 123 | -webkit-appearance:textfield 124 | } 125 | input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{ 126 | -webkit-appearance:none 127 | } 128 | fieldset{ 129 | padding:.35em .625em .75em; 130 | margin:0 2px; 131 | border:1px solid silver 132 | } 133 | legend{ 134 | padding:0; 135 | border:0 136 | } 137 | textarea{ 138 | overflow:auto 139 | } 140 | optgroup{ 141 | font-weight:700 142 | } 143 | table{ 144 | border-spacing:0; 145 | border-collapse:collapse 146 | } 147 | td,th{ 148 | padding:0 149 | } 150 | /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ 151 | @media print{ 152 | *,:after,:before{ 153 | color:#000!important; 154 | text-shadow:none!important; 155 | background:0 0!important; 156 | -webkit-box-shadow:none!important; 157 | box-shadow:none!important 158 | } 159 | a,a:visited{ 160 | text-decoration:underline 161 | } 162 | a[href]:after{ 163 | content:" (" attr(href) ")" 164 | } 165 | abbr[title]:after{ 166 | content:" (" attr(title) ")" 167 | } 168 | a[href^="javascript:"]:after,a[href^="#"]:after{ 169 | content:"" 170 | } 171 | blockquote,pre{ 172 | border:1px solid #999; 173 | page-break-inside:avoid 174 | } 175 | thead{ 176 | display:table-header-group 177 | } 178 | img,tr{ 179 | page-break-inside:avoid 180 | } 181 | img{ 182 | max-width:100%!important 183 | } 184 | h2,h3,p{ 185 | orphans:3; 186 | widows:3 187 | } 188 | h2,h3{ 189 | page-break-after:avoid 190 | } 191 | .navbar{ 192 | display:none 193 | } 194 | .btn>.caret,.dropup>.btn>.caret{ 195 | border-top-color:#000!important 196 | } 197 | .label{ 198 | border:1px solid #000 199 | } 200 | .table{ 201 | border-collapse:collapse!important 202 | } 203 | .table td,.table th{ 204 | background-color:#fff!important 205 | } 206 | .table-bordered td,.table-bordered th{ 207 | border:1px solid #ddd!important 208 | } 209 | } 210 | @font-face{ 211 | font-family:'Glyphicons Halflings'; 212 | src:url(../fonts/glyphicons-halflings-regular.eot); 213 | src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),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') 214 | } 215 | .glyphicon{ 216 | position:relative; 217 | top:1px; 218 | display:inline-block; 219 | font-family:'Glyphicons Halflings'; 220 | font-style:normal; 221 | font-weight:400; 222 | line-height:1; 223 | -webkit-font-smoothing:antialiased; 224 | -moz-osx-font-smoothing:grayscale 225 | } 226 | .glyphicon-asterisk:before{ 227 | content:"\002a" 228 | } 229 | .glyphicon-plus:before{ 230 | content:"\002b" 231 | } 232 | .glyphicon-eur:before,.glyphicon-euro:before{ 233 | content:"\20ac" 234 | } 235 | .glyphicon-minus:before{ 236 | content:"\2212" 237 | } 238 | .glyphicon-cloud:before{ 239 | content:"\2601" 240 | } 241 | .glyphicon-envelope:before{ 242 | content:"\2709" 243 | } 244 | .glyphicon-pencil:before{ 245 | content:"\270f" 246 | } 247 | .glyphicon-glass:before{ 248 | content:"\e001" 249 | } 250 | .glyphicon-music:before{ 251 | content:"\e002" 252 | } 253 | .glyphicon-search:before{ 254 | content:"\e003" 255 | } 256 | .glyphicon-heart:before{ 257 | content:"\e005" 258 | } 259 | .glyphicon-star:before{ 260 | content:"\e006" 261 | } 262 | .glyphicon-star-empty:before{ 263 | content:"\e007" 264 | } 265 | .glyphicon-user:before{ 266 | content:"\e008" 267 | } 268 | .glyphicon-film:before{ 269 | content:"\e009" 270 | } 271 | .glyphicon-th-large:before{ 272 | content:"\e010" 273 | } 274 | .glyphicon-th:before{ 275 | content:"\e011" 276 | } 277 | .glyphicon-th-list:before{ 278 | content:"\e012" 279 | } 280 | .glyphicon-ok:before{ 281 | content:"\e013" 282 | } 283 | .glyphicon-remove:before{ 284 | content:"\e014" 285 | } 286 | .glyphicon-zoom-in:before{ 287 | content:"\e015" 288 | } 289 | .glyphicon-zoom-out:before{ 290 | content:"\e016" 291 | } 292 | .glyphicon-off:before{ 293 | content:"\e017" 294 | } 295 | .glyphicon-signal:before{ 296 | content:"\e018" 297 | } 298 | .glyphicon-cog:before{ 299 | content:"\e019" 300 | } 301 | .glyphicon-trash:before{ 302 | content:"\e020" 303 | } 304 | .glyphicon-home:before{ 305 | content:"\e021" 306 | } 307 | .glyphicon-file:before{ 308 | content:"\e022" 309 | } 310 | .glyphicon-time:before{ 311 | content:"\e023" 312 | } 313 | .glyphicon-road:before{ 314 | content:"\e024" 315 | } 316 | .glyphicon-download-alt:before{ 317 | content:"\e025" 318 | } 319 | .glyphicon-download:before{ 320 | content:"\e026" 321 | } 322 | .glyphicon-upload:before{ 323 | content:"\e027" 324 | } 325 | .glyphicon-inbox:before{ 326 | content:"\e028" 327 | } 328 | .glyphicon-play-circle:before{ 329 | content:"\e029" 330 | } 331 | .glyphicon-repeat:before{ 332 | content:"\e030" 333 | } 334 | .glyphicon-refresh:before{ 335 | content:"\e031" 336 | } 337 | .glyphicon-list-alt:before{ 338 | content:"\e032" 339 | } 340 | .glyphicon-lock:before{ 341 | content:"\e033" 342 | } 343 | .glyphicon-flag:before{ 344 | content:"\e034" 345 | } 346 | .glyphicon-headphones:before{ 347 | content:"\e035" 348 | } 349 | .glyphicon-volume-off:before{ 350 | content:"\e036" 351 | } 352 | .glyphicon-volume-down:before{ 353 | content:"\e037" 354 | } 355 | .glyphicon-volume-up:before{ 356 | content:"\e038" 357 | } 358 | .glyphicon-qrcode:before{ 359 | content:"\e039" 360 | } 361 | .glyphicon-barcode:before{ 362 | content:"\e040" 363 | } 364 | .glyphicon-tag:before{ 365 | content:"\e041" 366 | } 367 | .glyphicon-tags:before{ 368 | content:"\e042" 369 | } 370 | .glyphicon-book:before{ 371 | content:"\e043" 372 | } 373 | .glyphicon-bookmark:before{ 374 | content:"\e044" 375 | } 376 | .glyphicon-print:before{ 377 | content:"\e045" 378 | } 379 | .glyphicon-camera:before{ 380 | content:"\e046" 381 | } 382 | .glyphicon-font:before{ 383 | content:"\e047" 384 | } 385 | .glyphicon-bold:before{ 386 | content:"\e048" 387 | } 388 | .glyphicon-italic:before{ 389 | content:"\e049" 390 | } 391 | .glyphicon-text-height:before{ 392 | content:"\e050" 393 | } 394 | .glyphicon-text-width:before{ 395 | content:"\e051" 396 | } 397 | .glyphicon-align-left:before{ 398 | content:"\e052" 399 | } 400 | .glyphicon-align-center:before{ 401 | content:"\e053" 402 | } 403 | .glyphicon-align-right:before{ 404 | content:"\e054" 405 | } 406 | .glyphicon-align-justify:before{ 407 | content:"\e055" 408 | } 409 | .glyphicon-list:before{ 410 | content:"\e056" 411 | } 412 | .glyphicon-indent-left:before{ 413 | content:"\e057" 414 | } 415 | .glyphicon-indent-right:before{ 416 | content:"\e058" 417 | } 418 | .glyphicon-facetime-video:before{ 419 | content:"\e059" 420 | } 421 | .glyphicon-picture:before{ 422 | content:"\e060" 423 | } 424 | .glyphicon-map-marker:before{ 425 | content:"\e062" 426 | } 427 | .glyphicon-adjust:before{ 428 | content:"\e063" 429 | } 430 | .glyphicon-tint:before{ 431 | content:"\e064" 432 | } 433 | .glyphicon-edit:before{ 434 | content:"\e065" 435 | } 436 | .glyphicon-share:before{ 437 | content:"\e066" 438 | } 439 | .glyphicon-check:before{ 440 | content:"\e067" 441 | } 442 | .glyphicon-move:before{ 443 | content:"\e068" 444 | } 445 | .glyphicon-step-backward:before{ 446 | content:"\e069" 447 | } 448 | .glyphicon-fast-backward:before{ 449 | content:"\e070" 450 | } 451 | .glyphicon-backward:before{ 452 | content:"\e071" 453 | } 454 | .glyphicon-play:before{ 455 | content:"\e072" 456 | } 457 | .glyphicon-pause:before{ 458 | content:"\e073" 459 | } 460 | .glyphicon-stop:before{ 461 | content:"\e074" 462 | } 463 | .glyphicon-forward:before{ 464 | content:"\e075" 465 | } 466 | .glyphicon-fast-forward:before{ 467 | content:"\e076" 468 | } 469 | .glyphicon-step-forward:before{ 470 | content:"\e077" 471 | } 472 | .glyphicon-eject:before{ 473 | content:"\e078" 474 | } 475 | .glyphicon-chevron-left:before{ 476 | content:"\e079" 477 | } 478 | .glyphicon-chevron-right:before{ 479 | content:"\e080" 480 | } 481 | .glyphicon-plus-sign:before{ 482 | content:"\e081" 483 | } 484 | .glyphicon-minus-sign:before{ 485 | content:"\e082" 486 | } 487 | .glyphicon-remove-sign:before{ 488 | content:"\e083" 489 | } 490 | .glyphicon-ok-sign:before{ 491 | content:"\e084" 492 | } 493 | .glyphicon-question-sign:before{ 494 | content:"\e085" 495 | } 496 | .glyphicon-info-sign:before{ 497 | content:"\e086" 498 | } 499 | .glyphicon-screenshot:before{ 500 | content:"\e087" 501 | } 502 | .glyphicon-remove-circle:before{ 503 | content:"\e088" 504 | } 505 | .glyphicon-ok-circle:before{ 506 | content:"\e089" 507 | } 508 | .glyphicon-ban-circle:before{ 509 | content:"\e090" 510 | } 511 | .glyphicon-arrow-left:before{ 512 | content:"\e091" 513 | } 514 | .glyphicon-arrow-right:before{ 515 | content:"\e092" 516 | } 517 | .glyphicon-arrow-up:before{ 518 | content:"\e093" 519 | } 520 | .glyphicon-arrow-down:before{ 521 | content:"\e094" 522 | } 523 | .glyphicon-share-alt:before{ 524 | content:"\e095" 525 | } 526 | .glyphicon-resize-full:before{ 527 | content:"\e096" 528 | } 529 | .glyphicon-resize-small:before{ 530 | content:"\e097" 531 | } 532 | .glyphicon-exclamation-sign:before{ 533 | content:"\e101" 534 | } 535 | .glyphicon-gift:before{ 536 | content:"\e102" 537 | } 538 | .glyphicon-leaf:before{ 539 | content:"\e103" 540 | } 541 | .glyphicon-fire:before{ 542 | content:"\e104" 543 | } 544 | .glyphicon-eye-open:before{ 545 | content:"\e105" 546 | } 547 | .glyphicon-eye-close:before{ 548 | content:"\e106" 549 | } 550 | .glyphicon-warning-sign:before{ 551 | content:"\e107" 552 | } 553 | .glyphicon-plane:before{ 554 | content:"\e108" 555 | } 556 | .glyphicon-calendar:before{ 557 | content:"\e109" 558 | } 559 | .glyphicon-random:before{ 560 | content:"\e110" 561 | } 562 | .glyphicon-comment:before{ 563 | content:"\e111" 564 | } 565 | .glyphicon-magnet:before{ 566 | content:"\e112" 567 | } 568 | .glyphicon-chevron-up:before{ 569 | content:"\e113" 570 | } 571 | .glyphicon-chevron-down:before{ 572 | content:"\e114" 573 | } 574 | .glyphicon-retweet:before{ 575 | content:"\e115" 576 | } 577 | .glyphicon-shopping-cart:before{ 578 | content:"\e116" 579 | } 580 | .glyphicon-folder-close:before{ 581 | content:"\e117" 582 | } 583 | .glyphicon-folder-open:before{ 584 | content:"\e118" 585 | } 586 | .glyphicon-resize-vertical:before{ 587 | content:"\e119" 588 | } 589 | .glyphicon-resize-horizontal:before{ 590 | content:"\e120" 591 | } 592 | .glyphicon-hdd:before{ 593 | content:"\e121" 594 | } 595 | .glyphicon-bullhorn:before{ 596 | content:"\e122" 597 | } 598 | .glyphicon-bell:before{ 599 | content:"\e123" 600 | } 601 | .glyphicon-certificate:before{ 602 | content:"\e124" 603 | } 604 | .glyphicon-thumbs-up:before{ 605 | content:"\e125" 606 | } 607 | .glyphicon-thumbs-down:before{ 608 | content:"\e126" 609 | } 610 | .glyphicon-hand-right:before{ 611 | content:"\e127" 612 | } 613 | .glyphicon-hand-left:before{ 614 | content:"\e128" 615 | } 616 | .glyphicon-hand-up:before{ 617 | content:"\e129" 618 | } 619 | .glyphicon-hand-down:before{ 620 | content:"\e130" 621 | } 622 | .glyphicon-circle-arrow-right:before{ 623 | content:"\e131" 624 | } 625 | .glyphicon-circle-arrow-left:before{ 626 | content:"\e132" 627 | } 628 | .glyphicon-circle-arrow-up:before{ 629 | content:"\e133" 630 | } 631 | .glyphicon-circle-arrow-down:before{ 632 | content:"\e134" 633 | } 634 | .glyphicon-globe:before{ 635 | content:"\e135" 636 | } 637 | .glyphicon-wrench:before{ 638 | content:"\e136" 639 | } 640 | .glyphicon-tasks:before{ 641 | content:"\e137" 642 | } 643 | .glyphicon-filter:before{ 644 | content:"\e138" 645 | } 646 | .glyphicon-briefcase:before{ 647 | content:"\e139" 648 | } 649 | .glyphicon-fullscreen:before{ 650 | content:"\e140" 651 | } 652 | .glyphicon-dashboard:before{ 653 | content:"\e141" 654 | } 655 | .glyphicon-paperclip:before{ 656 | content:"\e142" 657 | } 658 | .glyphicon-heart-empty:before{ 659 | content:"\e143" 660 | } 661 | .glyphicon-link:before{ 662 | content:"\e144" 663 | } 664 | .glyphicon-phone:before{ 665 | content:"\e145" 666 | } 667 | .glyphicon-pushpin:before{ 668 | content:"\e146" 669 | } 670 | .glyphicon-usd:before{ 671 | content:"\e148" 672 | } 673 | .glyphicon-gbp:before{ 674 | content:"\e149" 675 | } 676 | .glyphicon-sort:before{ 677 | content:"\e150" 678 | } 679 | .glyphicon-sort-by-alphabet:before{ 680 | content:"\e151" 681 | } 682 | .glyphicon-sort-by-alphabet-alt:before{ 683 | content:"\e152" 684 | } 685 | .glyphicon-sort-by-order:before{ 686 | content:"\e153" 687 | } 688 | .glyphicon-sort-by-order-alt:before{ 689 | content:"\e154" 690 | } 691 | .glyphicon-sort-by-attributes:before{ 692 | content:"\e155" 693 | } 694 | .glyphicon-sort-by-attributes-alt:before{ 695 | content:"\e156" 696 | } 697 | .glyphicon-unchecked:before{ 698 | content:"\e157" 699 | } 700 | .glyphicon-expand:before{ 701 | content:"\e158" 702 | } 703 | .glyphicon-collapse-down:before{ 704 | content:"\e159" 705 | } 706 | .glyphicon-collapse-up:before{ 707 | content:"\e160" 708 | } 709 | .glyphicon-log-in:before{ 710 | content:"\e161" 711 | } 712 | .glyphicon-flash:before{ 713 | content:"\e162" 714 | } 715 | .glyphicon-log-out:before{ 716 | content:"\e163" 717 | } 718 | .glyphicon-new-window:before{ 719 | content:"\e164" 720 | } 721 | .glyphicon-record:before{ 722 | content:"\e165" 723 | } 724 | .glyphicon-save:before{ 725 | content:"\e166" 726 | } 727 | .glyphicon-open:before{ 728 | content:"\e167" 729 | } 730 | .glyphicon-saved:before{ 731 | content:"\e168" 732 | } 733 | .glyphicon-import:before{ 734 | content:"\e169" 735 | } 736 | .glyphicon-export:before{ 737 | content:"\e170" 738 | } 739 | .glyphicon-send:before{ 740 | content:"\e171" 741 | } 742 | .glyphicon-floppy-disk:before{ 743 | content:"\e172" 744 | } 745 | .glyphicon-floppy-saved:before{ 746 | content:"\e173" 747 | } 748 | .glyphicon-floppy-remove:before{ 749 | content:"\e174" 750 | } 751 | .glyphicon-floppy-save:before{ 752 | content:"\e175" 753 | } 754 | .glyphicon-floppy-open:before{ 755 | content:"\e176" 756 | } 757 | .glyphicon-credit-card:before{ 758 | content:"\e177" 759 | } 760 | .glyphicon-transfer:before{ 761 | content:"\e178" 762 | } 763 | .glyphicon-cutlery:before{ 764 | content:"\e179" 765 | } 766 | .glyphicon-header:before{ 767 | content:"\e180" 768 | } 769 | .glyphicon-compressed:before{ 770 | content:"\e181" 771 | } 772 | .glyphicon-earphone:before{ 773 | content:"\e182" 774 | } 775 | .glyphicon-phone-alt:before{ 776 | content:"\e183" 777 | } 778 | .glyphicon-tower:before{ 779 | content:"\e184" 780 | } 781 | .glyphicon-stats:before{ 782 | content:"\e185" 783 | } 784 | .glyphicon-sd-video:before{ 785 | content:"\e186" 786 | } 787 | .glyphicon-hd-video:before{ 788 | content:"\e187" 789 | } 790 | .glyphicon-subtitles:before{ 791 | content:"\e188" 792 | } 793 | .glyphicon-sound-stereo:before{ 794 | content:"\e189" 795 | } 796 | .glyphicon-sound-dolby:before{ 797 | content:"\e190" 798 | } 799 | .glyphicon-sound-5-1:before{ 800 | content:"\e191" 801 | } 802 | .glyphicon-sound-6-1:before{ 803 | content:"\e192" 804 | } 805 | .glyphicon-sound-7-1:before{ 806 | content:"\e193" 807 | } 808 | .glyphicon-copyright-mark:before{ 809 | content:"\e194" 810 | } 811 | .glyphicon-registration-mark:before{ 812 | content:"\e195" 813 | } 814 | .glyphicon-cloud-download:before{ 815 | content:"\e197" 816 | } 817 | .glyphicon-cloud-upload:before{ 818 | content:"\e198" 819 | } 820 | .glyphicon-tree-conifer:before{ 821 | content:"\e199" 822 | } 823 | .glyphicon-tree-deciduous:before{ 824 | content:"\e200" 825 | } 826 | .glyphicon-cd:before{ 827 | content:"\e201" 828 | } 829 | .glyphicon-save-file:before{ 830 | content:"\e202" 831 | } 832 | .glyphicon-open-file:before{ 833 | content:"\e203" 834 | } 835 | .glyphicon-level-up:before{ 836 | content:"\e204" 837 | } 838 | .glyphicon-copy:before{ 839 | content:"\e205" 840 | } 841 | .glyphicon-paste:before{ 842 | content:"\e206" 843 | } 844 | .glyphicon-alert:before{ 845 | content:"\e209" 846 | } 847 | .glyphicon-equalizer:before{ 848 | content:"\e210" 849 | } 850 | .glyphicon-king:before{ 851 | content:"\e211" 852 | } 853 | .glyphicon-queen:before{ 854 | content:"\e212" 855 | } 856 | .glyphicon-pawn:before{ 857 | content:"\e213" 858 | } 859 | .glyphicon-bishop:before{ 860 | content:"\e214" 861 | } 862 | .glyphicon-knight:before{ 863 | content:"\e215" 864 | } 865 | .glyphicon-baby-formula:before{ 866 | content:"\e216" 867 | } 868 | .glyphicon-tent:before{ 869 | content:"\26fa" 870 | } 871 | .glyphicon-blackboard:before{ 872 | content:"\e218" 873 | } 874 | .glyphicon-bed:before{ 875 | content:"\e219" 876 | } 877 | .glyphicon-apple:before{ 878 | content:"\f8ff" 879 | } 880 | .glyphicon-erase:before{ 881 | content:"\e221" 882 | } 883 | .glyphicon-hourglass:before{ 884 | content:"\231b" 885 | } 886 | .glyphicon-lamp:before{ 887 | content:"\e223" 888 | } 889 | .glyphicon-duplicate:before{ 890 | content:"\e224" 891 | } 892 | .glyphicon-piggy-bank:before{ 893 | content:"\e225" 894 | } 895 | .glyphicon-scissors:before{ 896 | content:"\e226" 897 | } 898 | .glyphicon-bitcoin:before{ 899 | content:"\e227" 900 | } 901 | .glyphicon-btc:before{ 902 | content:"\e227" 903 | } 904 | .glyphicon-xbt:before{ 905 | content:"\e227" 906 | } 907 | .glyphicon-yen:before{ 908 | content:"\00a5" 909 | } 910 | .glyphicon-jpy:before{ 911 | content:"\00a5" 912 | } 913 | .glyphicon-ruble:before{ 914 | content:"\20bd" 915 | } 916 | .glyphicon-rub:before{ 917 | content:"\20bd" 918 | } 919 | .glyphicon-scale:before{ 920 | content:"\e230" 921 | } 922 | .glyphicon-ice-lolly:before{ 923 | content:"\e231" 924 | } 925 | .glyphicon-ice-lolly-tasted:before{ 926 | content:"\e232" 927 | } 928 | .glyphicon-education:before{ 929 | content:"\e233" 930 | } 931 | .glyphicon-option-horizontal:before{ 932 | content:"\e234" 933 | } 934 | .glyphicon-option-vertical:before{ 935 | content:"\e235" 936 | } 937 | .glyphicon-menu-hamburger:before{ 938 | content:"\e236" 939 | } 940 | .glyphicon-modal-window:before{ 941 | content:"\e237" 942 | } 943 | .glyphicon-oil:before{ 944 | content:"\e238" 945 | } 946 | .glyphicon-grain:before{ 947 | content:"\e239" 948 | } 949 | .glyphicon-sunglasses:before{ 950 | content:"\e240" 951 | } 952 | .glyphicon-text-size:before{ 953 | content:"\e241" 954 | } 955 | .glyphicon-text-color:before{ 956 | content:"\e242" 957 | } 958 | .glyphicon-text-background:before{ 959 | content:"\e243" 960 | } 961 | .glyphicon-object-align-top:before{ 962 | content:"\e244" 963 | } 964 | .glyphicon-object-align-bottom:before{ 965 | content:"\e245" 966 | } 967 | .glyphicon-object-align-horizontal:before{ 968 | content:"\e246" 969 | } 970 | .glyphicon-object-align-left:before{ 971 | content:"\e247" 972 | } 973 | .glyphicon-object-align-vertical:before{ 974 | content:"\e248" 975 | } 976 | .glyphicon-object-align-right:before{ 977 | content:"\e249" 978 | } 979 | .glyphicon-triangle-right:before{ 980 | content:"\e250" 981 | } 982 | .glyphicon-triangle-left:before{ 983 | content:"\e251" 984 | } 985 | .glyphicon-triangle-bottom:before{ 986 | content:"\e252" 987 | } 988 | .glyphicon-triangle-top:before{ 989 | content:"\e253" 990 | } 991 | .glyphicon-console:before{ 992 | content:"\e254" 993 | } 994 | .glyphicon-superscript:before{ 995 | content:"\e255" 996 | } 997 | .glyphicon-subscript:before{ 998 | content:"\e256" 999 | } 1000 | .glyphicon-menu-left:before{ 1001 | content:"\e257" 1002 | } 1003 | .glyphicon-menu-right:before{ 1004 | content:"\e258" 1005 | } 1006 | .glyphicon-menu-down:before{ 1007 | content:"\e259" 1008 | } 1009 | .glyphicon-menu-up:before{ 1010 | content:"\e260" 1011 | } 1012 | *{ 1013 | -webkit-box-sizing:border-box; 1014 | -moz-box-sizing:border-box; 1015 | box-sizing:border-box 1016 | } 1017 | :after,:before{ 1018 | -webkit-box-sizing:border-box; 1019 | -moz-box-sizing:border-box; 1020 | box-sizing:border-box 1021 | } 1022 | html{ 1023 | font-size:10px; 1024 | -webkit-tap-highlight-color:rgba(0,0,0,0) 1025 | } 1026 | body{ 1027 | font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; 1028 | font-size:14px; 1029 | line-height:1.42857143; 1030 | color:#333; 1031 | background-color:#fff 1032 | } 1033 | button,input,select,textarea{ 1034 | font-family:inherit; 1035 | font-size:inherit; 1036 | line-height:inherit 1037 | } 1038 | a{ 1039 | color:#337ab7; 1040 | text-decoration:none 1041 | } 1042 | a:focus,a:hover{ 1043 | color:#23527c; 1044 | text-decoration:underline 1045 | } 1046 | a:focus{ 1047 | outline:5px auto -webkit-focus-ring-color; 1048 | outline-offset:-2px 1049 | } 1050 | figure{ 1051 | margin:0 1052 | } 1053 | img{ 1054 | vertical-align:middle 1055 | } 1056 | .carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{ 1057 | display:block; 1058 | max-width:100%; 1059 | height:auto 1060 | } 1061 | .img-rounded{ 1062 | border-radius:6px 1063 | } 1064 | .img-thumbnail{ 1065 | display:inline-block; 1066 | max-width:100%; 1067 | height:auto; 1068 | padding:4px; 1069 | line-height:1.42857143; 1070 | background-color:#fff; 1071 | border:1px solid #ddd; 1072 | border-radius:4px; 1073 | -webkit-transition:all .2s ease-in-out; 1074 | -o-transition:all .2s ease-in-out; 1075 | transition:all .2s ease-in-out 1076 | } 1077 | .img-circle{ 1078 | border-radius:50% 1079 | } 1080 | hr{ 1081 | margin-top:20px; 1082 | margin-bottom:20px; 1083 | border:0; 1084 | border-top:1px solid #eee 1085 | } 1086 | .sr-only{ 1087 | position:absolute; 1088 | width:1px; 1089 | height:1px; 1090 | padding:0; 1091 | margin:-1px; 1092 | overflow:hidden; 1093 | clip:rect(0,0,0,0); 1094 | border:0 1095 | } 1096 | .sr-only-focusable:active,.sr-only-focusable:focus{ 1097 | position:static; 1098 | width:auto; 1099 | height:auto; 1100 | margin:0; 1101 | overflow:visible; 1102 | clip:auto 1103 | } 1104 | [role=button]{ 1105 | cursor:pointer 1106 | } 1107 | .h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{ 1108 | font-family:inherit; 1109 | font-weight:500; 1110 | line-height:1.1; 1111 | color:inherit 1112 | } 1113 | .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{ 1114 | font-weight:400; 1115 | line-height:1; 1116 | color:#777 1117 | } 1118 | .h1,.h2,.h3,h1,h2,h3{ 1119 | margin-top:20px; 1120 | margin-bottom:10px 1121 | } 1122 | .h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{ 1123 | font-size:65% 1124 | } 1125 | .h4,.h5,.h6,h4,h5,h6{ 1126 | margin-top:10px; 1127 | margin-bottom:10px 1128 | } 1129 | .h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{ 1130 | font-size:75% 1131 | } 1132 | .h1,h1{ 1133 | font-size:36px 1134 | } 1135 | .h2,h2{ 1136 | font-size:30px 1137 | } 1138 | .h3,h3{ 1139 | font-size:24px 1140 | } 1141 | .h4,h4{ 1142 | font-size:18px 1143 | } 1144 | .h5,h5{ 1145 | font-size:14px 1146 | } 1147 | .h6,h6{ 1148 | font-size:12px 1149 | } 1150 | p{ 1151 | margin:0 0 10px 1152 | } 1153 | .lead{ 1154 | margin-bottom:20px; 1155 | font-size:16px; 1156 | font-weight:300; 1157 | line-height:1.4 1158 | } 1159 | @media (min-width:768px){ 1160 | .lead{ 1161 | font-size:21px 1162 | } 1163 | } 1164 | .small,small{ 1165 | font-size:85% 1166 | } 1167 | .mark,mark{ 1168 | padding:.2em; 1169 | background-color:#fcf8e3 1170 | } 1171 | .text-left{ 1172 | text-align:left 1173 | } 1174 | .text-right{ 1175 | text-align:right 1176 | } 1177 | .text-center{ 1178 | text-align:center 1179 | } 1180 | .text-justify{ 1181 | text-align:justify 1182 | } 1183 | .text-nowrap{ 1184 | white-space:nowrap 1185 | } 1186 | .text-lowercase{ 1187 | text-transform:lowercase 1188 | } 1189 | .text-uppercase{ 1190 | text-transform:uppercase 1191 | } 1192 | .text-capitalize{ 1193 | text-transform:capitalize 1194 | } 1195 | .text-muted{ 1196 | color:#777 1197 | } 1198 | .text-primary{ 1199 | color:#337ab7 1200 | } 1201 | a.text-primary:focus,a.text-primary:hover{ 1202 | color:#286090 1203 | } 1204 | .text-success{ 1205 | color:#3c763d 1206 | } 1207 | a.text-success:focus,a.text-success:hover{ 1208 | color:#2b542c 1209 | } 1210 | .text-info{ 1211 | color:#31708f 1212 | } 1213 | a.text-info:focus,a.text-info:hover{ 1214 | color:#245269 1215 | } 1216 | .text-warning{ 1217 | color:#8a6d3b 1218 | } 1219 | a.text-warning:focus,a.text-warning:hover{ 1220 | color:#66512c 1221 | } 1222 | .text-danger{ 1223 | color:#a94442 1224 | } 1225 | a.text-danger:focus,a.text-danger:hover{ 1226 | color:#843534 1227 | } 1228 | .bg-primary{ 1229 | color:#fff; 1230 | background-color:#337ab7 1231 | } 1232 | a.bg-primary:focus,a.bg-primary:hover{ 1233 | background-color:#286090 1234 | } 1235 | .bg-success{ 1236 | background-color:#dff0d8 1237 | } 1238 | a.bg-success:focus,a.bg-success:hover{ 1239 | background-color:#c1e2b3 1240 | } 1241 | .bg-info{ 1242 | background-color:#d9edf7 1243 | } 1244 | a.bg-info:focus,a.bg-info:hover{ 1245 | background-color:#afd9ee 1246 | } 1247 | .bg-warning{ 1248 | background-color:#fcf8e3 1249 | } 1250 | a.bg-warning:focus,a.bg-warning:hover{ 1251 | background-color:#f7ecb5 1252 | } 1253 | .bg-danger{ 1254 | background-color:#f2dede 1255 | } 1256 | a.bg-danger:focus,a.bg-danger:hover{ 1257 | background-color:#e4b9b9 1258 | } 1259 | .page-header{ 1260 | padding-bottom:9px; 1261 | margin:40px 0 20px; 1262 | border-bottom:1px solid #eee 1263 | } 1264 | ol,ul{ 1265 | margin-top:0; 1266 | margin-bottom:10px 1267 | } 1268 | ol ol,ol ul,ul ol,ul ul{ 1269 | margin-bottom:0 1270 | } 1271 | .list-unstyled{ 1272 | padding-left:0; 1273 | list-style:none 1274 | } 1275 | .list-inline{ 1276 | padding-left:0; 1277 | margin-left:-5px; 1278 | list-style:none 1279 | } 1280 | .list-inline>li{ 1281 | display:inline-block; 1282 | padding-right:5px; 1283 | padding-left:5px 1284 | } 1285 | dl{ 1286 | margin-top:0; 1287 | margin-bottom:20px 1288 | } 1289 | dd,dt{ 1290 | line-height:1.42857143 1291 | } 1292 | dt{ 1293 | font-weight:700 1294 | } 1295 | dd{ 1296 | margin-left:0 1297 | } 1298 | @media (min-width:768px){ 1299 | .dl-horizontal dt{ 1300 | float:left; 1301 | width:160px; 1302 | overflow:hidden; 1303 | clear:left; 1304 | text-align:right; 1305 | text-overflow:ellipsis; 1306 | white-space:nowrap 1307 | } 1308 | .dl-horizontal dd{ 1309 | margin-left:180px 1310 | } 1311 | } 1312 | abbr[data-original-title],abbr[title]{ 1313 | cursor:help; 1314 | border-bottom:1px dotted #777 1315 | } 1316 | .initialism{ 1317 | font-size:90%; 1318 | text-transform:uppercase 1319 | } 1320 | blockquote{ 1321 | padding:10px 20px; 1322 | margin:0 0 20px; 1323 | font-size:17.5px; 1324 | border-left:5px solid #eee 1325 | } 1326 | blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{ 1327 | margin-bottom:0 1328 | } 1329 | blockquote .small,blockquote footer,blockquote small{ 1330 | display:block; 1331 | font-size:80%; 1332 | line-height:1.42857143; 1333 | color:#777 1334 | } 1335 | blockquote .small:before,blockquote footer:before,blockquote small:before{ 1336 | content:'\2014 \00A0' 1337 | } 1338 | .blockquote-reverse,blockquote.pull-right{ 1339 | padding-right:15px; 1340 | padding-left:0; 1341 | text-align:right; 1342 | border-right:5px solid #eee; 1343 | border-left:0 1344 | } 1345 | .blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{ 1346 | content:'' 1347 | } 1348 | .blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{ 1349 | content:'\00A0 \2014' 1350 | } 1351 | address{ 1352 | margin-bottom:20px; 1353 | font-style:normal; 1354 | line-height:1.42857143 1355 | } 1356 | code,kbd,pre,samp{ 1357 | font-family:Menlo,Monaco,Consolas,"Courier New",monospace 1358 | } 1359 | code{ 1360 | padding:2px 4px; 1361 | font-size:90%; 1362 | color:#c7254e; 1363 | background-color:#f9f2f4; 1364 | border-radius:4px 1365 | } 1366 | kbd{ 1367 | padding:2px 4px; 1368 | font-size:90%; 1369 | color:#fff; 1370 | background-color:#333; 1371 | border-radius:3px; 1372 | -webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25); 1373 | box-shadow:inset 0 -1px 0 rgba(0,0,0,.25) 1374 | } 1375 | kbd kbd{ 1376 | padding:0; 1377 | font-size:100%; 1378 | font-weight:700; 1379 | -webkit-box-shadow:none; 1380 | box-shadow:none 1381 | } 1382 | pre{ 1383 | display:block; 1384 | padding:9.5px; 1385 | margin:0 0 10px; 1386 | font-size:13px; 1387 | line-height:1.42857143; 1388 | color:#333; 1389 | word-break:break-all; 1390 | word-wrap:break-word; 1391 | background-color:#f5f5f5; 1392 | border:1px solid #ccc; 1393 | border-radius:4px 1394 | } 1395 | pre code{ 1396 | padding:0; 1397 | font-size:inherit; 1398 | color:inherit; 1399 | white-space:pre-wrap; 1400 | background-color:transparent; 1401 | border-radius:0 1402 | } 1403 | .pre-scrollable{ 1404 | max-height:340px; 1405 | overflow-y:scroll 1406 | } 1407 | .container{ 1408 | padding-right:15px; 1409 | padding-left:15px; 1410 | margin-right:auto; 1411 | margin-left:auto 1412 | } 1413 | @media (min-width:768px){ 1414 | .container{ 1415 | width:750px 1416 | } 1417 | } 1418 | @media (min-width:992px){ 1419 | .container{ 1420 | width:970px 1421 | } 1422 | } 1423 | @media (min-width:1200px){ 1424 | .container{ 1425 | width:1170px 1426 | } 1427 | } 1428 | .container-fluid{ 1429 | padding-right:15px; 1430 | padding-left:15px; 1431 | margin-right:auto; 1432 | margin-left:auto 1433 | } 1434 | .row{ 1435 | margin-right:-15px; 1436 | margin-left:-15px 1437 | } 1438 | .col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{ 1439 | position:relative; 1440 | min-height:1px; 1441 | padding-right:15px; 1442 | padding-left:15px 1443 | } 1444 | .col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{ 1445 | float:left 1446 | } 1447 | .col-xs-12{ 1448 | width:100% 1449 | } 1450 | .col-xs-11{ 1451 | width:91.66666667% 1452 | } 1453 | .col-xs-10{ 1454 | width:83.33333333% 1455 | } 1456 | .col-xs-9{ 1457 | width:75% 1458 | } 1459 | .col-xs-8{ 1460 | width:66.66666667% 1461 | } 1462 | .col-xs-7{ 1463 | width:58.33333333% 1464 | } 1465 | .col-xs-6{ 1466 | width:50% 1467 | } 1468 | .col-xs-5{ 1469 | width:41.66666667% 1470 | } 1471 | .col-xs-4{ 1472 | width:33.33333333% 1473 | } 1474 | .col-xs-3{ 1475 | width:25% 1476 | } 1477 | .col-xs-2{ 1478 | width:16.66666667% 1479 | } 1480 | .col-xs-1{ 1481 | width:8.33333333% 1482 | } 1483 | .col-xs-pull-12{ 1484 | right:100% 1485 | } 1486 | .col-xs-pull-11{ 1487 | right:91.66666667% 1488 | } 1489 | .col-xs-pull-10{ 1490 | right:83.33333333% 1491 | } 1492 | .col-xs-pull-9{ 1493 | right:75% 1494 | } 1495 | .col-xs-pull-8{ 1496 | right:66.66666667% 1497 | } 1498 | .col-xs-pull-7{ 1499 | right:58.33333333% 1500 | } 1501 | .col-xs-pull-6{ 1502 | right:50% 1503 | } 1504 | .col-xs-pull-5{ 1505 | right:41.66666667% 1506 | } 1507 | .col-xs-pull-4{ 1508 | right:33.33333333% 1509 | } 1510 | .col-xs-pull-3{ 1511 | right:25% 1512 | } 1513 | .col-xs-pull-2{ 1514 | right:16.66666667% 1515 | } 1516 | .col-xs-pull-1{ 1517 | right:8.33333333% 1518 | } 1519 | .col-xs-pull-0{ 1520 | right:auto 1521 | } 1522 | .col-xs-push-12{ 1523 | left:100% 1524 | } 1525 | .col-xs-push-11{ 1526 | left:91.66666667% 1527 | } 1528 | .col-xs-push-10{ 1529 | left:83.33333333% 1530 | } 1531 | .col-xs-push-9{ 1532 | left:75% 1533 | } 1534 | .col-xs-push-8{ 1535 | left:66.66666667% 1536 | } 1537 | .col-xs-push-7{ 1538 | left:58.33333333% 1539 | } 1540 | .col-xs-push-6{ 1541 | left:50% 1542 | } 1543 | .col-xs-push-5{ 1544 | left:41.66666667% 1545 | } 1546 | .col-xs-push-4{ 1547 | left:33.33333333% 1548 | } 1549 | .col-xs-push-3{ 1550 | left:25% 1551 | } 1552 | .col-xs-push-2{ 1553 | left:16.66666667% 1554 | } 1555 | .col-xs-push-1{ 1556 | left:8.33333333% 1557 | } 1558 | .col-xs-push-0{ 1559 | left:auto 1560 | } 1561 | .col-xs-offset-12{ 1562 | margin-left:100% 1563 | } 1564 | .col-xs-offset-11{ 1565 | margin-left:91.66666667% 1566 | } 1567 | .col-xs-offset-10{ 1568 | margin-left:83.33333333% 1569 | } 1570 | .col-xs-offset-9{ 1571 | margin-left:75% 1572 | } 1573 | .col-xs-offset-8{ 1574 | margin-left:66.66666667% 1575 | } 1576 | .col-xs-offset-7{ 1577 | margin-left:58.33333333% 1578 | } 1579 | .col-xs-offset-6{ 1580 | margin-left:50% 1581 | } 1582 | .col-xs-offset-5{ 1583 | margin-left:41.66666667% 1584 | } 1585 | .col-xs-offset-4{ 1586 | margin-left:33.33333333% 1587 | } 1588 | .col-xs-offset-3{ 1589 | margin-left:25% 1590 | } 1591 | .col-xs-offset-2{ 1592 | margin-left:16.66666667% 1593 | } 1594 | .col-xs-offset-1{ 1595 | margin-left:8.33333333% 1596 | } 1597 | .col-xs-offset-0{ 1598 | margin-left:0 1599 | } 1600 | @media (min-width:768px){ 1601 | .col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{ 1602 | float:left 1603 | } 1604 | .col-sm-12{ 1605 | width:100% 1606 | } 1607 | .col-sm-11{ 1608 | width:91.66666667% 1609 | } 1610 | .col-sm-10{ 1611 | width:83.33333333% 1612 | } 1613 | .col-sm-9{ 1614 | width:75% 1615 | } 1616 | .col-sm-8{ 1617 | width:66.66666667% 1618 | } 1619 | .col-sm-7{ 1620 | width:58.33333333% 1621 | } 1622 | .col-sm-6{ 1623 | width:50% 1624 | } 1625 | .col-sm-5{ 1626 | width:41.66666667% 1627 | } 1628 | .col-sm-4{ 1629 | width:33.33333333% 1630 | } 1631 | .col-sm-3{ 1632 | width:25% 1633 | } 1634 | .col-sm-2{ 1635 | width:16.66666667% 1636 | } 1637 | .col-sm-1{ 1638 | width:8.33333333% 1639 | } 1640 | .col-sm-pull-12{ 1641 | right:100% 1642 | } 1643 | .col-sm-pull-11{ 1644 | right:91.66666667% 1645 | } 1646 | .col-sm-pull-10{ 1647 | right:83.33333333% 1648 | } 1649 | .col-sm-pull-9{ 1650 | right:75% 1651 | } 1652 | .col-sm-pull-8{ 1653 | right:66.66666667% 1654 | } 1655 | .col-sm-pull-7{ 1656 | right:58.33333333% 1657 | } 1658 | .col-sm-pull-6{ 1659 | right:50% 1660 | } 1661 | .col-sm-pull-5{ 1662 | right:41.66666667% 1663 | } 1664 | .col-sm-pull-4{ 1665 | right:33.33333333% 1666 | } 1667 | .col-sm-pull-3{ 1668 | right:25% 1669 | } 1670 | .col-sm-pull-2{ 1671 | right:16.66666667% 1672 | } 1673 | .col-sm-pull-1{ 1674 | right:8.33333333% 1675 | } 1676 | .col-sm-pull-0{ 1677 | right:auto 1678 | } 1679 | .col-sm-push-12{ 1680 | left:100% 1681 | } 1682 | .col-sm-push-11{ 1683 | left:91.66666667% 1684 | } 1685 | .col-sm-push-10{ 1686 | left:83.33333333% 1687 | } 1688 | .col-sm-push-9{ 1689 | left:75% 1690 | } 1691 | .col-sm-push-8{ 1692 | left:66.66666667% 1693 | } 1694 | .col-sm-push-7{ 1695 | left:58.33333333% 1696 | } 1697 | .col-sm-push-6{ 1698 | left:50% 1699 | } 1700 | .col-sm-push-5{ 1701 | left:41.66666667% 1702 | } 1703 | .col-sm-push-4{ 1704 | left:33.33333333% 1705 | } 1706 | .col-sm-push-3{ 1707 | left:25% 1708 | } 1709 | .col-sm-push-2{ 1710 | left:16.66666667% 1711 | } 1712 | .col-sm-push-1{ 1713 | left:8.33333333% 1714 | } 1715 | .col-sm-push-0{ 1716 | left:auto 1717 | } 1718 | .col-sm-offset-12{ 1719 | margin-left:100% 1720 | } 1721 | .col-sm-offset-11{ 1722 | margin-left:91.66666667% 1723 | } 1724 | .col-sm-offset-10{ 1725 | margin-left:83.33333333% 1726 | } 1727 | .col-sm-offset-9{ 1728 | margin-left:75% 1729 | } 1730 | .col-sm-offset-8{ 1731 | margin-left:66.66666667% 1732 | } 1733 | .col-sm-offset-7{ 1734 | margin-left:58.33333333% 1735 | } 1736 | .col-sm-offset-6{ 1737 | margin-left:50% 1738 | } 1739 | .col-sm-offset-5{ 1740 | margin-left:41.66666667% 1741 | } 1742 | .col-sm-offset-4{ 1743 | margin-left:33.33333333% 1744 | } 1745 | .col-sm-offset-3{ 1746 | margin-left:25% 1747 | } 1748 | .col-sm-offset-2{ 1749 | margin-left:16.66666667% 1750 | } 1751 | .col-sm-offset-1{ 1752 | margin-left:8.33333333% 1753 | } 1754 | .col-sm-offset-0{ 1755 | margin-left:0 1756 | } 1757 | } 1758 | @media (min-width:992px){ 1759 | .col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{ 1760 | float:left 1761 | } 1762 | .col-md-12{ 1763 | width:100% 1764 | } 1765 | .col-md-11{ 1766 | width:91.66666667% 1767 | } 1768 | .col-md-10{ 1769 | width:83.33333333% 1770 | } 1771 | .col-md-9{ 1772 | width:75% 1773 | } 1774 | .col-md-8{ 1775 | width:66.66666667% 1776 | } 1777 | .col-md-7{ 1778 | width:58.33333333% 1779 | } 1780 | .col-md-6{ 1781 | width:50% 1782 | } 1783 | .col-md-5{ 1784 | width:41.66666667% 1785 | } 1786 | .col-md-4{ 1787 | width:33.33333333% 1788 | } 1789 | .col-md-3{ 1790 | width:25% 1791 | } 1792 | .col-md-2{ 1793 | width:16.66666667% 1794 | } 1795 | .col-md-1{ 1796 | width:8.33333333% 1797 | } 1798 | .col-md-pull-12{ 1799 | right:100% 1800 | } 1801 | .col-md-pull-11{ 1802 | right:91.66666667% 1803 | } 1804 | .col-md-pull-10{ 1805 | right:83.33333333% 1806 | } 1807 | .col-md-pull-9{ 1808 | right:75% 1809 | } 1810 | .col-md-pull-8{ 1811 | right:66.66666667% 1812 | } 1813 | .col-md-pull-7{ 1814 | right:58.33333333% 1815 | } 1816 | .col-md-pull-6{ 1817 | right:50% 1818 | } 1819 | .col-md-pull-5{ 1820 | right:41.66666667% 1821 | } 1822 | .col-md-pull-4{ 1823 | right:33.33333333% 1824 | } 1825 | .col-md-pull-3{ 1826 | right:25% 1827 | } 1828 | .col-md-pull-2{ 1829 | right:16.66666667% 1830 | } 1831 | .col-md-pull-1{ 1832 | right:8.33333333% 1833 | } 1834 | .col-md-pull-0{ 1835 | right:auto 1836 | } 1837 | .col-md-push-12{ 1838 | left:100% 1839 | } 1840 | .col-md-push-11{ 1841 | left:91.66666667% 1842 | } 1843 | .col-md-push-10{ 1844 | left:83.33333333% 1845 | } 1846 | .col-md-push-9{ 1847 | left:75% 1848 | } 1849 | .col-md-push-8{ 1850 | left:66.66666667% 1851 | } 1852 | .col-md-push-7{ 1853 | left:58.33333333% 1854 | } 1855 | .col-md-push-6{ 1856 | left:50% 1857 | } 1858 | .col-md-push-5{ 1859 | left:41.66666667% 1860 | } 1861 | .col-md-push-4{ 1862 | left:33.33333333% 1863 | } 1864 | .col-md-push-3{ 1865 | left:25% 1866 | } 1867 | .col-md-push-2{ 1868 | left:16.66666667% 1869 | } 1870 | .col-md-push-1{ 1871 | left:8.33333333% 1872 | } 1873 | .col-md-push-0{ 1874 | left:auto 1875 | } 1876 | .col-md-offset-12{ 1877 | margin-left:100% 1878 | } 1879 | .col-md-offset-11{ 1880 | margin-left:91.66666667% 1881 | } 1882 | .col-md-offset-10{ 1883 | margin-left:83.33333333% 1884 | } 1885 | .col-md-offset-9{ 1886 | margin-left:75% 1887 | } 1888 | .col-md-offset-8{ 1889 | margin-left:66.66666667% 1890 | } 1891 | .col-md-offset-7{ 1892 | margin-left:58.33333333% 1893 | } 1894 | .col-md-offset-6{ 1895 | margin-left:50% 1896 | } 1897 | .col-md-offset-5{ 1898 | margin-left:41.66666667% 1899 | } 1900 | .col-md-offset-4{ 1901 | margin-left:33.33333333% 1902 | } 1903 | .col-md-offset-3{ 1904 | margin-left:25% 1905 | } 1906 | .col-md-offset-2{ 1907 | margin-left:16.66666667% 1908 | } 1909 | .col-md-offset-1{ 1910 | margin-left:8.33333333% 1911 | } 1912 | .col-md-offset-0{ 1913 | margin-left:0 1914 | } 1915 | } 1916 | @media (min-width:1200px){ 1917 | .col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{ 1918 | float:left 1919 | } 1920 | .col-lg-12{ 1921 | width:100% 1922 | } 1923 | .col-lg-11{ 1924 | width:91.66666667% 1925 | } 1926 | .col-lg-10{ 1927 | width:83.33333333% 1928 | } 1929 | .col-lg-9{ 1930 | width:75% 1931 | } 1932 | .col-lg-8{ 1933 | width:66.66666667% 1934 | } 1935 | .col-lg-7{ 1936 | width:58.33333333% 1937 | } 1938 | .col-lg-6{ 1939 | width:50% 1940 | } 1941 | .col-lg-5{ 1942 | width:41.66666667% 1943 | } 1944 | .col-lg-4{ 1945 | width:33.33333333% 1946 | } 1947 | .col-lg-3{ 1948 | width:25% 1949 | } 1950 | .col-lg-2{ 1951 | width:16.66666667% 1952 | } 1953 | .col-lg-1{ 1954 | width:8.33333333% 1955 | } 1956 | .col-lg-pull-12{ 1957 | right:100% 1958 | } 1959 | .col-lg-pull-11{ 1960 | right:91.66666667% 1961 | } 1962 | .col-lg-pull-10{ 1963 | right:83.33333333% 1964 | } 1965 | .col-lg-pull-9{ 1966 | right:75% 1967 | } 1968 | .col-lg-pull-8{ 1969 | right:66.66666667% 1970 | } 1971 | .col-lg-pull-7{ 1972 | right:58.33333333% 1973 | } 1974 | .col-lg-pull-6{ 1975 | right:50% 1976 | } 1977 | .col-lg-pull-5{ 1978 | right:41.66666667% 1979 | } 1980 | .col-lg-pull-4{ 1981 | right:33.33333333% 1982 | } 1983 | .col-lg-pull-3{ 1984 | right:25% 1985 | } 1986 | .col-lg-pull-2{ 1987 | right:16.66666667% 1988 | } 1989 | .col-lg-pull-1{ 1990 | right:8.33333333% 1991 | } 1992 | .col-lg-pull-0{ 1993 | right:auto 1994 | } 1995 | .col-lg-push-12{ 1996 | left:100% 1997 | } 1998 | .col-lg-push-11{ 1999 | left:91.66666667% 2000 | } 2001 | .col-lg-push-10{ 2002 | left:83.33333333% 2003 | } 2004 | .col-lg-push-9{ 2005 | left:75% 2006 | } 2007 | .col-lg-push-8{ 2008 | left:66.66666667% 2009 | } 2010 | .col-lg-push-7{ 2011 | left:58.33333333% 2012 | } 2013 | .col-lg-push-6{ 2014 | left:50% 2015 | } 2016 | .col-lg-push-5{ 2017 | left:41.66666667% 2018 | } 2019 | .col-lg-push-4{ 2020 | left:33.33333333% 2021 | } 2022 | .col-lg-push-3{ 2023 | left:25% 2024 | } 2025 | .col-lg-push-2{ 2026 | left:16.66666667% 2027 | } 2028 | .col-lg-push-1{ 2029 | left:8.33333333% 2030 | } 2031 | .col-lg-push-0{ 2032 | left:auto 2033 | } 2034 | .col-lg-offset-12{ 2035 | margin-left:100% 2036 | } 2037 | .col-lg-offset-11{ 2038 | margin-left:91.66666667% 2039 | } 2040 | .col-lg-offset-10{ 2041 | margin-left:83.33333333% 2042 | } 2043 | .col-lg-offset-9{ 2044 | margin-left:75% 2045 | } 2046 | .col-lg-offset-8{ 2047 | margin-left:66.66666667% 2048 | } 2049 | .col-lg-offset-7{ 2050 | margin-left:58.33333333% 2051 | } 2052 | .col-lg-offset-6{ 2053 | margin-left:50% 2054 | } 2055 | .col-lg-offset-5{ 2056 | margin-left:41.66666667% 2057 | } 2058 | .col-lg-offset-4{ 2059 | margin-left:33.33333333% 2060 | } 2061 | .col-lg-offset-3{ 2062 | margin-left:25% 2063 | } 2064 | .col-lg-offset-2{ 2065 | margin-left:16.66666667% 2066 | } 2067 | .col-lg-offset-1{ 2068 | margin-left:8.33333333% 2069 | } 2070 | .col-lg-offset-0{ 2071 | margin-left:0 2072 | } 2073 | } 2074 | table{ 2075 | background-color:transparent 2076 | } 2077 | caption{ 2078 | padding-top:8px; 2079 | padding-bottom:8px; 2080 | color:#777; 2081 | text-align:left 2082 | } 2083 | th{ 2084 | text-align:left 2085 | } 2086 | .table{ 2087 | width:100%; 2088 | max-width:100%; 2089 | margin-bottom:20px 2090 | } 2091 | .table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{ 2092 | padding:8px; 2093 | line-height:1.42857143; 2094 | vertical-align:top; 2095 | border-top:1px solid #ddd 2096 | } 2097 | .table>thead>tr>th{ 2098 | vertical-align:bottom; 2099 | border-bottom:2px solid #ddd 2100 | } 2101 | .table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{ 2102 | border-top:0 2103 | } 2104 | .table>tbody+tbody{ 2105 | border-top:2px solid #ddd 2106 | } 2107 | .table .table{ 2108 | background-color:#fff 2109 | } 2110 | .table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{ 2111 | padding:5px 2112 | } 2113 | .table-bordered{ 2114 | border:1px solid #ddd 2115 | } 2116 | .table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{ 2117 | border:1px solid #ddd 2118 | } 2119 | .table-bordered>thead>tr>td,.table-bordered>thead>tr>th{ 2120 | border-bottom-width:2px 2121 | } 2122 | .table-striped>tbody>tr:nth-of-type(odd){ 2123 | background-color:#f9f9f9 2124 | } 2125 | .table-hover>tbody>tr:hover{ 2126 | background-color:#f5f5f5 2127 | } 2128 | table col[class*=col-]{ 2129 | position:static; 2130 | display:table-column; 2131 | float:none 2132 | } 2133 | table td[class*=col-],table th[class*=col-]{ 2134 | position:static; 2135 | display:table-cell; 2136 | float:none 2137 | } 2138 | .table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{ 2139 | background-color:#f5f5f5 2140 | } 2141 | .table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{ 2142 | background-color:#e8e8e8 2143 | } 2144 | .table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{ 2145 | background-color:#dff0d8 2146 | } 2147 | .table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{ 2148 | background-color:#d0e9c6 2149 | } 2150 | .table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{ 2151 | background-color:#d9edf7 2152 | } 2153 | .table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{ 2154 | background-color:#c4e3f3 2155 | } 2156 | .table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{ 2157 | background-color:#fcf8e3 2158 | } 2159 | .table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{ 2160 | background-color:#faf2cc 2161 | } 2162 | .table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{ 2163 | background-color:#f2dede 2164 | } 2165 | .table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{ 2166 | background-color:#ebcccc 2167 | } 2168 | .table-responsive{ 2169 | min-height:.01%; 2170 | overflow-x:auto 2171 | } 2172 | @media screen and (max-width:767px){ 2173 | .table-responsive{ 2174 | width:100%; 2175 | margin-bottom:15px; 2176 | overflow-y:hidden; 2177 | -ms-overflow-style:-ms-autohiding-scrollbar; 2178 | border:1px solid #ddd 2179 | } 2180 | .table-responsive>.table{ 2181 | margin-bottom:0 2182 | } 2183 | .table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{ 2184 | white-space:nowrap 2185 | } 2186 | .table-responsive>.table-bordered{ 2187 | border:0 2188 | } 2189 | .table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{ 2190 | border-left:0 2191 | } 2192 | .table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{ 2193 | border-right:0 2194 | } 2195 | .table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{ 2196 | border-bottom:0 2197 | } 2198 | } 2199 | fieldset{ 2200 | min-width:0; 2201 | padding:0; 2202 | margin:0; 2203 | border:0 2204 | } 2205 | legend{ 2206 | display:block; 2207 | width:100%; 2208 | padding:0; 2209 | margin-bottom:20px; 2210 | font-size:21px; 2211 | line-height:inherit; 2212 | color:#333; 2213 | border:0; 2214 | border-bottom:1px solid #e5e5e5 2215 | } 2216 | label{ 2217 | display:inline-block; 2218 | max-width:100%; 2219 | margin-bottom:5px; 2220 | font-weight:700 2221 | } 2222 | input[type=search]{ 2223 | -webkit-box-sizing:border-box; 2224 | -moz-box-sizing:border-box; 2225 | box-sizing:border-box 2226 | } 2227 | input[type=checkbox],input[type=radio]{ 2228 | margin:4px 0 0; 2229 | margin-top:1px\9; 2230 | line-height:normal 2231 | } 2232 | input[type=file]{ 2233 | display:block 2234 | } 2235 | input[type=range]{ 2236 | display:block; 2237 | width:100% 2238 | } 2239 | select[multiple],select[size]{ 2240 | height:auto 2241 | } 2242 | input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{ 2243 | outline:5px auto -webkit-focus-ring-color; 2244 | outline-offset:-2px 2245 | } 2246 | output{ 2247 | display:block; 2248 | padding-top:7px; 2249 | font-size:14px; 2250 | line-height:1.42857143; 2251 | color:#555 2252 | } 2253 | .form-control{ 2254 | display:block; 2255 | width:100%; 2256 | height:34px; 2257 | padding:6px 12px; 2258 | font-size:14px; 2259 | line-height:1.42857143; 2260 | color:#555; 2261 | background-color:#fff; 2262 | background-image:none; 2263 | border:1px solid #ccc; 2264 | border-radius:4px; 2265 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075); 2266 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075); 2267 | -webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s; 2268 | -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s; 2269 | transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s 2270 | } 2271 | .form-control:focus{ 2272 | border-color:#66afe9; 2273 | outline:0; 2274 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); 2275 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6) 2276 | } 2277 | .form-control::-moz-placeholder{ 2278 | color:#999; 2279 | opacity:1 2280 | } 2281 | .form-control:-ms-input-placeholder{ 2282 | color:#999 2283 | } 2284 | .form-control::-webkit-input-placeholder{ 2285 | color:#999 2286 | } 2287 | .form-control::-ms-expand{ 2288 | background-color:transparent; 2289 | border:0 2290 | } 2291 | .form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{ 2292 | background-color:#eee; 2293 | opacity:1 2294 | } 2295 | .form-control[disabled],fieldset[disabled] .form-control{ 2296 | cursor:not-allowed 2297 | } 2298 | textarea.form-control{ 2299 | height:auto 2300 | } 2301 | input[type=search]{ 2302 | -webkit-appearance:none 2303 | } 2304 | @media screen and (-webkit-min-device-pixel-ratio:0){ 2305 | input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{ 2306 | line-height:34px 2307 | } 2308 | .input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{ 2309 | line-height:30px 2310 | } 2311 | .input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{ 2312 | line-height:46px 2313 | } 2314 | } 2315 | .form-group{ 2316 | margin-bottom:15px 2317 | } 2318 | .checkbox,.radio{ 2319 | position:relative; 2320 | display:block; 2321 | margin-top:10px; 2322 | margin-bottom:10px 2323 | } 2324 | .checkbox label,.radio label{ 2325 | min-height:20px; 2326 | padding-left:20px; 2327 | margin-bottom:0; 2328 | font-weight:400; 2329 | cursor:pointer 2330 | } 2331 | .checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{ 2332 | position:absolute; 2333 | margin-top:4px\9; 2334 | margin-left:-20px 2335 | } 2336 | .checkbox+.checkbox,.radio+.radio{ 2337 | margin-top:-5px 2338 | } 2339 | .checkbox-inline,.radio-inline{ 2340 | position:relative; 2341 | display:inline-block; 2342 | padding-left:20px; 2343 | margin-bottom:0; 2344 | font-weight:400; 2345 | vertical-align:middle; 2346 | cursor:pointer 2347 | } 2348 | .checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{ 2349 | margin-top:0; 2350 | margin-left:10px 2351 | } 2352 | fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{ 2353 | cursor:not-allowed 2354 | } 2355 | .checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{ 2356 | cursor:not-allowed 2357 | } 2358 | .checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{ 2359 | cursor:not-allowed 2360 | } 2361 | .form-control-static{ 2362 | min-height:34px; 2363 | padding-top:7px; 2364 | padding-bottom:7px; 2365 | margin-bottom:0 2366 | } 2367 | .form-control-static.input-lg,.form-control-static.input-sm{ 2368 | padding-right:0; 2369 | padding-left:0 2370 | } 2371 | .input-sm{ 2372 | height:30px; 2373 | padding:5px 10px; 2374 | font-size:12px; 2375 | line-height:1.5; 2376 | border-radius:3px 2377 | } 2378 | select.input-sm{ 2379 | height:30px; 2380 | line-height:30px 2381 | } 2382 | select[multiple].input-sm,textarea.input-sm{ 2383 | height:auto 2384 | } 2385 | .form-group-sm .form-control{ 2386 | height:30px; 2387 | padding:5px 10px; 2388 | font-size:12px; 2389 | line-height:1.5; 2390 | border-radius:3px 2391 | } 2392 | .form-group-sm select.form-control{ 2393 | height:30px; 2394 | line-height:30px 2395 | } 2396 | .form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{ 2397 | height:auto 2398 | } 2399 | .form-group-sm .form-control-static{ 2400 | height:30px; 2401 | min-height:32px; 2402 | padding:6px 10px; 2403 | font-size:12px; 2404 | line-height:1.5 2405 | } 2406 | .input-lg{ 2407 | height:46px; 2408 | padding:10px 16px; 2409 | font-size:18px; 2410 | line-height:1.3333333; 2411 | border-radius:6px 2412 | } 2413 | select.input-lg{ 2414 | height:46px; 2415 | line-height:46px 2416 | } 2417 | select[multiple].input-lg,textarea.input-lg{ 2418 | height:auto 2419 | } 2420 | .form-group-lg .form-control{ 2421 | height:46px; 2422 | padding:10px 16px; 2423 | font-size:18px; 2424 | line-height:1.3333333; 2425 | border-radius:6px 2426 | } 2427 | .form-group-lg select.form-control{ 2428 | height:46px; 2429 | line-height:46px 2430 | } 2431 | .form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{ 2432 | height:auto 2433 | } 2434 | .form-group-lg .form-control-static{ 2435 | height:46px; 2436 | min-height:38px; 2437 | padding:11px 16px; 2438 | font-size:18px; 2439 | line-height:1.3333333 2440 | } 2441 | .has-feedback{ 2442 | position:relative 2443 | } 2444 | .has-feedback .form-control{ 2445 | padding-right:42.5px 2446 | } 2447 | .form-control-feedback{ 2448 | position:absolute; 2449 | top:0; 2450 | right:0; 2451 | z-index:2; 2452 | display:block; 2453 | width:34px; 2454 | height:34px; 2455 | line-height:34px; 2456 | text-align:center; 2457 | pointer-events:none 2458 | } 2459 | .form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{ 2460 | width:46px; 2461 | height:46px; 2462 | line-height:46px 2463 | } 2464 | .form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{ 2465 | width:30px; 2466 | height:30px; 2467 | line-height:30px 2468 | } 2469 | .has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{ 2470 | color:#3c763d 2471 | } 2472 | .has-success .form-control{ 2473 | border-color:#3c763d; 2474 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075); 2475 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075) 2476 | } 2477 | .has-success .form-control:focus{ 2478 | border-color:#2b542c; 2479 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168; 2480 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168 2481 | } 2482 | .has-success .input-group-addon{ 2483 | color:#3c763d; 2484 | background-color:#dff0d8; 2485 | border-color:#3c763d 2486 | } 2487 | .has-success .form-control-feedback{ 2488 | color:#3c763d 2489 | } 2490 | .has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{ 2491 | color:#8a6d3b 2492 | } 2493 | .has-warning .form-control{ 2494 | border-color:#8a6d3b; 2495 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075); 2496 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075) 2497 | } 2498 | .has-warning .form-control:focus{ 2499 | border-color:#66512c; 2500 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b; 2501 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b 2502 | } 2503 | .has-warning .input-group-addon{ 2504 | color:#8a6d3b; 2505 | background-color:#fcf8e3; 2506 | border-color:#8a6d3b 2507 | } 2508 | .has-warning .form-control-feedback{ 2509 | color:#8a6d3b 2510 | } 2511 | .has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{ 2512 | color:#a94442 2513 | } 2514 | .has-error .form-control{ 2515 | border-color:#a94442; 2516 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075); 2517 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075) 2518 | } 2519 | .has-error .form-control:focus{ 2520 | border-color:#843534; 2521 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483; 2522 | box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483 2523 | } 2524 | .has-error .input-group-addon{ 2525 | color:#a94442; 2526 | background-color:#f2dede; 2527 | border-color:#a94442 2528 | } 2529 | .has-error .form-control-feedback{ 2530 | color:#a94442 2531 | } 2532 | .has-feedback label~.form-control-feedback{ 2533 | top:25px 2534 | } 2535 | .has-feedback label.sr-only~.form-control-feedback{ 2536 | top:0 2537 | } 2538 | .help-block{ 2539 | display:block; 2540 | margin-top:5px; 2541 | margin-bottom:10px; 2542 | color:#737373 2543 | } 2544 | @media (min-width:768px){ 2545 | .form-inline .form-group{ 2546 | display:inline-block; 2547 | margin-bottom:0; 2548 | vertical-align:middle 2549 | } 2550 | .form-inline .form-control{ 2551 | display:inline-block; 2552 | width:auto; 2553 | vertical-align:middle 2554 | } 2555 | .form-inline .form-control-static{ 2556 | display:inline-block 2557 | } 2558 | .form-inline .input-group{ 2559 | display:inline-table; 2560 | vertical-align:middle 2561 | } 2562 | .form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{ 2563 | width:auto 2564 | } 2565 | .form-inline .input-group>.form-control{ 2566 | width:100% 2567 | } 2568 | .form-inline .control-label{ 2569 | margin-bottom:0; 2570 | vertical-align:middle 2571 | } 2572 | .form-inline .checkbox,.form-inline .radio{ 2573 | display:inline-block; 2574 | margin-top:0; 2575 | margin-bottom:0; 2576 | vertical-align:middle 2577 | } 2578 | .form-inline .checkbox label,.form-inline .radio label{ 2579 | padding-left:0 2580 | } 2581 | .form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{ 2582 | position:relative; 2583 | margin-left:0 2584 | } 2585 | .form-inline .has-feedback .form-control-feedback{ 2586 | top:0 2587 | } 2588 | } 2589 | .form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{ 2590 | padding-top:7px; 2591 | margin-top:0; 2592 | margin-bottom:0 2593 | } 2594 | .form-horizontal .checkbox,.form-horizontal .radio{ 2595 | min-height:27px 2596 | } 2597 | .form-horizontal .form-group{ 2598 | margin-right:-15px; 2599 | margin-left:-15px 2600 | } 2601 | @media (min-width:768px){ 2602 | .form-horizontal .control-label{ 2603 | padding-top:7px; 2604 | margin-bottom:0; 2605 | text-align:right 2606 | } 2607 | } 2608 | .form-horizontal .has-feedback .form-control-feedback{ 2609 | right:15px 2610 | } 2611 | @media (min-width:768px){ 2612 | .form-horizontal .form-group-lg .control-label{ 2613 | padding-top:11px; 2614 | font-size:18px 2615 | } 2616 | } 2617 | @media (min-width:768px){ 2618 | .form-horizontal .form-group-sm .control-label{ 2619 | padding-top:6px; 2620 | font-size:12px 2621 | } 2622 | } 2623 | .btn{ 2624 | display:inline-block; 2625 | padding:6px 12px; 2626 | margin-bottom:0; 2627 | font-size:14px; 2628 | font-weight:400; 2629 | line-height:1.42857143; 2630 | text-align:center; 2631 | white-space:nowrap; 2632 | vertical-align:middle; 2633 | -ms-touch-action:manipulation; 2634 | touch-action:manipulation; 2635 | cursor:pointer; 2636 | -webkit-user-select:none; 2637 | -moz-user-select:none; 2638 | -ms-user-select:none; 2639 | user-select:none; 2640 | background-image:none; 2641 | border:1px solid transparent; 2642 | border-radius:4px 2643 | } 2644 | .btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{ 2645 | outline:5px auto -webkit-focus-ring-color; 2646 | outline-offset:-2px 2647 | } 2648 | .btn.focus,.btn:focus,.btn:hover{ 2649 | color:#333; 2650 | text-decoration:none 2651 | } 2652 | .btn.active,.btn:active{ 2653 | background-image:none; 2654 | outline:0; 2655 | -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125); 2656 | box-shadow:inset 0 3px 5px rgba(0,0,0,.125) 2657 | } 2658 | .btn.disabled,.btn[disabled],fieldset[disabled] .btn{ 2659 | cursor:not-allowed; 2660 | filter:alpha(opacity=65); 2661 | -webkit-box-shadow:none; 2662 | box-shadow:none; 2663 | opacity:.65 2664 | } 2665 | a.btn.disabled,fieldset[disabled] a.btn{ 2666 | pointer-events:none 2667 | } 2668 | .btn-default{ 2669 | color:#333; 2670 | background-color:#fff; 2671 | border-color:#ccc 2672 | } 2673 | .btn-default.focus,.btn-default:focus{ 2674 | color:#333; 2675 | background-color:#e6e6e6; 2676 | border-color:#8c8c8c 2677 | } 2678 | .btn-default:hover{ 2679 | color:#333; 2680 | background-color:#e6e6e6; 2681 | border-color:#adadad 2682 | } 2683 | .btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{ 2684 | color:#333; 2685 | background-color:#e6e6e6; 2686 | border-color:#adadad 2687 | } 2688 | .btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{ 2689 | color:#333; 2690 | background-color:#d4d4d4; 2691 | border-color:#8c8c8c 2692 | } 2693 | .btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{ 2694 | background-image:none 2695 | } 2696 | .btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{ 2697 | background-color:#fff; 2698 | border-color:#ccc 2699 | } 2700 | .btn-default .badge{ 2701 | color:#fff; 2702 | background-color:#333 2703 | } 2704 | .btn-primary{ 2705 | color:#fff; 2706 | background-color:#007bff; 2707 | border-color:#2e6da4 2708 | } 2709 | .btn-primary.focus,.btn-primary:focus{ 2710 | color:#fff; 2711 | background-color:#337ab7; 2712 | border-color:#122b40 2713 | } 2714 | .btn-primary:hover{ 2715 | color:#fff; 2716 | background-color:#337ab7; 2717 | border-color:#204d74 2718 | } 2719 | .btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{ 2720 | color:#fff; 2721 | background-color:#286090; 2722 | border-color:#204d74 2723 | } 2724 | .btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{ 2725 | color:#fff; 2726 | background-color:#204d74; 2727 | border-color:#122b40 2728 | } 2729 | .btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{ 2730 | background-image:none 2731 | } 2732 | .btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{ 2733 | background-color:#337ab7; 2734 | border-color:#2e6da4 2735 | } 2736 | .btn-primary .badge{ 2737 | color:#337ab7; 2738 | background-color:#fff 2739 | } 2740 | .btn-success{ 2741 | color:#fff; 2742 | background-color:#5cb85c; 2743 | border-color:#4cae4c 2744 | } 2745 | .btn-success.focus,.btn-success:focus{ 2746 | color:#fff; 2747 | background-color:#449d44; 2748 | border-color:#255625 2749 | } 2750 | .btn-success:hover{ 2751 | color:#fff; 2752 | background-color:#449d44; 2753 | border-color:#398439 2754 | } 2755 | .btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{ 2756 | color:#fff; 2757 | background-color:#449d44; 2758 | border-color:#398439 2759 | } 2760 | .btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{ 2761 | color:#fff; 2762 | background-color:#398439; 2763 | border-color:#255625 2764 | } 2765 | .btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{ 2766 | background-image:none 2767 | } 2768 | .btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{ 2769 | background-color:#5cb85c; 2770 | border-color:#4cae4c 2771 | } 2772 | .btn-success .badge{ 2773 | color:#5cb85c; 2774 | background-color:#fff 2775 | } 2776 | .btn-info{ 2777 | color:#fff; 2778 | background-color:#5bc0de; 2779 | border-color:#46b8da 2780 | } 2781 | .btn-info.focus,.btn-info:focus{ 2782 | color:#fff; 2783 | background-color:#31b0d5; 2784 | border-color:#1b6d85 2785 | } 2786 | .btn-info:hover{ 2787 | color:#fff; 2788 | background-color:#31b0d5; 2789 | border-color:#269abc 2790 | } 2791 | .btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{ 2792 | color:#fff; 2793 | background-color:#31b0d5; 2794 | border-color:#269abc 2795 | } 2796 | .btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{ 2797 | color:#fff; 2798 | background-color:#269abc; 2799 | border-color:#1b6d85 2800 | } 2801 | .btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{ 2802 | background-image:none 2803 | } 2804 | .btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{ 2805 | background-color:#5bc0de; 2806 | border-color:#46b8da 2807 | } 2808 | .btn-info .badge{ 2809 | color:#5bc0de; 2810 | background-color:#fff 2811 | } 2812 | .btn-warning{ 2813 | color:#fff; 2814 | background-color:#f0ad4e; 2815 | border-color:#eea236 2816 | } 2817 | .btn-warning.focus,.btn-warning:focus{ 2818 | color:#fff; 2819 | background-color:#ec971f; 2820 | border-color:#985f0d 2821 | } 2822 | .btn-warning:hover{ 2823 | color:#fff; 2824 | background-color:#ec971f; 2825 | border-color:#d58512 2826 | } 2827 | .btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{ 2828 | color:#fff; 2829 | background-color:#ec971f; 2830 | border-color:#d58512 2831 | } 2832 | .btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{ 2833 | color:#fff; 2834 | background-color:#d58512; 2835 | border-color:#985f0d 2836 | } 2837 | .btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{ 2838 | background-image:none 2839 | } 2840 | .btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{ 2841 | background-color:#f0ad4e; 2842 | border-color:#eea236 2843 | } 2844 | .btn-warning .badge{ 2845 | color:#f0ad4e; 2846 | background-color:#fff 2847 | } 2848 | .btn-danger{ 2849 | color:#fff; 2850 | background-color:#d9534f; 2851 | border-color:#d43f3a 2852 | } 2853 | .btn-danger.focus,.btn-danger:focus{ 2854 | color:#fff; 2855 | background-color:#c9302c; 2856 | border-color:#761c19 2857 | } 2858 | .btn-danger:hover{ 2859 | color:#fff; 2860 | background-color:#c9302c; 2861 | border-color:#ac2925 2862 | } 2863 | .btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{ 2864 | color:#fff; 2865 | background-color:#c9302c; 2866 | border-color:#ac2925 2867 | } 2868 | .btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{ 2869 | color:#fff; 2870 | background-color:#ac2925; 2871 | border-color:#761c19 2872 | } 2873 | .btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{ 2874 | background-image:none 2875 | } 2876 | .btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{ 2877 | background-color:#d9534f; 2878 | border-color:#d43f3a 2879 | } 2880 | .btn-danger .badge{ 2881 | color:#d9534f; 2882 | background-color:#fff 2883 | } 2884 | .btn-link{ 2885 | font-weight:400; 2886 | color:#337ab7; 2887 | border-radius:0 2888 | } 2889 | .btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{ 2890 | background-color:transparent; 2891 | -webkit-box-shadow:none; 2892 | box-shadow:none 2893 | } 2894 | .btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{ 2895 | border-color:transparent 2896 | } 2897 | .btn-link:focus,.btn-link:hover{ 2898 | color:#23527c; 2899 | text-decoration:underline; 2900 | background-color:transparent 2901 | } 2902 | .btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{ 2903 | color:#777; 2904 | text-decoration:none 2905 | } 2906 | .btn-group-lg>.btn,.btn-lg{ 2907 | padding:10px 16px; 2908 | font-size:18px; 2909 | line-height:1.3333333; 2910 | border-radius:6px 2911 | } 2912 | .btn-group-sm>.btn,.btn-sm{ 2913 | padding:5px 10px; 2914 | font-size:12px; 2915 | line-height:1.5; 2916 | border-radius:3px 2917 | } 2918 | .btn-group-xs>.btn,.btn-xs{ 2919 | padding:1px 5px; 2920 | font-size:12px; 2921 | line-height:1.5; 2922 | border-radius:3px 2923 | } 2924 | .btn-block{ 2925 | display:block; 2926 | width:100% 2927 | } 2928 | .btn-block+.btn-block{ 2929 | margin-top:5px 2930 | } 2931 | input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{ 2932 | width:100% 2933 | } 2934 | .fade{ 2935 | opacity:0; 2936 | -webkit-transition:opacity .15s linear; 2937 | -o-transition:opacity .15s linear; 2938 | transition:opacity .15s linear 2939 | } 2940 | .fade.in{ 2941 | opacity:1 2942 | } 2943 | .collapse{ 2944 | display:none 2945 | } 2946 | .collapse.in{ 2947 | display:block 2948 | } 2949 | tr.collapse.in{ 2950 | display:table-row 2951 | } 2952 | tbody.collapse.in{ 2953 | display:table-row-group 2954 | } 2955 | .collapsing{ 2956 | position:relative; 2957 | height:0; 2958 | overflow:hidden; 2959 | -webkit-transition-timing-function:ease; 2960 | -o-transition-timing-function:ease; 2961 | transition-timing-function:ease; 2962 | -webkit-transition-duration:.35s; 2963 | -o-transition-duration:.35s; 2964 | transition-duration:.35s; 2965 | -webkit-transition-property:height,visibility; 2966 | -o-transition-property:height,visibility; 2967 | transition-property:height,visibility 2968 | } 2969 | .caret{ 2970 | display:inline-block; 2971 | width:0; 2972 | height:0; 2973 | margin-left:2px; 2974 | vertical-align:middle; 2975 | border-top:4px dashed; 2976 | border-top:4px solid\9; 2977 | border-right:4px solid transparent; 2978 | border-left:4px solid transparent 2979 | } 2980 | .dropdown,.dropup{ 2981 | position:relative 2982 | } 2983 | .dropdown-toggle:focus{ 2984 | outline:0 2985 | } 2986 | .dropdown-menu{ 2987 | position:absolute; 2988 | top:100%; 2989 | left:0; 2990 | z-index:1000; 2991 | display:none; 2992 | float:left; 2993 | min-width:160px; 2994 | padding:5px 0; 2995 | margin:2px 0 0; 2996 | font-size:14px; 2997 | text-align:left; 2998 | list-style:none; 2999 | background-color:#fff; 3000 | -webkit-background-clip:padding-box; 3001 | background-clip:padding-box; 3002 | border:1px solid #ccc; 3003 | border:1px solid rgba(0,0,0,.15); 3004 | border-radius:4px; 3005 | -webkit-box-shadow:0 6px 12px rgba(0,0,0,.175); 3006 | box-shadow:0 6px 12px rgba(0,0,0,.175) 3007 | } 3008 | .dropdown-menu.pull-right{ 3009 | right:0; 3010 | left:auto 3011 | } 3012 | .dropdown-menu .divider{ 3013 | height:1px; 3014 | margin:9px 0; 3015 | overflow:hidden; 3016 | background-color:#e5e5e5 3017 | } 3018 | .dropdown-menu>li>a{ 3019 | display:block; 3020 | padding:3px 20px; 3021 | clear:both; 3022 | font-weight:400; 3023 | line-height:1.42857143; 3024 | color:#333; 3025 | white-space:nowrap 3026 | } 3027 | .dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{ 3028 | color:#262626; 3029 | text-decoration:none; 3030 | background-color:#f5f5f5 3031 | } 3032 | .dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{ 3033 | color:#fff; 3034 | text-decoration:none; 3035 | background-color:#337ab7; 3036 | outline:0 3037 | } 3038 | .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{ 3039 | color:#777 3040 | } 3041 | .dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{ 3042 | text-decoration:none; 3043 | cursor:not-allowed; 3044 | background-color:transparent; 3045 | background-image:none; 3046 | filter:progid:DXImageTransform.Microsoft.gradient(enabled=false) 3047 | } 3048 | .open>.dropdown-menu{ 3049 | display:block 3050 | } 3051 | .open>a{ 3052 | outline:0 3053 | } 3054 | .dropdown-menu-right{ 3055 | right:0; 3056 | left:auto 3057 | } 3058 | .dropdown-menu-left{ 3059 | right:auto; 3060 | left:0 3061 | } 3062 | .dropdown-header{ 3063 | display:block; 3064 | padding:3px 20px; 3065 | font-size:12px; 3066 | line-height:1.42857143; 3067 | color:#777; 3068 | white-space:nowrap 3069 | } 3070 | .dropdown-backdrop{ 3071 | position:fixed; 3072 | top:0; 3073 | right:0; 3074 | bottom:0; 3075 | left:0; 3076 | z-index:990 3077 | } 3078 | .pull-right>.dropdown-menu{ 3079 | right:0; 3080 | left:auto 3081 | } 3082 | .dropup .caret,.navbar-fixed-bottom .dropdown .caret{ 3083 | content:""; 3084 | border-top:0; 3085 | border-bottom:4px dashed; 3086 | border-bottom:4px solid\9 3087 | } 3088 | .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{ 3089 | top:auto; 3090 | bottom:100%; 3091 | margin-bottom:2px 3092 | } 3093 | @media (min-width:768px){ 3094 | .navbar-right .dropdown-menu{ 3095 | right:0; 3096 | left:auto 3097 | } 3098 | .navbar-right .dropdown-menu-left{ 3099 | right:auto; 3100 | left:0 3101 | } 3102 | } 3103 | .btn-group,.btn-group-vertical{ 3104 | position:relative; 3105 | display:inline-block; 3106 | vertical-align:middle 3107 | } 3108 | .btn-group-vertical>.btn,.btn-group>.btn{ 3109 | position:relative; 3110 | float:left 3111 | } 3112 | .btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{ 3113 | z-index:2 3114 | } 3115 | .btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{ 3116 | margin-left:-1px 3117 | } 3118 | .btn-toolbar{ 3119 | margin-left:-5px 3120 | } 3121 | .btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{ 3122 | float:left 3123 | } 3124 | .btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{ 3125 | margin-left:5px 3126 | } 3127 | .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){ 3128 | border-radius:0 3129 | } 3130 | .btn-group>.btn:first-child{ 3131 | margin-left:0 3132 | } 3133 | .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){ 3134 | border-top-right-radius:0; 3135 | border-bottom-right-radius:0 3136 | } 3137 | .btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){ 3138 | border-top-left-radius:0; 3139 | border-bottom-left-radius:0 3140 | } 3141 | .btn-group>.btn-group{ 3142 | float:left 3143 | } 3144 | .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{ 3145 | border-radius:0 3146 | } 3147 | .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{ 3148 | border-top-right-radius:0; 3149 | border-bottom-right-radius:0 3150 | } 3151 | .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{ 3152 | border-top-left-radius:0; 3153 | border-bottom-left-radius:0 3154 | } 3155 | .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{ 3156 | outline:0 3157 | } 3158 | .btn-group>.btn+.dropdown-toggle{ 3159 | padding-right:8px; 3160 | padding-left:8px 3161 | } 3162 | .btn-group>.btn-lg+.dropdown-toggle{ 3163 | padding-right:12px; 3164 | padding-left:12px 3165 | } 3166 | .btn-group.open .dropdown-toggle{ 3167 | -webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125); 3168 | box-shadow:inset 0 3px 5px rgba(0,0,0,.125) 3169 | } 3170 | .btn-group.open .dropdown-toggle.btn-link{ 3171 | -webkit-box-shadow:none; 3172 | box-shadow:none 3173 | } 3174 | .btn .caret{ 3175 | margin-left:0 3176 | } 3177 | .btn-lg .caret{ 3178 | border-width:5px 5px 0; 3179 | border-bottom-width:0 3180 | } 3181 | .dropup .btn-lg .caret{ 3182 | border-width:0 5px 5px 3183 | } 3184 | .btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{ 3185 | display:block; 3186 | float:none; 3187 | width:100%; 3188 | max-width:100% 3189 | } 3190 | .btn-group-vertical>.btn-group>.btn{ 3191 | float:none 3192 | } 3193 | .btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{ 3194 | margin-top:-1px; 3195 | margin-left:0 3196 | } 3197 | .btn-group-vertical>.btn:not(:first-child):not(:last-child){ 3198 | border-radius:0 3199 | } 3200 | .btn-group-vertical>.btn:first-child:not(:last-child){ 3201 | border-top-left-radius:4px; 3202 | border-top-right-radius:4px; 3203 | border-bottom-right-radius:0; 3204 | border-bottom-left-radius:0 3205 | } 3206 | .btn-group-vertical>.btn:last-child:not(:first-child){ 3207 | border-top-left-radius:0; 3208 | border-top-right-radius:0; 3209 | border-bottom-right-radius:4px; 3210 | border-bottom-left-radius:4px 3211 | } 3212 | .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{ 3213 | border-radius:0 3214 | } 3215 | .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{ 3216 | border-bottom-right-radius:0; 3217 | border-bottom-left-radius:0 3218 | } 3219 | .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{ 3220 | border-top-left-radius:0; 3221 | border-top-right-radius:0 3222 | } 3223 | .btn-group-justified{ 3224 | display:table; 3225 | width:100%; 3226 | table-layout:fixed; 3227 | border-collapse:separate 3228 | } 3229 | .btn-group-justified>.btn,.btn-group-justified>.btn-group{ 3230 | display:table-cell; 3231 | float:none; 3232 | width:1% 3233 | } 3234 | .btn-group-justified>.btn-group .btn{ 3235 | width:100% 3236 | } 3237 | .btn-group-justified>.btn-group .dropdown-menu{ 3238 | left:auto 3239 | } 3240 | [data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{ 3241 | position:absolute; 3242 | clip:rect(0,0,0,0); 3243 | pointer-events:none 3244 | } 3245 | .input-group{ 3246 | position:relative; 3247 | display:table; 3248 | border-collapse:separate 3249 | } 3250 | .input-group[class*=col-]{ 3251 | float:none; 3252 | padding-right:0; 3253 | padding-left:0 3254 | } 3255 | .input-group .form-control{ 3256 | position:relative; 3257 | z-index:2; 3258 | float:left; 3259 | width:100%; 3260 | margin-bottom:0 3261 | } 3262 | .input-group .form-control:focus{ 3263 | z-index:3 3264 | } 3265 | .input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{ 3266 | height:46px; 3267 | padding:10px 16px; 3268 | font-size:18px; 3269 | line-height:1.3333333; 3270 | border-radius:6px 3271 | } 3272 | select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{ 3273 | height:46px; 3274 | line-height:46px 3275 | } 3276 | select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{ 3277 | height:auto 3278 | } 3279 | .input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{ 3280 | height:30px; 3281 | padding:5px 10px; 3282 | font-size:12px; 3283 | line-height:1.5; 3284 | border-radius:3px 3285 | } 3286 | select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{ 3287 | height:30px; 3288 | line-height:30px 3289 | } 3290 | select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{ 3291 | height:auto 3292 | } 3293 | .input-group .form-control,.input-group-addon,.input-group-btn{ 3294 | display:table-cell 3295 | } 3296 | .input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){ 3297 | border-radius:0 3298 | } 3299 | .input-group-addon,.input-group-btn{ 3300 | width:1%; 3301 | white-space:nowrap; 3302 | vertical-align:middle 3303 | } 3304 | .input-group-addon{ 3305 | padding:6px 12px; 3306 | font-size:14px; 3307 | font-weight:400; 3308 | line-height:1; 3309 | color:#555; 3310 | text-align:center; 3311 | background-color:#eee; 3312 | border:1px solid #ccc; 3313 | border-radius:4px 3314 | } 3315 | .input-group-addon.input-sm{ 3316 | padding:5px 10px; 3317 | font-size:12px; 3318 | border-radius:3px 3319 | } 3320 | .input-group-addon.input-lg{ 3321 | padding:10px 16px; 3322 | font-size:18px; 3323 | border-radius:6px 3324 | } 3325 | .input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{ 3326 | margin-top:0 3327 | } 3328 | .input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){ 3329 | border-top-right-radius:0; 3330 | border-bottom-right-radius:0 3331 | } 3332 | .input-group-addon:first-child{ 3333 | border-right:0 3334 | } 3335 | .input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{ 3336 | border-top-left-radius:0; 3337 | border-bottom-left-radius:0 3338 | } 3339 | .input-group-addon:last-child{ 3340 | border-left:0 3341 | } 3342 | .input-group-btn{ 3343 | position:relative; 3344 | font-size:0; 3345 | white-space:nowrap 3346 | } 3347 | .input-group-btn>.btn{ 3348 | position:relative 3349 | } 3350 | .input-group-btn>.btn+.btn{ 3351 | margin-left:-1px 3352 | } 3353 | .input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{ 3354 | z-index:2 3355 | } 3356 | .input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{ 3357 | margin-right:-1px 3358 | } 3359 | .input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{ 3360 | z-index:2; 3361 | margin-left:-1px 3362 | } 3363 | .nav{ 3364 | padding-left:0; 3365 | margin-bottom:0; 3366 | list-style:none 3367 | } 3368 | .nav>li{ 3369 | position:relative; 3370 | display:block 3371 | } 3372 | .nav>li>a{ 3373 | position:relative; 3374 | display:block; 3375 | padding:10px 15px 3376 | } 3377 | .nav>li>a:focus,.nav>li>a:hover{ 3378 | text-decoration:none; 3379 | background-color:#eee 3380 | } 3381 | .nav>li.disabled>a{ 3382 | color:#777 3383 | } 3384 | .nav>li.disabled>a:focus,.nav>li.disabled>a:hover{ 3385 | color:#777; 3386 | text-decoration:none; 3387 | cursor:not-allowed; 3388 | background-color:transparent 3389 | } 3390 | .nav .open>a,.nav .open>a:focus,.nav .open>a:hover{ 3391 | background-color:#eee; 3392 | border-color:#337ab7 3393 | } 3394 | .nav .nav-divider{ 3395 | height:1px; 3396 | margin:9px 0; 3397 | overflow:hidden; 3398 | background-color:#e5e5e5 3399 | } 3400 | .nav>li>a>img{ 3401 | max-width:none 3402 | } 3403 | .nav-tabs{ 3404 | border-bottom:1px solid #ddd 3405 | } 3406 | .nav-tabs>li{ 3407 | float:left; 3408 | margin-bottom:-1px 3409 | } 3410 | .nav-tabs>li>a{ 3411 | margin-right:2px; 3412 | line-height:1.42857143; 3413 | border:1px solid transparent; 3414 | border-radius:4px 4px 0 0 3415 | } 3416 | .nav-tabs>li>a:hover{ 3417 | border-color:#eee #eee #ddd 3418 | } 3419 | .nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{ 3420 | color:#555; 3421 | cursor:default; 3422 | background-color:#fff; 3423 | border:1px solid #ddd; 3424 | border-bottom-color:transparent 3425 | } 3426 | .nav-tabs.nav-justified{ 3427 | width:100%; 3428 | border-bottom:0 3429 | } 3430 | .nav-tabs.nav-justified>li{ 3431 | float:none 3432 | } 3433 | .nav-tabs.nav-justified>li>a{ 3434 | margin-bottom:5px; 3435 | text-align:center 3436 | } 3437 | .nav-tabs.nav-justified>.dropdown .dropdown-menu{ 3438 | top:auto; 3439 | left:auto 3440 | } 3441 | @media (min-width:768px){ 3442 | .nav-tabs.nav-justified>li{ 3443 | display:table-cell; 3444 | width:1% 3445 | } 3446 | .nav-tabs.nav-justified>li>a{ 3447 | margin-bottom:0 3448 | } 3449 | } 3450 | .nav-tabs.nav-justified>li>a{ 3451 | margin-right:0; 3452 | border-radius:4px 3453 | } 3454 | .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{ 3455 | border:1px solid #ddd 3456 | } 3457 | @media (min-width:768px){ 3458 | .nav-tabs.nav-justified>li>a{ 3459 | border-bottom:1px solid #ddd; 3460 | border-radius:4px 4px 0 0 3461 | } 3462 | .nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{ 3463 | border-bottom-color:#fff 3464 | } 3465 | } 3466 | .nav-pills>li{ 3467 | float:left 3468 | } 3469 | .nav-pills>li>a{ 3470 | border-radius:4px 3471 | } 3472 | .nav-pills>li+li{ 3473 | margin-left:2px 3474 | } 3475 | .nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{ 3476 | color:#fff; 3477 | background-color:#337ab7 3478 | } 3479 | .nav-stacked>li{ 3480 | float:none 3481 | } 3482 | .nav-stacked>li+li{ 3483 | margin-top:2px; 3484 | margin-left:0 3485 | } 3486 | .nav-justified{ 3487 | width:100% 3488 | } 3489 | .nav-justified>li{ 3490 | float:none 3491 | } 3492 | .nav-justified>li>a{ 3493 | margin-bottom:5px; 3494 | text-align:center 3495 | } 3496 | .nav-justified>.dropdown .dropdown-menu{ 3497 | top:auto; 3498 | left:auto 3499 | } 3500 | @media (min-width:768px){ 3501 | .nav-justified>li{ 3502 | display:table-cell; 3503 | width:1% 3504 | } 3505 | .nav-justified>li>a{ 3506 | margin-bottom:0 3507 | } 3508 | } 3509 | .nav-tabs-justified{ 3510 | border-bottom:0 3511 | } 3512 | .nav-tabs-justified>li>a{ 3513 | margin-right:0; 3514 | border-radius:4px 3515 | } 3516 | .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{ 3517 | border:1px solid #ddd 3518 | } 3519 | @media (min-width:768px){ 3520 | .nav-tabs-justified>li>a{ 3521 | border-bottom:1px solid #ddd; 3522 | border-radius:4px 4px 0 0 3523 | } 3524 | .nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{ 3525 | border-bottom-color:#fff 3526 | } 3527 | } 3528 | .tab-content>.tab-pane{ 3529 | display:none 3530 | } 3531 | .tab-content>.active{ 3532 | display:block 3533 | } 3534 | .nav-tabs .dropdown-menu{ 3535 | margin-top:-1px; 3536 | border-top-left-radius:0; 3537 | border-top-right-radius:0 3538 | } 3539 | .navbar{ 3540 | position:relative; 3541 | min-height:50px; 3542 | margin-bottom:20px; 3543 | border:1px solid transparent 3544 | } 3545 | @media (min-width:768px){ 3546 | .navbar{ 3547 | border-radius:4px 3548 | } 3549 | } 3550 | @media (min-width:768px){ 3551 | .navbar-header{ 3552 | float:left 3553 | } 3554 | } 3555 | .navbar-collapse{ 3556 | padding-right:15px; 3557 | padding-left:15px; 3558 | overflow-x:visible; 3559 | -webkit-overflow-scrolling:touch; 3560 | border-top:1px solid transparent; 3561 | -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1); 3562 | box-shadow:inset 0 1px 0 rgba(255,255,255,.1) 3563 | } 3564 | .navbar-collapse.in{ 3565 | overflow-y:auto 3566 | } 3567 | @media (min-width:768px){ 3568 | .navbar-collapse{ 3569 | width:auto; 3570 | border-top:0; 3571 | -webkit-box-shadow:none; 3572 | box-shadow:none 3573 | } 3574 | .navbar-collapse.collapse{ 3575 | display:block!important; 3576 | height:auto!important; 3577 | padding-bottom:0; 3578 | overflow:visible!important 3579 | } 3580 | .navbar-collapse.in{ 3581 | overflow-y:visible 3582 | } 3583 | .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{ 3584 | padding-right:0; 3585 | padding-left:0 3586 | } 3587 | } 3588 | .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{ 3589 | max-height:340px 3590 | } 3591 | @media (max-device-width:480px) and (orientation:landscape){ 3592 | .navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{ 3593 | max-height:200px 3594 | } 3595 | } 3596 | .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{ 3597 | margin-right:-15px; 3598 | margin-left:-15px 3599 | } 3600 | @media (min-width:768px){ 3601 | .container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{ 3602 | margin-right:0; 3603 | margin-left:0 3604 | } 3605 | } 3606 | .navbar-static-top{ 3607 | z-index:1000; 3608 | border-width:0 0 1px 3609 | } 3610 | @media (min-width:768px){ 3611 | .navbar-static-top{ 3612 | border-radius:0 3613 | } 3614 | } 3615 | .navbar-fixed-bottom,.navbar-fixed-top{ 3616 | position:fixed; 3617 | right:0; 3618 | left:0; 3619 | z-index:1030 3620 | } 3621 | @media (min-width:768px){ 3622 | .navbar-fixed-bottom,.navbar-fixed-top{ 3623 | border-radius:0 3624 | } 3625 | } 3626 | .navbar-fixed-top{ 3627 | top:0; 3628 | border-width:0 0 1px 3629 | } 3630 | .navbar-fixed-bottom{ 3631 | bottom:0; 3632 | margin-bottom:0; 3633 | border-width:1px 0 0 3634 | } 3635 | .navbar-brand{ 3636 | float:left; 3637 | height:50px; 3638 | padding:15px 15px; 3639 | font-size:18px; 3640 | line-height:20px 3641 | } 3642 | .navbar-brand:focus,.navbar-brand:hover{ 3643 | text-decoration:none 3644 | } 3645 | .navbar-brand>img{ 3646 | display:block 3647 | } 3648 | @media (min-width:768px){ 3649 | .navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{ 3650 | margin-left:-15px 3651 | } 3652 | } 3653 | .navbar-toggle{ 3654 | position:relative; 3655 | float:right; 3656 | padding:9px 10px; 3657 | margin-top:8px; 3658 | margin-right:15px; 3659 | margin-bottom:8px; 3660 | background-color:transparent; 3661 | background-image:none; 3662 | border:1px solid transparent; 3663 | border-radius:4px 3664 | } 3665 | .navbar-toggle:focus{ 3666 | outline:0 3667 | } 3668 | .navbar-toggle .icon-bar{ 3669 | display:block; 3670 | width:22px; 3671 | height:2px; 3672 | border-radius:1px 3673 | } 3674 | .navbar-toggle .icon-bar+.icon-bar{ 3675 | margin-top:4px 3676 | } 3677 | @media (min-width:768px){ 3678 | .navbar-toggle{ 3679 | display:none 3680 | } 3681 | } 3682 | .navbar-nav{ 3683 | margin:7.5px -15px 3684 | } 3685 | .navbar-nav>li>a{ 3686 | padding-top:10px; 3687 | padding-bottom:10px; 3688 | line-height:20px 3689 | } 3690 | @media (max-width:767px){ 3691 | .navbar-nav .open .dropdown-menu{ 3692 | position:static; 3693 | float:none; 3694 | width:auto; 3695 | margin-top:0; 3696 | background-color:transparent; 3697 | border:0; 3698 | -webkit-box-shadow:none; 3699 | box-shadow:none 3700 | } 3701 | .navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{ 3702 | padding:5px 15px 5px 25px 3703 | } 3704 | .navbar-nav .open .dropdown-menu>li>a{ 3705 | line-height:20px 3706 | } 3707 | .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{ 3708 | background-image:none 3709 | } 3710 | } 3711 | @media (min-width:768px){ 3712 | .navbar-nav{ 3713 | float:left; 3714 | margin:0 3715 | } 3716 | .navbar-nav>li{ 3717 | float:left 3718 | } 3719 | .navbar-nav>li>a{ 3720 | padding-top:15px; 3721 | padding-bottom:15px 3722 | } 3723 | } 3724 | .navbar-form{ 3725 | padding:10px 15px; 3726 | margin-top:8px; 3727 | margin-right:-15px; 3728 | margin-bottom:8px; 3729 | margin-left:-15px; 3730 | border-top:1px solid transparent; 3731 | border-bottom:1px solid transparent; 3732 | -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1); 3733 | box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1) 3734 | } 3735 | @media (min-width:768px){ 3736 | .navbar-form .form-group{ 3737 | display:inline-block; 3738 | margin-bottom:0; 3739 | vertical-align:middle 3740 | } 3741 | .navbar-form .form-control{ 3742 | display:inline-block; 3743 | width:auto; 3744 | vertical-align:middle 3745 | } 3746 | .navbar-form .form-control-static{ 3747 | display:inline-block 3748 | } 3749 | .navbar-form .input-group{ 3750 | display:inline-table; 3751 | vertical-align:middle 3752 | } 3753 | .navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{ 3754 | width:auto 3755 | } 3756 | .navbar-form .input-group>.form-control{ 3757 | width:100% 3758 | } 3759 | .navbar-form .control-label{ 3760 | margin-bottom:0; 3761 | vertical-align:middle 3762 | } 3763 | .navbar-form .checkbox,.navbar-form .radio{ 3764 | display:inline-block; 3765 | margin-top:0; 3766 | margin-bottom:0; 3767 | vertical-align:middle 3768 | } 3769 | .navbar-form .checkbox label,.navbar-form .radio label{ 3770 | padding-left:0 3771 | } 3772 | .navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{ 3773 | position:relative; 3774 | margin-left:0 3775 | } 3776 | .navbar-form .has-feedback .form-control-feedback{ 3777 | top:0 3778 | } 3779 | } 3780 | @media (max-width:767px){ 3781 | .navbar-form .form-group{ 3782 | margin-bottom:5px 3783 | } 3784 | .navbar-form .form-group:last-child{ 3785 | margin-bottom:0 3786 | } 3787 | } 3788 | @media (min-width:768px){ 3789 | .navbar-form{ 3790 | width:auto; 3791 | padding-top:0; 3792 | padding-bottom:0; 3793 | margin-right:0; 3794 | margin-left:0; 3795 | border:0; 3796 | -webkit-box-shadow:none; 3797 | box-shadow:none 3798 | } 3799 | } 3800 | .navbar-nav>li>.dropdown-menu{ 3801 | margin-top:0; 3802 | border-top-left-radius:0; 3803 | border-top-right-radius:0 3804 | } 3805 | .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{ 3806 | margin-bottom:0; 3807 | border-top-left-radius:4px; 3808 | border-top-right-radius:4px; 3809 | border-bottom-right-radius:0; 3810 | border-bottom-left-radius:0 3811 | } 3812 | .navbar-btn{ 3813 | margin-top:8px; 3814 | margin-bottom:8px 3815 | } 3816 | .navbar-btn.btn-sm{ 3817 | margin-top:10px; 3818 | margin-bottom:10px 3819 | } 3820 | .navbar-btn.btn-xs{ 3821 | margin-top:14px; 3822 | margin-bottom:14px 3823 | } 3824 | .navbar-text{ 3825 | margin-top:15px; 3826 | margin-bottom:15px 3827 | } 3828 | @media (min-width:768px){ 3829 | .navbar-text{ 3830 | float:left; 3831 | margin-right:15px; 3832 | margin-left:15px 3833 | } 3834 | } 3835 | @media (min-width:768px){ 3836 | .navbar-left{ 3837 | float:left!important 3838 | } 3839 | .navbar-right{ 3840 | float:right!important; 3841 | margin-right:-15px 3842 | } 3843 | .navbar-right~.navbar-right{ 3844 | margin-right:0 3845 | } 3846 | } 3847 | .navbar-default{ 3848 | background-color:#f8f8f8; 3849 | border-color:#e7e7e7 3850 | } 3851 | .navbar-default .navbar-brand{ 3852 | color:#777 3853 | } 3854 | .navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{ 3855 | color:#5e5e5e; 3856 | background-color:transparent 3857 | } 3858 | .navbar-default .navbar-text{ 3859 | color:#777 3860 | } 3861 | .navbar-default .navbar-nav>li>a{ 3862 | color:#777 3863 | } 3864 | .navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{ 3865 | color:#333; 3866 | background-color:transparent 3867 | } 3868 | .navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{ 3869 | color:#555; 3870 | background-color:#e7e7e7 3871 | } 3872 | .navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{ 3873 | color:#ccc; 3874 | background-color:transparent 3875 | } 3876 | .navbar-default .navbar-toggle{ 3877 | border-color:#ddd 3878 | } 3879 | .navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{ 3880 | background-color:#ddd 3881 | } 3882 | .navbar-default .navbar-toggle .icon-bar{ 3883 | background-color:#888 3884 | } 3885 | .navbar-default .navbar-collapse,.navbar-default .navbar-form{ 3886 | border-color:#e7e7e7 3887 | } 3888 | .navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{ 3889 | color:#555; 3890 | background-color:#e7e7e7 3891 | } 3892 | @media (max-width:767px){ 3893 | .navbar-default .navbar-nav .open .dropdown-menu>li>a{ 3894 | color:#777 3895 | } 3896 | .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{ 3897 | color:#333; 3898 | background-color:transparent 3899 | } 3900 | .navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{ 3901 | color:#555; 3902 | background-color:#e7e7e7 3903 | } 3904 | .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{ 3905 | color:#ccc; 3906 | background-color:transparent 3907 | } 3908 | } 3909 | .navbar-default .navbar-link{ 3910 | color:#777 3911 | } 3912 | .navbar-default .navbar-link:hover{ 3913 | color:#333 3914 | } 3915 | .navbar-default .btn-link{ 3916 | color:#777 3917 | } 3918 | .navbar-default .btn-link:focus,.navbar-default .btn-link:hover{ 3919 | color:#333 3920 | } 3921 | .navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{ 3922 | color:#ccc 3923 | } 3924 | .navbar-inverse{ 3925 | background-color:#222; 3926 | border-color:#080808 3927 | } 3928 | .navbar-inverse .navbar-brand{ 3929 | color:#9d9d9d 3930 | } 3931 | .navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{ 3932 | color:#fff; 3933 | background-color:transparent 3934 | } 3935 | .navbar-inverse .navbar-text{ 3936 | color:#9d9d9d 3937 | } 3938 | .navbar-inverse .navbar-nav>li>a{ 3939 | color:#9d9d9d 3940 | } 3941 | .navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{ 3942 | color:#fff; 3943 | background-color:transparent 3944 | } 3945 | .navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{ 3946 | color:#fff; 3947 | background-color:#080808 3948 | } 3949 | .navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{ 3950 | color:#444; 3951 | background-color:transparent 3952 | } 3953 | .navbar-inverse .navbar-toggle{ 3954 | border-color:#333 3955 | } 3956 | .navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{ 3957 | background-color:#333 3958 | } 3959 | .navbar-inverse .navbar-toggle .icon-bar{ 3960 | background-color:#fff 3961 | } 3962 | .navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{ 3963 | border-color:#101010 3964 | } 3965 | .navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{ 3966 | color:#fff; 3967 | background-color:#080808 3968 | } 3969 | @media (max-width:767px){ 3970 | .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{ 3971 | border-color:#080808 3972 | } 3973 | .navbar-inverse .navbar-nav .open .dropdown-menu .divider{ 3974 | background-color:#080808 3975 | } 3976 | .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{ 3977 | color:#9d9d9d 3978 | } 3979 | .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{ 3980 | color:#fff; 3981 | background-color:transparent 3982 | } 3983 | .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{ 3984 | color:#fff; 3985 | background-color:#080808 3986 | } 3987 | .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{ 3988 | color:#444; 3989 | background-color:transparent 3990 | } 3991 | } 3992 | .navbar-inverse .navbar-link{ 3993 | color:#9d9d9d 3994 | } 3995 | .navbar-inverse .navbar-link:hover{ 3996 | color:#fff 3997 | } 3998 | .navbar-inverse .btn-link{ 3999 | color:#9d9d9d 4000 | } 4001 | .navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{ 4002 | color:#fff 4003 | } 4004 | .navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{ 4005 | color:#444 4006 | } 4007 | .breadcrumb{ 4008 | padding:8px 15px; 4009 | margin-bottom:20px; 4010 | list-style:none; 4011 | background-color:#f5f5f5; 4012 | border-radius:4px 4013 | } 4014 | .breadcrumb>li{ 4015 | display:inline-block 4016 | } 4017 | .breadcrumb>li+li:before{ 4018 | padding:0 5px; 4019 | color:#ccc; 4020 | content:"/\00a0" 4021 | } 4022 | .breadcrumb>.active{ 4023 | color:#777 4024 | } 4025 | .pagination{ 4026 | display:inline-block; 4027 | padding-left:0; 4028 | margin:20px 0; 4029 | border-radius:4px 4030 | } 4031 | .pagination>li{ 4032 | display:inline 4033 | } 4034 | .pagination>li>a,.pagination>li>span{ 4035 | position:relative; 4036 | float:left; 4037 | padding:6px 12px; 4038 | margin-left:-1px; 4039 | line-height:1.42857143; 4040 | color:#337ab7; 4041 | text-decoration:none; 4042 | background-color:#fff; 4043 | border:1px solid #ddd 4044 | } 4045 | .pagination>li:first-child>a,.pagination>li:first-child>span{ 4046 | margin-left:0; 4047 | border-top-left-radius:4px; 4048 | border-bottom-left-radius:4px 4049 | } 4050 | .pagination>li:last-child>a,.pagination>li:last-child>span{ 4051 | border-top-right-radius:4px; 4052 | border-bottom-right-radius:4px 4053 | } 4054 | .pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{ 4055 | z-index:2; 4056 | color:#23527c; 4057 | background-color:#eee; 4058 | border-color:#ddd 4059 | } 4060 | .pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{ 4061 | z-index:3; 4062 | color:#fff; 4063 | cursor:default; 4064 | background-color:#337ab7; 4065 | border-color:#337ab7 4066 | } 4067 | .pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{ 4068 | color:#777; 4069 | cursor:not-allowed; 4070 | background-color:#fff; 4071 | border-color:#ddd 4072 | } 4073 | .pagination-lg>li>a,.pagination-lg>li>span{ 4074 | padding:10px 16px; 4075 | font-size:18px; 4076 | line-height:1.3333333 4077 | } 4078 | .pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{ 4079 | border-top-left-radius:6px; 4080 | border-bottom-left-radius:6px 4081 | } 4082 | .pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{ 4083 | border-top-right-radius:6px; 4084 | border-bottom-right-radius:6px 4085 | } 4086 | .pagination-sm>li>a,.pagination-sm>li>span{ 4087 | padding:5px 10px; 4088 | font-size:12px; 4089 | line-height:1.5 4090 | } 4091 | .pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{ 4092 | border-top-left-radius:3px; 4093 | border-bottom-left-radius:3px 4094 | } 4095 | .pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{ 4096 | border-top-right-radius:3px; 4097 | border-bottom-right-radius:3px 4098 | } 4099 | .pager{ 4100 | padding-left:0; 4101 | margin:20px 0; 4102 | text-align:center; 4103 | list-style:none 4104 | } 4105 | .pager li{ 4106 | display:inline 4107 | } 4108 | .pager li>a,.pager li>span{ 4109 | display:inline-block; 4110 | padding:5px 14px; 4111 | background-color:#fff; 4112 | border:1px solid #ddd; 4113 | border-radius:15px 4114 | } 4115 | .pager li>a:focus,.pager li>a:hover{ 4116 | text-decoration:none; 4117 | background-color:#eee 4118 | } 4119 | .pager .next>a,.pager .next>span{ 4120 | float:right 4121 | } 4122 | .pager .previous>a,.pager .previous>span{ 4123 | float:left 4124 | } 4125 | .pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{ 4126 | color:#777; 4127 | cursor:not-allowed; 4128 | background-color:#fff 4129 | } 4130 | .label{ 4131 | display:inline; 4132 | padding:.2em .6em .3em; 4133 | font-size:75%; 4134 | font-weight:700; 4135 | line-height:1; 4136 | color:#fff; 4137 | text-align:center; 4138 | white-space:nowrap; 4139 | vertical-align:baseline; 4140 | border-radius:.25em 4141 | } 4142 | a.label:focus,a.label:hover{ 4143 | color:#fff; 4144 | text-decoration:none; 4145 | cursor:pointer 4146 | } 4147 | .label:empty{ 4148 | display:none 4149 | } 4150 | .btn .label{ 4151 | position:relative; 4152 | top:-1px 4153 | } 4154 | .label-default{ 4155 | background-color:#777 4156 | } 4157 | .label-default[href]:focus,.label-default[href]:hover{ 4158 | background-color:#5e5e5e 4159 | } 4160 | .label-primary{ 4161 | background-color:#337ab7 4162 | } 4163 | .label-primary[href]:focus,.label-primary[href]:hover{ 4164 | background-color:#286090 4165 | } 4166 | .label-success{ 4167 | background-color:#5cb85c 4168 | } 4169 | .label-success[href]:focus,.label-success[href]:hover{ 4170 | background-color:#449d44 4171 | } 4172 | .label-info{ 4173 | background-color:#5bc0de 4174 | } 4175 | .label-info[href]:focus,.label-info[href]:hover{ 4176 | background-color:#31b0d5 4177 | } 4178 | .label-warning{ 4179 | background-color:#f0ad4e 4180 | } 4181 | .label-warning[href]:focus,.label-warning[href]:hover{ 4182 | background-color:#ec971f 4183 | } 4184 | .label-danger{ 4185 | background-color:#d9534f 4186 | } 4187 | .label-danger[href]:focus,.label-danger[href]:hover{ 4188 | background-color:#c9302c 4189 | } 4190 | .badge{ 4191 | display:inline-block; 4192 | min-width:10px; 4193 | padding:3px 7px; 4194 | font-size:12px; 4195 | font-weight:700; 4196 | line-height:1; 4197 | color:#fff; 4198 | text-align:center; 4199 | white-space:nowrap; 4200 | vertical-align:middle; 4201 | background-color:#777; 4202 | border-radius:10px 4203 | } 4204 | .badge:empty{ 4205 | display:none 4206 | } 4207 | .btn .badge{ 4208 | position:relative; 4209 | top:-1px 4210 | } 4211 | .btn-group-xs>.btn .badge,.btn-xs .badge{ 4212 | top:0; 4213 | padding:1px 5px 4214 | } 4215 | a.badge:focus,a.badge:hover{ 4216 | color:#fff; 4217 | text-decoration:none; 4218 | cursor:pointer 4219 | } 4220 | .list-group-item.active>.badge,.nav-pills>.active>a>.badge{ 4221 | color:#337ab7; 4222 | background-color:#fff 4223 | } 4224 | .list-group-item>.badge{ 4225 | float:right 4226 | } 4227 | .list-group-item>.badge+.badge{ 4228 | margin-right:5px 4229 | } 4230 | .nav-pills>li>a>.badge{ 4231 | margin-left:3px 4232 | } 4233 | .jumbotron{ 4234 | padding-top:30px; 4235 | padding-bottom:30px; 4236 | margin-bottom:30px; 4237 | color:inherit; 4238 | background-color:#eee 4239 | } 4240 | .jumbotron .h1,.jumbotron h1{ 4241 | color:inherit 4242 | } 4243 | .jumbotron p{ 4244 | margin-bottom:15px; 4245 | font-size:21px; 4246 | font-weight:200 4247 | } 4248 | .jumbotron>hr{ 4249 | border-top-color:#d5d5d5 4250 | } 4251 | .container .jumbotron,.container-fluid .jumbotron{ 4252 | padding-right:15px; 4253 | padding-left:15px; 4254 | border-radius:6px 4255 | } 4256 | .jumbotron .container{ 4257 | max-width:100% 4258 | } 4259 | @media screen and (min-width:768px){ 4260 | .jumbotron{ 4261 | padding-top:48px; 4262 | padding-bottom:48px 4263 | } 4264 | .container .jumbotron,.container-fluid .jumbotron{ 4265 | padding-right:60px; 4266 | padding-left:60px 4267 | } 4268 | .jumbotron .h1,.jumbotron h1{ 4269 | font-size:63px 4270 | } 4271 | } 4272 | .thumbnail{ 4273 | display:block; 4274 | padding:4px; 4275 | margin-bottom:20px; 4276 | line-height:1.42857143; 4277 | background-color:#fff; 4278 | border:1px solid #ddd; 4279 | border-radius:4px; 4280 | -webkit-transition:border .2s ease-in-out; 4281 | -o-transition:border .2s ease-in-out; 4282 | transition:border .2s ease-in-out 4283 | } 4284 | .thumbnail a>img,.thumbnail>img{ 4285 | margin-right:auto; 4286 | margin-left:auto 4287 | } 4288 | a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{ 4289 | border-color:#337ab7 4290 | } 4291 | .thumbnail .caption{ 4292 | padding:9px; 4293 | color:#333 4294 | } 4295 | .alert{ 4296 | padding:15px; 4297 | margin-bottom:20px; 4298 | border:1px solid transparent; 4299 | border-radius:4px 4300 | } 4301 | .alert h4{ 4302 | margin-top:0; 4303 | color:inherit 4304 | } 4305 | .alert .alert-link{ 4306 | font-weight:700 4307 | } 4308 | .alert>p,.alert>ul{ 4309 | margin-bottom:0 4310 | } 4311 | .alert>p+p{ 4312 | margin-top:5px 4313 | } 4314 | .alert-dismissable,.alert-dismissible{ 4315 | padding-right:35px 4316 | } 4317 | .alert-dismissable .close,.alert-dismissible .close{ 4318 | position:relative; 4319 | top:-2px; 4320 | right:-21px; 4321 | color:inherit 4322 | } 4323 | .alert-success{ 4324 | color:#3c763d; 4325 | background-color:#dff0d8; 4326 | border-color:#d6e9c6 4327 | } 4328 | .alert-success hr{ 4329 | border-top-color:#c9e2b3 4330 | } 4331 | .alert-success .alert-link{ 4332 | color:#2b542c 4333 | } 4334 | .alert-info{ 4335 | color:#31708f; 4336 | background-color:#d9edf7; 4337 | border-color:#bce8f1 4338 | } 4339 | .alert-info hr{ 4340 | border-top-color:#a6e1ec 4341 | } 4342 | .alert-info .alert-link{ 4343 | color:#245269 4344 | } 4345 | .alert-warning{ 4346 | color:#8a6d3b; 4347 | background-color:#fcf8e3; 4348 | border-color:#faebcc 4349 | } 4350 | .alert-warning hr{ 4351 | border-top-color:#f7e1b5 4352 | } 4353 | .alert-warning .alert-link{ 4354 | color:#66512c 4355 | } 4356 | .alert-danger{ 4357 | color:#a94442; 4358 | background-color:#f2dede; 4359 | border-color:#ebccd1 4360 | } 4361 | .alert-danger hr{ 4362 | border-top-color:#e4b9c0 4363 | } 4364 | .alert-danger .alert-link{ 4365 | color:#843534 4366 | } 4367 | @-webkit-keyframes progress-bar-stripes{ 4368 | from{ 4369 | background-position:40px 0 4370 | } 4371 | to{ 4372 | background-position:0 0 4373 | } 4374 | } 4375 | @-o-keyframes progress-bar-stripes{ 4376 | from{ 4377 | background-position:40px 0 4378 | } 4379 | to{ 4380 | background-position:0 0 4381 | } 4382 | } 4383 | @keyframes progress-bar-stripes{ 4384 | from{ 4385 | background-position:40px 0 4386 | } 4387 | to{ 4388 | background-position:0 0 4389 | } 4390 | } 4391 | .progress{ 4392 | height:20px; 4393 | margin-bottom:20px; 4394 | overflow:hidden; 4395 | background-color:#f5f5f5; 4396 | border-radius:4px; 4397 | -webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1); 4398 | box-shadow:inset 0 1px 2px rgba(0,0,0,.1) 4399 | } 4400 | .progress-bar{ 4401 | float:left; 4402 | width:0; 4403 | height:100%; 4404 | font-size:12px; 4405 | line-height:20px; 4406 | color:#fff; 4407 | text-align:center; 4408 | background-color:#337ab7; 4409 | -webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15); 4410 | box-shadow:inset 0 -1px 0 rgba(0,0,0,.15); 4411 | -webkit-transition:width .6s ease; 4412 | -o-transition:width .6s ease; 4413 | transition:width .6s ease 4414 | } 4415 | .progress-bar-striped,.progress-striped .progress-bar{ 4416 | background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4417 | background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4418 | background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4419 | -webkit-background-size:40px 40px; 4420 | background-size:40px 40px 4421 | } 4422 | .progress-bar.active,.progress.active .progress-bar{ 4423 | -webkit-animation:progress-bar-stripes 2s linear infinite; 4424 | -o-animation:progress-bar-stripes 2s linear infinite; 4425 | animation:progress-bar-stripes 2s linear infinite 4426 | } 4427 | .progress-bar-success{ 4428 | background-color:#5cb85c 4429 | } 4430 | .progress-striped .progress-bar-success{ 4431 | background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4432 | background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4433 | background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent) 4434 | } 4435 | .progress-bar-info{ 4436 | background-color:#5bc0de 4437 | } 4438 | .progress-striped .progress-bar-info{ 4439 | background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4440 | background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4441 | background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent) 4442 | } 4443 | .progress-bar-warning{ 4444 | background-color:#f0ad4e 4445 | } 4446 | .progress-striped .progress-bar-warning{ 4447 | background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4448 | background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4449 | background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent) 4450 | } 4451 | .progress-bar-danger{ 4452 | background-color:#d9534f 4453 | } 4454 | .progress-striped .progress-bar-danger{ 4455 | background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4456 | background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent); 4457 | background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent) 4458 | } 4459 | .media{ 4460 | margin-top:15px 4461 | } 4462 | .media:first-child{ 4463 | margin-top:0 4464 | } 4465 | .media,.media-body{ 4466 | overflow:hidden; 4467 | zoom:1 4468 | } 4469 | .media-body{ 4470 | width:10000px 4471 | } 4472 | .media-object{ 4473 | display:block 4474 | } 4475 | .media-object.img-thumbnail{ 4476 | max-width:none 4477 | } 4478 | .media-right,.media>.pull-right{ 4479 | padding-left:10px 4480 | } 4481 | .media-left,.media>.pull-left{ 4482 | padding-right:10px 4483 | } 4484 | .media-body,.media-left,.media-right{ 4485 | display:table-cell; 4486 | vertical-align:top 4487 | } 4488 | .media-middle{ 4489 | vertical-align:middle 4490 | } 4491 | .media-bottom{ 4492 | vertical-align:bottom 4493 | } 4494 | .media-heading{ 4495 | margin-top:0; 4496 | margin-bottom:5px 4497 | } 4498 | .media-list{ 4499 | padding-left:0; 4500 | list-style:none 4501 | } 4502 | .list-group{ 4503 | padding-left:0; 4504 | margin-bottom:20px 4505 | } 4506 | .list-group-item{ 4507 | position:relative; 4508 | display:block; 4509 | padding:10px 15px; 4510 | margin-bottom:-1px; 4511 | background-color:#fff; 4512 | border:1px solid #ddd 4513 | } 4514 | .list-group-item:first-child{ 4515 | border-top-left-radius:4px; 4516 | border-top-right-radius:4px 4517 | } 4518 | .list-group-item:last-child{ 4519 | margin-bottom:0; 4520 | border-bottom-right-radius:4px; 4521 | border-bottom-left-radius:4px 4522 | } 4523 | a.list-group-item,button.list-group-item{ 4524 | color:#555 4525 | } 4526 | a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{ 4527 | color:#333 4528 | } 4529 | a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{ 4530 | color:#555; 4531 | text-decoration:none; 4532 | background-color:#f5f5f5 4533 | } 4534 | button.list-group-item{ 4535 | width:100%; 4536 | text-align:left 4537 | } 4538 | .list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{ 4539 | color:#777; 4540 | cursor:not-allowed; 4541 | background-color:#eee 4542 | } 4543 | .list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{ 4544 | color:inherit 4545 | } 4546 | .list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{ 4547 | color:#777 4548 | } 4549 | .list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{ 4550 | z-index:2; 4551 | color:#fff; 4552 | background-color:#337ab7; 4553 | border-color:#337ab7 4554 | } 4555 | .list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{ 4556 | color:inherit 4557 | } 4558 | .list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{ 4559 | color:#c7ddef 4560 | } 4561 | .list-group-item-success{ 4562 | color:#3c763d; 4563 | background-color:#dff0d8 4564 | } 4565 | a.list-group-item-success,button.list-group-item-success{ 4566 | color:#3c763d 4567 | } 4568 | a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{ 4569 | color:inherit 4570 | } 4571 | a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{ 4572 | color:#3c763d; 4573 | background-color:#d0e9c6 4574 | } 4575 | a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{ 4576 | color:#fff; 4577 | background-color:#3c763d; 4578 | border-color:#3c763d 4579 | } 4580 | .list-group-item-info{ 4581 | color:#31708f; 4582 | background-color:#d9edf7 4583 | } 4584 | a.list-group-item-info,button.list-group-item-info{ 4585 | color:#31708f 4586 | } 4587 | a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{ 4588 | color:inherit 4589 | } 4590 | a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{ 4591 | color:#31708f; 4592 | background-color:#c4e3f3 4593 | } 4594 | a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{ 4595 | color:#fff; 4596 | background-color:#31708f; 4597 | border-color:#31708f 4598 | } 4599 | .list-group-item-warning{ 4600 | color:#8a6d3b; 4601 | background-color:#fcf8e3 4602 | } 4603 | a.list-group-item-warning,button.list-group-item-warning{ 4604 | color:#8a6d3b 4605 | } 4606 | a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{ 4607 | color:inherit 4608 | } 4609 | a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{ 4610 | color:#8a6d3b; 4611 | background-color:#faf2cc 4612 | } 4613 | a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{ 4614 | color:#fff; 4615 | background-color:#8a6d3b; 4616 | border-color:#8a6d3b 4617 | } 4618 | .list-group-item-danger{ 4619 | color:#a94442; 4620 | background-color:#f2dede 4621 | } 4622 | a.list-group-item-danger,button.list-group-item-danger{ 4623 | color:#a94442 4624 | } 4625 | a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{ 4626 | color:inherit 4627 | } 4628 | a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{ 4629 | color:#a94442; 4630 | background-color:#ebcccc 4631 | } 4632 | a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{ 4633 | color:#fff; 4634 | background-color:#a94442; 4635 | border-color:#a94442 4636 | } 4637 | .list-group-item-heading{ 4638 | margin-top:0; 4639 | margin-bottom:5px 4640 | } 4641 | .list-group-item-text{ 4642 | margin-bottom:0; 4643 | line-height:1.3 4644 | } 4645 | .panel{ 4646 | margin-bottom:20px; 4647 | background-color:#fff; 4648 | border:1px solid transparent; 4649 | border-radius:4px; 4650 | -webkit-box-shadow:0 1px 1px rgba(0,0,0,.05); 4651 | box-shadow:0 1px 1px rgba(0,0,0,.05) 4652 | } 4653 | .panel-body{ 4654 | padding:15px 4655 | } 4656 | .panel-heading{ 4657 | padding:10px 15px; 4658 | border-bottom:1px solid transparent; 4659 | border-top-left-radius:3px; 4660 | border-top-right-radius:3px 4661 | } 4662 | .panel-heading>.dropdown .dropdown-toggle{ 4663 | color:inherit 4664 | } 4665 | .panel-title{ 4666 | margin-top:0; 4667 | margin-bottom:0; 4668 | font-size:16px; 4669 | color:inherit 4670 | } 4671 | .panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{ 4672 | color:inherit 4673 | } 4674 | .panel-footer{ 4675 | padding:10px 15px; 4676 | background-color:#f5f5f5; 4677 | border-top:1px solid #ddd; 4678 | border-bottom-right-radius:3px; 4679 | border-bottom-left-radius:3px 4680 | } 4681 | .panel>.list-group,.panel>.panel-collapse>.list-group{ 4682 | margin-bottom:0 4683 | } 4684 | .panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{ 4685 | border-width:1px 0; 4686 | border-radius:0 4687 | } 4688 | .panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{ 4689 | border-top:0; 4690 | border-top-left-radius:3px; 4691 | border-top-right-radius:3px 4692 | } 4693 | .panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{ 4694 | border-bottom:0; 4695 | border-bottom-right-radius:3px; 4696 | border-bottom-left-radius:3px 4697 | } 4698 | .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{ 4699 | border-top-left-radius:0; 4700 | border-top-right-radius:0 4701 | } 4702 | .panel-heading+.list-group .list-group-item:first-child{ 4703 | border-top-width:0 4704 | } 4705 | .list-group+.panel-footer{ 4706 | border-top-width:0 4707 | } 4708 | .panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{ 4709 | margin-bottom:0 4710 | } 4711 | .panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{ 4712 | padding-right:15px; 4713 | padding-left:15px 4714 | } 4715 | .panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{ 4716 | border-top-left-radius:3px; 4717 | border-top-right-radius:3px 4718 | } 4719 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{ 4720 | border-top-left-radius:3px; 4721 | border-top-right-radius:3px 4722 | } 4723 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{ 4724 | border-top-left-radius:3px 4725 | } 4726 | .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{ 4727 | border-top-right-radius:3px 4728 | } 4729 | .panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{ 4730 | border-bottom-right-radius:3px; 4731 | border-bottom-left-radius:3px 4732 | } 4733 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{ 4734 | border-bottom-right-radius:3px; 4735 | border-bottom-left-radius:3px 4736 | } 4737 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{ 4738 | border-bottom-left-radius:3px 4739 | } 4740 | .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{ 4741 | border-bottom-right-radius:3px 4742 | } 4743 | .panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{ 4744 | border-top:1px solid #ddd 4745 | } 4746 | .panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{ 4747 | border-top:0 4748 | } 4749 | .panel>.table-bordered,.panel>.table-responsive>.table-bordered{ 4750 | border:0 4751 | } 4752 | .panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{ 4753 | border-left:0 4754 | } 4755 | .panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{ 4756 | border-right:0 4757 | } 4758 | .panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{ 4759 | border-bottom:0 4760 | } 4761 | .panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{ 4762 | border-bottom:0 4763 | } 4764 | .panel>.table-responsive{ 4765 | margin-bottom:0; 4766 | border:0 4767 | } 4768 | .panel-group{ 4769 | margin-bottom:20px 4770 | } 4771 | .panel-group .panel{ 4772 | margin-bottom:0; 4773 | border-radius:4px 4774 | } 4775 | .panel-group .panel+.panel{ 4776 | margin-top:5px 4777 | } 4778 | .panel-group .panel-heading{ 4779 | border-bottom:0 4780 | } 4781 | .panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{ 4782 | border-top:1px solid #ddd 4783 | } 4784 | .panel-group .panel-footer{ 4785 | border-top:0 4786 | } 4787 | .panel-group .panel-footer+.panel-collapse .panel-body{ 4788 | border-bottom:1px solid #ddd 4789 | } 4790 | .panel-default{ 4791 | border-color:#ddd 4792 | } 4793 | .panel-default>.panel-heading{ 4794 | color:#333; 4795 | background-color:#f5f5f5; 4796 | border-color:#ddd 4797 | } 4798 | .panel-default>.panel-heading+.panel-collapse>.panel-body{ 4799 | border-top-color:#ddd 4800 | } 4801 | .panel-default>.panel-heading .badge{ 4802 | color:#f5f5f5; 4803 | background-color:#333 4804 | } 4805 | .panel-default>.panel-footer+.panel-collapse>.panel-body{ 4806 | border-bottom-color:#ddd 4807 | } 4808 | .panel-primary{ 4809 | border-color:#337ab7 4810 | } 4811 | .panel-primary>.panel-heading{ 4812 | color:#fff; 4813 | background-color:#337ab7; 4814 | border-color:#337ab7 4815 | } 4816 | .panel-primary>.panel-heading+.panel-collapse>.panel-body{ 4817 | border-top-color:#337ab7 4818 | } 4819 | .panel-primary>.panel-heading .badge{ 4820 | color:#337ab7; 4821 | background-color:#fff 4822 | } 4823 | .panel-primary>.panel-footer+.panel-collapse>.panel-body{ 4824 | border-bottom-color:#337ab7 4825 | } 4826 | .panel-success{ 4827 | border-color:#d6e9c6 4828 | } 4829 | .panel-success>.panel-heading{ 4830 | color:#3c763d; 4831 | background-color:#dff0d8; 4832 | border-color:#d6e9c6 4833 | } 4834 | .panel-success>.panel-heading+.panel-collapse>.panel-body{ 4835 | border-top-color:#d6e9c6 4836 | } 4837 | .panel-success>.panel-heading .badge{ 4838 | color:#dff0d8; 4839 | background-color:#3c763d 4840 | } 4841 | .panel-success>.panel-footer+.panel-collapse>.panel-body{ 4842 | border-bottom-color:#d6e9c6 4843 | } 4844 | .panel-info{ 4845 | border-color:#bce8f1 4846 | } 4847 | .panel-info>.panel-heading{ 4848 | color:#31708f; 4849 | background-color:#d9edf7; 4850 | border-color:#bce8f1 4851 | } 4852 | .panel-info>.panel-heading+.panel-collapse>.panel-body{ 4853 | border-top-color:#bce8f1 4854 | } 4855 | .panel-info>.panel-heading .badge{ 4856 | color:#d9edf7; 4857 | background-color:#31708f 4858 | } 4859 | .panel-info>.panel-footer+.panel-collapse>.panel-body{ 4860 | border-bottom-color:#bce8f1 4861 | } 4862 | .panel-warning{ 4863 | border-color:#faebcc 4864 | } 4865 | .panel-warning>.panel-heading{ 4866 | color:#8a6d3b; 4867 | background-color:#fcf8e3; 4868 | border-color:#faebcc 4869 | } 4870 | .panel-warning>.panel-heading+.panel-collapse>.panel-body{ 4871 | border-top-color:#faebcc 4872 | } 4873 | .panel-warning>.panel-heading .badge{ 4874 | color:#fcf8e3; 4875 | background-color:#8a6d3b 4876 | } 4877 | .panel-warning>.panel-footer+.panel-collapse>.panel-body{ 4878 | border-bottom-color:#faebcc 4879 | } 4880 | .panel-danger{ 4881 | border-color:#ebccd1 4882 | } 4883 | .panel-danger>.panel-heading{ 4884 | color:#a94442; 4885 | background-color:#f2dede; 4886 | border-color:#ebccd1 4887 | } 4888 | .panel-danger>.panel-heading+.panel-collapse>.panel-body{ 4889 | border-top-color:#ebccd1 4890 | } 4891 | .panel-danger>.panel-heading .badge{ 4892 | color:#f2dede; 4893 | background-color:#a94442 4894 | } 4895 | .panel-danger>.panel-footer+.panel-collapse>.panel-body{ 4896 | border-bottom-color:#ebccd1 4897 | } 4898 | .embed-responsive{ 4899 | position:relative; 4900 | display:block; 4901 | height:0; 4902 | padding:0; 4903 | overflow:hidden 4904 | } 4905 | .embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{ 4906 | position:absolute; 4907 | top:0; 4908 | bottom:0; 4909 | left:0; 4910 | width:100%; 4911 | height:100%; 4912 | border:0 4913 | } 4914 | .embed-responsive-16by9{ 4915 | padding-bottom:56.25% 4916 | } 4917 | .embed-responsive-4by3{ 4918 | padding-bottom:75% 4919 | } 4920 | .well{ 4921 | min-height:20px; 4922 | padding:19px; 4923 | margin-bottom:20px; 4924 | background-color:#f5f5f5; 4925 | border:1px solid #e3e3e3; 4926 | border-radius:4px; 4927 | -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05); 4928 | box-shadow:inset 0 1px 1px rgba(0,0,0,.05) 4929 | } 4930 | .well blockquote{ 4931 | border-color:#ddd; 4932 | border-color:rgba(0,0,0,.15) 4933 | } 4934 | .well-lg{ 4935 | padding:24px; 4936 | border-radius:6px 4937 | } 4938 | .well-sm{ 4939 | padding:9px; 4940 | border-radius:3px 4941 | } 4942 | .close{ 4943 | float:right; 4944 | font-size:21px; 4945 | font-weight:700; 4946 | line-height:1; 4947 | color:#000; 4948 | text-shadow:0 1px 0 #fff; 4949 | filter:alpha(opacity=20); 4950 | opacity:.2 4951 | } 4952 | .close:focus,.close:hover{ 4953 | color:#000; 4954 | text-decoration:none; 4955 | cursor:pointer; 4956 | filter:alpha(opacity=50); 4957 | opacity:.5 4958 | } 4959 | button.close{ 4960 | -webkit-appearance:none; 4961 | padding:0; 4962 | cursor:pointer; 4963 | background:0 0; 4964 | border:0 4965 | } 4966 | .modal-open{ 4967 | overflow:hidden 4968 | } 4969 | .modal{ 4970 | position:fixed; 4971 | top:0; 4972 | right:0; 4973 | bottom:0; 4974 | left:0; 4975 | z-index:1050; 4976 | display:none; 4977 | overflow:hidden; 4978 | -webkit-overflow-scrolling:touch; 4979 | outline:0 4980 | } 4981 | .modal.fade .modal-dialog{ 4982 | -webkit-transition:-webkit-transform .3s ease-out; 4983 | -o-transition:-o-transform .3s ease-out; 4984 | transition:transform .3s ease-out; 4985 | -webkit-transform:translate(0,-25%); 4986 | -ms-transform:translate(0,-25%); 4987 | -o-transform:translate(0,-25%); 4988 | transform:translate(0,-25%) 4989 | } 4990 | .modal.in .modal-dialog{ 4991 | -webkit-transform:translate(0,0); 4992 | -ms-transform:translate(0,0); 4993 | -o-transform:translate(0,0); 4994 | transform:translate(0,0) 4995 | } 4996 | .modal-open .modal{ 4997 | overflow-x:hidden; 4998 | overflow-y:auto 4999 | } 5000 | .modal-dialog{ 5001 | position:relative; 5002 | width:auto; 5003 | margin:10px 5004 | } 5005 | .modal-content{ 5006 | position:relative; 5007 | background-color:#fff; 5008 | -webkit-background-clip:padding-box; 5009 | background-clip:padding-box; 5010 | border:1px solid #999; 5011 | border:1px solid rgba(0,0,0,.2); 5012 | border-radius:6px; 5013 | outline:0; 5014 | -webkit-box-shadow:0 3px 9px rgba(0,0,0,.5); 5015 | box-shadow:0 3px 9px rgba(0,0,0,.5) 5016 | } 5017 | .modal-backdrop{ 5018 | position:fixed; 5019 | top:0; 5020 | right:0; 5021 | bottom:0; 5022 | left:0; 5023 | z-index:1040; 5024 | background-color:#000 5025 | } 5026 | .modal-backdrop.fade{ 5027 | filter:alpha(opacity=0); 5028 | opacity:0 5029 | } 5030 | .modal-backdrop.in{ 5031 | filter:alpha(opacity=50); 5032 | opacity:.5 5033 | } 5034 | .modal-header{ 5035 | padding:15px; 5036 | border-bottom:1px solid #e5e5e5 5037 | } 5038 | .modal-header .close{ 5039 | margin-top:-2px 5040 | } 5041 | .modal-title{ 5042 | margin:0; 5043 | line-height:1.42857143 5044 | } 5045 | .modal-body{ 5046 | position:relative; 5047 | padding:15px 5048 | } 5049 | .modal-footer{ 5050 | padding:15px; 5051 | text-align:right; 5052 | border-top:1px solid #e5e5e5 5053 | } 5054 | .modal-footer .btn+.btn{ 5055 | margin-bottom:0; 5056 | margin-left:5px 5057 | } 5058 | .modal-footer .btn-group .btn+.btn{ 5059 | margin-left:-1px 5060 | } 5061 | .modal-footer .btn-block+.btn-block{ 5062 | margin-left:0 5063 | } 5064 | .modal-scrollbar-measure{ 5065 | position:absolute; 5066 | top:-9999px; 5067 | width:50px; 5068 | height:50px; 5069 | overflow:scroll 5070 | } 5071 | @media (min-width:768px){ 5072 | .modal-dialog{ 5073 | width:600px; 5074 | margin:30px auto 5075 | } 5076 | .modal-content{ 5077 | -webkit-box-shadow:0 5px 15px rgba(0,0,0,.5); 5078 | box-shadow:0 5px 15px rgba(0,0,0,.5) 5079 | } 5080 | .modal-sm{ 5081 | width:300px 5082 | } 5083 | } 5084 | @media (min-width:992px){ 5085 | .modal-lg{ 5086 | width:900px 5087 | } 5088 | } 5089 | .tooltip{ 5090 | position:absolute; 5091 | z-index:1070; 5092 | display:block; 5093 | font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; 5094 | font-size:12px; 5095 | font-style:normal; 5096 | font-weight:400; 5097 | line-height:1.42857143; 5098 | text-align:left; 5099 | text-align:start; 5100 | text-decoration:none; 5101 | text-shadow:none; 5102 | text-transform:none; 5103 | letter-spacing:normal; 5104 | word-break:normal; 5105 | word-spacing:normal; 5106 | word-wrap:normal; 5107 | white-space:normal; 5108 | filter:alpha(opacity=0); 5109 | opacity:0; 5110 | line-break:auto 5111 | } 5112 | .tooltip.in{ 5113 | filter:alpha(opacity=90); 5114 | opacity:.9 5115 | } 5116 | .tooltip.top{ 5117 | padding:5px 0; 5118 | margin-top:-3px 5119 | } 5120 | .tooltip.right{ 5121 | padding:0 5px; 5122 | margin-left:3px 5123 | } 5124 | .tooltip.bottom{ 5125 | padding:5px 0; 5126 | margin-top:3px 5127 | } 5128 | .tooltip.left{ 5129 | padding:0 5px; 5130 | margin-left:-3px 5131 | } 5132 | .tooltip-inner{ 5133 | max-width:200px; 5134 | padding:3px 8px; 5135 | color:#fff; 5136 | text-align:center; 5137 | background-color:#000; 5138 | border-radius:4px 5139 | } 5140 | .tooltip-arrow{ 5141 | position:absolute; 5142 | width:0; 5143 | height:0; 5144 | border-color:transparent; 5145 | border-style:solid 5146 | } 5147 | .tooltip.top .tooltip-arrow{ 5148 | bottom:0; 5149 | left:50%; 5150 | margin-left:-5px; 5151 | border-width:5px 5px 0; 5152 | border-top-color:#000 5153 | } 5154 | .tooltip.top-left .tooltip-arrow{ 5155 | right:5px; 5156 | bottom:0; 5157 | margin-bottom:-5px; 5158 | border-width:5px 5px 0; 5159 | border-top-color:#000 5160 | } 5161 | .tooltip.top-right .tooltip-arrow{ 5162 | bottom:0; 5163 | left:5px; 5164 | margin-bottom:-5px; 5165 | border-width:5px 5px 0; 5166 | border-top-color:#000 5167 | } 5168 | .tooltip.right .tooltip-arrow{ 5169 | top:50%; 5170 | left:0; 5171 | margin-top:-5px; 5172 | border-width:5px 5px 5px 0; 5173 | border-right-color:#000 5174 | } 5175 | .tooltip.left .tooltip-arrow{ 5176 | top:50%; 5177 | right:0; 5178 | margin-top:-5px; 5179 | border-width:5px 0 5px 5px; 5180 | border-left-color:#000 5181 | } 5182 | .tooltip.bottom .tooltip-arrow{ 5183 | top:0; 5184 | left:50%; 5185 | margin-left:-5px; 5186 | border-width:0 5px 5px; 5187 | border-bottom-color:#000 5188 | } 5189 | .tooltip.bottom-left .tooltip-arrow{ 5190 | top:0; 5191 | right:5px; 5192 | margin-top:-5px; 5193 | border-width:0 5px 5px; 5194 | border-bottom-color:#000 5195 | } 5196 | .tooltip.bottom-right .tooltip-arrow{ 5197 | top:0; 5198 | left:5px; 5199 | margin-top:-5px; 5200 | border-width:0 5px 5px; 5201 | border-bottom-color:#000 5202 | } 5203 | .popover{ 5204 | position:absolute; 5205 | top:0; 5206 | left:0; 5207 | z-index:1060; 5208 | display:none; 5209 | max-width:276px; 5210 | padding:1px; 5211 | font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; 5212 | font-size:14px; 5213 | font-style:normal; 5214 | font-weight:400; 5215 | line-height:1.42857143; 5216 | text-align:left; 5217 | text-align:start; 5218 | text-decoration:none; 5219 | text-shadow:none; 5220 | text-transform:none; 5221 | letter-spacing:normal; 5222 | word-break:normal; 5223 | word-spacing:normal; 5224 | word-wrap:normal; 5225 | white-space:normal; 5226 | background-color:#fff; 5227 | -webkit-background-clip:padding-box; 5228 | background-clip:padding-box; 5229 | border:1px solid #ccc; 5230 | border:1px solid rgba(0,0,0,.2); 5231 | border-radius:6px; 5232 | -webkit-box-shadow:0 5px 10px rgba(0,0,0,.2); 5233 | box-shadow:0 5px 10px rgba(0,0,0,.2); 5234 | line-break:auto 5235 | } 5236 | .popover.top{ 5237 | margin-top:-10px 5238 | } 5239 | .popover.right{ 5240 | margin-left:10px 5241 | } 5242 | .popover.bottom{ 5243 | margin-top:10px 5244 | } 5245 | .popover.left{ 5246 | margin-left:-10px 5247 | } 5248 | .popover-title{ 5249 | padding:8px 14px; 5250 | margin:0; 5251 | font-size:14px; 5252 | background-color:#f7f7f7; 5253 | border-bottom:1px solid #ebebeb; 5254 | border-radius:5px 5px 0 0 5255 | } 5256 | .popover-content{ 5257 | padding:9px 14px 5258 | } 5259 | .popover>.arrow,.popover>.arrow:after{ 5260 | position:absolute; 5261 | display:block; 5262 | width:0; 5263 | height:0; 5264 | border-color:transparent; 5265 | border-style:solid 5266 | } 5267 | .popover>.arrow{ 5268 | border-width:11px 5269 | } 5270 | .popover>.arrow:after{ 5271 | content:""; 5272 | border-width:10px 5273 | } 5274 | .popover.top>.arrow{ 5275 | bottom:-11px; 5276 | left:50%; 5277 | margin-left:-11px; 5278 | border-top-color:#999; 5279 | border-top-color:rgba(0,0,0,.25); 5280 | border-bottom-width:0 5281 | } 5282 | .popover.top>.arrow:after{ 5283 | bottom:1px; 5284 | margin-left:-10px; 5285 | content:" "; 5286 | border-top-color:#fff; 5287 | border-bottom-width:0 5288 | } 5289 | .popover.right>.arrow{ 5290 | top:50%; 5291 | left:-11px; 5292 | margin-top:-11px; 5293 | border-right-color:#999; 5294 | border-right-color:rgba(0,0,0,.25); 5295 | border-left-width:0 5296 | } 5297 | .popover.right>.arrow:after{ 5298 | bottom:-10px; 5299 | left:1px; 5300 | content:" "; 5301 | border-right-color:#fff; 5302 | border-left-width:0 5303 | } 5304 | .popover.bottom>.arrow{ 5305 | top:-11px; 5306 | left:50%; 5307 | margin-left:-11px; 5308 | border-top-width:0; 5309 | border-bottom-color:#999; 5310 | border-bottom-color:rgba(0,0,0,.25) 5311 | } 5312 | .popover.bottom>.arrow:after{ 5313 | top:1px; 5314 | margin-left:-10px; 5315 | content:" "; 5316 | border-top-width:0; 5317 | border-bottom-color:#fff 5318 | } 5319 | .popover.left>.arrow{ 5320 | top:50%; 5321 | right:-11px; 5322 | margin-top:-11px; 5323 | border-right-width:0; 5324 | border-left-color:#999; 5325 | border-left-color:rgba(0,0,0,.25) 5326 | } 5327 | .popover.left>.arrow:after{ 5328 | right:1px; 5329 | bottom:-10px; 5330 | content:" "; 5331 | border-right-width:0; 5332 | border-left-color:#fff 5333 | } 5334 | .carousel{ 5335 | position:relative 5336 | } 5337 | .carousel-inner{ 5338 | position:relative; 5339 | width:100%; 5340 | overflow:hidden 5341 | } 5342 | .carousel-inner>.item{ 5343 | position:relative; 5344 | display:none; 5345 | -webkit-transition:.6s ease-in-out left; 5346 | -o-transition:.6s ease-in-out left; 5347 | transition:.6s ease-in-out left 5348 | } 5349 | .carousel-inner>.item>a>img,.carousel-inner>.item>img{ 5350 | line-height:1 5351 | } 5352 | @media all and (transform-3d),(-webkit-transform-3d){ 5353 | .carousel-inner>.item{ 5354 | -webkit-transition:-webkit-transform .6s ease-in-out; 5355 | -o-transition:-o-transform .6s ease-in-out; 5356 | transition:transform .6s ease-in-out; 5357 | -webkit-backface-visibility:hidden; 5358 | backface-visibility:hidden; 5359 | -webkit-perspective:1000px; 5360 | perspective:1000px 5361 | } 5362 | .carousel-inner>.item.active.right,.carousel-inner>.item.next{ 5363 | left:0; 5364 | -webkit-transform:translate3d(100%,0,0); 5365 | transform:translate3d(100%,0,0) 5366 | } 5367 | .carousel-inner>.item.active.left,.carousel-inner>.item.prev{ 5368 | left:0; 5369 | -webkit-transform:translate3d(-100%,0,0); 5370 | transform:translate3d(-100%,0,0) 5371 | } 5372 | .carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{ 5373 | left:0; 5374 | -webkit-transform:translate3d(0,0,0); 5375 | transform:translate3d(0,0,0) 5376 | } 5377 | } 5378 | .carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{ 5379 | display:block 5380 | } 5381 | .carousel-inner>.active{ 5382 | left:0 5383 | } 5384 | .carousel-inner>.next,.carousel-inner>.prev{ 5385 | position:absolute; 5386 | top:0; 5387 | width:100% 5388 | } 5389 | .carousel-inner>.next{ 5390 | left:100% 5391 | } 5392 | .carousel-inner>.prev{ 5393 | left:-100% 5394 | } 5395 | .carousel-inner>.next.left,.carousel-inner>.prev.right{ 5396 | left:0 5397 | } 5398 | .carousel-inner>.active.left{ 5399 | left:-100% 5400 | } 5401 | .carousel-inner>.active.right{ 5402 | left:100% 5403 | } 5404 | .carousel-control{ 5405 | position:absolute; 5406 | top:0; 5407 | bottom:0; 5408 | left:0; 5409 | width:15%; 5410 | font-size:20px; 5411 | color:#fff; 5412 | text-align:center; 5413 | text-shadow:0 1px 2px rgba(0,0,0,.6); 5414 | background-color:rgba(0,0,0,0); 5415 | filter:alpha(opacity=50); 5416 | opacity:.5 5417 | } 5418 | .carousel-control.left{ 5419 | background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%); 5420 | background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%); 5421 | background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001))); 5422 | background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%); 5423 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); 5424 | background-repeat:repeat-x 5425 | } 5426 | .carousel-control.right{ 5427 | right:0; 5428 | left:auto; 5429 | background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%); 5430 | background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%); 5431 | background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5))); 5432 | background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%); 5433 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); 5434 | background-repeat:repeat-x 5435 | } 5436 | .carousel-control:focus,.carousel-control:hover{ 5437 | color:#fff; 5438 | text-decoration:none; 5439 | filter:alpha(opacity=90); 5440 | outline:0; 5441 | opacity:.9 5442 | } 5443 | .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{ 5444 | position:absolute; 5445 | top:50%; 5446 | z-index:5; 5447 | display:inline-block; 5448 | margin-top:-10px 5449 | } 5450 | .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{ 5451 | left:50%; 5452 | margin-left:-10px 5453 | } 5454 | .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{ 5455 | right:50%; 5456 | margin-right:-10px 5457 | } 5458 | .carousel-control .icon-next,.carousel-control .icon-prev{ 5459 | width:20px; 5460 | height:20px; 5461 | font-family:serif; 5462 | line-height:1 5463 | } 5464 | .carousel-control .icon-prev:before{ 5465 | content:'\2039' 5466 | } 5467 | .carousel-control .icon-next:before{ 5468 | content:'\203a' 5469 | } 5470 | .carousel-indicators{ 5471 | position:absolute; 5472 | bottom:10px; 5473 | left:50%; 5474 | z-index:15; 5475 | width:60%; 5476 | padding-left:0; 5477 | margin-left:-30%; 5478 | text-align:center; 5479 | list-style:none 5480 | } 5481 | .carousel-indicators li{ 5482 | display:inline-block; 5483 | width:10px; 5484 | height:10px; 5485 | margin:1px; 5486 | text-indent:-999px; 5487 | cursor:pointer; 5488 | background-color:#000\9; 5489 | background-color:rgba(0,0,0,0); 5490 | border:1px solid #fff; 5491 | border-radius:10px 5492 | } 5493 | .carousel-indicators .active{ 5494 | width:12px; 5495 | height:12px; 5496 | margin:0; 5497 | background-color:#fff 5498 | } 5499 | .carousel-caption{ 5500 | position:absolute; 5501 | right:15%; 5502 | bottom:20px; 5503 | left:15%; 5504 | z-index:10; 5505 | padding-top:20px; 5506 | padding-bottom:20px; 5507 | color:#fff; 5508 | text-align:center; 5509 | text-shadow:0 1px 2px rgba(0,0,0,.6) 5510 | } 5511 | .carousel-caption .btn{ 5512 | text-shadow:none 5513 | } 5514 | @media screen and (min-width:768px){ 5515 | .carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{ 5516 | width:30px; 5517 | height:30px; 5518 | margin-top:-10px; 5519 | font-size:30px 5520 | } 5521 | .carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{ 5522 | margin-left:-10px 5523 | } 5524 | .carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{ 5525 | margin-right:-10px 5526 | } 5527 | .carousel-caption{ 5528 | right:20%; 5529 | left:20%; 5530 | padding-bottom:30px 5531 | } 5532 | .carousel-indicators{ 5533 | bottom:20px 5534 | } 5535 | } 5536 | .btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{ 5537 | display:table; 5538 | content:" " 5539 | } 5540 | .btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{ 5541 | clear:both 5542 | } 5543 | .center-block{ 5544 | display:block; 5545 | margin-right:auto; 5546 | margin-left:auto 5547 | } 5548 | .pull-right{ 5549 | float:right!important 5550 | } 5551 | .pull-left{ 5552 | float:left!important 5553 | } 5554 | .hide{ 5555 | display:none!important 5556 | } 5557 | .show{ 5558 | display:block!important 5559 | } 5560 | .invisible{ 5561 | visibility:hidden 5562 | } 5563 | .text-hide{ 5564 | font:0/0 a; 5565 | color:transparent; 5566 | text-shadow:none; 5567 | background-color:transparent; 5568 | border:0 5569 | } 5570 | .hidden{ 5571 | display:none!important 5572 | } 5573 | .affix{ 5574 | position:fixed 5575 | } 5576 | @-ms-viewport{ 5577 | width:device-width 5578 | } 5579 | .visible-lg,.visible-md,.visible-sm,.visible-xs{ 5580 | display:none!important 5581 | } 5582 | .visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{ 5583 | display:none!important 5584 | } 5585 | @media (max-width:767px){ 5586 | .visible-xs{ 5587 | display:block!important 5588 | } 5589 | table.visible-xs{ 5590 | display:table!important 5591 | } 5592 | tr.visible-xs{ 5593 | display:table-row!important 5594 | } 5595 | td.visible-xs,th.visible-xs{ 5596 | display:table-cell!important 5597 | } 5598 | } 5599 | @media (max-width:767px){ 5600 | .visible-xs-block{ 5601 | display:block!important 5602 | } 5603 | } 5604 | @media (max-width:767px){ 5605 | .visible-xs-inline{ 5606 | display:inline!important 5607 | } 5608 | } 5609 | @media (max-width:767px){ 5610 | .visible-xs-inline-block{ 5611 | display:inline-block!important 5612 | } 5613 | } 5614 | @media (min-width:768px) and (max-width:991px){ 5615 | .visible-sm{ 5616 | display:block!important 5617 | } 5618 | table.visible-sm{ 5619 | display:table!important 5620 | } 5621 | tr.visible-sm{ 5622 | display:table-row!important 5623 | } 5624 | td.visible-sm,th.visible-sm{ 5625 | display:table-cell!important 5626 | } 5627 | } 5628 | @media (min-width:768px) and (max-width:991px){ 5629 | .visible-sm-block{ 5630 | display:block!important 5631 | } 5632 | } 5633 | @media (min-width:768px) and (max-width:991px){ 5634 | .visible-sm-inline{ 5635 | display:inline!important 5636 | } 5637 | } 5638 | @media (min-width:768px) and (max-width:991px){ 5639 | .visible-sm-inline-block{ 5640 | display:inline-block!important 5641 | } 5642 | } 5643 | @media (min-width:992px) and (max-width:1199px){ 5644 | .visible-md{ 5645 | display:block!important 5646 | } 5647 | table.visible-md{ 5648 | display:table!important 5649 | } 5650 | tr.visible-md{ 5651 | display:table-row!important 5652 | } 5653 | td.visible-md,th.visible-md{ 5654 | display:table-cell!important 5655 | } 5656 | } 5657 | @media (min-width:992px) and (max-width:1199px){ 5658 | .visible-md-block{ 5659 | display:block!important 5660 | } 5661 | } 5662 | @media (min-width:992px) and (max-width:1199px){ 5663 | .visible-md-inline{ 5664 | display:inline!important 5665 | } 5666 | } 5667 | @media (min-width:992px) and (max-width:1199px){ 5668 | .visible-md-inline-block{ 5669 | display:inline-block!important 5670 | } 5671 | } 5672 | @media (min-width:1200px){ 5673 | .visible-lg{ 5674 | display:block!important 5675 | } 5676 | table.visible-lg{ 5677 | display:table!important 5678 | } 5679 | tr.visible-lg{ 5680 | display:table-row!important 5681 | } 5682 | td.visible-lg,th.visible-lg{ 5683 | display:table-cell!important 5684 | } 5685 | } 5686 | @media (min-width:1200px){ 5687 | .visible-lg-block{ 5688 | display:block!important 5689 | } 5690 | } 5691 | @media (min-width:1200px){ 5692 | .visible-lg-inline{ 5693 | display:inline!important 5694 | } 5695 | } 5696 | @media (min-width:1200px){ 5697 | .visible-lg-inline-block{ 5698 | display:inline-block!important 5699 | } 5700 | } 5701 | @media (max-width:767px){ 5702 | .hidden-xs{ 5703 | display:none!important 5704 | } 5705 | } 5706 | @media (min-width:768px) and (max-width:991px){ 5707 | .hidden-sm{ 5708 | display:none!important 5709 | } 5710 | } 5711 | @media (min-width:992px) and (max-width:1199px){ 5712 | .hidden-md{ 5713 | display:none!important 5714 | } 5715 | } 5716 | @media (min-width:1200px){ 5717 | .hidden-lg{ 5718 | display:none!important 5719 | } 5720 | } 5721 | .visible-print{ 5722 | display:none!important 5723 | } 5724 | @media print{ 5725 | .visible-print{ 5726 | display:block!important 5727 | } 5728 | table.visible-print{ 5729 | display:table!important 5730 | } 5731 | tr.visible-print{ 5732 | display:table-row!important 5733 | } 5734 | td.visible-print,th.visible-print{ 5735 | display:table-cell!important 5736 | } 5737 | } 5738 | .visible-print-block{ 5739 | display:none!important 5740 | } 5741 | @media print{ 5742 | .visible-print-block{ 5743 | display:block!important 5744 | } 5745 | } 5746 | .visible-print-inline{ 5747 | display:none!important 5748 | } 5749 | @media print{ 5750 | .visible-print-inline{ 5751 | display:inline!important 5752 | } 5753 | } 5754 | .visible-print-inline-block{ 5755 | display:none!important 5756 | } 5757 | @media print{ 5758 | .visible-print-inline-block{ 5759 | display:inline-block!important 5760 | } 5761 | } 5762 | @media print{ 5763 | .hidden-print{ 5764 | display:none!important 5765 | } 5766 | } 5767 | /*# sourceMappingURL=bootstrap.min.css.map */ 5768 | -------------------------------------------------------------------------------- /assets/style.css: -------------------------------------------------------------------------------- 1 | html, body { 2 | font-family: 'Roboto', sans-serif; 3 | width: 100%; 4 | height: 100%; 5 | } 6 | 7 | * { 8 | margin: 0; 9 | } 10 | 11 | header { 12 | position: fixed; 13 | width: 100%; 14 | height: 60px; 15 | background: #1f3a93; 16 | color: #FFF; 17 | } 18 | 19 | header > h1 { 20 | float: left; 21 | margin-top: 7px; 22 | margin-left: 10px; 23 | } 24 | 25 | header > a { 26 | float: right; 27 | font-size: 25px; 28 | margin-top: 12px; 29 | margin-right: 10px; 30 | text-decoration: none; 31 | color: #FFFFFF; 32 | } 33 | 34 | input{ 35 | position: absolute; 36 | left: 50%; 37 | top: 50%; 38 | transform: translate(calc(-50% - 14px), -50%); 39 | width: 240px; 40 | height: 40px; 41 | background: #1f3a93; 42 | color: #FFFFFF; 43 | border: none; 44 | padding: 5px; 45 | } 46 | 47 | select { 48 | position: absolute; 49 | left: 50%; 50 | top: 50%; 51 | transform: translate(-50%,-180%); 52 | width: 240px; 53 | height: 40px; 54 | background: #1f3a93; 55 | color: #FFFFFF; 56 | border: none; 57 | padding: 5px; 58 | } 59 | 60 | #preview { 61 | position: absolute; 62 | left: 50%; 63 | top: 50%; 64 | transform: translate(-50%,-350%); 65 | width: 44px; 66 | height: 34px; 67 | } 68 | 69 | button { 70 | position: absolute; 71 | left: 50%; 72 | top: 50%; 73 | transform: translate(150%, -50%); 74 | width: 60px; 75 | height: 50px; 76 | background: #274cc6; 77 | color: #FFFFFF; 78 | border: none; 79 | padding: 5px; 80 | } 81 | 82 | body > h1 { 83 | position: absolute; 84 | left: 50%; 85 | top: 50%; 86 | transform: translate(-50%, -250%); 87 | } 88 | 89 | #users { 90 | position: absolute; 91 | left: 50%; 92 | top: 50%; 93 | transform: translate(-50%, -50%); 94 | border-collapse: collapse; 95 | width: 50%; 96 | overflow-y: scroll; 97 | font-family: 'Roboto',sans-serif; 98 | font-weight: bold; 99 | } 100 | 101 | #users td{ 102 | border: 1px solid #ddd; 103 | padding: 8px; 104 | } 105 | 106 | #users tr:nth-child(even){background-color: #f2f2f2;} 107 | 108 | #users tr:hover {background-color: #ddd;} 109 | 110 | #users th { 111 | text-align: left; 112 | background-color: #1f3a93; 113 | color: white; 114 | padding: 12px 8px; 115 | font-weight: bolder; 116 | height: 20px; 117 | } -------------------------------------------------------------------------------- /capes/nabiacape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThnksCJ/Cape-API/f5a85da386baf0d10ace17d64b56f69d80bc108a/capes/nabiacape.png -------------------------------------------------------------------------------- /capes/nabiacapedev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThnksCJ/Cape-API/f5a85da386baf0d10ace17d64b56f69d80bc108a/capes/nabiacapedev.png -------------------------------------------------------------------------------- /dashboard/config.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | Cape API Dashboard 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 70 | 71 |
72 | 198 | 203 |
204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | -------------------------------------------------------------------------------- /dashboard/login.php: -------------------------------------------------------------------------------- 1 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | Sign in 17 | 18 | 19 | 20 |
21 |
22 | 23 | 24 | 25 | 26 | 27 |
28 | 31 |
32 | 33 | 34 | 56 | 57 |   58 | 62 | 66 | 67 |
68 |
69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | -------------------------------------------------------------------------------- /dashboard/logout.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | Cape API Dashboard 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 71 | 72 |
73 |
100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /dashboard/scripts/app/app.1.1.0.js: -------------------------------------------------------------------------------- 1 | (function ($) { 2 | $(document).ready(function () { 3 | 4 | var boSmallStatsDatasets = [ 5 | { 6 | backgroundColor: 'rgba(0, 184, 216, 0.1)', 7 | borderColor: 'rgb(0, 184, 216)', 8 | data: [0, 0, 0, 0, 0, 0, 4], 9 | }, 10 | { 11 | backgroundColor: 'rgba(23,198,113,0.1)', 12 | borderColor: 'rgb(23,198,113)', 13 | data: [0, 0, 0, 2, 0, 0, 0] 14 | }, 15 | { 16 | backgroundColor: 'rgba(255,180,0,0.1)', 17 | borderColor: 'rgb(255,180,0)', 18 | data: [0, 0, 0, 261, 0, 0, 0] 19 | }, 20 | { 21 | backgroundColor: 'rgba(255,65,105,0.1)', 22 | borderColor: 'rgb(255,65,105)', 23 | data: [35, 20, 15, 54, 10, 35, 35] 24 | }, 25 | { 26 | backgroundColor: 'rgb(0,123,255,0.1)', 27 | borderColor: 'rgb(0,123,255)', 28 | data: [0, 0, 0, 0, 0, 5, 43] 29 | } 30 | ]; 31 | 32 | function boSmallStatsOptions(max) { 33 | return { 34 | maintainAspectRatio: true, 35 | responsive: true, 36 | legend: { 37 | display: false 38 | }, 39 | tooltips: { 40 | enabled: false, 41 | custom: false 42 | }, 43 | elements: { 44 | point: { 45 | radius: 0 46 | }, 47 | line: { 48 | tension: 0.3 49 | } 50 | }, 51 | scales: { 52 | xAxes: [{ 53 | gridLines: false, 54 | scaleLabel: false, 55 | ticks: { 56 | display: false 57 | } 58 | }], 59 | yAxes: [{ 60 | gridLines: false, 61 | scaleLabel: false, 62 | ticks: { 63 | display: false, 64 | suggestedMax: max 65 | } 66 | }], 67 | }, 68 | }; 69 | } 70 | 71 | // Generate the small charts 72 | boSmallStatsDatasets.map(function (el, index) { 73 | var chartOptions = boSmallStatsOptions(Math.max.apply(Math, el.data) + 1); 74 | var ctx = document.getElementsByClassName('overview-stats-' + (index + 1)); 75 | new Chart(ctx, { 76 | type: 'line', 77 | data: { 78 | labels: ["Label 1", "Label 2", "Label 3", "Label 4", "Label 5", "Label 6", "Label 7"], 79 | datasets: [{ 80 | label: 'Today', 81 | fill: 'start', 82 | data: el.data, 83 | backgroundColor: el.backgroundColor, 84 | borderColor: el.borderColor, 85 | borderWidth: 1.5, 86 | }] 87 | }, 88 | options: chartOptions 89 | }); 90 | }); 91 | }); 92 | })(jQuery); 93 | -------------------------------------------------------------------------------- /dashboard/today-logs.php: -------------------------------------------------------------------------------- 1 | 10 | 11 | 12 | 13 | 14 | 15 | Cape API Dashboard 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 70 | 71 |
72 |
97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 43 | 44 | 45 | 46 | 47 | Capes API 48 | 49 | 50 | 51 | 52 | 53 | 54 |

Nabia | Capes API

55 | Add User 56 | 57 | 58 | 59 | Upload Cape 60 | 61 | 62 | 63 | Dashboard 64 |
65 | 66 | 67 | 68 | 69 | 70 | 71 | $h3){?> 72 | 73 | 74 | 75 | 76 | 77 | 78 |
UserCapeRemove
X
79 | 80 | 81 | -------------------------------------------------------------------------------- /logs/API-USAGE-14.3.2022.log: -------------------------------------------------------------------------------- 1 | 2 | [March 14, 2022, 5:23 pm] API Used: | Username: pineapple | Cape: nabiacape.png 3 | [March 14, 2022, 5:23 pm] API Used: | Username: pineapple | Cape: nabiacape.png 4 | [March 14, 2022, 5:46 pm] API Used: | Username: pineapple | Cape: nabiacape.png 5 | [March 14, 2022, 5:59 pm] API Used: | Username: pineapple | Cape: nabiacape.png 6 | -------------------------------------------------------------------------------- /logs/API-USAGE.log: -------------------------------------------------------------------------------- 1 | [March 13, 2022, 7:44 pm] API Used: | Username: pineapple | Cape: nabiacape.png 2 | [March 13, 2022, 7:45 pm] API Used: | Username: pineapple | Cape: nabiacape.png 3 | [March 13, 2022, 7:45 pm] API Used: | Username: pineapple | Cape: nabiacape.png 4 | [March 13, 2022, 7:47 pm] API Used: | Username: pineapple | Cape: nabiacape.png 5 | [March 13, 2022, 7:48 pm] API Used: | Username: pineapple | Cape: nabiacape.png 6 | [March 13, 2022, 8:10 pm] API Used: | Username: pineapple | Cape: nabiacape.png 7 | [March 13, 2022, 8:40 pm] API Used: | Username: pineapple | Cape: nabiacape.png 8 | [March 14, 2022, 3:56 pm] API Used: | Username: pineapple | Cape: nabiacape.png 9 | [March 14, 2022, 4:02 pm] API Used: | Username: pineapple | Cape: nabiacape.png 10 | [March 14, 2022, 4:06 pm] API Used: | Username: pineapple | Cape: nabiacape.png 11 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 12 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 13 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 14 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 15 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 16 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 17 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 18 | [March 14, 2022, 4:20 pm] API Used: | Username: pineapple | Cape: nabiacape.png 19 | [March 14, 2022, 4:29 pm] API Used: | Username: pineapple | Cape: nabiacape.png 20 | [March 14, 2022, 4:30 pm] API Used: | Username: pineapple | Cape: nabiacape.png 21 | [March 14, 2022, 4:30 pm] API Used: | Username: pineapple | Cape: nabiacape.png 22 | [March 14, 2022, 4:32 pm] API Used: | Username: pineapple | Cape: nabiacape.png 23 | [March 14, 2022, 4:33 pm] API Used: | Username: pineapple | Cape: nabiacape.png 24 | [March 14, 2022, 4:34 pm] API Used: | Username: pineapple | Cape: nabiacape.png 25 | [March 14, 2022, 4:34 pm] API Used: | Username: pineapple | Cape: nabiacape.png 26 | [March 14, 2022, 4:34 pm] API Used: | Username: pineapple | Cape: nabiacape.png 27 | [March 14, 2022, 4:34 pm] API Used: | Username: pineapple | Cape: nabiacape.png 28 | [March 14, 2022, 4:44 pm] API Used: | Username: pineapple | Cape: nabiacape.png 29 | [March 14, 2022, 4:46 pm] API Used: | Username: pineapple | Cape: nabiacape.png 30 | [March 14, 2022, 4:54 pm] API Used: | Username: pineapple | Cape: nabiacape.png 31 | [March 14, 2022, 4:57 pm] API Used: | Username: pineapple | Cape: nabiacape.png 32 | [March 14, 2022, 5:23 pm] API Used: | Username: pineapple | Cape: nabiacape.png 33 | [March 14, 2022, 5:23 pm] API Used: | Username: pineapple | Cape: nabiacape.png 34 | [March 14, 2022, 5:46 pm] API Used: | Username: pineapple | Cape: nabiacape.png 35 | [March 14, 2022, 5:59 pm] API Used: | Username: pineapple | Cape: nabiacape.png 36 | -------------------------------------------------------------------------------- /logs/log_14.3.2022.log: -------------------------------------------------------------------------------- 1 | 2 | [March 14, 2022, 5:23 pm] users.json Entry Removed: | Username: user_1 3 | [March 14, 2022, 5:23 pm] uuid.json Entry Removed: | Username: user_1 4 | [March 14, 2022, 5:23 pm] users.json Entry Added: | Cape: nabiacapedev.png | Username: thnks_cj 5 | [March 14, 2022, 5:23 pm] uuid.json Entry Added: | Username: thnks_cj 6 | [March 14, 2022, 5:27 pm] users.json Entry Removed: | Username: thnks_cj 7 | [March 14, 2022, 5:27 pm] uuid.json Entry Removed: | Username: thnks_cj 8 | [March 14, 2022, 5:33 pm] users.json Entry Added: | Cape: nabiacapedev.png | Username: sad 9 | [March 14, 2022, 5:33 pm] uuid.json Entry Added: | Username: sad 10 | [March 14, 2022, 5:35 pm] users.json Entry Removed: | Username: sad 11 | [March 14, 2022, 5:35 pm] uuid.json Entry Removed: | Username: sad 12 | [March 14, 2022, 5:44 pm] users.json Entry Added: | Cape: nabiacape.png | Username: as 13 | [March 14, 2022, 5:44 pm] uuid.json Entry Added: | Username: as 14 | [March 14, 2022, 5:54 pm] users.json Entry Added: | Cape: nabiacape.png | Username: sd 15 | [March 14, 2022, 5:54 pm] uuid.json Entry Added: | Username: sd 16 | [March 14, 2022, 5:54 pm] users.json Entry Removed: | Username: sd 17 | [March 14, 2022, 5:54 pm] uuid.json Entry Removed: | Username: sd 18 | [March 14, 2022, 5:55 pm] users.json Entry Removed: | Username: as 19 | [March 14, 2022, 5:55 pm] uuid.json Entry Removed: | Username: as 20 | [March 14, 2022, 5:56 pm] users.json Entry Added: | Cape: nabiacape.png | Username: sd 21 | [March 14, 2022, 5:56 pm] uuid.json Entry Added: | Username: sd 22 | [March 14, 2022, 6:07 pm] users.json Entry Removed: | Username: sd 23 | [March 14, 2022, 6:07 pm] uuid.json Entry Removed: | Username: sd 24 | [March 14, 2022, 7:34 pm] User Logged Into Admin Panel: | Username: CJ 25 | [March 14, 2022, 7:35 pm] User Logged Out Of Admin Panel: | Username: CJ 26 | [March 14, 2022, 7:39 pm] User Logged Into Admin Panel: | Username: CJ 27 | [March 14, 2022, 7:39 pm] User Logged Out Of Admin Panel: | Username: CJ 28 | [March 14, 2022, 7:40 pm] User Logged Into Admin Panel: | Username: CJ 29 | [March 14, 2022, 7:40 pm] User Logged Out Of Admin Panel: | Username: CJ 30 | [March 14, 2022, 7:40 pm] User Logged Into Admin Panel: | Username: CJ 31 | [March 14, 2022, 7:40 pm] User Logged Out Of Admin Panel: | Username: CJ 32 | [March 14, 2022, 7:43 pm] User Logged Into Admin Panel: | Username: CJ 33 | [March 14, 2022, 7:44 pm] User Logged Out Of Admin Panel: | Username: CJ 34 | [March 14, 2022, 8:02 pm] User Logged Into Admin Panel: | Username: CJ 35 | [March 14, 2022, 8:51 pm] users.json Entry Added: | Cape: nabiacapedev.png | Username: thnks_cj 36 | [March 14, 2022, 8:51 pm] uuid.json Entry Added: | Username: thnks_cj 37 | [March 14, 2022, 8:51 pm] users.json Entry Added: | Cape: nabiacape.png | Username: doxbin_com 38 | [March 14, 2022, 8:51 pm] uuid.json Entry Added: | Username: doxbin_com 39 | [March 14, 2022, 8:52 pm] users.json Entry Added: | Cape: nabiacape.png | Username: falopead0 40 | [March 14, 2022, 8:52 pm] uuid.json Entry Added: | Username: falopead0 41 | [March 14, 2022, 8:52 pm] users.json Entry Added: | Cape: nabiacapedev.png | Username: _luxs 42 | [March 14, 2022, 8:52 pm] uuid.json Entry Added: | Username: _luxs 43 | [March 14, 2022, 8:52 pm] User Logged Out Of Admin Panel: | Username: CJ 44 | [March 14, 2022, 8:52 pm] User Logged Into Admin Panel: | Username: CJ 45 | -------------------------------------------------------------------------------- /upload.php: -------------------------------------------------------------------------------- 1 | 32 | 33 | 34 | 35 | 36 | 37 | Cape API 38 | 39 | 40 | 41 | 42 | 43 | 44 |

Nabia | Capes API

45 | Home 46 |
47 |
48 |

Upload Cape Image

49 |
50 | 51 |
52 | 64 | 85 | 86 | 87 | -------------------------------------------------------------------------------- /users.json: -------------------------------------------------------------------------------- 1 | { 2 | "thnks_cj": "nabiacapedev.png", 3 | "doxbin_com": "nabiacape.png", 4 | "falopead0": "nabiacape.png", 5 | "_luxs": "nabiacapedev.png" 6 | } -------------------------------------------------------------------------------- /uuid.json: -------------------------------------------------------------------------------- 1 | thnks_cj 2 | doxbin_com 3 | falopead0 4 | _luxs 5 | --------------------------------------------------------------------------------