├── .gitignore ├── README.md ├── css ├── shortcutcss-no-color.css ├── shortcutcss-no-color.min.css ├── shortcutcss.css └── shortcutcss.min.css └── sass └── shortcutcss ├── _color.scss ├── _core.scss ├── _mixins.scss ├── _variables.scss ├── all.scss └── no-color.scss /.gitignore: -------------------------------------------------------------------------------- 1 | *.hxproj 2 | *.html 3 | tools/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ShortcutCSS 2 | 3 | Minimalist CSS classes for styling speedup. 4 | 5 | ## Install 6 | 7 | Replace styling for dummy Elements used for layout purposes and reduce your CSS complexity and size. 8 | Use its features when it is certain the Element styling will be always the same. 9 | 10 | ### Local 11 | 12 | ```html 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | ``` 22 | 23 | ### CDN 24 | 25 | A CDN link is also available. 26 | 27 | ```html 28 | 29 | 30 | 31 | 32 | ``` 33 | 34 | ### Custom Version 35 | 36 | The CDN also offers a specific version if needed. 37 | ```html 38 | 39 | ``` 40 | ## Usage 41 | 42 | Check the minimalistic rules and change your HTML from this: 43 | 44 | ```html 45 | 66 | 67 |
68 |
69 | Centered Text 70 |
71 |
72 | ``` 73 | 74 | to this: 75 | 76 | ```html 77 | 83 | 84 |
85 |
86 | Centered Text 87 |
88 |
89 | ``` 90 | 91 | 92 | -------------------------------------------------------------------------------- /css/shortcutcss-no-color.css: -------------------------------------------------------------------------------- 1 | /** 2 | Variables 3 | //*/ 4 | /* 5 | ######### Functions ######### 6 | */ 7 | /* 8 | ######### Misc ######### 9 | */ 10 | /* 11 | ######### Flexbox ######### 12 | */ 13 | /** 14 | Shortcut classes. 15 | //*/ 16 | .abs { 17 | position: absolute; } 18 | 19 | .rel { 20 | position: relative; } 21 | 22 | .fix { 23 | position: fixed; } 24 | 25 | .c-default { 26 | cursor: default; } 27 | 28 | .c-pointer { 29 | cursor: pointer; } 30 | 31 | .c-none { 32 | cursor: none; } 33 | 34 | .mouse-disable { 35 | pointer-events: none; } 36 | 37 | .select-disable { 38 | -webkit-touch-callout: none; 39 | -webkit-user-select: none; 40 | -khtml-user-select: none; 41 | -moz-user-select: none; 42 | -ms-user-select: none; 43 | user-select: none; } 44 | 45 | .scroll { 46 | overflow: auto; } 47 | 48 | .scroll-x { 49 | overflow-x: auto; 50 | overflow-y: hidden; } 51 | 52 | .scroll-y { 53 | overflow-y: auto; 54 | overflow-x: hidden; } 55 | 56 | .tl { 57 | text-align: left; } 58 | 59 | .tc { 60 | text-align: center; } 61 | 62 | .tr { 63 | text-align: right; } 64 | 65 | .t-wrap { 66 | white-space: normal; } 67 | 68 | .t-nowrap { 69 | white-space: nowrap; } 70 | 71 | .inh { 72 | display: inherit; } 73 | 74 | .ib { 75 | display: inline-block; } 76 | 77 | .bl { 78 | display: block; } 79 | 80 | .none { 81 | display: none; } 82 | 83 | .fll { 84 | float: left; } 85 | 86 | .flr { 87 | float: right; } 88 | 89 | .fs6 { 90 | font-size: 6px; } 91 | 92 | .fs8 { 93 | font-size: 8px; } 94 | 95 | .fs10 { 96 | font-size: 10px; } 97 | 98 | .fs12 { 99 | font-size: 12px; } 100 | 101 | .fs14 { 102 | font-size: 14px; } 103 | 104 | .fs16 { 105 | font-size: 16px; } 106 | 107 | .fs18 { 108 | font-size: 18px; } 109 | 110 | .fs20 { 111 | font-size: 20px; } 112 | 113 | .fs22 { 114 | font-size: 22px; } 115 | 116 | .fs24 { 117 | font-size: 24px; } 118 | 119 | .fs26 { 120 | font-size: 26px; } 121 | 122 | .fs28 { 123 | font-size: 28px; } 124 | 125 | .fs30 { 126 | font-size: 30px; } 127 | 128 | .fs32 { 129 | font-size: 32px; } 130 | 131 | .fs34 { 132 | font-size: 34px; } 133 | 134 | .fs36 { 135 | font-size: 36px; } 136 | 137 | .fs38 { 138 | font-size: 38px; } 139 | 140 | .fs40 { 141 | font-size: 40px; } 142 | 143 | .fs42 { 144 | font-size: 42px; } 145 | 146 | .fs44 { 147 | font-size: 44px; } 148 | 149 | .fs46 { 150 | font-size: 46px; } 151 | 152 | .fs48 { 153 | font-size: 48px; } 154 | 155 | .fs50 { 156 | font-size: 50px; } 157 | 158 | .fs52 { 159 | font-size: 52px; } 160 | 161 | .fs54 { 162 | font-size: 54px; } 163 | 164 | .fs56 { 165 | font-size: 56px; } 166 | 167 | .fs58 { 168 | font-size: 58px; } 169 | 170 | .fs60 { 171 | font-size: 60px; } 172 | 173 | .fs62 { 174 | font-size: 62px; } 175 | 176 | .fs64 { 177 | font-size: 64px; } 178 | 179 | .fs66 { 180 | font-size: 66px; } 181 | 182 | .fs68 { 183 | font-size: 68px; } 184 | 185 | .fs70 { 186 | font-size: 70px; } 187 | 188 | .fs72 { 189 | font-size: 72px; } 190 | 191 | .fs74 { 192 | font-size: 74px; } 193 | 194 | .fs76 { 195 | font-size: 76px; } 196 | 197 | .fs78 { 198 | font-size: 78px; } 199 | 200 | .fs80 { 201 | font-size: 80px; } 202 | 203 | .fs82 { 204 | font-size: 82px; } 205 | 206 | .fs84 { 207 | font-size: 84px; } 208 | 209 | .fs86 { 210 | font-size: 86px; } 211 | 212 | .fs88 { 213 | font-size: 88px; } 214 | 215 | .fs90 { 216 | font-size: 90px; } 217 | 218 | .fs92 { 219 | font-size: 92px; } 220 | 221 | .fs94 { 222 | font-size: 94px; } 223 | 224 | .fs96 { 225 | font-size: 96px; } 226 | 227 | .fs98 { 228 | font-size: 98px; } 229 | 230 | .fs100 { 231 | font-size: 100px; } 232 | 233 | .fsr2 { 234 | font-size: 0.02rem; } 235 | 236 | .fsr4 { 237 | font-size: 0.04rem; } 238 | 239 | .fsr6 { 240 | font-size: 0.06rem; } 241 | 242 | .fsr8 { 243 | font-size: 0.08rem; } 244 | 245 | .fsr10 { 246 | font-size: 0.1rem; } 247 | 248 | .fsr12 { 249 | font-size: 0.12rem; } 250 | 251 | .fsr14 { 252 | font-size: 0.14rem; } 253 | 254 | .fsr16 { 255 | font-size: 0.16rem; } 256 | 257 | .fsr18 { 258 | font-size: 0.18rem; } 259 | 260 | .fsr20 { 261 | font-size: 0.2rem; } 262 | 263 | .fsr22 { 264 | font-size: 0.22rem; } 265 | 266 | .fsr24 { 267 | font-size: 0.24rem; } 268 | 269 | .fsr26 { 270 | font-size: 0.26rem; } 271 | 272 | .fsr28 { 273 | font-size: 0.28rem; } 274 | 275 | .fsr30 { 276 | font-size: 0.3rem; } 277 | 278 | .fsr32 { 279 | font-size: 0.32rem; } 280 | 281 | .fsr34 { 282 | font-size: 0.34rem; } 283 | 284 | .fsr36 { 285 | font-size: 0.36rem; } 286 | 287 | .fsr38 { 288 | font-size: 0.38rem; } 289 | 290 | .fsr40 { 291 | font-size: 0.4rem; } 292 | 293 | .fsr42 { 294 | font-size: 0.42rem; } 295 | 296 | .fsr44 { 297 | font-size: 0.44rem; } 298 | 299 | .fsr46 { 300 | font-size: 0.46rem; } 301 | 302 | .fsr48 { 303 | font-size: 0.48rem; } 304 | 305 | .fsr50 { 306 | font-size: 0.5rem; } 307 | 308 | .fsr52 { 309 | font-size: 0.52rem; } 310 | 311 | .fsr54 { 312 | font-size: 0.54rem; } 313 | 314 | .fsr56 { 315 | font-size: 0.56rem; } 316 | 317 | .fsr58 { 318 | font-size: 0.58rem; } 319 | 320 | .fsr60 { 321 | font-size: 0.6rem; } 322 | 323 | .fsr62 { 324 | font-size: 0.62rem; } 325 | 326 | .fsr64 { 327 | font-size: 0.64rem; } 328 | 329 | .fsr66 { 330 | font-size: 0.66rem; } 331 | 332 | .fsr68 { 333 | font-size: 0.68rem; } 334 | 335 | .fsr70 { 336 | font-size: 0.7rem; } 337 | 338 | .fsr72 { 339 | font-size: 0.72rem; } 340 | 341 | .fsr74 { 342 | font-size: 0.74rem; } 343 | 344 | .fsr76 { 345 | font-size: 0.76rem; } 346 | 347 | .fsr78 { 348 | font-size: 0.78rem; } 349 | 350 | .fsr80 { 351 | font-size: 0.8rem; } 352 | 353 | .fsr82 { 354 | font-size: 0.82rem; } 355 | 356 | .fsr84 { 357 | font-size: 0.84rem; } 358 | 359 | .fsr86 { 360 | font-size: 0.86rem; } 361 | 362 | .fsr88 { 363 | font-size: 0.88rem; } 364 | 365 | .fsr90 { 366 | font-size: 0.9rem; } 367 | 368 | .fsr92 { 369 | font-size: 0.92rem; } 370 | 371 | .fsr94 { 372 | font-size: 0.94rem; } 373 | 374 | .fsr96 { 375 | font-size: 0.96rem; } 376 | 377 | .fsr98 { 378 | font-size: 0.98rem; } 379 | 380 | .fsr100 { 381 | font-size: 1rem; } 382 | 383 | .fsr102 { 384 | font-size: 1.02rem; } 385 | 386 | .fsr104 { 387 | font-size: 1.04rem; } 388 | 389 | .fsr106 { 390 | font-size: 1.06rem; } 391 | 392 | .fsr108 { 393 | font-size: 1.08rem; } 394 | 395 | .fsr110 { 396 | font-size: 1.1rem; } 397 | 398 | .fsr112 { 399 | font-size: 1.12rem; } 400 | 401 | .fsr114 { 402 | font-size: 1.14rem; } 403 | 404 | .fsr116 { 405 | font-size: 1.16rem; } 406 | 407 | .fsr118 { 408 | font-size: 1.18rem; } 409 | 410 | .fsr120 { 411 | font-size: 1.2rem; } 412 | 413 | .fsr122 { 414 | font-size: 1.22rem; } 415 | 416 | .fsr124 { 417 | font-size: 1.24rem; } 418 | 419 | .fsr126 { 420 | font-size: 1.26rem; } 421 | 422 | .fsr128 { 423 | font-size: 1.28rem; } 424 | 425 | .fsr130 { 426 | font-size: 1.3rem; } 427 | 428 | .fsr132 { 429 | font-size: 1.32rem; } 430 | 431 | .fsr134 { 432 | font-size: 1.34rem; } 433 | 434 | .fsr136 { 435 | font-size: 1.36rem; } 436 | 437 | .fsr138 { 438 | font-size: 1.38rem; } 439 | 440 | .fsr140 { 441 | font-size: 1.4rem; } 442 | 443 | .fsr142 { 444 | font-size: 1.42rem; } 445 | 446 | .fsr144 { 447 | font-size: 1.44rem; } 448 | 449 | .fsr146 { 450 | font-size: 1.46rem; } 451 | 452 | .fsr148 { 453 | font-size: 1.48rem; } 454 | 455 | .fsr150 { 456 | font-size: 1.5rem; } 457 | 458 | .fsr152 { 459 | font-size: 1.52rem; } 460 | 461 | .fsr154 { 462 | font-size: 1.54rem; } 463 | 464 | .fsr156 { 465 | font-size: 1.56rem; } 466 | 467 | .fsr158 { 468 | font-size: 1.58rem; } 469 | 470 | .fsr160 { 471 | font-size: 1.6rem; } 472 | 473 | .fsr162 { 474 | font-size: 1.62rem; } 475 | 476 | .fsr164 { 477 | font-size: 1.64rem; } 478 | 479 | .fsr166 { 480 | font-size: 1.66rem; } 481 | 482 | .fsr168 { 483 | font-size: 1.68rem; } 484 | 485 | .fsr170 { 486 | font-size: 1.7rem; } 487 | 488 | .fsr172 { 489 | font-size: 1.72rem; } 490 | 491 | .fsr174 { 492 | font-size: 1.74rem; } 493 | 494 | .fsr176 { 495 | font-size: 1.76rem; } 496 | 497 | .fsr178 { 498 | font-size: 1.78rem; } 499 | 500 | .fsr180 { 501 | font-size: 1.8rem; } 502 | 503 | .fsr182 { 504 | font-size: 1.82rem; } 505 | 506 | .fsr184 { 507 | font-size: 1.84rem; } 508 | 509 | .fsr186 { 510 | font-size: 1.86rem; } 511 | 512 | .fsr188 { 513 | font-size: 1.88rem; } 514 | 515 | .fsr190 { 516 | font-size: 1.9rem; } 517 | 518 | .fsr192 { 519 | font-size: 1.92rem; } 520 | 521 | .fsr194 { 522 | font-size: 1.94rem; } 523 | 524 | .fsr196 { 525 | font-size: 1.96rem; } 526 | 527 | .fsr198 { 528 | font-size: 1.98rem; } 529 | 530 | .fsr200 { 531 | font-size: 2rem; } 532 | 533 | .fsr202 { 534 | font-size: 2.02rem; } 535 | 536 | .fsr204 { 537 | font-size: 2.04rem; } 538 | 539 | .fsr206 { 540 | font-size: 2.06rem; } 541 | 542 | .fsr208 { 543 | font-size: 2.08rem; } 544 | 545 | .fsr210 { 546 | font-size: 2.1rem; } 547 | 548 | .fsr212 { 549 | font-size: 2.12rem; } 550 | 551 | .fsr214 { 552 | font-size: 2.14rem; } 553 | 554 | .fsr216 { 555 | font-size: 2.16rem; } 556 | 557 | .fsr218 { 558 | font-size: 2.18rem; } 559 | 560 | .fsr220 { 561 | font-size: 2.2rem; } 562 | 563 | .fsr222 { 564 | font-size: 2.22rem; } 565 | 566 | .fsr224 { 567 | font-size: 2.24rem; } 568 | 569 | .fsr226 { 570 | font-size: 2.26rem; } 571 | 572 | .fsr228 { 573 | font-size: 2.28rem; } 574 | 575 | .fsr230 { 576 | font-size: 2.3rem; } 577 | 578 | .fsr232 { 579 | font-size: 2.32rem; } 580 | 581 | .fsr234 { 582 | font-size: 2.34rem; } 583 | 584 | .fsr236 { 585 | font-size: 2.36rem; } 586 | 587 | .fsr238 { 588 | font-size: 2.38rem; } 589 | 590 | .fsr240 { 591 | font-size: 2.4rem; } 592 | 593 | .fsr242 { 594 | font-size: 2.42rem; } 595 | 596 | .fsr244 { 597 | font-size: 2.44rem; } 598 | 599 | .fsr246 { 600 | font-size: 2.46rem; } 601 | 602 | .fsr248 { 603 | font-size: 2.48rem; } 604 | 605 | .fsr250 { 606 | font-size: 2.5rem; } 607 | 608 | .fsr252 { 609 | font-size: 2.52rem; } 610 | 611 | .fsr254 { 612 | font-size: 2.54rem; } 613 | 614 | .fsr256 { 615 | font-size: 2.56rem; } 616 | 617 | .fsr258 { 618 | font-size: 2.58rem; } 619 | 620 | .fsr260 { 621 | font-size: 2.6rem; } 622 | 623 | .fsr262 { 624 | font-size: 2.62rem; } 625 | 626 | .fsr264 { 627 | font-size: 2.64rem; } 628 | 629 | .fsr266 { 630 | font-size: 2.66rem; } 631 | 632 | .fsr268 { 633 | font-size: 2.68rem; } 634 | 635 | .fsr270 { 636 | font-size: 2.7rem; } 637 | 638 | .fsr272 { 639 | font-size: 2.72rem; } 640 | 641 | .fsr274 { 642 | font-size: 2.74rem; } 643 | 644 | .fsr276 { 645 | font-size: 2.76rem; } 646 | 647 | .fsr278 { 648 | font-size: 2.78rem; } 649 | 650 | .fsr280 { 651 | font-size: 2.8rem; } 652 | 653 | .fsr282 { 654 | font-size: 2.82rem; } 655 | 656 | .fsr284 { 657 | font-size: 2.84rem; } 658 | 659 | .fsr286 { 660 | font-size: 2.86rem; } 661 | 662 | .fsr288 { 663 | font-size: 2.88rem; } 664 | 665 | .fsr290 { 666 | font-size: 2.9rem; } 667 | 668 | .fsr292 { 669 | font-size: 2.92rem; } 670 | 671 | .fsr294 { 672 | font-size: 2.94rem; } 673 | 674 | .fsr296 { 675 | font-size: 2.96rem; } 676 | 677 | .fsr298 { 678 | font-size: 2.98rem; } 679 | 680 | .fsr300 { 681 | font-size: 3rem; } 682 | 683 | .fsr302 { 684 | font-size: 3.02rem; } 685 | 686 | .fsr304 { 687 | font-size: 3.04rem; } 688 | 689 | .fsr306 { 690 | font-size: 3.06rem; } 691 | 692 | .fsr308 { 693 | font-size: 3.08rem; } 694 | 695 | .fsr310 { 696 | font-size: 3.1rem; } 697 | 698 | .fsr312 { 699 | font-size: 3.12rem; } 700 | 701 | .fsr314 { 702 | font-size: 3.14rem; } 703 | 704 | .fsr316 { 705 | font-size: 3.16rem; } 706 | 707 | .fsr318 { 708 | font-size: 3.18rem; } 709 | 710 | .fsr320 { 711 | font-size: 3.2rem; } 712 | 713 | .fsr322 { 714 | font-size: 3.22rem; } 715 | 716 | .fsr324 { 717 | font-size: 3.24rem; } 718 | 719 | .fsr326 { 720 | font-size: 3.26rem; } 721 | 722 | .fsr328 { 723 | font-size: 3.28rem; } 724 | 725 | .fsr330 { 726 | font-size: 3.3rem; } 727 | 728 | .fsr332 { 729 | font-size: 3.32rem; } 730 | 731 | .fsr334 { 732 | font-size: 3.34rem; } 733 | 734 | .fsr336 { 735 | font-size: 3.36rem; } 736 | 737 | .fsr338 { 738 | font-size: 3.38rem; } 739 | 740 | .fsr340 { 741 | font-size: 3.4rem; } 742 | 743 | .fsr342 { 744 | font-size: 3.42rem; } 745 | 746 | .fsr344 { 747 | font-size: 3.44rem; } 748 | 749 | .fsr346 { 750 | font-size: 3.46rem; } 751 | 752 | .fsr348 { 753 | font-size: 3.48rem; } 754 | 755 | .fsr350 { 756 | font-size: 3.5rem; } 757 | 758 | .fsr352 { 759 | font-size: 3.52rem; } 760 | 761 | .fsr354 { 762 | font-size: 3.54rem; } 763 | 764 | .fsr356 { 765 | font-size: 3.56rem; } 766 | 767 | .fsr358 { 768 | font-size: 3.58rem; } 769 | 770 | .fsr360 { 771 | font-size: 3.6rem; } 772 | 773 | .fsr362 { 774 | font-size: 3.62rem; } 775 | 776 | .fsr364 { 777 | font-size: 3.64rem; } 778 | 779 | .fsr366 { 780 | font-size: 3.66rem; } 781 | 782 | .fsr368 { 783 | font-size: 3.68rem; } 784 | 785 | .fsr370 { 786 | font-size: 3.7rem; } 787 | 788 | .fsr372 { 789 | font-size: 3.72rem; } 790 | 791 | .fsr374 { 792 | font-size: 3.74rem; } 793 | 794 | .fsr376 { 795 | font-size: 3.76rem; } 796 | 797 | .fsr378 { 798 | font-size: 3.78rem; } 799 | 800 | .fsr380 { 801 | font-size: 3.8rem; } 802 | 803 | .fsr382 { 804 | font-size: 3.82rem; } 805 | 806 | .fsr384 { 807 | font-size: 3.84rem; } 808 | 809 | .fsr386 { 810 | font-size: 3.86rem; } 811 | 812 | .fsr388 { 813 | font-size: 3.88rem; } 814 | 815 | .fsr390 { 816 | font-size: 3.9rem; } 817 | 818 | .fsr392 { 819 | font-size: 3.92rem; } 820 | 821 | .fsr394 { 822 | font-size: 3.94rem; } 823 | 824 | .fsr396 { 825 | font-size: 3.96rem; } 826 | 827 | .fsr398 { 828 | font-size: 3.98rem; } 829 | 830 | .fsr400 { 831 | font-size: 4rem; } 832 | 833 | .fse2 { 834 | font-size: 0.02em; } 835 | 836 | .fse4 { 837 | font-size: 0.04em; } 838 | 839 | .fse6 { 840 | font-size: 0.06em; } 841 | 842 | .fse8 { 843 | font-size: 0.08em; } 844 | 845 | .fse10 { 846 | font-size: 0.1em; } 847 | 848 | .fse12 { 849 | font-size: 0.12em; } 850 | 851 | .fse14 { 852 | font-size: 0.14em; } 853 | 854 | .fse16 { 855 | font-size: 0.16em; } 856 | 857 | .fse18 { 858 | font-size: 0.18em; } 859 | 860 | .fse20 { 861 | font-size: 0.2em; } 862 | 863 | .fse22 { 864 | font-size: 0.22em; } 865 | 866 | .fse24 { 867 | font-size: 0.24em; } 868 | 869 | .fse26 { 870 | font-size: 0.26em; } 871 | 872 | .fse28 { 873 | font-size: 0.28em; } 874 | 875 | .fse30 { 876 | font-size: 0.3em; } 877 | 878 | .fse32 { 879 | font-size: 0.32em; } 880 | 881 | .fse34 { 882 | font-size: 0.34em; } 883 | 884 | .fse36 { 885 | font-size: 0.36em; } 886 | 887 | .fse38 { 888 | font-size: 0.38em; } 889 | 890 | .fse40 { 891 | font-size: 0.4em; } 892 | 893 | .fse42 { 894 | font-size: 0.42em; } 895 | 896 | .fse44 { 897 | font-size: 0.44em; } 898 | 899 | .fse46 { 900 | font-size: 0.46em; } 901 | 902 | .fse48 { 903 | font-size: 0.48em; } 904 | 905 | .fse50 { 906 | font-size: 0.5em; } 907 | 908 | .fse52 { 909 | font-size: 0.52em; } 910 | 911 | .fse54 { 912 | font-size: 0.54em; } 913 | 914 | .fse56 { 915 | font-size: 0.56em; } 916 | 917 | .fse58 { 918 | font-size: 0.58em; } 919 | 920 | .fse60 { 921 | font-size: 0.6em; } 922 | 923 | .fse62 { 924 | font-size: 0.62em; } 925 | 926 | .fse64 { 927 | font-size: 0.64em; } 928 | 929 | .fse66 { 930 | font-size: 0.66em; } 931 | 932 | .fse68 { 933 | font-size: 0.68em; } 934 | 935 | .fse70 { 936 | font-size: 0.7em; } 937 | 938 | .fse72 { 939 | font-size: 0.72em; } 940 | 941 | .fse74 { 942 | font-size: 0.74em; } 943 | 944 | .fse76 { 945 | font-size: 0.76em; } 946 | 947 | .fse78 { 948 | font-size: 0.78em; } 949 | 950 | .fse80 { 951 | font-size: 0.8em; } 952 | 953 | .fse82 { 954 | font-size: 0.82em; } 955 | 956 | .fse84 { 957 | font-size: 0.84em; } 958 | 959 | .fse86 { 960 | font-size: 0.86em; } 961 | 962 | .fse88 { 963 | font-size: 0.88em; } 964 | 965 | .fse90 { 966 | font-size: 0.9em; } 967 | 968 | .fse92 { 969 | font-size: 0.92em; } 970 | 971 | .fse94 { 972 | font-size: 0.94em; } 973 | 974 | .fse96 { 975 | font-size: 0.96em; } 976 | 977 | .fse98 { 978 | font-size: 0.98em; } 979 | 980 | .fse100 { 981 | font-size: 1em; } 982 | 983 | .fse102 { 984 | font-size: 1.02em; } 985 | 986 | .fse104 { 987 | font-size: 1.04em; } 988 | 989 | .fse106 { 990 | font-size: 1.06em; } 991 | 992 | .fse108 { 993 | font-size: 1.08em; } 994 | 995 | .fse110 { 996 | font-size: 1.1em; } 997 | 998 | .fse112 { 999 | font-size: 1.12em; } 1000 | 1001 | .fse114 { 1002 | font-size: 1.14em; } 1003 | 1004 | .fse116 { 1005 | font-size: 1.16em; } 1006 | 1007 | .fse118 { 1008 | font-size: 1.18em; } 1009 | 1010 | .fse120 { 1011 | font-size: 1.2em; } 1012 | 1013 | .fse122 { 1014 | font-size: 1.22em; } 1015 | 1016 | .fse124 { 1017 | font-size: 1.24em; } 1018 | 1019 | .fse126 { 1020 | font-size: 1.26em; } 1021 | 1022 | .fse128 { 1023 | font-size: 1.28em; } 1024 | 1025 | .fse130 { 1026 | font-size: 1.3em; } 1027 | 1028 | .fse132 { 1029 | font-size: 1.32em; } 1030 | 1031 | .fse134 { 1032 | font-size: 1.34em; } 1033 | 1034 | .fse136 { 1035 | font-size: 1.36em; } 1036 | 1037 | .fse138 { 1038 | font-size: 1.38em; } 1039 | 1040 | .fse140 { 1041 | font-size: 1.4em; } 1042 | 1043 | .fse142 { 1044 | font-size: 1.42em; } 1045 | 1046 | .fse144 { 1047 | font-size: 1.44em; } 1048 | 1049 | .fse146 { 1050 | font-size: 1.46em; } 1051 | 1052 | .fse148 { 1053 | font-size: 1.48em; } 1054 | 1055 | .fse150 { 1056 | font-size: 1.5em; } 1057 | 1058 | .fse152 { 1059 | font-size: 1.52em; } 1060 | 1061 | .fse154 { 1062 | font-size: 1.54em; } 1063 | 1064 | .fse156 { 1065 | font-size: 1.56em; } 1066 | 1067 | .fse158 { 1068 | font-size: 1.58em; } 1069 | 1070 | .fse160 { 1071 | font-size: 1.6em; } 1072 | 1073 | .fse162 { 1074 | font-size: 1.62em; } 1075 | 1076 | .fse164 { 1077 | font-size: 1.64em; } 1078 | 1079 | .fse166 { 1080 | font-size: 1.66em; } 1081 | 1082 | .fse168 { 1083 | font-size: 1.68em; } 1084 | 1085 | .fse170 { 1086 | font-size: 1.7em; } 1087 | 1088 | .fse172 { 1089 | font-size: 1.72em; } 1090 | 1091 | .fse174 { 1092 | font-size: 1.74em; } 1093 | 1094 | .fse176 { 1095 | font-size: 1.76em; } 1096 | 1097 | .fse178 { 1098 | font-size: 1.78em; } 1099 | 1100 | .fse180 { 1101 | font-size: 1.8em; } 1102 | 1103 | .fse182 { 1104 | font-size: 1.82em; } 1105 | 1106 | .fse184 { 1107 | font-size: 1.84em; } 1108 | 1109 | .fse186 { 1110 | font-size: 1.86em; } 1111 | 1112 | .fse188 { 1113 | font-size: 1.88em; } 1114 | 1115 | .fse190 { 1116 | font-size: 1.9em; } 1117 | 1118 | .fse192 { 1119 | font-size: 1.92em; } 1120 | 1121 | .fse194 { 1122 | font-size: 1.94em; } 1123 | 1124 | .fse196 { 1125 | font-size: 1.96em; } 1126 | 1127 | .fse198 { 1128 | font-size: 1.98em; } 1129 | 1130 | .fse200 { 1131 | font-size: 2em; } 1132 | 1133 | .fse202 { 1134 | font-size: 2.02em; } 1135 | 1136 | .fse204 { 1137 | font-size: 2.04em; } 1138 | 1139 | .fse206 { 1140 | font-size: 2.06em; } 1141 | 1142 | .fse208 { 1143 | font-size: 2.08em; } 1144 | 1145 | .fse210 { 1146 | font-size: 2.1em; } 1147 | 1148 | .fse212 { 1149 | font-size: 2.12em; } 1150 | 1151 | .fse214 { 1152 | font-size: 2.14em; } 1153 | 1154 | .fse216 { 1155 | font-size: 2.16em; } 1156 | 1157 | .fse218 { 1158 | font-size: 2.18em; } 1159 | 1160 | .fse220 { 1161 | font-size: 2.2em; } 1162 | 1163 | .fse222 { 1164 | font-size: 2.22em; } 1165 | 1166 | .fse224 { 1167 | font-size: 2.24em; } 1168 | 1169 | .fse226 { 1170 | font-size: 2.26em; } 1171 | 1172 | .fse228 { 1173 | font-size: 2.28em; } 1174 | 1175 | .fse230 { 1176 | font-size: 2.3em; } 1177 | 1178 | .fse232 { 1179 | font-size: 2.32em; } 1180 | 1181 | .fse234 { 1182 | font-size: 2.34em; } 1183 | 1184 | .fse236 { 1185 | font-size: 2.36em; } 1186 | 1187 | .fse238 { 1188 | font-size: 2.38em; } 1189 | 1190 | .fse240 { 1191 | font-size: 2.4em; } 1192 | 1193 | .fse242 { 1194 | font-size: 2.42em; } 1195 | 1196 | .fse244 { 1197 | font-size: 2.44em; } 1198 | 1199 | .fse246 { 1200 | font-size: 2.46em; } 1201 | 1202 | .fse248 { 1203 | font-size: 2.48em; } 1204 | 1205 | .fse250 { 1206 | font-size: 2.5em; } 1207 | 1208 | .fse252 { 1209 | font-size: 2.52em; } 1210 | 1211 | .fse254 { 1212 | font-size: 2.54em; } 1213 | 1214 | .fse256 { 1215 | font-size: 2.56em; } 1216 | 1217 | .fse258 { 1218 | font-size: 2.58em; } 1219 | 1220 | .fse260 { 1221 | font-size: 2.6em; } 1222 | 1223 | .fse262 { 1224 | font-size: 2.62em; } 1225 | 1226 | .fse264 { 1227 | font-size: 2.64em; } 1228 | 1229 | .fse266 { 1230 | font-size: 2.66em; } 1231 | 1232 | .fse268 { 1233 | font-size: 2.68em; } 1234 | 1235 | .fse270 { 1236 | font-size: 2.7em; } 1237 | 1238 | .fse272 { 1239 | font-size: 2.72em; } 1240 | 1241 | .fse274 { 1242 | font-size: 2.74em; } 1243 | 1244 | .fse276 { 1245 | font-size: 2.76em; } 1246 | 1247 | .fse278 { 1248 | font-size: 2.78em; } 1249 | 1250 | .fse280 { 1251 | font-size: 2.8em; } 1252 | 1253 | .fse282 { 1254 | font-size: 2.82em; } 1255 | 1256 | .fse284 { 1257 | font-size: 2.84em; } 1258 | 1259 | .fse286 { 1260 | font-size: 2.86em; } 1261 | 1262 | .fse288 { 1263 | font-size: 2.88em; } 1264 | 1265 | .fse290 { 1266 | font-size: 2.9em; } 1267 | 1268 | .fse292 { 1269 | font-size: 2.92em; } 1270 | 1271 | .fse294 { 1272 | font-size: 2.94em; } 1273 | 1274 | .fse296 { 1275 | font-size: 2.96em; } 1276 | 1277 | .fse298 { 1278 | font-size: 2.98em; } 1279 | 1280 | .fse300 { 1281 | font-size: 3em; } 1282 | 1283 | .fse302 { 1284 | font-size: 3.02em; } 1285 | 1286 | .fse304 { 1287 | font-size: 3.04em; } 1288 | 1289 | .fse306 { 1290 | font-size: 3.06em; } 1291 | 1292 | .fse308 { 1293 | font-size: 3.08em; } 1294 | 1295 | .fse310 { 1296 | font-size: 3.1em; } 1297 | 1298 | .fse312 { 1299 | font-size: 3.12em; } 1300 | 1301 | .fse314 { 1302 | font-size: 3.14em; } 1303 | 1304 | .fse316 { 1305 | font-size: 3.16em; } 1306 | 1307 | .fse318 { 1308 | font-size: 3.18em; } 1309 | 1310 | .fse320 { 1311 | font-size: 3.2em; } 1312 | 1313 | .fse322 { 1314 | font-size: 3.22em; } 1315 | 1316 | .fse324 { 1317 | font-size: 3.24em; } 1318 | 1319 | .fse326 { 1320 | font-size: 3.26em; } 1321 | 1322 | .fse328 { 1323 | font-size: 3.28em; } 1324 | 1325 | .fse330 { 1326 | font-size: 3.3em; } 1327 | 1328 | .fse332 { 1329 | font-size: 3.32em; } 1330 | 1331 | .fse334 { 1332 | font-size: 3.34em; } 1333 | 1334 | .fse336 { 1335 | font-size: 3.36em; } 1336 | 1337 | .fse338 { 1338 | font-size: 3.38em; } 1339 | 1340 | .fse340 { 1341 | font-size: 3.4em; } 1342 | 1343 | .fse342 { 1344 | font-size: 3.42em; } 1345 | 1346 | .fse344 { 1347 | font-size: 3.44em; } 1348 | 1349 | .fse346 { 1350 | font-size: 3.46em; } 1351 | 1352 | .fse348 { 1353 | font-size: 3.48em; } 1354 | 1355 | .fse350 { 1356 | font-size: 3.5em; } 1357 | 1358 | .fse352 { 1359 | font-size: 3.52em; } 1360 | 1361 | .fse354 { 1362 | font-size: 3.54em; } 1363 | 1364 | .fse356 { 1365 | font-size: 3.56em; } 1366 | 1367 | .fse358 { 1368 | font-size: 3.58em; } 1369 | 1370 | .fse360 { 1371 | font-size: 3.6em; } 1372 | 1373 | .fse362 { 1374 | font-size: 3.62em; } 1375 | 1376 | .fse364 { 1377 | font-size: 3.64em; } 1378 | 1379 | .fse366 { 1380 | font-size: 3.66em; } 1381 | 1382 | .fse368 { 1383 | font-size: 3.68em; } 1384 | 1385 | .fse370 { 1386 | font-size: 3.7em; } 1387 | 1388 | .fse372 { 1389 | font-size: 3.72em; } 1390 | 1391 | .fse374 { 1392 | font-size: 3.74em; } 1393 | 1394 | .fse376 { 1395 | font-size: 3.76em; } 1396 | 1397 | .fse378 { 1398 | font-size: 3.78em; } 1399 | 1400 | .fse380 { 1401 | font-size: 3.8em; } 1402 | 1403 | .fse382 { 1404 | font-size: 3.82em; } 1405 | 1406 | .fse384 { 1407 | font-size: 3.84em; } 1408 | 1409 | .fse386 { 1410 | font-size: 3.86em; } 1411 | 1412 | .fse388 { 1413 | font-size: 3.88em; } 1414 | 1415 | .fse390 { 1416 | font-size: 3.9em; } 1417 | 1418 | .fse392 { 1419 | font-size: 3.92em; } 1420 | 1421 | .fse394 { 1422 | font-size: 3.94em; } 1423 | 1424 | .fse396 { 1425 | font-size: 3.96em; } 1426 | 1427 | .fse398 { 1428 | font-size: 3.98em; } 1429 | 1430 | .fse400 { 1431 | font-size: 4em; } 1432 | 1433 | .w0 { 1434 | width: 0px; } 1435 | 1436 | .w2 { 1437 | width: 2px; } 1438 | 1439 | .w4 { 1440 | width: 4px; } 1441 | 1442 | .w6 { 1443 | width: 6px; } 1444 | 1445 | .w8 { 1446 | width: 8px; } 1447 | 1448 | .w10 { 1449 | width: 10px; } 1450 | 1451 | .w12 { 1452 | width: 12px; } 1453 | 1454 | .w14 { 1455 | width: 14px; } 1456 | 1457 | .w16 { 1458 | width: 16px; } 1459 | 1460 | .w18 { 1461 | width: 18px; } 1462 | 1463 | .w20 { 1464 | width: 20px; } 1465 | 1466 | .w22 { 1467 | width: 22px; } 1468 | 1469 | .w24 { 1470 | width: 24px; } 1471 | 1472 | .w26 { 1473 | width: 26px; } 1474 | 1475 | .w28 { 1476 | width: 28px; } 1477 | 1478 | .w30 { 1479 | width: 30px; } 1480 | 1481 | .w32 { 1482 | width: 32px; } 1483 | 1484 | .w34 { 1485 | width: 34px; } 1486 | 1487 | .w36 { 1488 | width: 36px; } 1489 | 1490 | .w38 { 1491 | width: 38px; } 1492 | 1493 | .w40 { 1494 | width: 40px; } 1495 | 1496 | .w42 { 1497 | width: 42px; } 1498 | 1499 | .w44 { 1500 | width: 44px; } 1501 | 1502 | .w46 { 1503 | width: 46px; } 1504 | 1505 | .w48 { 1506 | width: 48px; } 1507 | 1508 | .w50 { 1509 | width: 50px; } 1510 | 1511 | .w52 { 1512 | width: 52px; } 1513 | 1514 | .w54 { 1515 | width: 54px; } 1516 | 1517 | .w56 { 1518 | width: 56px; } 1519 | 1520 | .w58 { 1521 | width: 58px; } 1522 | 1523 | .w60 { 1524 | width: 60px; } 1525 | 1526 | .w62 { 1527 | width: 62px; } 1528 | 1529 | .w64 { 1530 | width: 64px; } 1531 | 1532 | .w66 { 1533 | width: 66px; } 1534 | 1535 | .w68 { 1536 | width: 68px; } 1537 | 1538 | .w70 { 1539 | width: 70px; } 1540 | 1541 | .w72 { 1542 | width: 72px; } 1543 | 1544 | .w74 { 1545 | width: 74px; } 1546 | 1547 | .w76 { 1548 | width: 76px; } 1549 | 1550 | .w78 { 1551 | width: 78px; } 1552 | 1553 | .w80 { 1554 | width: 80px; } 1555 | 1556 | .w82 { 1557 | width: 82px; } 1558 | 1559 | .w84 { 1560 | width: 84px; } 1561 | 1562 | .w86 { 1563 | width: 86px; } 1564 | 1565 | .w88 { 1566 | width: 88px; } 1567 | 1568 | .w90 { 1569 | width: 90px; } 1570 | 1571 | .w92 { 1572 | width: 92px; } 1573 | 1574 | .w94 { 1575 | width: 94px; } 1576 | 1577 | .w96 { 1578 | width: 96px; } 1579 | 1580 | .w98 { 1581 | width: 98px; } 1582 | 1583 | .w100 { 1584 | width: 100px; } 1585 | 1586 | .w102 { 1587 | width: 102px; } 1588 | 1589 | .w104 { 1590 | width: 104px; } 1591 | 1592 | .w106 { 1593 | width: 106px; } 1594 | 1595 | .w108 { 1596 | width: 108px; } 1597 | 1598 | .w110 { 1599 | width: 110px; } 1600 | 1601 | .w112 { 1602 | width: 112px; } 1603 | 1604 | .w114 { 1605 | width: 114px; } 1606 | 1607 | .w116 { 1608 | width: 116px; } 1609 | 1610 | .w118 { 1611 | width: 118px; } 1612 | 1613 | .w120 { 1614 | width: 120px; } 1615 | 1616 | .w122 { 1617 | width: 122px; } 1618 | 1619 | .w124 { 1620 | width: 124px; } 1621 | 1622 | .w126 { 1623 | width: 126px; } 1624 | 1625 | .w128 { 1626 | width: 128px; } 1627 | 1628 | .h0 { 1629 | height: 0px; } 1630 | 1631 | .h2 { 1632 | height: 2px; } 1633 | 1634 | .h4 { 1635 | height: 4px; } 1636 | 1637 | .h6 { 1638 | height: 6px; } 1639 | 1640 | .h8 { 1641 | height: 8px; } 1642 | 1643 | .h10 { 1644 | height: 10px; } 1645 | 1646 | .h12 { 1647 | height: 12px; } 1648 | 1649 | .h14 { 1650 | height: 14px; } 1651 | 1652 | .h16 { 1653 | height: 16px; } 1654 | 1655 | .h18 { 1656 | height: 18px; } 1657 | 1658 | .h20 { 1659 | height: 20px; } 1660 | 1661 | .h22 { 1662 | height: 22px; } 1663 | 1664 | .h24 { 1665 | height: 24px; } 1666 | 1667 | .h26 { 1668 | height: 26px; } 1669 | 1670 | .h28 { 1671 | height: 28px; } 1672 | 1673 | .h30 { 1674 | height: 30px; } 1675 | 1676 | .h32 { 1677 | height: 32px; } 1678 | 1679 | .h34 { 1680 | height: 34px; } 1681 | 1682 | .h36 { 1683 | height: 36px; } 1684 | 1685 | .h38 { 1686 | height: 38px; } 1687 | 1688 | .h40 { 1689 | height: 40px; } 1690 | 1691 | .h42 { 1692 | height: 42px; } 1693 | 1694 | .h44 { 1695 | height: 44px; } 1696 | 1697 | .h46 { 1698 | height: 46px; } 1699 | 1700 | .h48 { 1701 | height: 48px; } 1702 | 1703 | .h50 { 1704 | height: 50px; } 1705 | 1706 | .h52 { 1707 | height: 52px; } 1708 | 1709 | .h54 { 1710 | height: 54px; } 1711 | 1712 | .h56 { 1713 | height: 56px; } 1714 | 1715 | .h58 { 1716 | height: 58px; } 1717 | 1718 | .h60 { 1719 | height: 60px; } 1720 | 1721 | .h62 { 1722 | height: 62px; } 1723 | 1724 | .h64 { 1725 | height: 64px; } 1726 | 1727 | .h66 { 1728 | height: 66px; } 1729 | 1730 | .h68 { 1731 | height: 68px; } 1732 | 1733 | .h70 { 1734 | height: 70px; } 1735 | 1736 | .h72 { 1737 | height: 72px; } 1738 | 1739 | .h74 { 1740 | height: 74px; } 1741 | 1742 | .h76 { 1743 | height: 76px; } 1744 | 1745 | .h78 { 1746 | height: 78px; } 1747 | 1748 | .h80 { 1749 | height: 80px; } 1750 | 1751 | .h82 { 1752 | height: 82px; } 1753 | 1754 | .h84 { 1755 | height: 84px; } 1756 | 1757 | .h86 { 1758 | height: 86px; } 1759 | 1760 | .h88 { 1761 | height: 88px; } 1762 | 1763 | .h90 { 1764 | height: 90px; } 1765 | 1766 | .h92 { 1767 | height: 92px; } 1768 | 1769 | .h94 { 1770 | height: 94px; } 1771 | 1772 | .h96 { 1773 | height: 96px; } 1774 | 1775 | .h98 { 1776 | height: 98px; } 1777 | 1778 | .h100 { 1779 | height: 100px; } 1780 | 1781 | .h102 { 1782 | height: 102px; } 1783 | 1784 | .h104 { 1785 | height: 104px; } 1786 | 1787 | .h106 { 1788 | height: 106px; } 1789 | 1790 | .h108 { 1791 | height: 108px; } 1792 | 1793 | .h110 { 1794 | height: 110px; } 1795 | 1796 | .h112 { 1797 | height: 112px; } 1798 | 1799 | .h114 { 1800 | height: 114px; } 1801 | 1802 | .h116 { 1803 | height: 116px; } 1804 | 1805 | .h118 { 1806 | height: 118px; } 1807 | 1808 | .h120 { 1809 | height: 120px; } 1810 | 1811 | .h122 { 1812 | height: 122px; } 1813 | 1814 | .h124 { 1815 | height: 124px; } 1816 | 1817 | .h126 { 1818 | height: 126px; } 1819 | 1820 | .h128 { 1821 | height: 128px; } 1822 | 1823 | .wh0 { 1824 | width: 0px; 1825 | height: 0px; } 1826 | 1827 | .wh2 { 1828 | width: 2px; 1829 | height: 2px; } 1830 | 1831 | .wh4 { 1832 | width: 4px; 1833 | height: 4px; } 1834 | 1835 | .wh6 { 1836 | width: 6px; 1837 | height: 6px; } 1838 | 1839 | .wh8 { 1840 | width: 8px; 1841 | height: 8px; } 1842 | 1843 | .wh10 { 1844 | width: 10px; 1845 | height: 10px; } 1846 | 1847 | .wh12 { 1848 | width: 12px; 1849 | height: 12px; } 1850 | 1851 | .wh14 { 1852 | width: 14px; 1853 | height: 14px; } 1854 | 1855 | .wh16 { 1856 | width: 16px; 1857 | height: 16px; } 1858 | 1859 | .wh18 { 1860 | width: 18px; 1861 | height: 18px; } 1862 | 1863 | .wh20 { 1864 | width: 20px; 1865 | height: 20px; } 1866 | 1867 | .wh22 { 1868 | width: 22px; 1869 | height: 22px; } 1870 | 1871 | .wh24 { 1872 | width: 24px; 1873 | height: 24px; } 1874 | 1875 | .wh26 { 1876 | width: 26px; 1877 | height: 26px; } 1878 | 1879 | .wh28 { 1880 | width: 28px; 1881 | height: 28px; } 1882 | 1883 | .wh30 { 1884 | width: 30px; 1885 | height: 30px; } 1886 | 1887 | .wh32 { 1888 | width: 32px; 1889 | height: 32px; } 1890 | 1891 | .wh34 { 1892 | width: 34px; 1893 | height: 34px; } 1894 | 1895 | .wh36 { 1896 | width: 36px; 1897 | height: 36px; } 1898 | 1899 | .wh38 { 1900 | width: 38px; 1901 | height: 38px; } 1902 | 1903 | .wh40 { 1904 | width: 40px; 1905 | height: 40px; } 1906 | 1907 | .wh42 { 1908 | width: 42px; 1909 | height: 42px; } 1910 | 1911 | .wh44 { 1912 | width: 44px; 1913 | height: 44px; } 1914 | 1915 | .wh46 { 1916 | width: 46px; 1917 | height: 46px; } 1918 | 1919 | .wh48 { 1920 | width: 48px; 1921 | height: 48px; } 1922 | 1923 | .wh50 { 1924 | width: 50px; 1925 | height: 50px; } 1926 | 1927 | .wh52 { 1928 | width: 52px; 1929 | height: 52px; } 1930 | 1931 | .wh54 { 1932 | width: 54px; 1933 | height: 54px; } 1934 | 1935 | .wh56 { 1936 | width: 56px; 1937 | height: 56px; } 1938 | 1939 | .wh58 { 1940 | width: 58px; 1941 | height: 58px; } 1942 | 1943 | .wh60 { 1944 | width: 60px; 1945 | height: 60px; } 1946 | 1947 | .wh62 { 1948 | width: 62px; 1949 | height: 62px; } 1950 | 1951 | .wh64 { 1952 | width: 64px; 1953 | height: 64px; } 1954 | 1955 | .wh66 { 1956 | width: 66px; 1957 | height: 66px; } 1958 | 1959 | .wh68 { 1960 | width: 68px; 1961 | height: 68px; } 1962 | 1963 | .wh70 { 1964 | width: 70px; 1965 | height: 70px; } 1966 | 1967 | .wh72 { 1968 | width: 72px; 1969 | height: 72px; } 1970 | 1971 | .wh74 { 1972 | width: 74px; 1973 | height: 74px; } 1974 | 1975 | .wh76 { 1976 | width: 76px; 1977 | height: 76px; } 1978 | 1979 | .wh78 { 1980 | width: 78px; 1981 | height: 78px; } 1982 | 1983 | .wh80 { 1984 | width: 80px; 1985 | height: 80px; } 1986 | 1987 | .wh82 { 1988 | width: 82px; 1989 | height: 82px; } 1990 | 1991 | .wh84 { 1992 | width: 84px; 1993 | height: 84px; } 1994 | 1995 | .wh86 { 1996 | width: 86px; 1997 | height: 86px; } 1998 | 1999 | .wh88 { 2000 | width: 88px; 2001 | height: 88px; } 2002 | 2003 | .wh90 { 2004 | width: 90px; 2005 | height: 90px; } 2006 | 2007 | .wh92 { 2008 | width: 92px; 2009 | height: 92px; } 2010 | 2011 | .wh94 { 2012 | width: 94px; 2013 | height: 94px; } 2014 | 2015 | .wh96 { 2016 | width: 96px; 2017 | height: 96px; } 2018 | 2019 | .wh98 { 2020 | width: 98px; 2021 | height: 98px; } 2022 | 2023 | .wh100 { 2024 | width: 100px; 2025 | height: 100px; } 2026 | 2027 | .wh102 { 2028 | width: 102px; 2029 | height: 102px; } 2030 | 2031 | .wh104 { 2032 | width: 104px; 2033 | height: 104px; } 2034 | 2035 | .wh106 { 2036 | width: 106px; 2037 | height: 106px; } 2038 | 2039 | .wh108 { 2040 | width: 108px; 2041 | height: 108px; } 2042 | 2043 | .wh110 { 2044 | width: 110px; 2045 | height: 110px; } 2046 | 2047 | .wh112 { 2048 | width: 112px; 2049 | height: 112px; } 2050 | 2051 | .wh114 { 2052 | width: 114px; 2053 | height: 114px; } 2054 | 2055 | .wh116 { 2056 | width: 116px; 2057 | height: 116px; } 2058 | 2059 | .wh118 { 2060 | width: 118px; 2061 | height: 118px; } 2062 | 2063 | .wh120 { 2064 | width: 120px; 2065 | height: 120px; } 2066 | 2067 | .wh122 { 2068 | width: 122px; 2069 | height: 122px; } 2070 | 2071 | .wh124 { 2072 | width: 124px; 2073 | height: 124px; } 2074 | 2075 | .wh126 { 2076 | width: 126px; 2077 | height: 126px; } 2078 | 2079 | .wh128 { 2080 | width: 128px; 2081 | height: 128px; } 2082 | 2083 | .w0p { 2084 | width: 0%; } 2085 | 2086 | .w5p { 2087 | width: 5%; } 2088 | 2089 | .w10p { 2090 | width: 10%; } 2091 | 2092 | .w15p { 2093 | width: 15%; } 2094 | 2095 | .w20p { 2096 | width: 20%; } 2097 | 2098 | .w25p { 2099 | width: 25%; } 2100 | 2101 | .w30p { 2102 | width: 30%; } 2103 | 2104 | .w35p { 2105 | width: 35%; } 2106 | 2107 | .w40p { 2108 | width: 40%; } 2109 | 2110 | .w45p { 2111 | width: 45%; } 2112 | 2113 | .w50p { 2114 | width: 50%; } 2115 | 2116 | .w55p { 2117 | width: 55%; } 2118 | 2119 | .w60p { 2120 | width: 60%; } 2121 | 2122 | .w65p { 2123 | width: 65%; } 2124 | 2125 | .w70p { 2126 | width: 70%; } 2127 | 2128 | .w75p { 2129 | width: 75%; } 2130 | 2131 | .w80p { 2132 | width: 80%; } 2133 | 2134 | .w85p { 2135 | width: 85%; } 2136 | 2137 | .w90p { 2138 | width: 90%; } 2139 | 2140 | .w95p { 2141 | width: 95%; } 2142 | 2143 | .w100p { 2144 | width: 100%; } 2145 | 2146 | .h0p { 2147 | height: 0%; } 2148 | 2149 | .h5p { 2150 | height: 5%; } 2151 | 2152 | .h10p { 2153 | height: 10%; } 2154 | 2155 | .h15p { 2156 | height: 15%; } 2157 | 2158 | .h20p { 2159 | height: 20%; } 2160 | 2161 | .h25p { 2162 | height: 25%; } 2163 | 2164 | .h30p { 2165 | height: 30%; } 2166 | 2167 | .h35p { 2168 | height: 35%; } 2169 | 2170 | .h40p { 2171 | height: 40%; } 2172 | 2173 | .h45p { 2174 | height: 45%; } 2175 | 2176 | .h50p { 2177 | height: 50%; } 2178 | 2179 | .h55p { 2180 | height: 55%; } 2181 | 2182 | .h60p { 2183 | height: 60%; } 2184 | 2185 | .h65p { 2186 | height: 65%; } 2187 | 2188 | .h70p { 2189 | height: 70%; } 2190 | 2191 | .h75p { 2192 | height: 75%; } 2193 | 2194 | .h80p { 2195 | height: 80%; } 2196 | 2197 | .h85p { 2198 | height: 85%; } 2199 | 2200 | .h90p { 2201 | height: 90%; } 2202 | 2203 | .h95p { 2204 | height: 95%; } 2205 | 2206 | .h100p { 2207 | height: 100%; } 2208 | 2209 | .wh0p { 2210 | width: 0%; 2211 | height: 0%; } 2212 | 2213 | .wh5p { 2214 | width: 5%; 2215 | height: 5%; } 2216 | 2217 | .wh10p { 2218 | width: 10%; 2219 | height: 10%; } 2220 | 2221 | .wh15p { 2222 | width: 15%; 2223 | height: 15%; } 2224 | 2225 | .wh20p { 2226 | width: 20%; 2227 | height: 20%; } 2228 | 2229 | .wh25p { 2230 | width: 25%; 2231 | height: 25%; } 2232 | 2233 | .wh30p { 2234 | width: 30%; 2235 | height: 30%; } 2236 | 2237 | .wh35p { 2238 | width: 35%; 2239 | height: 35%; } 2240 | 2241 | .wh40p { 2242 | width: 40%; 2243 | height: 40%; } 2244 | 2245 | .wh45p { 2246 | width: 45%; 2247 | height: 45%; } 2248 | 2249 | .wh50p { 2250 | width: 50%; 2251 | height: 50%; } 2252 | 2253 | .wh55p { 2254 | width: 55%; 2255 | height: 55%; } 2256 | 2257 | .wh60p { 2258 | width: 60%; 2259 | height: 60%; } 2260 | 2261 | .wh65p { 2262 | width: 65%; 2263 | height: 65%; } 2264 | 2265 | .wh70p { 2266 | width: 70%; 2267 | height: 70%; } 2268 | 2269 | .wh75p { 2270 | width: 75%; 2271 | height: 75%; } 2272 | 2273 | .wh80p { 2274 | width: 80%; 2275 | height: 80%; } 2276 | 2277 | .wh85p { 2278 | width: 85%; 2279 | height: 85%; } 2280 | 2281 | .wh90p { 2282 | width: 90%; 2283 | height: 90%; } 2284 | 2285 | .wh95p { 2286 | width: 95%; 2287 | height: 95%; } 2288 | 2289 | .wh100p { 2290 | width: 100%; 2291 | height: 100%; } 2292 | 2293 | .vw0 { 2294 | width: 0vw; } 2295 | 2296 | .vw5 { 2297 | width: 5vw; } 2298 | 2299 | .vw10 { 2300 | width: 10vw; } 2301 | 2302 | .vw15 { 2303 | width: 15vw; } 2304 | 2305 | .vw20 { 2306 | width: 20vw; } 2307 | 2308 | .vw25 { 2309 | width: 25vw; } 2310 | 2311 | .vw30 { 2312 | width: 30vw; } 2313 | 2314 | .vw35 { 2315 | width: 35vw; } 2316 | 2317 | .vw40 { 2318 | width: 40vw; } 2319 | 2320 | .vw45 { 2321 | width: 45vw; } 2322 | 2323 | .vw50 { 2324 | width: 50vw; } 2325 | 2326 | .vw55 { 2327 | width: 55vw; } 2328 | 2329 | .vw60 { 2330 | width: 60vw; } 2331 | 2332 | .vw65 { 2333 | width: 65vw; } 2334 | 2335 | .vw70 { 2336 | width: 70vw; } 2337 | 2338 | .vw75 { 2339 | width: 75vw; } 2340 | 2341 | .vw80 { 2342 | width: 80vw; } 2343 | 2344 | .vw85 { 2345 | width: 85vw; } 2346 | 2347 | .vw90 { 2348 | width: 90vw; } 2349 | 2350 | .vw95 { 2351 | width: 95vw; } 2352 | 2353 | .vw100 { 2354 | width: 100vw; } 2355 | 2356 | .vh0 { 2357 | height: 0vh; } 2358 | 2359 | .vh5 { 2360 | height: 5vh; } 2361 | 2362 | .vh10 { 2363 | height: 10vh; } 2364 | 2365 | .vh15 { 2366 | height: 15vh; } 2367 | 2368 | .vh20 { 2369 | height: 20vh; } 2370 | 2371 | .vh25 { 2372 | height: 25vh; } 2373 | 2374 | .vh30 { 2375 | height: 30vh; } 2376 | 2377 | .vh35 { 2378 | height: 35vh; } 2379 | 2380 | .vh40 { 2381 | height: 40vh; } 2382 | 2383 | .vh45 { 2384 | height: 45vh; } 2385 | 2386 | .vh50 { 2387 | height: 50vh; } 2388 | 2389 | .vh55 { 2390 | height: 55vh; } 2391 | 2392 | .vh60 { 2393 | height: 60vh; } 2394 | 2395 | .vh65 { 2396 | height: 65vh; } 2397 | 2398 | .vh70 { 2399 | height: 70vh; } 2400 | 2401 | .vh75 { 2402 | height: 75vh; } 2403 | 2404 | .vh80 { 2405 | height: 80vh; } 2406 | 2407 | .vh85 { 2408 | height: 85vh; } 2409 | 2410 | .vh90 { 2411 | height: 90vh; } 2412 | 2413 | .vh95 { 2414 | height: 95vh; } 2415 | 2416 | .vh100 { 2417 | height: 100vh; } 2418 | 2419 | .vwh0 { 2420 | width: 0vw; 2421 | height: 0vh; } 2422 | 2423 | .vwh5 { 2424 | width: 5vw; 2425 | height: 5vh; } 2426 | 2427 | .vwh10 { 2428 | width: 10vw; 2429 | height: 10vh; } 2430 | 2431 | .vwh15 { 2432 | width: 15vw; 2433 | height: 15vh; } 2434 | 2435 | .vwh20 { 2436 | width: 20vw; 2437 | height: 20vh; } 2438 | 2439 | .vwh25 { 2440 | width: 25vw; 2441 | height: 25vh; } 2442 | 2443 | .vwh30 { 2444 | width: 30vw; 2445 | height: 30vh; } 2446 | 2447 | .vwh35 { 2448 | width: 35vw; 2449 | height: 35vh; } 2450 | 2451 | .vwh40 { 2452 | width: 40vw; 2453 | height: 40vh; } 2454 | 2455 | .vwh45 { 2456 | width: 45vw; 2457 | height: 45vh; } 2458 | 2459 | .vwh50 { 2460 | width: 50vw; 2461 | height: 50vh; } 2462 | 2463 | .vwh55 { 2464 | width: 55vw; 2465 | height: 55vh; } 2466 | 2467 | .vwh60 { 2468 | width: 60vw; 2469 | height: 60vh; } 2470 | 2471 | .vwh65 { 2472 | width: 65vw; 2473 | height: 65vh; } 2474 | 2475 | .vwh70 { 2476 | width: 70vw; 2477 | height: 70vh; } 2478 | 2479 | .vwh75 { 2480 | width: 75vw; 2481 | height: 75vh; } 2482 | 2483 | .vwh80 { 2484 | width: 80vw; 2485 | height: 80vh; } 2486 | 2487 | .vwh85 { 2488 | width: 85vw; 2489 | height: 85vh; } 2490 | 2491 | .vwh90 { 2492 | width: 90vw; 2493 | height: 90vh; } 2494 | 2495 | .vwh95 { 2496 | width: 95vw; 2497 | height: 95vh; } 2498 | 2499 | .vwh100 { 2500 | width: 100vw; 2501 | height: 100vh; } 2502 | 2503 | .w0r { 2504 | width: 0rem; } 2505 | 2506 | .w5r { 2507 | width: 0.05rem; } 2508 | 2509 | .w10r { 2510 | width: 0.1rem; } 2511 | 2512 | .w15r { 2513 | width: 0.15rem; } 2514 | 2515 | .w20r { 2516 | width: 0.2rem; } 2517 | 2518 | .w25r { 2519 | width: 0.25rem; } 2520 | 2521 | .w30r { 2522 | width: 0.3rem; } 2523 | 2524 | .w35r { 2525 | width: 0.35rem; } 2526 | 2527 | .w40r { 2528 | width: 0.4rem; } 2529 | 2530 | .w45r { 2531 | width: 0.45rem; } 2532 | 2533 | .w50r { 2534 | width: 0.5rem; } 2535 | 2536 | .w55r { 2537 | width: 0.55rem; } 2538 | 2539 | .w60r { 2540 | width: 0.6rem; } 2541 | 2542 | .w65r { 2543 | width: 0.65rem; } 2544 | 2545 | .w70r { 2546 | width: 0.7rem; } 2547 | 2548 | .w75r { 2549 | width: 0.75rem; } 2550 | 2551 | .w80r { 2552 | width: 0.8rem; } 2553 | 2554 | .w85r { 2555 | width: 0.85rem; } 2556 | 2557 | .w90r { 2558 | width: 0.9rem; } 2559 | 2560 | .w95r { 2561 | width: 0.95rem; } 2562 | 2563 | .w100r { 2564 | width: 1rem; } 2565 | 2566 | .w105r { 2567 | width: 1.05rem; } 2568 | 2569 | .w110r { 2570 | width: 1.1rem; } 2571 | 2572 | .w115r { 2573 | width: 1.15rem; } 2574 | 2575 | .w120r { 2576 | width: 1.2rem; } 2577 | 2578 | .w125r { 2579 | width: 1.25rem; } 2580 | 2581 | .w130r { 2582 | width: 1.3rem; } 2583 | 2584 | .w135r { 2585 | width: 1.35rem; } 2586 | 2587 | .w140r { 2588 | width: 1.4rem; } 2589 | 2590 | .w145r { 2591 | width: 1.45rem; } 2592 | 2593 | .w150r { 2594 | width: 1.5rem; } 2595 | 2596 | .w155r { 2597 | width: 1.55rem; } 2598 | 2599 | .w160r { 2600 | width: 1.6rem; } 2601 | 2602 | .w165r { 2603 | width: 1.65rem; } 2604 | 2605 | .w170r { 2606 | width: 1.7rem; } 2607 | 2608 | .w175r { 2609 | width: 1.75rem; } 2610 | 2611 | .w180r { 2612 | width: 1.8rem; } 2613 | 2614 | .w185r { 2615 | width: 1.85rem; } 2616 | 2617 | .w190r { 2618 | width: 1.9rem; } 2619 | 2620 | .w195r { 2621 | width: 1.95rem; } 2622 | 2623 | .w200r { 2624 | width: 2rem; } 2625 | 2626 | .w205r { 2627 | width: 2.05rem; } 2628 | 2629 | .w210r { 2630 | width: 2.1rem; } 2631 | 2632 | .w215r { 2633 | width: 2.15rem; } 2634 | 2635 | .w220r { 2636 | width: 2.2rem; } 2637 | 2638 | .w225r { 2639 | width: 2.25rem; } 2640 | 2641 | .w230r { 2642 | width: 2.3rem; } 2643 | 2644 | .w235r { 2645 | width: 2.35rem; } 2646 | 2647 | .w240r { 2648 | width: 2.4rem; } 2649 | 2650 | .w245r { 2651 | width: 2.45rem; } 2652 | 2653 | .w250r { 2654 | width: 2.5rem; } 2655 | 2656 | .w255r { 2657 | width: 2.55rem; } 2658 | 2659 | .w260r { 2660 | width: 2.6rem; } 2661 | 2662 | .w265r { 2663 | width: 2.65rem; } 2664 | 2665 | .w270r { 2666 | width: 2.7rem; } 2667 | 2668 | .w275r { 2669 | width: 2.75rem; } 2670 | 2671 | .w280r { 2672 | width: 2.8rem; } 2673 | 2674 | .w285r { 2675 | width: 2.85rem; } 2676 | 2677 | .w290r { 2678 | width: 2.9rem; } 2679 | 2680 | .w295r { 2681 | width: 2.95rem; } 2682 | 2683 | .w300r { 2684 | width: 3rem; } 2685 | 2686 | .w305r { 2687 | width: 3.05rem; } 2688 | 2689 | .w310r { 2690 | width: 3.1rem; } 2691 | 2692 | .w315r { 2693 | width: 3.15rem; } 2694 | 2695 | .w320r { 2696 | width: 3.2rem; } 2697 | 2698 | .w325r { 2699 | width: 3.25rem; } 2700 | 2701 | .w330r { 2702 | width: 3.3rem; } 2703 | 2704 | .w335r { 2705 | width: 3.35rem; } 2706 | 2707 | .w340r { 2708 | width: 3.4rem; } 2709 | 2710 | .w345r { 2711 | width: 3.45rem; } 2712 | 2713 | .w350r { 2714 | width: 3.5rem; } 2715 | 2716 | .w355r { 2717 | width: 3.55rem; } 2718 | 2719 | .w360r { 2720 | width: 3.6rem; } 2721 | 2722 | .w365r { 2723 | width: 3.65rem; } 2724 | 2725 | .w370r { 2726 | width: 3.7rem; } 2727 | 2728 | .w375r { 2729 | width: 3.75rem; } 2730 | 2731 | .w380r { 2732 | width: 3.8rem; } 2733 | 2734 | .w385r { 2735 | width: 3.85rem; } 2736 | 2737 | .w390r { 2738 | width: 3.9rem; } 2739 | 2740 | .w395r { 2741 | width: 3.95rem; } 2742 | 2743 | .w400r { 2744 | width: 4rem; } 2745 | 2746 | .h0r { 2747 | height: 0rem; } 2748 | 2749 | .h5r { 2750 | height: 0.05rem; } 2751 | 2752 | .h10r { 2753 | height: 0.1rem; } 2754 | 2755 | .h15r { 2756 | height: 0.15rem; } 2757 | 2758 | .h20r { 2759 | height: 0.2rem; } 2760 | 2761 | .h25r { 2762 | height: 0.25rem; } 2763 | 2764 | .h30r { 2765 | height: 0.3rem; } 2766 | 2767 | .h35r { 2768 | height: 0.35rem; } 2769 | 2770 | .h40r { 2771 | height: 0.4rem; } 2772 | 2773 | .h45r { 2774 | height: 0.45rem; } 2775 | 2776 | .h50r { 2777 | height: 0.5rem; } 2778 | 2779 | .h55r { 2780 | height: 0.55rem; } 2781 | 2782 | .h60r { 2783 | height: 0.6rem; } 2784 | 2785 | .h65r { 2786 | height: 0.65rem; } 2787 | 2788 | .h70r { 2789 | height: 0.7rem; } 2790 | 2791 | .h75r { 2792 | height: 0.75rem; } 2793 | 2794 | .h80r { 2795 | height: 0.8rem; } 2796 | 2797 | .h85r { 2798 | height: 0.85rem; } 2799 | 2800 | .h90r { 2801 | height: 0.9rem; } 2802 | 2803 | .h95r { 2804 | height: 0.95rem; } 2805 | 2806 | .h100r { 2807 | height: 1rem; } 2808 | 2809 | .h105r { 2810 | height: 1.05rem; } 2811 | 2812 | .h110r { 2813 | height: 1.1rem; } 2814 | 2815 | .h115r { 2816 | height: 1.15rem; } 2817 | 2818 | .h120r { 2819 | height: 1.2rem; } 2820 | 2821 | .h125r { 2822 | height: 1.25rem; } 2823 | 2824 | .h130r { 2825 | height: 1.3rem; } 2826 | 2827 | .h135r { 2828 | height: 1.35rem; } 2829 | 2830 | .h140r { 2831 | height: 1.4rem; } 2832 | 2833 | .h145r { 2834 | height: 1.45rem; } 2835 | 2836 | .h150r { 2837 | height: 1.5rem; } 2838 | 2839 | .h155r { 2840 | height: 1.55rem; } 2841 | 2842 | .h160r { 2843 | height: 1.6rem; } 2844 | 2845 | .h165r { 2846 | height: 1.65rem; } 2847 | 2848 | .h170r { 2849 | height: 1.7rem; } 2850 | 2851 | .h175r { 2852 | height: 1.75rem; } 2853 | 2854 | .h180r { 2855 | height: 1.8rem; } 2856 | 2857 | .h185r { 2858 | height: 1.85rem; } 2859 | 2860 | .h190r { 2861 | height: 1.9rem; } 2862 | 2863 | .h195r { 2864 | height: 1.95rem; } 2865 | 2866 | .h200r { 2867 | height: 2rem; } 2868 | 2869 | .h205r { 2870 | height: 2.05rem; } 2871 | 2872 | .h210r { 2873 | height: 2.1rem; } 2874 | 2875 | .h215r { 2876 | height: 2.15rem; } 2877 | 2878 | .h220r { 2879 | height: 2.2rem; } 2880 | 2881 | .h225r { 2882 | height: 2.25rem; } 2883 | 2884 | .h230r { 2885 | height: 2.3rem; } 2886 | 2887 | .h235r { 2888 | height: 2.35rem; } 2889 | 2890 | .h240r { 2891 | height: 2.4rem; } 2892 | 2893 | .h245r { 2894 | height: 2.45rem; } 2895 | 2896 | .h250r { 2897 | height: 2.5rem; } 2898 | 2899 | .h255r { 2900 | height: 2.55rem; } 2901 | 2902 | .h260r { 2903 | height: 2.6rem; } 2904 | 2905 | .h265r { 2906 | height: 2.65rem; } 2907 | 2908 | .h270r { 2909 | height: 2.7rem; } 2910 | 2911 | .h275r { 2912 | height: 2.75rem; } 2913 | 2914 | .h280r { 2915 | height: 2.8rem; } 2916 | 2917 | .h285r { 2918 | height: 2.85rem; } 2919 | 2920 | .h290r { 2921 | height: 2.9rem; } 2922 | 2923 | .h295r { 2924 | height: 2.95rem; } 2925 | 2926 | .h300r { 2927 | height: 3rem; } 2928 | 2929 | .h305r { 2930 | height: 3.05rem; } 2931 | 2932 | .h310r { 2933 | height: 3.1rem; } 2934 | 2935 | .h315r { 2936 | height: 3.15rem; } 2937 | 2938 | .h320r { 2939 | height: 3.2rem; } 2940 | 2941 | .h325r { 2942 | height: 3.25rem; } 2943 | 2944 | .h330r { 2945 | height: 3.3rem; } 2946 | 2947 | .h335r { 2948 | height: 3.35rem; } 2949 | 2950 | .h340r { 2951 | height: 3.4rem; } 2952 | 2953 | .h345r { 2954 | height: 3.45rem; } 2955 | 2956 | .h350r { 2957 | height: 3.5rem; } 2958 | 2959 | .h355r { 2960 | height: 3.55rem; } 2961 | 2962 | .h360r { 2963 | height: 3.6rem; } 2964 | 2965 | .h365r { 2966 | height: 3.65rem; } 2967 | 2968 | .h370r { 2969 | height: 3.7rem; } 2970 | 2971 | .h375r { 2972 | height: 3.75rem; } 2973 | 2974 | .h380r { 2975 | height: 3.8rem; } 2976 | 2977 | .h385r { 2978 | height: 3.85rem; } 2979 | 2980 | .h390r { 2981 | height: 3.9rem; } 2982 | 2983 | .h395r { 2984 | height: 3.95rem; } 2985 | 2986 | .h400r { 2987 | height: 4rem; } 2988 | 2989 | .wh0r { 2990 | width: 0rem; 2991 | height: 0rem; } 2992 | 2993 | .wh5r { 2994 | width: 0.05rem; 2995 | height: 0.05rem; } 2996 | 2997 | .wh10r { 2998 | width: 0.1rem; 2999 | height: 0.1rem; } 3000 | 3001 | .wh15r { 3002 | width: 0.15rem; 3003 | height: 0.15rem; } 3004 | 3005 | .wh20r { 3006 | width: 0.2rem; 3007 | height: 0.2rem; } 3008 | 3009 | .wh25r { 3010 | width: 0.25rem; 3011 | height: 0.25rem; } 3012 | 3013 | .wh30r { 3014 | width: 0.3rem; 3015 | height: 0.3rem; } 3016 | 3017 | .wh35r { 3018 | width: 0.35rem; 3019 | height: 0.35rem; } 3020 | 3021 | .wh40r { 3022 | width: 0.4rem; 3023 | height: 0.4rem; } 3024 | 3025 | .wh45r { 3026 | width: 0.45rem; 3027 | height: 0.45rem; } 3028 | 3029 | .wh50r { 3030 | width: 0.5rem; 3031 | height: 0.5rem; } 3032 | 3033 | .wh55r { 3034 | width: 0.55rem; 3035 | height: 0.55rem; } 3036 | 3037 | .wh60r { 3038 | width: 0.6rem; 3039 | height: 0.6rem; } 3040 | 3041 | .wh65r { 3042 | width: 0.65rem; 3043 | height: 0.65rem; } 3044 | 3045 | .wh70r { 3046 | width: 0.7rem; 3047 | height: 0.7rem; } 3048 | 3049 | .wh75r { 3050 | width: 0.75rem; 3051 | height: 0.75rem; } 3052 | 3053 | .wh80r { 3054 | width: 0.8rem; 3055 | height: 0.8rem; } 3056 | 3057 | .wh85r { 3058 | width: 0.85rem; 3059 | height: 0.85rem; } 3060 | 3061 | .wh90r { 3062 | width: 0.9rem; 3063 | height: 0.9rem; } 3064 | 3065 | .wh95r { 3066 | width: 0.95rem; 3067 | height: 0.95rem; } 3068 | 3069 | .wh100r { 3070 | width: 1rem; 3071 | height: 1rem; } 3072 | 3073 | .wh105r { 3074 | width: 1.05rem; 3075 | height: 1.05rem; } 3076 | 3077 | .wh110r { 3078 | width: 1.1rem; 3079 | height: 1.1rem; } 3080 | 3081 | .wh115r { 3082 | width: 1.15rem; 3083 | height: 1.15rem; } 3084 | 3085 | .wh120r { 3086 | width: 1.2rem; 3087 | height: 1.2rem; } 3088 | 3089 | .wh125r { 3090 | width: 1.25rem; 3091 | height: 1.25rem; } 3092 | 3093 | .wh130r { 3094 | width: 1.3rem; 3095 | height: 1.3rem; } 3096 | 3097 | .wh135r { 3098 | width: 1.35rem; 3099 | height: 1.35rem; } 3100 | 3101 | .wh140r { 3102 | width: 1.4rem; 3103 | height: 1.4rem; } 3104 | 3105 | .wh145r { 3106 | width: 1.45rem; 3107 | height: 1.45rem; } 3108 | 3109 | .wh150r { 3110 | width: 1.5rem; 3111 | height: 1.5rem; } 3112 | 3113 | .wh155r { 3114 | width: 1.55rem; 3115 | height: 1.55rem; } 3116 | 3117 | .wh160r { 3118 | width: 1.6rem; 3119 | height: 1.6rem; } 3120 | 3121 | .wh165r { 3122 | width: 1.65rem; 3123 | height: 1.65rem; } 3124 | 3125 | .wh170r { 3126 | width: 1.7rem; 3127 | height: 1.7rem; } 3128 | 3129 | .wh175r { 3130 | width: 1.75rem; 3131 | height: 1.75rem; } 3132 | 3133 | .wh180r { 3134 | width: 1.8rem; 3135 | height: 1.8rem; } 3136 | 3137 | .wh185r { 3138 | width: 1.85rem; 3139 | height: 1.85rem; } 3140 | 3141 | .wh190r { 3142 | width: 1.9rem; 3143 | height: 1.9rem; } 3144 | 3145 | .wh195r { 3146 | width: 1.95rem; 3147 | height: 1.95rem; } 3148 | 3149 | .wh200r { 3150 | width: 2rem; 3151 | height: 2rem; } 3152 | 3153 | .wh205r { 3154 | width: 2.05rem; 3155 | height: 2.05rem; } 3156 | 3157 | .wh210r { 3158 | width: 2.1rem; 3159 | height: 2.1rem; } 3160 | 3161 | .wh215r { 3162 | width: 2.15rem; 3163 | height: 2.15rem; } 3164 | 3165 | .wh220r { 3166 | width: 2.2rem; 3167 | height: 2.2rem; } 3168 | 3169 | .wh225r { 3170 | width: 2.25rem; 3171 | height: 2.25rem; } 3172 | 3173 | .wh230r { 3174 | width: 2.3rem; 3175 | height: 2.3rem; } 3176 | 3177 | .wh235r { 3178 | width: 2.35rem; 3179 | height: 2.35rem; } 3180 | 3181 | .wh240r { 3182 | width: 2.4rem; 3183 | height: 2.4rem; } 3184 | 3185 | .wh245r { 3186 | width: 2.45rem; 3187 | height: 2.45rem; } 3188 | 3189 | .wh250r { 3190 | width: 2.5rem; 3191 | height: 2.5rem; } 3192 | 3193 | .wh255r { 3194 | width: 2.55rem; 3195 | height: 2.55rem; } 3196 | 3197 | .wh260r { 3198 | width: 2.6rem; 3199 | height: 2.6rem; } 3200 | 3201 | .wh265r { 3202 | width: 2.65rem; 3203 | height: 2.65rem; } 3204 | 3205 | .wh270r { 3206 | width: 2.7rem; 3207 | height: 2.7rem; } 3208 | 3209 | .wh275r { 3210 | width: 2.75rem; 3211 | height: 2.75rem; } 3212 | 3213 | .wh280r { 3214 | width: 2.8rem; 3215 | height: 2.8rem; } 3216 | 3217 | .wh285r { 3218 | width: 2.85rem; 3219 | height: 2.85rem; } 3220 | 3221 | .wh290r { 3222 | width: 2.9rem; 3223 | height: 2.9rem; } 3224 | 3225 | .wh295r { 3226 | width: 2.95rem; 3227 | height: 2.95rem; } 3228 | 3229 | .wh300r { 3230 | width: 3rem; 3231 | height: 3rem; } 3232 | 3233 | .wh305r { 3234 | width: 3.05rem; 3235 | height: 3.05rem; } 3236 | 3237 | .wh310r { 3238 | width: 3.1rem; 3239 | height: 3.1rem; } 3240 | 3241 | .wh315r { 3242 | width: 3.15rem; 3243 | height: 3.15rem; } 3244 | 3245 | .wh320r { 3246 | width: 3.2rem; 3247 | height: 3.2rem; } 3248 | 3249 | .wh325r { 3250 | width: 3.25rem; 3251 | height: 3.25rem; } 3252 | 3253 | .wh330r { 3254 | width: 3.3rem; 3255 | height: 3.3rem; } 3256 | 3257 | .wh335r { 3258 | width: 3.35rem; 3259 | height: 3.35rem; } 3260 | 3261 | .wh340r { 3262 | width: 3.4rem; 3263 | height: 3.4rem; } 3264 | 3265 | .wh345r { 3266 | width: 3.45rem; 3267 | height: 3.45rem; } 3268 | 3269 | .wh350r { 3270 | width: 3.5rem; 3271 | height: 3.5rem; } 3272 | 3273 | .wh355r { 3274 | width: 3.55rem; 3275 | height: 3.55rem; } 3276 | 3277 | .wh360r { 3278 | width: 3.6rem; 3279 | height: 3.6rem; } 3280 | 3281 | .wh365r { 3282 | width: 3.65rem; 3283 | height: 3.65rem; } 3284 | 3285 | .wh370r { 3286 | width: 3.7rem; 3287 | height: 3.7rem; } 3288 | 3289 | .wh375r { 3290 | width: 3.75rem; 3291 | height: 3.75rem; } 3292 | 3293 | .wh380r { 3294 | width: 3.8rem; 3295 | height: 3.8rem; } 3296 | 3297 | .wh385r { 3298 | width: 3.85rem; 3299 | height: 3.85rem; } 3300 | 3301 | .wh390r { 3302 | width: 3.9rem; 3303 | height: 3.9rem; } 3304 | 3305 | .wh395r { 3306 | width: 3.95rem; 3307 | height: 3.95rem; } 3308 | 3309 | .wh400r { 3310 | width: 4rem; 3311 | height: 4rem; } 3312 | 3313 | .w0e { 3314 | width: 0em; } 3315 | 3316 | .w5e { 3317 | width: 0.05em; } 3318 | 3319 | .w10e { 3320 | width: 0.1em; } 3321 | 3322 | .w15e { 3323 | width: 0.15em; } 3324 | 3325 | .w20e { 3326 | width: 0.2em; } 3327 | 3328 | .w25e { 3329 | width: 0.25em; } 3330 | 3331 | .w30e { 3332 | width: 0.3em; } 3333 | 3334 | .w35e { 3335 | width: 0.35em; } 3336 | 3337 | .w40e { 3338 | width: 0.4em; } 3339 | 3340 | .w45e { 3341 | width: 0.45em; } 3342 | 3343 | .w50e { 3344 | width: 0.5em; } 3345 | 3346 | .w55e { 3347 | width: 0.55em; } 3348 | 3349 | .w60e { 3350 | width: 0.6em; } 3351 | 3352 | .w65e { 3353 | width: 0.65em; } 3354 | 3355 | .w70e { 3356 | width: 0.7em; } 3357 | 3358 | .w75e { 3359 | width: 0.75em; } 3360 | 3361 | .w80e { 3362 | width: 0.8em; } 3363 | 3364 | .w85e { 3365 | width: 0.85em; } 3366 | 3367 | .w90e { 3368 | width: 0.9em; } 3369 | 3370 | .w95e { 3371 | width: 0.95em; } 3372 | 3373 | .w100e { 3374 | width: 1em; } 3375 | 3376 | .w105e { 3377 | width: 1.05em; } 3378 | 3379 | .w110e { 3380 | width: 1.1em; } 3381 | 3382 | .w115e { 3383 | width: 1.15em; } 3384 | 3385 | .w120e { 3386 | width: 1.2em; } 3387 | 3388 | .w125e { 3389 | width: 1.25em; } 3390 | 3391 | .w130e { 3392 | width: 1.3em; } 3393 | 3394 | .w135e { 3395 | width: 1.35em; } 3396 | 3397 | .w140e { 3398 | width: 1.4em; } 3399 | 3400 | .w145e { 3401 | width: 1.45em; } 3402 | 3403 | .w150e { 3404 | width: 1.5em; } 3405 | 3406 | .w155e { 3407 | width: 1.55em; } 3408 | 3409 | .w160e { 3410 | width: 1.6em; } 3411 | 3412 | .w165e { 3413 | width: 1.65em; } 3414 | 3415 | .w170e { 3416 | width: 1.7em; } 3417 | 3418 | .w175e { 3419 | width: 1.75em; } 3420 | 3421 | .w180e { 3422 | width: 1.8em; } 3423 | 3424 | .w185e { 3425 | width: 1.85em; } 3426 | 3427 | .w190e { 3428 | width: 1.9em; } 3429 | 3430 | .w195e { 3431 | width: 1.95em; } 3432 | 3433 | .w200e { 3434 | width: 2em; } 3435 | 3436 | .w205e { 3437 | width: 2.05em; } 3438 | 3439 | .w210e { 3440 | width: 2.1em; } 3441 | 3442 | .w215e { 3443 | width: 2.15em; } 3444 | 3445 | .w220e { 3446 | width: 2.2em; } 3447 | 3448 | .w225e { 3449 | width: 2.25em; } 3450 | 3451 | .w230e { 3452 | width: 2.3em; } 3453 | 3454 | .w235e { 3455 | width: 2.35em; } 3456 | 3457 | .w240e { 3458 | width: 2.4em; } 3459 | 3460 | .w245e { 3461 | width: 2.45em; } 3462 | 3463 | .w250e { 3464 | width: 2.5em; } 3465 | 3466 | .w255e { 3467 | width: 2.55em; } 3468 | 3469 | .w260e { 3470 | width: 2.6em; } 3471 | 3472 | .w265e { 3473 | width: 2.65em; } 3474 | 3475 | .w270e { 3476 | width: 2.7em; } 3477 | 3478 | .w275e { 3479 | width: 2.75em; } 3480 | 3481 | .w280e { 3482 | width: 2.8em; } 3483 | 3484 | .w285e { 3485 | width: 2.85em; } 3486 | 3487 | .w290e { 3488 | width: 2.9em; } 3489 | 3490 | .w295e { 3491 | width: 2.95em; } 3492 | 3493 | .w300e { 3494 | width: 3em; } 3495 | 3496 | .w305e { 3497 | width: 3.05em; } 3498 | 3499 | .w310e { 3500 | width: 3.1em; } 3501 | 3502 | .w315e { 3503 | width: 3.15em; } 3504 | 3505 | .w320e { 3506 | width: 3.2em; } 3507 | 3508 | .w325e { 3509 | width: 3.25em; } 3510 | 3511 | .w330e { 3512 | width: 3.3em; } 3513 | 3514 | .w335e { 3515 | width: 3.35em; } 3516 | 3517 | .w340e { 3518 | width: 3.4em; } 3519 | 3520 | .w345e { 3521 | width: 3.45em; } 3522 | 3523 | .w350e { 3524 | width: 3.5em; } 3525 | 3526 | .w355e { 3527 | width: 3.55em; } 3528 | 3529 | .w360e { 3530 | width: 3.6em; } 3531 | 3532 | .w365e { 3533 | width: 3.65em; } 3534 | 3535 | .w370e { 3536 | width: 3.7em; } 3537 | 3538 | .w375e { 3539 | width: 3.75em; } 3540 | 3541 | .w380e { 3542 | width: 3.8em; } 3543 | 3544 | .w385e { 3545 | width: 3.85em; } 3546 | 3547 | .w390e { 3548 | width: 3.9em; } 3549 | 3550 | .w395e { 3551 | width: 3.95em; } 3552 | 3553 | .w400e { 3554 | width: 4em; } 3555 | 3556 | .h0e { 3557 | height: 0em; } 3558 | 3559 | .h5e { 3560 | height: 0.05em; } 3561 | 3562 | .h10e { 3563 | height: 0.1em; } 3564 | 3565 | .h15e { 3566 | height: 0.15em; } 3567 | 3568 | .h20e { 3569 | height: 0.2em; } 3570 | 3571 | .h25e { 3572 | height: 0.25em; } 3573 | 3574 | .h30e { 3575 | height: 0.3em; } 3576 | 3577 | .h35e { 3578 | height: 0.35em; } 3579 | 3580 | .h40e { 3581 | height: 0.4em; } 3582 | 3583 | .h45e { 3584 | height: 0.45em; } 3585 | 3586 | .h50e { 3587 | height: 0.5em; } 3588 | 3589 | .h55e { 3590 | height: 0.55em; } 3591 | 3592 | .h60e { 3593 | height: 0.6em; } 3594 | 3595 | .h65e { 3596 | height: 0.65em; } 3597 | 3598 | .h70e { 3599 | height: 0.7em; } 3600 | 3601 | .h75e { 3602 | height: 0.75em; } 3603 | 3604 | .h80e { 3605 | height: 0.8em; } 3606 | 3607 | .h85e { 3608 | height: 0.85em; } 3609 | 3610 | .h90e { 3611 | height: 0.9em; } 3612 | 3613 | .h95e { 3614 | height: 0.95em; } 3615 | 3616 | .h100e { 3617 | height: 1em; } 3618 | 3619 | .h105e { 3620 | height: 1.05em; } 3621 | 3622 | .h110e { 3623 | height: 1.1em; } 3624 | 3625 | .h115e { 3626 | height: 1.15em; } 3627 | 3628 | .h120e { 3629 | height: 1.2em; } 3630 | 3631 | .h125e { 3632 | height: 1.25em; } 3633 | 3634 | .h130e { 3635 | height: 1.3em; } 3636 | 3637 | .h135e { 3638 | height: 1.35em; } 3639 | 3640 | .h140e { 3641 | height: 1.4em; } 3642 | 3643 | .h145e { 3644 | height: 1.45em; } 3645 | 3646 | .h150e { 3647 | height: 1.5em; } 3648 | 3649 | .h155e { 3650 | height: 1.55em; } 3651 | 3652 | .h160e { 3653 | height: 1.6em; } 3654 | 3655 | .h165e { 3656 | height: 1.65em; } 3657 | 3658 | .h170e { 3659 | height: 1.7em; } 3660 | 3661 | .h175e { 3662 | height: 1.75em; } 3663 | 3664 | .h180e { 3665 | height: 1.8em; } 3666 | 3667 | .h185e { 3668 | height: 1.85em; } 3669 | 3670 | .h190e { 3671 | height: 1.9em; } 3672 | 3673 | .h195e { 3674 | height: 1.95em; } 3675 | 3676 | .h200e { 3677 | height: 2em; } 3678 | 3679 | .h205e { 3680 | height: 2.05em; } 3681 | 3682 | .h210e { 3683 | height: 2.1em; } 3684 | 3685 | .h215e { 3686 | height: 2.15em; } 3687 | 3688 | .h220e { 3689 | height: 2.2em; } 3690 | 3691 | .h225e { 3692 | height: 2.25em; } 3693 | 3694 | .h230e { 3695 | height: 2.3em; } 3696 | 3697 | .h235e { 3698 | height: 2.35em; } 3699 | 3700 | .h240e { 3701 | height: 2.4em; } 3702 | 3703 | .h245e { 3704 | height: 2.45em; } 3705 | 3706 | .h250e { 3707 | height: 2.5em; } 3708 | 3709 | .h255e { 3710 | height: 2.55em; } 3711 | 3712 | .h260e { 3713 | height: 2.6em; } 3714 | 3715 | .h265e { 3716 | height: 2.65em; } 3717 | 3718 | .h270e { 3719 | height: 2.7em; } 3720 | 3721 | .h275e { 3722 | height: 2.75em; } 3723 | 3724 | .h280e { 3725 | height: 2.8em; } 3726 | 3727 | .h285e { 3728 | height: 2.85em; } 3729 | 3730 | .h290e { 3731 | height: 2.9em; } 3732 | 3733 | .h295e { 3734 | height: 2.95em; } 3735 | 3736 | .h300e { 3737 | height: 3em; } 3738 | 3739 | .h305e { 3740 | height: 3.05em; } 3741 | 3742 | .h310e { 3743 | height: 3.1em; } 3744 | 3745 | .h315e { 3746 | height: 3.15em; } 3747 | 3748 | .h320e { 3749 | height: 3.2em; } 3750 | 3751 | .h325e { 3752 | height: 3.25em; } 3753 | 3754 | .h330e { 3755 | height: 3.3em; } 3756 | 3757 | .h335e { 3758 | height: 3.35em; } 3759 | 3760 | .h340e { 3761 | height: 3.4em; } 3762 | 3763 | .h345e { 3764 | height: 3.45em; } 3765 | 3766 | .h350e { 3767 | height: 3.5em; } 3768 | 3769 | .h355e { 3770 | height: 3.55em; } 3771 | 3772 | .h360e { 3773 | height: 3.6em; } 3774 | 3775 | .h365e { 3776 | height: 3.65em; } 3777 | 3778 | .h370e { 3779 | height: 3.7em; } 3780 | 3781 | .h375e { 3782 | height: 3.75em; } 3783 | 3784 | .h380e { 3785 | height: 3.8em; } 3786 | 3787 | .h385e { 3788 | height: 3.85em; } 3789 | 3790 | .h390e { 3791 | height: 3.9em; } 3792 | 3793 | .h395e { 3794 | height: 3.95em; } 3795 | 3796 | .h400e { 3797 | height: 4em; } 3798 | 3799 | .wh0e { 3800 | width: 0em; 3801 | height: 0em; } 3802 | 3803 | .wh5e { 3804 | width: 0.05em; 3805 | height: 0.05em; } 3806 | 3807 | .wh10e { 3808 | width: 0.1em; 3809 | height: 0.1em; } 3810 | 3811 | .wh15e { 3812 | width: 0.15em; 3813 | height: 0.15em; } 3814 | 3815 | .wh20e { 3816 | width: 0.2em; 3817 | height: 0.2em; } 3818 | 3819 | .wh25e { 3820 | width: 0.25em; 3821 | height: 0.25em; } 3822 | 3823 | .wh30e { 3824 | width: 0.3em; 3825 | height: 0.3em; } 3826 | 3827 | .wh35e { 3828 | width: 0.35em; 3829 | height: 0.35em; } 3830 | 3831 | .wh40e { 3832 | width: 0.4em; 3833 | height: 0.4em; } 3834 | 3835 | .wh45e { 3836 | width: 0.45em; 3837 | height: 0.45em; } 3838 | 3839 | .wh50e { 3840 | width: 0.5em; 3841 | height: 0.5em; } 3842 | 3843 | .wh55e { 3844 | width: 0.55em; 3845 | height: 0.55em; } 3846 | 3847 | .wh60e { 3848 | width: 0.6em; 3849 | height: 0.6em; } 3850 | 3851 | .wh65e { 3852 | width: 0.65em; 3853 | height: 0.65em; } 3854 | 3855 | .wh70e { 3856 | width: 0.7em; 3857 | height: 0.7em; } 3858 | 3859 | .wh75e { 3860 | width: 0.75em; 3861 | height: 0.75em; } 3862 | 3863 | .wh80e { 3864 | width: 0.8em; 3865 | height: 0.8em; } 3866 | 3867 | .wh85e { 3868 | width: 0.85em; 3869 | height: 0.85em; } 3870 | 3871 | .wh90e { 3872 | width: 0.9em; 3873 | height: 0.9em; } 3874 | 3875 | .wh95e { 3876 | width: 0.95em; 3877 | height: 0.95em; } 3878 | 3879 | .wh100e { 3880 | width: 1em; 3881 | height: 1em; } 3882 | 3883 | .wh105e { 3884 | width: 1.05em; 3885 | height: 1.05em; } 3886 | 3887 | .wh110e { 3888 | width: 1.1em; 3889 | height: 1.1em; } 3890 | 3891 | .wh115e { 3892 | width: 1.15em; 3893 | height: 1.15em; } 3894 | 3895 | .wh120e { 3896 | width: 1.2em; 3897 | height: 1.2em; } 3898 | 3899 | .wh125e { 3900 | width: 1.25em; 3901 | height: 1.25em; } 3902 | 3903 | .wh130e { 3904 | width: 1.3em; 3905 | height: 1.3em; } 3906 | 3907 | .wh135e { 3908 | width: 1.35em; 3909 | height: 1.35em; } 3910 | 3911 | .wh140e { 3912 | width: 1.4em; 3913 | height: 1.4em; } 3914 | 3915 | .wh145e { 3916 | width: 1.45em; 3917 | height: 1.45em; } 3918 | 3919 | .wh150e { 3920 | width: 1.5em; 3921 | height: 1.5em; } 3922 | 3923 | .wh155e { 3924 | width: 1.55em; 3925 | height: 1.55em; } 3926 | 3927 | .wh160e { 3928 | width: 1.6em; 3929 | height: 1.6em; } 3930 | 3931 | .wh165e { 3932 | width: 1.65em; 3933 | height: 1.65em; } 3934 | 3935 | .wh170e { 3936 | width: 1.7em; 3937 | height: 1.7em; } 3938 | 3939 | .wh175e { 3940 | width: 1.75em; 3941 | height: 1.75em; } 3942 | 3943 | .wh180e { 3944 | width: 1.8em; 3945 | height: 1.8em; } 3946 | 3947 | .wh185e { 3948 | width: 1.85em; 3949 | height: 1.85em; } 3950 | 3951 | .wh190e { 3952 | width: 1.9em; 3953 | height: 1.9em; } 3954 | 3955 | .wh195e { 3956 | width: 1.95em; 3957 | height: 1.95em; } 3958 | 3959 | .wh200e { 3960 | width: 2em; 3961 | height: 2em; } 3962 | 3963 | .wh205e { 3964 | width: 2.05em; 3965 | height: 2.05em; } 3966 | 3967 | .wh210e { 3968 | width: 2.1em; 3969 | height: 2.1em; } 3970 | 3971 | .wh215e { 3972 | width: 2.15em; 3973 | height: 2.15em; } 3974 | 3975 | .wh220e { 3976 | width: 2.2em; 3977 | height: 2.2em; } 3978 | 3979 | .wh225e { 3980 | width: 2.25em; 3981 | height: 2.25em; } 3982 | 3983 | .wh230e { 3984 | width: 2.3em; 3985 | height: 2.3em; } 3986 | 3987 | .wh235e { 3988 | width: 2.35em; 3989 | height: 2.35em; } 3990 | 3991 | .wh240e { 3992 | width: 2.4em; 3993 | height: 2.4em; } 3994 | 3995 | .wh245e { 3996 | width: 2.45em; 3997 | height: 2.45em; } 3998 | 3999 | .wh250e { 4000 | width: 2.5em; 4001 | height: 2.5em; } 4002 | 4003 | .wh255e { 4004 | width: 2.55em; 4005 | height: 2.55em; } 4006 | 4007 | .wh260e { 4008 | width: 2.6em; 4009 | height: 2.6em; } 4010 | 4011 | .wh265e { 4012 | width: 2.65em; 4013 | height: 2.65em; } 4014 | 4015 | .wh270e { 4016 | width: 2.7em; 4017 | height: 2.7em; } 4018 | 4019 | .wh275e { 4020 | width: 2.75em; 4021 | height: 2.75em; } 4022 | 4023 | .wh280e { 4024 | width: 2.8em; 4025 | height: 2.8em; } 4026 | 4027 | .wh285e { 4028 | width: 2.85em; 4029 | height: 2.85em; } 4030 | 4031 | .wh290e { 4032 | width: 2.9em; 4033 | height: 2.9em; } 4034 | 4035 | .wh295e { 4036 | width: 2.95em; 4037 | height: 2.95em; } 4038 | 4039 | .wh300e { 4040 | width: 3em; 4041 | height: 3em; } 4042 | 4043 | .wh305e { 4044 | width: 3.05em; 4045 | height: 3.05em; } 4046 | 4047 | .wh310e { 4048 | width: 3.1em; 4049 | height: 3.1em; } 4050 | 4051 | .wh315e { 4052 | width: 3.15em; 4053 | height: 3.15em; } 4054 | 4055 | .wh320e { 4056 | width: 3.2em; 4057 | height: 3.2em; } 4058 | 4059 | .wh325e { 4060 | width: 3.25em; 4061 | height: 3.25em; } 4062 | 4063 | .wh330e { 4064 | width: 3.3em; 4065 | height: 3.3em; } 4066 | 4067 | .wh335e { 4068 | width: 3.35em; 4069 | height: 3.35em; } 4070 | 4071 | .wh340e { 4072 | width: 3.4em; 4073 | height: 3.4em; } 4074 | 4075 | .wh345e { 4076 | width: 3.45em; 4077 | height: 3.45em; } 4078 | 4079 | .wh350e { 4080 | width: 3.5em; 4081 | height: 3.5em; } 4082 | 4083 | .wh355e { 4084 | width: 3.55em; 4085 | height: 3.55em; } 4086 | 4087 | .wh360e { 4088 | width: 3.6em; 4089 | height: 3.6em; } 4090 | 4091 | .wh365e { 4092 | width: 3.65em; 4093 | height: 3.65em; } 4094 | 4095 | .wh370e { 4096 | width: 3.7em; 4097 | height: 3.7em; } 4098 | 4099 | .wh375e { 4100 | width: 3.75em; 4101 | height: 3.75em; } 4102 | 4103 | .wh380e { 4104 | width: 3.8em; 4105 | height: 3.8em; } 4106 | 4107 | .wh385e { 4108 | width: 3.85em; 4109 | height: 3.85em; } 4110 | 4111 | .wh390e { 4112 | width: 3.9em; 4113 | height: 3.9em; } 4114 | 4115 | .wh395e { 4116 | width: 3.95em; 4117 | height: 3.95em; } 4118 | 4119 | .wh400e { 4120 | width: 4em; 4121 | height: 4em; } 4122 | 4123 | .visible { 4124 | visibility: visible; } 4125 | 4126 | .hidden { 4127 | visibility: hidden; } 4128 | 4129 | .opacity0 { 4130 | opacity: 0.0; } 4131 | 4132 | .opacity025 { 4133 | opacity: 0.25; } 4134 | 4135 | .opacity05 { 4136 | opacity: 0.5; } 4137 | 4138 | .opacity075 { 4139 | opacity: 0.75; } 4140 | 4141 | .opacity1 { 4142 | opacity: 1.0; } 4143 | 4144 | .tw-opacity { 4145 | transition: opacity 0.4s ease-out; } 4146 | 4147 | .tw-position { 4148 | transition: left 0.4s ease-out, top 0.4s ease-out, right 0.4s ease-out, bottom 0.4s ease-out; } 4149 | 4150 | .tw-size { 4151 | transition: width 0.4s ease-out, height 0.4s ease-out; } 4152 | 4153 | .tw-transform { 4154 | transition: transform 0.4s ease-out; } 4155 | 4156 | .tw-shadow { 4157 | transition: box-shadow 0.4s ease-out; } 4158 | 4159 | .tw-border { 4160 | transition: border 0.4s ease-out; } 4161 | 4162 | .tw-outline { 4163 | transition: outline 0.4s ease-out; } 4164 | 4165 | .tw-padding { 4166 | transition: padding 0.4s ease-out; } 4167 | 4168 | .tw-margin { 4169 | transition: margin 0.4s ease-out; } 4170 | 4171 | .tw-background { 4172 | transition: background-position 0.4s ease-out, background-size 0.4s ease-out; } 4173 | 4174 | .tw-all { 4175 | transition: all 0.4s ease-out; } 4176 | 4177 | .tw-fast { 4178 | transition-duration: 0.3s !important; } 4179 | 4180 | .tw-normal { 4181 | transition-duration: 0.4s !important; } 4182 | 4183 | .tw-slow { 4184 | transition-duration: 0.6s !important; } 4185 | 4186 | .pd1 { 4187 | padding: 1px; } 4188 | 4189 | .pd2 { 4190 | padding: 2px; } 4191 | 4192 | .pd3 { 4193 | padding: 3px; } 4194 | 4195 | .pd4 { 4196 | padding: 4px; } 4197 | 4198 | .pd5 { 4199 | padding: 5px; } 4200 | 4201 | .pd6 { 4202 | padding: 6px; } 4203 | 4204 | .pd7 { 4205 | padding: 7px; } 4206 | 4207 | .pd8 { 4208 | padding: 8px; } 4209 | 4210 | .pd9 { 4211 | padding: 9px; } 4212 | 4213 | .pd10 { 4214 | padding: 10px; } 4215 | 4216 | .pd11 { 4217 | padding: 11px; } 4218 | 4219 | .pd12 { 4220 | padding: 12px; } 4221 | 4222 | .pd13 { 4223 | padding: 13px; } 4224 | 4225 | .pd14 { 4226 | padding: 14px; } 4227 | 4228 | .pd15 { 4229 | padding: 15px; } 4230 | 4231 | .pd16 { 4232 | padding: 16px; } 4233 | 4234 | .pd17 { 4235 | padding: 17px; } 4236 | 4237 | .pd18 { 4238 | padding: 18px; } 4239 | 4240 | .pd19 { 4241 | padding: 19px; } 4242 | 4243 | .pd20 { 4244 | padding: 20px; } 4245 | 4246 | .pdl1 { 4247 | padding-left: 1px; } 4248 | 4249 | .pdl2 { 4250 | padding-left: 2px; } 4251 | 4252 | .pdl3 { 4253 | padding-left: 3px; } 4254 | 4255 | .pdl4 { 4256 | padding-left: 4px; } 4257 | 4258 | .pdl5 { 4259 | padding-left: 5px; } 4260 | 4261 | .pdl6 { 4262 | padding-left: 6px; } 4263 | 4264 | .pdl7 { 4265 | padding-left: 7px; } 4266 | 4267 | .pdl8 { 4268 | padding-left: 8px; } 4269 | 4270 | .pdl9 { 4271 | padding-left: 9px; } 4272 | 4273 | .pdl10 { 4274 | padding-left: 10px; } 4275 | 4276 | .pdl11 { 4277 | padding-left: 11px; } 4278 | 4279 | .pdl12 { 4280 | padding-left: 12px; } 4281 | 4282 | .pdl13 { 4283 | padding-left: 13px; } 4284 | 4285 | .pdl14 { 4286 | padding-left: 14px; } 4287 | 4288 | .pdl15 { 4289 | padding-left: 15px; } 4290 | 4291 | .pdl16 { 4292 | padding-left: 16px; } 4293 | 4294 | .pdl17 { 4295 | padding-left: 17px; } 4296 | 4297 | .pdl18 { 4298 | padding-left: 18px; } 4299 | 4300 | .pdl19 { 4301 | padding-left: 19px; } 4302 | 4303 | .pdl20 { 4304 | padding-left: 20px; } 4305 | 4306 | .pdr1 { 4307 | padding-right: 1px; } 4308 | 4309 | .pdr2 { 4310 | padding-right: 2px; } 4311 | 4312 | .pdr3 { 4313 | padding-right: 3px; } 4314 | 4315 | .pdr4 { 4316 | padding-right: 4px; } 4317 | 4318 | .pdr5 { 4319 | padding-right: 5px; } 4320 | 4321 | .pdr6 { 4322 | padding-right: 6px; } 4323 | 4324 | .pdr7 { 4325 | padding-right: 7px; } 4326 | 4327 | .pdr8 { 4328 | padding-right: 8px; } 4329 | 4330 | .pdr9 { 4331 | padding-right: 9px; } 4332 | 4333 | .pdr10 { 4334 | padding-right: 10px; } 4335 | 4336 | .pdr11 { 4337 | padding-right: 11px; } 4338 | 4339 | .pdr12 { 4340 | padding-right: 12px; } 4341 | 4342 | .pdr13 { 4343 | padding-right: 13px; } 4344 | 4345 | .pdr14 { 4346 | padding-right: 14px; } 4347 | 4348 | .pdr15 { 4349 | padding-right: 15px; } 4350 | 4351 | .pdr16 { 4352 | padding-right: 16px; } 4353 | 4354 | .pdr17 { 4355 | padding-right: 17px; } 4356 | 4357 | .pdr18 { 4358 | padding-right: 18px; } 4359 | 4360 | .pdr19 { 4361 | padding-right: 19px; } 4362 | 4363 | .pdr20 { 4364 | padding-right: 20px; } 4365 | 4366 | .pdt1 { 4367 | padding-top: 1px; } 4368 | 4369 | .pdt2 { 4370 | padding-top: 2px; } 4371 | 4372 | .pdt3 { 4373 | padding-top: 3px; } 4374 | 4375 | .pdt4 { 4376 | padding-top: 4px; } 4377 | 4378 | .pdt5 { 4379 | padding-top: 5px; } 4380 | 4381 | .pdt6 { 4382 | padding-top: 6px; } 4383 | 4384 | .pdt7 { 4385 | padding-top: 7px; } 4386 | 4387 | .pdt8 { 4388 | padding-top: 8px; } 4389 | 4390 | .pdt9 { 4391 | padding-top: 9px; } 4392 | 4393 | .pdt10 { 4394 | padding-top: 10px; } 4395 | 4396 | .pdt11 { 4397 | padding-top: 11px; } 4398 | 4399 | .pdt12 { 4400 | padding-top: 12px; } 4401 | 4402 | .pdt13 { 4403 | padding-top: 13px; } 4404 | 4405 | .pdt14 { 4406 | padding-top: 14px; } 4407 | 4408 | .pdt15 { 4409 | padding-top: 15px; } 4410 | 4411 | .pdt16 { 4412 | padding-top: 16px; } 4413 | 4414 | .pdt17 { 4415 | padding-top: 17px; } 4416 | 4417 | .pdt18 { 4418 | padding-top: 18px; } 4419 | 4420 | .pdt19 { 4421 | padding-top: 19px; } 4422 | 4423 | .pdt20 { 4424 | padding-top: 20px; } 4425 | 4426 | .pdb1 { 4427 | padding-bottom: 1px; } 4428 | 4429 | .pdb2 { 4430 | padding-bottom: 2px; } 4431 | 4432 | .pdb3 { 4433 | padding-bottom: 3px; } 4434 | 4435 | .pdb4 { 4436 | padding-bottom: 4px; } 4437 | 4438 | .pdb5 { 4439 | padding-bottom: 5px; } 4440 | 4441 | .pdb6 { 4442 | padding-bottom: 6px; } 4443 | 4444 | .pdb7 { 4445 | padding-bottom: 7px; } 4446 | 4447 | .pdb8 { 4448 | padding-bottom: 8px; } 4449 | 4450 | .pdb9 { 4451 | padding-bottom: 9px; } 4452 | 4453 | .pdb10 { 4454 | padding-bottom: 10px; } 4455 | 4456 | .pdb11 { 4457 | padding-bottom: 11px; } 4458 | 4459 | .pdb12 { 4460 | padding-bottom: 12px; } 4461 | 4462 | .pdb13 { 4463 | padding-bottom: 13px; } 4464 | 4465 | .pdb14 { 4466 | padding-bottom: 14px; } 4467 | 4468 | .pdb15 { 4469 | padding-bottom: 15px; } 4470 | 4471 | .pdb16 { 4472 | padding-bottom: 16px; } 4473 | 4474 | .pdb17 { 4475 | padding-bottom: 17px; } 4476 | 4477 | .pdb18 { 4478 | padding-bottom: 18px; } 4479 | 4480 | .pdb19 { 4481 | padding-bottom: 19px; } 4482 | 4483 | .pdb20 { 4484 | padding-bottom: 20px; } 4485 | 4486 | .pdh1 { 4487 | padding-left: 1px; 4488 | padding-right: 1px; } 4489 | 4490 | .pdh2 { 4491 | padding-left: 2px; 4492 | padding-right: 2px; } 4493 | 4494 | .pdh3 { 4495 | padding-left: 3px; 4496 | padding-right: 3px; } 4497 | 4498 | .pdh4 { 4499 | padding-left: 4px; 4500 | padding-right: 4px; } 4501 | 4502 | .pdh5 { 4503 | padding-left: 5px; 4504 | padding-right: 5px; } 4505 | 4506 | .pdh6 { 4507 | padding-left: 6px; 4508 | padding-right: 6px; } 4509 | 4510 | .pdh7 { 4511 | padding-left: 7px; 4512 | padding-right: 7px; } 4513 | 4514 | .pdh8 { 4515 | padding-left: 8px; 4516 | padding-right: 8px; } 4517 | 4518 | .pdh9 { 4519 | padding-left: 9px; 4520 | padding-right: 9px; } 4521 | 4522 | .pdh10 { 4523 | padding-left: 10px; 4524 | padding-right: 10px; } 4525 | 4526 | .pdh11 { 4527 | padding-left: 11px; 4528 | padding-right: 11px; } 4529 | 4530 | .pdh12 { 4531 | padding-left: 12px; 4532 | padding-right: 12px; } 4533 | 4534 | .pdh13 { 4535 | padding-left: 13px; 4536 | padding-right: 13px; } 4537 | 4538 | .pdh14 { 4539 | padding-left: 14px; 4540 | padding-right: 14px; } 4541 | 4542 | .pdh15 { 4543 | padding-left: 15px; 4544 | padding-right: 15px; } 4545 | 4546 | .pdh16 { 4547 | padding-left: 16px; 4548 | padding-right: 16px; } 4549 | 4550 | .pdh17 { 4551 | padding-left: 17px; 4552 | padding-right: 17px; } 4553 | 4554 | .pdh18 { 4555 | padding-left: 18px; 4556 | padding-right: 18px; } 4557 | 4558 | .pdh19 { 4559 | padding-left: 19px; 4560 | padding-right: 19px; } 4561 | 4562 | .pdh20 { 4563 | padding-left: 20px; 4564 | padding-right: 20px; } 4565 | 4566 | .pdv1 { 4567 | padding-top: 1px; 4568 | padding-bottom: 1px; } 4569 | 4570 | .pdv2 { 4571 | padding-top: 2px; 4572 | padding-bottom: 2px; } 4573 | 4574 | .pdv3 { 4575 | padding-top: 3px; 4576 | padding-bottom: 3px; } 4577 | 4578 | .pdv4 { 4579 | padding-top: 4px; 4580 | padding-bottom: 4px; } 4581 | 4582 | .pdv5 { 4583 | padding-top: 5px; 4584 | padding-bottom: 5px; } 4585 | 4586 | .pdv6 { 4587 | padding-top: 6px; 4588 | padding-bottom: 6px; } 4589 | 4590 | .pdv7 { 4591 | padding-top: 7px; 4592 | padding-bottom: 7px; } 4593 | 4594 | .pdv8 { 4595 | padding-top: 8px; 4596 | padding-bottom: 8px; } 4597 | 4598 | .pdv9 { 4599 | padding-top: 9px; 4600 | padding-bottom: 9px; } 4601 | 4602 | .pdv10 { 4603 | padding-top: 10px; 4604 | padding-bottom: 10px; } 4605 | 4606 | .pdv11 { 4607 | padding-top: 11px; 4608 | padding-bottom: 11px; } 4609 | 4610 | .pdv12 { 4611 | padding-top: 12px; 4612 | padding-bottom: 12px; } 4613 | 4614 | .pdv13 { 4615 | padding-top: 13px; 4616 | padding-bottom: 13px; } 4617 | 4618 | .pdv14 { 4619 | padding-top: 14px; 4620 | padding-bottom: 14px; } 4621 | 4622 | .pdv15 { 4623 | padding-top: 15px; 4624 | padding-bottom: 15px; } 4625 | 4626 | .pdv16 { 4627 | padding-top: 16px; 4628 | padding-bottom: 16px; } 4629 | 4630 | .pdv17 { 4631 | padding-top: 17px; 4632 | padding-bottom: 17px; } 4633 | 4634 | .pdv18 { 4635 | padding-top: 18px; 4636 | padding-bottom: 18px; } 4637 | 4638 | .pdv19 { 4639 | padding-top: 19px; 4640 | padding-bottom: 19px; } 4641 | 4642 | .pdv20 { 4643 | padding-top: 20px; 4644 | padding-bottom: 20px; } 4645 | 4646 | .m1 { 4647 | margin: 1px; } 4648 | 4649 | .m2 { 4650 | margin: 2px; } 4651 | 4652 | .m3 { 4653 | margin: 3px; } 4654 | 4655 | .m4 { 4656 | margin: 4px; } 4657 | 4658 | .m5 { 4659 | margin: 5px; } 4660 | 4661 | .m6 { 4662 | margin: 6px; } 4663 | 4664 | .m7 { 4665 | margin: 7px; } 4666 | 4667 | .m8 { 4668 | margin: 8px; } 4669 | 4670 | .m9 { 4671 | margin: 9px; } 4672 | 4673 | .m10 { 4674 | margin: 10px; } 4675 | 4676 | .m11 { 4677 | margin: 11px; } 4678 | 4679 | .m12 { 4680 | margin: 12px; } 4681 | 4682 | .m13 { 4683 | margin: 13px; } 4684 | 4685 | .m14 { 4686 | margin: 14px; } 4687 | 4688 | .m15 { 4689 | margin: 15px; } 4690 | 4691 | .m16 { 4692 | margin: 16px; } 4693 | 4694 | .m17 { 4695 | margin: 17px; } 4696 | 4697 | .m18 { 4698 | margin: 18px; } 4699 | 4700 | .m19 { 4701 | margin: 19px; } 4702 | 4703 | .m20 { 4704 | margin: 20px; } 4705 | 4706 | .ml1 { 4707 | margin-left: 1px; } 4708 | 4709 | .ml2 { 4710 | margin-left: 2px; } 4711 | 4712 | .ml3 { 4713 | margin-left: 3px; } 4714 | 4715 | .ml4 { 4716 | margin-left: 4px; } 4717 | 4718 | .ml5 { 4719 | margin-left: 5px; } 4720 | 4721 | .ml6 { 4722 | margin-left: 6px; } 4723 | 4724 | .ml7 { 4725 | margin-left: 7px; } 4726 | 4727 | .ml8 { 4728 | margin-left: 8px; } 4729 | 4730 | .ml9 { 4731 | margin-left: 9px; } 4732 | 4733 | .ml10 { 4734 | margin-left: 10px; } 4735 | 4736 | .ml11 { 4737 | margin-left: 11px; } 4738 | 4739 | .ml12 { 4740 | margin-left: 12px; } 4741 | 4742 | .ml13 { 4743 | margin-left: 13px; } 4744 | 4745 | .ml14 { 4746 | margin-left: 14px; } 4747 | 4748 | .ml15 { 4749 | margin-left: 15px; } 4750 | 4751 | .ml16 { 4752 | margin-left: 16px; } 4753 | 4754 | .ml17 { 4755 | margin-left: 17px; } 4756 | 4757 | .ml18 { 4758 | margin-left: 18px; } 4759 | 4760 | .ml19 { 4761 | margin-left: 19px; } 4762 | 4763 | .ml20 { 4764 | margin-left: 20px; } 4765 | 4766 | .mr1 { 4767 | margin-right: 1px; } 4768 | 4769 | .mr2 { 4770 | margin-right: 2px; } 4771 | 4772 | .mr3 { 4773 | margin-right: 3px; } 4774 | 4775 | .mr4 { 4776 | margin-right: 4px; } 4777 | 4778 | .mr5 { 4779 | margin-right: 5px; } 4780 | 4781 | .mr6 { 4782 | margin-right: 6px; } 4783 | 4784 | .mr7 { 4785 | margin-right: 7px; } 4786 | 4787 | .mr8 { 4788 | margin-right: 8px; } 4789 | 4790 | .mr9 { 4791 | margin-right: 9px; } 4792 | 4793 | .mr10 { 4794 | margin-right: 10px; } 4795 | 4796 | .mr11 { 4797 | margin-right: 11px; } 4798 | 4799 | .mr12 { 4800 | margin-right: 12px; } 4801 | 4802 | .mr13 { 4803 | margin-right: 13px; } 4804 | 4805 | .mr14 { 4806 | margin-right: 14px; } 4807 | 4808 | .mr15 { 4809 | margin-right: 15px; } 4810 | 4811 | .mr16 { 4812 | margin-right: 16px; } 4813 | 4814 | .mr17 { 4815 | margin-right: 17px; } 4816 | 4817 | .mr18 { 4818 | margin-right: 18px; } 4819 | 4820 | .mr19 { 4821 | margin-right: 19px; } 4822 | 4823 | .mr20 { 4824 | margin-right: 20px; } 4825 | 4826 | .mt1 { 4827 | margin-top: 1px; } 4828 | 4829 | .mt2 { 4830 | margin-top: 2px; } 4831 | 4832 | .mt3 { 4833 | margin-top: 3px; } 4834 | 4835 | .mt4 { 4836 | margin-top: 4px; } 4837 | 4838 | .mt5 { 4839 | margin-top: 5px; } 4840 | 4841 | .mt6 { 4842 | margin-top: 6px; } 4843 | 4844 | .mt7 { 4845 | margin-top: 7px; } 4846 | 4847 | .mt8 { 4848 | margin-top: 8px; } 4849 | 4850 | .mt9 { 4851 | margin-top: 9px; } 4852 | 4853 | .mt10 { 4854 | margin-top: 10px; } 4855 | 4856 | .mt11 { 4857 | margin-top: 11px; } 4858 | 4859 | .mt12 { 4860 | margin-top: 12px; } 4861 | 4862 | .mt13 { 4863 | margin-top: 13px; } 4864 | 4865 | .mt14 { 4866 | margin-top: 14px; } 4867 | 4868 | .mt15 { 4869 | margin-top: 15px; } 4870 | 4871 | .mt16 { 4872 | margin-top: 16px; } 4873 | 4874 | .mt17 { 4875 | margin-top: 17px; } 4876 | 4877 | .mt18 { 4878 | margin-top: 18px; } 4879 | 4880 | .mt19 { 4881 | margin-top: 19px; } 4882 | 4883 | .mt20 { 4884 | margin-top: 20px; } 4885 | 4886 | .mb1 { 4887 | margin-bottom: 1px; } 4888 | 4889 | .mb2 { 4890 | margin-bottom: 2px; } 4891 | 4892 | .mb3 { 4893 | margin-bottom: 3px; } 4894 | 4895 | .mb4 { 4896 | margin-bottom: 4px; } 4897 | 4898 | .mb5 { 4899 | margin-bottom: 5px; } 4900 | 4901 | .mb6 { 4902 | margin-bottom: 6px; } 4903 | 4904 | .mb7 { 4905 | margin-bottom: 7px; } 4906 | 4907 | .mb8 { 4908 | margin-bottom: 8px; } 4909 | 4910 | .mb9 { 4911 | margin-bottom: 9px; } 4912 | 4913 | .mb10 { 4914 | margin-bottom: 10px; } 4915 | 4916 | .mb11 { 4917 | margin-bottom: 11px; } 4918 | 4919 | .mb12 { 4920 | margin-bottom: 12px; } 4921 | 4922 | .mb13 { 4923 | margin-bottom: 13px; } 4924 | 4925 | .mb14 { 4926 | margin-bottom: 14px; } 4927 | 4928 | .mb15 { 4929 | margin-bottom: 15px; } 4930 | 4931 | .mb16 { 4932 | margin-bottom: 16px; } 4933 | 4934 | .mb17 { 4935 | margin-bottom: 17px; } 4936 | 4937 | .mb18 { 4938 | margin-bottom: 18px; } 4939 | 4940 | .mb19 { 4941 | margin-bottom: 19px; } 4942 | 4943 | .mb20 { 4944 | margin-bottom: 20px; } 4945 | 4946 | .mh1 { 4947 | margin-left: 1px; 4948 | margin-right: 1px; } 4949 | 4950 | .mh2 { 4951 | margin-left: 2px; 4952 | margin-right: 2px; } 4953 | 4954 | .mh3 { 4955 | margin-left: 3px; 4956 | margin-right: 3px; } 4957 | 4958 | .mh4 { 4959 | margin-left: 4px; 4960 | margin-right: 4px; } 4961 | 4962 | .mh5 { 4963 | margin-left: 5px; 4964 | margin-right: 5px; } 4965 | 4966 | .mh6 { 4967 | margin-left: 6px; 4968 | margin-right: 6px; } 4969 | 4970 | .mh7 { 4971 | margin-left: 7px; 4972 | margin-right: 7px; } 4973 | 4974 | .mh8 { 4975 | margin-left: 8px; 4976 | margin-right: 8px; } 4977 | 4978 | .mh9 { 4979 | margin-left: 9px; 4980 | margin-right: 9px; } 4981 | 4982 | .mh10 { 4983 | margin-left: 10px; 4984 | margin-right: 10px; } 4985 | 4986 | .mh11 { 4987 | margin-left: 11px; 4988 | margin-right: 11px; } 4989 | 4990 | .mh12 { 4991 | margin-left: 12px; 4992 | margin-right: 12px; } 4993 | 4994 | .mh13 { 4995 | margin-left: 13px; 4996 | margin-right: 13px; } 4997 | 4998 | .mh14 { 4999 | margin-left: 14px; 5000 | margin-right: 14px; } 5001 | 5002 | .mh15 { 5003 | margin-left: 15px; 5004 | margin-right: 15px; } 5005 | 5006 | .mh16 { 5007 | margin-left: 16px; 5008 | margin-right: 16px; } 5009 | 5010 | .mh17 { 5011 | margin-left: 17px; 5012 | margin-right: 17px; } 5013 | 5014 | .mh18 { 5015 | margin-left: 18px; 5016 | margin-right: 18px; } 5017 | 5018 | .mh19 { 5019 | margin-left: 19px; 5020 | margin-right: 19px; } 5021 | 5022 | .mh20 { 5023 | margin-left: 20px; 5024 | margin-right: 20px; } 5025 | 5026 | .mv1 { 5027 | margin-top: 1px; 5028 | margin-bottom: 1px; } 5029 | 5030 | .mv2 { 5031 | margin-top: 2px; 5032 | margin-bottom: 2px; } 5033 | 5034 | .mv3 { 5035 | margin-top: 3px; 5036 | margin-bottom: 3px; } 5037 | 5038 | .mv4 { 5039 | margin-top: 4px; 5040 | margin-bottom: 4px; } 5041 | 5042 | .mv5 { 5043 | margin-top: 5px; 5044 | margin-bottom: 5px; } 5045 | 5046 | .mv6 { 5047 | margin-top: 6px; 5048 | margin-bottom: 6px; } 5049 | 5050 | .mv7 { 5051 | margin-top: 7px; 5052 | margin-bottom: 7px; } 5053 | 5054 | .mv8 { 5055 | margin-top: 8px; 5056 | margin-bottom: 8px; } 5057 | 5058 | .mv9 { 5059 | margin-top: 9px; 5060 | margin-bottom: 9px; } 5061 | 5062 | .mv10 { 5063 | margin-top: 10px; 5064 | margin-bottom: 10px; } 5065 | 5066 | .mv11 { 5067 | margin-top: 11px; 5068 | margin-bottom: 11px; } 5069 | 5070 | .mv12 { 5071 | margin-top: 12px; 5072 | margin-bottom: 12px; } 5073 | 5074 | .mv13 { 5075 | margin-top: 13px; 5076 | margin-bottom: 13px; } 5077 | 5078 | .mv14 { 5079 | margin-top: 14px; 5080 | margin-bottom: 14px; } 5081 | 5082 | .mv15 { 5083 | margin-top: 15px; 5084 | margin-bottom: 15px; } 5085 | 5086 | .mv16 { 5087 | margin-top: 16px; 5088 | margin-bottom: 16px; } 5089 | 5090 | .mv17 { 5091 | margin-top: 17px; 5092 | margin-bottom: 17px; } 5093 | 5094 | .mv18 { 5095 | margin-top: 18px; 5096 | margin-bottom: 18px; } 5097 | 5098 | .mv19 { 5099 | margin-top: 19px; 5100 | margin-bottom: 19px; } 5101 | 5102 | .mv20 { 5103 | margin-top: 20px; 5104 | margin-bottom: 20px; } 5105 | 5106 | /** 5107 | Flex Layout 5108 | //*/ 5109 | .lh, .lhx, .lhx2, .lhx3, .lhx4, .lhx5, .lvs, .lvs2, .lvs3, .lvs4 { 5110 | display: -webkit-box; 5111 | display: -moz-box; 5112 | display: -ms-flexbox; 5113 | display: -webkit-flex; 5114 | display: flex; 5115 | -webkit-flex-direction: row; 5116 | -moz-flex-direction: row; 5117 | -ms-flex-direction: row; 5118 | flex-direction: row; 5119 | -webkit-flex-shrink: 0; 5120 | -moz-flex-shrink: 0; 5121 | -ms-flex-shrink: 0; 5122 | flex-shrink: 0; 5123 | -webkit-flex-grow: 0; 5124 | -moz-flex-grow: 0; 5125 | -ms-flex-grow: 0; 5126 | flex-grow: 0; 5127 | -webkit-align-content: flex-start; 5128 | -moz-align-content: flex-start; 5129 | -ms-align-content: flex-start; 5130 | align-content: flex-start; } 5131 | 5132 | .lv, .lhs, .lhs2, .lhs3, .lhs4, .lvx, .lvx2, .lvx3, .lvx4, .lvx5 { 5133 | display: -webkit-box; 5134 | display: -moz-box; 5135 | display: -ms-flexbox; 5136 | display: -webkit-flex; 5137 | display: flex; 5138 | -webkit-flex-direction: column; 5139 | -moz-flex-direction: column; 5140 | -ms-flex-direction: column; 5141 | flex-direction: column; 5142 | -webkit-flex-shrink: 0; 5143 | -moz-flex-shrink: 0; 5144 | -ms-flex-shrink: 0; 5145 | flex-shrink: 0; 5146 | -webkit-flex-grow: 0; 5147 | -moz-flex-grow: 0; 5148 | -ms-flex-grow: 0; 5149 | flex-grow: 0; 5150 | -webkit-align-content: flex-start; 5151 | -moz-align-content: flex-start; 5152 | -ms-align-content: flex-start; 5153 | align-content: flex-start; } 5154 | 5155 | .lhs { 5156 | width: 2px; 5157 | -webkit-flex-shrink: 0; 5158 | -moz-flex-shrink: 0; 5159 | -ms-flex-shrink: 0; 5160 | flex-shrink: 0; } 5161 | 5162 | .lhs2 { 5163 | width: 4px; 5164 | -webkit-flex-shrink: 0; 5165 | -moz-flex-shrink: 0; 5166 | -ms-flex-shrink: 0; 5167 | flex-shrink: 0; } 5168 | 5169 | .lhs3 { 5170 | width: 6px; 5171 | -webkit-flex-shrink: 0; 5172 | -moz-flex-shrink: 0; 5173 | -ms-flex-shrink: 0; 5174 | flex-shrink: 0; } 5175 | 5176 | .lhs4 { 5177 | width: 8px; 5178 | -webkit-flex-shrink: 0; 5179 | -moz-flex-shrink: 0; 5180 | -ms-flex-shrink: 0; 5181 | flex-shrink: 0; } 5182 | 5183 | .lhx { 5184 | -webkit-flex-grow: 1; 5185 | -moz-flex-grow: 1; 5186 | -ms-flex-grow: 1; 5187 | flex-grow: 1; 5188 | -webkit-flex-shrink: 1; 5189 | -moz-flex-shrink: 1; 5190 | -ms-flex-shrink: 1; 5191 | flex-shrink: 1; } 5192 | 5193 | .lhx2 { 5194 | -webkit-flex-grow: 2; 5195 | -moz-flex-grow: 2; 5196 | -ms-flex-grow: 2; 5197 | flex-grow: 2; 5198 | -webkit-flex-shrink: 1; 5199 | -moz-flex-shrink: 1; 5200 | -ms-flex-shrink: 1; 5201 | flex-shrink: 1; } 5202 | 5203 | .lhx3 { 5204 | -webkit-flex-grow: 3; 5205 | -moz-flex-grow: 3; 5206 | -ms-flex-grow: 3; 5207 | flex-grow: 3; 5208 | -webkit-flex-shrink: 1; 5209 | -moz-flex-shrink: 1; 5210 | -ms-flex-shrink: 1; 5211 | flex-shrink: 1; } 5212 | 5213 | .lhx4 { 5214 | -webkit-flex-grow: 4; 5215 | -moz-flex-grow: 4; 5216 | -ms-flex-grow: 4; 5217 | flex-grow: 4; 5218 | -webkit-flex-shrink: 1; 5219 | -moz-flex-shrink: 1; 5220 | -ms-flex-shrink: 1; 5221 | flex-shrink: 1; } 5222 | 5223 | .lhx5 { 5224 | -webkit-flex-grow: 5; 5225 | -moz-flex-grow: 5; 5226 | -ms-flex-grow: 5; 5227 | flex-grow: 5; 5228 | -webkit-flex-shrink: 1; 5229 | -moz-flex-shrink: 1; 5230 | -ms-flex-shrink: 1; 5231 | flex-shrink: 1; } 5232 | 5233 | .lvs { 5234 | height: 2px; 5235 | min-height: 2px; 5236 | -webkit-flex-shrink: 0; 5237 | -moz-flex-shrink: 0; 5238 | -ms-flex-shrink: 0; 5239 | flex-shrink: 0; } 5240 | 5241 | .lvs2 { 5242 | height: 4px; 5243 | min-height: 4px; 5244 | -webkit-flex-shrink: 0; 5245 | -moz-flex-shrink: 0; 5246 | -ms-flex-shrink: 0; 5247 | flex-shrink: 0; } 5248 | 5249 | .lvs3 { 5250 | height: 6px; 5251 | min-height: 6px; 5252 | -webkit-flex-shrink: 0; 5253 | -moz-flex-shrink: 0; 5254 | -ms-flex-shrink: 0; 5255 | flex-shrink: 0; } 5256 | 5257 | .lvs4 { 5258 | height: 8px; 5259 | min-height: 8px; 5260 | -webkit-flex-shrink: 0; 5261 | -moz-flex-shrink: 0; 5262 | -ms-flex-shrink: 0; 5263 | flex-shrink: 0; } 5264 | 5265 | .lvx { 5266 | -webkit-flex-grow: 1; 5267 | -moz-flex-grow: 1; 5268 | -ms-flex-grow: 1; 5269 | flex-grow: 1; 5270 | -webkit-flex-shrink: 1; 5271 | -moz-flex-shrink: 1; 5272 | -ms-flex-shrink: 1; 5273 | flex-shrink: 1; } 5274 | 5275 | .lvx2 { 5276 | -webkit-flex-grow: 2; 5277 | -moz-flex-grow: 2; 5278 | -ms-flex-grow: 2; 5279 | flex-grow: 2; 5280 | -webkit-flex-shrink: 1; 5281 | -moz-flex-shrink: 1; 5282 | -ms-flex-shrink: 1; 5283 | flex-shrink: 1; } 5284 | 5285 | .lvx3 { 5286 | -webkit-flex-grow: 3; 5287 | -moz-flex-grow: 3; 5288 | -ms-flex-grow: 3; 5289 | flex-grow: 3; 5290 | -webkit-flex-shrink: 1; 5291 | -moz-flex-shrink: 1; 5292 | -ms-flex-shrink: 1; 5293 | flex-shrink: 1; } 5294 | 5295 | .lvx4 { 5296 | -webkit-flex-grow: 4; 5297 | -moz-flex-grow: 4; 5298 | -ms-flex-grow: 4; 5299 | flex-grow: 4; 5300 | -webkit-flex-shrink: 1; 5301 | -moz-flex-shrink: 1; 5302 | -ms-flex-shrink: 1; 5303 | flex-shrink: 1; } 5304 | 5305 | .lvx5 { 5306 | -webkit-flex-grow: 5; 5307 | -moz-flex-grow: 5; 5308 | -ms-flex-grow: 5; 5309 | flex-grow: 5; 5310 | -webkit-flex-shrink: 1; 5311 | -moz-flex-shrink: 1; 5312 | -ms-flex-shrink: 1; 5313 | flex-shrink: 1; } 5314 | 5315 | .fg1 { 5316 | -webkit-flex-grow: 1; 5317 | -moz-flex-grow: 1; 5318 | -ms-flex-grow: 1; 5319 | flex-grow: 1; } 5320 | 5321 | .fg2 { 5322 | -webkit-flex-grow: 2; 5323 | -moz-flex-grow: 2; 5324 | -ms-flex-grow: 2; 5325 | flex-grow: 2; } 5326 | 5327 | .fg3 { 5328 | -webkit-flex-grow: 3; 5329 | -moz-flex-grow: 3; 5330 | -ms-flex-grow: 3; 5331 | flex-grow: 3; } 5332 | 5333 | .fg4 { 5334 | -webkit-flex-grow: 4; 5335 | -moz-flex-grow: 4; 5336 | -ms-flex-grow: 4; 5337 | flex-grow: 4; } 5338 | 5339 | .fg5 { 5340 | -webkit-flex-grow: 5; 5341 | -moz-flex-grow: 5; 5342 | -ms-flex-grow: 5; 5343 | flex-grow: 5; } 5344 | 5345 | .fg6 { 5346 | -webkit-flex-grow: 6; 5347 | -moz-flex-grow: 6; 5348 | -ms-flex-grow: 6; 5349 | flex-grow: 6; } 5350 | 5351 | .fg7 { 5352 | -webkit-flex-grow: 7; 5353 | -moz-flex-grow: 7; 5354 | -ms-flex-grow: 7; 5355 | flex-grow: 7; } 5356 | 5357 | .fg8 { 5358 | -webkit-flex-grow: 8; 5359 | -moz-flex-grow: 8; 5360 | -ms-flex-grow: 8; 5361 | flex-grow: 8; } 5362 | 5363 | .fg9 { 5364 | -webkit-flex-grow: 9; 5365 | -moz-flex-grow: 9; 5366 | -ms-flex-grow: 9; 5367 | flex-grow: 9; } 5368 | 5369 | .fg10 { 5370 | -webkit-flex-grow: 10; 5371 | -moz-flex-grow: 10; 5372 | -ms-flex-grow: 10; 5373 | flex-grow: 10; } 5374 | 5375 | .ltl { 5376 | -webkit-justify-content: flex-start; 5377 | justify-content: flex-start; 5378 | -webkit-flex-align: flex-start; 5379 | -moz-flex-align: flex-start; 5380 | -ms-flex-align: flex-start; 5381 | -webkit-align-items: flex-start; 5382 | align-items: flex-start; } 5383 | 5384 | .ltc { 5385 | -webkit-justify-content: flex-start; 5386 | justify-content: flex-start; 5387 | -webkit-flex-align: center; 5388 | -moz-flex-align: center; 5389 | -ms-flex-align: center; 5390 | -webkit-align-items: center; 5391 | align-items: center; } 5392 | 5393 | .ltr { 5394 | -webkit-justify-content: flex-start; 5395 | justify-content: flex-start; 5396 | -webkit-flex-align: flex-end; 5397 | -moz-flex-align: flex-end; 5398 | -ms-flex-align: flex-end; 5399 | -webkit-align-items: flex-end; 5400 | align-items: flex-end; } 5401 | 5402 | .ll { 5403 | -webkit-justify-content: center; 5404 | justify-content: center; 5405 | -webkit-flex-align: flex-start; 5406 | -moz-flex-align: flex-start; 5407 | -ms-flex-align: flex-start; 5408 | -webkit-align-items: flex-start; 5409 | align-items: flex-start; } 5410 | 5411 | .lc { 5412 | -webkit-justify-content: center; 5413 | justify-content: center; 5414 | -webkit-flex-align: center; 5415 | -moz-flex-align: center; 5416 | -ms-flex-align: center; 5417 | -webkit-align-items: center; 5418 | align-items: center; } 5419 | 5420 | .lr { 5421 | -webkit-justify-content: center; 5422 | justify-content: center; 5423 | -webkit-flex-align: flex-end; 5424 | -moz-flex-align: flex-end; 5425 | -ms-flex-align: flex-end; 5426 | -webkit-align-items: flex-end; 5427 | align-items: flex-end; } 5428 | 5429 | .lbl { 5430 | -webkit-justify-content: flex-end; 5431 | justify-content: flex-end; 5432 | -webkit-flex-align: flex-start; 5433 | -moz-flex-align: flex-start; 5434 | -ms-flex-align: flex-start; 5435 | -webkit-align-items: flex-start; 5436 | align-items: flex-start; } 5437 | 5438 | .lbc { 5439 | -webkit-justify-content: flex-end; 5440 | justify-content: flex-end; 5441 | -webkit-flex-align: center; 5442 | -moz-flex-align: center; 5443 | -ms-flex-align: center; 5444 | -webkit-align-items: center; 5445 | align-items: center; } 5446 | 5447 | .lbr { 5448 | -webkit-justify-content: flex-end; 5449 | justify-content: flex-end; 5450 | -webkit-flex-align: flex-end; 5451 | -moz-flex-align: flex-end; 5452 | -ms-flex-align: flex-end; 5453 | -webkit-align-items: flex-end; 5454 | align-items: flex-end; } 5455 | 5456 | .l-wrap { 5457 | -webkit-flex-wrap: wrap; 5458 | -moz-flex-wrap: wrap; 5459 | -ms-flex-wrap: wrap; 5460 | flex-wrap: wrap; } 5461 | 5462 | .l-rwrap { 5463 | -webkit-flex-wrap: wrap-reverse; 5464 | -moz-flex-wrap: wrap-reverse; 5465 | -ms-flex-wrap: wrap-reverse; 5466 | flex-wrap: wrap-reverse; } 5467 | 5468 | .l-nowrap { 5469 | -webkit-flex-wrap: nowrap; 5470 | -moz-flex-wrap: nowrap; 5471 | -ms-flex-wrap: nowrap; 5472 | flex-wrap: nowrap; } 5473 | -------------------------------------------------------------------------------- /css/shortcutcss-no-color.min.css: -------------------------------------------------------------------------------- 1 | .abs{position:absolute}.rel{position:relative}.fix{position:fixed}.c-default{cursor:default}.c-pointer{cursor:pointer}.c-none{cursor:none}.mouse-disable{pointer-events:none}.select-disable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.scroll{overflow:auto}.scroll-x{overflow-x:auto;overflow-y:hidden}.scroll-y{overflow-y:auto;overflow-x:hidden}.tl{text-align:left}.tc{text-align:center}.tr{text-align:right}.t-wrap{white-space:normal}.t-nowrap{white-space:nowrap}.inh{display:inherit}.ib{display:inline-block}.bl{display:block}.none{display:none}.fll{float:left}.flr{float:right}.fs6{font-size:6px}.fs8{font-size:8px}.fs10{font-size:10px}.fs12{font-size:12px}.fs14{font-size:14px}.fs16{font-size:16px}.fs18{font-size:18px}.fs20{font-size:20px}.fs22{font-size:22px}.fs24{font-size:24px}.fs26{font-size:26px}.fs28{font-size:28px}.fs30{font-size:30px}.fs32{font-size:32px}.fs34{font-size:34px}.fs36{font-size:36px}.fs38{font-size:38px}.fs40{font-size:40px}.fs42{font-size:42px}.fs44{font-size:44px}.fs46{font-size:46px}.fs48{font-size:48px}.fs50{font-size:50px}.fs52{font-size:52px}.fs54{font-size:54px}.fs56{font-size:56px}.fs58{font-size:58px}.fs60{font-size:60px}.fs62{font-size:62px}.fs64{font-size:64px}.fs66{font-size:66px}.fs68{font-size:68px}.fs70{font-size:70px}.fs72{font-size:72px}.fs74{font-size:74px}.fs76{font-size:76px}.fs78{font-size:78px}.fs80{font-size:80px}.fs82{font-size:82px}.fs84{font-size:84px}.fs86{font-size:86px}.fs88{font-size:88px}.fs90{font-size:90px}.fs92{font-size:92px}.fs94{font-size:94px}.fs96{font-size:96px}.fs98{font-size:98px}.fs100{font-size:100px}.fsr2{font-size:0.02rem}.fsr4{font-size:0.04rem}.fsr6{font-size:0.06rem}.fsr8{font-size:0.08rem}.fsr10{font-size:0.1rem}.fsr12{font-size:0.12rem}.fsr14{font-size:0.14rem}.fsr16{font-size:0.16rem}.fsr18{font-size:0.18rem}.fsr20{font-size:0.2rem}.fsr22{font-size:0.22rem}.fsr24{font-size:0.24rem}.fsr26{font-size:0.26rem}.fsr28{font-size:0.28rem}.fsr30{font-size:0.3rem}.fsr32{font-size:0.32rem}.fsr34{font-size:0.34rem}.fsr36{font-size:0.36rem}.fsr38{font-size:0.38rem}.fsr40{font-size:0.4rem}.fsr42{font-size:0.42rem}.fsr44{font-size:0.44rem}.fsr46{font-size:0.46rem}.fsr48{font-size:0.48rem}.fsr50{font-size:0.5rem}.fsr52{font-size:0.52rem}.fsr54{font-size:0.54rem}.fsr56{font-size:0.56rem}.fsr58{font-size:0.58rem}.fsr60{font-size:0.6rem}.fsr62{font-size:0.62rem}.fsr64{font-size:0.64rem}.fsr66{font-size:0.66rem}.fsr68{font-size:0.68rem}.fsr70{font-size:0.7rem}.fsr72{font-size:0.72rem}.fsr74{font-size:0.74rem}.fsr76{font-size:0.76rem}.fsr78{font-size:0.78rem}.fsr80{font-size:0.8rem}.fsr82{font-size:0.82rem}.fsr84{font-size:0.84rem}.fsr86{font-size:0.86rem}.fsr88{font-size:0.88rem}.fsr90{font-size:0.9rem}.fsr92{font-size:0.92rem}.fsr94{font-size:0.94rem}.fsr96{font-size:0.96rem}.fsr98{font-size:0.98rem}.fsr100{font-size:1rem}.fsr102{font-size:1.02rem}.fsr104{font-size:1.04rem}.fsr106{font-size:1.06rem}.fsr108{font-size:1.08rem}.fsr110{font-size:1.1rem}.fsr112{font-size:1.12rem}.fsr114{font-size:1.14rem}.fsr116{font-size:1.16rem}.fsr118{font-size:1.18rem}.fsr120{font-size:1.2rem}.fsr122{font-size:1.22rem}.fsr124{font-size:1.24rem}.fsr126{font-size:1.26rem}.fsr128{font-size:1.28rem}.fsr130{font-size:1.3rem}.fsr132{font-size:1.32rem}.fsr134{font-size:1.34rem}.fsr136{font-size:1.36rem}.fsr138{font-size:1.38rem}.fsr140{font-size:1.4rem}.fsr142{font-size:1.42rem}.fsr144{font-size:1.44rem}.fsr146{font-size:1.46rem}.fsr148{font-size:1.48rem}.fsr150{font-size:1.5rem}.fsr152{font-size:1.52rem}.fsr154{font-size:1.54rem}.fsr156{font-size:1.56rem}.fsr158{font-size:1.58rem}.fsr160{font-size:1.6rem}.fsr162{font-size:1.62rem}.fsr164{font-size:1.64rem}.fsr166{font-size:1.66rem}.fsr168{font-size:1.68rem}.fsr170{font-size:1.7rem}.fsr172{font-size:1.72rem}.fsr174{font-size:1.74rem}.fsr176{font-size:1.76rem}.fsr178{font-size:1.78rem}.fsr180{font-size:1.8rem}.fsr182{font-size:1.82rem}.fsr184{font-size:1.84rem}.fsr186{font-size:1.86rem}.fsr188{font-size:1.88rem}.fsr190{font-size:1.9rem}.fsr192{font-size:1.92rem}.fsr194{font-size:1.94rem}.fsr196{font-size:1.96rem}.fsr198{font-size:1.98rem}.fsr200{font-size:2rem}.fsr202{font-size:2.02rem}.fsr204{font-size:2.04rem}.fsr206{font-size:2.06rem}.fsr208{font-size:2.08rem}.fsr210{font-size:2.1rem}.fsr212{font-size:2.12rem}.fsr214{font-size:2.14rem}.fsr216{font-size:2.16rem}.fsr218{font-size:2.18rem}.fsr220{font-size:2.2rem}.fsr222{font-size:2.22rem}.fsr224{font-size:2.24rem}.fsr226{font-size:2.26rem}.fsr228{font-size:2.28rem}.fsr230{font-size:2.3rem}.fsr232{font-size:2.32rem}.fsr234{font-size:2.34rem}.fsr236{font-size:2.36rem}.fsr238{font-size:2.38rem}.fsr240{font-size:2.4rem}.fsr242{font-size:2.42rem}.fsr244{font-size:2.44rem}.fsr246{font-size:2.46rem}.fsr248{font-size:2.48rem}.fsr250{font-size:2.5rem}.fsr252{font-size:2.52rem}.fsr254{font-size:2.54rem}.fsr256{font-size:2.56rem}.fsr258{font-size:2.58rem}.fsr260{font-size:2.6rem}.fsr262{font-size:2.62rem}.fsr264{font-size:2.64rem}.fsr266{font-size:2.66rem}.fsr268{font-size:2.68rem}.fsr270{font-size:2.7rem}.fsr272{font-size:2.72rem}.fsr274{font-size:2.74rem}.fsr276{font-size:2.76rem}.fsr278{font-size:2.78rem}.fsr280{font-size:2.8rem}.fsr282{font-size:2.82rem}.fsr284{font-size:2.84rem}.fsr286{font-size:2.86rem}.fsr288{font-size:2.88rem}.fsr290{font-size:2.9rem}.fsr292{font-size:2.92rem}.fsr294{font-size:2.94rem}.fsr296{font-size:2.96rem}.fsr298{font-size:2.98rem}.fsr300{font-size:3rem}.fsr302{font-size:3.02rem}.fsr304{font-size:3.04rem}.fsr306{font-size:3.06rem}.fsr308{font-size:3.08rem}.fsr310{font-size:3.1rem}.fsr312{font-size:3.12rem}.fsr314{font-size:3.14rem}.fsr316{font-size:3.16rem}.fsr318{font-size:3.18rem}.fsr320{font-size:3.2rem}.fsr322{font-size:3.22rem}.fsr324{font-size:3.24rem}.fsr326{font-size:3.26rem}.fsr328{font-size:3.28rem}.fsr330{font-size:3.3rem}.fsr332{font-size:3.32rem}.fsr334{font-size:3.34rem}.fsr336{font-size:3.36rem}.fsr338{font-size:3.38rem}.fsr340{font-size:3.4rem}.fsr342{font-size:3.42rem}.fsr344{font-size:3.44rem}.fsr346{font-size:3.46rem}.fsr348{font-size:3.48rem}.fsr350{font-size:3.5rem}.fsr352{font-size:3.52rem}.fsr354{font-size:3.54rem}.fsr356{font-size:3.56rem}.fsr358{font-size:3.58rem}.fsr360{font-size:3.6rem}.fsr362{font-size:3.62rem}.fsr364{font-size:3.64rem}.fsr366{font-size:3.66rem}.fsr368{font-size:3.68rem}.fsr370{font-size:3.7rem}.fsr372{font-size:3.72rem}.fsr374{font-size:3.74rem}.fsr376{font-size:3.76rem}.fsr378{font-size:3.78rem}.fsr380{font-size:3.8rem}.fsr382{font-size:3.82rem}.fsr384{font-size:3.84rem}.fsr386{font-size:3.86rem}.fsr388{font-size:3.88rem}.fsr390{font-size:3.9rem}.fsr392{font-size:3.92rem}.fsr394{font-size:3.94rem}.fsr396{font-size:3.96rem}.fsr398{font-size:3.98rem}.fsr400{font-size:4rem}.fse2{font-size:0.02em}.fse4{font-size:0.04em}.fse6{font-size:0.06em}.fse8{font-size:0.08em}.fse10{font-size:0.1em}.fse12{font-size:0.12em}.fse14{font-size:0.14em}.fse16{font-size:0.16em}.fse18{font-size:0.18em}.fse20{font-size:0.2em}.fse22{font-size:0.22em}.fse24{font-size:0.24em}.fse26{font-size:0.26em}.fse28{font-size:0.28em}.fse30{font-size:0.3em}.fse32{font-size:0.32em}.fse34{font-size:0.34em}.fse36{font-size:0.36em}.fse38{font-size:0.38em}.fse40{font-size:0.4em}.fse42{font-size:0.42em}.fse44{font-size:0.44em}.fse46{font-size:0.46em}.fse48{font-size:0.48em}.fse50{font-size:0.5em}.fse52{font-size:0.52em}.fse54{font-size:0.54em}.fse56{font-size:0.56em}.fse58{font-size:0.58em}.fse60{font-size:0.6em}.fse62{font-size:0.62em}.fse64{font-size:0.64em}.fse66{font-size:0.66em}.fse68{font-size:0.68em}.fse70{font-size:0.7em}.fse72{font-size:0.72em}.fse74{font-size:0.74em}.fse76{font-size:0.76em}.fse78{font-size:0.78em}.fse80{font-size:0.8em}.fse82{font-size:0.82em}.fse84{font-size:0.84em}.fse86{font-size:0.86em}.fse88{font-size:0.88em}.fse90{font-size:0.9em}.fse92{font-size:0.92em}.fse94{font-size:0.94em}.fse96{font-size:0.96em}.fse98{font-size:0.98em}.fse100{font-size:1em}.fse102{font-size:1.02em}.fse104{font-size:1.04em}.fse106{font-size:1.06em}.fse108{font-size:1.08em}.fse110{font-size:1.1em}.fse112{font-size:1.12em}.fse114{font-size:1.14em}.fse116{font-size:1.16em}.fse118{font-size:1.18em}.fse120{font-size:1.2em}.fse122{font-size:1.22em}.fse124{font-size:1.24em}.fse126{font-size:1.26em}.fse128{font-size:1.28em}.fse130{font-size:1.3em}.fse132{font-size:1.32em}.fse134{font-size:1.34em}.fse136{font-size:1.36em}.fse138{font-size:1.38em}.fse140{font-size:1.4em}.fse142{font-size:1.42em}.fse144{font-size:1.44em}.fse146{font-size:1.46em}.fse148{font-size:1.48em}.fse150{font-size:1.5em}.fse152{font-size:1.52em}.fse154{font-size:1.54em}.fse156{font-size:1.56em}.fse158{font-size:1.58em}.fse160{font-size:1.6em}.fse162{font-size:1.62em}.fse164{font-size:1.64em}.fse166{font-size:1.66em}.fse168{font-size:1.68em}.fse170{font-size:1.7em}.fse172{font-size:1.72em}.fse174{font-size:1.74em}.fse176{font-size:1.76em}.fse178{font-size:1.78em}.fse180{font-size:1.8em}.fse182{font-size:1.82em}.fse184{font-size:1.84em}.fse186{font-size:1.86em}.fse188{font-size:1.88em}.fse190{font-size:1.9em}.fse192{font-size:1.92em}.fse194{font-size:1.94em}.fse196{font-size:1.96em}.fse198{font-size:1.98em}.fse200{font-size:2em}.fse202{font-size:2.02em}.fse204{font-size:2.04em}.fse206{font-size:2.06em}.fse208{font-size:2.08em}.fse210{font-size:2.1em}.fse212{font-size:2.12em}.fse214{font-size:2.14em}.fse216{font-size:2.16em}.fse218{font-size:2.18em}.fse220{font-size:2.2em}.fse222{font-size:2.22em}.fse224{font-size:2.24em}.fse226{font-size:2.26em}.fse228{font-size:2.28em}.fse230{font-size:2.3em}.fse232{font-size:2.32em}.fse234{font-size:2.34em}.fse236{font-size:2.36em}.fse238{font-size:2.38em}.fse240{font-size:2.4em}.fse242{font-size:2.42em}.fse244{font-size:2.44em}.fse246{font-size:2.46em}.fse248{font-size:2.48em}.fse250{font-size:2.5em}.fse252{font-size:2.52em}.fse254{font-size:2.54em}.fse256{font-size:2.56em}.fse258{font-size:2.58em}.fse260{font-size:2.6em}.fse262{font-size:2.62em}.fse264{font-size:2.64em}.fse266{font-size:2.66em}.fse268{font-size:2.68em}.fse270{font-size:2.7em}.fse272{font-size:2.72em}.fse274{font-size:2.74em}.fse276{font-size:2.76em}.fse278{font-size:2.78em}.fse280{font-size:2.8em}.fse282{font-size:2.82em}.fse284{font-size:2.84em}.fse286{font-size:2.86em}.fse288{font-size:2.88em}.fse290{font-size:2.9em}.fse292{font-size:2.92em}.fse294{font-size:2.94em}.fse296{font-size:2.96em}.fse298{font-size:2.98em}.fse300{font-size:3em}.fse302{font-size:3.02em}.fse304{font-size:3.04em}.fse306{font-size:3.06em}.fse308{font-size:3.08em}.fse310{font-size:3.1em}.fse312{font-size:3.12em}.fse314{font-size:3.14em}.fse316{font-size:3.16em}.fse318{font-size:3.18em}.fse320{font-size:3.2em}.fse322{font-size:3.22em}.fse324{font-size:3.24em}.fse326{font-size:3.26em}.fse328{font-size:3.28em}.fse330{font-size:3.3em}.fse332{font-size:3.32em}.fse334{font-size:3.34em}.fse336{font-size:3.36em}.fse338{font-size:3.38em}.fse340{font-size:3.4em}.fse342{font-size:3.42em}.fse344{font-size:3.44em}.fse346{font-size:3.46em}.fse348{font-size:3.48em}.fse350{font-size:3.5em}.fse352{font-size:3.52em}.fse354{font-size:3.54em}.fse356{font-size:3.56em}.fse358{font-size:3.58em}.fse360{font-size:3.6em}.fse362{font-size:3.62em}.fse364{font-size:3.64em}.fse366{font-size:3.66em}.fse368{font-size:3.68em}.fse370{font-size:3.7em}.fse372{font-size:3.72em}.fse374{font-size:3.74em}.fse376{font-size:3.76em}.fse378{font-size:3.78em}.fse380{font-size:3.8em}.fse382{font-size:3.82em}.fse384{font-size:3.84em}.fse386{font-size:3.86em}.fse388{font-size:3.88em}.fse390{font-size:3.9em}.fse392{font-size:3.92em}.fse394{font-size:3.94em}.fse396{font-size:3.96em}.fse398{font-size:3.98em}.fse400{font-size:4em}.w0{width:0px}.w2{width:2px}.w4{width:4px}.w6{width:6px}.w8{width:8px}.w10{width:10px}.w12{width:12px}.w14{width:14px}.w16{width:16px}.w18{width:18px}.w20{width:20px}.w22{width:22px}.w24{width:24px}.w26{width:26px}.w28{width:28px}.w30{width:30px}.w32{width:32px}.w34{width:34px}.w36{width:36px}.w38{width:38px}.w40{width:40px}.w42{width:42px}.w44{width:44px}.w46{width:46px}.w48{width:48px}.w50{width:50px}.w52{width:52px}.w54{width:54px}.w56{width:56px}.w58{width:58px}.w60{width:60px}.w62{width:62px}.w64{width:64px}.w66{width:66px}.w68{width:68px}.w70{width:70px}.w72{width:72px}.w74{width:74px}.w76{width:76px}.w78{width:78px}.w80{width:80px}.w82{width:82px}.w84{width:84px}.w86{width:86px}.w88{width:88px}.w90{width:90px}.w92{width:92px}.w94{width:94px}.w96{width:96px}.w98{width:98px}.w100{width:100px}.w102{width:102px}.w104{width:104px}.w106{width:106px}.w108{width:108px}.w110{width:110px}.w112{width:112px}.w114{width:114px}.w116{width:116px}.w118{width:118px}.w120{width:120px}.w122{width:122px}.w124{width:124px}.w126{width:126px}.w128{width:128px}.h0{height:0px}.h2{height:2px}.h4{height:4px}.h6{height:6px}.h8{height:8px}.h10{height:10px}.h12{height:12px}.h14{height:14px}.h16{height:16px}.h18{height:18px}.h20{height:20px}.h22{height:22px}.h24{height:24px}.h26{height:26px}.h28{height:28px}.h30{height:30px}.h32{height:32px}.h34{height:34px}.h36{height:36px}.h38{height:38px}.h40{height:40px}.h42{height:42px}.h44{height:44px}.h46{height:46px}.h48{height:48px}.h50{height:50px}.h52{height:52px}.h54{height:54px}.h56{height:56px}.h58{height:58px}.h60{height:60px}.h62{height:62px}.h64{height:64px}.h66{height:66px}.h68{height:68px}.h70{height:70px}.h72{height:72px}.h74{height:74px}.h76{height:76px}.h78{height:78px}.h80{height:80px}.h82{height:82px}.h84{height:84px}.h86{height:86px}.h88{height:88px}.h90{height:90px}.h92{height:92px}.h94{height:94px}.h96{height:96px}.h98{height:98px}.h100{height:100px}.h102{height:102px}.h104{height:104px}.h106{height:106px}.h108{height:108px}.h110{height:110px}.h112{height:112px}.h114{height:114px}.h116{height:116px}.h118{height:118px}.h120{height:120px}.h122{height:122px}.h124{height:124px}.h126{height:126px}.h128{height:128px}.wh0{width:0px;height:0px}.wh2{width:2px;height:2px}.wh4{width:4px;height:4px}.wh6{width:6px;height:6px}.wh8{width:8px;height:8px}.wh10{width:10px;height:10px}.wh12{width:12px;height:12px}.wh14{width:14px;height:14px}.wh16{width:16px;height:16px}.wh18{width:18px;height:18px}.wh20{width:20px;height:20px}.wh22{width:22px;height:22px}.wh24{width:24px;height:24px}.wh26{width:26px;height:26px}.wh28{width:28px;height:28px}.wh30{width:30px;height:30px}.wh32{width:32px;height:32px}.wh34{width:34px;height:34px}.wh36{width:36px;height:36px}.wh38{width:38px;height:38px}.wh40{width:40px;height:40px}.wh42{width:42px;height:42px}.wh44{width:44px;height:44px}.wh46{width:46px;height:46px}.wh48{width:48px;height:48px}.wh50{width:50px;height:50px}.wh52{width:52px;height:52px}.wh54{width:54px;height:54px}.wh56{width:56px;height:56px}.wh58{width:58px;height:58px}.wh60{width:60px;height:60px}.wh62{width:62px;height:62px}.wh64{width:64px;height:64px}.wh66{width:66px;height:66px}.wh68{width:68px;height:68px}.wh70{width:70px;height:70px}.wh72{width:72px;height:72px}.wh74{width:74px;height:74px}.wh76{width:76px;height:76px}.wh78{width:78px;height:78px}.wh80{width:80px;height:80px}.wh82{width:82px;height:82px}.wh84{width:84px;height:84px}.wh86{width:86px;height:86px}.wh88{width:88px;height:88px}.wh90{width:90px;height:90px}.wh92{width:92px;height:92px}.wh94{width:94px;height:94px}.wh96{width:96px;height:96px}.wh98{width:98px;height:98px}.wh100{width:100px;height:100px}.wh102{width:102px;height:102px}.wh104{width:104px;height:104px}.wh106{width:106px;height:106px}.wh108{width:108px;height:108px}.wh110{width:110px;height:110px}.wh112{width:112px;height:112px}.wh114{width:114px;height:114px}.wh116{width:116px;height:116px}.wh118{width:118px;height:118px}.wh120{width:120px;height:120px}.wh122{width:122px;height:122px}.wh124{width:124px;height:124px}.wh126{width:126px;height:126px}.wh128{width:128px;height:128px}.w0p{width:0%}.w5p{width:5%}.w10p{width:10%}.w15p{width:15%}.w20p{width:20%}.w25p{width:25%}.w30p{width:30%}.w35p{width:35%}.w40p{width:40%}.w45p{width:45%}.w50p{width:50%}.w55p{width:55%}.w60p{width:60%}.w65p{width:65%}.w70p{width:70%}.w75p{width:75%}.w80p{width:80%}.w85p{width:85%}.w90p{width:90%}.w95p{width:95%}.w100p{width:100%}.h0p{height:0%}.h5p{height:5%}.h10p{height:10%}.h15p{height:15%}.h20p{height:20%}.h25p{height:25%}.h30p{height:30%}.h35p{height:35%}.h40p{height:40%}.h45p{height:45%}.h50p{height:50%}.h55p{height:55%}.h60p{height:60%}.h65p{height:65%}.h70p{height:70%}.h75p{height:75%}.h80p{height:80%}.h85p{height:85%}.h90p{height:90%}.h95p{height:95%}.h100p{height:100%}.wh0p{width:0%;height:0%}.wh5p{width:5%;height:5%}.wh10p{width:10%;height:10%}.wh15p{width:15%;height:15%}.wh20p{width:20%;height:20%}.wh25p{width:25%;height:25%}.wh30p{width:30%;height:30%}.wh35p{width:35%;height:35%}.wh40p{width:40%;height:40%}.wh45p{width:45%;height:45%}.wh50p{width:50%;height:50%}.wh55p{width:55%;height:55%}.wh60p{width:60%;height:60%}.wh65p{width:65%;height:65%}.wh70p{width:70%;height:70%}.wh75p{width:75%;height:75%}.wh80p{width:80%;height:80%}.wh85p{width:85%;height:85%}.wh90p{width:90%;height:90%}.wh95p{width:95%;height:95%}.wh100p{width:100%;height:100%}.vw0{width:0vw}.vw5{width:5vw}.vw10{width:10vw}.vw15{width:15vw}.vw20{width:20vw}.vw25{width:25vw}.vw30{width:30vw}.vw35{width:35vw}.vw40{width:40vw}.vw45{width:45vw}.vw50{width:50vw}.vw55{width:55vw}.vw60{width:60vw}.vw65{width:65vw}.vw70{width:70vw}.vw75{width:75vw}.vw80{width:80vw}.vw85{width:85vw}.vw90{width:90vw}.vw95{width:95vw}.vw100{width:100vw}.vh0{height:0vh}.vh5{height:5vh}.vh10{height:10vh}.vh15{height:15vh}.vh20{height:20vh}.vh25{height:25vh}.vh30{height:30vh}.vh35{height:35vh}.vh40{height:40vh}.vh45{height:45vh}.vh50{height:50vh}.vh55{height:55vh}.vh60{height:60vh}.vh65{height:65vh}.vh70{height:70vh}.vh75{height:75vh}.vh80{height:80vh}.vh85{height:85vh}.vh90{height:90vh}.vh95{height:95vh}.vh100{height:100vh}.vwh0{width:0vw;height:0vh}.vwh5{width:5vw;height:5vh}.vwh10{width:10vw;height:10vh}.vwh15{width:15vw;height:15vh}.vwh20{width:20vw;height:20vh}.vwh25{width:25vw;height:25vh}.vwh30{width:30vw;height:30vh}.vwh35{width:35vw;height:35vh}.vwh40{width:40vw;height:40vh}.vwh45{width:45vw;height:45vh}.vwh50{width:50vw;height:50vh}.vwh55{width:55vw;height:55vh}.vwh60{width:60vw;height:60vh}.vwh65{width:65vw;height:65vh}.vwh70{width:70vw;height:70vh}.vwh75{width:75vw;height:75vh}.vwh80{width:80vw;height:80vh}.vwh85{width:85vw;height:85vh}.vwh90{width:90vw;height:90vh}.vwh95{width:95vw;height:95vh}.vwh100{width:100vw;height:100vh}.w0r{width:0rem}.w5r{width:0.05rem}.w10r{width:0.1rem}.w15r{width:0.15rem}.w20r{width:0.2rem}.w25r{width:0.25rem}.w30r{width:0.3rem}.w35r{width:0.35rem}.w40r{width:0.4rem}.w45r{width:0.45rem}.w50r{width:0.5rem}.w55r{width:0.55rem}.w60r{width:0.6rem}.w65r{width:0.65rem}.w70r{width:0.7rem}.w75r{width:0.75rem}.w80r{width:0.8rem}.w85r{width:0.85rem}.w90r{width:0.9rem}.w95r{width:0.95rem}.w100r{width:1rem}.w105r{width:1.05rem}.w110r{width:1.1rem}.w115r{width:1.15rem}.w120r{width:1.2rem}.w125r{width:1.25rem}.w130r{width:1.3rem}.w135r{width:1.35rem}.w140r{width:1.4rem}.w145r{width:1.45rem}.w150r{width:1.5rem}.w155r{width:1.55rem}.w160r{width:1.6rem}.w165r{width:1.65rem}.w170r{width:1.7rem}.w175r{width:1.75rem}.w180r{width:1.8rem}.w185r{width:1.85rem}.w190r{width:1.9rem}.w195r{width:1.95rem}.w200r{width:2rem}.w205r{width:2.05rem}.w210r{width:2.1rem}.w215r{width:2.15rem}.w220r{width:2.2rem}.w225r{width:2.25rem}.w230r{width:2.3rem}.w235r{width:2.35rem}.w240r{width:2.4rem}.w245r{width:2.45rem}.w250r{width:2.5rem}.w255r{width:2.55rem}.w260r{width:2.6rem}.w265r{width:2.65rem}.w270r{width:2.7rem}.w275r{width:2.75rem}.w280r{width:2.8rem}.w285r{width:2.85rem}.w290r{width:2.9rem}.w295r{width:2.95rem}.w300r{width:3rem}.w305r{width:3.05rem}.w310r{width:3.1rem}.w315r{width:3.15rem}.w320r{width:3.2rem}.w325r{width:3.25rem}.w330r{width:3.3rem}.w335r{width:3.35rem}.w340r{width:3.4rem}.w345r{width:3.45rem}.w350r{width:3.5rem}.w355r{width:3.55rem}.w360r{width:3.6rem}.w365r{width:3.65rem}.w370r{width:3.7rem}.w375r{width:3.75rem}.w380r{width:3.8rem}.w385r{width:3.85rem}.w390r{width:3.9rem}.w395r{width:3.95rem}.w400r{width:4rem}.h0r{height:0rem}.h5r{height:0.05rem}.h10r{height:0.1rem}.h15r{height:0.15rem}.h20r{height:0.2rem}.h25r{height:0.25rem}.h30r{height:0.3rem}.h35r{height:0.35rem}.h40r{height:0.4rem}.h45r{height:0.45rem}.h50r{height:0.5rem}.h55r{height:0.55rem}.h60r{height:0.6rem}.h65r{height:0.65rem}.h70r{height:0.7rem}.h75r{height:0.75rem}.h80r{height:0.8rem}.h85r{height:0.85rem}.h90r{height:0.9rem}.h95r{height:0.95rem}.h100r{height:1rem}.h105r{height:1.05rem}.h110r{height:1.1rem}.h115r{height:1.15rem}.h120r{height:1.2rem}.h125r{height:1.25rem}.h130r{height:1.3rem}.h135r{height:1.35rem}.h140r{height:1.4rem}.h145r{height:1.45rem}.h150r{height:1.5rem}.h155r{height:1.55rem}.h160r{height:1.6rem}.h165r{height:1.65rem}.h170r{height:1.7rem}.h175r{height:1.75rem}.h180r{height:1.8rem}.h185r{height:1.85rem}.h190r{height:1.9rem}.h195r{height:1.95rem}.h200r{height:2rem}.h205r{height:2.05rem}.h210r{height:2.1rem}.h215r{height:2.15rem}.h220r{height:2.2rem}.h225r{height:2.25rem}.h230r{height:2.3rem}.h235r{height:2.35rem}.h240r{height:2.4rem}.h245r{height:2.45rem}.h250r{height:2.5rem}.h255r{height:2.55rem}.h260r{height:2.6rem}.h265r{height:2.65rem}.h270r{height:2.7rem}.h275r{height:2.75rem}.h280r{height:2.8rem}.h285r{height:2.85rem}.h290r{height:2.9rem}.h295r{height:2.95rem}.h300r{height:3rem}.h305r{height:3.05rem}.h310r{height:3.1rem}.h315r{height:3.15rem}.h320r{height:3.2rem}.h325r{height:3.25rem}.h330r{height:3.3rem}.h335r{height:3.35rem}.h340r{height:3.4rem}.h345r{height:3.45rem}.h350r{height:3.5rem}.h355r{height:3.55rem}.h360r{height:3.6rem}.h365r{height:3.65rem}.h370r{height:3.7rem}.h375r{height:3.75rem}.h380r{height:3.8rem}.h385r{height:3.85rem}.h390r{height:3.9rem}.h395r{height:3.95rem}.h400r{height:4rem}.wh0r{width:0rem;height:0rem}.wh5r{width:0.05rem;height:0.05rem}.wh10r{width:0.1rem;height:0.1rem}.wh15r{width:0.15rem;height:0.15rem}.wh20r{width:0.2rem;height:0.2rem}.wh25r{width:0.25rem;height:0.25rem}.wh30r{width:0.3rem;height:0.3rem}.wh35r{width:0.35rem;height:0.35rem}.wh40r{width:0.4rem;height:0.4rem}.wh45r{width:0.45rem;height:0.45rem}.wh50r{width:0.5rem;height:0.5rem}.wh55r{width:0.55rem;height:0.55rem}.wh60r{width:0.6rem;height:0.6rem}.wh65r{width:0.65rem;height:0.65rem}.wh70r{width:0.7rem;height:0.7rem}.wh75r{width:0.75rem;height:0.75rem}.wh80r{width:0.8rem;height:0.8rem}.wh85r{width:0.85rem;height:0.85rem}.wh90r{width:0.9rem;height:0.9rem}.wh95r{width:0.95rem;height:0.95rem}.wh100r{width:1rem;height:1rem}.wh105r{width:1.05rem;height:1.05rem}.wh110r{width:1.1rem;height:1.1rem}.wh115r{width:1.15rem;height:1.15rem}.wh120r{width:1.2rem;height:1.2rem}.wh125r{width:1.25rem;height:1.25rem}.wh130r{width:1.3rem;height:1.3rem}.wh135r{width:1.35rem;height:1.35rem}.wh140r{width:1.4rem;height:1.4rem}.wh145r{width:1.45rem;height:1.45rem}.wh150r{width:1.5rem;height:1.5rem}.wh155r{width:1.55rem;height:1.55rem}.wh160r{width:1.6rem;height:1.6rem}.wh165r{width:1.65rem;height:1.65rem}.wh170r{width:1.7rem;height:1.7rem}.wh175r{width:1.75rem;height:1.75rem}.wh180r{width:1.8rem;height:1.8rem}.wh185r{width:1.85rem;height:1.85rem}.wh190r{width:1.9rem;height:1.9rem}.wh195r{width:1.95rem;height:1.95rem}.wh200r{width:2rem;height:2rem}.wh205r{width:2.05rem;height:2.05rem}.wh210r{width:2.1rem;height:2.1rem}.wh215r{width:2.15rem;height:2.15rem}.wh220r{width:2.2rem;height:2.2rem}.wh225r{width:2.25rem;height:2.25rem}.wh230r{width:2.3rem;height:2.3rem}.wh235r{width:2.35rem;height:2.35rem}.wh240r{width:2.4rem;height:2.4rem}.wh245r{width:2.45rem;height:2.45rem}.wh250r{width:2.5rem;height:2.5rem}.wh255r{width:2.55rem;height:2.55rem}.wh260r{width:2.6rem;height:2.6rem}.wh265r{width:2.65rem;height:2.65rem}.wh270r{width:2.7rem;height:2.7rem}.wh275r{width:2.75rem;height:2.75rem}.wh280r{width:2.8rem;height:2.8rem}.wh285r{width:2.85rem;height:2.85rem}.wh290r{width:2.9rem;height:2.9rem}.wh295r{width:2.95rem;height:2.95rem}.wh300r{width:3rem;height:3rem}.wh305r{width:3.05rem;height:3.05rem}.wh310r{width:3.1rem;height:3.1rem}.wh315r{width:3.15rem;height:3.15rem}.wh320r{width:3.2rem;height:3.2rem}.wh325r{width:3.25rem;height:3.25rem}.wh330r{width:3.3rem;height:3.3rem}.wh335r{width:3.35rem;height:3.35rem}.wh340r{width:3.4rem;height:3.4rem}.wh345r{width:3.45rem;height:3.45rem}.wh350r{width:3.5rem;height:3.5rem}.wh355r{width:3.55rem;height:3.55rem}.wh360r{width:3.6rem;height:3.6rem}.wh365r{width:3.65rem;height:3.65rem}.wh370r{width:3.7rem;height:3.7rem}.wh375r{width:3.75rem;height:3.75rem}.wh380r{width:3.8rem;height:3.8rem}.wh385r{width:3.85rem;height:3.85rem}.wh390r{width:3.9rem;height:3.9rem}.wh395r{width:3.95rem;height:3.95rem}.wh400r{width:4rem;height:4rem}.w0e{width:0em}.w5e{width:0.05em}.w10e{width:0.1em}.w15e{width:0.15em}.w20e{width:0.2em}.w25e{width:0.25em}.w30e{width:0.3em}.w35e{width:0.35em}.w40e{width:0.4em}.w45e{width:0.45em}.w50e{width:0.5em}.w55e{width:0.55em}.w60e{width:0.6em}.w65e{width:0.65em}.w70e{width:0.7em}.w75e{width:0.75em}.w80e{width:0.8em}.w85e{width:0.85em}.w90e{width:0.9em}.w95e{width:0.95em}.w100e{width:1em}.w105e{width:1.05em}.w110e{width:1.1em}.w115e{width:1.15em}.w120e{width:1.2em}.w125e{width:1.25em}.w130e{width:1.3em}.w135e{width:1.35em}.w140e{width:1.4em}.w145e{width:1.45em}.w150e{width:1.5em}.w155e{width:1.55em}.w160e{width:1.6em}.w165e{width:1.65em}.w170e{width:1.7em}.w175e{width:1.75em}.w180e{width:1.8em}.w185e{width:1.85em}.w190e{width:1.9em}.w195e{width:1.95em}.w200e{width:2em}.w205e{width:2.05em}.w210e{width:2.1em}.w215e{width:2.15em}.w220e{width:2.2em}.w225e{width:2.25em}.w230e{width:2.3em}.w235e{width:2.35em}.w240e{width:2.4em}.w245e{width:2.45em}.w250e{width:2.5em}.w255e{width:2.55em}.w260e{width:2.6em}.w265e{width:2.65em}.w270e{width:2.7em}.w275e{width:2.75em}.w280e{width:2.8em}.w285e{width:2.85em}.w290e{width:2.9em}.w295e{width:2.95em}.w300e{width:3em}.w305e{width:3.05em}.w310e{width:3.1em}.w315e{width:3.15em}.w320e{width:3.2em}.w325e{width:3.25em}.w330e{width:3.3em}.w335e{width:3.35em}.w340e{width:3.4em}.w345e{width:3.45em}.w350e{width:3.5em}.w355e{width:3.55em}.w360e{width:3.6em}.w365e{width:3.65em}.w370e{width:3.7em}.w375e{width:3.75em}.w380e{width:3.8em}.w385e{width:3.85em}.w390e{width:3.9em}.w395e{width:3.95em}.w400e{width:4em}.h0e{height:0em}.h5e{height:0.05em}.h10e{height:0.1em}.h15e{height:0.15em}.h20e{height:0.2em}.h25e{height:0.25em}.h30e{height:0.3em}.h35e{height:0.35em}.h40e{height:0.4em}.h45e{height:0.45em}.h50e{height:0.5em}.h55e{height:0.55em}.h60e{height:0.6em}.h65e{height:0.65em}.h70e{height:0.7em}.h75e{height:0.75em}.h80e{height:0.8em}.h85e{height:0.85em}.h90e{height:0.9em}.h95e{height:0.95em}.h100e{height:1em}.h105e{height:1.05em}.h110e{height:1.1em}.h115e{height:1.15em}.h120e{height:1.2em}.h125e{height:1.25em}.h130e{height:1.3em}.h135e{height:1.35em}.h140e{height:1.4em}.h145e{height:1.45em}.h150e{height:1.5em}.h155e{height:1.55em}.h160e{height:1.6em}.h165e{height:1.65em}.h170e{height:1.7em}.h175e{height:1.75em}.h180e{height:1.8em}.h185e{height:1.85em}.h190e{height:1.9em}.h195e{height:1.95em}.h200e{height:2em}.h205e{height:2.05em}.h210e{height:2.1em}.h215e{height:2.15em}.h220e{height:2.2em}.h225e{height:2.25em}.h230e{height:2.3em}.h235e{height:2.35em}.h240e{height:2.4em}.h245e{height:2.45em}.h250e{height:2.5em}.h255e{height:2.55em}.h260e{height:2.6em}.h265e{height:2.65em}.h270e{height:2.7em}.h275e{height:2.75em}.h280e{height:2.8em}.h285e{height:2.85em}.h290e{height:2.9em}.h295e{height:2.95em}.h300e{height:3em}.h305e{height:3.05em}.h310e{height:3.1em}.h315e{height:3.15em}.h320e{height:3.2em}.h325e{height:3.25em}.h330e{height:3.3em}.h335e{height:3.35em}.h340e{height:3.4em}.h345e{height:3.45em}.h350e{height:3.5em}.h355e{height:3.55em}.h360e{height:3.6em}.h365e{height:3.65em}.h370e{height:3.7em}.h375e{height:3.75em}.h380e{height:3.8em}.h385e{height:3.85em}.h390e{height:3.9em}.h395e{height:3.95em}.h400e{height:4em}.wh0e{width:0em;height:0em}.wh5e{width:0.05em;height:0.05em}.wh10e{width:0.1em;height:0.1em}.wh15e{width:0.15em;height:0.15em}.wh20e{width:0.2em;height:0.2em}.wh25e{width:0.25em;height:0.25em}.wh30e{width:0.3em;height:0.3em}.wh35e{width:0.35em;height:0.35em}.wh40e{width:0.4em;height:0.4em}.wh45e{width:0.45em;height:0.45em}.wh50e{width:0.5em;height:0.5em}.wh55e{width:0.55em;height:0.55em}.wh60e{width:0.6em;height:0.6em}.wh65e{width:0.65em;height:0.65em}.wh70e{width:0.7em;height:0.7em}.wh75e{width:0.75em;height:0.75em}.wh80e{width:0.8em;height:0.8em}.wh85e{width:0.85em;height:0.85em}.wh90e{width:0.9em;height:0.9em}.wh95e{width:0.95em;height:0.95em}.wh100e{width:1em;height:1em}.wh105e{width:1.05em;height:1.05em}.wh110e{width:1.1em;height:1.1em}.wh115e{width:1.15em;height:1.15em}.wh120e{width:1.2em;height:1.2em}.wh125e{width:1.25em;height:1.25em}.wh130e{width:1.3em;height:1.3em}.wh135e{width:1.35em;height:1.35em}.wh140e{width:1.4em;height:1.4em}.wh145e{width:1.45em;height:1.45em}.wh150e{width:1.5em;height:1.5em}.wh155e{width:1.55em;height:1.55em}.wh160e{width:1.6em;height:1.6em}.wh165e{width:1.65em;height:1.65em}.wh170e{width:1.7em;height:1.7em}.wh175e{width:1.75em;height:1.75em}.wh180e{width:1.8em;height:1.8em}.wh185e{width:1.85em;height:1.85em}.wh190e{width:1.9em;height:1.9em}.wh195e{width:1.95em;height:1.95em}.wh200e{width:2em;height:2em}.wh205e{width:2.05em;height:2.05em}.wh210e{width:2.1em;height:2.1em}.wh215e{width:2.15em;height:2.15em}.wh220e{width:2.2em;height:2.2em}.wh225e{width:2.25em;height:2.25em}.wh230e{width:2.3em;height:2.3em}.wh235e{width:2.35em;height:2.35em}.wh240e{width:2.4em;height:2.4em}.wh245e{width:2.45em;height:2.45em}.wh250e{width:2.5em;height:2.5em}.wh255e{width:2.55em;height:2.55em}.wh260e{width:2.6em;height:2.6em}.wh265e{width:2.65em;height:2.65em}.wh270e{width:2.7em;height:2.7em}.wh275e{width:2.75em;height:2.75em}.wh280e{width:2.8em;height:2.8em}.wh285e{width:2.85em;height:2.85em}.wh290e{width:2.9em;height:2.9em}.wh295e{width:2.95em;height:2.95em}.wh300e{width:3em;height:3em}.wh305e{width:3.05em;height:3.05em}.wh310e{width:3.1em;height:3.1em}.wh315e{width:3.15em;height:3.15em}.wh320e{width:3.2em;height:3.2em}.wh325e{width:3.25em;height:3.25em}.wh330e{width:3.3em;height:3.3em}.wh335e{width:3.35em;height:3.35em}.wh340e{width:3.4em;height:3.4em}.wh345e{width:3.45em;height:3.45em}.wh350e{width:3.5em;height:3.5em}.wh355e{width:3.55em;height:3.55em}.wh360e{width:3.6em;height:3.6em}.wh365e{width:3.65em;height:3.65em}.wh370e{width:3.7em;height:3.7em}.wh375e{width:3.75em;height:3.75em}.wh380e{width:3.8em;height:3.8em}.wh385e{width:3.85em;height:3.85em}.wh390e{width:3.9em;height:3.9em}.wh395e{width:3.95em;height:3.95em}.wh400e{width:4em;height:4em}.visible{visibility:visible}.hidden{visibility:hidden}.opacity0{opacity:0.0}.opacity025{opacity:0.25}.opacity05{opacity:0.5}.opacity075{opacity:0.75}.opacity1{opacity:1.0}.tw-opacity{transition:opacity 0.4s ease-out}.tw-position{transition:left 0.4s ease-out,top 0.4s ease-out,right 0.4s ease-out,bottom 0.4s ease-out}.tw-size{transition:width 0.4s ease-out,height 0.4s ease-out}.tw-transform{transition:transform 0.4s ease-out}.tw-shadow{transition:box-shadow 0.4s ease-out}.tw-border{transition:border 0.4s ease-out}.tw-outline{transition:outline 0.4s ease-out}.tw-padding{transition:padding 0.4s ease-out}.tw-margin{transition:margin 0.4s ease-out}.tw-background{transition:background-position 0.4s ease-out,background-size 0.4s ease-out}.tw-all{transition:all 0.4s ease-out}.tw-fast{transition-duration:0.3s !important}.tw-normal{transition-duration:0.4s !important}.tw-slow{transition-duration:0.6s !important}.pd1{padding:1px}.pd2{padding:2px}.pd3{padding:3px}.pd4{padding:4px}.pd5{padding:5px}.pd6{padding:6px}.pd7{padding:7px}.pd8{padding:8px}.pd9{padding:9px}.pd10{padding:10px}.pd11{padding:11px}.pd12{padding:12px}.pd13{padding:13px}.pd14{padding:14px}.pd15{padding:15px}.pd16{padding:16px}.pd17{padding:17px}.pd18{padding:18px}.pd19{padding:19px}.pd20{padding:20px}.pdl1{padding-left:1px}.pdl2{padding-left:2px}.pdl3{padding-left:3px}.pdl4{padding-left:4px}.pdl5{padding-left:5px}.pdl6{padding-left:6px}.pdl7{padding-left:7px}.pdl8{padding-left:8px}.pdl9{padding-left:9px}.pdl10{padding-left:10px}.pdl11{padding-left:11px}.pdl12{padding-left:12px}.pdl13{padding-left:13px}.pdl14{padding-left:14px}.pdl15{padding-left:15px}.pdl16{padding-left:16px}.pdl17{padding-left:17px}.pdl18{padding-left:18px}.pdl19{padding-left:19px}.pdl20{padding-left:20px}.pdr1{padding-right:1px}.pdr2{padding-right:2px}.pdr3{padding-right:3px}.pdr4{padding-right:4px}.pdr5{padding-right:5px}.pdr6{padding-right:6px}.pdr7{padding-right:7px}.pdr8{padding-right:8px}.pdr9{padding-right:9px}.pdr10{padding-right:10px}.pdr11{padding-right:11px}.pdr12{padding-right:12px}.pdr13{padding-right:13px}.pdr14{padding-right:14px}.pdr15{padding-right:15px}.pdr16{padding-right:16px}.pdr17{padding-right:17px}.pdr18{padding-right:18px}.pdr19{padding-right:19px}.pdr20{padding-right:20px}.pdt1{padding-top:1px}.pdt2{padding-top:2px}.pdt3{padding-top:3px}.pdt4{padding-top:4px}.pdt5{padding-top:5px}.pdt6{padding-top:6px}.pdt7{padding-top:7px}.pdt8{padding-top:8px}.pdt9{padding-top:9px}.pdt10{padding-top:10px}.pdt11{padding-top:11px}.pdt12{padding-top:12px}.pdt13{padding-top:13px}.pdt14{padding-top:14px}.pdt15{padding-top:15px}.pdt16{padding-top:16px}.pdt17{padding-top:17px}.pdt18{padding-top:18px}.pdt19{padding-top:19px}.pdt20{padding-top:20px}.pdb1{padding-bottom:1px}.pdb2{padding-bottom:2px}.pdb3{padding-bottom:3px}.pdb4{padding-bottom:4px}.pdb5{padding-bottom:5px}.pdb6{padding-bottom:6px}.pdb7{padding-bottom:7px}.pdb8{padding-bottom:8px}.pdb9{padding-bottom:9px}.pdb10{padding-bottom:10px}.pdb11{padding-bottom:11px}.pdb12{padding-bottom:12px}.pdb13{padding-bottom:13px}.pdb14{padding-bottom:14px}.pdb15{padding-bottom:15px}.pdb16{padding-bottom:16px}.pdb17{padding-bottom:17px}.pdb18{padding-bottom:18px}.pdb19{padding-bottom:19px}.pdb20{padding-bottom:20px}.pdh1{padding-left:1px;padding-right:1px}.pdh2{padding-left:2px;padding-right:2px}.pdh3{padding-left:3px;padding-right:3px}.pdh4{padding-left:4px;padding-right:4px}.pdh5{padding-left:5px;padding-right:5px}.pdh6{padding-left:6px;padding-right:6px}.pdh7{padding-left:7px;padding-right:7px}.pdh8{padding-left:8px;padding-right:8px}.pdh9{padding-left:9px;padding-right:9px}.pdh10{padding-left:10px;padding-right:10px}.pdh11{padding-left:11px;padding-right:11px}.pdh12{padding-left:12px;padding-right:12px}.pdh13{padding-left:13px;padding-right:13px}.pdh14{padding-left:14px;padding-right:14px}.pdh15{padding-left:15px;padding-right:15px}.pdh16{padding-left:16px;padding-right:16px}.pdh17{padding-left:17px;padding-right:17px}.pdh18{padding-left:18px;padding-right:18px}.pdh19{padding-left:19px;padding-right:19px}.pdh20{padding-left:20px;padding-right:20px}.pdv1{padding-top:1px;padding-bottom:1px}.pdv2{padding-top:2px;padding-bottom:2px}.pdv3{padding-top:3px;padding-bottom:3px}.pdv4{padding-top:4px;padding-bottom:4px}.pdv5{padding-top:5px;padding-bottom:5px}.pdv6{padding-top:6px;padding-bottom:6px}.pdv7{padding-top:7px;padding-bottom:7px}.pdv8{padding-top:8px;padding-bottom:8px}.pdv9{padding-top:9px;padding-bottom:9px}.pdv10{padding-top:10px;padding-bottom:10px}.pdv11{padding-top:11px;padding-bottom:11px}.pdv12{padding-top:12px;padding-bottom:12px}.pdv13{padding-top:13px;padding-bottom:13px}.pdv14{padding-top:14px;padding-bottom:14px}.pdv15{padding-top:15px;padding-bottom:15px}.pdv16{padding-top:16px;padding-bottom:16px}.pdv17{padding-top:17px;padding-bottom:17px}.pdv18{padding-top:18px;padding-bottom:18px}.pdv19{padding-top:19px;padding-bottom:19px}.pdv20{padding-top:20px;padding-bottom:20px}.m1{margin:1px}.m2{margin:2px}.m3{margin:3px}.m4{margin:4px}.m5{margin:5px}.m6{margin:6px}.m7{margin:7px}.m8{margin:8px}.m9{margin:9px}.m10{margin:10px}.m11{margin:11px}.m12{margin:12px}.m13{margin:13px}.m14{margin:14px}.m15{margin:15px}.m16{margin:16px}.m17{margin:17px}.m18{margin:18px}.m19{margin:19px}.m20{margin:20px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml7{margin-left:7px}.ml8{margin-left:8px}.ml9{margin-left:9px}.ml10{margin-left:10px}.ml11{margin-left:11px}.ml12{margin-left:12px}.ml13{margin-left:13px}.ml14{margin-left:14px}.ml15{margin-left:15px}.ml16{margin-left:16px}.ml17{margin-left:17px}.ml18{margin-left:18px}.ml19{margin-left:19px}.ml20{margin-left:20px}.mr1{margin-right:1px}.mr2{margin-right:2px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr6{margin-right:6px}.mr7{margin-right:7px}.mr8{margin-right:8px}.mr9{margin-right:9px}.mr10{margin-right:10px}.mr11{margin-right:11px}.mr12{margin-right:12px}.mr13{margin-right:13px}.mr14{margin-right:14px}.mr15{margin-right:15px}.mr16{margin-right:16px}.mr17{margin-right:17px}.mr18{margin-right:18px}.mr19{margin-right:19px}.mr20{margin-right:20px}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px}.mt6{margin-top:6px}.mt7{margin-top:7px}.mt8{margin-top:8px}.mt9{margin-top:9px}.mt10{margin-top:10px}.mt11{margin-top:11px}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt19{margin-top:19px}.mt20{margin-top:20px}.mb1{margin-bottom:1px}.mb2{margin-bottom:2px}.mb3{margin-bottom:3px}.mb4{margin-bottom:4px}.mb5{margin-bottom:5px}.mb6{margin-bottom:6px}.mb7{margin-bottom:7px}.mb8{margin-bottom:8px}.mb9{margin-bottom:9px}.mb10{margin-bottom:10px}.mb11{margin-bottom:11px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px}.mb16{margin-bottom:16px}.mb17{margin-bottom:17px}.mb18{margin-bottom:18px}.mb19{margin-bottom:19px}.mb20{margin-bottom:20px}.mh1{margin-left:1px;margin-right:1px}.mh2{margin-left:2px;margin-right:2px}.mh3{margin-left:3px;margin-right:3px}.mh4{margin-left:4px;margin-right:4px}.mh5{margin-left:5px;margin-right:5px}.mh6{margin-left:6px;margin-right:6px}.mh7{margin-left:7px;margin-right:7px}.mh8{margin-left:8px;margin-right:8px}.mh9{margin-left:9px;margin-right:9px}.mh10{margin-left:10px;margin-right:10px}.mh11{margin-left:11px;margin-right:11px}.mh12{margin-left:12px;margin-right:12px}.mh13{margin-left:13px;margin-right:13px}.mh14{margin-left:14px;margin-right:14px}.mh15{margin-left:15px;margin-right:15px}.mh16{margin-left:16px;margin-right:16px}.mh17{margin-left:17px;margin-right:17px}.mh18{margin-left:18px;margin-right:18px}.mh19{margin-left:19px;margin-right:19px}.mh20{margin-left:20px;margin-right:20px}.mv1{margin-top:1px;margin-bottom:1px}.mv2{margin-top:2px;margin-bottom:2px}.mv3{margin-top:3px;margin-bottom:3px}.mv4{margin-top:4px;margin-bottom:4px}.mv5{margin-top:5px;margin-bottom:5px}.mv6{margin-top:6px;margin-bottom:6px}.mv7{margin-top:7px;margin-bottom:7px}.mv8{margin-top:8px;margin-bottom:8px}.mv9{margin-top:9px;margin-bottom:9px}.mv10{margin-top:10px;margin-bottom:10px}.mv11{margin-top:11px;margin-bottom:11px}.mv12{margin-top:12px;margin-bottom:12px}.mv13{margin-top:13px;margin-bottom:13px}.mv14{margin-top:14px;margin-bottom:14px}.mv15{margin-top:15px;margin-bottom:15px}.mv16{margin-top:16px;margin-bottom:16px}.mv17{margin-top:17px;margin-bottom:17px}.mv18{margin-top:18px;margin-bottom:18px}.mv19{margin-top:19px;margin-bottom:19px}.mv20{margin-top:20px;margin-bottom:20px}.lh,.lhx,.lhx2,.lhx3,.lhx4,.lhx5,.lvs,.lvs2,.lvs3,.lvs4{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-align-content:flex-start;-moz-align-content:flex-start;-ms-align-content:flex-start;align-content:flex-start}.lv,.lhs,.lhs2,.lhs3,.lhs4,.lvx,.lvx2,.lvx3,.lvx4,.lvx5{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-align-content:flex-start;-moz-align-content:flex-start;-ms-align-content:flex-start;align-content:flex-start}.lhs{width:2px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs2{width:4px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs3{width:6px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs4{width:8px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhx{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvs{height:2px;min-height:2px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs2{height:4px;min-height:4px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs3{height:6px;min-height:6px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs4{height:8px;min-height:8px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvx{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.fg1{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.fg2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2}.fg3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3}.fg4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4}.fg5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5}.fg6{-webkit-flex-grow:6;-moz-flex-grow:6;-ms-flex-grow:6;flex-grow:6}.fg7{-webkit-flex-grow:7;-moz-flex-grow:7;-ms-flex-grow:7;flex-grow:7}.fg8{-webkit-flex-grow:8;-moz-flex-grow:8;-ms-flex-grow:8;flex-grow:8}.fg9{-webkit-flex-grow:9;-moz-flex-grow:9;-ms-flex-grow:9;flex-grow:9}.fg10{-webkit-flex-grow:10;-moz-flex-grow:10;-ms-flex-grow:10;flex-grow:10}.ltl{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.ltc{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.ltr{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.ll{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.lc{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.lr{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.lbl{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.lbc{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.lbr{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.l-wrap{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.l-rwrap{-webkit-flex-wrap:wrap-reverse;-moz-flex-wrap:wrap-reverse;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.l-nowrap{-webkit-flex-wrap:nowrap;-moz-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap} 2 | -------------------------------------------------------------------------------- /css/shortcutcss.min.css: -------------------------------------------------------------------------------- 1 | .abs{position:absolute}.rel{position:relative}.fix{position:fixed}.c-default{cursor:default}.c-pointer{cursor:pointer}.c-none{cursor:none}.mouse-disable{pointer-events:none}.select-disable{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.scroll{overflow:auto}.scroll-x{overflow-x:auto;overflow-y:hidden}.scroll-y{overflow-y:auto;overflow-x:hidden}.tl{text-align:left}.tc{text-align:center}.tr{text-align:right}.t-wrap{white-space:normal}.t-nowrap{white-space:nowrap}.inh{display:inherit}.ib{display:inline-block}.bl{display:block}.none{display:none}.fll{float:left}.flr{float:right}.fs6{font-size:6px}.fs8{font-size:8px}.fs10{font-size:10px}.fs12{font-size:12px}.fs14{font-size:14px}.fs16{font-size:16px}.fs18{font-size:18px}.fs20{font-size:20px}.fs22{font-size:22px}.fs24{font-size:24px}.fs26{font-size:26px}.fs28{font-size:28px}.fs30{font-size:30px}.fs32{font-size:32px}.fs34{font-size:34px}.fs36{font-size:36px}.fs38{font-size:38px}.fs40{font-size:40px}.fs42{font-size:42px}.fs44{font-size:44px}.fs46{font-size:46px}.fs48{font-size:48px}.fs50{font-size:50px}.fs52{font-size:52px}.fs54{font-size:54px}.fs56{font-size:56px}.fs58{font-size:58px}.fs60{font-size:60px}.fs62{font-size:62px}.fs64{font-size:64px}.fs66{font-size:66px}.fs68{font-size:68px}.fs70{font-size:70px}.fs72{font-size:72px}.fs74{font-size:74px}.fs76{font-size:76px}.fs78{font-size:78px}.fs80{font-size:80px}.fs82{font-size:82px}.fs84{font-size:84px}.fs86{font-size:86px}.fs88{font-size:88px}.fs90{font-size:90px}.fs92{font-size:92px}.fs94{font-size:94px}.fs96{font-size:96px}.fs98{font-size:98px}.fs100{font-size:100px}.fsr2{font-size:0.02rem}.fsr4{font-size:0.04rem}.fsr6{font-size:0.06rem}.fsr8{font-size:0.08rem}.fsr10{font-size:0.1rem}.fsr12{font-size:0.12rem}.fsr14{font-size:0.14rem}.fsr16{font-size:0.16rem}.fsr18{font-size:0.18rem}.fsr20{font-size:0.2rem}.fsr22{font-size:0.22rem}.fsr24{font-size:0.24rem}.fsr26{font-size:0.26rem}.fsr28{font-size:0.28rem}.fsr30{font-size:0.3rem}.fsr32{font-size:0.32rem}.fsr34{font-size:0.34rem}.fsr36{font-size:0.36rem}.fsr38{font-size:0.38rem}.fsr40{font-size:0.4rem}.fsr42{font-size:0.42rem}.fsr44{font-size:0.44rem}.fsr46{font-size:0.46rem}.fsr48{font-size:0.48rem}.fsr50{font-size:0.5rem}.fsr52{font-size:0.52rem}.fsr54{font-size:0.54rem}.fsr56{font-size:0.56rem}.fsr58{font-size:0.58rem}.fsr60{font-size:0.6rem}.fsr62{font-size:0.62rem}.fsr64{font-size:0.64rem}.fsr66{font-size:0.66rem}.fsr68{font-size:0.68rem}.fsr70{font-size:0.7rem}.fsr72{font-size:0.72rem}.fsr74{font-size:0.74rem}.fsr76{font-size:0.76rem}.fsr78{font-size:0.78rem}.fsr80{font-size:0.8rem}.fsr82{font-size:0.82rem}.fsr84{font-size:0.84rem}.fsr86{font-size:0.86rem}.fsr88{font-size:0.88rem}.fsr90{font-size:0.9rem}.fsr92{font-size:0.92rem}.fsr94{font-size:0.94rem}.fsr96{font-size:0.96rem}.fsr98{font-size:0.98rem}.fsr100{font-size:1rem}.fsr102{font-size:1.02rem}.fsr104{font-size:1.04rem}.fsr106{font-size:1.06rem}.fsr108{font-size:1.08rem}.fsr110{font-size:1.1rem}.fsr112{font-size:1.12rem}.fsr114{font-size:1.14rem}.fsr116{font-size:1.16rem}.fsr118{font-size:1.18rem}.fsr120{font-size:1.2rem}.fsr122{font-size:1.22rem}.fsr124{font-size:1.24rem}.fsr126{font-size:1.26rem}.fsr128{font-size:1.28rem}.fsr130{font-size:1.3rem}.fsr132{font-size:1.32rem}.fsr134{font-size:1.34rem}.fsr136{font-size:1.36rem}.fsr138{font-size:1.38rem}.fsr140{font-size:1.4rem}.fsr142{font-size:1.42rem}.fsr144{font-size:1.44rem}.fsr146{font-size:1.46rem}.fsr148{font-size:1.48rem}.fsr150{font-size:1.5rem}.fsr152{font-size:1.52rem}.fsr154{font-size:1.54rem}.fsr156{font-size:1.56rem}.fsr158{font-size:1.58rem}.fsr160{font-size:1.6rem}.fsr162{font-size:1.62rem}.fsr164{font-size:1.64rem}.fsr166{font-size:1.66rem}.fsr168{font-size:1.68rem}.fsr170{font-size:1.7rem}.fsr172{font-size:1.72rem}.fsr174{font-size:1.74rem}.fsr176{font-size:1.76rem}.fsr178{font-size:1.78rem}.fsr180{font-size:1.8rem}.fsr182{font-size:1.82rem}.fsr184{font-size:1.84rem}.fsr186{font-size:1.86rem}.fsr188{font-size:1.88rem}.fsr190{font-size:1.9rem}.fsr192{font-size:1.92rem}.fsr194{font-size:1.94rem}.fsr196{font-size:1.96rem}.fsr198{font-size:1.98rem}.fsr200{font-size:2rem}.fsr202{font-size:2.02rem}.fsr204{font-size:2.04rem}.fsr206{font-size:2.06rem}.fsr208{font-size:2.08rem}.fsr210{font-size:2.1rem}.fsr212{font-size:2.12rem}.fsr214{font-size:2.14rem}.fsr216{font-size:2.16rem}.fsr218{font-size:2.18rem}.fsr220{font-size:2.2rem}.fsr222{font-size:2.22rem}.fsr224{font-size:2.24rem}.fsr226{font-size:2.26rem}.fsr228{font-size:2.28rem}.fsr230{font-size:2.3rem}.fsr232{font-size:2.32rem}.fsr234{font-size:2.34rem}.fsr236{font-size:2.36rem}.fsr238{font-size:2.38rem}.fsr240{font-size:2.4rem}.fsr242{font-size:2.42rem}.fsr244{font-size:2.44rem}.fsr246{font-size:2.46rem}.fsr248{font-size:2.48rem}.fsr250{font-size:2.5rem}.fsr252{font-size:2.52rem}.fsr254{font-size:2.54rem}.fsr256{font-size:2.56rem}.fsr258{font-size:2.58rem}.fsr260{font-size:2.6rem}.fsr262{font-size:2.62rem}.fsr264{font-size:2.64rem}.fsr266{font-size:2.66rem}.fsr268{font-size:2.68rem}.fsr270{font-size:2.7rem}.fsr272{font-size:2.72rem}.fsr274{font-size:2.74rem}.fsr276{font-size:2.76rem}.fsr278{font-size:2.78rem}.fsr280{font-size:2.8rem}.fsr282{font-size:2.82rem}.fsr284{font-size:2.84rem}.fsr286{font-size:2.86rem}.fsr288{font-size:2.88rem}.fsr290{font-size:2.9rem}.fsr292{font-size:2.92rem}.fsr294{font-size:2.94rem}.fsr296{font-size:2.96rem}.fsr298{font-size:2.98rem}.fsr300{font-size:3rem}.fsr302{font-size:3.02rem}.fsr304{font-size:3.04rem}.fsr306{font-size:3.06rem}.fsr308{font-size:3.08rem}.fsr310{font-size:3.1rem}.fsr312{font-size:3.12rem}.fsr314{font-size:3.14rem}.fsr316{font-size:3.16rem}.fsr318{font-size:3.18rem}.fsr320{font-size:3.2rem}.fsr322{font-size:3.22rem}.fsr324{font-size:3.24rem}.fsr326{font-size:3.26rem}.fsr328{font-size:3.28rem}.fsr330{font-size:3.3rem}.fsr332{font-size:3.32rem}.fsr334{font-size:3.34rem}.fsr336{font-size:3.36rem}.fsr338{font-size:3.38rem}.fsr340{font-size:3.4rem}.fsr342{font-size:3.42rem}.fsr344{font-size:3.44rem}.fsr346{font-size:3.46rem}.fsr348{font-size:3.48rem}.fsr350{font-size:3.5rem}.fsr352{font-size:3.52rem}.fsr354{font-size:3.54rem}.fsr356{font-size:3.56rem}.fsr358{font-size:3.58rem}.fsr360{font-size:3.6rem}.fsr362{font-size:3.62rem}.fsr364{font-size:3.64rem}.fsr366{font-size:3.66rem}.fsr368{font-size:3.68rem}.fsr370{font-size:3.7rem}.fsr372{font-size:3.72rem}.fsr374{font-size:3.74rem}.fsr376{font-size:3.76rem}.fsr378{font-size:3.78rem}.fsr380{font-size:3.8rem}.fsr382{font-size:3.82rem}.fsr384{font-size:3.84rem}.fsr386{font-size:3.86rem}.fsr388{font-size:3.88rem}.fsr390{font-size:3.9rem}.fsr392{font-size:3.92rem}.fsr394{font-size:3.94rem}.fsr396{font-size:3.96rem}.fsr398{font-size:3.98rem}.fsr400{font-size:4rem}.fse2{font-size:0.02em}.fse4{font-size:0.04em}.fse6{font-size:0.06em}.fse8{font-size:0.08em}.fse10{font-size:0.1em}.fse12{font-size:0.12em}.fse14{font-size:0.14em}.fse16{font-size:0.16em}.fse18{font-size:0.18em}.fse20{font-size:0.2em}.fse22{font-size:0.22em}.fse24{font-size:0.24em}.fse26{font-size:0.26em}.fse28{font-size:0.28em}.fse30{font-size:0.3em}.fse32{font-size:0.32em}.fse34{font-size:0.34em}.fse36{font-size:0.36em}.fse38{font-size:0.38em}.fse40{font-size:0.4em}.fse42{font-size:0.42em}.fse44{font-size:0.44em}.fse46{font-size:0.46em}.fse48{font-size:0.48em}.fse50{font-size:0.5em}.fse52{font-size:0.52em}.fse54{font-size:0.54em}.fse56{font-size:0.56em}.fse58{font-size:0.58em}.fse60{font-size:0.6em}.fse62{font-size:0.62em}.fse64{font-size:0.64em}.fse66{font-size:0.66em}.fse68{font-size:0.68em}.fse70{font-size:0.7em}.fse72{font-size:0.72em}.fse74{font-size:0.74em}.fse76{font-size:0.76em}.fse78{font-size:0.78em}.fse80{font-size:0.8em}.fse82{font-size:0.82em}.fse84{font-size:0.84em}.fse86{font-size:0.86em}.fse88{font-size:0.88em}.fse90{font-size:0.9em}.fse92{font-size:0.92em}.fse94{font-size:0.94em}.fse96{font-size:0.96em}.fse98{font-size:0.98em}.fse100{font-size:1em}.fse102{font-size:1.02em}.fse104{font-size:1.04em}.fse106{font-size:1.06em}.fse108{font-size:1.08em}.fse110{font-size:1.1em}.fse112{font-size:1.12em}.fse114{font-size:1.14em}.fse116{font-size:1.16em}.fse118{font-size:1.18em}.fse120{font-size:1.2em}.fse122{font-size:1.22em}.fse124{font-size:1.24em}.fse126{font-size:1.26em}.fse128{font-size:1.28em}.fse130{font-size:1.3em}.fse132{font-size:1.32em}.fse134{font-size:1.34em}.fse136{font-size:1.36em}.fse138{font-size:1.38em}.fse140{font-size:1.4em}.fse142{font-size:1.42em}.fse144{font-size:1.44em}.fse146{font-size:1.46em}.fse148{font-size:1.48em}.fse150{font-size:1.5em}.fse152{font-size:1.52em}.fse154{font-size:1.54em}.fse156{font-size:1.56em}.fse158{font-size:1.58em}.fse160{font-size:1.6em}.fse162{font-size:1.62em}.fse164{font-size:1.64em}.fse166{font-size:1.66em}.fse168{font-size:1.68em}.fse170{font-size:1.7em}.fse172{font-size:1.72em}.fse174{font-size:1.74em}.fse176{font-size:1.76em}.fse178{font-size:1.78em}.fse180{font-size:1.8em}.fse182{font-size:1.82em}.fse184{font-size:1.84em}.fse186{font-size:1.86em}.fse188{font-size:1.88em}.fse190{font-size:1.9em}.fse192{font-size:1.92em}.fse194{font-size:1.94em}.fse196{font-size:1.96em}.fse198{font-size:1.98em}.fse200{font-size:2em}.fse202{font-size:2.02em}.fse204{font-size:2.04em}.fse206{font-size:2.06em}.fse208{font-size:2.08em}.fse210{font-size:2.1em}.fse212{font-size:2.12em}.fse214{font-size:2.14em}.fse216{font-size:2.16em}.fse218{font-size:2.18em}.fse220{font-size:2.2em}.fse222{font-size:2.22em}.fse224{font-size:2.24em}.fse226{font-size:2.26em}.fse228{font-size:2.28em}.fse230{font-size:2.3em}.fse232{font-size:2.32em}.fse234{font-size:2.34em}.fse236{font-size:2.36em}.fse238{font-size:2.38em}.fse240{font-size:2.4em}.fse242{font-size:2.42em}.fse244{font-size:2.44em}.fse246{font-size:2.46em}.fse248{font-size:2.48em}.fse250{font-size:2.5em}.fse252{font-size:2.52em}.fse254{font-size:2.54em}.fse256{font-size:2.56em}.fse258{font-size:2.58em}.fse260{font-size:2.6em}.fse262{font-size:2.62em}.fse264{font-size:2.64em}.fse266{font-size:2.66em}.fse268{font-size:2.68em}.fse270{font-size:2.7em}.fse272{font-size:2.72em}.fse274{font-size:2.74em}.fse276{font-size:2.76em}.fse278{font-size:2.78em}.fse280{font-size:2.8em}.fse282{font-size:2.82em}.fse284{font-size:2.84em}.fse286{font-size:2.86em}.fse288{font-size:2.88em}.fse290{font-size:2.9em}.fse292{font-size:2.92em}.fse294{font-size:2.94em}.fse296{font-size:2.96em}.fse298{font-size:2.98em}.fse300{font-size:3em}.fse302{font-size:3.02em}.fse304{font-size:3.04em}.fse306{font-size:3.06em}.fse308{font-size:3.08em}.fse310{font-size:3.1em}.fse312{font-size:3.12em}.fse314{font-size:3.14em}.fse316{font-size:3.16em}.fse318{font-size:3.18em}.fse320{font-size:3.2em}.fse322{font-size:3.22em}.fse324{font-size:3.24em}.fse326{font-size:3.26em}.fse328{font-size:3.28em}.fse330{font-size:3.3em}.fse332{font-size:3.32em}.fse334{font-size:3.34em}.fse336{font-size:3.36em}.fse338{font-size:3.38em}.fse340{font-size:3.4em}.fse342{font-size:3.42em}.fse344{font-size:3.44em}.fse346{font-size:3.46em}.fse348{font-size:3.48em}.fse350{font-size:3.5em}.fse352{font-size:3.52em}.fse354{font-size:3.54em}.fse356{font-size:3.56em}.fse358{font-size:3.58em}.fse360{font-size:3.6em}.fse362{font-size:3.62em}.fse364{font-size:3.64em}.fse366{font-size:3.66em}.fse368{font-size:3.68em}.fse370{font-size:3.7em}.fse372{font-size:3.72em}.fse374{font-size:3.74em}.fse376{font-size:3.76em}.fse378{font-size:3.78em}.fse380{font-size:3.8em}.fse382{font-size:3.82em}.fse384{font-size:3.84em}.fse386{font-size:3.86em}.fse388{font-size:3.88em}.fse390{font-size:3.9em}.fse392{font-size:3.92em}.fse394{font-size:3.94em}.fse396{font-size:3.96em}.fse398{font-size:3.98em}.fse400{font-size:4em}.w0{width:0px}.w2{width:2px}.w4{width:4px}.w6{width:6px}.w8{width:8px}.w10{width:10px}.w12{width:12px}.w14{width:14px}.w16{width:16px}.w18{width:18px}.w20{width:20px}.w22{width:22px}.w24{width:24px}.w26{width:26px}.w28{width:28px}.w30{width:30px}.w32{width:32px}.w34{width:34px}.w36{width:36px}.w38{width:38px}.w40{width:40px}.w42{width:42px}.w44{width:44px}.w46{width:46px}.w48{width:48px}.w50{width:50px}.w52{width:52px}.w54{width:54px}.w56{width:56px}.w58{width:58px}.w60{width:60px}.w62{width:62px}.w64{width:64px}.w66{width:66px}.w68{width:68px}.w70{width:70px}.w72{width:72px}.w74{width:74px}.w76{width:76px}.w78{width:78px}.w80{width:80px}.w82{width:82px}.w84{width:84px}.w86{width:86px}.w88{width:88px}.w90{width:90px}.w92{width:92px}.w94{width:94px}.w96{width:96px}.w98{width:98px}.w100{width:100px}.w102{width:102px}.w104{width:104px}.w106{width:106px}.w108{width:108px}.w110{width:110px}.w112{width:112px}.w114{width:114px}.w116{width:116px}.w118{width:118px}.w120{width:120px}.w122{width:122px}.w124{width:124px}.w126{width:126px}.w128{width:128px}.h0{height:0px}.h2{height:2px}.h4{height:4px}.h6{height:6px}.h8{height:8px}.h10{height:10px}.h12{height:12px}.h14{height:14px}.h16{height:16px}.h18{height:18px}.h20{height:20px}.h22{height:22px}.h24{height:24px}.h26{height:26px}.h28{height:28px}.h30{height:30px}.h32{height:32px}.h34{height:34px}.h36{height:36px}.h38{height:38px}.h40{height:40px}.h42{height:42px}.h44{height:44px}.h46{height:46px}.h48{height:48px}.h50{height:50px}.h52{height:52px}.h54{height:54px}.h56{height:56px}.h58{height:58px}.h60{height:60px}.h62{height:62px}.h64{height:64px}.h66{height:66px}.h68{height:68px}.h70{height:70px}.h72{height:72px}.h74{height:74px}.h76{height:76px}.h78{height:78px}.h80{height:80px}.h82{height:82px}.h84{height:84px}.h86{height:86px}.h88{height:88px}.h90{height:90px}.h92{height:92px}.h94{height:94px}.h96{height:96px}.h98{height:98px}.h100{height:100px}.h102{height:102px}.h104{height:104px}.h106{height:106px}.h108{height:108px}.h110{height:110px}.h112{height:112px}.h114{height:114px}.h116{height:116px}.h118{height:118px}.h120{height:120px}.h122{height:122px}.h124{height:124px}.h126{height:126px}.h128{height:128px}.wh0{width:0px;height:0px}.wh2{width:2px;height:2px}.wh4{width:4px;height:4px}.wh6{width:6px;height:6px}.wh8{width:8px;height:8px}.wh10{width:10px;height:10px}.wh12{width:12px;height:12px}.wh14{width:14px;height:14px}.wh16{width:16px;height:16px}.wh18{width:18px;height:18px}.wh20{width:20px;height:20px}.wh22{width:22px;height:22px}.wh24{width:24px;height:24px}.wh26{width:26px;height:26px}.wh28{width:28px;height:28px}.wh30{width:30px;height:30px}.wh32{width:32px;height:32px}.wh34{width:34px;height:34px}.wh36{width:36px;height:36px}.wh38{width:38px;height:38px}.wh40{width:40px;height:40px}.wh42{width:42px;height:42px}.wh44{width:44px;height:44px}.wh46{width:46px;height:46px}.wh48{width:48px;height:48px}.wh50{width:50px;height:50px}.wh52{width:52px;height:52px}.wh54{width:54px;height:54px}.wh56{width:56px;height:56px}.wh58{width:58px;height:58px}.wh60{width:60px;height:60px}.wh62{width:62px;height:62px}.wh64{width:64px;height:64px}.wh66{width:66px;height:66px}.wh68{width:68px;height:68px}.wh70{width:70px;height:70px}.wh72{width:72px;height:72px}.wh74{width:74px;height:74px}.wh76{width:76px;height:76px}.wh78{width:78px;height:78px}.wh80{width:80px;height:80px}.wh82{width:82px;height:82px}.wh84{width:84px;height:84px}.wh86{width:86px;height:86px}.wh88{width:88px;height:88px}.wh90{width:90px;height:90px}.wh92{width:92px;height:92px}.wh94{width:94px;height:94px}.wh96{width:96px;height:96px}.wh98{width:98px;height:98px}.wh100{width:100px;height:100px}.wh102{width:102px;height:102px}.wh104{width:104px;height:104px}.wh106{width:106px;height:106px}.wh108{width:108px;height:108px}.wh110{width:110px;height:110px}.wh112{width:112px;height:112px}.wh114{width:114px;height:114px}.wh116{width:116px;height:116px}.wh118{width:118px;height:118px}.wh120{width:120px;height:120px}.wh122{width:122px;height:122px}.wh124{width:124px;height:124px}.wh126{width:126px;height:126px}.wh128{width:128px;height:128px}.w0p{width:0%}.w5p{width:5%}.w10p{width:10%}.w15p{width:15%}.w20p{width:20%}.w25p{width:25%}.w30p{width:30%}.w35p{width:35%}.w40p{width:40%}.w45p{width:45%}.w50p{width:50%}.w55p{width:55%}.w60p{width:60%}.w65p{width:65%}.w70p{width:70%}.w75p{width:75%}.w80p{width:80%}.w85p{width:85%}.w90p{width:90%}.w95p{width:95%}.w100p{width:100%}.h0p{height:0%}.h5p{height:5%}.h10p{height:10%}.h15p{height:15%}.h20p{height:20%}.h25p{height:25%}.h30p{height:30%}.h35p{height:35%}.h40p{height:40%}.h45p{height:45%}.h50p{height:50%}.h55p{height:55%}.h60p{height:60%}.h65p{height:65%}.h70p{height:70%}.h75p{height:75%}.h80p{height:80%}.h85p{height:85%}.h90p{height:90%}.h95p{height:95%}.h100p{height:100%}.wh0p{width:0%;height:0%}.wh5p{width:5%;height:5%}.wh10p{width:10%;height:10%}.wh15p{width:15%;height:15%}.wh20p{width:20%;height:20%}.wh25p{width:25%;height:25%}.wh30p{width:30%;height:30%}.wh35p{width:35%;height:35%}.wh40p{width:40%;height:40%}.wh45p{width:45%;height:45%}.wh50p{width:50%;height:50%}.wh55p{width:55%;height:55%}.wh60p{width:60%;height:60%}.wh65p{width:65%;height:65%}.wh70p{width:70%;height:70%}.wh75p{width:75%;height:75%}.wh80p{width:80%;height:80%}.wh85p{width:85%;height:85%}.wh90p{width:90%;height:90%}.wh95p{width:95%;height:95%}.wh100p{width:100%;height:100%}.vw0{width:0vw}.vw5{width:5vw}.vw10{width:10vw}.vw15{width:15vw}.vw20{width:20vw}.vw25{width:25vw}.vw30{width:30vw}.vw35{width:35vw}.vw40{width:40vw}.vw45{width:45vw}.vw50{width:50vw}.vw55{width:55vw}.vw60{width:60vw}.vw65{width:65vw}.vw70{width:70vw}.vw75{width:75vw}.vw80{width:80vw}.vw85{width:85vw}.vw90{width:90vw}.vw95{width:95vw}.vw100{width:100vw}.vh0{height:0vh}.vh5{height:5vh}.vh10{height:10vh}.vh15{height:15vh}.vh20{height:20vh}.vh25{height:25vh}.vh30{height:30vh}.vh35{height:35vh}.vh40{height:40vh}.vh45{height:45vh}.vh50{height:50vh}.vh55{height:55vh}.vh60{height:60vh}.vh65{height:65vh}.vh70{height:70vh}.vh75{height:75vh}.vh80{height:80vh}.vh85{height:85vh}.vh90{height:90vh}.vh95{height:95vh}.vh100{height:100vh}.vwh0{width:0vw;height:0vh}.vwh5{width:5vw;height:5vh}.vwh10{width:10vw;height:10vh}.vwh15{width:15vw;height:15vh}.vwh20{width:20vw;height:20vh}.vwh25{width:25vw;height:25vh}.vwh30{width:30vw;height:30vh}.vwh35{width:35vw;height:35vh}.vwh40{width:40vw;height:40vh}.vwh45{width:45vw;height:45vh}.vwh50{width:50vw;height:50vh}.vwh55{width:55vw;height:55vh}.vwh60{width:60vw;height:60vh}.vwh65{width:65vw;height:65vh}.vwh70{width:70vw;height:70vh}.vwh75{width:75vw;height:75vh}.vwh80{width:80vw;height:80vh}.vwh85{width:85vw;height:85vh}.vwh90{width:90vw;height:90vh}.vwh95{width:95vw;height:95vh}.vwh100{width:100vw;height:100vh}.w0r{width:0rem}.w5r{width:0.05rem}.w10r{width:0.1rem}.w15r{width:0.15rem}.w20r{width:0.2rem}.w25r{width:0.25rem}.w30r{width:0.3rem}.w35r{width:0.35rem}.w40r{width:0.4rem}.w45r{width:0.45rem}.w50r{width:0.5rem}.w55r{width:0.55rem}.w60r{width:0.6rem}.w65r{width:0.65rem}.w70r{width:0.7rem}.w75r{width:0.75rem}.w80r{width:0.8rem}.w85r{width:0.85rem}.w90r{width:0.9rem}.w95r{width:0.95rem}.w100r{width:1rem}.w105r{width:1.05rem}.w110r{width:1.1rem}.w115r{width:1.15rem}.w120r{width:1.2rem}.w125r{width:1.25rem}.w130r{width:1.3rem}.w135r{width:1.35rem}.w140r{width:1.4rem}.w145r{width:1.45rem}.w150r{width:1.5rem}.w155r{width:1.55rem}.w160r{width:1.6rem}.w165r{width:1.65rem}.w170r{width:1.7rem}.w175r{width:1.75rem}.w180r{width:1.8rem}.w185r{width:1.85rem}.w190r{width:1.9rem}.w195r{width:1.95rem}.w200r{width:2rem}.w205r{width:2.05rem}.w210r{width:2.1rem}.w215r{width:2.15rem}.w220r{width:2.2rem}.w225r{width:2.25rem}.w230r{width:2.3rem}.w235r{width:2.35rem}.w240r{width:2.4rem}.w245r{width:2.45rem}.w250r{width:2.5rem}.w255r{width:2.55rem}.w260r{width:2.6rem}.w265r{width:2.65rem}.w270r{width:2.7rem}.w275r{width:2.75rem}.w280r{width:2.8rem}.w285r{width:2.85rem}.w290r{width:2.9rem}.w295r{width:2.95rem}.w300r{width:3rem}.w305r{width:3.05rem}.w310r{width:3.1rem}.w315r{width:3.15rem}.w320r{width:3.2rem}.w325r{width:3.25rem}.w330r{width:3.3rem}.w335r{width:3.35rem}.w340r{width:3.4rem}.w345r{width:3.45rem}.w350r{width:3.5rem}.w355r{width:3.55rem}.w360r{width:3.6rem}.w365r{width:3.65rem}.w370r{width:3.7rem}.w375r{width:3.75rem}.w380r{width:3.8rem}.w385r{width:3.85rem}.w390r{width:3.9rem}.w395r{width:3.95rem}.w400r{width:4rem}.h0r{height:0rem}.h5r{height:0.05rem}.h10r{height:0.1rem}.h15r{height:0.15rem}.h20r{height:0.2rem}.h25r{height:0.25rem}.h30r{height:0.3rem}.h35r{height:0.35rem}.h40r{height:0.4rem}.h45r{height:0.45rem}.h50r{height:0.5rem}.h55r{height:0.55rem}.h60r{height:0.6rem}.h65r{height:0.65rem}.h70r{height:0.7rem}.h75r{height:0.75rem}.h80r{height:0.8rem}.h85r{height:0.85rem}.h90r{height:0.9rem}.h95r{height:0.95rem}.h100r{height:1rem}.h105r{height:1.05rem}.h110r{height:1.1rem}.h115r{height:1.15rem}.h120r{height:1.2rem}.h125r{height:1.25rem}.h130r{height:1.3rem}.h135r{height:1.35rem}.h140r{height:1.4rem}.h145r{height:1.45rem}.h150r{height:1.5rem}.h155r{height:1.55rem}.h160r{height:1.6rem}.h165r{height:1.65rem}.h170r{height:1.7rem}.h175r{height:1.75rem}.h180r{height:1.8rem}.h185r{height:1.85rem}.h190r{height:1.9rem}.h195r{height:1.95rem}.h200r{height:2rem}.h205r{height:2.05rem}.h210r{height:2.1rem}.h215r{height:2.15rem}.h220r{height:2.2rem}.h225r{height:2.25rem}.h230r{height:2.3rem}.h235r{height:2.35rem}.h240r{height:2.4rem}.h245r{height:2.45rem}.h250r{height:2.5rem}.h255r{height:2.55rem}.h260r{height:2.6rem}.h265r{height:2.65rem}.h270r{height:2.7rem}.h275r{height:2.75rem}.h280r{height:2.8rem}.h285r{height:2.85rem}.h290r{height:2.9rem}.h295r{height:2.95rem}.h300r{height:3rem}.h305r{height:3.05rem}.h310r{height:3.1rem}.h315r{height:3.15rem}.h320r{height:3.2rem}.h325r{height:3.25rem}.h330r{height:3.3rem}.h335r{height:3.35rem}.h340r{height:3.4rem}.h345r{height:3.45rem}.h350r{height:3.5rem}.h355r{height:3.55rem}.h360r{height:3.6rem}.h365r{height:3.65rem}.h370r{height:3.7rem}.h375r{height:3.75rem}.h380r{height:3.8rem}.h385r{height:3.85rem}.h390r{height:3.9rem}.h395r{height:3.95rem}.h400r{height:4rem}.wh0r{width:0rem;height:0rem}.wh5r{width:0.05rem;height:0.05rem}.wh10r{width:0.1rem;height:0.1rem}.wh15r{width:0.15rem;height:0.15rem}.wh20r{width:0.2rem;height:0.2rem}.wh25r{width:0.25rem;height:0.25rem}.wh30r{width:0.3rem;height:0.3rem}.wh35r{width:0.35rem;height:0.35rem}.wh40r{width:0.4rem;height:0.4rem}.wh45r{width:0.45rem;height:0.45rem}.wh50r{width:0.5rem;height:0.5rem}.wh55r{width:0.55rem;height:0.55rem}.wh60r{width:0.6rem;height:0.6rem}.wh65r{width:0.65rem;height:0.65rem}.wh70r{width:0.7rem;height:0.7rem}.wh75r{width:0.75rem;height:0.75rem}.wh80r{width:0.8rem;height:0.8rem}.wh85r{width:0.85rem;height:0.85rem}.wh90r{width:0.9rem;height:0.9rem}.wh95r{width:0.95rem;height:0.95rem}.wh100r{width:1rem;height:1rem}.wh105r{width:1.05rem;height:1.05rem}.wh110r{width:1.1rem;height:1.1rem}.wh115r{width:1.15rem;height:1.15rem}.wh120r{width:1.2rem;height:1.2rem}.wh125r{width:1.25rem;height:1.25rem}.wh130r{width:1.3rem;height:1.3rem}.wh135r{width:1.35rem;height:1.35rem}.wh140r{width:1.4rem;height:1.4rem}.wh145r{width:1.45rem;height:1.45rem}.wh150r{width:1.5rem;height:1.5rem}.wh155r{width:1.55rem;height:1.55rem}.wh160r{width:1.6rem;height:1.6rem}.wh165r{width:1.65rem;height:1.65rem}.wh170r{width:1.7rem;height:1.7rem}.wh175r{width:1.75rem;height:1.75rem}.wh180r{width:1.8rem;height:1.8rem}.wh185r{width:1.85rem;height:1.85rem}.wh190r{width:1.9rem;height:1.9rem}.wh195r{width:1.95rem;height:1.95rem}.wh200r{width:2rem;height:2rem}.wh205r{width:2.05rem;height:2.05rem}.wh210r{width:2.1rem;height:2.1rem}.wh215r{width:2.15rem;height:2.15rem}.wh220r{width:2.2rem;height:2.2rem}.wh225r{width:2.25rem;height:2.25rem}.wh230r{width:2.3rem;height:2.3rem}.wh235r{width:2.35rem;height:2.35rem}.wh240r{width:2.4rem;height:2.4rem}.wh245r{width:2.45rem;height:2.45rem}.wh250r{width:2.5rem;height:2.5rem}.wh255r{width:2.55rem;height:2.55rem}.wh260r{width:2.6rem;height:2.6rem}.wh265r{width:2.65rem;height:2.65rem}.wh270r{width:2.7rem;height:2.7rem}.wh275r{width:2.75rem;height:2.75rem}.wh280r{width:2.8rem;height:2.8rem}.wh285r{width:2.85rem;height:2.85rem}.wh290r{width:2.9rem;height:2.9rem}.wh295r{width:2.95rem;height:2.95rem}.wh300r{width:3rem;height:3rem}.wh305r{width:3.05rem;height:3.05rem}.wh310r{width:3.1rem;height:3.1rem}.wh315r{width:3.15rem;height:3.15rem}.wh320r{width:3.2rem;height:3.2rem}.wh325r{width:3.25rem;height:3.25rem}.wh330r{width:3.3rem;height:3.3rem}.wh335r{width:3.35rem;height:3.35rem}.wh340r{width:3.4rem;height:3.4rem}.wh345r{width:3.45rem;height:3.45rem}.wh350r{width:3.5rem;height:3.5rem}.wh355r{width:3.55rem;height:3.55rem}.wh360r{width:3.6rem;height:3.6rem}.wh365r{width:3.65rem;height:3.65rem}.wh370r{width:3.7rem;height:3.7rem}.wh375r{width:3.75rem;height:3.75rem}.wh380r{width:3.8rem;height:3.8rem}.wh385r{width:3.85rem;height:3.85rem}.wh390r{width:3.9rem;height:3.9rem}.wh395r{width:3.95rem;height:3.95rem}.wh400r{width:4rem;height:4rem}.w0e{width:0em}.w5e{width:0.05em}.w10e{width:0.1em}.w15e{width:0.15em}.w20e{width:0.2em}.w25e{width:0.25em}.w30e{width:0.3em}.w35e{width:0.35em}.w40e{width:0.4em}.w45e{width:0.45em}.w50e{width:0.5em}.w55e{width:0.55em}.w60e{width:0.6em}.w65e{width:0.65em}.w70e{width:0.7em}.w75e{width:0.75em}.w80e{width:0.8em}.w85e{width:0.85em}.w90e{width:0.9em}.w95e{width:0.95em}.w100e{width:1em}.w105e{width:1.05em}.w110e{width:1.1em}.w115e{width:1.15em}.w120e{width:1.2em}.w125e{width:1.25em}.w130e{width:1.3em}.w135e{width:1.35em}.w140e{width:1.4em}.w145e{width:1.45em}.w150e{width:1.5em}.w155e{width:1.55em}.w160e{width:1.6em}.w165e{width:1.65em}.w170e{width:1.7em}.w175e{width:1.75em}.w180e{width:1.8em}.w185e{width:1.85em}.w190e{width:1.9em}.w195e{width:1.95em}.w200e{width:2em}.w205e{width:2.05em}.w210e{width:2.1em}.w215e{width:2.15em}.w220e{width:2.2em}.w225e{width:2.25em}.w230e{width:2.3em}.w235e{width:2.35em}.w240e{width:2.4em}.w245e{width:2.45em}.w250e{width:2.5em}.w255e{width:2.55em}.w260e{width:2.6em}.w265e{width:2.65em}.w270e{width:2.7em}.w275e{width:2.75em}.w280e{width:2.8em}.w285e{width:2.85em}.w290e{width:2.9em}.w295e{width:2.95em}.w300e{width:3em}.w305e{width:3.05em}.w310e{width:3.1em}.w315e{width:3.15em}.w320e{width:3.2em}.w325e{width:3.25em}.w330e{width:3.3em}.w335e{width:3.35em}.w340e{width:3.4em}.w345e{width:3.45em}.w350e{width:3.5em}.w355e{width:3.55em}.w360e{width:3.6em}.w365e{width:3.65em}.w370e{width:3.7em}.w375e{width:3.75em}.w380e{width:3.8em}.w385e{width:3.85em}.w390e{width:3.9em}.w395e{width:3.95em}.w400e{width:4em}.h0e{height:0em}.h5e{height:0.05em}.h10e{height:0.1em}.h15e{height:0.15em}.h20e{height:0.2em}.h25e{height:0.25em}.h30e{height:0.3em}.h35e{height:0.35em}.h40e{height:0.4em}.h45e{height:0.45em}.h50e{height:0.5em}.h55e{height:0.55em}.h60e{height:0.6em}.h65e{height:0.65em}.h70e{height:0.7em}.h75e{height:0.75em}.h80e{height:0.8em}.h85e{height:0.85em}.h90e{height:0.9em}.h95e{height:0.95em}.h100e{height:1em}.h105e{height:1.05em}.h110e{height:1.1em}.h115e{height:1.15em}.h120e{height:1.2em}.h125e{height:1.25em}.h130e{height:1.3em}.h135e{height:1.35em}.h140e{height:1.4em}.h145e{height:1.45em}.h150e{height:1.5em}.h155e{height:1.55em}.h160e{height:1.6em}.h165e{height:1.65em}.h170e{height:1.7em}.h175e{height:1.75em}.h180e{height:1.8em}.h185e{height:1.85em}.h190e{height:1.9em}.h195e{height:1.95em}.h200e{height:2em}.h205e{height:2.05em}.h210e{height:2.1em}.h215e{height:2.15em}.h220e{height:2.2em}.h225e{height:2.25em}.h230e{height:2.3em}.h235e{height:2.35em}.h240e{height:2.4em}.h245e{height:2.45em}.h250e{height:2.5em}.h255e{height:2.55em}.h260e{height:2.6em}.h265e{height:2.65em}.h270e{height:2.7em}.h275e{height:2.75em}.h280e{height:2.8em}.h285e{height:2.85em}.h290e{height:2.9em}.h295e{height:2.95em}.h300e{height:3em}.h305e{height:3.05em}.h310e{height:3.1em}.h315e{height:3.15em}.h320e{height:3.2em}.h325e{height:3.25em}.h330e{height:3.3em}.h335e{height:3.35em}.h340e{height:3.4em}.h345e{height:3.45em}.h350e{height:3.5em}.h355e{height:3.55em}.h360e{height:3.6em}.h365e{height:3.65em}.h370e{height:3.7em}.h375e{height:3.75em}.h380e{height:3.8em}.h385e{height:3.85em}.h390e{height:3.9em}.h395e{height:3.95em}.h400e{height:4em}.wh0e{width:0em;height:0em}.wh5e{width:0.05em;height:0.05em}.wh10e{width:0.1em;height:0.1em}.wh15e{width:0.15em;height:0.15em}.wh20e{width:0.2em;height:0.2em}.wh25e{width:0.25em;height:0.25em}.wh30e{width:0.3em;height:0.3em}.wh35e{width:0.35em;height:0.35em}.wh40e{width:0.4em;height:0.4em}.wh45e{width:0.45em;height:0.45em}.wh50e{width:0.5em;height:0.5em}.wh55e{width:0.55em;height:0.55em}.wh60e{width:0.6em;height:0.6em}.wh65e{width:0.65em;height:0.65em}.wh70e{width:0.7em;height:0.7em}.wh75e{width:0.75em;height:0.75em}.wh80e{width:0.8em;height:0.8em}.wh85e{width:0.85em;height:0.85em}.wh90e{width:0.9em;height:0.9em}.wh95e{width:0.95em;height:0.95em}.wh100e{width:1em;height:1em}.wh105e{width:1.05em;height:1.05em}.wh110e{width:1.1em;height:1.1em}.wh115e{width:1.15em;height:1.15em}.wh120e{width:1.2em;height:1.2em}.wh125e{width:1.25em;height:1.25em}.wh130e{width:1.3em;height:1.3em}.wh135e{width:1.35em;height:1.35em}.wh140e{width:1.4em;height:1.4em}.wh145e{width:1.45em;height:1.45em}.wh150e{width:1.5em;height:1.5em}.wh155e{width:1.55em;height:1.55em}.wh160e{width:1.6em;height:1.6em}.wh165e{width:1.65em;height:1.65em}.wh170e{width:1.7em;height:1.7em}.wh175e{width:1.75em;height:1.75em}.wh180e{width:1.8em;height:1.8em}.wh185e{width:1.85em;height:1.85em}.wh190e{width:1.9em;height:1.9em}.wh195e{width:1.95em;height:1.95em}.wh200e{width:2em;height:2em}.wh205e{width:2.05em;height:2.05em}.wh210e{width:2.1em;height:2.1em}.wh215e{width:2.15em;height:2.15em}.wh220e{width:2.2em;height:2.2em}.wh225e{width:2.25em;height:2.25em}.wh230e{width:2.3em;height:2.3em}.wh235e{width:2.35em;height:2.35em}.wh240e{width:2.4em;height:2.4em}.wh245e{width:2.45em;height:2.45em}.wh250e{width:2.5em;height:2.5em}.wh255e{width:2.55em;height:2.55em}.wh260e{width:2.6em;height:2.6em}.wh265e{width:2.65em;height:2.65em}.wh270e{width:2.7em;height:2.7em}.wh275e{width:2.75em;height:2.75em}.wh280e{width:2.8em;height:2.8em}.wh285e{width:2.85em;height:2.85em}.wh290e{width:2.9em;height:2.9em}.wh295e{width:2.95em;height:2.95em}.wh300e{width:3em;height:3em}.wh305e{width:3.05em;height:3.05em}.wh310e{width:3.1em;height:3.1em}.wh315e{width:3.15em;height:3.15em}.wh320e{width:3.2em;height:3.2em}.wh325e{width:3.25em;height:3.25em}.wh330e{width:3.3em;height:3.3em}.wh335e{width:3.35em;height:3.35em}.wh340e{width:3.4em;height:3.4em}.wh345e{width:3.45em;height:3.45em}.wh350e{width:3.5em;height:3.5em}.wh355e{width:3.55em;height:3.55em}.wh360e{width:3.6em;height:3.6em}.wh365e{width:3.65em;height:3.65em}.wh370e{width:3.7em;height:3.7em}.wh375e{width:3.75em;height:3.75em}.wh380e{width:3.8em;height:3.8em}.wh385e{width:3.85em;height:3.85em}.wh390e{width:3.9em;height:3.9em}.wh395e{width:3.95em;height:3.95em}.wh400e{width:4em;height:4em}.visible{visibility:visible}.hidden{visibility:hidden}.opacity0{opacity:0.0}.opacity025{opacity:0.25}.opacity05{opacity:0.5}.opacity075{opacity:0.75}.opacity1{opacity:1.0}.tw-opacity{transition:opacity 0.4s ease-out}.tw-position{transition:left 0.4s ease-out,top 0.4s ease-out,right 0.4s ease-out,bottom 0.4s ease-out}.tw-size{transition:width 0.4s ease-out,height 0.4s ease-out}.tw-transform{transition:transform 0.4s ease-out}.tw-shadow{transition:box-shadow 0.4s ease-out}.tw-border{transition:border 0.4s ease-out}.tw-outline{transition:outline 0.4s ease-out}.tw-padding{transition:padding 0.4s ease-out}.tw-margin{transition:margin 0.4s ease-out}.tw-background{transition:background-position 0.4s ease-out,background-size 0.4s ease-out}.tw-all{transition:all 0.4s ease-out}.tw-fast{transition-duration:0.3s !important}.tw-normal{transition-duration:0.4s !important}.tw-slow{transition-duration:0.6s !important}.pd1{padding:1px}.pd2{padding:2px}.pd3{padding:3px}.pd4{padding:4px}.pd5{padding:5px}.pd6{padding:6px}.pd7{padding:7px}.pd8{padding:8px}.pd9{padding:9px}.pd10{padding:10px}.pd11{padding:11px}.pd12{padding:12px}.pd13{padding:13px}.pd14{padding:14px}.pd15{padding:15px}.pd16{padding:16px}.pd17{padding:17px}.pd18{padding:18px}.pd19{padding:19px}.pd20{padding:20px}.pdl1{padding-left:1px}.pdl2{padding-left:2px}.pdl3{padding-left:3px}.pdl4{padding-left:4px}.pdl5{padding-left:5px}.pdl6{padding-left:6px}.pdl7{padding-left:7px}.pdl8{padding-left:8px}.pdl9{padding-left:9px}.pdl10{padding-left:10px}.pdl11{padding-left:11px}.pdl12{padding-left:12px}.pdl13{padding-left:13px}.pdl14{padding-left:14px}.pdl15{padding-left:15px}.pdl16{padding-left:16px}.pdl17{padding-left:17px}.pdl18{padding-left:18px}.pdl19{padding-left:19px}.pdl20{padding-left:20px}.pdr1{padding-right:1px}.pdr2{padding-right:2px}.pdr3{padding-right:3px}.pdr4{padding-right:4px}.pdr5{padding-right:5px}.pdr6{padding-right:6px}.pdr7{padding-right:7px}.pdr8{padding-right:8px}.pdr9{padding-right:9px}.pdr10{padding-right:10px}.pdr11{padding-right:11px}.pdr12{padding-right:12px}.pdr13{padding-right:13px}.pdr14{padding-right:14px}.pdr15{padding-right:15px}.pdr16{padding-right:16px}.pdr17{padding-right:17px}.pdr18{padding-right:18px}.pdr19{padding-right:19px}.pdr20{padding-right:20px}.pdt1{padding-top:1px}.pdt2{padding-top:2px}.pdt3{padding-top:3px}.pdt4{padding-top:4px}.pdt5{padding-top:5px}.pdt6{padding-top:6px}.pdt7{padding-top:7px}.pdt8{padding-top:8px}.pdt9{padding-top:9px}.pdt10{padding-top:10px}.pdt11{padding-top:11px}.pdt12{padding-top:12px}.pdt13{padding-top:13px}.pdt14{padding-top:14px}.pdt15{padding-top:15px}.pdt16{padding-top:16px}.pdt17{padding-top:17px}.pdt18{padding-top:18px}.pdt19{padding-top:19px}.pdt20{padding-top:20px}.pdb1{padding-bottom:1px}.pdb2{padding-bottom:2px}.pdb3{padding-bottom:3px}.pdb4{padding-bottom:4px}.pdb5{padding-bottom:5px}.pdb6{padding-bottom:6px}.pdb7{padding-bottom:7px}.pdb8{padding-bottom:8px}.pdb9{padding-bottom:9px}.pdb10{padding-bottom:10px}.pdb11{padding-bottom:11px}.pdb12{padding-bottom:12px}.pdb13{padding-bottom:13px}.pdb14{padding-bottom:14px}.pdb15{padding-bottom:15px}.pdb16{padding-bottom:16px}.pdb17{padding-bottom:17px}.pdb18{padding-bottom:18px}.pdb19{padding-bottom:19px}.pdb20{padding-bottom:20px}.pdh1{padding-left:1px;padding-right:1px}.pdh2{padding-left:2px;padding-right:2px}.pdh3{padding-left:3px;padding-right:3px}.pdh4{padding-left:4px;padding-right:4px}.pdh5{padding-left:5px;padding-right:5px}.pdh6{padding-left:6px;padding-right:6px}.pdh7{padding-left:7px;padding-right:7px}.pdh8{padding-left:8px;padding-right:8px}.pdh9{padding-left:9px;padding-right:9px}.pdh10{padding-left:10px;padding-right:10px}.pdh11{padding-left:11px;padding-right:11px}.pdh12{padding-left:12px;padding-right:12px}.pdh13{padding-left:13px;padding-right:13px}.pdh14{padding-left:14px;padding-right:14px}.pdh15{padding-left:15px;padding-right:15px}.pdh16{padding-left:16px;padding-right:16px}.pdh17{padding-left:17px;padding-right:17px}.pdh18{padding-left:18px;padding-right:18px}.pdh19{padding-left:19px;padding-right:19px}.pdh20{padding-left:20px;padding-right:20px}.pdv1{padding-top:1px;padding-bottom:1px}.pdv2{padding-top:2px;padding-bottom:2px}.pdv3{padding-top:3px;padding-bottom:3px}.pdv4{padding-top:4px;padding-bottom:4px}.pdv5{padding-top:5px;padding-bottom:5px}.pdv6{padding-top:6px;padding-bottom:6px}.pdv7{padding-top:7px;padding-bottom:7px}.pdv8{padding-top:8px;padding-bottom:8px}.pdv9{padding-top:9px;padding-bottom:9px}.pdv10{padding-top:10px;padding-bottom:10px}.pdv11{padding-top:11px;padding-bottom:11px}.pdv12{padding-top:12px;padding-bottom:12px}.pdv13{padding-top:13px;padding-bottom:13px}.pdv14{padding-top:14px;padding-bottom:14px}.pdv15{padding-top:15px;padding-bottom:15px}.pdv16{padding-top:16px;padding-bottom:16px}.pdv17{padding-top:17px;padding-bottom:17px}.pdv18{padding-top:18px;padding-bottom:18px}.pdv19{padding-top:19px;padding-bottom:19px}.pdv20{padding-top:20px;padding-bottom:20px}.m1{margin:1px}.m2{margin:2px}.m3{margin:3px}.m4{margin:4px}.m5{margin:5px}.m6{margin:6px}.m7{margin:7px}.m8{margin:8px}.m9{margin:9px}.m10{margin:10px}.m11{margin:11px}.m12{margin:12px}.m13{margin:13px}.m14{margin:14px}.m15{margin:15px}.m16{margin:16px}.m17{margin:17px}.m18{margin:18px}.m19{margin:19px}.m20{margin:20px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml7{margin-left:7px}.ml8{margin-left:8px}.ml9{margin-left:9px}.ml10{margin-left:10px}.ml11{margin-left:11px}.ml12{margin-left:12px}.ml13{margin-left:13px}.ml14{margin-left:14px}.ml15{margin-left:15px}.ml16{margin-left:16px}.ml17{margin-left:17px}.ml18{margin-left:18px}.ml19{margin-left:19px}.ml20{margin-left:20px}.mr1{margin-right:1px}.mr2{margin-right:2px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr6{margin-right:6px}.mr7{margin-right:7px}.mr8{margin-right:8px}.mr9{margin-right:9px}.mr10{margin-right:10px}.mr11{margin-right:11px}.mr12{margin-right:12px}.mr13{margin-right:13px}.mr14{margin-right:14px}.mr15{margin-right:15px}.mr16{margin-right:16px}.mr17{margin-right:17px}.mr18{margin-right:18px}.mr19{margin-right:19px}.mr20{margin-right:20px}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px}.mt6{margin-top:6px}.mt7{margin-top:7px}.mt8{margin-top:8px}.mt9{margin-top:9px}.mt10{margin-top:10px}.mt11{margin-top:11px}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt19{margin-top:19px}.mt20{margin-top:20px}.mb1{margin-bottom:1px}.mb2{margin-bottom:2px}.mb3{margin-bottom:3px}.mb4{margin-bottom:4px}.mb5{margin-bottom:5px}.mb6{margin-bottom:6px}.mb7{margin-bottom:7px}.mb8{margin-bottom:8px}.mb9{margin-bottom:9px}.mb10{margin-bottom:10px}.mb11{margin-bottom:11px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px}.mb16{margin-bottom:16px}.mb17{margin-bottom:17px}.mb18{margin-bottom:18px}.mb19{margin-bottom:19px}.mb20{margin-bottom:20px}.mh1{margin-left:1px;margin-right:1px}.mh2{margin-left:2px;margin-right:2px}.mh3{margin-left:3px;margin-right:3px}.mh4{margin-left:4px;margin-right:4px}.mh5{margin-left:5px;margin-right:5px}.mh6{margin-left:6px;margin-right:6px}.mh7{margin-left:7px;margin-right:7px}.mh8{margin-left:8px;margin-right:8px}.mh9{margin-left:9px;margin-right:9px}.mh10{margin-left:10px;margin-right:10px}.mh11{margin-left:11px;margin-right:11px}.mh12{margin-left:12px;margin-right:12px}.mh13{margin-left:13px;margin-right:13px}.mh14{margin-left:14px;margin-right:14px}.mh15{margin-left:15px;margin-right:15px}.mh16{margin-left:16px;margin-right:16px}.mh17{margin-left:17px;margin-right:17px}.mh18{margin-left:18px;margin-right:18px}.mh19{margin-left:19px;margin-right:19px}.mh20{margin-left:20px;margin-right:20px}.mv1{margin-top:1px;margin-bottom:1px}.mv2{margin-top:2px;margin-bottom:2px}.mv3{margin-top:3px;margin-bottom:3px}.mv4{margin-top:4px;margin-bottom:4px}.mv5{margin-top:5px;margin-bottom:5px}.mv6{margin-top:6px;margin-bottom:6px}.mv7{margin-top:7px;margin-bottom:7px}.mv8{margin-top:8px;margin-bottom:8px}.mv9{margin-top:9px;margin-bottom:9px}.mv10{margin-top:10px;margin-bottom:10px}.mv11{margin-top:11px;margin-bottom:11px}.mv12{margin-top:12px;margin-bottom:12px}.mv13{margin-top:13px;margin-bottom:13px}.mv14{margin-top:14px;margin-bottom:14px}.mv15{margin-top:15px;margin-bottom:15px}.mv16{margin-top:16px;margin-bottom:16px}.mv17{margin-top:17px;margin-bottom:17px}.mv18{margin-top:18px;margin-bottom:18px}.mv19{margin-top:19px;margin-bottom:19px}.mv20{margin-top:20px;margin-bottom:20px}.lh,.lhx,.lhx2,.lhx3,.lhx4,.lhx5,.lvs,.lvs2,.lvs3,.lvs4{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:row;-moz-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-align-content:flex-start;-moz-align-content:flex-start;-ms-align-content:flex-start;align-content:flex-start}.lv,.lhs,.lhs2,.lhs3,.lhs4,.lvx,.lvx2,.lvx3,.lvx4,.lvx5{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-flex-direction:column;-moz-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0;-webkit-flex-grow:0;-moz-flex-grow:0;-ms-flex-grow:0;flex-grow:0;-webkit-align-content:flex-start;-moz-align-content:flex-start;-ms-align-content:flex-start;align-content:flex-start}.lhs{width:2px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs2{width:4px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs3{width:6px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhs4{width:8px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lhx{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lhx5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvs{height:2px;min-height:2px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs2{height:4px;min-height:4px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs3{height:6px;min-height:6px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvs4{height:8px;min-height:8px;-webkit-flex-shrink:0;-moz-flex-shrink:0;-ms-flex-shrink:0;flex-shrink:0}.lvx{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.lvx5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5;-webkit-flex-shrink:1;-moz-flex-shrink:1;-ms-flex-shrink:1;flex-shrink:1}.fg1{-webkit-flex-grow:1;-moz-flex-grow:1;-ms-flex-grow:1;flex-grow:1}.fg2{-webkit-flex-grow:2;-moz-flex-grow:2;-ms-flex-grow:2;flex-grow:2}.fg3{-webkit-flex-grow:3;-moz-flex-grow:3;-ms-flex-grow:3;flex-grow:3}.fg4{-webkit-flex-grow:4;-moz-flex-grow:4;-ms-flex-grow:4;flex-grow:4}.fg5{-webkit-flex-grow:5;-moz-flex-grow:5;-ms-flex-grow:5;flex-grow:5}.fg6{-webkit-flex-grow:6;-moz-flex-grow:6;-ms-flex-grow:6;flex-grow:6}.fg7{-webkit-flex-grow:7;-moz-flex-grow:7;-ms-flex-grow:7;flex-grow:7}.fg8{-webkit-flex-grow:8;-moz-flex-grow:8;-ms-flex-grow:8;flex-grow:8}.fg9{-webkit-flex-grow:9;-moz-flex-grow:9;-ms-flex-grow:9;flex-grow:9}.fg10{-webkit-flex-grow:10;-moz-flex-grow:10;-ms-flex-grow:10;flex-grow:10}.ltl{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.ltc{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.ltr{-webkit-justify-content:flex-start;justify-content:flex-start;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.ll{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.lc{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.lr{-webkit-justify-content:center;justify-content:center;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.lbl{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:flex-start;-moz-flex-align:flex-start;-ms-flex-align:flex-start;-webkit-align-items:flex-start;align-items:flex-start}.lbc{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:center;-moz-flex-align:center;-ms-flex-align:center;-webkit-align-items:center;align-items:center}.lbr{-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-flex-align:flex-end;-moz-flex-align:flex-end;-ms-flex-align:flex-end;-webkit-align-items:flex-end;align-items:flex-end}.l-wrap{-webkit-flex-wrap:wrap;-moz-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.l-rwrap{-webkit-flex-wrap:wrap-reverse;-moz-flex-wrap:wrap-reverse;-ms-flex-wrap:wrap-reverse;flex-wrap:wrap-reverse}.l-nowrap{-webkit-flex-wrap:nowrap;-moz-flex-wrap:nowrap;-ms-flex-wrap:nowrap;flex-wrap:nowrap}.bk-red{background-color:red}.bk-red5{background-color:#ff0c0c}.bk-red10{background-color:#ff1919}.bk-red15{background-color:#ff2626}.bk-red20{background-color:#f33}.bk-red25{background-color:#ff3f3f}.bk-red30{background-color:#ff4c4c}.bk-red35{background-color:#ff5959}.bk-red40{background-color:#f66}.bk-red45{background-color:#ff7272}.bk-red50{background-color:#ff7f7f}.bk-red55{background-color:#ff8c8c}.bk-red60{background-color:#f99}.bk-red65{background-color:#ffa5a5}.bk-red70{background-color:#ffb2b2}.bk-red75{background-color:#ffbfbf}.bk-red80{background-color:#fcc}.bk-red85{background-color:#ffd8d8}.bk-red90{background-color:#ffe5e5}.bk-red95{background-color:#fff2f2}.bk-green{background-color:lime}.bk-green5{background-color:#0cff0c}.bk-green10{background-color:#19ff19}.bk-green15{background-color:#26ff26}.bk-green20{background-color:#3f3}.bk-green25{background-color:#3fff3f}.bk-green30{background-color:#4cff4c}.bk-green35{background-color:#59ff59}.bk-green40{background-color:#6f6}.bk-green45{background-color:#72ff72}.bk-green50{background-color:#7fff7f}.bk-green55{background-color:#8cff8c}.bk-green60{background-color:#9f9}.bk-green65{background-color:#a5ffa5}.bk-green70{background-color:#b2ffb2}.bk-green75{background-color:#bfffbf}.bk-green80{background-color:#cfc}.bk-green85{background-color:#d8ffd8}.bk-green90{background-color:#e5ffe5}.bk-green95{background-color:#f2fff2}.bk-blue{background-color:blue}.bk-blue5{background-color:#0c0cff}.bk-blue10{background-color:#1919ff}.bk-blue15{background-color:#2626ff}.bk-blue20{background-color:#33f}.bk-blue25{background-color:#3f3fff}.bk-blue30{background-color:#4c4cff}.bk-blue35{background-color:#5959ff}.bk-blue40{background-color:#66f}.bk-blue45{background-color:#7272ff}.bk-blue50{background-color:#7f7fff}.bk-blue55{background-color:#8c8cff}.bk-blue60{background-color:#99f}.bk-blue65{background-color:#a5a5ff}.bk-blue70{background-color:#b2b2ff}.bk-blue75{background-color:#bfbfff}.bk-blue80{background-color:#ccf}.bk-blue85{background-color:#d8d8ff}.bk-blue90{background-color:#e5e5ff}.bk-blue95{background-color:#f2f2ff}.bk-yellow{background-color:#ff0}.bk-yellow5{background-color:#ffff0c}.bk-yellow10{background-color:#ffff19}.bk-yellow15{background-color:#ffff26}.bk-yellow20{background-color:#ff3}.bk-yellow25{background-color:#ffff3f}.bk-yellow30{background-color:#ffff4c}.bk-yellow35{background-color:#ffff59}.bk-yellow40{background-color:#ff6}.bk-yellow45{background-color:#ffff72}.bk-yellow50{background-color:#ffff7f}.bk-yellow55{background-color:#ffff8c}.bk-yellow60{background-color:#ff9}.bk-yellow65{background-color:#ffffa5}.bk-yellow70{background-color:#ffffb2}.bk-yellow75{background-color:#ffffbf}.bk-yellow80{background-color:#ffc}.bk-yellow85{background-color:#ffffd8}.bk-yellow90{background-color:#ffffe5}.bk-yellow95{background-color:#fffff2}.bk-cyan{background-color:cyan}.bk-cyan5{background-color:#0cffff}.bk-cyan10{background-color:#19ffff}.bk-cyan15{background-color:#26ffff}.bk-cyan20{background-color:#3ff}.bk-cyan25{background-color:#3fffff}.bk-cyan30{background-color:#4cffff}.bk-cyan35{background-color:#59ffff}.bk-cyan40{background-color:#6ff}.bk-cyan45{background-color:#72ffff}.bk-cyan50{background-color:#7fffff}.bk-cyan55{background-color:#8cffff}.bk-cyan60{background-color:#9ff}.bk-cyan65{background-color:#a5ffff}.bk-cyan70{background-color:#b2ffff}.bk-cyan75{background-color:#bfffff}.bk-cyan80{background-color:#cff}.bk-cyan85{background-color:#d8ffff}.bk-cyan90{background-color:#e5ffff}.bk-cyan95{background-color:#f2ffff}.bk-magenta{background-color:#f0f}.bk-magenta5{background-color:#ff0cff}.bk-magenta10{background-color:#ff19ff}.bk-magenta15{background-color:#ff26ff}.bk-magenta20{background-color:#f3f}.bk-magenta25{background-color:#ff3fff}.bk-magenta30{background-color:#ff4cff}.bk-magenta35{background-color:#ff59ff}.bk-magenta40{background-color:#f6f}.bk-magenta45{background-color:#ff72ff}.bk-magenta50{background-color:#ff7fff}.bk-magenta55{background-color:#ff8cff}.bk-magenta60{background-color:#f9f}.bk-magenta65{background-color:#ffa5ff}.bk-magenta70{background-color:#ffb2ff}.bk-magenta75{background-color:#ffbfff}.bk-magenta80{background-color:#fcf}.bk-magenta85{background-color:#ffd8ff}.bk-magenta90{background-color:#ffe5ff}.bk-magenta95{background-color:#fff2ff}.bk-gray{background-color:#000}.bk-gray5{background-color:#0c0c0c}.bk-gray10{background-color:#191919}.bk-gray15{background-color:#262626}.bk-gray20{background-color:#333}.bk-gray25{background-color:#3f3f3f}.bk-gray30{background-color:#4c4c4c}.bk-gray35{background-color:#595959}.bk-gray40{background-color:#666}.bk-gray45{background-color:#727272}.bk-gray50{background-color:#7f7f7f}.bk-gray55{background-color:#8c8c8c}.bk-gray60{background-color:#999}.bk-gray65{background-color:#a5a5a5}.bk-gray70{background-color:#b2b2b2}.bk-gray75{background-color:#bfbfbf}.bk-gray80{background-color:#ccc}.bk-gray85{background-color:#d8d8d8}.bk-gray90{background-color:#e5e5e5}.bk-gray95{background-color:#f2f2f2}.bk-white{background-color:#fff}.bk-black{background-color:#000}.bk-clear{background-color:transparent}.t-red{color:red}.t-red5{color:#ff0c0c}.t-red10{color:#ff1919}.t-red15{color:#ff2626}.t-red20{color:#f33}.t-red25{color:#ff3f3f}.t-red30{color:#ff4c4c}.t-red35{color:#ff5959}.t-red40{color:#f66}.t-red45{color:#ff7272}.t-red50{color:#ff7f7f}.t-red55{color:#ff8c8c}.t-red60{color:#f99}.t-red65{color:#ffa5a5}.t-red70{color:#ffb2b2}.t-red75{color:#ffbfbf}.t-red80{color:#fcc}.t-red85{color:#ffd8d8}.t-red90{color:#ffe5e5}.t-red95{color:#fff2f2}.t-green{color:lime}.t-green5{color:#0cff0c}.t-green10{color:#19ff19}.t-green15{color:#26ff26}.t-green20{color:#3f3}.t-green25{color:#3fff3f}.t-green30{color:#4cff4c}.t-green35{color:#59ff59}.t-green40{color:#6f6}.t-green45{color:#72ff72}.t-green50{color:#7fff7f}.t-green55{color:#8cff8c}.t-green60{color:#9f9}.t-green65{color:#a5ffa5}.t-green70{color:#b2ffb2}.t-green75{color:#bfffbf}.t-green80{color:#cfc}.t-green85{color:#d8ffd8}.t-green90{color:#e5ffe5}.t-green95{color:#f2fff2}.t-blue{color:blue}.t-blue5{color:#0c0cff}.t-blue10{color:#1919ff}.t-blue15{color:#2626ff}.t-blue20{color:#33f}.t-blue25{color:#3f3fff}.t-blue30{color:#4c4cff}.t-blue35{color:#5959ff}.t-blue40{color:#66f}.t-blue45{color:#7272ff}.t-blue50{color:#7f7fff}.t-blue55{color:#8c8cff}.t-blue60{color:#99f}.t-blue65{color:#a5a5ff}.t-blue70{color:#b2b2ff}.t-blue75{color:#bfbfff}.t-blue80{color:#ccf}.t-blue85{color:#d8d8ff}.t-blue90{color:#e5e5ff}.t-blue95{color:#f2f2ff}.t-yellow{color:#ff0}.t-yellow5{color:#ffff0c}.t-yellow10{color:#ffff19}.t-yellow15{color:#ffff26}.t-yellow20{color:#ff3}.t-yellow25{color:#ffff3f}.t-yellow30{color:#ffff4c}.t-yellow35{color:#ffff59}.t-yellow40{color:#ff6}.t-yellow45{color:#ffff72}.t-yellow50{color:#ffff7f}.t-yellow55{color:#ffff8c}.t-yellow60{color:#ff9}.t-yellow65{color:#ffffa5}.t-yellow70{color:#ffffb2}.t-yellow75{color:#ffffbf}.t-yellow80{color:#ffc}.t-yellow85{color:#ffffd8}.t-yellow90{color:#ffffe5}.t-yellow95{color:#fffff2}.t-cyan{color:cyan}.t-cyan5{color:#0cffff}.t-cyan10{color:#19ffff}.t-cyan15{color:#26ffff}.t-cyan20{color:#3ff}.t-cyan25{color:#3fffff}.t-cyan30{color:#4cffff}.t-cyan35{color:#59ffff}.t-cyan40{color:#6ff}.t-cyan45{color:#72ffff}.t-cyan50{color:#7fffff}.t-cyan55{color:#8cffff}.t-cyan60{color:#9ff}.t-cyan65{color:#a5ffff}.t-cyan70{color:#b2ffff}.t-cyan75{color:#bfffff}.t-cyan80{color:#cff}.t-cyan85{color:#d8ffff}.t-cyan90{color:#e5ffff}.t-cyan95{color:#f2ffff}.t-magenta{color:#f0f}.t-magenta5{color:#ff0cff}.t-magenta10{color:#ff19ff}.t-magenta15{color:#ff26ff}.t-magenta20{color:#f3f}.t-magenta25{color:#ff3fff}.t-magenta30{color:#ff4cff}.t-magenta35{color:#ff59ff}.t-magenta40{color:#f6f}.t-magenta45{color:#ff72ff}.t-magenta50{color:#ff7fff}.t-magenta55{color:#ff8cff}.t-magenta60{color:#f9f}.t-magenta65{color:#ffa5ff}.t-magenta70{color:#ffb2ff}.t-magenta75{color:#ffbfff}.t-magenta80{color:#fcf}.t-magenta85{color:#ffd8ff}.t-magenta90{color:#ffe5ff}.t-magenta95{color:#fff2ff}.t-gray{color:#000}.t-gray5{color:#0c0c0c}.t-gray10{color:#191919}.t-gray15{color:#262626}.t-gray20{color:#333}.t-gray25{color:#3f3f3f}.t-gray30{color:#4c4c4c}.t-gray35{color:#595959}.t-gray40{color:#666}.t-gray45{color:#727272}.t-gray50{color:#7f7f7f}.t-gray55{color:#8c8c8c}.t-gray60{color:#999}.t-gray65{color:#a5a5a5}.t-gray70{color:#b2b2b2}.t-gray75{color:#bfbfbf}.t-gray80{color:#ccc}.t-gray85{color:#d8d8d8}.t-gray90{color:#e5e5e5}.t-gray95{color:#f2f2f2}.t-white{color:#fff}.t-black{color:#000}.t-clear{color:transparent}.b-red{border-color:red}.b-red5{border-color:#ff0c0c}.b-red10{border-color:#ff1919}.b-red15{border-color:#ff2626}.b-red20{border-color:#f33}.b-red25{border-color:#ff3f3f}.b-red30{border-color:#ff4c4c}.b-red35{border-color:#ff5959}.b-red40{border-color:#f66}.b-red45{border-color:#ff7272}.b-red50{border-color:#ff7f7f}.b-red55{border-color:#ff8c8c}.b-red60{border-color:#f99}.b-red65{border-color:#ffa5a5}.b-red70{border-color:#ffb2b2}.b-red75{border-color:#ffbfbf}.b-red80{border-color:#fcc}.b-red85{border-color:#ffd8d8}.b-red90{border-color:#ffe5e5}.b-red95{border-color:#fff2f2}.b-green{border-color:lime}.b-green5{border-color:#0cff0c}.b-green10{border-color:#19ff19}.b-green15{border-color:#26ff26}.b-green20{border-color:#3f3}.b-green25{border-color:#3fff3f}.b-green30{border-color:#4cff4c}.b-green35{border-color:#59ff59}.b-green40{border-color:#6f6}.b-green45{border-color:#72ff72}.b-green50{border-color:#7fff7f}.b-green55{border-color:#8cff8c}.b-green60{border-color:#9f9}.b-green65{border-color:#a5ffa5}.b-green70{border-color:#b2ffb2}.b-green75{border-color:#bfffbf}.b-green80{border-color:#cfc}.b-green85{border-color:#d8ffd8}.b-green90{border-color:#e5ffe5}.b-green95{border-color:#f2fff2}.b-blue{border-color:blue}.b-blue5{border-color:#0c0cff}.b-blue10{border-color:#1919ff}.b-blue15{border-color:#2626ff}.b-blue20{border-color:#33f}.b-blue25{border-color:#3f3fff}.b-blue30{border-color:#4c4cff}.b-blue35{border-color:#5959ff}.b-blue40{border-color:#66f}.b-blue45{border-color:#7272ff}.b-blue50{border-color:#7f7fff}.b-blue55{border-color:#8c8cff}.b-blue60{border-color:#99f}.b-blue65{border-color:#a5a5ff}.b-blue70{border-color:#b2b2ff}.b-blue75{border-color:#bfbfff}.b-blue80{border-color:#ccf}.b-blue85{border-color:#d8d8ff}.b-blue90{border-color:#e5e5ff}.b-blue95{border-color:#f2f2ff}.b-yellow{border-color:#ff0}.b-yellow5{border-color:#ffff0c}.b-yellow10{border-color:#ffff19}.b-yellow15{border-color:#ffff26}.b-yellow20{border-color:#ff3}.b-yellow25{border-color:#ffff3f}.b-yellow30{border-color:#ffff4c}.b-yellow35{border-color:#ffff59}.b-yellow40{border-color:#ff6}.b-yellow45{border-color:#ffff72}.b-yellow50{border-color:#ffff7f}.b-yellow55{border-color:#ffff8c}.b-yellow60{border-color:#ff9}.b-yellow65{border-color:#ffffa5}.b-yellow70{border-color:#ffffb2}.b-yellow75{border-color:#ffffbf}.b-yellow80{border-color:#ffc}.b-yellow85{border-color:#ffffd8}.b-yellow90{border-color:#ffffe5}.b-yellow95{border-color:#fffff2}.b-cyan{border-color:cyan}.b-cyan5{border-color:#0cffff}.b-cyan10{border-color:#19ffff}.b-cyan15{border-color:#26ffff}.b-cyan20{border-color:#3ff}.b-cyan25{border-color:#3fffff}.b-cyan30{border-color:#4cffff}.b-cyan35{border-color:#59ffff}.b-cyan40{border-color:#6ff}.b-cyan45{border-color:#72ffff}.b-cyan50{border-color:#7fffff}.b-cyan55{border-color:#8cffff}.b-cyan60{border-color:#9ff}.b-cyan65{border-color:#a5ffff}.b-cyan70{border-color:#b2ffff}.b-cyan75{border-color:#bfffff}.b-cyan80{border-color:#cff}.b-cyan85{border-color:#d8ffff}.b-cyan90{border-color:#e5ffff}.b-cyan95{border-color:#f2ffff}.b-magenta{border-color:#f0f}.b-magenta5{border-color:#ff0cff}.b-magenta10{border-color:#ff19ff}.b-magenta15{border-color:#ff26ff}.b-magenta20{border-color:#f3f}.b-magenta25{border-color:#ff3fff}.b-magenta30{border-color:#ff4cff}.b-magenta35{border-color:#ff59ff}.b-magenta40{border-color:#f6f}.b-magenta45{border-color:#ff72ff}.b-magenta50{border-color:#ff7fff}.b-magenta55{border-color:#ff8cff}.b-magenta60{border-color:#f9f}.b-magenta65{border-color:#ffa5ff}.b-magenta70{border-color:#ffb2ff}.b-magenta75{border-color:#ffbfff}.b-magenta80{border-color:#fcf}.b-magenta85{border-color:#ffd8ff}.b-magenta90{border-color:#ffe5ff}.b-magenta95{border-color:#fff2ff}.b-gray{border-color:#000}.b-gray5{border-color:#0c0c0c}.b-gray10{border-color:#191919}.b-gray15{border-color:#262626}.b-gray20{border-color:#333}.b-gray25{border-color:#3f3f3f}.b-gray30{border-color:#4c4c4c}.b-gray35{border-color:#595959}.b-gray40{border-color:#666}.b-gray45{border-color:#727272}.b-gray50{border-color:#7f7f7f}.b-gray55{border-color:#8c8c8c}.b-gray60{border-color:#999}.b-gray65{border-color:#a5a5a5}.b-gray70{border-color:#b2b2b2}.b-gray75{border-color:#bfbfbf}.b-gray80{border-color:#ccc}.b-gray85{border-color:#d8d8d8}.b-gray90{border-color:#e5e5e5}.b-gray95{border-color:#f2f2f2}.b-white{border-color:#fff}.b-black{border-color:#000}.b-clear{border-color:transparent}.o-red{outline-color:red}.o-red5{outline-color:#ff0c0c}.o-red10{outline-color:#ff1919}.o-red15{outline-color:#ff2626}.o-red20{outline-color:#f33}.o-red25{outline-color:#ff3f3f}.o-red30{outline-color:#ff4c4c}.o-red35{outline-color:#ff5959}.o-red40{outline-color:#f66}.o-red45{outline-color:#ff7272}.o-red50{outline-color:#ff7f7f}.o-red55{outline-color:#ff8c8c}.o-red60{outline-color:#f99}.o-red65{outline-color:#ffa5a5}.o-red70{outline-color:#ffb2b2}.o-red75{outline-color:#ffbfbf}.o-red80{outline-color:#fcc}.o-red85{outline-color:#ffd8d8}.o-red90{outline-color:#ffe5e5}.o-red95{outline-color:#fff2f2}.o-green{outline-color:lime}.o-green5{outline-color:#0cff0c}.o-green10{outline-color:#19ff19}.o-green15{outline-color:#26ff26}.o-green20{outline-color:#3f3}.o-green25{outline-color:#3fff3f}.o-green30{outline-color:#4cff4c}.o-green35{outline-color:#59ff59}.o-green40{outline-color:#6f6}.o-green45{outline-color:#72ff72}.o-green50{outline-color:#7fff7f}.o-green55{outline-color:#8cff8c}.o-green60{outline-color:#9f9}.o-green65{outline-color:#a5ffa5}.o-green70{outline-color:#b2ffb2}.o-green75{outline-color:#bfffbf}.o-green80{outline-color:#cfc}.o-green85{outline-color:#d8ffd8}.o-green90{outline-color:#e5ffe5}.o-green95{outline-color:#f2fff2}.o-blue{outline-color:blue}.o-blue5{outline-color:#0c0cff}.o-blue10{outline-color:#1919ff}.o-blue15{outline-color:#2626ff}.o-blue20{outline-color:#33f}.o-blue25{outline-color:#3f3fff}.o-blue30{outline-color:#4c4cff}.o-blue35{outline-color:#5959ff}.o-blue40{outline-color:#66f}.o-blue45{outline-color:#7272ff}.o-blue50{outline-color:#7f7fff}.o-blue55{outline-color:#8c8cff}.o-blue60{outline-color:#99f}.o-blue65{outline-color:#a5a5ff}.o-blue70{outline-color:#b2b2ff}.o-blue75{outline-color:#bfbfff}.o-blue80{outline-color:#ccf}.o-blue85{outline-color:#d8d8ff}.o-blue90{outline-color:#e5e5ff}.o-blue95{outline-color:#f2f2ff}.o-yellow{outline-color:#ff0}.o-yellow5{outline-color:#ffff0c}.o-yellow10{outline-color:#ffff19}.o-yellow15{outline-color:#ffff26}.o-yellow20{outline-color:#ff3}.o-yellow25{outline-color:#ffff3f}.o-yellow30{outline-color:#ffff4c}.o-yellow35{outline-color:#ffff59}.o-yellow40{outline-color:#ff6}.o-yellow45{outline-color:#ffff72}.o-yellow50{outline-color:#ffff7f}.o-yellow55{outline-color:#ffff8c}.o-yellow60{outline-color:#ff9}.o-yellow65{outline-color:#ffffa5}.o-yellow70{outline-color:#ffffb2}.o-yellow75{outline-color:#ffffbf}.o-yellow80{outline-color:#ffc}.o-yellow85{outline-color:#ffffd8}.o-yellow90{outline-color:#ffffe5}.o-yellow95{outline-color:#fffff2}.o-cyan{outline-color:cyan}.o-cyan5{outline-color:#0cffff}.o-cyan10{outline-color:#19ffff}.o-cyan15{outline-color:#26ffff}.o-cyan20{outline-color:#3ff}.o-cyan25{outline-color:#3fffff}.o-cyan30{outline-color:#4cffff}.o-cyan35{outline-color:#59ffff}.o-cyan40{outline-color:#6ff}.o-cyan45{outline-color:#72ffff}.o-cyan50{outline-color:#7fffff}.o-cyan55{outline-color:#8cffff}.o-cyan60{outline-color:#9ff}.o-cyan65{outline-color:#a5ffff}.o-cyan70{outline-color:#b2ffff}.o-cyan75{outline-color:#bfffff}.o-cyan80{outline-color:#cff}.o-cyan85{outline-color:#d8ffff}.o-cyan90{outline-color:#e5ffff}.o-cyan95{outline-color:#f2ffff}.o-magenta{outline-color:#f0f}.o-magenta5{outline-color:#ff0cff}.o-magenta10{outline-color:#ff19ff}.o-magenta15{outline-color:#ff26ff}.o-magenta20{outline-color:#f3f}.o-magenta25{outline-color:#ff3fff}.o-magenta30{outline-color:#ff4cff}.o-magenta35{outline-color:#ff59ff}.o-magenta40{outline-color:#f6f}.o-magenta45{outline-color:#ff72ff}.o-magenta50{outline-color:#ff7fff}.o-magenta55{outline-color:#ff8cff}.o-magenta60{outline-color:#f9f}.o-magenta65{outline-color:#ffa5ff}.o-magenta70{outline-color:#ffb2ff}.o-magenta75{outline-color:#ffbfff}.o-magenta80{outline-color:#fcf}.o-magenta85{outline-color:#ffd8ff}.o-magenta90{outline-color:#ffe5ff}.o-magenta95{outline-color:#fff2ff}.o-gray{outline-color:#000}.o-gray5{outline-color:#0c0c0c}.o-gray10{outline-color:#191919}.o-gray15{outline-color:#262626}.o-gray20{outline-color:#333}.o-gray25{outline-color:#3f3f3f}.o-gray30{outline-color:#4c4c4c}.o-gray35{outline-color:#595959}.o-gray40{outline-color:#666}.o-gray45{outline-color:#727272}.o-gray50{outline-color:#7f7f7f}.o-gray55{outline-color:#8c8c8c}.o-gray60{outline-color:#999}.o-gray65{outline-color:#a5a5a5}.o-gray70{outline-color:#b2b2b2}.o-gray75{outline-color:#bfbfbf}.o-gray80{outline-color:#ccc}.o-gray85{outline-color:#d8d8d8}.o-gray90{outline-color:#e5e5e5}.o-gray95{outline-color:#f2f2f2}.o-white{outline-color:#fff}.o-black{outline-color:#000}.o-clear{outline-color:transparent} 2 | -------------------------------------------------------------------------------- /sass/shortcutcss/_color.scss: -------------------------------------------------------------------------------- 1 | /** 2 | Colors 3 | //*/ 4 | $prefixes: (bk,t,b,o); 5 | $attribs: (background-color,color,border-color,outline-color); 6 | @for $j from 1 through length($prefixes) 7 | { 8 | $pf: nth($prefixes,$j); 9 | $at: nth($attribs,$j); 10 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-red#{$lb} { #{$at}: rgba(255,$c,$c,1.0); } } 11 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-green#{$lb} { #{$at}: rgba($c,255,$c,1.0); } } 12 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-blue#{$lb} { #{$at}: rgba($c,$c,255,1.0); } } 13 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-yellow#{$lb} { #{$at}: rgba(255,255,$c,1.0); } } 14 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-cyan#{$lb} { #{$at}: rgba($c,255,255,1.0); } } 15 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-magenta#{$lb} { #{$at}: rgba(255,$c,255,1.0); } } 16 | @for $i from 0 through 19 { $v: $i*5; $c: floor($i*0.05*255); $lb: zero-empty($v); .#{$pf}-gray#{$lb} { #{$at}: rgba($c,$c,$c,1.0); } } 17 | .#{$pf}-white { #{$at}: rgba(255,255,255,1.0); } 18 | .#{$pf}-black { #{$at}: rgba(0,0,0,1.0); } 19 | .#{$pf}-clear { #{$at}: rgba(0,0,0,0); } 20 | } 21 | -------------------------------------------------------------------------------- /sass/shortcutcss/_core.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "mixins"; 3 | /** 4 | Shortcut classes. 5 | //*/ 6 | 7 | .abs { position: absolute; } 8 | .rel { position: relative; } 9 | .fix { position: fixed; } 10 | 11 | .c-default { cursor: default; } 12 | .c-pointer { cursor: pointer; } 13 | .c-none { cursor: none; } 14 | 15 | .mouse-disable { pointer-events: none; } 16 | 17 | .select-disable { @include user-select(none); } 18 | 19 | .scroll { overflow: auto; } 20 | .scroll-x { overflow-x: auto; overflow-y: hidden; } 21 | .scroll-y { overflow-y: auto; overflow-x: hidden; } 22 | 23 | .tl { text-align: left; } 24 | .tc { text-align: center; } 25 | .tr { text-align: right; } 26 | 27 | .t-wrap { white-space: normal; } 28 | .t-nowrap { white-space: nowrap; } 29 | 30 | .inh { display: inherit; } 31 | .ib { display: inline-block; } 32 | .bl { display: block; } 33 | .none { display: none; } 34 | 35 | .fll { float: left; } 36 | .flr { float: right; } 37 | 38 | @for $i from 1 through 48 { $v: 4 + ($i*2); .fs#{$v} { font-size: #{$v}px; } } 39 | @for $i from 1 through 200 { $v: ($i*0.02); .fsr#{$v*100} { font-size: #{$v}rem; } } 40 | @for $i from 1 through 200 { $v: ($i*0.02); .fse#{$v*100} { font-size: #{$v}em; } } 41 | 42 | @for $i from 0 through 64 { $v: ($i*2); .w#{$v} { width: #{$v}px; } } 43 | @for $i from 0 through 64 { $v: ($i*2); .h#{$v} { height: #{$v}px; } } 44 | @for $i from 0 through 64 { $v: ($i*2); .wh#{$v} { width: #{$v}px; height: #{$v}px; } } 45 | 46 | @for $i from 0 through 20 { $v: ($i*5); .w#{$v}p { width: #{$v}%; } } 47 | @for $i from 0 through 20 { $v: ($i*5); .h#{$v}p { height: #{$v}%; } } 48 | @for $i from 0 through 20 { $v: ($i*5); .wh#{$v}p { width: #{$v}%; height: #{$v}%; } } 49 | 50 | @for $i from 0 through 20 { $v: ($i*5); .vw#{$v} { width: #{$v}vw; } } 51 | @for $i from 0 through 20 { $v: ($i*5); .vh#{$v} { height: #{$v}vh; } } 52 | @for $i from 0 through 20 { $v: ($i*5); .vwh#{$v} { width: #{$v}vw; height: #{$v}vh; } } 53 | 54 | @for $i from 0 through 80 { $v: ($i*0.05); .w#{$v*100}r { width: #{$v}rem; } } 55 | @for $i from 0 through 80 { $v: ($i*0.05); .h#{$v*100}r { height: #{$v}rem; } } 56 | @for $i from 0 through 80 { $v: ($i*0.05); .wh#{$v*100}r { width: #{$v}rem; height: #{$v}rem; } } 57 | 58 | @for $i from 0 through 80 { $v: ($i*0.05); .w#{$v*100}e { width: #{$v}em; } } 59 | @for $i from 0 through 80 { $v: ($i*0.05); .h#{$v*100}e { height: #{$v}em; } } 60 | @for $i from 0 through 80 { $v: ($i*0.05); .wh#{$v*100}e { width: #{$v}em; height: #{$v}em; } } 61 | 62 | .visible { visibility: visible; } 63 | .hidden { visibility: hidden; } 64 | 65 | .opacity0 { opacity: 0.0; } 66 | .opacity025 { opacity: 0.25; } 67 | .opacity05 { opacity: 0.5; } 68 | .opacity075 { opacity: 0.75; } 69 | .opacity1 { opacity: 1.0; } 70 | 71 | $twd: if(variable-exists("tw-duration"),$tw-duration,0.7s); 72 | 73 | .tw-opacity { transition: opacity $twd ease-out; } 74 | .tw-position { transition: left $twd ease-out, top $twd ease-out, right $twd ease-out, bottom $twd ease-out; } 75 | .tw-size { transition: width $twd ease-out, height $twd ease-out; } 76 | .tw-transform { transition: transform $twd ease-out; } 77 | .tw-shadow { transition: box-shadow $twd ease-out; } 78 | .tw-border { transition: border $twd ease-out; } 79 | .tw-outline { transition: outline $twd ease-out; } 80 | .tw-padding { transition: padding $twd ease-out; } 81 | .tw-margin { transition: margin $twd ease-out; } 82 | .tw-background { transition: background-position $twd ease-out, background-size $twd ease-out; } 83 | .tw-all { transition: all $twd ease-out; } 84 | 85 | 86 | $twd: if(variable-exists("tw-fast"), $tw-fast,0.25s); .tw-fast { transition-duration: $twd !important; } 87 | $twd: if(variable-exists("tw-normal"),$tw-normal,0.4s); .tw-normal { transition-duration: $twd !important; } 88 | $twd: if(variable-exists("tw-slow"), $tw-slow,0.6s); .tw-slow { transition-duration: $twd !important; } 89 | 90 | @for $i from 1 through 20 { .pd#{$i} { padding: #{$i}px; } } 91 | @for $i from 1 through 20 { .pdl#{$i} { padding-left: #{$i}px; } } 92 | @for $i from 1 through 20 { .pdr#{$i} { padding-right: #{$i}px; } } 93 | @for $i from 1 through 20 { .pdt#{$i} { padding-top: #{$i}px; } } 94 | @for $i from 1 through 20 { .pdb#{$i} { padding-bottom: #{$i}px; } } 95 | @for $i from 1 through 20 { .pdh#{$i} { padding-left: #{$i}px; padding-right: #{$i}px; } } 96 | @for $i from 1 through 20 { .pdv#{$i} { padding-top: #{$i}px; padding-bottom: #{$i}px; } } 97 | 98 | @for $i from 1 through 20 { .m#{$i} { margin: #{$i}px; } } 99 | @for $i from 1 through 20 { .ml#{$i} { margin-left: #{$i}px; } } 100 | @for $i from 1 through 20 { .mr#{$i} { margin-right: #{$i}px; } } 101 | @for $i from 1 through 20 { .mt#{$i} { margin-top: #{$i}px; } } 102 | @for $i from 1 through 20 { .mb#{$i} { margin-bottom: #{$i}px; } } 103 | @for $i from 1 through 20 { .mh#{$i} { margin-left: #{$i}px; margin-right: #{$i}px; } } 104 | @for $i from 1 through 20 { .mv#{$i} { margin-top: #{$i}px; margin-bottom: #{$i}px; } } 105 | 106 | 107 | /** 108 | Flex Layout 109 | //*/ 110 | .lh 111 | { 112 | @include flexbox(); 113 | @include flex-direction(row); 114 | @include flex-shrink(0); 115 | @include flex-grow(0); 116 | @include align-content(flex-start); 117 | } 118 | 119 | .lv 120 | { 121 | @include flexbox(); 122 | @include flex-direction(column); 123 | @include flex-shrink(0); 124 | @include flex-grow(0); 125 | @include align-content(flex-start); 126 | } 127 | 128 | 129 | 130 | @mixin layout-vertical-expand($s) { @extend .lv; @include flex-grow($s); @include flex-shrink(1); } 131 | @mixin layout-horizontal-expand($s) { @extend .lh; @include flex-grow($s); @include flex-shrink(1); } 132 | @mixin layout-vertical-space($s) { @extend .lh; height: $layout-space-size*$s; min-height:$layout-space-size*$s; @include flex-shrink(0); } 133 | @mixin layout-horizontal-space($s) { @extend .lv; width: $layout-space-size*$s; @include flex-shrink(0); } 134 | 135 | 136 | 137 | .lhs { @include layout-horizontal-space(1.0); } 138 | .lhs2 { @include layout-horizontal-space(2.0); } 139 | .lhs3 { @include layout-horizontal-space(3.0); } 140 | .lhs4 { @include layout-horizontal-space(4.0); } 141 | 142 | .lhx { @include layout-horizontal-expand(1); } 143 | .lhx2 { @include layout-horizontal-expand(2); } 144 | .lhx3 { @include layout-horizontal-expand(3); } 145 | .lhx4 { @include layout-horizontal-expand(4); } 146 | .lhx5 { @include layout-horizontal-expand(5); } 147 | 148 | .lvs { @include layout-vertical-space(1.0); } 149 | .lvs2 { @include layout-vertical-space(2.0); } 150 | .lvs3 { @include layout-vertical-space(3.0); } 151 | .lvs4 { @include layout-vertical-space(4.0); } 152 | 153 | .lvx { @include layout-vertical-expand(1); } 154 | .lvx2 { @include layout-vertical-expand(2); } 155 | .lvx3 { @include layout-vertical-expand(3); } 156 | .lvx4 { @include layout-vertical-expand(4); } 157 | .lvx5 { @include layout-vertical-expand(5); } 158 | 159 | @for $i from 1 through 10 { .fg#{$i} { @include flex-grow($i); } } 160 | 161 | .ltl { @include justify-content(flex-start); @include align-items(flex-start); } 162 | .ltc { @include justify-content(flex-start); @include align-items(center); } 163 | .ltr { @include justify-content(flex-start); @include align-items(flex-end); } 164 | .ll { @include justify-content(center); @include align-items(flex-start); } 165 | .lc { @include justify-content(center); @include align-items(center); } 166 | .lr { @include justify-content(center); @include align-items(flex-end); } 167 | .lbl { @include justify-content(flex-end); @include align-items(flex-start); } 168 | .lbc { @include justify-content(flex-end); @include align-items(center); } 169 | .lbr { @include justify-content(flex-end); @include align-items(flex-end); } 170 | 171 | .l-wrap { @include flex-wrap(wrap); } 172 | .l-rwrap { @include flex-wrap(wrap-reverse); } 173 | .l-nowrap { @include flex-wrap(nowrap); } 174 | -------------------------------------------------------------------------------- /sass/shortcutcss/_mixins.scss: -------------------------------------------------------------------------------- 1 | /* 2 | ######### Functions ######### 3 | */ 4 | @function zero-empty($v) 5 | { 6 | @if $v == 0 { @return ""; } 7 | @return $v; 8 | } 9 | 10 | /* 11 | ######### Misc ######### 12 | */ 13 | 14 | @mixin user-select($v) 15 | { 16 | -webkit-touch-callout: $v; 17 | -webkit-user-select: $v; 18 | -khtml-user-select: $v; 19 | -moz-user-select: $v; 20 | -ms-user-select: $v; 21 | user-select: $v; 22 | } 23 | 24 | /* 25 | ######### Flexbox ######### 26 | */ 27 | @mixin flexbox() 28 | { 29 | display: -webkit-box; 30 | display: -moz-box; 31 | display: -ms-flexbox; 32 | display: -webkit-flex; 33 | display: flex; 34 | } 35 | 36 | @mixin flex($values) 37 | { 38 | -webkit-box-flex: $values; 39 | -moz-box-flex: $values; 40 | -webkit-flex: $values; 41 | -ms-flex: $values; 42 | flex: $values; 43 | } 44 | 45 | @mixin flex-direction($values) 46 | { 47 | -webkit-flex-direction: $values; 48 | -moz-flex-direction: $values; 49 | -ms-flex-direction: $values; 50 | flex-direction: $values; 51 | } 52 | 53 | @mixin flex-shrink($values) 54 | { 55 | -webkit-flex-shrink: $values; 56 | -moz-flex-shrink: $values; 57 | -ms-flex-shrink: $values; 58 | flex-shrink: $values; 59 | } 60 | 61 | @mixin flex-grow($values) 62 | { 63 | -webkit-flex-grow: $values; 64 | -moz-flex-grow: $values; 65 | -ms-flex-grow: $values; 66 | flex-grow: $values; 67 | } 68 | 69 | @mixin flex-wrap($values) 70 | { 71 | -webkit-flex-wrap: $values; 72 | -moz-flex-wrap: $values; 73 | -ms-flex-wrap: $values; 74 | flex-wrap: $values; 75 | } 76 | 77 | @mixin order($val) 78 | { 79 | -webkit-box-ordinal-group: $val; 80 | -moz-box-ordinal-group: $val; 81 | -ms-flex-order: $val; 82 | -webkit-order: $val; 83 | order: $val; 84 | } 85 | 86 | @mixin align-items($align) 87 | { 88 | -webkit-flex-align: $align; 89 | -moz-flex-align: $align; 90 | -ms-flex-align: $align; 91 | -webkit-align-items: $align; 92 | align-items: $align; 93 | } 94 | 95 | @mixin align-content($align) 96 | { 97 | -webkit-align-content: $align; 98 | -moz-align-content: $align; 99 | -ms-align-content: $align; 100 | align-content: $align; 101 | } 102 | 103 | @mixin justify-content($val) 104 | { 105 | -webkit-justify-content: $val; 106 | justify-content: $val; 107 | } -------------------------------------------------------------------------------- /sass/shortcutcss/_variables.scss: -------------------------------------------------------------------------------- 1 | /** 2 | Variables 3 | //*/ 4 | 5 | $tw-fast: 0.3s; //Duration for Fast Tweens; 6 | $tw-normal: 0.4s; //Duration for Normal Tweens; 7 | $tw-slow: 0.6s; //Duration for Slow Tweens; 8 | $tw-duration: 0.4s; //Duration of Tween Shortcuts 9 | 10 | $layout-space-size: 2px; //Base space size for flex layout space class. -------------------------------------------------------------------------------- /sass/shortcutcss/all.scss: -------------------------------------------------------------------------------- 1 | @import "core"; 2 | @import "color"; -------------------------------------------------------------------------------- /sass/shortcutcss/no-color.scss: -------------------------------------------------------------------------------- 1 | @import "core"; 2 | --------------------------------------------------------------------------------