├── .gitattributes ├── css ├── style.css └── bootstrap.css ├── README.md ├── js └── win-exp.js ├── win-patch-exp-data.json └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | 19 | # Set css file to linguist-language=Text 20 | *.css linguist-language=Text 21 | *.html linguist-language=Text 22 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: 'Helvetica Neue',Helvetica,'PingFang SC','Hiragino Sans GB','Microsoft YaHei',Arial,sans-serif; 3 | } 4 | 5 | .container label { 6 | font-size: 16px; 7 | margin-bottom: 12px; 8 | } 9 | 10 | .list-group label { 11 | margin-top: 20px; 12 | font-size: 12px; 13 | margin-bottom: 10px; 14 | } 15 | 16 | div#alert-not-null { 17 | display: None; 18 | } 19 | 20 | #get-exp-info { 21 | /*TODO*/ 22 | } 23 | 24 | .list-group-item strong { 25 | color: #00eadb; 26 | } 27 | 28 | .list-group-item.list-group-item-action.flex-column.align-items-start { 29 | padding-top: 0; 30 | padding-bottom: 0; 31 | } 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # windows提权EXP搜索辅助工具 2 | 3 | ---- 4 | 5 | 在火车上面闲着没事写的轮子,点击使用: [http://neargle.github.io/win-powerup-exp-index](http://neargle.github.io/win-powerup-exp-index) 6 | 7 | ![image](https://user-images.githubusercontent.com/7868679/84858397-ae5e6f80-b09d-11ea-95e4-f53e1941343c.png) 8 | 9 | # About 10 | 11 | 在火车上闲着没事干,突然发现电脑内还有这样一个列表,就想看看在没有网络的情况下自己能不能写出一个东西来。用SublimeText3+Dash3+Chrome三个软件写了这个东西。回家做了一个小手术,躺在床上没事干就扔了上来。 12 | 13 | 很常见,是一个轮子。但是一般都是windows上的桌面程序,很少有web端而且能持续提供服务的。我就直接扔github page上有时间来更新一下json文件。 14 | 或许之后还会更新各个exploit的下载,如果我不那么懒的话 -A-。 15 | 16 | # 使用 17 | 18 | 运行cmd命令`systeminfo`获取信息,粘贴systeminfo信息或只粘贴补丁信息到编辑框内。 19 | 20 | 例如: 21 | 22 | > [01]: KB3124263 23 | > [02]: KB3135173 24 | > [03]: KB3139907 25 | > [04]: KB3140741 26 | > [05]: KB3140743 27 | > [06]: KB3140768 28 | > [07]: KB3149135 29 | > [08]: KB3172729 30 | > [09]: KB3173428 31 | > [10]: KB3181403 32 | > [11]: KB3214628 33 | > [12]: KB3147458 34 | 35 | 或者直接粘贴所有`systeminfo`: 36 | 37 | > $ systeminfo 38 | > 主机名: NEARGLE-77359B7 39 | > OS 名称: Microsoft Windows XP Professional 40 | > OS 版本: 5.1.2600 Service Pack 3 Build 2600 41 | > OS 制造商: Microsoft Corporation 42 | > OS 配置: 独立工作站 43 | > OS 构件类型: Uniprocessor Free 44 | > 注册的所有人: Neargle 45 | > ...... 46 | 47 | 就能对应自己的系统版本找到适合的Exploit编号,然后搜索引擎吧0-0 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /js/win-exp.js: -------------------------------------------------------------------------------- 1 | function show_exp_info() { 2 | $('div#exp-info-list').empty(); 3 | patchinfo = $('#patchlist').val(); 4 | if(patchinfo.length == 0){ 5 | $('div#alert-not-null').show(); 6 | return; 7 | } 8 | patch_info_list = []; 9 | restr = /\[\d+]\:\W(KB.*)/ig; 10 | patchmat = restr.exec(patchinfo); 11 | while(patchmat !== null) { 12 | patch_info_list.push(patchmat[1]); 13 | patchmat = restr.exec(patchinfo); 14 | } 15 | if (!patch_info_list) return; 16 | $.getJSON('win-patch-exp-data.json', function(expdata){ 17 | for(var winver in expdata){ 18 | window.expinfo = expdata[winver]; 19 | for(var patchid in expinfo){ 20 | if (patch_info_list.indexOf(patchid) < 0){ 21 | expinfo2dom(patchid=patchid, exp=expinfo[patchid], winver=winver); 22 | } 23 | } 24 | } 25 | 26 | }); 27 | } 28 | 29 | function close_alert(arg) { 30 | alert_div = arg.parentElement; 31 | $(alert_div).css('display', 'None'); 32 | } 33 | 34 | function expinfo2dom(patchid='', exp='', winver=''){ 35 | if(!document.getElementById(winver)){ 36 | label = document.createElement('label'); 37 | label.id = winver; 38 | text = winver + ' 可用EXP:'; 39 | label.textContent = text; 40 | $('div#exp-info-list').append(label) 41 | } 42 | html = 43 | ''+ patchid +' : ' + exp + ''; 44 | // '
' + 45 | // '
' + 46 | // '
'+ patchid +' : ' + exp + '
' + 47 | // '
' + 48 | // '
'; 49 | $('div#exp-info-list').append(html); 50 | } 51 | -------------------------------------------------------------------------------- /win-patch-exp-data.json: -------------------------------------------------------------------------------- 1 | { 2 | "windows2003": { 3 | "KB2360937": "MS10-084", 4 | "KB2478960": "MS11-014", 5 | "KB2507938": "MS11-056", 6 | "KB2566454": "MS11-062", 7 | "KB2646524": "MS12-003", 8 | "KB2645640": "MS12-009", 9 | "KB2641653": "MS12-018", 10 | "KB944653": "MS07-067", 11 | "KB952004": "MS09-012 PR", 12 | "KB971657": "MS09-041", 13 | "KB2620712": "MS11-097", 14 | "KB2393802": "MS11-011", 15 | "KB942831": "MS08-005", 16 | "KB2503665": "MS11-046", 17 | "KB2592799": "MS11-080", 18 | "KB956572": "MS09-012 烤肉", 19 | "KB2621440": "MS12-020", 20 | "KB977165": "MS10-015 Ms Viru", 21 | "KB3139914": "MS16-032", 22 | "KB3124280": "MS16-016", 23 | "KB3134228": "MS16-014", 24 | "KB3079904": "MS15-097", 25 | "KB3077657": "MS15-077", 26 | "KB3045171": "MS15-051", 27 | "KB3000061": "MS14-058", 28 | "KB2829361": "MS13-046", 29 | "KB2850851": "MS13-053 EPATHOBJ 0day 限32位", 30 | "KB2707511": "MS12-042 sysret -pid", 31 | "KB2124261": "KB2271195 MS10-065 IIS7", 32 | "KB970483": "MS09-020 IIS6" 33 | }, 34 | "windows2008": { 35 | "KB3139914": "MS16-032", 36 | "KB3124280": "MS16-016", 37 | "KB3134228": "MS16-014", 38 | "KB3079904": "MS15-097", 39 | "KB3077657": "MS15-077", 40 | "KB3045171": "MS15-051", 41 | "KB3000061": "MS14-058", 42 | "KB2829361": "MS13-046", 43 | "KB2850851": "MS13-053 EPATHOBJ 0day 限32位", 44 | "KB2707511": "MS12-042 sysret -pid", 45 | "KB2124261": "KB2271195 MS10-065 IIS7", 46 | "KB970483": "MS09-020 IIS6" 47 | }, 48 | "windows2012": { 49 | "KB3139914": "MS16-032", 50 | "KB3124280": "MS16-016", 51 | "KB3134228": "MS16-014", 52 | "KB3079904": "MS15-097", 53 | "KB3077657": "MS15-077", 54 | "KB3045171": "MS15-051", 55 | "KB3000061": "MS14-058", 56 | "KB2829361": "MS13-046", 57 | "KB2850851": "MS13-053 EPATHOBJ 0day 限32位", 58 | "KB2707511": "MS12-042 sysret -pid", 59 | "KB2124261": "KB2271195 MS10-065 IIS7", 60 | "KB970483": "MS09-020 IIS6" 61 | } 62 | } -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Windows Privilege Escalation Exploit Search -- Windows 提权辅助 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 32 | 33 | 34 |
35 | 36 |
37 |
38 |
39 | 40 | 41 |
42 |
43 | 44 |
45 | 46 | 47 | 48 |
49 |
50 | 51 | 57 |
58 |
59 |

