├── .editorconfig ├── .gitignore ├── .travis.yml ├── cli.js ├── expected.json ├── fixture.css ├── license ├── package.json ├── readme.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | output.json 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 'stable' 4 | - '4' 5 | -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict' 4 | 5 | const meow = require('meow') 6 | const cssstats = require('cssstats') 7 | const read = require('read-file-stdin') 8 | const write = require('write-file-stdout') 9 | 10 | const cli = meow(` 11 | Usage 12 | $ cssstats 13 | 14 | Example 15 | $ cssstats --help 16 | $ cssstats input.css output.json 17 | $ cssstats input.css > output.json 18 | $ cssstats < input.css > output.json 19 | `) 20 | 21 | const inputFile = cli.input[0] 22 | const outputFile = cli.input[1] 23 | 24 | read(inputFile, (err, buffer) => { 25 | if (err) { 26 | throw err 27 | } 28 | 29 | write(outputFile, JSON.stringify(cssstats(String(buffer)))) 30 | process.exit(0) 31 | }) 32 | -------------------------------------------------------------------------------- /expected.json: -------------------------------------------------------------------------------- 1 | { 2 | "size": 65882, 3 | "gzipSize": 16024, 4 | "humanizedSize": "64kB", 5 | "humanizedGzipSize": "16kB", 6 | "rules": { 7 | "total": 860, 8 | "size": { 9 | "graph": [ 10 | 2, 11 | 3, 12 | 5, 13 | 4, 14 | 3, 15 | 4, 16 | 2, 17 | 5, 18 | 1, 19 | 3, 20 | 1, 21 | 3, 22 | 4, 23 | 1, 24 | 6, 25 | 6, 26 | 11, 27 | 3, 28 | 1, 29 | 2, 30 | 1, 31 | 3, 32 | 3, 33 | 2, 34 | 5, 35 | 5, 36 | 1, 37 | 5, 38 | 6, 39 | 4, 40 | 5, 41 | 5, 42 | 6, 43 | 6, 44 | 1, 45 | 3, 46 | 4, 47 | 1, 48 | 16, 49 | 1, 50 | 2, 51 | 1, 52 | 9, 53 | 2, 54 | 1, 55 | 1, 56 | 1, 57 | 1, 58 | 1, 59 | 2, 60 | 3, 61 | 1, 62 | 4, 63 | 2, 64 | 1, 65 | 2, 66 | 1, 67 | 1, 68 | 1, 69 | 2, 70 | 2, 71 | 1, 72 | 2, 73 | 2, 74 | 2, 75 | 1, 76 | 6, 77 | 5, 78 | 4, 79 | 5, 80 | 2, 81 | 1, 82 | 1, 83 | 2, 84 | 1, 85 | 1, 86 | 1, 87 | 1, 88 | 1, 89 | 1, 90 | 1, 91 | 1, 92 | 4, 93 | 6, 94 | 1, 95 | 1, 96 | 1, 97 | 1, 98 | 3, 99 | 1, 100 | 2, 101 | 16, 102 | 2, 103 | 2, 104 | 2, 105 | 7, 106 | 5, 107 | 8, 108 | 1, 109 | 1, 110 | 2, 111 | 2, 112 | 1, 113 | 1, 114 | 1, 115 | 1, 116 | 7, 117 | 1, 118 | 2, 119 | 3, 120 | 1, 121 | 2, 122 | 3, 123 | 2, 124 | 2, 125 | 2, 126 | 12, 127 | 4, 128 | 8, 129 | 2, 130 | 1, 131 | 1, 132 | 8, 133 | 2, 134 | 2, 135 | 2, 136 | 2, 137 | 2, 138 | 2, 139 | 2, 140 | 2, 141 | 2, 142 | 2, 143 | 2, 144 | 4, 145 | 1, 146 | 1, 147 | 15, 148 | 1, 149 | 2, 150 | 1, 151 | 8, 152 | 1, 153 | 2, 154 | 1, 155 | 1, 156 | 2, 157 | 1, 158 | 1, 159 | 4, 160 | 6, 161 | 1, 162 | 14, 163 | 1, 164 | 1, 165 | 1, 166 | 2, 167 | 1, 168 | 2, 169 | 1, 170 | 1, 171 | 2, 172 | 1, 173 | 1, 174 | 2, 175 | 1, 176 | 2, 177 | 2, 178 | 1, 179 | 2, 180 | 6, 181 | 2, 182 | 2, 183 | 1, 184 | 2, 185 | 3, 186 | 2, 187 | 8, 188 | 4, 189 | 1, 190 | 4, 191 | 3, 192 | 1, 193 | 2, 194 | 1, 195 | 2, 196 | 1, 197 | 1, 198 | 1, 199 | 1, 200 | 3, 201 | 1, 202 | 1, 203 | 1, 204 | 2, 205 | 3, 206 | 4, 207 | 4, 208 | 5, 209 | 1, 210 | 1, 211 | 1, 212 | 2, 213 | 1, 214 | 7, 215 | 8, 216 | 7, 217 | 1, 218 | 2, 219 | 1, 220 | 1, 221 | 3, 222 | 2, 223 | 11, 224 | 4, 225 | 4, 226 | 2, 227 | 2, 228 | 6, 229 | 7, 230 | 1, 231 | 1, 232 | 1, 233 | 2, 234 | 7, 235 | 1, 236 | 1, 237 | 1, 238 | 2, 239 | 2, 240 | 2, 241 | 4, 242 | 1, 243 | 2, 244 | 1, 245 | 2, 246 | 1, 247 | 1, 248 | 2, 249 | 2, 250 | 4, 251 | 6, 252 | 11, 253 | 1, 254 | 2, 255 | 1, 256 | 2, 257 | 1, 258 | 1, 259 | 1, 260 | 5, 261 | 1, 262 | 2, 263 | 6, 264 | 1, 265 | 2, 266 | 1, 267 | 2, 268 | 1, 269 | 4, 270 | 1, 271 | 5, 272 | 4, 273 | 1, 274 | 1, 275 | 1, 276 | 1, 277 | 1, 278 | 1, 279 | 4, 280 | 2, 281 | 1, 282 | 1, 283 | 1, 284 | 1, 285 | 5, 286 | 6, 287 | 2, 288 | 5, 289 | 1, 290 | 2, 291 | 1, 292 | 1, 293 | 1, 294 | 2, 295 | 3, 296 | 1, 297 | 1, 298 | 2, 299 | 6, 300 | 1, 301 | 4, 302 | 7, 303 | 1, 304 | 1, 305 | 1, 306 | 1, 307 | 3, 308 | 1, 309 | 1, 310 | 12, 311 | 3, 312 | 13, 313 | 14, 314 | 1, 315 | 17, 316 | 1, 317 | 1, 318 | 4, 319 | 1, 320 | 9, 321 | 1, 322 | 1, 323 | 2, 324 | 5, 325 | 2, 326 | 1, 327 | 3, 328 | 2, 329 | 7, 330 | 1, 331 | 2, 332 | 6, 333 | 4, 334 | 2, 335 | 2, 336 | 3, 337 | 2, 338 | 1, 339 | 3, 340 | 3, 341 | 1, 342 | 1, 343 | 2, 344 | 4, 345 | 4, 346 | 1, 347 | 1, 348 | 2, 349 | 2, 350 | 2, 351 | 1, 352 | 8, 353 | 4, 354 | 1, 355 | 1, 356 | 1, 357 | 1, 358 | 1, 359 | 3, 360 | 2, 361 | 8, 362 | 1, 363 | 1, 364 | 1, 365 | 1, 366 | 2, 367 | 2, 368 | 5, 369 | 3, 370 | 1, 371 | 2, 372 | 2, 373 | 3, 374 | 1, 375 | 11, 376 | 1, 377 | 4, 378 | 3, 379 | 4, 380 | 4, 381 | 2, 382 | 1, 383 | 6, 384 | 10, 385 | 1, 386 | 1, 387 | 2, 388 | 1, 389 | 6, 390 | 1, 391 | 1, 392 | 1, 393 | 7, 394 | 1, 395 | 3, 396 | 1, 397 | 4, 398 | 1, 399 | 1, 400 | 1, 401 | 1, 402 | 2, 403 | 1, 404 | 1, 405 | 4, 406 | 1, 407 | 2, 408 | 2, 409 | 9, 410 | 1, 411 | 1, 412 | 3, 413 | 2, 414 | 1, 415 | 1, 416 | 1, 417 | 2, 418 | 1, 419 | 2, 420 | 1, 421 | 0, 422 | 2, 423 | 1, 424 | 1, 425 | 4, 426 | 2, 427 | 2, 428 | 4, 429 | 1, 430 | 5, 431 | 3, 432 | 1, 433 | 1, 434 | 2, 435 | 1, 436 | 2, 437 | 2, 438 | 1, 439 | 1, 440 | 1, 441 | 1, 442 | 1, 443 | 1, 444 | 2, 445 | 3, 446 | 1, 447 | 5, 448 | 1, 449 | 1, 450 | 1, 451 | 2, 452 | 1, 453 | 1, 454 | 1, 455 | 2, 456 | 1, 457 | 2, 458 | 2, 459 | 1, 460 | 2, 461 | 2, 462 | 1, 463 | 1, 464 | 1, 465 | 1, 466 | 1, 467 | 1, 468 | 1, 469 | 4, 470 | 2, 471 | 2, 472 | 1, 473 | 7, 474 | 1, 475 | 1, 476 | 2, 477 | 1, 478 | 1, 479 | 1, 480 | 1, 481 | 4, 482 | 3, 483 | 1, 484 | 1, 485 | 1, 486 | 6, 487 | 8, 488 | 3, 489 | 2, 490 | 2, 491 | 1, 492 | 1, 493 | 1, 494 | 5, 495 | 1, 496 | 2, 497 | 2, 498 | 2, 499 | 1, 500 | 1, 501 | 2, 502 | 2, 503 | 0, 504 | 0, 505 | 0, 506 | 0, 507 | 0, 508 | 0, 509 | 0, 510 | 0, 511 | 0, 512 | 1, 513 | 2, 514 | 3, 515 | 4, 516 | 1, 517 | 2, 518 | 4, 519 | 3, 520 | 1, 521 | 7, 522 | 2, 523 | 3, 524 | 1, 525 | 1, 526 | 1, 527 | 3, 528 | 1, 529 | 1, 530 | 1, 531 | 1, 532 | 2, 533 | 1, 534 | 4, 535 | 2, 536 | 2, 537 | 2, 538 | 1, 539 | 1, 540 | 1, 541 | 7, 542 | 2, 543 | 3, 544 | 1, 545 | 1, 546 | 1, 547 | 0, 548 | 0, 549 | 0, 550 | 0, 551 | 0, 552 | 0, 553 | 0, 554 | 0, 555 | 0, 556 | 0, 557 | 12, 558 | 3, 559 | 3, 560 | 4, 561 | 12, 562 | 1, 563 | 1, 564 | 11, 565 | 3, 566 | 4, 567 | 7, 568 | 7, 569 | 5, 570 | 3, 571 | 2, 572 | 14, 573 | 6, 574 | 4, 575 | 5, 576 | 3, 577 | 12, 578 | 4, 579 | 4, 580 | 4, 581 | 1, 582 | 1, 583 | 4, 584 | 1, 585 | 1, 586 | 7, 587 | 3, 588 | 7, 589 | 7, 590 | 8, 591 | 8, 592 | 1, 593 | 1, 594 | 1, 595 | 1, 596 | 0, 597 | 0, 598 | 0, 599 | 0, 600 | 0, 601 | 0, 602 | 1, 603 | 1, 604 | 1, 605 | 8, 606 | 1, 607 | 1, 608 | 4, 609 | 4, 610 | 3, 611 | 6, 612 | 1, 613 | 1, 614 | 1, 615 | 1, 616 | 1, 617 | 3, 618 | 0, 619 | 6, 620 | 3, 621 | 10, 622 | 7, 623 | 1, 624 | 1, 625 | 1, 626 | 2, 627 | 1, 628 | 3, 629 | 1, 630 | 2, 631 | 3, 632 | 1, 633 | 1, 634 | 4, 635 | 1, 636 | 4, 637 | 1, 638 | 3, 639 | 3, 640 | 2, 641 | 1, 642 | 2, 643 | 2, 644 | 3, 645 | 1, 646 | 0, 647 | 4, 648 | 4, 649 | 1, 650 | 2, 651 | 1, 652 | 2, 653 | 2, 654 | 1, 655 | 1, 656 | 1, 657 | 1, 658 | 1, 659 | 2, 660 | 2, 661 | 1, 662 | 2, 663 | 1, 664 | 9, 665 | 5, 666 | 1, 667 | 1, 668 | 1, 669 | 4, 670 | 3, 671 | 1, 672 | 2, 673 | 1, 674 | 1, 675 | 1, 676 | 4, 677 | 1, 678 | 1, 679 | 1, 680 | 1, 681 | 1, 682 | 2, 683 | 1, 684 | 1, 685 | 1, 686 | 1, 687 | 1, 688 | 1, 689 | 1, 690 | 1, 691 | 1, 692 | 1, 693 | 4, 694 | 6, 695 | 1, 696 | 1, 697 | 1, 698 | 1, 699 | 3, 700 | 1, 701 | 2, 702 | 16, 703 | 2, 704 | 2, 705 | 2, 706 | 7, 707 | 5, 708 | 8, 709 | 1, 710 | 1, 711 | 2, 712 | 2, 713 | 1, 714 | 1, 715 | 1, 716 | 1, 717 | 7, 718 | 1, 719 | 2, 720 | 3, 721 | 1, 722 | 2, 723 | 3, 724 | 2, 725 | 2, 726 | 2, 727 | 12, 728 | 4, 729 | 8, 730 | 2, 731 | 1, 732 | 1, 733 | 8, 734 | 2, 735 | 2, 736 | 2, 737 | 2, 738 | 2, 739 | 2, 740 | 2, 741 | 2, 742 | 2, 743 | 2, 744 | 2, 745 | 4, 746 | 1, 747 | 1, 748 | 15, 749 | 1, 750 | 2, 751 | 1, 752 | 8, 753 | 1, 754 | 2, 755 | 1, 756 | 1, 757 | 2, 758 | 1, 759 | 1, 760 | 4, 761 | 6, 762 | 1, 763 | 14, 764 | 1, 765 | 1, 766 | 1, 767 | 2, 768 | 1, 769 | 2, 770 | 1, 771 | 1, 772 | 2, 773 | 1, 774 | 1, 775 | 2, 776 | 1, 777 | 2, 778 | 2, 779 | 1, 780 | 1, 781 | 1, 782 | 1, 783 | 2, 784 | 2, 785 | 2, 786 | 1, 787 | 1, 788 | 1, 789 | 2, 790 | 2, 791 | 2, 792 | 2, 793 | 2, 794 | 2, 795 | 2, 796 | 2, 797 | 2, 798 | 2, 799 | 2, 800 | 2, 801 | 9, 802 | 7, 803 | 6, 804 | 12, 805 | 9, 806 | 2, 807 | 1, 808 | 2, 809 | 1, 810 | 9, 811 | 1, 812 | 1, 813 | 4, 814 | 5, 815 | 1, 816 | 2, 817 | 1, 818 | 2, 819 | 3, 820 | 2, 821 | 2, 822 | 3, 823 | 1, 824 | 11, 825 | 2, 826 | 3, 827 | 1, 828 | 5, 829 | 1, 830 | 4, 831 | 1, 832 | 2, 833 | 1, 834 | 1, 835 | 7, 836 | 1, 837 | 3, 838 | 1, 839 | 1, 840 | 2, 841 | 2, 842 | 2, 843 | 1, 844 | 1, 845 | 1, 846 | 1, 847 | 2, 848 | 1, 849 | 2, 850 | 1, 851 | 1, 852 | 1, 853 | 1, 854 | 2, 855 | 2, 856 | 2, 857 | 7, 858 | 9, 859 | 3, 860 | 1, 861 | 3, 862 | 1, 863 | 1, 864 | 1, 865 | 3, 866 | 2, 867 | 5, 868 | 1, 869 | 0 870 | ], 871 | "max": 17, 872 | "average": 2.562790697674419 873 | } 874 | }, 875 | "selectors": { 876 | "total": 1125, 877 | "type": 170, 878 | "class": 950, 879 | "id": 236, 880 | "pseudoClass": 202, 881 | "pseudoElement": 47, 882 | "values": [ 883 | "[dir='ltr']", 884 | "[dir='rtl']", 885 | "bdo[dir='ltr']", 886 | "bdo[dir='rtl']", 887 | "#logo", 888 | "#logo img", 889 | "#logo span", 890 | "#logocont", 891 | ".big #logocont", 892 | ".sbibod", 893 | ".srp .sbibod", 894 | ".lst", 895 | ".lst:focus", 896 | ".gsfi", 897 | ".lst", 898 | "#gs_st0", 899 | ".gsfs", 900 | ".lsb", 901 | ".sbico", 902 | "#sblsbb", 903 | "#sblsbb:hover", 904 | "#sblsbb:active", 905 | "#sbds", 906 | ".hp .nojsb", 907 | ".srp .jsb", 908 | ".kpbb", 909 | ".kprb", 910 | ".kpgb", 911 | ".kpgrb", 912 | ".kpbb:hover", 913 | ".kprb:hover", 914 | ".kpgb:hover", 915 | ".kpgrb:hover", 916 | ".kpbb:active", 917 | ".kprb:active", 918 | ".kpgb:active", 919 | ".kpgrb:active", 920 | ".kpbb", 921 | ".kpbb:hover", 922 | "a.kpbb:link", 923 | "a.kpbb:visited", 924 | ".kprb", 925 | ".kprb:hover", 926 | ".kprb:active", 927 | ".kpgb", 928 | ".kpgb:hover", 929 | ".kpgrb", 930 | ".kpgrb:hover", 931 | "a.kpgrb:link", 932 | "a.kpgrb:visited", 933 | "#sfopt", 934 | ".lsd", 935 | ".sbsb_g", 936 | ".jhp input[type=\"submit\"]", 937 | ".sbdd_a input", 938 | ".gbqfba", 939 | ".gbqfba.gbqfba-hvr", 940 | ".jhp input[type=\"submit\"]", 941 | ".gbqfba", 942 | ".sbdd_a input", 943 | ".jhp input[type=\"submit\"]:hover", 944 | ".sbdd_a input:hover", 945 | ".gbqfba:hover", 946 | ".jhp input[type=\"submit\"]:focus", 947 | ".sbdd_a input:focus", 948 | ".sbdd_a input", 949 | "span.lsbb", 950 | ".lsb input", 951 | "span.lsbb", 952 | ".tsf", 953 | ".tsf-p", 954 | ".logocont", 955 | ".sfibbbc", 956 | ".sbtc", 957 | ".sbibtd", 958 | ".sbibps", 959 | ".big .sbibps", 960 | ".sfopt", 961 | "#sform", 962 | ".hp .sfsbc", 963 | "#searchform", 964 | ".hp #searchform", 965 | ".srp #searchform", 966 | "#sfdiv", 967 | ".hp .big #sfdiv", 968 | ".srp #sfdiv", 969 | ".srp #tsf", 970 | ".hp .tsf-p", 971 | ".sfsbc", 972 | ".sfbg", 973 | ".sfbgg", 974 | "#pocs", 975 | "#pocs.sft", 976 | "#pocs a", 977 | "#pocs.sft a", 978 | "#pocs>div", 979 | "#cnt", 980 | "#subform_ctrl", 981 | ".gb_1a", 982 | "0%", 983 | "50%", 984 | "0%", 985 | "50%", 986 | "#gbq2", 987 | "#gbqf", 988 | ".gbqff", 989 | ".gbqfqw", 990 | "#gbqfb", 991 | ".gbqfwa", 992 | "#gbqfaa", 993 | "#gbqfab", 994 | "#gbqfqwb", 995 | "#gbqfaa", 996 | "#gbqfab", 997 | ".gbqfqwb", 998 | ".gbqfqwc", 999 | ".gbqfqwb", 1000 | "#gbqfbw", 1001 | "#gbqfb", 1002 | "#gbqfb:hover", 1003 | "#gbqfb:focus", 1004 | "#gbqfb:hover:focus", 1005 | "#gbqfb:active:active", 1006 | ".gbqfi", 1007 | ".gbqfqw", 1008 | "#gbfwc .gbqfqw", 1009 | "#gbqfqw", 1010 | ".gbqfqw.gbqfqw:hover", 1011 | ".gbqfwa", 1012 | ".gbqfwb", 1013 | ".gbqfwc", 1014 | ".gbqfwb .gbqfqw", 1015 | ".gbqfqw.gbqfqw:active", 1016 | ".gbqfqw.gbqfqwf.gbqfqwf", 1017 | "#gbqfq", 1018 | "#gbqfqb", 1019 | "#gbqfqc", 1020 | "#gbqfq:focus", 1021 | "#gbqfqb:focus", 1022 | "#gbqfqc:focus", 1023 | ".gbqfif", 1024 | ".gbqfsf", 1025 | "#gbqfbwa", 1026 | "#gbqfbwa .gbqfba", 1027 | "#gbqfsa", 1028 | "#gbqfsb", 1029 | ".gb_fa .gbqfqw.gbqfqw", 1030 | ".gb_X .gbqfqw.gbqfqw", 1031 | ".gb_fa #gbqfb", 1032 | ".gb_X #gbqfb", 1033 | ".gb_fa #gbqfb:hover", 1034 | ".gb_X #gbqfb:hover", 1035 | ".gb_fa #gbqfb:active", 1036 | ".gb_X #gbqfb:active", 1037 | ".gbqfb", 1038 | ".gbqfba", 1039 | ".gbqfbb", 1040 | ".gbqfba:focus", 1041 | ".gbqfba:hover", 1042 | ".gbqfba:hover:focus", 1043 | ".gbqfb::-moz-focus-inner", 1044 | ".gbqfba::-moz-focus-inner", 1045 | ".gbqfba", 1046 | ".gbqfba:active", 1047 | "0%", 1048 | "20%", 1049 | "50%", 1050 | "85%", 1051 | "to", 1052 | "0%", 1053 | "20%", 1054 | "50%", 1055 | "85%", 1056 | "to", 1057 | ".gb_fc", 1058 | ".gb_b:hover .gb_fc", 1059 | ".gb_b:focus .gb_fc", 1060 | ".gb_gc .gb_fc", 1061 | ".gb_hc", 1062 | ".gb_ic .gb_hc", 1063 | ".gb_ic .gb_jc", 1064 | ".gb_ic .gb_jc.gb_kc", 1065 | ".gb_jc", 1066 | ".gb_lc:not(.gb_mc) .gb_eb", 1067 | ".gb_lc:not(.gb_mc) .gb_db", 1068 | ".gb_hc.gb_nc", 1069 | ".gb_nc .gb_jc", 1070 | ".gb_fa .gb_b .gb_fc", 1071 | ".gb_fa .gb_gc .gb_fc", 1072 | ".gb_fa .gb_b:hover .gb_fc", 1073 | ".gb_fa .gb_b:focus .gb_fc", 1074 | ".gb_X .gb_b .gb_fc", 1075 | ".gb_X .gb_gc .gb_fc", 1076 | ".gb_fa .gb_hc", 1077 | ".gb_X .gb_hc", 1078 | ".gb_lc .gb_oc", 1079 | ".gb_lc .gb_b", 1080 | ".gb_lc .gb_db", 1081 | ".gb_pc", 1082 | ".gb_pc.gb_qc", 1083 | ".gb_pc.gb_rc", 1084 | ".gb_b:hover .gb_pc", 1085 | ".gb_b:focus .gb_pc", 1086 | "#gbsfw.gb_sc", 1087 | ".gb_fa .gb_pc", 1088 | ".gb_X .gb_pc.gb_pc", 1089 | ".gb_X .gb_ic .gb_pc.gb_pc", 1090 | ".gb_X .gb_ic .gb_b:hover .gb_pc", 1091 | ".gb_X .gb_ic .gb_b:focus .gb_pc", 1092 | ".gb_X .gb_pc.gb_qc", 1093 | ".gb_X .gb_pc.gb_rc", 1094 | ".gb_ic .gb_pc.gb_pc", 1095 | ".gb_ic .gb_b:hover .gb_pc", 1096 | ".gb_ic .gb_b:focus .gb_pc", 1097 | ".gb_ic .gb_pc.gb_rc", 1098 | ".gb_N .gbqfi::before", 1099 | ".gb_xb .gbqfb:focus .gbqfi", 1100 | "#gbsfw", 1101 | ".gb_Ib", 1102 | "#gbsfw.gb_g", 1103 | "#gbsfw.gb_qa iframe", 1104 | ".gb_Jb", 1105 | ".gb_Kb", 1106 | ".gb_Kb a", 1107 | ".gb_ea .gb_b", 1108 | ".gb_fa .gb_ea .gb_b", 1109 | ".gb_X .gb_ea .gb_b", 1110 | ".gb_ga.gb_ha", 1111 | ".gb_ia", 1112 | ".gb_ja", 1113 | ".gb_ka", 1114 | ".gb_la", 1115 | ".gb_ka", 1116 | ".gb_la", 1117 | ".gb_la.gb_ma", 1118 | ".gb_ka", 1119 | ".gb_ka:visited", 1120 | ".gb_ka:active", 1121 | ".gb_la", 1122 | ".gb_la:visited", 1123 | ".gb_la:active", 1124 | "#gb a.gb_ka", 1125 | "#gb a.gb_ka:visited", 1126 | "#gb a.gb_ka:active", 1127 | "#gb a.gb_la", 1128 | "#gb a.gb_la:visited", 1129 | "#gb a.gb_la:active", 1130 | ".gb_la", 1131 | ".gb_ja", 1132 | ".gb_ca", 1133 | ".gb_ca+.gb_la", 1134 | ".gb_na .gb_la", 1135 | ".gb_na .gb_ja", 1136 | ".gb_la:hover", 1137 | ".gb_la:active", 1138 | "#gb a.gb_la:hover", 1139 | "#gb a.gb_la:active", 1140 | ".gb_la", 1141 | ".gb_na .gb_ka", 1142 | ".gb_la:last-child", 1143 | ".gb_oa .gb_O", 1144 | ".gb_oa.gb_pa", 1145 | ".gb_oa.gb_pa img", 1146 | ".gb_oa .gb_3", 1147 | ".gb_oa .gb_3+img", 1148 | ".gb_oa div.gb_qa", 1149 | ".gb_oa.gb_ra", 1150 | ".gb_oa.gb_sa", 1151 | ".gb_oa.gb_ta", 1152 | ".gb_oa.gb_sa", 1153 | ".gb_oa.gb_sa a", 1154 | ".gb_oa.gb_ta a", 1155 | ".gb_ua .gb_ka", 1156 | ".gb_va", 1157 | ".gb_wa", 1158 | ".gb_5", 1159 | ".gb_xa", 1160 | ".gb_ya", 1161 | ".gb_za", 1162 | "#gb#gb .gb_za", 1163 | ".gb_za:hover", 1164 | "#gb#gb .gb_za:hover", 1165 | ".gb_Aa .gb_ja", 1166 | ".gb_Aa .gb_O", 1167 | ".gb_ka.gb_Ba", 1168 | ".gb_2a", 1169 | ".gb_2a::before", 1170 | ".gb_mb::before", 1171 | ".gb_2a:hover", 1172 | ".gb_2a:focus", 1173 | ".gb_2a:active", 1174 | ".gb_2a:active::after", 1175 | ".gb_3a", 1176 | ".gb_b.gb_3a", 1177 | ".gb_3a:hover", 1178 | ".gb_3a:focus", 1179 | ".gb_4a .gb_3a", 1180 | ".gb_4a .gb_5a", 1181 | "#gb#gb.gb_4a a.gb_3a", 1182 | ".gb_4a .gb_5a", 1183 | ".gb_6a", 1184 | ".gb_7a:hover .gb_6a", 1185 | ".gb_X .gb_3a", 1186 | ".gb_X .gb_6a", 1187 | "#gb#gb.gb_X.gb_X a.gb_3a", 1188 | "#gb#gb .gb_X.gb_X a.gb_3a", 1189 | ".gb_X.gb_X .gb_6a", 1190 | ".gb_fa .gb_2a:hover", 1191 | ".gb_X .gb_2a:hover", 1192 | ".gb_fa .gb_2a:focus", 1193 | ".gb_X .gb_2a:focus", 1194 | ".gb_8a .gb_9a", 1195 | ".gb_ab .gb_9a", 1196 | ".gb_9a.gb_R", 1197 | ".gb_bb.gb_R", 1198 | ".gb_7a.gb_R", 1199 | ".gb_cb.gb_W .gb_3a", 1200 | ".gb_3a~.gb_db", 1201 | ".gb_3a~.gb_eb", 1202 | ".gb_fb", 1203 | ".gb_gb", 1204 | "#gb a.gb_gb.gb_gb", 1205 | ".gb_hb a", 1206 | "#gb .gb_hb.gb_hb a", 1207 | ".gb_gb:active", 1208 | "#gb a.gb_gb:active", 1209 | ".gb_gb:hover", 1210 | "#gb a.gb_gb:hover", 1211 | ".gb_hb a:active", 1212 | "#gb .gb_hb a:active", 1213 | ".gb_hb a:hover", 1214 | "#gb .gb_hb a:hover", 1215 | ".gb_ib", 1216 | ".gb_jb", 1217 | ".gb_kb", 1218 | ".gb_jb", 1219 | ".gb_lb", 1220 | ".gb_mb", 1221 | ".gb_nb", 1222 | ".gb_lb .gb_nb", 1223 | ".gb_ob", 1224 | ".gb_pb", 1225 | ".gb_hb", 1226 | ".gb_hb a", 1227 | ".gb_hb a:first-child", 1228 | ".gb_hb a:last-child", 1229 | ".gb_kb .gb_qb", 1230 | "#gb .gb_kb a.gb_qb.gb_qb", 1231 | ".gb_kb .gb_qb:hover", 1232 | ".gb_rb", 1233 | ".gb_rb .gb_qb", 1234 | ".gb_rb>div", 1235 | ".gb_rb>div:first-child", 1236 | ".gb_rb .gb_sb", 1237 | ".gb_tb .gb_db", 1238 | ".gb_ub", 1239 | ".gb_ub b", 1240 | ".gb_gb", 1241 | ".gb_vb", 1242 | ".gb_wb", 1243 | ".gb_xb .gb_wb:focus .gb_yb", 1244 | ".gb_wb:hover", 1245 | ".gb_wb:first-child", 1246 | ".gb_zb:first-child+.gb_wb", 1247 | ".gb_zb", 1248 | ".gb_Ab", 1249 | ".gb_Ab:hover", 1250 | ".gb_Bb", 1251 | ".gb_yb", 1252 | ".gb_Ab .gb_Bb", 1253 | ".gb_Ab .gb_yb", 1254 | ".gb_Cb", 1255 | ".gb_Ab .gb_Cb", 1256 | ".gb_Db", 1257 | ".gb_Eb", 1258 | ".gb_Fb", 1259 | ".gb_N .gb_Fb::before", 1260 | ".gb_Hb", 1261 | ".gb_Eb:hover .gb_Hb", 1262 | "#gb#gb a.gb_O", 1263 | "#gb#gb a.gb_P", 1264 | "#gb#gb span.gb_P", 1265 | "#gb#gb a.gb_P", 1266 | "#gb#gb span.gb_P", 1267 | ".gb_P", 1268 | "#gb#gb a.gb_P:hover", 1269 | "#gb#gb a.gb_P:focus", 1270 | ".gb_Q.gb_R", 1271 | ".gb_Q.gb_R:first-child", 1272 | ".gb_S.gb_R", 1273 | ".gb_Q span", 1274 | ".gb_T .gb_S.gb_R", 1275 | ".gb_U .gb_S.gb_R", 1276 | ".gb_Q .gb_P", 1277 | ".gb_S .gb_P", 1278 | ".gb_V .gb_S .gb_P", 1279 | ".gb_W .gb_S .gb_P", 1280 | "#gb#gb.gb_X a.gb_P", 1281 | "#gb#gb.gb_X span.gb_P", 1282 | "#gb#gb .gb_X a.gb_P", 1283 | "#gb#gb .gb_X span.gb_P", 1284 | "#gb#gb.gb_X span.gb_P", 1285 | "#gb#gb .gb_X span.gb_P", 1286 | ".gb_xc", 1287 | ".gb_xc:first-child", 1288 | "#gbsfw:first-child+.gb_xc", 1289 | ".gb_oc", 1290 | ".gb_b", 1291 | "#gb#gb a.gb_b", 1292 | ".gb_db", 1293 | ".gb_eb", 1294 | "x:-o-prefocus", 1295 | "div.gb_eb", 1296 | ".gb_ga", 1297 | ".gb_xc.gb_g .gb_db", 1298 | ".gb_xc.gb_g .gb_eb", 1299 | ".gb_xc.gb_g .gb_ga", 1300 | ".gb_g.gb_ga", 1301 | ".gb_xc.gb_g.gb_9d .gb_db", 1302 | ".gb_xc.gb_g.gb_9d .gb_eb", 1303 | ".gb_ae", 1304 | ".gb_4a .gb_db", 1305 | ".gb_4a .gb_eb", 1306 | ".gb_4a .gb_ga", 1307 | "a.gb_Ca", 1308 | ".gb_Ca:hover", 1309 | ".gb_Ca:active", 1310 | ".gb_Da", 1311 | ".gb_Ca", 1312 | ".gb_Ea", 1313 | ".gb_Fa", 1314 | ".gb_Ea", 1315 | ".gb_Fa", 1316 | ".gb_Ea", 1317 | "#gb a.gb_Ea.gb_Ea", 1318 | ".gb_Fa", 1319 | "#gb a.gb_Fa.gb_Fa", 1320 | ".gb_Fa", 1321 | "#gb a.gb_Fa.gb_Fa", 1322 | ".gb_Fa:hover", 1323 | ".gb_Fa:active", 1324 | ".gb_Lb", 1325 | ".gb_Mb", 1326 | ".gb_Nb .gb_Mb", 1327 | ".gb_Ob", 1328 | ".gb_Pb .gb_Ob", 1329 | ".gb_Ob .gb_Qb", 1330 | ".gb_Rb", 1331 | ".gb_Sb", 1332 | ".gb_Ob .gb_Qb", 1333 | ".gb_Rb", 1334 | ".gb_X .gb_Ob .gb_Qb", 1335 | ".gb_fa .gb_Ob .gb_Qb", 1336 | ".gb_be", 1337 | ".gb_ge .gb_b", 1338 | ".gb_ge .gb_b:hover", 1339 | ".gb_ge .gb_b:focus", 1340 | ".gb_ge .gb_db", 1341 | "#gbsfw.gb_he", 1342 | ".gb_X .gb_ge .gb_b", 1343 | ".gb_fa .gb_ge .gb_b", 1344 | ".gb_fa .gb_ge .gb_b:hover", 1345 | ".gb_fa .gb_ge .gb_b:focus", 1346 | ".gb_9e", 1347 | ".gb_je", 1348 | ".gb_4a .gb_je", 1349 | "#gba", 1350 | "#gba.gb_4a", 1351 | "#gba.gb_1c", 1352 | "#gba.gb_1c.gb_4a", 1353 | ".gb_je>.gb_R", 1354 | ".gb_4a .gb_je>.gb_R", 1355 | ".gb_je::before", 1356 | ".gb_je", 1357 | ".gb_af .gb_je", 1358 | ".gb_af .gb_je::before", 1359 | ".gb_4a .gb_je::before", 1360 | ".gb_fa .gb_je", 1361 | ".gb_X .gb_je", 1362 | ".gb_4a .gb_je", 1363 | ".gb_fa .gb_je::before", 1364 | ".gb_X .gb_je::before", 1365 | ".gb_R", 1366 | ".gb_R.gb_bf", 1367 | ".gb_cf", 1368 | ".gb_T .gb_cf", 1369 | ".gb_cf", 1370 | ".gb_R", 1371 | ".gb_Qb", 1372 | ".gb_Qb", 1373 | ".gb_cb", 1374 | ".gb_4a .gb_cb", 1375 | ".gb_cb.gb_R", 1376 | ".gb_dc", 1377 | ".gb_dc.gb_R", 1378 | ".gb_Ze.gb_R", 1379 | ".gb_5a.gb_R", 1380 | ".gb_0e", 1381 | ".gb_1e", 1382 | ".gb_Ze", 1383 | ".gb_cb .gb_Ze.gb_U", 1384 | ".gb_5a", 1385 | "#gb.gb_4a.gb_4a .gb_ue", 1386 | "#gb.gb_4a.gb_4a .gb_dc>.gb_1e .gb_ve", 1387 | "#gb.gb_4a.gb_X .gb_ue", 1388 | "#gb.gb_4a.gb_X .gb_dc>.gb_1e .gb_ve", 1389 | ".gb_4a .gb_ue", 1390 | ".gb_cb.gb_V", 1391 | ".gb_cb.gb_2e", 1392 | ".gb_3e", 1393 | ".gb_3e.gb_R", 1394 | ".gb_3e:hover", 1395 | ".gb_3e:focus", 1396 | ".gb_4e", 1397 | ".gb_5e", 1398 | ".gb_8a:not(.gb_ab) .gb_5e", 1399 | ".gb_V .gb_4e", 1400 | ".gb_8a .gb_4e", 1401 | ".gb_8a:not(.gb_ab) .gb_6e", 1402 | ".gb_cb.gb_R.gb_V", 1403 | ".gb_V:not(.gb_ab) .gb_dc", 1404 | ".gb_3e", 1405 | ".gb_V .gb_Ze", 1406 | ".gb_ab .gb_dc", 1407 | ".gb_8a .gb_Ze", 1408 | ".gb_V .gb_dc", 1409 | ".gb_8a .gb_dc", 1410 | ".gb_cb.gb_7e", 1411 | ".gb_cb.gb_7e .gb_4e", 1412 | ".gb_cb.gb_7e .gb_4e::before", 1413 | ".gb_cb.gb_7e .gb_Ze", 1414 | ".gb_cb.gb_7e .gb_dc", 1415 | ".gb_T .gb_cb", 1416 | ".gb_cb.gb_W", 1417 | ".gb_cb.gb_W .gb_dc", 1418 | ".gb_cb.gb_8e", 1419 | ".gb_cb.gb_8e .gb_dc", 1420 | ".gb_cb.gb_W", 1421 | ".gb_cb.gb_W .gb_R", 1422 | ".gb_cb.gb_W .gb_5a", 1423 | ".gb_je ::-webkit-scrollbar", 1424 | ".gb_je ::-webkit-scrollbar-button", 1425 | ".gb_je ::-webkit-scrollbar-thumb", 1426 | ".gb_je ::-webkit-scrollbar-thumb:hover", 1427 | ".gb_je ::-webkit-scrollbar-thumb:active", 1428 | "#gb.gb_ff", 1429 | "#gb.gb_ff .gb_fe", 1430 | ".gb_ff .gb_je", 1431 | ".gb_ff .gb_je::before", 1432 | ".gb_ff.gb_ff .gb_Q", 1433 | ".gb_ff.gb_cb .gb_Ze.gb_U", 1434 | ".gb_T.gb_ff .gb_S.gb_R", 1435 | ".gb_ff.gb_T #gbqf", 1436 | ".gb_ff #gbq", 1437 | ".gb_ff.gb_cb", 1438 | "sentinel", 1439 | "#gbq .gbgt-hvr", 1440 | "#gbq .gbgt:focus", 1441 | ".gbqfh#gbq1", 1442 | ".gbxx", 1443 | "#gbq", 1444 | "#gbq", 1445 | "#gbq2", 1446 | "#gbq4", 1447 | ".gbqfh#gbq2", 1448 | ".gbqfh#gbq2", 1449 | ".gbqfh #gbqf", 1450 | ".gbqfh #gbqfbw", 1451 | ".gbqfh #gbqfbwa", 1452 | ".gbqfh #gbqf", 1453 | ".gbqfh .gbqfqw", 1454 | ".gbii::before", 1455 | ".gbip::before", 1456 | ".gbii::before", 1457 | ".gbip::before", 1458 | ".gbii", 1459 | ".gbip", 1460 | ".gbii", 1461 | ".gbip", 1462 | "html", 1463 | "body", 1464 | "#viewport", 1465 | ".content", 1466 | "#footer", 1467 | "#gog", 1468 | ".gac_m td", 1469 | "body", 1470 | "td", 1471 | "a", 1472 | "p", 1473 | ".h", 1474 | ".h", 1475 | ".q", 1476 | ".ts td", 1477 | ".ts", 1478 | "em", 1479 | ".ds", 1480 | "span.ds", 1481 | ".ctr-p", 1482 | "a.gb1", 1483 | "a.gb2", 1484 | "a.gb3", 1485 | "a.gb4", 1486 | "body", 1487 | "a", 1488 | "a:hover", 1489 | "a:active", 1490 | ".fl a", 1491 | "a:visited", 1492 | "a.gb1", 1493 | "a.gb4", 1494 | "a.gb3:hover", 1495 | "#ghead a.gb2:hover", 1496 | ".sblc", 1497 | ".sblc a", 1498 | ".lsbb", 1499 | ".ftl", 1500 | "#footer a", 1501 | "#footer a:active", 1502 | ".lsb", 1503 | ".lst:focus", 1504 | "body", 1505 | "html", 1506 | "h1", 1507 | "ol", 1508 | "ul", 1509 | "li", 1510 | ".nojsv", 1511 | ".hp #logocont.nojsv", 1512 | "#body", 1513 | "#footer", 1514 | ".igehp", 1515 | "#flci", 1516 | "#fll", 1517 | "#ftby", 1518 | "#ftby>div", 1519 | "#fll>div", 1520 | "#footer a", 1521 | "#ftby", 1522 | ".logo-subtext", 1523 | "#ss-box", 1524 | "#ss-box a", 1525 | "#ss-box a:hover", 1526 | "a.ss-selected", 1527 | "a.ss-unselected", 1528 | ".ss-selected .mark", 1529 | ".ss-unselected .mark", 1530 | "#ss-barframe", 1531 | ".gl", 1532 | ".big .tsf-p", 1533 | ".hp .tsf-p", 1534 | ".hp #tsf", 1535 | "#tsf", 1536 | ".big #tsf", 1537 | ".hp .big #tsf", 1538 | ".tsf-p", 1539 | ".hp .big .tsf-p", 1540 | "#fkbx-tchm", 1541 | ".fkbx-chm", 1542 | ".fkbx-chme", 1543 | "#fkbx-chmer", 1544 | "#fkbx-chmed", 1545 | ".fkbx-chmt", 1546 | "#fkbx-chmtr", 1547 | ".chw-oc", 1548 | "#chw-o", 1549 | "#fkbx-tchm", 1550 | ".fkbx-chm", 1551 | ".fkbx-chm a", 1552 | "._gSc", 1553 | "#chw-o", 1554 | "#chw-o a", 1555 | ".chw-oc", 1556 | "._mSc", 1557 | "._kSc", 1558 | "._dKb", 1559 | "#chw-o ._dKb", 1560 | "._k3", 1561 | "._k3:hover", 1562 | "._k3:active", 1563 | "._k3:hover", 1564 | "._k3:focus", 1565 | "._k3:active", 1566 | "._WW", 1567 | "._WW:hover", 1568 | "._WW:hover", 1569 | "._WW:focus", 1570 | "._WW:active", 1571 | "._qyd:focus", 1572 | "._WW:hover", 1573 | "._WW:active", 1574 | ".fade #center_col", 1575 | ".fade #rhs", 1576 | ".fade #leftnav", 1577 | ".fade #brs", 1578 | ".fade #footcnt", 1579 | ".fade-hidden #center_col", 1580 | ".fade-hidden #rhs", 1581 | ".fade-hidden #leftnav", 1582 | ".flyr-o", 1583 | ".flyr-w", 1584 | ".flyr-o", 1585 | ".flyr-w", 1586 | ".flyr-h", 1587 | ".flyr-c", 1588 | ".flt", 1589 | ".flt u", 1590 | "a.fl", 1591 | ".flt:hover", 1592 | ".flt:hover u", 1593 | "a.fl:hover", 1594 | "#knavm", 1595 | "#pnprev #knavm", 1596 | "#pnnext #knavm", 1597 | "a.noline", 1598 | ".y.yp", 1599 | ".y.yf", 1600 | ".y.ys", 1601 | ".yi", 1602 | ".s2er", 1603 | ".s2fp", 1604 | ".s2fp-h", 1605 | ".s2ml", 1606 | ".s2ra", 1607 | ".s2tb", 1608 | ".s2tb-h", 1609 | ".spch", 1610 | ".spchc", 1611 | ".spch", 1612 | ".s2fp.spch", 1613 | ".s2tb-h.spch", 1614 | ".s2tb.spch", 1615 | ".close-button", 1616 | ".close-button:hover", 1617 | ".close-button:active", 1618 | ".google-logo", 1619 | ".s2tb .google-logo", 1620 | ".spchc", 1621 | ".s2fp .spchc", 1622 | ".s2fp-h .spchc", 1623 | ".s2tb .spchc", 1624 | ".s2tb-h .spchc", 1625 | "._o3", 1626 | ".s2tb-h ._o3", 1627 | ".s2tb ._o3", 1628 | ".s2ml ._o3", 1629 | ".s2ra ._o3", 1630 | ".s2er ._o3", 1631 | ".button", 1632 | ".s2tb-h .button", 1633 | ".s2fp-h .button", 1634 | ".s2fp .button", 1635 | ".s2tb .button", 1636 | ".s2ra .button", 1637 | "._CMb", 1638 | ".s2tb-h ._CMb", 1639 | ".s2tb ._CMb", 1640 | "._AM", 1641 | ".s2fp-h ._AM", 1642 | ".s2fp ._AM", 1643 | ".s2fp-h ._AM", 1644 | ".s2tb-h ._AM", 1645 | ".s2fp ._AM", 1646 | ".s2tb ._AM", 1647 | ".s2tb-h ._AM", 1648 | ".s2tb ._AM", 1649 | ".s2ra .button:active", 1650 | ".button:active", 1651 | "._wPb", 1652 | ".s2tb-h ._wPb", 1653 | ".s2tb ._wPb", 1654 | "._AUb", 1655 | "._Fjd", 1656 | "._oXb", 1657 | "._dWb", 1658 | ".s2ml ._AUb", 1659 | ".s2ml ._oXb", 1660 | ".s2ml ._dWb", 1661 | ".s2ra ._AUb", 1662 | ".s2ra ._oXb", 1663 | ".s2ra ._dWb", 1664 | ".spcht", 1665 | ".spchta", 1666 | ".spch-2l", 1667 | ".spch-3l", 1668 | ".spch-4l", 1669 | ".spch-5l", 1670 | "._gjb", 1671 | ".s2fp-h ._gjb", 1672 | ".s2fp ._gjb", 1673 | ".s2tb-h ._gjb", 1674 | ".s2tb ._gjb", 1675 | ".spcht", 1676 | ".s2fp-h .spcht", 1677 | ".s2tb-h .spcht", 1678 | ".s2fp-h .spcht", 1679 | ".s2fp .spcht", 1680 | ".s2tb-h .spcht", 1681 | ".s2tb .spcht", 1682 | ".s2fp .spcht", 1683 | ".s2tb .spcht", 1684 | ".spchta", 1685 | ".spch-2l.spcht", 1686 | ".spch-3l.spcht", 1687 | ".spch-4l.spcht", 1688 | ".spch-2l.spcht", 1689 | ".spch-3l.spcht", 1690 | ".spch-4l.spcht", 1691 | ".s2fp .spch-5l.spcht", 1692 | ".s2tb .spch-5l.spcht", 1693 | ".s2wfp", 1694 | "._ypc", 1695 | ".s2wfp ._ypc", 1696 | "._zpc", 1697 | ".s2wfp ._zpc", 1698 | "from", 1699 | "to", 1700 | "#gb", 1701 | "div#searchform", 1702 | "div.sfbg", 1703 | "div.sfbgg", 1704 | ".big form#tsf", 1705 | "form#tsf", 1706 | "#searchform.big>#tsf", 1707 | ".big div.tsf-p", 1708 | "form>div.tsf-p", 1709 | "div#viewport", 1710 | "div#searchform.jhp", 1711 | "#searchform.big.jhp>#tsf", 1712 | ".jhp>#gb", 1713 | ".jhp>#tsf", 1714 | "._P7b", 1715 | "._P7b:hover", 1716 | "._aGb", 1717 | "._bGb", 1718 | "._aGb", 1719 | "._bGb", 1720 | "a:active ._aGb", 1721 | "a:active ._bGb", 1722 | ".szppmdbYutt__middle-slot-promo", 1723 | ".szppmdbYutt__middle-slot-promo a._uFi", 1724 | ".szppmdbYutt__middle-slot-promo img", 1725 | ".szppmdbYutt__middle-slot-promo ._vFi", 1726 | ".fmulti", 1727 | "._dQc", 1728 | "._GR", 1729 | ".fbar p", 1730 | ".fbar a", 1731 | "#fsettl", 1732 | ".fbar", 1733 | "._Gs", 1734 | "._eA", 1735 | "#fbarcnt", 1736 | "._E2 a:hover", 1737 | "._HR img", 1738 | "._HR a", 1739 | "._GR #swml a", 1740 | ".fmulti", 1741 | ".fmulti #fsr", 1742 | ".fmulti #fuser", 1743 | "#fuserm", 1744 | "#fsr", 1745 | "#fsl", 1746 | "#fsett", 1747 | "#fsett a", 1748 | "._E2 #fsettl:hover", 1749 | "._E2 #fsett a:hover", 1750 | "._mk", 1751 | "._Nh", 1752 | "._Mo", 1753 | "a._Nh:hover ._Mo", 1754 | "a._Nh:active ._Mo", 1755 | "._Nh", 1756 | "._mk", 1757 | "._dD", 1758 | "._nW", 1759 | "#fbar", 1760 | "._xac", 1761 | ".fbar p", 1762 | ".fbar a", 1763 | "#fsettl", 1764 | "#fsett a", 1765 | ".fbar a:hover", 1766 | "#fsett a:hover", 1767 | ".fbar", 1768 | "#fuser", 1769 | "._HR", 1770 | "#fsl", 1771 | "#fsr", 1772 | ".fmulti #fsl", 1773 | ".fmulti #fsr", 1774 | ".gb_1a", 1775 | "0%", 1776 | "50%", 1777 | "0%", 1778 | "50%", 1779 | "#gbq2", 1780 | "#gbqf", 1781 | ".gbqff", 1782 | ".gbqfqw", 1783 | "#gbqfb", 1784 | ".gbqfwa", 1785 | "#gbqfaa", 1786 | "#gbqfab", 1787 | "#gbqfqwb", 1788 | "#gbqfaa", 1789 | "#gbqfab", 1790 | ".gbqfqwb", 1791 | ".gbqfqwc", 1792 | ".gbqfqwb", 1793 | "#gbqfbw", 1794 | "#gbqfb", 1795 | "#gbqfb:hover", 1796 | "#gbqfb:focus", 1797 | "#gbqfb:hover:focus", 1798 | "#gbqfb:active:active", 1799 | ".gbqfi", 1800 | ".gbqfqw", 1801 | "#gbfwc .gbqfqw", 1802 | "#gbqfqw", 1803 | ".gbqfqw.gbqfqw:hover", 1804 | ".gbqfwa", 1805 | ".gbqfwb", 1806 | ".gbqfwc", 1807 | ".gbqfwb .gbqfqw", 1808 | ".gbqfqw.gbqfqw:active", 1809 | ".gbqfqw.gbqfqwf.gbqfqwf", 1810 | "#gbqfq", 1811 | "#gbqfqb", 1812 | "#gbqfqc", 1813 | "#gbqfq:focus", 1814 | "#gbqfqb:focus", 1815 | "#gbqfqc:focus", 1816 | ".gbqfif", 1817 | ".gbqfsf", 1818 | "#gbqfbwa", 1819 | "#gbqfbwa .gbqfba", 1820 | "#gbqfsa", 1821 | "#gbqfsb", 1822 | ".gb_fa .gbqfqw.gbqfqw", 1823 | ".gb_X .gbqfqw.gbqfqw", 1824 | ".gb_fa #gbqfb", 1825 | ".gb_X #gbqfb", 1826 | ".gb_fa #gbqfb:hover", 1827 | ".gb_X #gbqfb:hover", 1828 | ".gb_fa #gbqfb:active", 1829 | ".gb_X #gbqfb:active", 1830 | ".gbqfb", 1831 | ".gbqfba", 1832 | ".gbqfbb", 1833 | ".gbqfba:focus", 1834 | ".gbqfba:hover", 1835 | ".gbqfba:hover:focus", 1836 | ".gbqfb::-moz-focus-inner", 1837 | ".gbqfba::-moz-focus-inner", 1838 | ".gbqfba", 1839 | ".gbqfba:active", 1840 | "0%", 1841 | "20%", 1842 | "50%", 1843 | "85%", 1844 | "to", 1845 | "0%", 1846 | "20%", 1847 | "50%", 1848 | "85%", 1849 | "to", 1850 | ".gb_fc", 1851 | ".gb_b:hover .gb_fc", 1852 | ".gb_b:focus .gb_fc", 1853 | ".gb_gc .gb_fc", 1854 | ".gb_hc", 1855 | ".gb_ic .gb_hc", 1856 | ".gb_ic .gb_jc", 1857 | ".gb_ic .gb_jc.gb_kc", 1858 | ".gb_jc", 1859 | ".gb_lc:not(.gb_mc) .gb_eb", 1860 | ".gb_lc:not(.gb_mc) .gb_db", 1861 | ".gb_hc.gb_nc", 1862 | ".gb_nc .gb_jc", 1863 | ".gb_fa .gb_b .gb_fc", 1864 | ".gb_fa .gb_gc .gb_fc", 1865 | ".gb_fa .gb_b:hover .gb_fc", 1866 | ".gb_fa .gb_b:focus .gb_fc", 1867 | ".gb_X .gb_b .gb_fc", 1868 | ".gb_X .gb_gc .gb_fc", 1869 | ".gb_fa .gb_hc", 1870 | ".gb_X .gb_hc", 1871 | ".gb_lc .gb_oc", 1872 | ".gb_lc .gb_b", 1873 | ".gb_lc .gb_db", 1874 | ".gb_pc", 1875 | ".gb_pc.gb_qc", 1876 | ".gb_pc.gb_rc", 1877 | ".gb_b:hover .gb_pc", 1878 | ".gb_b:focus .gb_pc", 1879 | "#gbsfw.gb_sc", 1880 | ".gb_fa .gb_pc", 1881 | ".gb_X .gb_pc.gb_pc", 1882 | ".gb_X .gb_ic .gb_pc.gb_pc", 1883 | ".gb_X .gb_ic .gb_b:hover .gb_pc", 1884 | ".gb_X .gb_ic .gb_b:focus .gb_pc", 1885 | ".gb_X .gb_pc.gb_qc", 1886 | ".gb_X .gb_pc.gb_rc", 1887 | ".gb_ic .gb_pc.gb_pc", 1888 | ".gb_ic .gb_b:hover .gb_pc", 1889 | ".gb_ic .gb_b:focus .gb_pc", 1890 | ".gb_ic .gb_pc.gb_rc", 1891 | ".gb_N .gbqfi::before", 1892 | ".gb_xb .gbqfb:focus .gbqfi", 1893 | ".gb_N .gb_ea .gb_b::before", 1894 | ".gb_N.gb_fa .gb_ea .gb_b::before", 1895 | ".gb_N.gb_X .gb_ea .gb_b::before", 1896 | ".gb_xb .gb_ka", 1897 | ".gb_ea .gb_b:hover", 1898 | ".gb_ea .gb_b:focus", 1899 | ".gb_X .gb_ea .gb_b:hover", 1900 | ".gb_X .gb_ea .gb_b:focus", 1901 | ".gb_oa .gb_3", 1902 | ".gb_N .gb_Ob .gb_Qb::before", 1903 | ".gb_N.gb_X .gb_Ob .gb_Qb::before", 1904 | ".gb_N.gb_fa .gb_Ob .gb_Qb::before", 1905 | ".gb_N .gb_Rb", 1906 | ".gb_N .gb_Sb", 1907 | ".gb_xb .gb_dd span", 1908 | ".gb_N .gb_fc::before", 1909 | ".gb_N .gb_gc .gb_fc::before", 1910 | ".gb_N.gb_fa .gb_b .gb_fc::before", 1911 | ".gb_N.gb_fa .gb_gc .gb_fc::before", 1912 | ".gb_N.gb_X .gb_b .gb_fc::before", 1913 | ".gb_N.gb_X .gb_gc .gb_fc::before", 1914 | ".gb_xb .gb_pc", 1915 | ".gb_xb.gb_fa .gb_pc", 1916 | ".gb_N .gb_pc.gb_qc::before", 1917 | ".gb_xb.gb_N.gb_X .gb_pc.gb_qc::before", 1918 | ".gb_N .gb_pc.gb_rc::before", 1919 | ".gb_xb.gb_N.gb_X .gb_pc.gb_rc::before", 1920 | ".gb_N.gb_X .gb_pc.gb_qc::before", 1921 | ".gb_xb.gb_N.gb_fa .gb_pc.gb_qc::before", 1922 | ".gb_N.gb_X .gb_pc.gb_rc::before", 1923 | ".gb_xb.gb_N.gb_fa .gb_pc.gb_rc::before", 1924 | ".gb_Rc", 1925 | ".gb_Rc .gb_Sc", 1926 | ".gb_Rc .gb_Ic", 1927 | ".gb_Rc .gb_Tc", 1928 | ".gb_Uc", 1929 | ".gb_Uc:hover", 1930 | ".gb_Uc:active", 1931 | ".gb_xc.gb_yc", 1932 | ".gb_yc .gb_ga", 1933 | ".gb_zc.gb_yc .gb_ga", 1934 | "a.gb_Ac", 1935 | ".gb_zc a.gb_Ac", 1936 | "a.gb_Ac:hover", 1937 | "a.gb_Ac:active", 1938 | ".gb_Bc", 1939 | ".gb_Cc .gb_ga", 1940 | ".gb_Cc .gb_Bc", 1941 | ".gb_Cc .gb_Fa", 1942 | ".gb_Cc .gb_Dc", 1943 | ".gb_Cc .gb_Ec", 1944 | ".gb_Cc .gb_Ca", 1945 | ".gb_Fc", 1946 | ".gb_Cc .gb_Fa", 1947 | ".gb_Cc .gb_Dc", 1948 | ".gb_Cc .gb_Ca", 1949 | ".gb_Cc .gb_Fa", 1950 | ".gb_Cc .gb_Ca", 1951 | ".gb_yc .gb_Fa:active", 1952 | ".gb_Cc .gb_Dc", 1953 | ".gb_Cc .gb_Ec", 1954 | ".gb_Hc", 1955 | ".gb_Hc .gb_Ic", 1956 | ".gb_Fc", 1957 | ".gb_Fc a", 1958 | ".gb_Fc a:visited", 1959 | ".gb_Jc", 1960 | ".gb_zc .gb_Bc", 1961 | ".gb_Dc", 1962 | ".gb_zc .gb_Dc", 1963 | ".gb_Ec", 1964 | ".gb_zc .gb_Ec", 1965 | ".gb_Kc", 1966 | ".gb_Kc:visited", 1967 | ".gb_Kc:hover", 1968 | ".gb_Kc:active", 1969 | ".gb_Lc", 1970 | "#gb .gb_yc", 1971 | ".gb_yc .gb_qb", 1972 | ".gb_Cc .gb_Fa", 1973 | "#gb .gb_yc a.gb_qb.gb_qb", 1974 | ".gb_yc .gb_qb:hover", 1975 | ".gb_Mc .gb_oc .gb_db", 1976 | ".gb_Nc .gb_oc .gb_db", 1977 | ".gb_Mc .gb_oc .gb_eb", 1978 | ".gb_Nc .gb_oc .gb_eb", 1979 | ".gb_Oc", 1980 | ".gb_Pc", 1981 | ".gb_Oc", 1982 | ".gb_Cc .gb_Oc", 1983 | ".gb_Pc", 1984 | ".gb_Cc .gb_Pc", 1985 | ".gb_ce", 1986 | ".gb_ce .gb_de", 1987 | ".gb_ce .gb_ee", 1988 | ".gb_wc", 1989 | ".gb_wc.gb_g", 1990 | ".gb_N .gb_ge .gb_b::before", 1991 | ".gb_N.gb_fa .gb_ge .gb_b::before", 1992 | ".gb_N.gb_X .gb_ge .gb_b::before", 1993 | ".gb_xb .gb_eb", 1994 | ".gb_xb .gb_db", 1995 | ".gb_N .gb_4e::before", 1996 | ".gb_N .gb_Qb.gb_5e", 1997 | ".gb_N .gb_5e::before", 1998 | ".gb_N .gb_8a .gb_4e::before", 1999 | ".gb_N .gb_4e::before", 2000 | ".gb_N .gb_5e::before", 2001 | ".gb_N .gb_Qb", 2002 | ".gb_N .gbii", 2003 | ".gb_N .gbip", 2004 | ".gb_N .gb_Qb::before", 2005 | ".gb_N .gb_Qb::before", 2006 | ".gb_xb a:focus", 2007 | "sentinel" 2008 | ], 2009 | "specificity": { 2010 | "max": 220, 2011 | "average": 37.04088888888889 2012 | } 2013 | }, 2014 | "declarations": { 2015 | "total": 2204, 2016 | "properties": { 2017 | "unicode-bidi": [ 2018 | "-webkit-isolate", 2019 | "isolate", 2020 | "bidi-override", 2021 | "-webkit-isolate-override", 2022 | "isolate-override" 2023 | ], 2024 | "display": [ 2025 | "block", 2026 | "inline-block", 2027 | "none", 2028 | "inline-block", 2029 | "none", 2030 | "inline-block", 2031 | "none", 2032 | "block", 2033 | "block", 2034 | "inline-block", 2035 | "inline-block", 2036 | "inline-block", 2037 | "inline-block", 2038 | "none", 2039 | "inline-block", 2040 | "inline-block", 2041 | "block", 2042 | "none", 2043 | "block", 2044 | "block", 2045 | "none", 2046 | "block", 2047 | "none", 2048 | "initial", 2049 | "inline-block", 2050 | "inline-block", 2051 | "inline-block", 2052 | "none", 2053 | "block", 2054 | "block", 2055 | "inline-block", 2056 | "inline-block", 2057 | "table", 2058 | "table-cell", 2059 | "block", 2060 | "block", 2061 | "none", 2062 | "inline-block", 2063 | "block", 2064 | "inline-block", 2065 | "inline-block", 2066 | "none", 2067 | "inline-block", 2068 | "-webkit-flex", 2069 | "flex", 2070 | "none", 2071 | "inline-block", 2072 | "inline-block", 2073 | "inline-block", 2074 | "none", 2075 | "none", 2076 | "none", 2077 | "block", 2078 | "none", 2079 | "inline-block", 2080 | "inline-block", 2081 | "block", 2082 | "block", 2083 | "inline-block", 2084 | "none", 2085 | "none", 2086 | "inline-block", 2087 | "-webkit-flex", 2088 | "flex", 2089 | "inline-block", 2090 | "none", 2091 | "inline-block", 2092 | "none", 2093 | "none", 2094 | "inline-block", 2095 | "-webkit-flex", 2096 | "flex", 2097 | "block", 2098 | "none", 2099 | "none", 2100 | "inline-block", 2101 | "none", 2102 | "block", 2103 | "inline-block", 2104 | "block", 2105 | "block", 2106 | "none", 2107 | "block", 2108 | "none", 2109 | "inline-block", 2110 | "block", 2111 | "inline", 2112 | "none", 2113 | "inline-block", 2114 | "none", 2115 | "block", 2116 | "none", 2117 | "inline", 2118 | "none", 2119 | "block", 2120 | "block", 2121 | "inline-block", 2122 | "inline-block", 2123 | "inline-block", 2124 | "inline", 2125 | "block", 2126 | "block", 2127 | "block", 2128 | "block", 2129 | "inline-block", 2130 | "none", 2131 | "block", 2132 | "block", 2133 | "inline-block", 2134 | "inline-block", 2135 | "inline-block", 2136 | "inline-block", 2137 | "none", 2138 | "inline-block", 2139 | "inline-block", 2140 | "inline-block", 2141 | "table", 2142 | "block", 2143 | "block", 2144 | "block", 2145 | "table-cell", 2146 | "none", 2147 | "block" 2148 | ], 2149 | "height": [ 2150 | "37px", 2151 | "38px", 2152 | "26px", 2153 | "30px", 2154 | "24px", 2155 | "40px", 2156 | "36px", 2157 | "100%", 2158 | "17px", 2159 | "28px", 2160 | "34px", 2161 | "69px", 2162 | "69px", 2163 | "100%", 2164 | "30px", 2165 | "30px", 2166 | "30px", 2167 | "20px", 2168 | "0", 2169 | "29px", 2170 | "100%", 2171 | "30px", 2172 | "20px", 2173 | "40px", 2174 | "100px", 2175 | "32px", 2176 | "48px", 2177 | "64px", 2178 | "0", 2179 | "32px", 2180 | "100%", 2181 | "auto", 2182 | "96px", 2183 | "48px", 2184 | "25px", 2185 | "30px", 2186 | "0", 2187 | "0", 2188 | "33px", 2189 | "30px", 2190 | "60px", 2191 | "28px", 2192 | "60px", 2193 | "28px", 2194 | "90px", 2195 | "58px", 2196 | "60px", 2197 | "28px", 2198 | "1px", 2199 | "16px", 2200 | "15px", 2201 | "0", 2202 | "5px", 2203 | "0", 2204 | "100%", 2205 | "35px", 2206 | "30px", 2207 | "30px", 2208 | "16px", 2209 | "100%", 2210 | "11px", 2211 | "32px", 2212 | "42px", 2213 | "100%", 2214 | "100%", 2215 | "301px", 2216 | "151px", 2217 | "165px", 2218 | "95px", 2219 | "87px", 2220 | "46px", 2221 | "53px", 2222 | "14px", 2223 | "57px", 2224 | "80px", 2225 | "59px", 2226 | "26px", 2227 | "22px", 2228 | "100%", 2229 | "30px", 2230 | "30px", 2231 | "30px", 2232 | "20px", 2233 | "0", 2234 | "29px", 2235 | "100%", 2236 | "30px", 2237 | "20px", 2238 | "25px", 2239 | "9px", 2240 | "14px", 2241 | "14px" 2242 | ], 2243 | "overflow": [ 2244 | "hidden", 2245 | "hidden", 2246 | "visible", 2247 | "hidden", 2248 | "visible", 2249 | "hidden", 2250 | "hidden", 2251 | "hidden", 2252 | "hidden", 2253 | "auto", 2254 | "hidden", 2255 | "hidden", 2256 | "hidden", 2257 | "hidden", 2258 | "hidden", 2259 | "hidden", 2260 | "hidden", 2261 | "hidden", 2262 | "hidden", 2263 | "hidden", 2264 | "hidden" 2265 | ], 2266 | "position": [ 2267 | "relative", 2268 | "absolute", 2269 | "static", 2270 | "absolute", 2271 | "relative", 2272 | "absolute", 2273 | "relative", 2274 | "relative", 2275 | "absolute", 2276 | "absolute", 2277 | "relative", 2278 | "absolute", 2279 | "absolute", 2280 | "relative", 2281 | "absolute", 2282 | "relative", 2283 | "static", 2284 | "relative", 2285 | "relative", 2286 | "absolute", 2287 | "relative", 2288 | "absolute", 2289 | "relative", 2290 | "absolute", 2291 | "relative", 2292 | "absolute", 2293 | "absolute", 2294 | "absolute", 2295 | "absolute", 2296 | "relative", 2297 | "absolute", 2298 | "relative", 2299 | "relative", 2300 | "absolute", 2301 | "relative", 2302 | "absolute", 2303 | "relative", 2304 | "relative", 2305 | "relative", 2306 | "absolute", 2307 | "static", 2308 | "absolute", 2309 | "relative", 2310 | "relative", 2311 | "relative", 2312 | "absolute", 2313 | "absolute", 2314 | "relative", 2315 | "absolute", 2316 | "relative", 2317 | "absolute", 2318 | "absolute", 2319 | "absolute", 2320 | "absolute", 2321 | "fixed", 2322 | "absolute", 2323 | "relative", 2324 | "absolute", 2325 | "relative", 2326 | "absolute", 2327 | "absolute", 2328 | "absolute", 2329 | "absolute", 2330 | "absolute", 2331 | "absolute", 2332 | "relative", 2333 | "absolute", 2334 | "absolute", 2335 | "absolute", 2336 | "absolute", 2337 | "absolute", 2338 | "absolute", 2339 | "relative", 2340 | "absolute", 2341 | "absolute", 2342 | "fixed", 2343 | "absolute", 2344 | "absolute", 2345 | "absolute", 2346 | "absolute", 2347 | "absolute", 2348 | "absolute", 2349 | "absolute", 2350 | "relative", 2351 | "absolute", 2352 | "relative", 2353 | "relative", 2354 | "absolute", 2355 | "absolute", 2356 | "absolute", 2357 | "absolute", 2358 | "absolute", 2359 | "absolute", 2360 | "relative", 2361 | "absolute" 2362 | ], 2363 | "width": [ 2364 | "95px", 2365 | "100%", 2366 | "24px", 2367 | "40px", 2368 | "638px", 2369 | "466px", 2370 | "550px", 2371 | "100%", 2372 | "40px", 2373 | "100%", 2374 | "100%", 2375 | "60px", 2376 | "30px", 2377 | "100%", 2378 | "40%", 2379 | "60%", 2380 | "100%", 2381 | "100%", 2382 | "30px", 2383 | "20px", 2384 | "320px", 2385 | "265px", 2386 | "320px", 2387 | "264px", 2388 | "32px", 2389 | "48px", 2390 | "264px", 2391 | "64px", 2392 | "32px", 2393 | "auto", 2394 | "30px", 2395 | "96px", 2396 | "96px", 2397 | "100%", 2398 | "48px", 2399 | "25px", 2400 | "0", 2401 | "30px", 2402 | "0", 2403 | "0", 2404 | "92px", 2405 | "30px", 2406 | "100%", 2407 | "100%", 2408 | "16px", 2409 | "0", 2410 | "75px", 2411 | "30px", 2412 | "15px", 2413 | "0", 2414 | "5px", 2415 | "0", 2416 | "100%", 2417 | "100%", 2418 | "100%", 2419 | "0", 2420 | "100%", 2421 | "833px", 2422 | "833px", 2423 | "1139px", 2424 | "16px", 2425 | "400px", 2426 | "100%", 2427 | "15px", 2428 | "94px", 2429 | "100%", 2430 | "572px", 2431 | "301px", 2432 | "151px", 2433 | "165px", 2434 | "95px", 2435 | "42px", 2436 | "24px", 2437 | "52px", 2438 | "9px", 2439 | "38px", 2440 | "460px", 2441 | "490px", 2442 | "500px", 2443 | "auto", 2444 | "100%", 2445 | "100%", 2446 | "26px", 2447 | "22px", 2448 | "100%", 2449 | "60px", 2450 | "30px", 2451 | "100%", 2452 | "40%", 2453 | "60%", 2454 | "100%", 2455 | "100%", 2456 | "30px", 2457 | "20px", 2458 | "9px", 2459 | "258px", 2460 | "356px", 2461 | "356px", 2462 | "200px", 2463 | "100%", 2464 | "14px", 2465 | "14px" 2466 | ], 2467 | "border": [ 2468 | "0", 2469 | "1px solid #d9d9d9", 2470 | "0", 2471 | "0", 2472 | "none", 2473 | "none", 2474 | "0", 2475 | "1px solid #3079ed", 2476 | "1px solid #2f5bb7", 2477 | "1px solid #dd4b39", 2478 | "1px solid #b0281a", 2479 | "1px solid #29691d", 2480 | "1px solid #2d6200", 2481 | "1px solid #dcdcdc", 2482 | "1px solid #dcdcdc", 2483 | "1px solid #f2f2f2", 2484 | "1px solid #c6c6c6", 2485 | "1px solid #4d90fe", 2486 | "none", 2487 | "1px solid transparent", 2488 | "1px solid transparent", 2489 | "1px solid #cdcdcd", 2490 | "none", 2491 | "1px solid #4d90fe", 2492 | "0", 2493 | "0", 2494 | "1px solid #dcdcdc", 2495 | "none", 2496 | "0", 2497 | "none", 2498 | "none", 2499 | "1px solid #ccc", 2500 | "none", 2501 | "1px solid #c6c6c6", 2502 | "1px solid #4285f4", 2503 | "none", 2504 | "none", 2505 | "5px solid transparent", 2506 | "none", 2507 | "1px solid", 2508 | "1px solid #bdbdbd", 2509 | "1px solid #2558b0", 2510 | "1px solid #eee", 2511 | "0", 2512 | "7px solid #999", 2513 | "none", 2514 | "1px solid #999", 2515 | "none", 2516 | "1px solid transparent", 2517 | "1px solid transparent", 2518 | "1px solid #cdcdcd", 2519 | "none", 2520 | "1px solid #4d90fe", 2521 | "0", 2522 | "0", 2523 | "1px solid #dcdcdc", 2524 | "none", 2525 | "1px solid #fff", 2526 | "1px solid #dcdcdc", 2527 | "1px solid rgba(0,0,0,0.1)", 2528 | "1px solid rgba(0,0,0,0.2)", 2529 | "0", 2530 | "0", 2531 | "0", 2532 | "0" 2533 | ], 2534 | "left": [ 2535 | "0", 2536 | "16px", 2537 | "0", 2538 | "0", 2539 | "0", 2540 | "0", 2541 | "3px", 2542 | "-428px", 2543 | "28px", 2544 | "28px", 2545 | "auto", 2546 | "0", 2547 | "-244px", 2548 | "6.5px", 2549 | "6.5px", 2550 | "0", 2551 | "0", 2552 | "0", 2553 | "215px", 2554 | "0", 2555 | "0", 2556 | "-13px", 2557 | "40px", 2558 | "0", 2559 | "255px", 2560 | "270px", 2561 | "0", 2562 | "-83px", 2563 | "-69px", 2564 | "-28px", 2565 | "43px", 2566 | "17px", 2567 | "25px", 2568 | "11px", 2569 | "22px", 2570 | "-44px", 2571 | "7px", 2572 | "0", 2573 | "0", 2574 | "2px", 2575 | "0", 2576 | "0", 2577 | "0", 2578 | "0", 2579 | "3px", 2580 | "-428px", 2581 | "-132px", 2582 | "-463px", 2583 | "0", 2584 | "-296px", 2585 | "-97px", 2586 | "-314px", 2587 | "-463px", 2588 | "0", 2589 | "-279px", 2590 | "-349px", 2591 | "-393px", 2592 | "-194px", 2593 | "-194px", 2594 | "-70px", 2595 | "-219px", 2596 | "-498px", 2597 | "-498px", 2598 | "-428px", 2599 | "-197px", 2600 | "-164px", 2601 | "-189px" 2602 | ], 2603 | "top": [ 2604 | "-41px", 2605 | "3px", 2606 | "311px", 2607 | "15px", 2608 | "-8px", 2609 | "0", 2610 | "0", 2611 | "0", 2612 | "0", 2613 | "28px", 2614 | "0", 2615 | "37px", 2616 | "36px", 2617 | "44px", 2618 | "44px", 2619 | "2px", 2620 | "0", 2621 | "0", 2622 | "0px", 2623 | "0px", 2624 | "310px", 2625 | "76px", 2626 | "2px", 2627 | "auto", 2628 | "auto", 2629 | "0", 2630 | "0", 2631 | "8px", 2632 | "0", 2633 | "0", 2634 | "-83px", 2635 | "-69px", 2636 | "-28px", 2637 | "-70px", 2638 | "-27px", 2639 | "47px", 2640 | "7px", 2641 | "-.2em", 2642 | ".2em", 2643 | "-.6em", 2644 | "-1.3em", 2645 | "-1.7em", 2646 | "-2.5em", 2647 | "-1.7em", 2648 | "-80px", 2649 | "0", 2650 | "-295px", 2651 | "0", 2652 | "2px", 2653 | "0", 2654 | "0", 2655 | "0", 2656 | "-38px", 2657 | "-35px", 2658 | "-35px", 2659 | "0", 2660 | "0", 2661 | "-38px", 2662 | "0", 2663 | "0", 2664 | "-38px", 2665 | "-38px", 2666 | "0", 2667 | "-21px", 2668 | "-46px", 2669 | "0", 2670 | "0", 2671 | "5px", 2672 | "4px", 2673 | "36px", 2674 | "36px", 2675 | "-999px", 2676 | "-35px", 2677 | "0", 2678 | "-35px", 2679 | "-3px", 2680 | "22px" 2681 | ], 2682 | "background": [ 2683 | "url(/images/nav_logo242.png) no-repeat", 2684 | "transparent", 2685 | "url(/images/nav_logo242.png) no-repeat -107px -55px", 2686 | "none", 2687 | "#f1f1f1", 2688 | "#fff1a8", 2689 | "transparent", 2690 | "#4285f4", 2691 | "-webkit-linear-gradient(top,#4387fd,#4683ea)", 2692 | "linear-gradient(top,#4387fd,#4683ea)", 2693 | "#3c78dc", 2694 | "-webkit-linear-gradient(top,#3c7ae4,#3f76d3)", 2695 | "linear-gradient(top,#3c7ae4,#3f76d3)", 2696 | "#fff", 2697 | "transparent", 2698 | "#f8f8f8", 2699 | "-webkit-linear-gradient(top,#f8f8f8,#f1f1f1)", 2700 | "linear-gradient(top,#f8f8f8,#f1f1f1)", 2701 | "#f5f5f5", 2702 | "-webkit-linear-gradient(top,#f5f5f5,#f1f1f1)", 2703 | "linear-gradient(top,#f5f5f5,#f1f1f1)", 2704 | "#e5e5e5", 2705 | "no-repeat center 0", 2706 | "#fff", 2707 | "#f5f5f5", 2708 | "#ffa", 2709 | "rgba(0,0,0,.1)", 2710 | "rgba(78,144,254,.7)", 2711 | "rgba(0,0,0,.54)", 2712 | "#4d90fe", 2713 | "#357ae8", 2714 | "#f5f5f5", 2715 | "#fef9db", 2716 | "#f5f5f5", 2717 | "#eee", 2718 | "transparent", 2719 | "#f5f5f5", 2720 | "#fff", 2721 | "#f8f8f8", 2722 | "#f8f8f8", 2723 | "#4285f4", 2724 | "-webkit-linear-gradient(top,#4387fd,#4683ea)", 2725 | "linear-gradient(top,#4387fd,#4683ea)", 2726 | "#3c78dc", 2727 | "-webkit-linear-gradient(top,#3c7ae4,#3f76d3)", 2728 | "linear-gradient(top,#3c7ae4,#3f76d3)", 2729 | "#f5f5f5", 2730 | "#e5e5e5", 2731 | "#f1f1f1", 2732 | "#fff", 2733 | "transparent", 2734 | "#e1e1e1", 2735 | "rgba(0,0,0,.12)", 2736 | "#333", 2737 | "rgba(255,255,255,.2)", 2738 | "none", 2739 | "transparent", 2740 | "#fff", 2741 | "#fff", 2742 | "#4d90fe", 2743 | "#fff", 2744 | "url(data:image/gif;base64,R0lGODlhEAAQAKIHAPzu7PfT0Oh5cfGtqONbUuBLQeBKP////yH5BAEAAAcALAAAAAAQABAAAANKeLrcfkAI8NowZtQFCCbUJmCYsAWFAQBGEVSjyhqmc2HBnDUdGQQkEOOGA5I0CkCKxMQUQjEnAMU0GUkuZTPgaRaWTEK0Sa5tGgkAOw==) no-repeat center", 2745 | "#fff", 2746 | "rgba(255,255,255,0)", 2747 | "rgba(255,255,255,0)", 2748 | "url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAABACAQAAAAKENVCAAAI/ElEQVR4Ae3ae3BU5RnH8e/ZTbIhhIRbRIJyCZcEk4ZyE4RBAiRBxRahEZBLQYUZAjIgoLUWB6wjKIK2MtAqOLVUKSqWQW0ZaOQq0IFAIZVrgFQhXAOShITEbHY7407mnPfc8u6ya2f0fN6/9rzvc87Z39nbed/l/8OhIKMDQ+hHKp1JJB6FKq5QQhH72MZ1IsDRhvkU4bds9WxlLNE4wqg9q6jBL9G+4knc/HB9qXmuG4goD89TjT+IVkimE/zt6sYh/EG3WmaiOMGHbgQ38YfY3ibKCV6GMabHWY0bo+Ps5jjnuYlCczrSk8Hcgd5U1rONoDnG48Ova2W8RGeMXAxiHfWakT4mOx81oRiG1/C5vYh47KSx5fZid4JvxxVd7MdIp3EK06kNNXYneIWtutgLaIasQUwkJE7wE3SxbycWR8SD93BOiL2YRBwRDN5FwOPchaqecZQTQQ4XAApz0FrFQSLPwQD8mlZNEt8L5841D62/cJVIi2cgPelEAlBOCYfYSxXymjKAXqSQAFRwloPspRp5dzOMHiTThEqK2c1OvGHIsg/30YUWKHzDKfZwEB+2xBn3gUSSwmA+MpluruYDySMPYD23TOrX0V/q+CPZYai+yHw8wKscbmhMD+IVfyevcMlkuvxXxGOphTD4Gi4iJ40C/DZtM12wk8Lfbes/oSN27mGPZW0RnVmvebxIMng3z1Bluddz5Mh9wm8icqZIzPHfZDxW8qhotL6cUVh5zP74XOBg0MEnsgW/bfMxzyIOYdgSIuV5/JJtPmZmSlb7mI6ZGTLVQQafSKHUvp7BxFxhSD6N8UsH4An5aT+J3mNB1T+K3hj8YQ/ezRbpvY3CYKEwYFLYgvfTkQZ9qTN8nS3lIdJJZwTLDdNztfwUrTTDp+hllmnqrxo+sLqi1dWwuFPKYnK5h0we5c/UhhT8fF1FHWsZTis8dGAyB4S+67RF5wVhwC/DGHxvAqI4Imyv50Vi0YpjsW4l4AAuGii63yE+lhCHVlOW6o79TxRN/ee64y/SHb8TO4MOvq3uYh6iO1oufiP0r0VnjtA9K4zBDzSdgKtjJGbyqBfG5dFguC62sZiZoLt0Qy3qvYzCKIZNQQYvXupdxGO0Rni5dLebl1wexuD7A4DuC+gprMwTxu2hwT+E7c9iZYEw7lMaiBPeczAXT3EQwcdwTbP1Eq3RiyaPvcIe/4igj9C5NYzBpwOQKmzbh4IVF4dMviOShHfCEdxYieKY8M5qCUCy8E4oxIWVnwcRfK4wdhqitiyk1JBHJc3UU4UT+HDRYADR1GEnB2s9WYrqssn41/BjxcdrrEOVzRogS4hqOfVY8fI6qzWXYTAbgRwUVMvwYeUzzpKCnMGobvIeDRTuZyajiMLoMG2oRONfwnV5kNDNFH5ZKAD8SbPtFrHYaSr8+nkLgCXC53sCdloJz+RlAFYJv5bisPOG9Cv+U+F+O6AZM4Sx2iz+QKZxWrgArSmEbiAIpwvQGdV/qMFOFUdRdTbUn6QCO9c4bajvJhy/GjuFyOqEqhhIZyUXWEk6esd4imTyKTIG/1e08kghNNEMR7WfgERUpTTmPKrmIdSXGupbiHu3dQFZCagy2MGXzCAekZcPySKDlVSYTwsf5QB9aeBiCWMJxcO0RPU5AW5UPuyJI9xhr/diz4ssF6ohGJXyFmu42Fj5MrTGMILgKTyHqpoCAipR3YE9cURFWOorUCVhrzWyKrFWwGg68hIXG79uGziG1rt0IFhPcC+qj6gioARVJm7sRPMTVCWG+u54sBNHqm19Ji7sZCDrv5gp53ekkcNGvHJvGB+zdVd+M60JRi/eREt9VIQqgfuxM5Q4VEcM9R5ysfMAUaA78iFUzRmIfb2sw+j9m6m042lOEqS1hv+R3Y2svpSJCxJCn9hjR5ztywSgg7BtGwpWFHYLY+8CIB2/5Jppj5BvoE7Qz/a8bCVSrIv+quQrYCLVQl0NXVEpnBF6f4aVX+guvELAPmH7GMk/ZX1BgKJb2szBnEJBEMFHUyY841SsjGcr7bGVabLC8z6dsJPC3ww1sxE9LfTeoAdmeumOPkNzYcUb776Y6aebOh5Hg6m6l1MaZhYGOUn2sjD6MAmYyeIWfiqYhoKNLJNlaC/ryCUGvRhyWUedYfx7KIiack4XfZ5ujMI4XewlxIpzMEL04w31k3STtEW4NWd6Uugr4yFEHt4Ielo4iRvC+P20R6QwTZPnFtpjI4dKi5veAlbwLPnM4NesZDs3Tcd9RgxGIw3jdjCeO1FQSGYiuw39D6A1CJ+u/wsm0pZA/STDEnY9A9DKMtRvZjStAIVOzOJMSAsh+YaMltGXGEChHVPYr+s/igsbPTmHP8T2IR7MvW46voZa0+2voLfAor7GdPtz6C0yHVfNt4S+9KewwXTJ8xtumWyv5T6w14pNIYTu40VcWHHzvvSe3sWFnsIq6foVKCb1qyOw2N2EnZJ7+5aRSFAYS2lQp3maLOy5WS61pyW4MKOwCJ/E5X8BBTMuXsW+tpITQQYPcXws8Zyuk420eOZyQSqqy8zDg4yH+cp2T2cYjp1sim3rTzEEO4/YPKNL9AvpD00K+ZTbnZXwc1KSh9FspNrmDbSZicQirwmzLMI7Qb7EnjxM57hp/TGmEUNjEljAZUNtHW/TGvhA+J6QCx4gicVcNT2r7TyIgoEiGf+99CeVLiTSDKimjK85QSH7qCJ4Cr0YRi9SaI6fG5zlIAUcwS9d34Nsen9Xz3f1hRRQJF0fzVCyyaQdcZRzil18zCUAPtHc3s3mTYIRzWCGkEEH4vFSxmn2s5kSJDgOGP/l4Ii8aOHetzeOsIhiNAX0wVq28O3lwXHbklnIeQJ/PHJhQbh72YXjts3Eq4n0t5h7BL+mzcVx29Kpxy9E70IvV5h7qiEJRxiswC+0feTgJkAhg3d098S/J8IUfhziOUAaouscoYJmpNIO0WXSuYYjLLpxFb9U85KNI4wyKJWKfQKOMEtmm33sXCCbCHC4mMxZIWpx/aglEeNwM4J3KNb8jvmaDTxBIt8jhR8vD22IpYYr1PBD5HA4HP8DxVcxdwELEFUAAAAASUVORK5CYII=) no-repeat center", 2749 | "#fff", 2750 | "#f2f2f2", 2751 | "#fff", 2752 | "#f2f2f2", 2753 | "#4285f4", 2754 | "-webkit-linear-gradient(top,#4387fd,#4683ea)", 2755 | "linear-gradient(top,#4387fd,#4683ea)", 2756 | "#3c78dc", 2757 | "-webkit-linear-gradient(top,#3c7ae4,#3f76d3)", 2758 | "linear-gradient(top,#3c7ae4,#3f76d3)", 2759 | "#fff", 2760 | "transparent", 2761 | "#f8f8f8", 2762 | "-webkit-linear-gradient(top,#f8f8f8,#f1f1f1)", 2763 | "linear-gradient(top,#f8f8f8,#f1f1f1)", 2764 | "#f5f5f5", 2765 | "-webkit-linear-gradient(top,#f5f5f5,#f1f1f1)", 2766 | "linear-gradient(top,#f5f5f5,#f1f1f1)", 2767 | "#e5e5e5", 2768 | "transparent", 2769 | "none", 2770 | "none", 2771 | "#ffffff", 2772 | "#4d90fe", 2773 | "transparent", 2774 | "#4d90fe", 2775 | "#4285f4", 2776 | "#357ae8", 2777 | "#fff" 2778 | ], 2779 | "cursor": [ 2780 | "pointer", 2781 | "default", 2782 | "default", 2783 | "pointer", 2784 | "pointer", 2785 | "default", 2786 | "default", 2787 | "default", 2788 | "default", 2789 | "default", 2790 | "default", 2791 | "pointer", 2792 | "pointer", 2793 | "pointer", 2794 | "pointer", 2795 | "pointer", 2796 | "pointer", 2797 | "pointer", 2798 | "default", 2799 | "default", 2800 | "default" 2801 | ], 2802 | "z-index": [ 2803 | "1", 2804 | "990", 2805 | "0", 2806 | "1", 2807 | "1", 2808 | "-1", 2809 | "987", 2810 | "987", 2811 | "986", 2812 | "990", 2813 | "987", 2814 | "986", 2815 | "985", 2816 | "103", 2817 | "100", 2818 | "3", 2819 | "2", 2820 | "10000", 2821 | "1", 2822 | "0", 2823 | "103", 2824 | "104", 2825 | "990", 2826 | "-1" 2827 | ], 2828 | "padding-left": [ 2829 | "13px", 2830 | "13px", 2831 | "15px", 2832 | "0", 2833 | "0", 2834 | "30px", 2835 | "0", 2836 | "30px", 2837 | "30px", 2838 | "0", 2839 | "126px", 2840 | "173px", 2841 | "126px", 2842 | "284px", 2843 | "14px", 2844 | "27px", 2845 | "12px", 2846 | "13px", 2847 | "20px" 2848 | ], 2849 | "padding-right": [ 2850 | "10px", 2851 | "12px", 2852 | "27px", 2853 | "30px", 2854 | "15px", 2855 | "0", 2856 | "29px", 2857 | "14px", 2858 | "0", 2859 | "0", 2860 | "15px", 2861 | "352px", 2862 | "173px", 2863 | "46px", 2864 | "284px", 2865 | "14px", 2866 | "0" 2867 | ], 2868 | "padding-top": [ 2869 | "6px", 2870 | "3px", 2871 | "8px", 2872 | "15px", 2873 | "76px", 2874 | "0", 2875 | "0", 2876 | "5px", 2877 | "5px" 2878 | ], 2879 | "background-color": [ 2880 | "#fff", 2881 | "#4285f4", 2882 | "#3b78e7", 2883 | "#3367d6", 2884 | "#4d90fe", 2885 | "#357ae8", 2886 | "#dd4b39", 2887 | "#c53727", 2888 | "#b0281a", 2889 | "#3d9400", 2890 | "#368200", 2891 | "#f5f5f5", 2892 | "#f8f8f8", 2893 | "#f2f2f2", 2894 | "#f8f8f8", 2895 | "#f1f1f1", 2896 | "#cb4437", 2897 | "rgba(0,0,0,.55)", 2898 | "rgba(0,0,0,.85)", 2899 | "rgba(0,0,0,.7)", 2900 | "#fff", 2901 | "#db4437", 2902 | "#a52714", 2903 | "rgba(153,153,153,.2)", 2904 | "rgba(153,153,153,.4)", 2905 | "rgba(0,0,0,.3)", 2906 | "rgba(0,0,0,.4)", 2907 | "transparent", 2908 | "#f9f9f9", 2909 | "#fcfcfc", 2910 | "#e6e6e6", 2911 | "#5a97ff", 2912 | "#629cff", 2913 | "#4279d8", 2914 | "#fff", 2915 | "#fff", 2916 | "#ff4444", 2917 | "#dbdbdb", 2918 | "#cd0000", 2919 | "#eee", 2920 | "#999", 2921 | "#999", 2922 | "#f44", 2923 | "#fff", 2924 | "#cb4437", 2925 | "rgba(0,0,0,.55)", 2926 | "rgba(0,0,0,.85)", 2927 | "rgba(0,0,0,.7)", 2928 | "#fff", 2929 | "#db4437", 2930 | "#a52714", 2931 | "#4d90fe", 2932 | "#404040" 2933 | ], 2934 | "border-top-color": [ 2935 | "none", 2936 | "#fff", 2937 | "rgba(0,0,0,.2)", 2938 | "rgba(0,0,0,.2)", 2939 | "rgba(0,0,0,.2)" 2940 | ], 2941 | "vertical-align": [ 2942 | "top", 2943 | "top", 2944 | "top", 2945 | "top", 2946 | "top", 2947 | "top", 2948 | "top", 2949 | "middle", 2950 | "middle", 2951 | "middle", 2952 | "middle", 2953 | "middle", 2954 | "top", 2955 | "top", 2956 | "top", 2957 | "middle", 2958 | "middle", 2959 | "middle", 2960 | "middle", 2961 | "middle", 2962 | "middle", 2963 | "middle", 2964 | "middle", 2965 | "middle", 2966 | "middle", 2967 | "top", 2968 | "middle", 2969 | "top", 2970 | "top", 2971 | "top", 2972 | "top", 2973 | "top", 2974 | "top", 2975 | "middle", 2976 | "middle", 2977 | "top" 2978 | ], 2979 | "border-right": [ 2980 | "0", 2981 | "4px dashed transparent" 2982 | ], 2983 | "margin-top": [ 2984 | "5px", 2985 | "-1px", 2986 | "4px", 2987 | "0", 2988 | "-10px", 2989 | ".1em", 2990 | "312px", 2991 | "-100px", 2992 | "-300px", 2993 | "0", 2994 | "4px", 2995 | "1px", 2996 | "15px" 2997 | ], 2998 | "margin-bottom": [ 2999 | "0", 3000 | "32px", 3001 | "8px", 3002 | "16px", 3003 | "5px", 3004 | "32px" 3005 | ], 3006 | "outline": [ 3007 | "none", 3008 | "0", 3009 | "none", 3010 | "none", 3011 | "none", 3012 | "none", 3013 | "1px dotted #fff", 3014 | "none", 3015 | "none", 3016 | "1px dotted #fff", 3017 | "none", 3018 | "none", 3019 | "none", 3020 | "none", 3021 | "none", 3022 | "0", 3023 | "none", 3024 | "0", 3025 | "none", 3026 | "none", 3027 | "none", 3028 | "1px dotted #fff", 3029 | "none", 3030 | "1px dotted #fff" 3031 | ], 3032 | "font": [ 3033 | "16px arial,sans-serif", 3034 | "16px arial,sans-serif", 3035 | "16px arial,sans-serif", 3036 | "bold 11px/27px Arial,sans-serif", 3037 | "bold 11px Arial", 3038 | "13px/18px Arial,sans-serif", 3039 | "16px/24px Arial,sans-serif", 3040 | "13px/27px Arial,sans-serif", 3041 | "13px/27px Arial,sans-serif", 3042 | "16px/16px roboto-regular, arial, sans-serif", 3043 | "11px arial,sans-serif", 3044 | "16px arial,sans-serif", 3045 | "bold 11px/27px Arial,sans-serif", 3046 | "bold 11px Arial" 3047 | ], 3048 | "line-height": [ 3049 | "26px", 3050 | "38px", 3051 | "normal", 3052 | "27px", 3053 | "0", 3054 | "29px", 3055 | "16px", 3056 | "20px", 3057 | "20px", 3058 | "40px", 3059 | "40px", 3060 | "0", 3061 | "30px", 3062 | "26px", 3063 | "9px", 3064 | "24px", 3065 | "28px", 3066 | "normal", 3067 | "58px", 3068 | "26px", 3069 | "normal", 3070 | "normal", 3071 | "30px", 3072 | "26px", 3073 | "normal", 3074 | "17px", 3075 | "22px", 3076 | "31px", 3077 | "27px", 3078 | "15px", 3079 | "1.2", 3080 | "25px", 3081 | "44px", 3082 | "40px", 3083 | "15px", 3084 | "29px", 3085 | "16px", 3086 | "20px", 3087 | "19px", 3088 | "normal", 3089 | "20px", 3090 | "17px" 3091 | ], 3092 | "padding": [ 3093 | "0 8px", 3094 | "0", 3095 | "0 16px", 3096 | "0px 9px 0", 3097 | "5px 7px", 3098 | "0", 3099 | "0", 3100 | "0 8px", 3101 | "0 0", 3102 | "0", 3103 | "0 8px", 3104 | "0 1px", 3105 | "0 2px", 3106 | "0 2px", 3107 | "118px 0", 3108 | "28px", 3109 | "34px 0", 3110 | "5px", 3111 | "10px 10px 10px 0", 3112 | "7px 0", 3113 | "10px 0", 3114 | "10px 20px", 3115 | "10px 20px", 3116 | "10px 20px", 3117 | "0 25px 0 10px", 3118 | "0 0 0 15px", 3119 | "0 12px", 3120 | "0 20px 0 15px", 3121 | "0 0 0 15px", 3122 | "0", 3123 | "22px", 3124 | "1px 1px 1px 0", 3125 | "0", 3126 | "3px 8px 0", 3127 | "0", 3128 | "0", 3129 | ".2em .31em", 3130 | "20px", 3131 | "0", 3132 | "0 223px", 3133 | "51px 0 50px 126px", 3134 | "0", 3135 | "10px 0", 3136 | "0 20px", 3137 | "8px 16px", 3138 | "0", 3139 | "0 8px", 3140 | "0 0", 3141 | "0", 3142 | "0 8px", 3143 | "0 1px", 3144 | "0 2px", 3145 | "0 2px", 3146 | "0 8px", 3147 | "0", 3148 | "26px 26px 22px 13px", 3149 | "0", 3150 | "18px 24px 16px 20px", 3151 | "10px 8px", 3152 | "16px 24px 16px 20px" 3153 | ], 3154 | "font-size": [ 3155 | "0", 3156 | "11px", 3157 | "13px", 3158 | "13px", 3159 | "10pt", 3160 | "11px", 3161 | "14px", 3162 | "12px", 3163 | "13px", 3164 | "11px", 3165 | "9px", 3166 | "11px", 3167 | "11px", 3168 | "10pt", 3169 | "20px", 3170 | "11px", 3171 | "small", 3172 | "13px", 3173 | "16px", 3174 | "12px", 3175 | "26px", 3176 | "32px", 3177 | "27px", 3178 | "18px", 3179 | "24px", 3180 | "13px", 3181 | "small", 3182 | "14px", 3183 | "small", 3184 | "11px", 3185 | "14px", 3186 | "12px", 3187 | "13px", 3188 | "22px", 3189 | "11px", 3190 | "22px", 3191 | "14px", 3192 | "14px", 3193 | "16px", 3194 | "small" 3195 | ], 3196 | "color": [ 3197 | "transparent", 3198 | "#fff", 3199 | "#fff", 3200 | "#fff", 3201 | "#555", 3202 | "#333", 3203 | "#555", 3204 | "#757575", 3205 | "#222", 3206 | "#000", 3207 | "#777", 3208 | "#11c", 3209 | "#36c", 3210 | "#222", 3211 | "#222", 3212 | "#444", 3213 | "#fff", 3214 | "#fff", 3215 | "#404040", 3216 | "#fff", 3217 | "#aaa", 3218 | "#4285f4", 3219 | "#737373", 3220 | "#737373", 3221 | "#737373", 3222 | "#737373", 3223 | "#262626", 3224 | "#427fed", 3225 | "#fff", 3226 | "#36c", 3227 | "#fff", 3228 | "#666", 3229 | "#ccc", 3230 | "#fff", 3231 | "#fff", 3232 | "#000", 3233 | "#666", 3234 | "#666", 3235 | "#427fed", 3236 | "#404040", 3237 | "#000", 3238 | "#fff", 3239 | "#000", 3240 | "#000", 3241 | "#000", 3242 | "#4285f4", 3243 | "#666", 3244 | "#fff", 3245 | "#000", 3246 | "#404040", 3247 | "#36c", 3248 | "#fff", 3249 | "#1a0dab", 3250 | "#00c", 3251 | "#11c", 3252 | "#222", 3253 | "#1a0dab", 3254 | "#1a0dab", 3255 | "#609", 3256 | "#fff", 3257 | "#666", 3258 | "#dd4b39", 3259 | "#000", 3260 | "#4285f4", 3261 | "#fff", 3262 | "#222", 3263 | "#1a0dab", 3264 | "#1a0dab", 3265 | "#4285F4", 3266 | "#000", 3267 | "#555", 3268 | "#000", 3269 | "#fff", 3270 | "#4273db", 3271 | "#777", 3272 | "#1155cc", 3273 | "red", 3274 | "#777", 3275 | "#222", 3276 | "#777", 3277 | "#333", 3278 | "#222", 3279 | "#222", 3280 | "#444", 3281 | "#fff", 3282 | "#fff", 3283 | "#404040", 3284 | "#fff", 3285 | "#fff", 3286 | "#000", 3287 | "#ffffff", 3288 | "#ffffff", 3289 | "#ffffff", 3290 | "#666666", 3291 | "#c1d1f4", 3292 | "#222", 3293 | "#808080", 3294 | "#fff", 3295 | "#5e97f6", 3296 | "#333333", 3297 | "#ffffff", 3298 | "#666666", 3299 | "#ffffff", 3300 | "#5e97f6", 3301 | "#5e97f6", 3302 | "#ffffff", 3303 | "red" 3304 | ], 3305 | "margin": [ 3306 | "7px auto", 3307 | "0", 3308 | "3px 0 4px", 3309 | "11px 4px", 3310 | "6px", 3311 | "-1px 0px 1px", 3312 | "0", 3313 | "0", 3314 | "0", 3315 | "0", 3316 | "0", 3317 | "-1px", 3318 | "16px 8px", 3319 | "5px", 3320 | "0", 3321 | "8px", 3322 | "-12px 28px 28px", 3323 | "8px", 3324 | "-1px", 3325 | "20px", 3326 | "-4px 0 1px 0", 3327 | "6px 0", 3328 | "0 10px", 3329 | "10px 0 0 0", 3330 | "0 20px", 3331 | "6px 0 0 10px", 3332 | "1px 0", 3333 | "0", 3334 | "auto", 3335 | "0", 3336 | "3px 0 4px", 3337 | "0 auto", 3338 | "2px 0", 3339 | "2px 10px 0", 3340 | "0", 3341 | "0", 3342 | "0 44px", 3343 | "0 auto", 3344 | "5px", 3345 | "0", 3346 | "15px", 3347 | "auto", 3348 | "0", 3349 | "0", 3350 | "-1px 0 0", 3351 | "2px", 3352 | "0", 3353 | "0", 3354 | "40px 0", 3355 | "0", 3356 | "0", 3357 | "0", 3358 | "-1px", 3359 | "16px 8px", 3360 | "5px", 3361 | "0", 3362 | "0", 3363 | "0" 3364 | ], 3365 | "text-align": [ 3366 | "center", 3367 | "center", 3368 | "center", 3369 | "center", 3370 | "center", 3371 | "center", 3372 | "center", 3373 | "left", 3374 | "center", 3375 | "center", 3376 | "center", 3377 | "center", 3378 | "center", 3379 | "right", 3380 | "left", 3381 | "center", 3382 | "center", 3383 | "right", 3384 | "left", 3385 | "left", 3386 | "right", 3387 | "center", 3388 | "left", 3389 | "left", 3390 | "left", 3391 | "center", 3392 | "left", 3393 | "center", 3394 | "center", 3395 | "center", 3396 | "center", 3397 | "right" 3398 | ], 3399 | "border-bottom-left-radius": [ 3400 | "0", 3401 | "0", 3402 | "0" 3403 | ], 3404 | "border-top-left-radius": [ 3405 | "0", 3406 | "0", 3407 | "0" 3408 | ], 3409 | "min-width": [ 3410 | "38px", 3411 | "54px", 3412 | "54px", 3413 | "14px", 3414 | "400px", 3415 | "30px", 3416 | "60px", 3417 | "0", 3418 | "127px", 3419 | "1152px", 3420 | "315px", 3421 | "0", 3422 | "30px", 3423 | "0", 3424 | "0", 3425 | "20px", 3426 | "980px", 3427 | "0", 3428 | "534px", 3429 | "572px", 3430 | "980px", 3431 | "534px", 3432 | "100%", 3433 | "980px", 3434 | "980px", 3435 | "54px", 3436 | "14px" 3437 | ], 3438 | "background-image": [ 3439 | "none", 3440 | "none", 3441 | "-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed))", 3442 | "-webkit-linear-gradient(top,#4d90fe,#4787ed)", 3443 | "linear-gradient(top,#4d90fe,#4787ed)", 3444 | "-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8))", 3445 | "-webkit-linear-gradient(top,#4d90fe,#357ae8)", 3446 | "linear-gradient(top,#4d90fe,#357ae8)", 3447 | "-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836))", 3448 | "-webkit-linear-gradient(top,#dd4b39,#d14836)", 3449 | "linear-gradient(top,#dd4b39,#d14836)", 3450 | "-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727))", 3451 | "-webkit-linear-gradient(top,#dd4b39,#c53727)", 3452 | "linear-gradient(top,#dd4b39,#c53727)", 3453 | "-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a))", 3454 | "-webkit-linear-gradient(top,#dd4b39,#b0281a)", 3455 | "linear-gradient(top,#dd4b39,#b0281a)", 3456 | "-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#398a00))", 3457 | "-webkit-linear-gradient(top,#3d9400,#398a00)", 3458 | "linear-gradient(top,#3d9400,#398a00)", 3459 | "-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#368200))", 3460 | "-webkit-linear-gradient(top,#3d9400,#368200)", 3461 | "linear-gradient(top,#3d9400,#368200)", 3462 | "-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1))", 3463 | "-webkit-linear-gradient(top,#f5f5f5,#f1f1f1)", 3464 | "linear-gradient(top,#f5f5f5,#f1f1f1)", 3465 | "-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1))", 3466 | "-webkit-linear-gradient(top,#f8f8f8,#f1f1f1)", 3467 | "linear-gradient(top,#f8f8f8,#f1f1f1)", 3468 | "-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1))", 3469 | "-webkit-linear-gradient(top,#f5f5f5,#f1f1f1)", 3470 | "-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1))", 3471 | "-webkit-linear-gradient(top,#f8f8f8,#f1f1f1)", 3472 | "linear-gradient(top,#f8f8f8,#f1f1f1)", 3473 | "-o-linear-gradient(top,#f8f8f8,#f1f1f1)", 3474 | "-webkit-image-set(url('//ssl.gstatic.com/gb/images/a/f5cdd88b65.png') 1x,url('//ssl.gstatic.com/gb/images/a/133fc21e88.png') 2x)", 3475 | "url('//ssl.gstatic.com/gb/images/p1_a4541be8.png')", 3476 | "url('//ssl.gstatic.com/gb/images/p1_a4541be8.png')", 3477 | "url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png')", 3478 | "url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')", 3479 | "none", 3480 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 3481 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)", 3482 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 3483 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)", 3484 | "url('//ssl.gstatic.com/gb/images/p2_3645acaa.png')", 3485 | "none", 3486 | "-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.16)),to(rgba(0,0,0,0.2)))", 3487 | "-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2))", 3488 | "linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2))", 3489 | "-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2))", 3490 | "-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.14)),to(rgba(0,0,0,0.2)))", 3491 | "-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2))", 3492 | "linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2))", 3493 | "-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2))", 3494 | "none" 3495 | ], 3496 | "margin-left": [ 3497 | "0", 3498 | "10px", 3499 | "6px", 3500 | "0", 3501 | "0", 3502 | "0", 3503 | "4px", 3504 | "13px", 3505 | "0", 3506 | "10px", 3507 | "44px", 3508 | "32px", 3509 | "0", 3510 | "-27px", 3511 | "135px", 3512 | "135px", 3513 | "135px", 3514 | "30px", 3515 | "0", 3516 | "10px", 3517 | "16px", 3518 | "16px", 3519 | "1px" 3520 | ], 3521 | "-webkit-border-radius": [ 3522 | "2px", 3523 | "2px", 3524 | "2px", 3525 | "8px", 3526 | "50%", 3527 | "5px", 3528 | "2px", 3529 | "50%", 3530 | "50%", 3531 | "50%", 3532 | "2px", 3533 | "2px", 3534 | "2px", 3535 | "10px", 3536 | "2px", 3537 | "8px", 3538 | "50%", 3539 | "2px", 3540 | "2px" 3541 | ], 3542 | "border-radius": [ 3543 | "2px", 3544 | "2px", 3545 | "2px", 3546 | "8px", 3547 | "50%", 3548 | "5px", 3549 | "2px", 3550 | "50%", 3551 | "50%", 3552 | "50%", 3553 | "2px", 3554 | "2px", 3555 | "2px", 3556 | "10px", 3557 | "2px", 3558 | "100%", 3559 | "100%", 3560 | "30px", 3561 | "28px", 3562 | "6px", 3563 | "2px", 3564 | "8px", 3565 | "50%", 3566 | "2px", 3567 | "2px" 3568 | ], 3569 | "-webkit-box-shadow": [ 3570 | "0 1px 1px rgba(0,0,0,0.1)", 3571 | "inset 0 1px 2px rgba(0,0,0,0.3)", 3572 | "0 1px 1px rgba(0,0,0,0.1)", 3573 | "none", 3574 | "0 1px 0 rgba(0,0,0,.15)", 3575 | "inset 0 0 0 1px #fff", 3576 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3577 | "inset 0 2px 0 rgba(0,0,0,.15)", 3578 | "0 1px 2px rgba(0,0,0,.2)", 3579 | "0 1px 2px rgba(0,0,0,.2)", 3580 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3581 | "inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3582 | "inset 0 0 0 1px #fff", 3583 | "0 1px 0 rgba(0,0,0,.15)", 3584 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3585 | "inset 0 1px 2px rgba(0,0,0,0.1)", 3586 | "0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1)", 3587 | "0 1px 0 rgba(0,0,0,.15)", 3588 | "inset 0 2px 0 rgba(0,0,0,.15)", 3589 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3590 | "0 2px 10px rgba(0,0,0,.2)", 3591 | "0 1px 1px rgba(0,0,0,.16)", 3592 | "0 1px 0 rgba(0,0,0,.15)", 3593 | "inset 0 2px 0 rgba(0,0,0,.15)", 3594 | "none", 3595 | "0 2px 4px rgba(0,0,0,0.2)", 3596 | "none", 3597 | "0 1px 0 rgba(0,0,0,.15)", 3598 | "inset 0 0 0 1px #fff", 3599 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3600 | "inset 0 2px 0 rgba(0,0,0,.15)", 3601 | "0 1px 2px rgba(0,0,0,.2)", 3602 | "0 1px 2px rgba(0,0,0,.2)", 3603 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3604 | "inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3605 | "inset 0 0 0 1px #fff", 3606 | "0 1px 0 rgba(0,0,0,.15)", 3607 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3608 | "inset 0 1px 2px rgba(0,0,0,0.1)", 3609 | "0 1px 1px rgba(0,0,0,0.1)", 3610 | "inset 0 1px 2px rgba(0,0,0,0.3)", 3611 | "4px 4px 12px rgba(0,0,0,0.4)", 3612 | "0 4px 5px rgba(0,0,0,.16)", 3613 | "4px 4px 12px rgba(0,0,0,0.4)" 3614 | ], 3615 | "box-shadow": [ 3616 | "0 1px 1px rgba(0,0,0,0.1)", 3617 | "inset 0 1px 2px rgba(0,0,0,0.3)", 3618 | "0 1px 1px rgba(0,0,0,0.1)", 3619 | "none", 3620 | "0 1px 0 rgba(0,0,0,.15)", 3621 | "inset 0 0 0 1px #fff", 3622 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3623 | "inset 0 2px 0 rgba(0,0,0,.15)", 3624 | "0 1px 2px rgba(0,0,0,.2)", 3625 | "0 1px 2px rgba(0,0,0,.2)", 3626 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3627 | "inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3628 | "inset 0 0 0 1px #fff", 3629 | "0 1px 0 rgba(0,0,0,.15)", 3630 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3631 | "inset 0 1px 2px rgba(0,0,0,0.1)", 3632 | "0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1)", 3633 | "0 1px 0 rgba(0,0,0,.15)", 3634 | "inset 0 2px 0 rgba(0,0,0,.15)", 3635 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3636 | "0 2px 10px rgba(0,0,0,.2)", 3637 | "0 1px 1px rgba(0,0,0,.16)", 3638 | "0 1px 0 rgba(0,0,0,.15)", 3639 | "inset 0 2px 0 rgba(0,0,0,.15)", 3640 | "none", 3641 | "inset 0 0 1px", 3642 | "0 2px 6px rgba(0,0,0,0.2)", 3643 | "0 2px 5px rgba(0,0,0,.1)", 3644 | "none", 3645 | "0 1px 0px #4285F4", 3646 | "0 1px 80px #4285F4", 3647 | "0 2px 4px rgba(0,0,0,0.2)", 3648 | "none", 3649 | "0 1px 0 rgba(0,0,0,.15)", 3650 | "inset 0 0 0 1px #fff", 3651 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3652 | "inset 0 2px 0 rgba(0,0,0,.15)", 3653 | "0 1px 2px rgba(0,0,0,.2)", 3654 | "0 1px 2px rgba(0,0,0,.2)", 3655 | "0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3656 | "inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)", 3657 | "inset 0 0 0 1px #fff", 3658 | "0 1px 0 rgba(0,0,0,.15)", 3659 | "0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff", 3660 | "inset 0 1px 2px rgba(0,0,0,0.1)", 3661 | "0 1px 1px rgba(0,0,0,0.1)", 3662 | "inset 0 1px 2px rgba(0,0,0,0.3)", 3663 | "4px 4px 12px rgba(0,0,0,0.4)", 3664 | "0 4px 5px rgba(0,0,0,.16)", 3665 | "4px 4px 12px rgba(0,0,0,0.4)" 3666 | ], 3667 | "border-bottom-color": [ 3668 | "#af301f", 3669 | "#e5e5e5", 3670 | "#fef9db", 3671 | "#fff", 3672 | "#ccc", 3673 | "rgba(0,0,0,.2)", 3674 | "#ccc", 3675 | "#f5f5f5", 3676 | "transparent", 3677 | "#e5e5e5", 3678 | "#ffffff", 3679 | "#4d90fe" 3680 | ], 3681 | "float": [ 3682 | "right", 3683 | "right", 3684 | "right", 3685 | "left", 3686 | "right", 3687 | "right", 3688 | "right", 3689 | "right", 3690 | "none", 3691 | "none", 3692 | "right", 3693 | "right" 3694 | ], 3695 | "-webkit-user-select": [ 3696 | "none", 3697 | "none", 3698 | "text", 3699 | "text", 3700 | "none", 3701 | "none", 3702 | "none", 3703 | "none" 3704 | ], 3705 | "font-family": [ 3706 | "arial,sans-serif", 3707 | "arial,sans-serif", 3708 | "Roboto,RobotoDraft,Helvetica,Arial,sans-serif" 3709 | ], 3710 | "font-weight": [ 3711 | "bold", 3712 | "bold", 3713 | "bold", 3714 | "bold", 3715 | "bold", 3716 | "bold", 3717 | "bold", 3718 | "bold", 3719 | "bold", 3720 | "bold", 3721 | "bold", 3722 | "bold", 3723 | "normal", 3724 | "500", 3725 | "normal", 3726 | "bold", 3727 | "bold", 3728 | "bold", 3729 | "bold", 3730 | "normal", 3731 | "500" 3732 | ], 3733 | "-webkit-transition": [ 3734 | "all 0.18s", 3735 | "height .2s ease-in-out", 3736 | "width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out" 3737 | ], 3738 | "padding-bottom": [ 3739 | "2px", 3740 | "0", 3741 | "35px", 3742 | "10px" 3743 | ], 3744 | "max-width": [ 3745 | "650px", 3746 | "484px", 3747 | "584px", 3748 | "600px", 3749 | "400px", 3750 | "572px", 3751 | "572px", 3752 | "784px", 3753 | "784px", 3754 | "none", 3755 | "none" 3756 | ], 3757 | "white-space": [ 3758 | "nowrap", 3759 | "nowrap", 3760 | "normal", 3761 | "normal", 3762 | "normal", 3763 | "nowrap", 3764 | "normal", 3765 | "nowrap", 3766 | "nowrap", 3767 | "nowrap", 3768 | "nowrap", 3769 | "nowrap", 3770 | "nowrap", 3771 | "nowrap", 3772 | "nowrap", 3773 | "nowrap", 3774 | "nowrap", 3775 | "nowrap", 3776 | "normal" 3777 | ], 3778 | "margin-right": [ 3779 | "1px", 3780 | "9px", 3781 | "60px", 3782 | "80px", 3783 | "20px", 3784 | "0", 3785 | "-127px", 3786 | "0", 3787 | "5px", 3788 | "4px", 3789 | "10px", 3790 | "10px", 3791 | "30px", 3792 | "0", 3793 | "60px", 3794 | "5px" 3795 | ], 3796 | "border-bottom": [ 3797 | "1px solid #666", 3798 | "1px solid #ebebeb" 3799 | ], 3800 | "border-color": [ 3801 | "#e5e5e5", 3802 | "rgba(0,0,0,.15)", 3803 | "#a9a9a9", 3804 | "rgba(0,0,0,.3)", 3805 | "#4285f4", 3806 | "rgba(255,255,255,1)", 3807 | "#c6c6c6", 3808 | "rgba(0,0,0,0.1)", 3809 | "#ccc", 3810 | "#3079ed", 3811 | "#2f5bb7", 3812 | "rgba(0,0,0,.2)", 3813 | "transparent", 3814 | "transparent", 3815 | "rgba(0,0,0,.2)", 3816 | "#ccc", 3817 | "#c9d7f1 #36c #36c #a2bae7", 3818 | "#3e7ef8", 3819 | "#2352a2", 3820 | "#f44", 3821 | "#fff", 3822 | "rgba(0,0,0,.15)", 3823 | "#a9a9a9", 3824 | "rgba(0,0,0,.3)", 3825 | "#4285f4", 3826 | "rgba(255,255,255,1)", 3827 | "#c6c6c6", 3828 | "rgba(0,0,0,0.1)", 3829 | "#ccc", 3830 | "#000", 3831 | "#3079ed", 3832 | "#2f5bb7", 3833 | "#fff" 3834 | ], 3835 | "min-height": [ 3836 | "11px", 3837 | "196px", 3838 | "100px", 3839 | "20px", 3840 | "100%" 3841 | ], 3842 | "opacity": [ 3843 | "0", 3844 | "1", 3845 | "0", 3846 | "1", 3847 | ".55", 3848 | ".85", 3849 | ".7", 3850 | ".85", 3851 | "1", 3852 | ".55", 3853 | "1", 3854 | ".75", 3855 | ".85", 3856 | ".75", 3857 | ".85", 3858 | "1", 3859 | "1", 3860 | ".4", 3861 | ".75", 3862 | ".85", 3863 | ".55", 3864 | ".7", 3865 | ".54", 3866 | ".55", 3867 | ".85", 3868 | "1", 3869 | ".7", 3870 | ".85", 3871 | ".27", 3872 | ".55", 3873 | "0.333", 3874 | "0.666", 3875 | "0.2", 3876 | "0", 3877 | "0", 3878 | "1", 3879 | "0", 3880 | "1", 3881 | ".6", 3882 | ".8", 3883 | "1", 3884 | "0", 3885 | "0.54", 3886 | ".1", 3887 | "1", 3888 | "0", 3889 | "0", 3890 | "0", 3891 | "1", 3892 | "1", 3893 | "0", 3894 | "1", 3895 | "0", 3896 | "1", 3897 | "0", 3898 | "1", 3899 | "1", 3900 | ".35", 3901 | "0.8", 3902 | "1", 3903 | "0.55", 3904 | "1.0", 3905 | "0", 3906 | "1", 3907 | "0", 3908 | "1", 3909 | ".55", 3910 | ".85", 3911 | ".7", 3912 | ".85", 3913 | "1", 3914 | ".85", 3915 | "1", 3916 | ".8", 3917 | "1" 3918 | ], 3919 | "right": [ 3920 | "0", 3921 | "0", 3922 | "0", 3923 | "0", 3924 | "1px", 3925 | "6.5px", 3926 | "0", 3927 | "0", 3928 | "100%", 3929 | "0", 3930 | "0", 3931 | "0", 3932 | "0", 3933 | "-70px", 3934 | "-31px", 3935 | "0", 3936 | "0", 3937 | "0", 3938 | "0", 3939 | "0", 3940 | "0", 3941 | "0", 3942 | "0", 3943 | "12px", 3944 | "14px", 3945 | "0", 3946 | "20px" 3947 | ], 3948 | "-webkit-box-sizing": [ 3949 | "border-box", 3950 | "border-box", 3951 | "border-box", 3952 | "border-box", 3953 | "border-box", 3954 | "border-box", 3955 | "border-box", 3956 | "border-box", 3957 | "border-box" 3958 | ], 3959 | "box-sizing": [ 3960 | "border-box", 3961 | "border-box", 3962 | "border-box", 3963 | "border-box", 3964 | "border-box", 3965 | "border-box", 3966 | "border-box", 3967 | "border-box", 3968 | "border-box" 3969 | ], 3970 | "filter": [ 3971 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)", 3972 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)", 3973 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)", 3974 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)", 3975 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)", 3976 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)", 3977 | "none", 3978 | "alpha(opacity=33.3)", 3979 | "alpha(opacity=66.6)", 3980 | "alpha(opacity=20.0)", 3981 | "alpha(opacity=0)", 3982 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)", 3983 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)", 3984 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)", 3985 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)", 3986 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#160000ff,endColorstr=#220000ff)", 3987 | "progid:DXImageTransform.Microsoft.gradient(startColorstr=#14000000,endColorstr=#22000000)" 3988 | ], 3989 | "background-position": [ 3990 | "-428px 0", 3991 | "-314px -38px", 3992 | "-463px 0", 3993 | "0 0", 3994 | "-279px -38px", 3995 | "-349px -38px", 3996 | "-393px 0", 3997 | "-194px -21px", 3998 | "-194px -46px", 3999 | "-70px 0", 4000 | "-219px 0", 4001 | "-194px -46px", 4002 | "-132px -38px", 4003 | "-132px -38px", 4004 | "-463px -35px", 4005 | "0 -690px", 4006 | "-244px 0", 4007 | "0 -35px", 4008 | "-296px 0", 4009 | "-97px 0", 4010 | "-498px -35px", 4011 | "-428px -35px", 4012 | "-498px 0", 4013 | "-219px -25px", 4014 | "-194px 0", 4015 | "-428px 0", 4016 | "-314px -38px", 4017 | "-463px 0", 4018 | "0 0", 4019 | "-279px -38px", 4020 | "-349px -38px", 4021 | "-393px 0", 4022 | "-194px -21px", 4023 | "-194px -46px", 4024 | "-70px 0", 4025 | "-219px 0", 4026 | "-194px -46px" 4027 | ], 4028 | "background-clip": [ 4029 | "padding-box", 4030 | "content-box", 4031 | "padding-box", 4032 | "padding-box" 4033 | ], 4034 | "border-right-width": [ 4035 | "0", 4036 | "1px", 4037 | "1px", 4038 | "0", 4039 | "1px" 4040 | ], 4041 | "text-decoration": [ 4042 | "none", 4043 | "none", 4044 | "none", 4045 | "none", 4046 | "underline", 4047 | "none", 4048 | "underline", 4049 | "none", 4050 | "underline", 4051 | "underline", 4052 | "none", 4053 | "none", 4054 | "underline", 4055 | "none", 4056 | "none", 4057 | "none", 4058 | "none", 4059 | "none", 4060 | "none", 4061 | "underline", 4062 | "underline", 4063 | "none", 4064 | "none", 4065 | "none", 4066 | "underline", 4067 | "underline", 4068 | "none", 4069 | "none", 4070 | "underline", 4071 | "none", 4072 | "none", 4073 | "underline", 4074 | "underline", 4075 | "none", 4076 | "none", 4077 | "none", 4078 | "none", 4079 | "none", 4080 | "underline" 4081 | ], 4082 | "-webkit-transform": [ 4083 | "scale(0,0)", 4084 | "scale(1.4,1.4)", 4085 | "scale(.8,.8)", 4086 | "scale(1.1,1.1)", 4087 | "scale(1.0,1.0)", 4088 | "scale(0,0)", 4089 | "scale(1.4,1.4)", 4090 | "scale(.8,.8)", 4091 | "scale(1.1,1.1)", 4092 | "scale(1.0,1.0)", 4093 | "scale(1,1)", 4094 | "scale(.5)", 4095 | "scale(.5)", 4096 | "translateZ(0)", 4097 | "scale(1)", 4098 | "scale(.01)", 4099 | "scale(.1)", 4100 | "scale(1)", 4101 | "scale(1)", 4102 | "scale(.53)", 4103 | "scale(0,0)", 4104 | "scale(1.4,1.4)", 4105 | "scale(.8,.8)", 4106 | "scale(1.1,1.1)", 4107 | "scale(1.0,1.0)", 4108 | "scale(0,0)", 4109 | "scale(1.4,1.4)", 4110 | "scale(.8,.8)", 4111 | "scale(1.1,1.1)", 4112 | "scale(1.0,1.0)", 4113 | "scale(1,1)", 4114 | "rotate(45deg)", 4115 | "rotate(45deg)", 4116 | "scale(.5)" 4117 | ], 4118 | "transform": [ 4119 | "scale(0,0)", 4120 | "scale(1.4,1.4)", 4121 | "scale(.8,.8)", 4122 | "scale(1.1,1.1)", 4123 | "scale(1.0,1.0)", 4124 | "scale(0,0)", 4125 | "scale(1.4,1.4)", 4126 | "scale(.8,.8)", 4127 | "scale(1.1,1.1)", 4128 | "scale(1.0,1.0)", 4129 | "scale(1,1)", 4130 | "scale(.5)", 4131 | "scale(.5)", 4132 | "scale(0,0)", 4133 | "scale(1.4,1.4)", 4134 | "scale(.8,.8)", 4135 | "scale(1.1,1.1)", 4136 | "scale(1.0,1.0)", 4137 | "scale(0,0)", 4138 | "scale(1.4,1.4)", 4139 | "scale(.8,.8)", 4140 | "scale(1.1,1.1)", 4141 | "scale(1.0,1.0)", 4142 | "scale(1,1)", 4143 | "rotate(45deg)", 4144 | "rotate(45deg)", 4145 | "scale(.5)" 4146 | ], 4147 | "text-shadow": [ 4148 | "0 1px 0 rgba(0,0,0,0.1)", 4149 | "0 1px 0 rgba(0,0,0,0.1)" 4150 | ], 4151 | "visibility": [ 4152 | "hidden", 4153 | "visible", 4154 | "hidden", 4155 | "visible", 4156 | "hidden", 4157 | "hidden", 4158 | "hidden", 4159 | "hidden", 4160 | "hidden", 4161 | "hidden", 4162 | "hidden", 4163 | "visible", 4164 | "hidden", 4165 | "visible", 4166 | "hidden", 4167 | "visible", 4168 | "hidden", 4169 | "visible", 4170 | "visible", 4171 | "hidden" 4172 | ], 4173 | "-webkit-animation": [ 4174 | "gb__nb .6s 1s both ease-in-out", 4175 | "gb__a .2s", 4176 | "gb__a .2s", 4177 | "gb__a .2s", 4178 | "allow-alert .75s 0 infinite", 4179 | "gb__nb .6s 1s both ease-in-out" 4180 | ], 4181 | "animation": [ 4182 | "gb__nb .6s 1s both ease-in-out", 4183 | "gb__a .2s", 4184 | "gb__a .2s", 4185 | "gb__a .2s", 4186 | "gb__nb .6s 1s both ease-in-out" 4187 | ], 4188 | "-webkit-perspective-origin": [ 4189 | "top right", 4190 | "top right" 4191 | ], 4192 | "perspective-origin": [ 4193 | "top right", 4194 | "top right" 4195 | ], 4196 | "-webkit-transform-origin": [ 4197 | "top right", 4198 | "left 0", 4199 | "left 0", 4200 | "top right", 4201 | "0 0" 4202 | ], 4203 | "transform-origin": [ 4204 | "top right", 4205 | "left 0", 4206 | "left 0", 4207 | "top right", 4208 | "0 0" 4209 | ], 4210 | "overflow-y": [ 4211 | "auto" 4212 | ], 4213 | "transition": [ 4214 | "height .2s ease-in-out", 4215 | "width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out", 4216 | "visibility 0s linear 0.218s,opacity 0.218s,background-color 0.218s", 4217 | "opacity .5s ease-in,left .5s ease-in", 4218 | "opacity .5s ease-out,left .5s ease-out", 4219 | "opacity .318s ease-in", 4220 | "opacity .318s ease-in", 4221 | "opacity 0s", 4222 | "background-color 0.218s,border 0.218s,box-shadow 0.218s", 4223 | "opacity 0.218s", 4224 | "-webkit-transform 0.218s,opacity 0.218s ease-in", 4225 | "opacity .1s ease-in,margin-left .5s ease-in,top 0s linear 0.218s", 4226 | "opacity .5s ease-out,margin-left .5s ease-out", 4227 | "top 0.218s ease-out", 4228 | "font-size 0.218s ease-out", 4229 | "opacity 0.218s ease-in,margin-top .4s ease-in", 4230 | "opacity .5s ease-out 0.218s,margin-top 0.218s ease-out 0.218s", 4231 | "opacity 0.218s,box-shadow 0.218s", 4232 | "opacity 0.218s,box-shadow 0.218s" 4233 | ], 4234 | "border-bottom-width": [ 4235 | "0" 4236 | ], 4237 | "-webkit-background-size": [ 4238 | "64px 2065px", 4239 | "64px 2065px", 4240 | "32px 32px", 4241 | "96px 96px", 4242 | "528px 68px" 4243 | ], 4244 | "background-size": [ 4245 | "64px 2065px", 4246 | "64px 2065px", 4247 | "32px 32px", 4248 | "96px 96px", 4249 | "528px 68px", 4250 | "94px 32px" 4251 | ], 4252 | "content": [ 4253 | "''", 4254 | "''", 4255 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 4256 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)", 4257 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 4258 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)", 4259 | "url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png')", 4260 | "url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')" 4261 | ], 4262 | "text-overflow": [ 4263 | "ellipsis", 4264 | "ellipsis", 4265 | "ellipsis" 4266 | ], 4267 | "border-top": [ 4268 | "4px solid #000", 4269 | "1px solid #ccc", 4270 | "1px solid #ccc", 4271 | "1px solid #ccc", 4272 | "0", 4273 | "1px solid #ccc", 4274 | "1px solid #e4e4e4", 4275 | "1px solid rgba(0,0,0,.2)", 4276 | "1px solid rgba(0,0,0,.2)" 4277 | ], 4278 | "border-left": [ 4279 | "4px dashed transparent", 4280 | "1px solid rgba(0,0,0,.2)", 4281 | "1px solid rgba(0,0,0,.2)" 4282 | ], 4283 | "-webkit-flex": [ 4284 | "0 1 auto", 4285 | "0 1 main-size", 4286 | "0 1 auto", 4287 | "0 1 main-size", 4288 | "0 1 auto", 4289 | "0 1 main-size", 4290 | "0 0 auto", 4291 | "0 0 main-size", 4292 | "1 1 auto", 4293 | "1 1 main-size", 4294 | "0 1 auto", 4295 | "0 1 main-size", 4296 | "0 0 auto", 4297 | "0 0 main-size", 4298 | "0 0 auto", 4299 | "0 0 auto" 4300 | ], 4301 | "flex": [ 4302 | "0 1 auto", 4303 | "0 1 main-size", 4304 | "0 1 auto", 4305 | "0 1 main-size", 4306 | "0 1 auto", 4307 | "0 1 main-size", 4308 | "0 0 auto", 4309 | "0 0 main-size", 4310 | "1 1 auto", 4311 | "1 1 main-size", 4312 | "0 1 auto", 4313 | "0 1 main-size", 4314 | "0 0 auto", 4315 | "0 0 main-size", 4316 | "0 0 auto" 4317 | ], 4318 | "bottom": [ 4319 | "0", 4320 | "0", 4321 | "0", 4322 | "1px", 4323 | "1px", 4324 | "0", 4325 | "0", 4326 | "14px", 4327 | "27px", 4328 | "0", 4329 | "30px" 4330 | ], 4331 | "max-height": [ 4332 | "230px", 4333 | "29px" 4334 | ], 4335 | "border-style": [ 4336 | "dashed dashed solid", 4337 | "dashed dashed solid" 4338 | ], 4339 | "border-width": [ 4340 | "0 8.5px 8.5px", 4341 | "0 8.5px 8.5px" 4342 | ], 4343 | "text-transform": [ 4344 | "uppercase", 4345 | "uppercase", 4346 | "uppercase" 4347 | ], 4348 | "background-repeat": [ 4349 | "no-repeat" 4350 | ], 4351 | "-webkit-order": [ 4352 | "1" 4353 | ], 4354 | "order": [ 4355 | "1" 4356 | ], 4357 | "-webkit-align-items": [ 4358 | "center" 4359 | ], 4360 | "align-items": [ 4361 | "center" 4362 | ], 4363 | "-webkit-justify-content": [ 4364 | "flex-end" 4365 | ], 4366 | "justify-content": [ 4367 | "flex-end" 4368 | ], 4369 | "background-origin": [ 4370 | "content-box" 4371 | ], 4372 | "-webkit-box-flex": [ 4373 | "0 0 auto" 4374 | ], 4375 | "border-collapse": [ 4376 | "collapse" 4377 | ], 4378 | "font-style": [ 4379 | "normal" 4380 | ], 4381 | "transition-delay": [ 4382 | "0s", 4383 | "0s", 4384 | "0", 4385 | "0", 4386 | "0" 4387 | ], 4388 | "pointer-events": [ 4389 | "none", 4390 | "none", 4391 | "none", 4392 | "none", 4393 | "none", 4394 | "none", 4395 | "auto", 4396 | "none", 4397 | "none", 4398 | "none", 4399 | "none", 4400 | "none", 4401 | "none", 4402 | "none", 4403 | "none", 4404 | "none", 4405 | "auto", 4406 | "none", 4407 | "none", 4408 | "none" 4409 | ], 4410 | "-webkit-font-smoothing": [ 4411 | "antialiased" 4412 | ], 4413 | "-webkit-animation-direction": [ 4414 | "alternate" 4415 | ], 4416 | "-webkit-animation-timing-function": [ 4417 | "ease-out" 4418 | ], 4419 | "-webkit-text-size-adjust": [ 4420 | "none" 4421 | ], 4422 | "-webkit-tap-highlight-color": [ 4423 | "rgba(0,0,0,0)" 4424 | ], 4425 | "clip": [ 4426 | "rect(25px 235px 41px 219px)", 4427 | "rect(-0 210px 16px 194px)", 4428 | "rect(50px 470px 82px 438px)", 4429 | "rect(-0 420px 32px 388px)" 4430 | ] 4431 | } 4432 | }, 4433 | "mediaQueries": { 4434 | "total": 9, 4435 | "unique": 4, 4436 | "values": [ 4437 | "only screen and (max-height:650px)", 4438 | "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4439 | "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4440 | "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4441 | "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4442 | "only screen and (min-width:1222px)", 4443 | "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4444 | "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4445 | "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)" 4446 | ], 4447 | "contents": [ 4448 | { 4449 | "value": "only screen and (max-height:650px)", 4450 | "rules": { 4451 | "total": 1, 4452 | "size": { 4453 | "graph": [ 4454 | 1 4455 | ], 4456 | "max": 1, 4457 | "average": 1 4458 | } 4459 | }, 4460 | "selectors": { 4461 | "total": 1, 4462 | "type": 1, 4463 | "class": 1, 4464 | "id": 0, 4465 | "pseudoClass": 0, 4466 | "pseudoElement": 0, 4467 | "values": [ 4468 | "span.lsbb" 4469 | ], 4470 | "specificity": { 4471 | "max": 11, 4472 | "average": 11 4473 | } 4474 | }, 4475 | "declarations": { 4476 | "total": 1, 4477 | "properties": { 4478 | "height": [ 4479 | "17px" 4480 | ] 4481 | } 4482 | } 4483 | }, 4484 | { 4485 | "value": "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4486 | "rules": { 4487 | "total": 2, 4488 | "size": { 4489 | "graph": [ 4490 | 4, 4491 | 4 4492 | ], 4493 | "max": 4, 4494 | "average": 4 4495 | } 4496 | }, 4497 | "selectors": { 4498 | "total": 2, 4499 | "type": 0, 4500 | "class": 2, 4501 | "id": 0, 4502 | "pseudoClass": 0, 4503 | "pseudoElement": 2, 4504 | "values": [ 4505 | ".gb_2a::before", 4506 | ".gb_mb::before" 4507 | ], 4508 | "specificity": { 4509 | "max": 11, 4510 | "average": 11 4511 | } 4512 | }, 4513 | "declarations": { 4514 | "total": 8, 4515 | "properties": { 4516 | "-webkit-transform": [ 4517 | "scale(.5)", 4518 | "scale(.5)" 4519 | ], 4520 | "transform": [ 4521 | "scale(.5)", 4522 | "scale(.5)" 4523 | ], 4524 | "-webkit-transform-origin": [ 4525 | "left 0", 4526 | "left 0" 4527 | ], 4528 | "transform-origin": [ 4529 | "left 0", 4530 | "left 0" 4531 | ] 4532 | } 4533 | } 4534 | }, 4535 | { 4536 | "value": "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4537 | "rules": { 4538 | "total": 1, 4539 | "size": { 4540 | "graph": [ 4541 | 1 4542 | ], 4543 | "max": 1, 4544 | "average": 1 4545 | } 4546 | }, 4547 | "selectors": { 4548 | "total": 1, 4549 | "type": 0, 4550 | "class": 1, 4551 | "id": 0, 4552 | "pseudoClass": 0, 4553 | "pseudoElement": 0, 4554 | "values": [ 4555 | ".gb_Qb" 4556 | ], 4557 | "specificity": { 4558 | "max": 10, 4559 | "average": 10 4560 | } 4561 | }, 4562 | "declarations": { 4563 | "total": 1, 4564 | "properties": { 4565 | "background-image": [ 4566 | "url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')" 4567 | ] 4568 | } 4569 | } 4570 | }, 4571 | { 4572 | "value": "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4573 | "rules": { 4574 | "total": 2, 4575 | "size": { 4576 | "graph": [ 4577 | 1, 4578 | 1 4579 | ], 4580 | "max": 1, 4581 | "average": 1 4582 | } 4583 | }, 4584 | "selectors": { 4585 | "total": 2, 4586 | "type": 0, 4587 | "class": 2, 4588 | "id": 0, 4589 | "pseudoClass": 0, 4590 | "pseudoElement": 2, 4591 | "values": [ 4592 | ".gbii::before", 4593 | ".gbip::before" 4594 | ], 4595 | "specificity": { 4596 | "max": 11, 4597 | "average": 11 4598 | } 4599 | }, 4600 | "declarations": { 4601 | "total": 2, 4602 | "properties": { 4603 | "content": [ 4604 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 4605 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)" 4606 | ] 4607 | } 4608 | } 4609 | }, 4610 | { 4611 | "value": "(min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4612 | "rules": { 4613 | "total": 2, 4614 | "size": { 4615 | "graph": [ 4616 | 1, 4617 | 1 4618 | ], 4619 | "max": 1, 4620 | "average": 1 4621 | } 4622 | }, 4623 | "selectors": { 4624 | "total": 2, 4625 | "type": 0, 4626 | "class": 2, 4627 | "id": 0, 4628 | "pseudoClass": 0, 4629 | "pseudoElement": 0, 4630 | "values": [ 4631 | ".gbii", 4632 | ".gbip" 4633 | ], 4634 | "specificity": { 4635 | "max": 10, 4636 | "average": 10 4637 | } 4638 | }, 4639 | "declarations": { 4640 | "total": 2, 4641 | "properties": { 4642 | "background-image": [ 4643 | "url(//ssl.gstatic.com/gb/images/silhouette_27.png)", 4644 | "url(//ssl.gstatic.com/gb/images/silhouette_96.png)" 4645 | ] 4646 | } 4647 | } 4648 | }, 4649 | { 4650 | "value": "only screen and (min-width:1222px)", 4651 | "rules": { 4652 | "total": 1, 4653 | "size": { 4654 | "graph": [ 4655 | 1 4656 | ], 4657 | "max": 1, 4658 | "average": 1 4659 | } 4660 | }, 4661 | "selectors": { 4662 | "total": 1, 4663 | "type": 0, 4664 | "class": 0, 4665 | "id": 1, 4666 | "pseudoClass": 0, 4667 | "pseudoElement": 0, 4668 | "values": [ 4669 | "#ftby" 4670 | ], 4671 | "specificity": { 4672 | "max": 100, 4673 | "average": 100 4674 | } 4675 | }, 4676 | "declarations": { 4677 | "total": 1, 4678 | "properties": { 4679 | "margin": [ 4680 | "0 44px" 4681 | ] 4682 | } 4683 | } 4684 | }, 4685 | { 4686 | "value": "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4687 | "rules": { 4688 | "total": 1, 4689 | "size": { 4690 | "graph": [ 4691 | 1 4692 | ], 4693 | "max": 1, 4694 | "average": 1 4695 | } 4696 | }, 4697 | "selectors": { 4698 | "total": 1, 4699 | "type": 0, 4700 | "class": 1, 4701 | "id": 0, 4702 | "pseudoClass": 0, 4703 | "pseudoElement": 0, 4704 | "values": [ 4705 | ".gb_oa .gb_3" 4706 | ], 4707 | "specificity": { 4708 | "max": 20, 4709 | "average": 20 4710 | } 4711 | }, 4712 | "declarations": { 4713 | "total": 1, 4714 | "properties": { 4715 | "background-image": [ 4716 | "url('//ssl.gstatic.com/gb/images/p2_3645acaa.png')" 4717 | ] 4718 | } 4719 | } 4720 | }, 4721 | { 4722 | "value": "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4723 | "rules": { 4724 | "total": 2, 4725 | "size": { 4726 | "graph": [ 4727 | 1, 4728 | 1 4729 | ], 4730 | "max": 1, 4731 | "average": 1 4732 | } 4733 | }, 4734 | "selectors": { 4735 | "total": 2, 4736 | "type": 0, 4737 | "class": 2, 4738 | "id": 0, 4739 | "pseudoClass": 0, 4740 | "pseudoElement": 2, 4741 | "values": [ 4742 | ".gb_N .gb_4e::before", 4743 | ".gb_N .gb_5e::before" 4744 | ], 4745 | "specificity": { 4746 | "max": 21, 4747 | "average": 21 4748 | } 4749 | }, 4750 | "declarations": { 4751 | "total": 2, 4752 | "properties": { 4753 | "clip": [ 4754 | "rect(50px 470px 82px 438px)", 4755 | "rect(-0 420px 32px 388px)" 4756 | ] 4757 | } 4758 | } 4759 | }, 4760 | { 4761 | "value": "(min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25)", 4762 | "rules": { 4763 | "total": 1, 4764 | "size": { 4765 | "graph": [ 4766 | 5 4767 | ], 4768 | "max": 5, 4769 | "average": 5 4770 | } 4771 | }, 4772 | "selectors": { 4773 | "total": 1, 4774 | "type": 0, 4775 | "class": 1, 4776 | "id": 0, 4777 | "pseudoClass": 0, 4778 | "pseudoElement": 1, 4779 | "values": [ 4780 | ".gb_N .gb_Qb::before" 4781 | ], 4782 | "specificity": { 4783 | "max": 21, 4784 | "average": 21 4785 | } 4786 | }, 4787 | "declarations": { 4788 | "total": 5, 4789 | "properties": { 4790 | "content": [ 4791 | "url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')" 4792 | ], 4793 | "-webkit-transform": [ 4794 | "scale(.5)" 4795 | ], 4796 | "transform": [ 4797 | "scale(.5)" 4798 | ], 4799 | "-webkit-transform-origin": [ 4800 | "0 0" 4801 | ], 4802 | "transform-origin": [ 4803 | "0 0" 4804 | ] 4805 | } 4806 | } 4807 | } 4808 | ] 4809 | } 4810 | } 4811 | -------------------------------------------------------------------------------- /fixture.css: -------------------------------------------------------------------------------- 1 | [dir='ltr'],[dir='rtl']{unicode-bidi:-webkit-isolate;unicode-bidi:isolate}bdo[dir='ltr'],bdo[dir='rtl']{unicode-bidi:bidi-override;unicode-bidi:-webkit-isolate-override;unicode-bidi:isolate-override}#logo{display:block;height:37px;overflow:hidden;position:relative;width:95px}#logo img{border:0;left:0;position:absolute;top:-41px}#logo span{background:url(/images/nav_logo242.png) no-repeat;cursor:pointer;overflow:hidden}#logocont{z-index:1;padding-left:13px;padding-right:10px;padding-top:6px}.big #logocont{padding-left:13px;padding-right:12px}.sbibod{background-color:#fff;border:1px solid #d9d9d9;border-top-color:none;height:38px;vertical-align:top;}.srp .sbibod{border-right:0}.lst{border:0;margin-top:5px;margin-bottom:0}.lst:focus{outline:none}.gsfi,.lst{font:16px arial,sans-serif;line-height:26px !important;height:26px !important;}#gs_st0{line-height:38px;padding:0 8px;margin-top:-1px;position:static}.gsfs{font:16px arial,sans-serif}.lsb{background:transparent;border:0;font-size:0;height:30px;outline:0;width:100%}.sbico{background:url(/images/nav_logo242.png) no-repeat -107px -55px;color:transparent;display:inline-block;height:24px;width:24px;margin:7px auto}#sblsbb{text-align:center;border-bottom-left-radius:0;border-top-left-radius:0;height:40px;margin:0;padding:0;width:40px;min-width:38px !important;background-color:#4285f4;background-image:none;border:none;}#sblsbb:hover{background-image:none;border:none;background-color:#3b78e7}#sblsbb:active{background-color:#3367d6}#sbds{border:0;margin-left:0}.hp .nojsb,.srp .jsb{display:none}.kpbb,.kprb,.kpgb,.kpgrb{-webkit-border-radius:2px;border-radius:2px;color:#fff}.kpbb:hover,.kprb:hover,.kpgb:hover,.kpgrb:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#fff}.kpbb:active,.kprb:active,.kpgb:active,.kpgrb:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.kpbb{background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed}.kpbb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7}a.kpbb:link,a.kpbb:visited{color:#fff}.kprb{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));background-color:#dd4b39;background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);border:1px solid #dd4b39}.kprb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));background-color:#c53727;background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);border:1px solid #b0281a;border-bottom-color:#af301f}.kprb:active{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));background-color:#b0281a;background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a)}.kpgb{background-image:-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#398a00));background-color:#3d9400;background-image:-webkit-linear-gradient(top,#3d9400,#398a00);background-image:linear-gradient(top,#3d9400,#398a00);border:1px solid #29691d}.kpgb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#368200));background-color:#368200;background-image:-webkit-linear-gradient(top,#3d9400,#368200);background-image:linear-gradient(top,#3d9400,#368200);border:1px solid #2d6200}.kpgrb{background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;color:#555}.kpgrb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #dcdcdc;color:#333}a.kpgrb:link,a.kpgrb:visited{color:#555}#sfopt{display:inline-block;float:right;line-height:normal}.lsd{font-size:11px;position:absolute;top:3px;left:16px}.sbsb_g{margin:3px 0 4px}.jhp input[type="submit"],.sbdd_a input,.gbqfba{background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);-webkit-border-radius:2px;-webkit-user-select:none;background-color:#f2f2f2;border:1px solid #f2f2f2;border-radius:2px;color:#757575;cursor:default;font-family:arial,sans-serif;font-size:13px;font-weight:bold;margin:11px 4px;min-width:54px;padding:0 16px;text-align:center}.gbqfba.gbqfba-hvr{font-size:13px}.jhp input[type="submit"],.gbqfba{height:36px;line-height:27px}.sbdd_a input{height:100%}.jhp input[type="submit"]:hover,.sbdd_a input:hover,.gbqfba:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#222}.jhp input[type="submit"]:focus,.sbdd_a input:focus{border:1px solid #4d90fe;outline:none}.sbdd_a input{margin:6px;}span.lsbb,.lsb input{-webkit-transition:all 0.18s}@media only screen and (max-height:650px){span.lsbb{height:17px}}.tsf{background:none}.tsf-p{position:relative;}.logocont{left:0;position:absolute;}.sfibbbc{padding-bottom:2px;padding-top:3px;width:638px}.sbtc{position:relative}.sbibtd{line-height:0;max-width:650px;overflow:visible;white-space:nowrap}.sbibps{padding:0px 9px 0;width:466px;}.big .sbibps{width:550px}.sfopt{height:28px;position:relative}#sform{height:34px}.hp .sfsbc{display:none}#searchform{width:100%}.hp #searchform{position:absolute;top:311px}.srp #searchform{position:absolute;top:15px}#sfdiv{max-width:484px}.hp .big #sfdiv{max-width:584px;margin:-1px 0px 1px}.srp #sfdiv{max-width:600px;overflow:hidden}.srp #tsf{position:relative;top:-8px}.hp .tsf-p{padding-top:8px}.sfsbc{display:inline-block;float:right;margin-right:1px;vertical-align:top;width:40px;margin-right:9px}.sfbg{background:#f1f1f1;height:69px;left:0;position:absolute;width:100%}.sfbgg{background-color:#f1f1f1;border-bottom:1px solid #666;border-color:#e5e5e5;height:69px}#pocs{background:#fff1a8;color:#000;font-size:10pt;margin:0;padding:5px 7px}#pocs.sft{background:transparent;color:#777}#pocs a{color:#11c}#pocs.sft a{color:#36c}#pocs>div{margin:0;padding:0}#cnt{padding-top:15px;}#subform_ctrl{min-height:11px}.gb_1a{display:none!important}@-webkit-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}#gbq2{display:block}#gbqf{display:block;margin:0;margin-right:60px;white-space:nowrap}.gbqff{border:none;display:inline-block;margin:0;padding:0;vertical-align:top;width:100%}.gbqfqw,#gbqfb,.gbqfwa{vertical-align:top}#gbqfaa,#gbqfab,#gbqfqwb{position:absolute}#gbqfaa{left:0}#gbqfab{right:0}.gbqfqwb,.gbqfqwc{right:0;left:0;height:100%}.gbqfqwb{padding:0 8px}#gbqfbw{display:inline-block;vertical-align:top}#gbqfb{border:1px solid transparent;border-bottom-left-radius:0;border-top-left-radius:0;height:30px;margin:0;outline:none;padding:0 0;width:60px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)}#gbqfb:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}#gbqfb:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}#gbqfb:hover:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}#gbqfb:active:active{border:1px solid transparent;-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)}.gbqfi{background-position:-428px 0;display:inline-block;margin:-1px;height:30px;width:30px}.gbqfqw{background:#fff;background-clip:padding-box;border:1px solid #cdcdcd;border-color:rgba(0,0,0,.15);border-right-width:0;height:30px;-webkit-box-sizing:border-box;box-sizing:border-box}#gbfwc .gbqfqw{border-right-width:1px}#gbqfqw{position:relative}.gbqfqw.gbqfqw:hover{border-color:#a9a9a9;border-color:rgba(0,0,0,.3)}.gbqfwa{display:inline-block;width:100%}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw.gbqfqw:active,.gbqfqw.gbqfqwf.gbqfqwf{border-color:#4285f4}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:20px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{color:#222;font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif!important;vertical-align:top}.gb_fa .gbqfqw.gbqfqw,.gb_X .gbqfqw.gbqfqw{border-color:rgba(255,255,255,1);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb,.gb_X #gbqfb{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb:hover,.gb_X #gbqfb:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb:active,.gb_X #gbqfb:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gbqfb,.gbqfba,.gbqfbb{cursor:default!important;display:inline-block;font-weight:bold;height:29px;line-height:29px;min-width:54px;padding:0 8px;text-align:center;text-decoration:none!important;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:none}.gbqfba:focus{border:1px solid #4d90fe;outline:none;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.gbqfba:hover{border-color:#c6c6c6;color:#222!important;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15);background:#f8f8f8;background:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background:linear-gradient(top,#f8f8f8,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:hover:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}.gbqfb::-moz-focus-inner{border:0}.gbqfba::-moz-focus-inner{border:0}.gbqfba{border:1px solid #dcdcdc;border-color:rgba(0,0,0,0.1);color:#444!important;font-size:11px;background:#f5f5f5;background:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background:linear-gradient(top,#f5f5f5,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}@-webkit-keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}@keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}.gb_fc{background-position:-314px -38px;opacity:.55;height:100%;width:100%}.gb_b:hover .gb_fc,.gb_b:focus .gb_fc{opacity:.85}.gb_gc .gb_fc{background-position:-463px 0}.gb_hc{background-color:#cb4437;-webkit-border-radius:8px;border-radius:8px;font:bold 11px Arial;color:#fff;line-height:16px;min-width:14px;padding:0 1px;position:absolute;right:0;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.1);top:0;visibility:hidden;z-index:990}.gb_ic .gb_hc,.gb_ic .gb_jc,.gb_ic .gb_jc.gb_kc{visibility:visible}.gb_jc{padding:0 2px;visibility:hidden}.gb_lc:not(.gb_mc) .gb_eb,.gb_lc:not(.gb_mc) .gb_db{left:3px}.gb_hc.gb_nc{-webkit-animation:gb__nb .6s 1s both ease-in-out;animation:gb__nb .6s 1s both ease-in-out;-webkit-perspective-origin:top right;perspective-origin:top right;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:top right;transform-origin:top right}.gb_nc .gb_jc{visibility:visible}.gb_fa .gb_b .gb_fc{background-position:0 0;opacity:.7}.gb_fa .gb_gc .gb_fc{background-position:-279px -38px}.gb_fa .gb_b:hover .gb_fc,.gb_fa .gb_b:focus .gb_fc{opacity:.85}.gb_X .gb_b .gb_fc{background-position:-349px -38px;opacity:1}.gb_X .gb_gc .gb_fc{background-position:-393px 0}.gb_fa .gb_hc,.gb_X .gb_hc{border:none}.gb_lc .gb_oc{font-size:14px;font-weight:bold;top:0;right:0}.gb_lc .gb_b{display:inline-block;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px}.gb_lc .gb_db{border-bottom-color:#e5e5e5}.gb_pc{background-color:rgba(0,0,0,.55);color:#fff;font-size:12px;font-weight:bold;line-height:20px;margin:5px;padding:0 2px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:50%;border-radius:50%;height:20px;width:20px}.gb_pc.gb_qc{background-position:-194px -21px}.gb_pc.gb_rc{background-position:-194px -46px}.gb_b:hover .gb_pc,.gb_b:focus .gb_pc{background-color:rgba(0,0,0,.85)}#gbsfw.gb_sc{background:#e5e5e5;border-color:#ccc}.gb_fa .gb_pc{background-color:rgba(0,0,0,.7)}.gb_X .gb_pc.gb_pc,.gb_X .gb_ic .gb_pc.gb_pc,.gb_X .gb_ic .gb_b:hover .gb_pc,.gb_X .gb_ic .gb_b:focus .gb_pc{background-color:#fff;color:#404040}.gb_X .gb_pc.gb_qc{background-position:-70px 0}.gb_X .gb_pc.gb_rc{background-position:-219px 0}.gb_ic .gb_pc.gb_pc{background-color:#db4437;color:#fff}.gb_ic .gb_b:hover .gb_pc,.gb_ic .gb_b:focus .gb_pc{background-color:#a52714}.gb_ic .gb_pc.gb_rc{background-position:-194px -46px}.gb_N .gbqfi::before{left:-428px;top:0}.gb_xb .gbqfb:focus .gbqfi{outline:1px dotted #fff}#gbsfw{min-width:400px;overflow:visible}.gb_Ib,#gbsfw.gb_g{display:block;outline:none}#gbsfw.gb_qa iframe{display:none}.gb_Jb{padding:118px 0;text-align:center}.gb_Kb{background:no-repeat center 0;color:#aaa;font-size:13px;line-height:20px;padding-top:76px;background-image:-webkit-image-set(url('//ssl.gstatic.com/gb/images/a/f5cdd88b65.png') 1x,url('//ssl.gstatic.com/gb/images/a/133fc21e88.png') 2x)}.gb_Kb a{color:#4285f4;text-decoration:none}.gb_ea .gb_b{background-position:-132px -38px;opacity:.55}.gb_fa .gb_ea .gb_b{background-position:-132px -38px}.gb_X .gb_ea .gb_b{background-position:-463px -35px;opacity:1}.gb_ga.gb_ha{min-height:196px;overflow-y:auto;width:320px}.gb_ia{-webkit-transition:height .2s ease-in-out;transition:height .2s ease-in-out}.gb_ja{background:#fff;margin:0;min-height:100px;padding:28px;padding-right:27px;text-align:left;white-space:normal;width:265px}.gb_ka{background:#f5f5f5;cursor:pointer;height:40px;overflow:hidden}.gb_la{position:relative}.gb_ka{display:block;line-height:40px;text-align:center;width:320px}.gb_la{display:block;line-height:40px;text-align:center}.gb_la.gb_ma{line-height:0}.gb_ka,.gb_ka:visited,.gb_ka:active,.gb_la,.gb_la:visited{color:#737373;text-decoration:none}.gb_la:active{color:#737373}#gb a.gb_ka,#gb a.gb_ka:visited,#gb a.gb_ka:active,#gb a.gb_la,#gb a.gb_la:visited{color:#737373;text-decoration:none}#gb a.gb_la:active{color:#737373}.gb_la,.gb_ja{display:none}.gb_ca,.gb_ca+.gb_la,.gb_na .gb_la,.gb_na .gb_ja{display:block}.gb_la:hover,.gb_la:active,#gb a.gb_la:hover,#gb a.gb_la:active{text-decoration:underline}.gb_la{border-bottom:1px solid #ebebeb;left:28px;width:264px}.gb_na .gb_ka{display:none}.gb_la:last-child{border-bottom-width:0}.gb_oa .gb_O{display:initial}.gb_oa.gb_pa{height:100px;text-align:center}.gb_oa.gb_pa img{padding:34px 0;height:32px;width:32px}.gb_oa .gb_3{background-image:url('//ssl.gstatic.com/gb/images/p1_a4541be8.png');-webkit-background-size:64px 2065px;background-size:64px 2065px;background-position:0 -690px}.gb_oa .gb_3+img{border:0;margin:8px;height:48px;width:48px}.gb_oa div.gb_qa{background:#ffa;-webkit-border-radius:5px;border-radius:5px;padding:5px;text-align:center}.gb_oa.gb_ra,.gb_oa.gb_sa{padding-bottom:0}.gb_oa.gb_ta,.gb_oa.gb_sa{padding-top:0}.gb_oa.gb_sa a,.gb_oa.gb_ta a{top:0}.gb_ua .gb_ka{margin-top:0;position:static}.gb_va{display:inline-block}.gb_wa{margin:-12px 28px 28px;position:relative;width:264px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1)}.gb_5{background-image:url('//ssl.gstatic.com/gb/images/p1_a4541be8.png');-webkit-background-size:64px 2065px;background-size:64px 2065px;display:inline-block;margin:8px;vertical-align:middle;height:64px;width:64px}.gb_xa{color:#262626;display:inline-block;font:13px/18px Arial,sans-serif;margin-right:80px;padding:10px 10px 10px 0;vertical-align:middle;white-space:normal}.gb_ya{font:16px/24px Arial,sans-serif}.gb_za,#gb#gb .gb_za{color:#427fed;text-decoration:none}.gb_za:hover,#gb#gb .gb_za:hover{text-decoration:underline}.gb_Aa .gb_ja{position:relative}.gb_Aa .gb_O{position:absolute;top:28px;left:28px}.gb_ka.gb_Ba{display:none;height:0}.gb_2a{-webkit-background-size:32px 32px;background-size:32px 32px;-webkit-border-radius:50%;border-radius:50%;display:block;margin:-1px;overflow:hidden;position:relative;height:32px;width:32px;z-index:0}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_2a::before{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_mb::before{-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}}.gb_2a:hover,.gb_2a:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_2a:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15)}.gb_2a:active::after{background:rgba(0,0,0,.1);-webkit-border-radius:50%;border-radius:50%;content:'';display:block;height:100%}.gb_3a{cursor:pointer;line-height:30px;min-width:30px;opacity:.75;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}.gb_b.gb_3a{width:auto}.gb_3a:hover,.gb_3a:focus{opacity:.85}.gb_4a .gb_3a,.gb_4a .gb_5a{line-height:26px}#gb#gb.gb_4a a.gb_3a,.gb_4a .gb_5a{font-size:11px;height:auto}.gb_6a{border-top:4px solid #000;border-left:4px dashed transparent;border-right:4px dashed transparent;display:inline-block;margin-left:6px;opacity:.75;vertical-align:middle}.gb_7a:hover .gb_6a{opacity:.85}.gb_X .gb_3a,.gb_X .gb_6a{opacity:1}#gb#gb.gb_X.gb_X a.gb_3a,#gb#gb .gb_X.gb_X a.gb_3a{color:#fff}.gb_X.gb_X .gb_6a{border-top-color:#fff;opacity:1}.gb_fa .gb_2a:hover,.gb_X .gb_2a:hover,.gb_fa .gb_2a:focus,.gb_X .gb_2a:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_8a .gb_9a,.gb_ab .gb_9a{position:absolute;right:1px}.gb_9a.gb_R,.gb_bb.gb_R,.gb_7a.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_cb.gb_W .gb_3a{width:30px!important}.gb_3a~.gb_db,.gb_3a~.gb_eb{left:auto;right:6.5px}.gb_fb{outline:none}.gb_gb,#gb a.gb_gb.gb_gb,.gb_hb a,#gb .gb_hb.gb_hb a{color:#36c;text-decoration:none}.gb_gb:active,#gb a.gb_gb:active,.gb_gb:hover,#gb a.gb_gb:hover,.gb_hb a:active,#gb .gb_hb a:active,.gb_hb a:hover,#gb .gb_hb a:hover{text-decoration:underline}.gb_ib{margin:20px}.gb_jb,.gb_kb{display:inline-block;vertical-align:top}.gb_jb{margin-right:20px;position:relative}.gb_lb{-webkit-border-radius:50%;border-radius:50%;overflow:hidden;-webkit-transform:translateZ(0)}.gb_mb{-webkit-background-size:96px 96px;background-size:96px 96px;border:none;vertical-align:top;height:96px;width:96px}.gb_nb{background:rgba(78,144,254,.7);bottom:0;color:#fff;font-size:9px;font-weight:bold;left:0;line-height:9px;position:absolute;padding:7px 0;text-align:center;width:96px}.gb_lb .gb_nb{background:rgba(0,0,0,.54)}.gb_ob{font-weight:bold;margin:-4px 0 1px 0}.gb_pb{color:#666}.gb_hb{color:#ccc;margin:6px 0}.gb_hb a{margin:0 10px}.gb_hb a:first-child{margin-left:0}.gb_hb a:last-child{margin-right:0}.gb_kb .gb_qb{background:#4d90fe;border-color:#3079ed;font-weight:bold;margin:10px 0 0 0;color:#fff}#gb .gb_kb a.gb_qb.gb_qb{color:#fff}.gb_kb .gb_qb:hover{background:#357ae8;border-color:#2f5bb7}.gb_rb{background:#f5f5f5;border-top:1px solid #ccc;border-color:rgba(0,0,0,.2);padding:10px 0;width:100%;display:table}.gb_rb .gb_qb{margin:0 20px}.gb_rb>div{display:table-cell;text-align:right}.gb_rb>div:first-child{text-align:left}.gb_rb .gb_sb{display:block;text-align:center}.gb_tb .gb_db{border-bottom-color:#fef9db}.gb_ub{background:#fef9db;font-size:11px;padding:10px 20px;white-space:normal}.gb_ub b,.gb_gb{white-space:nowrap}.gb_vb{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);max-height:230px;overflow:auto}.gb_wb{border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px}.gb_xb .gb_wb:focus .gb_yb{outline:1px dotted #fff}.gb_wb:hover{background:#eee}.gb_wb:first-child,.gb_zb:first-child+.gb_wb{border-top:0}.gb_zb{display:none}.gb_Ab{cursor:default}.gb_Ab:hover{background:transparent}.gb_Bb{border:none;vertical-align:top;height:48px;width:48px}.gb_yb{display:inline-block;margin:6px 0 0 10px}.gb_Ab .gb_Bb,.gb_Ab .gb_yb{opacity:.4}.gb_Cb{color:#000}.gb_Ab .gb_Cb{color:#666}.gb_Db{color:#666}.gb_Eb{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px}.gb_Fb{background-position:-244px 0;display:inline-block;margin:1px 0;vertical-align:middle;height:25px;width:25px}.gb_N .gb_Fb::before{left:-244px;top:0}.gb_Hb{color:#427fed;display:inline-block;padding:0 25px 0 10px;vertical-align:middle;white-space:normal}.gb_Eb:hover .gb_Hb{text-decoration:underline}#gb#gb a.gb_O{color:#404040;text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{color:#000}.gb_P{opacity:.75}#gb#gb a.gb_P:hover,#gb#gb a.gb_P:focus{opacity:.85;text-decoration:underline}.gb_Q.gb_R{display:none;padding-left:15px;vertical-align:middle}.gb_Q.gb_R:first-child{padding-left:0}.gb_S.gb_R{display:inline-block}.gb_Q span{opacity:.55;-webkit-user-select:text}.gb_T .gb_S.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size;display:-webkit-flex;display:flex}.gb_U .gb_S.gb_R{display:none}.gb_Q .gb_P{display:inline-block;line-height:24px;outline:none;vertical-align:middle}.gb_S .gb_P{min-width:60px;overflow:hidden;-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size;text-overflow:ellipsis}.gb_V .gb_S .gb_P{min-width:0}.gb_W .gb_S .gb_P{width:0!important}#gb#gb.gb_X a.gb_P,#gb#gb.gb_X span.gb_P,#gb#gb .gb_X a.gb_P,#gb#gb .gb_X span.gb_P{color:#fff}#gb#gb.gb_X span.gb_P,#gb#gb .gb_X span.gb_P{opacity:.7}.gb_xc{display:inline-block;padding:0 0 0 15px;vertical-align:middle}.gb_xc:first-child,#gbsfw:first-child+.gb_xc{padding-left:0}.gb_oc{position:relative}.gb_b{display:inline-block;outline:none;vertical-align:middle;-webkit-border-radius:2px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px;color:#000;cursor:default;text-decoration:none}#gb#gb a.gb_b{color:#000;cursor:default;text-decoration:none}.gb_db{border-color:transparent;border-bottom-color:#fff;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:6.5px;top:37px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s}.gb_eb{border-color:transparent;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:6.5px;z-index:1;height:0;width:0;-webkit-animation:gb__a .2s;animation:gb__a .2s;border-bottom-color:#ccc;border-bottom-color:rgba(0,0,0,.2);top:36px}x:-o-prefocus,div.gb_eb{border-bottom-color:#ccc}.gb_ga{background:#fff;border:1px solid #ccc;border-color:rgba(0,0,0,.2);color:#000;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2);display:none;outline:none;overflow:hidden;position:absolute;right:0;top:44px;-webkit-animation:gb__a .2s;animation:gb__a .2s;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:text}.gb_xc.gb_g .gb_db,.gb_xc.gb_g .gb_eb,.gb_xc.gb_g .gb_ga,.gb_g.gb_ga{display:block}.gb_xc.gb_g.gb_9d .gb_db,.gb_xc.gb_g.gb_9d .gb_eb{display:none}.gb_ae{position:absolute;right:0;top:44px;z-index:-1}.gb_4a .gb_db,.gb_4a .gb_eb,.gb_4a .gb_ga{margin-top:-10px}a.gb_Ca{border:none;color:#4285f4;cursor:default;font-weight:bold;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap;-webkit-user-select:none}.gb_Ca:hover{background-color:rgba(153,153,153,.2)}.gb_Ca:active{background-color:rgba(153,153,153,.4)}.gb_Da{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.16);box-shadow:0 1px 1px rgba(0,0,0,.16)}.gb_Ca,.gb_Ea,.gb_Fa{display:inline-block;line-height:28px;padding:0 12px;-webkit-border-radius:2px;border-radius:2px}.gb_Ea{background:#f8f8f8;border:1px solid #c6c6c6}.gb_Fa{background:#f8f8f8}.gb_Ea,#gb a.gb_Ea.gb_Ea,.gb_Fa{color:#666;cursor:default;text-decoration:none}#gb a.gb_Fa.gb_Fa{cursor:default;text-decoration:none}.gb_Fa{border:1px solid #4285f4;font-weight:bold;outline:none;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)}#gb a.gb_Fa.gb_Fa{color:#fff}.gb_Fa:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_Fa:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)}.gb_Lb{min-width:127px;overflow:hidden;position:relative;z-index:987}.gb_Mb{position:absolute;padding:0 20px 0 15px}.gb_Nb .gb_Mb{right:100%;margin-right:-127px}.gb_Ob{display:inline-block;outline:none;vertical-align:middle}.gb_Pb .gb_Ob{position:relative;top:2px}.gb_Ob .gb_Qb,.gb_Rb{display:block}.gb_Sb{border:none;display:block;visibility:hidden}.gb_Ob .gb_Qb{background-position:0 -35px;height:33px;width:92px}.gb_Rb{background-repeat:no-repeat}.gb_X .gb_Ob .gb_Qb{background-position:-296px 0}.gb_fa .gb_Ob .gb_Qb{background-position:-97px 0;opacity:.54}.gb_be{display:inline-block;line-height:normal;position:relative;z-index:987}.gb_ge .gb_b{background-position:-498px -35px;opacity:.55;height:30px;width:30px}.gb_ge .gb_b:hover,.gb_ge .gb_b:focus{opacity:.85}.gb_ge .gb_db{border-bottom-color:#f5f5f5}#gbsfw.gb_he{background:#f5f5f5;border-color:#ccc}.gb_X .gb_ge .gb_b{background-position:-428px -35px;opacity:1}.gb_fa .gb_ge .gb_b{background-position:-498px 0;opacity:.7}.gb_fa .gb_ge .gb_b:hover,.gb_fa .gb_ge .gb_b:focus{opacity:.85}.gb_9e{color:#000;font:13px/27px Arial,sans-serif;left:0;min-width:1152px;position:absolute;top:0;-webkit-user-select:none;width:100%}.gb_je{font:13px/27px Arial,sans-serif;position:relative;height:60px;width:100%}.gb_4a .gb_je{height:28px}#gba{height:60px}#gba.gb_4a{height:28px}#gba.gb_1c{height:90px}#gba.gb_1c.gb_4a{height:58px}.gb_je>.gb_R{height:60px;line-height:58px;vertical-align:middle}.gb_4a .gb_je>.gb_R{height:28px;line-height:26px}.gb_je::before{background:#e5e5e5;bottom:0;content:'';display:none;height:1px;left:0;position:absolute;right:0}.gb_je{background:#f1f1f1}.gb_af .gb_je{background:#fff}.gb_af .gb_je::before,.gb_4a .gb_je::before{display:none}.gb_fa .gb_je,.gb_X .gb_je,.gb_4a .gb_je{background:transparent}.gb_fa .gb_je::before{background:#e1e1e1;background:rgba(0,0,0,.12)}.gb_X .gb_je::before{background:#333;background:rgba(255,255,255,.2)}.gb_R{display:inline-block;-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-flex:0 0 main-size;flex:0 0 main-size}.gb_R.gb_bf{float:right;-webkit-order:1;order:1}.gb_cf{white-space:nowrap}.gb_T .gb_cf{display:-webkit-flex;display:flex}.gb_cf,.gb_R{margin-left:0!important;margin-right:0!important}.gb_Qb{background-image:url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png');-webkit-background-size:528px 68px;background-size:528px 68px}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_Qb{background-image:url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')}}.gb_cb{min-width:315px;padding-left:30px;padding-right:30px;position:relative;text-align:right;z-index:986;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-user-select:none}.gb_4a .gb_cb{min-width:0}.gb_cb.gb_R{-webkit-flex:1 1 auto;flex:1 1 auto;-webkit-flex:1 1 main-size;flex:1 1 main-size}.gb_dc{line-height:normal;position:relative;text-align:left}.gb_dc.gb_R,.gb_Ze.gb_R,.gb_5a.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_0e,.gb_1e{display:inline-block;padding:0 0 0 15px;position:relative;vertical-align:middle}.gb_Ze{line-height:normal;padding-right:15px}.gb_cb .gb_Ze.gb_U{padding-right:0}.gb_5a{color:#404040;line-height:30px;min-width:30px;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}#gb.gb_4a.gb_4a .gb_ue,#gb.gb_4a.gb_4a .gb_dc>.gb_1e .gb_ve{background:none;border:none;color:#36c;cursor:pointer;filter:none;font-size:11px;line-height:26px;padding:0;-webkit-box-shadow:none;box-shadow:none}#gb.gb_4a.gb_X .gb_ue,#gb.gb_4a.gb_X .gb_dc>.gb_1e .gb_ve{color:#fff}.gb_4a .gb_ue{text-transform:uppercase}.gb_cb.gb_V{padding-left:0;padding-right:29px}.gb_cb.gb_2e{max-width:400px}.gb_3e{background-clip:content-box;background-origin:content-box;opacity:.27;padding:22px;height:16px;width:16px}.gb_3e.gb_R{display:none}.gb_3e:hover,.gb_3e:focus{opacity:.55}.gb_4e{background-position:-219px -25px}.gb_5e{background-position:-194px 0;padding-left:30px;padding-right:14px;position:absolute;right:0;top:0;z-index:990}.gb_8a:not(.gb_ab) .gb_5e,.gb_V .gb_4e{display:inline-block}.gb_8a .gb_4e{padding-left:30px;padding-right:0;width:0}.gb_8a:not(.gb_ab) .gb_6e{display:none}.gb_cb.gb_R.gb_V,.gb_V:not(.gb_ab) .gb_dc{-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-flex:0 0 main-size;flex:0 0 main-size}.gb_3e,.gb_V .gb_Ze,.gb_ab .gb_dc{overflow:hidden}.gb_8a .gb_Ze{padding-right:0}.gb_V .gb_dc{padding:1px 1px 1px 0}.gb_8a .gb_dc{width:75px}.gb_cb.gb_7e,.gb_cb.gb_7e .gb_4e,.gb_cb.gb_7e .gb_4e::before,.gb_cb.gb_7e .gb_Ze,.gb_cb.gb_7e .gb_dc{-webkit-transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out;transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out}.gb_T .gb_cb{min-width:0}.gb_cb.gb_W,.gb_cb.gb_W .gb_dc,.gb_cb.gb_8e,.gb_cb.gb_8e .gb_dc{min-width:0!important}.gb_cb.gb_W,.gb_cb.gb_W .gb_R{-webkit-flex:0 0 auto!important;-webkit-box-flex:0 0 auto!important;-webkit-flex:0 0 auto!important;flex:0 0 auto!important}.gb_cb.gb_W .gb_5a{width:30px!important}.gb_je ::-webkit-scrollbar{height:15px;width:15px}.gb_je ::-webkit-scrollbar-button{height:0;width:0}.gb_je ::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:rgba(0,0,0,.3);border:5px solid transparent;-webkit-border-radius:10px;border-radius:10px;min-height:20px;min-width:20px;height:5px;width:5px}.gb_je ::-webkit-scrollbar-thumb:hover,.gb_je ::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.4)}#gb.gb_ff{min-width:980px}#gb.gb_ff .gb_fe{min-width:0;position:static;width:0}.gb_ff .gb_je{background:transparent;border-bottom-color:transparent}.gb_ff .gb_je::before{display:none}.gb_ff.gb_ff .gb_Q{display:inline-block}.gb_ff.gb_cb .gb_Ze.gb_U{padding-right:15px}.gb_T.gb_ff .gb_S.gb_R{display:-webkit-flex;display:flex}.gb_ff.gb_T #gbqf{display:block}.gb_ff #gbq{height:0;position:absolute}.gb_ff.gb_cb{z-index:987}sentinel{}#gbq .gbgt-hvr,#gbq .gbgt:focus{background-color:transparent;background-image:none}.gbqfh#gbq1{display:none}.gbxx{display:none !important}#gbq{line-height:normal;position:relative;top:0px;white-space:nowrap}#gbq{left:0;width:100%}#gbq2{top:0px;z-index:986}#gbq4{display:inline-block;max-height:29px;overflow:hidden;position:relative}.gbqfh#gbq2{z-index:985}.gbqfh#gbq2{margin:0;margin-left:0 !important;padding-top:0;position:relative;top:310px}.gbqfh #gbqf{margin:auto;min-width:534px;padding:0 !important}.gbqfh #gbqfbw{display:none}.gbqfh #gbqfbwa{display:block}.gbqfh #gbqf{max-width:572px;min-width:572px}.gbqfh .gbqfqw{border-right-width:1px} 2 | .gbii::before{content:url(//ssl.gstatic.com/gb/images/silhouette_27.png);position:absolute}.gbip::before{content:url(//ssl.gstatic.com/gb/images/silhouette_96.png);position:absolute}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii::before{content:url(//ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip::before{content:url(//ssl.gstatic.com/gb/images/silhouette_96.png)}} 3 | .gbii{background-image:url(//ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip{background-image:url(//ssl.gstatic.com/gb/images/silhouette_96.png)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii{background-image:url(//ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip{background-image:url(//ssl.gstatic.com/gb/images/silhouette_96.png)}} 4 | html,body{height:100%;margin:0}#viewport{min-height:100%;position:relative;width:100%}.content{padding-bottom:35px}#footer{bottom:0;font-size:10pt;height:35px;position:absolute;width:100%}#gog{padding:3px 8px 0}.gac_m td{line-height:17px}body,td,a,p,.h{font-family:arial,sans-serif}.h{color:#1a0dab;font-size:20px}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.ds{display:inline-block;}span.ds{margin:3px 0 4px;margin-left:4px}.ctr-p{margin:0 auto;min-width:980px}a.gb1,a.gb2,a.gb3,a.gb4{color:#11c !important}body{background:#fff;color:#222}a{color:#1a0dab;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#1a0dab}a:visited{color:#609}a.gb1,a.gb4{text-decoration:underline}a.gb3:hover{text-decoration:none}#ghead a.gb2:hover{color:#fff !important}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px}.lsbb{height:30px;display:block}.ftl,#footer a{color:#666;margin:2px 10px 0}#footer a:active{color:#dd4b39}.lsb{border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;vertical-align:top}.lst:focus{outline:none}body,html{font-size:small}h1,ol,ul,li{margin:0;padding:0}.nojsv{visibility:hidden}.hp #logocont.nojsv{display:none}#body,#footer{display:block}.igehp{display:none}#flci{float:left;margin-left:0;text-align:left;width:0}#fll{float:right;text-align:right;width:100%}#ftby{padding-left:0}#ftby>div,#fll>div,#footer a{display:inline-block}@media only screen and (min-width:1222px){#ftby{margin:0 44px}}.logo-subtext{color:#4285f4;font:16px/16px roboto-regular, arial, sans-serif;left:215px;position:relative;top:76px;white-space:nowrap}#ss-box{background:#fff;border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;left:0;margin-top:.1em;position:absolute;visibility:hidden;z-index:103}#ss-box a{display:block;padding:.2em .31em;text-decoration:none}#ss-box a:hover{background:#4d90fe;color:#fff !important}a.ss-selected{color:#222 !important;font-weight:bold}a.ss-unselected{color:#1a0dab !important}.ss-selected .mark{display:inline}.ss-unselected .mark{visibility:hidden}#ss-barframe{background:#fff;left:0;position:absolute;visibility:hidden;z-index:100}.gl{white-space:nowrap}.big .tsf-p{padding-left:126px;padding-right:352px}.hp .tsf-p{padding-left:173px;padding-right:173px}.hp #tsf{margin:0 auto;width:833px}#tsf{width:833px}.big #tsf,.hp .big #tsf{width:1139px}.tsf-p{padding-left:126px;padding-right:46px}.hp .big .tsf-p{padding-left:284px;padding-right:284px}#fkbx-tchm{}.fkbx-chm{}.fkbx-chme{}#fkbx-chmer{}#fkbx-chmed{}.fkbx-chmt{}#fkbx-chmtr{}.chw-oc{}#chw-o{}#fkbx-tchm{display:none}.fkbx-chm{line-height:22px;text-align:center}.fkbx-chm a{color:#1a0dab;cursor:pointer;margin:5px}._gSc{background:url(data:image/gif;base64,R0lGODlhEAAQAKIHAPzu7PfT0Oh5cfGtqONbUuBLQeBKP////yH5BAEAAAcALAAAAAAQABAAAANKeLrcfkAI8NowZtQFCCbUJmCYsAWFAQBGEVSjyhqmc2HBnDUdGQQkEOOGA5I0CkCKxMQUQjEnAMU0GUkuZTPgaRaWTEK0Sa5tGgkAOw==) no-repeat center;display:inline-block;height:16px;width:16px}#chw-o{display:none}#chw-o a{color:#4285F4;line-height:31px}.chw-oc{font-size:13px;padding:20px !important;text-align:left;width:400px}._mSc{color:#000;font-size:16px;font-weight:bold}._kSc{color:#555}._dKb{border-radius:2px;cursor:pointer;font-size:12px;line-height:27px;margin:0;padding-left:14px;padding-right:14px}#chw-o ._dKb{float:right;margin-left:10px}._k3{background-color:#f9f9f9;border:1px solid #bdbdbd;color:#000}._k3:hover{background-color:#fcfcfc}._k3:active,._k3:hover,._k3:focus{border-color:#3e7ef8}._k3:active{background-color:#e6e6e6}._WW{background-color:#5a97ff;border:1px solid #2558b0;color:#fff}._WW:hover{background-color:#629cff}._WW:hover,._WW:focus{box-shadow:inset 0 0 1px}._WW:active,._qyd:focus,._WW:hover{border-color:#2352a2}._WW:active{background-color:#4279d8}.fade #center_col,.fade #rhs,.fade #leftnav,.fade #brs,.fade #footcnt{filter:alpha(opacity=33.3);opacity:0.333}.fade-hidden #center_col,.fade-hidden #rhs,.fade-hidden #leftnav{visibility:hidden}.flyr-o,.flyr-w{position:absolute;background-color:#fff;z-index:3;display:block;}.flyr-o{filter:alpha(opacity=66.6);opacity:0.666}.flyr-w{filter:alpha(opacity=20.0);opacity:0.2}.flyr-h{filter:alpha(opacity=0);opacity:0}.flyr-c{display:none}.flt,.flt u,a.fl{text-decoration:none}.flt:hover,.flt:hover u,a.fl:hover{text-decoration:underline}#knavm{color:#4273db;display:inline;font:11px arial,sans-serif !important;left:-13px;position:absolute;top:2px;z-index:2}#pnprev #knavm{bottom:1px;top:auto}#pnnext #knavm{bottom:1px;left:40px;top:auto}a.noline{outline:0}.y.yp{display:none}.y.yf,.y.ys{display:block}.yi{}.s2er{}.s2fp{}.s2fp-h{}.s2ml{}.s2ra{}.s2tb{}.s2tb-h{}.spch{}.spchc{}.spch{background:#fff;height:100%;left:0;opacity:0;overflow:hidden;position:fixed;text-align:left;top:0;visibility:hidden;width:100%;z-index:10000;transition:visibility 0s linear 0.218s,opacity 0.218s,background-color 0.218s}.s2fp.spch{opacity:1;visibility:visible;transition-delay:0s}.s2tb-h.spch{background:rgba(255,255,255,0);opacity:0;visibility:hidden}.s2tb.spch{background:rgba(255,255,255,0);opacity:1;visibility:visible;transition-delay:0s}.close-button{color:#777;cursor:pointer;font-size:26px;right:0;height:11px;line-height:15px;margin:15px;opacity:.6;padding:0;position:absolute;top:0;width:15px}.close-button:hover{opacity:.8}.close-button:active{opacity:1}.google-logo{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAABACAQAAAAKENVCAAAI/ElEQVR4Ae3ae3BU5RnH8e/ZTbIhhIRbRIJyCZcEk4ZyE4RBAiRBxRahEZBLQYUZAjIgoLUWB6wjKIK2MtAqOLVUKSqWQW0ZaOQq0IFAIZVrgFQhXAOShITEbHY7407mnPfc8u6ya2f0fN6/9rzvc87Z39nbed/l/8OhIKMDQ+hHKp1JJB6FKq5QQhH72MZ1IsDRhvkU4bds9WxlLNE4wqg9q6jBL9G+4knc/HB9qXmuG4goD89TjT+IVkimE/zt6sYh/EG3WmaiOMGHbgQ38YfY3ibKCV6GMabHWY0bo+Ps5jjnuYlCczrSk8Hcgd5U1rONoDnG48Ova2W8RGeMXAxiHfWakT4mOx81oRiG1/C5vYh47KSx5fZid4JvxxVd7MdIp3EK06kNNXYneIWtutgLaIasQUwkJE7wE3SxbycWR8SD93BOiL2YRBwRDN5FwOPchaqecZQTQQ4XAApz0FrFQSLPwQD8mlZNEt8L5841D62/cJVIi2cgPelEAlBOCYfYSxXymjKAXqSQAFRwloPspRp5dzOMHiTThEqK2c1OvGHIsg/30YUWKHzDKfZwEB+2xBn3gUSSwmA+MpluruYDySMPYD23TOrX0V/q+CPZYai+yHw8wKscbmhMD+IVfyevcMlkuvxXxGOphTD4Gi4iJ40C/DZtM12wk8Lfbes/oSN27mGPZW0RnVmvebxIMng3z1Bluddz5Mh9wm8icqZIzPHfZDxW8qhotL6cUVh5zP74XOBg0MEnsgW/bfMxzyIOYdgSIuV5/JJtPmZmSlb7mI6ZGTLVQQafSKHUvp7BxFxhSD6N8UsH4An5aT+J3mNB1T+K3hj8YQ/ezRbpvY3CYKEwYFLYgvfTkQZ9qTN8nS3lIdJJZwTLDdNztfwUrTTDp+hllmnqrxo+sLqi1dWwuFPKYnK5h0we5c/UhhT8fF1FHWsZTis8dGAyB4S+67RF5wVhwC/DGHxvAqI4Imyv50Vi0YpjsW4l4AAuGii63yE+lhCHVlOW6o79TxRN/ee64y/SHb8TO4MOvq3uYh6iO1oufiP0r0VnjtA9K4zBDzSdgKtjJGbyqBfG5dFguC62sZiZoLt0Qy3qvYzCKIZNQQYvXupdxGO0Rni5dLebl1wexuD7A4DuC+gprMwTxu2hwT+E7c9iZYEw7lMaiBPeczAXT3EQwcdwTbP1Eq3RiyaPvcIe/4igj9C5NYzBpwOQKmzbh4IVF4dMviOShHfCEdxYieKY8M5qCUCy8E4oxIWVnwcRfK4wdhqitiyk1JBHJc3UU4UT+HDRYADR1GEnB2s9WYrqssn41/BjxcdrrEOVzRogS4hqOfVY8fI6qzWXYTAbgRwUVMvwYeUzzpKCnMGobvIeDRTuZyajiMLoMG2oRONfwnV5kNDNFH5ZKAD8SbPtFrHYaSr8+nkLgCXC53sCdloJz+RlAFYJv5bisPOG9Cv+U+F+O6AZM4Sx2iz+QKZxWrgArSmEbiAIpwvQGdV/qMFOFUdRdTbUn6QCO9c4bajvJhy/GjuFyOqEqhhIZyUXWEk6esd4imTyKTIG/1e08kghNNEMR7WfgERUpTTmPKrmIdSXGupbiHu3dQFZCagy2MGXzCAekZcPySKDlVSYTwsf5QB9aeBiCWMJxcO0RPU5AW5UPuyJI9xhr/diz4ssF6ohGJXyFmu42Fj5MrTGMILgKTyHqpoCAipR3YE9cURFWOorUCVhrzWyKrFWwGg68hIXG79uGziG1rt0IFhPcC+qj6gioARVJm7sRPMTVCWG+u54sBNHqm19Ji7sZCDrv5gp53ekkcNGvHJvGB+zdVd+M60JRi/eREt9VIQqgfuxM5Q4VEcM9R5ysfMAUaA78iFUzRmIfb2sw+j9m6m042lOEqS1hv+R3Y2svpSJCxJCn9hjR5ztywSgg7BtGwpWFHYLY+8CIB2/5Jppj5BvoE7Qz/a8bCVSrIv+quQrYCLVQl0NXVEpnBF6f4aVX+guvELAPmH7GMk/ZX1BgKJb2szBnEJBEMFHUyY841SsjGcr7bGVabLC8z6dsJPC3ww1sxE9LfTeoAdmeumOPkNzYcUb776Y6aebOh5Hg6m6l1MaZhYGOUn2sjD6MAmYyeIWfiqYhoKNLJNlaC/ryCUGvRhyWUedYfx7KIiack4XfZ5ujMI4XewlxIpzMEL04w31k3STtEW4NWd6Uugr4yFEHt4Ielo4iRvC+P20R6QwTZPnFtpjI4dKi5veAlbwLPnM4NesZDs3Tcd9RgxGIw3jdjCeO1FQSGYiuw39D6A1CJ+u/wsm0pZA/STDEnY9A9DKMtRvZjStAIVOzOJMSAsh+YaMltGXGEChHVPYr+s/igsbPTmHP8T2IR7MvW46voZa0+2voLfAor7GdPtz6C0yHVfNt4S+9KewwXTJ8xtumWyv5T6w14pNIYTu40VcWHHzvvSe3sWFnsIq6foVKCb1qyOw2N2EnZJ7+5aRSFAYS2lQp3maLOy5WS61pyW4MKOwCJ/E5X8BBTMuXsW+tpITQQYPcXws8Zyuk420eOZyQSqqy8zDg4yH+cp2T2cYjp1sim3rTzEEO4/YPKNL9AvpD00K+ZTbnZXwc1KSh9FspNrmDbSZicQirwmzLMI7Qb7EnjxM57hp/TGmEUNjEljAZUNtHW/TGvhA+J6QCx4gicVcNT2r7TyIgoEiGf+99CeVLiTSDKimjK85QSH7qCJ4Cr0YRi9SaI6fG5zlIAUcwS9d34Nsen9Xz3f1hRRQJF0fzVCyyaQdcZRzil18zCUAPtHc3s3mTYIRzWCGkEEH4vFSxmn2s5kSJDgOGP/l4Ii8aOHetzeOsIhiNAX0wVq28O3lwXHbklnIeQJ/PHJhQbh72YXjts3Eq4n0t5h7BL+mzcVx29Kpxy9E70IvV5h7qiEJRxiswC+0feTgJkAhg3d098S/J8IUfhziOUAaouscoYJmpNIO0WXSuYYjLLpxFb9U85KNI4wyKJWKfQKOMEtmm33sXCCbCHC4mMxZIWpx/aglEeNwM4J3KNb8jvmaDTxBIt8jhR8vD22IpYYr1PBD5HA4HP8DxVcxdwELEFUAAAAASUVORK5CYII=) no-repeat center;background-size:94px 32px;height:32px;width:94px;top:8px;opacity:0;float:right;left:255px;pointer-events:none;position:relative;transition:opacity .5s ease-in,left .5s ease-in}.s2tb .google-logo{opacity:0.54;left:270px;transition:opacity .5s ease-out,left .5s ease-out}.spchc{display:block;height:42px;position:absolute;pointer-events:none}.s2fp .spchc,.s2fp-h .spchc{margin:auto;margin-top:312px;max-width:572px;min-width:534px;padding:0 223px;position:relative;top:0}.s2tb .spchc,.s2tb-h .spchc{background:#fff;box-shadow:0 2px 6px rgba(0,0,0,0.2);margin:0;min-width:100%;overflow:hidden;padding:51px 0 50px 126px;position:absolute}._o3{height:100%;opacity:.1;pointer-events:none;width:100%;transition:opacity .318s ease-in}.s2tb-h ._o3,.s2tb ._o3{height:100%;width:572px;transition:opacity .318s ease-in}.s2ml ._o3,.s2ra ._o3,.s2er ._o3{opacity:1;transition:opacity 0s}.button{background-color:#fff;border:1px solid #eee;border-radius:100%;bottom:0;box-shadow:0 2px 5px rgba(0,0,0,.1);cursor:pointer;display:inline-block;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:background-color 0.218s,border 0.218s,box-shadow 0.218s}.s2tb-h .button{left:-83px;opacity:0;pointer-events:none;position:absolute;top:-83px;transition-delay:0}.s2fp-h .button{opacity:0;pointer-events:none;position:absolute;transition-delay:0}.s2fp .button,.s2tb .button{opacity:1;pointer-events:auto;position:absolute;-webkit-transform:scale(1);transition-delay:0}.s2ra .button{background-color:#ff4444;border:0;box-shadow:none}._CMb{background-color:#dbdbdb;border-radius:100%;display:inline-block;height:301px;left:-69px;opacity:1;pointer-events:none;position:absolute;top:-69px;width:301px;-webkit-transform:scale(.01);transition:opacity 0.218s}.s2tb-h ._CMb,.s2tb ._CMb{height:151px;left:-28px;top:-28px;width:151px}._AM{float:right;pointer-events:none;position:relative;transition:-webkit-transform 0.218s,opacity 0.218s ease-in}.s2fp-h ._AM,.s2fp ._AM{height:165px;right:-70px;top:-70px;width:165px}.s2fp-h ._AM,.s2tb-h ._AM{-webkit-transform:scale(.1)}.s2fp ._AM,.s2tb ._AM{-webkit-transform:scale(1)}.s2tb-h ._AM,.s2tb ._AM{height:95px;right:-31px;top:-27px;width:95px}.s2ra .button:active{background-color:#cd0000}.button:active{background-color:#eee}._wPb{height:87px;left:43px;pointer-events:none;position:absolute;top:47px;width:42px;-webkit-transform:scale(1)}.s2tb-h ._wPb,.s2tb ._wPb{left:17px;top:7px;-webkit-transform:scale(.53)}._AUb{background-color:#999;border-radius:30px;height:46px;left:25px;pointer-events:none;position:absolute;width:24px}._Fjd{bottom:0;height:53px;left:11px;overflow:hidden;pointer-events:none;position:absolute;width:52px}._oXb{background-color:#999;bottom:14px;height:14px;left:22px;pointer-events:none;position:absolute;width:9px;z-index:1}._dWb{border:7px solid #999;border-radius:28px;bottom:27px;height:57px;pointer-events:none;position:absolute;width:38px;z-index:0}.s2ml ._AUb,.s2ml ._oXb{background-color:#f44}.s2ml ._dWb{border-color:#f44}.s2ra ._AUb,.s2ra ._oXb{background-color:#fff}.s2ra ._dWb{border-color:#fff}.spcht{}.spchta{}.spch-2l{}.spch-3l{}.spch-4l{}.spch-5l{}._gjb{pointer-events:none}.s2fp-h ._gjb,.s2fp ._gjb{position:absolute}.s2tb-h ._gjb,.s2tb ._gjb{position:relative}.spcht{font-weight:normal;line-height:1.2;opacity:0;pointer-events:none;position:absolute;text-align:left;-webkit-font-smoothing:antialiased;transition:opacity .1s ease-in,margin-left .5s ease-in,top 0s linear 0.218s}.s2fp-h .spcht{margin-left:44px}.s2tb-h .spcht{margin-left:32px}.s2fp-h .spcht,.s2fp .spcht{font-size:32px;left:-44px;top:-.2em;width:460px}.s2tb-h .spcht,.s2tb .spcht{font-size:27px;left:7px;top:.2em;width:490px}.s2fp .spcht,.s2tb .spcht{margin-left:0;opacity:1;transition:opacity .5s ease-out,margin-left .5s ease-out}.spchta{color:#1155cc;cursor:pointer;font-size:18px;font-weight:500;pointer-events:auto;text-decoration:underline}.spch-2l.spcht,.spch-3l.spcht,.spch-4l.spcht{transition:top 0.218s ease-out}.spch-2l.spcht{top:-.6em}.spch-3l.spcht{top:-1.3em}.spch-4l.spcht{top:-1.7em}.s2fp .spch-5l.spcht{top:-2.5em}.s2tb .spch-5l.spcht{font-size:24px;top:-1.7em;transition:font-size 0.218s ease-out}.s2wfp{}._ypc{margin-top:-100px;opacity:0;pointer-events:none;position:absolute;width:500px;transition:opacity 0.218s ease-in,margin-top .4s ease-in}.s2wfp ._ypc{margin-top:-300px;opacity:1;transition:opacity .5s ease-out 0.218s,margin-top 0.218s ease-out 0.218s}._zpc{box-shadow:0 1px 0px #4285F4;height:80px;left:0;margin:0;opacity:0;pointer-events:none;position:fixed;right:0;top:-80px;transition:opacity 0.218s,box-shadow 0.218s}.s2wfp ._zpc{box-shadow:0 1px 80px #4285F4;opacity:1;pointer-events:none;-webkit-animation:allow-alert .75s 0 infinite;-webkit-animation-direction:alternate;-webkit-animation-timing-function:ease-out;transition:opacity 0.218s,box-shadow 0.218s}@-webkit-keyframes allow-alert {from{opacity:1}to{opacity:.35}}#gb{font-size:13px}div#searchform{min-width:980px;z-index:103}div.sfbg,div.sfbgg{height:59px}.big form#tsf,form#tsf{width:auto;max-width:784px;overflow:hidden}#searchform.big>#tsf{max-width:784px}.big div.tsf-p,form>div.tsf-p{margin:-1px 0 0;padding-right:0}div#viewport{position:absolute;top:0;width:100%}div#searchform.jhp{margin-top:0}#searchform.big.jhp>#tsf{max-width:none}.jhp>#gb{position:absolute;top:-295px;right:0;width:100%}.jhp>#tsf{max-width:none}._P7b{height:26px;opacity:0.8;position:absolute;width:26px}._P7b:hover{opacity:1}._aGb,._bGb{height:22px;position:absolute;width:22px}._aGb{border-radius:6px;left:0;top:0}._bGb{left:2px;top:2px}a:active ._aGb,a:active ._bGb{margin:2px}.szppmdbYutt__middle-slot-promo{font-size:small;margin-bottom:32px}.szppmdbYutt__middle-slot-promo a._uFi{display:inline-block;text-decoration:none}.szppmdbYutt__middle-slot-promo img{border:none;margin-right:5px;vertical-align:middle}.szppmdbYutt__middle-slot-promo ._vFi{color:red}.fmulti{}._dQc{bottom:0;left:0;position:absolute;right:0}._GR{background:#f2f2f2;left:0;right:0;-webkit-text-size-adjust:none}.fbar p{display:inline}.fbar a,#fsettl{text-decoration:none;white-space:nowrap}.fbar{margin-left:-27px}._Gs{padding-left:27px;margin:0 !important}._eA{padding:0 !important;margin:0 !important}#fbarcnt{display:block}._E2 a:hover{text-decoration:underline}._HR img{margin-right:4px}._HR a,._GR #swml a{text-decoration:none}.fmulti{text-align:center}.fmulti #fsr{display:block;float:none}.fmulti #fuser{display:block;float:none}#fuserm{line-height:25px}#fsr{float:right;white-space:nowrap}#fsl{white-space:nowrap}#fsett{background:#fff;border:1px solid #999;bottom:30px;padding:10px 0;position:absolute;box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);text-align:left;z-index:104}#fsett a{display:block;line-height:44px;padding:0 20px;text-decoration:none;white-space:nowrap}._E2 #fsettl:hover{text-decoration:underline}._E2 #fsett a:hover{text-decoration:underline}._mk{color:#777}._Nh{color:#222;font-size:14px;font-weight:normal;-webkit-tap-highlight-color:rgba(0,0,0,0)}._Mo{display:inline-block;opacity:0.55;vertical-align:top}a._Nh:hover ._Mo,a._Nh:active ._Mo{opacity:1.0}._Nh{padding:8px 16px;margin-right:10px}._mk{margin:40px 0}._dD{margin-right:10px}._nW{margin-left:135px}#fbar{background:#f2f2f2;border-top:1px solid #e4e4e4;line-height:40px;min-width:980px}._xac{margin-left:135px}.fbar p,.fbar a,#fsettl,#fsett a{color:#777}.fbar a:hover,#fsett a:hover{color:#333}.fbar{font-size:small}#fuser{float:right}._HR{margin-left:135px;line-height:15px;}#fsl{margin-left:30px}#fsr{margin-right:30px}.fmulti #fsl{margin-left:0}.fmulti #fsr{margin-right:0}.gb_1a{display:none!important}@-webkit-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}#gbq2{display:block}#gbqf{display:block;margin:0;margin-right:60px;white-space:nowrap}.gbqff{border:none;display:inline-block;margin:0;padding:0;vertical-align:top;width:100%}.gbqfqw,#gbqfb,.gbqfwa{vertical-align:top}#gbqfaa,#gbqfab,#gbqfqwb{position:absolute}#gbqfaa{left:0}#gbqfab{right:0}.gbqfqwb,.gbqfqwc{right:0;left:0;height:100%}.gbqfqwb{padding:0 8px}#gbqfbw{display:inline-block;vertical-align:top}#gbqfb{border:1px solid transparent;border-bottom-left-radius:0;border-top-left-radius:0;height:30px;margin:0;outline:none;padding:0 0;width:60px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)}#gbqfb:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}#gbqfb:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}#gbqfb:hover:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}#gbqfb:active:active{border:1px solid transparent;-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)}.gbqfi{background-position:-428px 0;display:inline-block;margin:-1px;height:30px;width:30px}.gbqfqw{background:#fff;background-clip:padding-box;border:1px solid #cdcdcd;border-color:rgba(0,0,0,.15);border-right-width:0;height:30px;-webkit-box-sizing:border-box;box-sizing:border-box}#gbfwc .gbqfqw{border-right-width:1px}#gbqfqw{position:relative}.gbqfqw.gbqfqw:hover{border-color:#a9a9a9;border-color:rgba(0,0,0,.3)}.gbqfwa{display:inline-block;width:100%}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw.gbqfqw:active,.gbqfqw.gbqfqwf.gbqfqwf{border-color:#4285f4}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:20px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{color:#222;font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif!important;vertical-align:top}.gb_fa .gbqfqw.gbqfqw,.gb_X .gbqfqw.gbqfqw{border-color:rgba(255,255,255,1);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb,.gb_X #gbqfb{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb:hover,.gb_X #gbqfb:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_fa #gbqfb:active,.gb_X #gbqfb:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gbqfb,.gbqfba,.gbqfbb{cursor:default!important;display:inline-block;font-weight:bold;height:29px;line-height:29px;min-width:54px;padding:0 8px;text-align:center;text-decoration:none!important;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:none}.gbqfba:focus{border:1px solid #4d90fe;outline:none;-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.gbqfba:hover{border-color:#c6c6c6;color:#222!important;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15);background:#f8f8f8;background:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background:linear-gradient(top,#f8f8f8,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:hover:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}.gbqfb::-moz-focus-inner{border:0}.gbqfba::-moz-focus-inner{border:0}.gbqfba{border:1px solid #dcdcdc;border-color:rgba(0,0,0,0.1);color:#444!important;font-size:11px;background:#f5f5f5;background:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background:linear-gradient(top,#f5f5f5,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}@-webkit-keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}@keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}.gb_fc{background-position:-314px -38px;opacity:.55;height:100%;width:100%}.gb_b:hover .gb_fc,.gb_b:focus .gb_fc{opacity:.85}.gb_gc .gb_fc{background-position:-463px 0}.gb_hc{background-color:#cb4437;-webkit-border-radius:8px;border-radius:8px;font:bold 11px Arial;color:#fff;line-height:16px;min-width:14px;padding:0 1px;position:absolute;right:0;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.1);top:0;visibility:hidden;z-index:990}.gb_ic .gb_hc,.gb_ic .gb_jc,.gb_ic .gb_jc.gb_kc{visibility:visible}.gb_jc{padding:0 2px;visibility:hidden}.gb_lc:not(.gb_mc) .gb_eb,.gb_lc:not(.gb_mc) .gb_db{left:3px}.gb_hc.gb_nc{-webkit-animation:gb__nb .6s 1s both ease-in-out;animation:gb__nb .6s 1s both ease-in-out;-webkit-perspective-origin:top right;perspective-origin:top right;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:top right;transform-origin:top right}.gb_nc .gb_jc{visibility:visible}.gb_fa .gb_b .gb_fc{background-position:0 0;opacity:.7}.gb_fa .gb_gc .gb_fc{background-position:-279px -38px}.gb_fa .gb_b:hover .gb_fc,.gb_fa .gb_b:focus .gb_fc{opacity:.85}.gb_X .gb_b .gb_fc{background-position:-349px -38px;opacity:1}.gb_X .gb_gc .gb_fc{background-position:-393px 0}.gb_fa .gb_hc,.gb_X .gb_hc{border:none}.gb_lc .gb_oc{font-size:14px;font-weight:bold;top:0;right:0}.gb_lc .gb_b{display:inline-block;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px}.gb_lc .gb_db{border-bottom-color:#e5e5e5}.gb_pc{background-color:rgba(0,0,0,.55);color:#fff;font-size:12px;font-weight:bold;line-height:20px;margin:5px;padding:0 2px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:50%;border-radius:50%;height:20px;width:20px}.gb_pc.gb_qc{background-position:-194px -21px}.gb_pc.gb_rc{background-position:-194px -46px}.gb_b:hover .gb_pc,.gb_b:focus .gb_pc{background-color:rgba(0,0,0,.85)}#gbsfw.gb_sc{background:#e5e5e5;border-color:#ccc}.gb_fa .gb_pc{background-color:rgba(0,0,0,.7)}.gb_X .gb_pc.gb_pc,.gb_X .gb_ic .gb_pc.gb_pc,.gb_X .gb_ic .gb_b:hover .gb_pc,.gb_X .gb_ic .gb_b:focus .gb_pc{background-color:#fff;color:#404040}.gb_X .gb_pc.gb_qc{background-position:-70px 0}.gb_X .gb_pc.gb_rc{background-position:-219px 0}.gb_ic .gb_pc.gb_pc{background-color:#db4437;color:#fff}.gb_ic .gb_b:hover .gb_pc,.gb_ic .gb_b:focus .gb_pc{background-color:#a52714}.gb_ic .gb_pc.gb_rc{background-position:-194px -46px}.gb_N .gbqfi::before{left:-428px;top:0}.gb_xb .gbqfb:focus .gbqfi{outline:1px dotted #fff}.gb_N .gb_ea .gb_b::before,.gb_N.gb_fa .gb_ea .gb_b::before{left:-132px;top:-38px}.gb_N.gb_X .gb_ea .gb_b::before{left:-463px;top:-35px}.gb_xb .gb_ka{position:relative}.gb_ea .gb_b:hover,.gb_ea .gb_b:focus{opacity:.85}.gb_X .gb_ea .gb_b:hover,.gb_X .gb_ea .gb_b:focus{opacity:1}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_oa .gb_3{background-image:url('//ssl.gstatic.com/gb/images/p2_3645acaa.png')}}.gb_N .gb_Ob .gb_Qb::before{left:0;top:-35px}.gb_N.gb_X .gb_Ob .gb_Qb::before{left:-296px;top:0}.gb_N.gb_fa .gb_Ob .gb_Qb::before{left:-97px;top:0}.gb_N .gb_Rb{background-image:none!important}.gb_N .gb_Sb{visibility:visible}.gb_xb .gb_dd span{background:transparent}.gb_N .gb_fc::before{left:-314px;top:-38px}.gb_N .gb_gc .gb_fc::before{left:-463px;top:0}.gb_N.gb_fa .gb_b .gb_fc::before{left:0;top:0}.gb_N.gb_fa .gb_gc .gb_fc::before{left:-279px;top:-38px}.gb_N.gb_X .gb_b .gb_fc::before{left:-349px;top:-38px}.gb_N.gb_X .gb_gc .gb_fc::before{left:-393px;top:0}.gb_xb .gb_pc{border:1px solid #fff;color:#fff}.gb_xb.gb_fa .gb_pc{border-color:#000;color:#000}.gb_N .gb_pc.gb_qc::before,.gb_xb.gb_N.gb_X .gb_pc.gb_qc::before{left:-194px;top:-21px}.gb_N .gb_pc.gb_rc::before,.gb_xb.gb_N.gb_X .gb_pc.gb_rc::before{left:-194px;top:-46px}.gb_N.gb_X .gb_pc.gb_qc::before,.gb_xb.gb_N.gb_fa .gb_pc.gb_qc::before{left:-70px;top:0}.gb_N.gb_X .gb_pc.gb_rc::before,.gb_xb.gb_N.gb_fa .gb_pc.gb_rc::before{left:-219px;top:0}.gb_Rc{color:#ffffff;font-size:13px;font-weight:bold;height:25px;line-height:19px;padding-top:5px;padding-left:12px;position:relative;background-color:#4d90fe}.gb_Rc .gb_Sc{color:#ffffff;cursor:default;font-size:22px;font-weight:normal;position:absolute;right:12px;top:5px}.gb_Rc .gb_Ic,.gb_Rc .gb_Tc{color:#ffffff;display:inline-block;font-size:11px;margin-left:16px;padding:0 8px;white-space:nowrap}.gb_Uc{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.16)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.16),rgba(0,0,0,0.2));border-radius:2px;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);cursor:default!important;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#160000ff,endColorstr=#220000ff);text-decoration:none!important;-webkit-border-radius:2px}.gb_Uc:hover{background:none;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.14)),to(rgba(0,0,0,0.2)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.14),rgba(0,0,0,0.2));border:1px solid rgba(0,0,0,0.2);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#14000000,endColorstr=#22000000)}.gb_Uc:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.gb_xc.gb_yc{padding:0}.gb_yc .gb_ga{padding:26px 26px 22px 13px;background:#ffffff}.gb_zc.gb_yc .gb_ga{background:#4d90fe}a.gb_Ac{color:#666666!important;font-size:22px;height:9px;opacity:.8;position:absolute;right:14px;top:4px;text-decoration:none!important;width:9px}.gb_zc a.gb_Ac{color:#c1d1f4!important}a.gb_Ac:hover,a.gb_Ac:active{opacity:1}.gb_Bc{padding:0;width:258px;white-space:normal;display:table}.gb_Cc .gb_ga{top:36px;border:0;padding:18px 24px 16px 20px;-webkit-box-shadow:4px 4px 12px rgba(0,0,0,0.4);box-shadow:4px 4px 12px rgba(0,0,0,0.4)}.gb_Cc .gb_Bc{width:356px}.gb_Cc .gb_Fa,.gb_Cc .gb_Dc,.gb_Cc .gb_Ec,.gb_Cc .gb_Ca,.gb_Fc{line-height:normal;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif}.gb_Cc .gb_Fa,.gb_Cc .gb_Dc,.gb_Cc .gb_Ca{font-weight:500}.gb_Cc .gb_Fa,.gb_Cc .gb_Ca{border:0;padding:10px 8px}.gb_yc .gb_Fa:active{outline:none;-webkit-box-shadow:0 4px 5px rgba(0,0,0,.16);box-shadow:0 4px 5px rgba(0,0,0,.16)}.gb_Cc .gb_Dc{color:#222;margin-bottom:8px}.gb_Cc .gb_Ec{color:#808080;font-size:14px}.gb_Hc{text-align:right;font-size:14px;padding-bottom:10px}.gb_Hc .gb_Ic{margin-left:16px}.gb_Fc{background-color:#404040;color:#fff;padding:16px 24px 16px 20px;position:absolute;top:36px;width:356px;right:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:4px 4px 12px rgba(0,0,0,0.4);box-shadow:4px 4px 12px rgba(0,0,0,0.4)}.gb_Fc a,.gb_Fc a:visited{color:#5e97f6;text-decoration:none}.gb_Jc{position:absolute;right:20px;text-transform:uppercase}.gb_zc .gb_Bc{width:200px}.gb_Dc{color:#333333;font-size:16px;line-height:20px;margin:0;margin-bottom:16px}.gb_zc .gb_Dc{color:#ffffff}.gb_Ec{color:#666666;line-height:17px;margin:0;margin-bottom:5px}.gb_zc .gb_Ec{color:#ffffff}.gb_Kc{text-decoration:none;color:#5e97f6}.gb_Kc:visited{color:#5e97f6}.gb_Kc:hover,.gb_Kc:active{text-decoration:underline}.gb_Lc{position:absolute;background:transparent;top:-999px;z-index:-1;visibility:hidden;margin-top:1px;margin-left:1px}#gb .gb_yc{margin:0}.gb_yc .gb_qb{background:#4d90fe;border-color:#3079ed;margin-top:15px}.gb_Cc .gb_Fa{background:#4285f4}#gb .gb_yc a.gb_qb.gb_qb{color:#ffffff}.gb_yc .gb_qb:hover{background:#357ae8;border-color:#2f5bb7}.gb_Mc .gb_oc .gb_db{border-bottom-color:#ffffff;display:block}.gb_Nc .gb_oc .gb_db{border-bottom-color:#4d90fe;display:block}.gb_Mc .gb_oc .gb_eb,.gb_Nc .gb_oc .gb_eb{display:block}.gb_Oc,.gb_Pc{display:table-cell}.gb_Oc{vertical-align:middle}.gb_Cc .gb_Oc{vertical-align:top}.gb_Pc{padding-left:13px;width:100%}.gb_Cc .gb_Pc{padding-left:20px}.gb_ce{margin-bottom:32px;font-size:small}.gb_ce .gb_de{margin-right:5px}.gb_ce .gb_ee{color:red}.gb_wc{display:none}.gb_wc.gb_g{display:block}.gb_N .gb_ge .gb_b::before{left:-498px;top:-35px}.gb_N.gb_fa .gb_ge .gb_b::before{left:-498px;top:0}.gb_N.gb_X .gb_ge .gb_b::before{left:-428px;top:-35px}.gb_xb .gb_eb{border:0;border-left:1px solid rgba(0,0,0,.2);border-top:1px solid rgba(0,0,0,.2);height:14px;width:14px;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.gb_xb .gb_db{border:0;border-left:1px solid rgba(0,0,0,.2);border-top:1px solid rgba(0,0,0,.2);height:14px;width:14px;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-color:#fff;background:#fff}.gb_N .gb_4e::before{clip:rect(25px 235px 41px 219px);left:-197px;top:-3px}.gb_N .gb_Qb.gb_5e{position:absolute}.gb_N .gb_5e::before{clip:rect(-0 210px 16px 194px);left:-164px;top:22px}.gb_N .gb_8a .gb_4e::before{left:-189px}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_N .gb_4e::before{clip:rect(50px 470px 82px 438px)}.gb_N .gb_5e::before{clip:rect(-0 420px 32px 388px)}}.gb_N .gb_Qb,.gb_N .gbii,.gb_N .gbip{background-image:none;overflow:hidden;position:relative}.gb_N .gb_Qb::before{content:url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png');position:absolute}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_N .gb_Qb::before{content:url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png');-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:0 0;transform-origin:0 0}}.gb_xb a:focus{outline:1px dotted #fff!important}sentinel{} 5 | -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 John Otander 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cssstats-cli", 3 | "description": "CLI app for cssstats", 4 | "author": "John Otander", 5 | "version": "1.0.0-beta.2", 6 | "main": "cli.js", 7 | "files": [ 8 | "cli.js" 9 | ], 10 | "bin": { 11 | "cssstats": "cli.js" 12 | }, 13 | "engines": { 14 | "node": ">=4" 15 | }, 16 | "scripts": { 17 | "test": "ava" 18 | }, 19 | "repository": "cssstats/cssstats-cli", 20 | "keywords": [ 21 | "cssstats", 22 | "cli", 23 | "cli-app", 24 | "css", 25 | "postcss" 26 | ], 27 | "license": "MIT", 28 | "dependencies": { 29 | "cssstats": "^3.0.0-beta.1", 30 | "meow": "^3.7.0", 31 | "read-file-stdin": "^0.2.1", 32 | "write-file-stdout": "0.0.2" 33 | }, 34 | "devDependencies": { 35 | "ava": "*", 36 | "is-present": "^1.0.0", 37 | "pify": "^2.3.0" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # cssstats-cli [![Build Status](https://secure.travis-ci.org/cssstats/cssstats-cli.png?branch=master)](https://travis-ci.org/cssstats/cssstats-cli) [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard) 2 | 3 | __Work in progress__ 4 | 5 | CLI app for cssstats 6 | 7 | ## Installation 8 | 9 | ```bash 10 | npm i -g cssstats-cli 11 | ``` 12 | 13 | ## Usage 14 | 15 | ```sh 16 | $ cssstats --help 17 | 18 | CLI app for cssstats 19 | 20 | Usage 21 | $ cssstats 22 | 23 | Example 24 | $ cssstats --help 25 | $ cssstats input.css output.json 26 | $ cssstats input.css > output.json 27 | $ cssstats < input.css > output.json 28 | ``` 29 | 30 | ## License 31 | 32 | MIT 33 | 34 | ## Contributing 35 | 36 | 1. Fork it 37 | 2. Create your feature branch (`git checkout -b my-new-feature`) 38 | 3. Commit your changes (`git commit -am 'Add some feature'`) 39 | 4. Push to the branch (`git push origin my-new-feature`) 40 | 5. Create new Pull Request 41 | 42 | Crafted with <3 by John Otander ([@4lpine](https://twitter.com/4lpine)). 43 | 44 | *** 45 | 46 | > This package was initially generated with [yeoman](http://yeoman.io) and the [p generator](https://github.com/johnotander/generator-p.git). 47 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import test from 'ava' 3 | import pify from 'pify' 4 | import isPresent from 'is-present' 5 | import childProcess from 'child_process' 6 | 7 | const expected = fs.readFileSync('expected.json', 'utf8') 8 | const fixtureFile = 'fixture.css' 9 | const outputFile = 'output.json' 10 | 11 | test('crunches stats', async t => { 12 | t.plan(1) 13 | 14 | await pify(childProcess.execFile)('./cli.js', [fixtureFile, outputFile]) 15 | const output = fs.readFileSync(outputFile, 'utf8') 16 | 17 | t.true(isPresent(output)) 18 | }) 19 | --------------------------------------------------------------------------------