60 | Windows提权EXP在线搜索工具

61 |

源码在:https://github.com/neargle/win-powerup-exp-index

62 |

使用

63 |

运行cmd命令systeminfo获取信息,粘贴systeminfo信息或只粘贴补丁信息到编辑框内。

64 |

例如:

65 |
66 |

[01]: KB3124263
67 | [02]: KB3135173
68 | [03]: KB3139907
69 | [04]: KB3140741
70 | [05]: KB3140743
71 | [06]: KB3140768
72 | [07]: KB3149135
73 | [08]: KB3172729
74 | [09]: KB3173428
75 | [10]: KB3181403
76 | [11]: KB3214628
77 | [12]: KB3147458

78 |
79 |

或者直接粘贴所有systeminfo:

80 |
81 |

$ systeminfo
82 | 主机名: NEARGLE-77359B7
83 | OS 名称: Microsoft Windows XP Professional
84 | OS 版本: 5.1.2600 Service Pack 3 Build 2600
85 | OS 制造商: Microsoft Corporation
86 | OS 配置: 独立工作站
87 | OS 构件类型: Uniprocessor Free
88 | 注册的所有人: Neargle
89 | ......

90 |
91 |

就能对应自己的系统版本找到适合的Exploit编号,然后搜索引擎吧0-0

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