-
Notifications
You must be signed in to change notification settings - Fork 0
/
Teaching.html
1688 lines (1669 loc) · 967 KB
/
Teaching.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html><html lang="en" itemscope itemtype="http://schema.org/WebPage"><head><script type="text/javascript">var DOCS_timing={}; DOCS_timing['sl']=new Date().getTime();</script><script>function _DumpException(e) {throw e;}</script><script>_docs_flag_initialData={"docs-ails":"docs_warm","docs-fwds":"docs_nf","docs-crs":"docs_crs_nfd","docs-shdn":0,"docs-tfh":"","info_params":{"token":"AHL0AtKvynyEA_ltwpdXYR60ovONuIrJrA:1599843839704"},"docs-eohmo":false,"uls":"{\"langs\":[\"en\"],\"itcs\":[],\"override\":\"\",\"selected\":\"\",\"activated\":false}","docs-enpf":true,"scotty_upload_url":"/upload/sites/resumable","docs-net-udmi":500000,"docs-net-udpt":40000,"docs-net-udur":"/upload/blob/sites","docs-net-usud":true,"docs-ewwff":true,"docs-eadfso":true,"docs-efff":true,"docs-text-ewf":true,"docs-wfsl":["ca","da","de","en","es","fi","fr","it","nl","no","pt","sv"],"docs-efpsf":false,"docs-efpsp":true,"docs-ejsfawf":false,"docs-eksfawf":false,"docs-edfn":true,"docs-efsd":true,"docs-localstore-eidsilfm":false,"docs-esreff":false,"docs-ecfdsfj":false,"docs-api-keys":{},"buildLabel":"atari_2020.36-Tue-0500_RC00","docs-show_debug_info":true,"ondlburl":"//docs.google.com","drive_url":"//drive.google.com","app_url":"https://sites.google.com/","docs-mid":2048,"docs-eicd":false,"docs-icdmt":[],"docs-sup":"","docs-seu":"https://sites.google.com/d/19QJeP-1DsUUgkTyNLO-6zwDEYYrzOjXB/edit","docs-crp":"/d/19QJeP-1DsUUgkTyNLO-6zwDEYYrzOjXB/p/19RoKTcnroM-DqT2SPEGxDM2UGLkCClGf/takeout","docs-crq":"siteRevision\u003d8223\u0026pageRevision\u003d8223\u0026token\u003dANDBBv4dHyzggtdTAnSuC8PvRYRYVTWTS-5cLIlIAuLe90IryIeboMzinyxnd27wJRbsGCRFtS3huTnDl5z0eqBV0BDCJlI1sWRbjXt7rwreeaTG81cTbp4PgF2tEOewCYidwo7k-WFx5Q%3D%3D","docs-ecvca":true,"docs-uptc":["lsrp","ca","sh","noreplica","ths","tam","ntd","ouid","sle","dl","hi","popr","sdsid","usp","urp","utm_source","utm_medium","utm_campaign","utm_term","utm_content"],"docs-doddn":"","docs-uddn":"","docs-cwsd":"","docs-gsmd":"","docs-spdy":false,"xdbcfAllowHostNamePrefix":true,"xdbcfAllowXpc":false,"docs-esmp":true,"docs-msoil":"docs_spanner","docs-gsoil":"docs_gsabs","docs-deeelmu":"","docs-lbefm":0,"docs-lbesty":0,"docs-tafl":true,"docs-hpi":"","docs-thtea":false,"docs-tdc":"[{\"id\":\"0:Basics\",\"name\":\"Basics\",\"deletedIds\":[]},{\"id\":\"0:Brochures\",\"name\":\"Brochures \\u0026 newsletters\",\"deletedIds\":[]},{\"id\":\"0:Calendars\",\"name\":\"Calendars \\u0026 schedules\",\"deletedIds\":[]},{\"id\":\"0:Business\",\"name\":\"Contracts, onboarding, and other forms\",\"deletedIds\":[]},{\"id\":\"0:Finance\",\"name\":\"Finance \\u0026 accounting\",\"deletedIds\":[]},{\"id\":\"0:Letters\",\"name\":\"Letters\",\"deletedIds\":[]},{\"id\":\"0:Reports\",\"name\":\"Reports \\u0026 proposals\",\"deletedIds\":[]},{\"id\":\"0:Planners\",\"name\":\"Trackers\",\"deletedIds\":[]},{\"id\":\"Unparented\",\"name\":\"Uncategorized\",\"deletedIds\":[\"0:NoTemplateCategories\"]}]","docs-ttt":0,"docs-tcdtc":"[]","docs-mtdl":500,"docs-ividtg":false,"docs-tdcp":0,"docs-tdvc":false,"docs-tmbp":false,"docs-hetsdd":false,"docs-hetsdiaow":false,"docs-tintd":false,"docs-epipfci":true,"docs-eufupi":false,"docs-al":[1,1,1,1,1],"docs-ndt":"Untitled site","docs-prn":"Google Sites","docs-as":"","docs-etdimo":false,"docs-mdck":"","docs-etiff":false,"docs-mriim":1800000,"docs-eccbs":false,"docos-sosj":false,"docs-rlmp":true,"docs-mmpt":9000,"docs-erd":false,"docs-erfar":false,"docs-ensb":false,"docs-ddts":false,"docs-uootuns":false,"docs-amawso":false,"docs-ofmpp":false,"docs-anlpfdo":false,"docs-eslars":true,"docs-phe":"","docs-pid":"106848800723755049469","docs-ebbouf":false,"docs-efs":false,"docs-ricocpb":false,"docs-eali":true,"docs-etauihm":false,"docs-eimtdl":false,"docs-eeott":true,"docs-edmcl":false,"docs-embmd":false,"docs-effnp":false,"docs-ecgd":false,"docs-hft":"","docs-edsi":false,"docs-ececs":false,"docos-ssf":false,"docs-edp":false,"docs-edlo":false,"docs-eem":false,"kix-edrat":false,"docs-edsl":false,"docs-efsii":false,"docs-text-elnma":false,"docs-esteb":false,"docs-elcfd":false,"docs-ejtlr":false,"docs-seadm":false,"docs-wia":"","docs-edmitm":false,"docs-enjec":false,"docs-egmid":true,"docs-eiasrpu":false,"docs-efmsh":false,"ecid":false,"docs-eir":false,"docs-edll":false,"server_time_ms":1599843839718,"gaia_session_id":"","app-bc":"#3f51b5","enable_iframed_embed_api":false,"docs-fut":"//drive.google.com#folders/{folderId}","docs-isb":false,"docs-enct":false,"docs-agdc":false,"docs-anddc":true,"docs-adndldc":false,"docs-efts":false,"docs-text-efnma":false,"docs-cn":"","docs-dpftr":false,"docs-depquafr":false,"docs-elsr":false,"docs-elmc":false,"docs-frbanmc":false,"docs-rldce":false,"docs-dom":false,"docs-ebidu":false,"docs-edamc":false,"docs-edomic":false,"docs-eddm":false,"docs-edme":false,"docs-fwd":false,"docs-elds":false,"docs-eph":false,"docs-epat":true,"docs-eppd":false,"docs-essph":false,"docs-tdd":false,"docs-mib":25000000,"docs-mip":25000000,"docs-rsc":"","docs-ssi":false,"docs-uoci":"","docs-gth":"","docs-po":"https://sites.google.com","docs-to":"https://sites.google.com","projector_view_url":"https://drive.google.com/file/d/19QJeP-1DsUUgkTyNLO-6zwDEYYrzOjXB/view?usp\u003ddocs_web","docs-seso":true,"docs-eastdfm":true,"docs-eastd":true,"docs-eoes":true,"docs-eoespr":false,"docs-dpiuf":true,"docs-eumcml":false,"opendv":false,"onePickImportDocumentUrl":"","opmbs":25000000,"opmpd":5000,"opbu":"https://docs.google.com/picker","opru":"https://sites.google.com/relay.html","opdu":true,"opccp":false,"ophi":"atari","opst":"000770F20383249B0CD57AFB6E3FE97569E53A4064CCF21334::1599843839730","opuci":"","docs-eopiiv2":true,"docs-dm":"application/vnd.google-apps.drive-sdk.897606708560","docs-ndsom":[],"docs-sdsom":[],"docs-pn":52,"docs-idu":false,"docs-ct":"s","docs-rn":412935894,"docs-espfof-hs":false,"docs-hecsp":false,"docs-ect":true,"docs-hecgn":true,"docs-errfps":true,"docs-eruhcf":true,"docs-edt":false,"docs-hecud":false,"docs-heoi":false,"docs-urouih":false,"docs-hue":"[email protected]","docs-offline-uiaffd":false,"docs-offline-uoia":false,"docs-cpv":0,"docs-cecpcls":true,"docs-ceci":true,"docs-cpks":["[\"6951deec89239e87\",\"AAVFbsE5o5OA0eVRUGnRaApY+SPgshqkDwQb4b1fQsRwsuoeZLDceXHTUBwIpYncxGQOJJmPSIP3\"]\n","[\"8b51c41881f1336a\",\"AK2fzyBKnbjAEIeY2QKI5trTyqn5c3Nzg15PZmYqfxcYhONBh/WpdZOaaTBh/Yfw37Wi0B8yizwl\"]\n"],"docs-hasid":"Sites","docs-hdod":"sites.google.com","docs-hdck":"AIzaSyCF97XfLoejM9NhWDAZeOcjC6kOEsEmv6A","docs-hucs":true,"docs-hufcm":false,"docs-hunca":false,"docs-cci":"PROD","docs-caru":"https://clients6.google.com","docs-cbau":"https://drive.google.com","docs-cfru":"https://lh3.google.com","docs-ctcu":"https://client-channel.google.com/client-channel/client","docs-ctsu":"https://clients4.google.com/invalidation/lcs/client","docs-ctak":"AIzaSyAWGrfCCr7albM3lmCc937gx4uIphbpeKQ","docs-cse-ocu":"https://krahsc.google.com/callback","jobset":"prod","docs-eafn":false,"docs-nad":"sites.google.com","docs-ccwt":0,"docs-eccw":false,"docs-epcc":false,"docs-sol":true,"docs-dvs":1,"docs-dac":1,"docs-ilbrc":true,"docs-dlpe":false,"docs-emddi":false,"docs-ecfr":false,"enable_omnibox_help_menu":false,"enable_omnibox":false,"docs-eqam":false,"docs-eua":false,"docs-etbws":false,"docs-ebpi":false,"docs-eebvt":false,"docs-eebvf":false,"docs-ehib":false,"docs-emsib":false,"docs-eiib":false,"docs-etal":false,"docs-esap":false,"docs-se":false,"atari-emtpr":false,"docs-erpncp":true,"docs-espncp":true,"atari-eshss":false,"docs-text-elei":false,"docs-text-usc":true,"atari-ofdu":"https://docs.google.com/picker?protocol\u003dgadgets\u0026relayUrl\u003dhttps://sites.google.com/relay.html\u0026hostId\u003datari-fonts\u0026title\u003dFonts\u0026hl\u003den\u0026origin\u003dhttps://sites.google.com\u0026st\u003d000770F203E8DE59E905174A8529E11DCAD4FAF84E33FADF23::1599843839741\u0026navHidden\u003dtrue\u0026multiselectEnabled\u003dtrue\u0026selectButtonLabel\u003dOK\u0026nav\u003d((%22fonts%22))","atari-jefp":"/_/jserror","docs-text-etsrdpn":false,"docs-text-etsrds":false,"docs-text-elhss":false,"docs-text-empos":false,"docs-text-eibts":false,"docs-text-encpm":false,"docs-text-encps":false,"docs-epes":false,"docs-text-ecacaas":false,"docs-text-encpsp":false,"docs-text-edtui":false,"docs-text-ecsif":false,"docs-text-egbbfe":false,"docs-etshc":false,"docs-text-edkms":false,"docs-text-ftls":false,"docs-text-eapfcp":false,"docs-text-edms":false,"docs-text-ewaoc":false,"docs-text-elsltou":true,"docs-text-eibtl":false,"docs-euoftm":false,"docs-text-ecpi":true,"docs-text-eibtu":false,"docs-egubst":false,"docs-etbe":false,"docs-text-ehlb":false,"docs-text-epa":false,"docs-text-ecls":false,"docs-text-essp":false,"docs-text-essagp":false,"enable_csi":false,"csi_service_name":"","docs-jepp":"/_","atari-eiitev":false,"docs-fpid":104240,"docs-enable_feedback_svg":true,"docs-hauc":true,"docs-huogmb":true,"docs-ipmmp":false,"docs-eea":false,"docs-ecci":false,"docs-idfmp":true,"docs-esi":false,"docs-liap":"/logImpressions","ilcm":{"eui":"AHKXmL3NmqD76tLWkNmTfWxqLWOenhub12wMzrEXeAjIOZFq-rw5-IxWY7JaUFONUnOGwEbEiE7k","je":1,"sstu":1599843839743000,"si":"CLarjt7K4esCFZNHyAodIDEL6w","gsc":null,"ei":[14101158,5709888,5711056,14101474,14101442,5711993,14101494,5707649,14101374,5713207,5711850,5711929,5711078,5713049,14101462,5705841,5711866,14100854,5709447,14101430,14101446,5712332,5710806,5714628,5704621,5705837,14101458,14101054,5713211,14101378,14101490,14101254,5708826,5707711,5710768,5706832,14101218,5711206,5703022,14101358,14101386,5711808,14101354,14100834,5703839,5711563,5710567,14101518,5706601,5706836,14101410,5700016],"crc":0,"cvi":[]},"docs-ccdil":false,"docs-eil":true,"docs-eoi":false,"docs-ema":true,"docs-emf":true,"docs-emi":true,"docs-egms":true,"docs-egmd":true,"docs-emcs":true,"docs-emcp":true,"docs-dcr":false,"docs-saww":false}; _docs_flag_cek='LFG_-HvhDHKRdL_8LuRGFA\x3d\x3d';if (window['DOCS_timing']) {DOCS_timing['ifdld']=new Date().getTime();}</script><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/><meta http-equiv="X-UA-Compatible" content="IE=edge"/><meta name="referrer" content="strict-origin-when-cross-origin"><link rel="icon" href="2ab27ed7dd2e8eb439dc44464324743f.jpg"/><meta name="robots" content="noindex"/><link href="https://fonts.googleapis.com/css?family=Lato%3A300%2C300italic%2C400%2C400italic%2C700%2C700italic&display=swap" rel="stylesheet" type="text/css"/><link href="https://fonts.googleapis.com/css?family=Google+Sans:400,500|Roboto:300,400,500,700|Source+Code+Pro:400,700&display=swap" rel="stylesheet" type="text/css"><style type="text/css">/*! normalize.css v2.1.1 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}hr{box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}.VIpgJd-TzA9Ye-eEGnhe{position:relative;display:-moz-inline-box;display:inline-block}* html .VIpgJd-TzA9Ye-eEGnhe,:first-child+html .VIpgJd-TzA9Ye-eEGnhe{display:inline}group,row,tile{display:block}.aB02pe{background:#fff;color:#a00000}.XKSfm-Sx9Kwc,.XKSfm-Sx9Kwc-xJ5Hnf{z-index:110}html{height:100%}body{height:100%;padding:0}.fktJzd *,.fktJzd *:before,.fktJzd *:after{-webkit-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.LS81yb,.oKdM2c{width:100%;margin-top:0;margin-bottom:0;max-width:1280px;*zoom:1}.LS81yb{padding-left:5px;padding-right:5px}.JNdkSc,.jXK9ad,.oaCj6d{-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;padding-left:0;padding-right:0;position:relative;vertical-align:top;width:100%}.jXK9ad-SmKAyb{width:100%}.vB4mjb{-webkit-align-items:center;align-items:center;height:64px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;padding:0 12px;width:100%}.jCzMm{overflow:hidden;overflow-wrap:break-word}@media only screen and (max-width:479px){.vB4mjb{height:48px;padding:0 6px}.vB4mjb.phf0q{-webkit-flex-direction:column;flex-direction:column;height:96px}.jCzMm{margin-top:4px;margin-bottom:12px;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;width:100%}.vKRmoe{margin-bottom:8px}.vB4mjb .vKRmoe{padding-left:0}}.vKRmoe{display:-webkit-box;display:-webkit-flex;display:flex;padding-left:23px}.L6cTce{display:none!important}.mmYdsb{-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);height:50%;left:50%;max-height:96px;max-width:72px;position:absolute;top:50%;width:50%}.WIdY2d{line-height:0;position:relative;width:100%}.MNMUHc{display:inline-block;position:relative;vertical-align:top;width:0}.YMEQtf{border:none;bottom:0;height:100%;left:0;margin:0;overflow:hidden;padding:0;right:0;top:0;width:100%}.VexwDf{pointer-events:none}.W4jnE{background:#fff}.YMEQtf:not(.DnR2hf){position:absolute}.KfXz0b{border:1px solid #e0e0e0;-webkit-border-radius:2px;border-radius:2px}.JmGwdf{border:1px solid #e0e0e0;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.t0pVcb{height:100%;left:0;padding-bottom:48px;position:absolute;top:0;width:100%}.qWgPxd .t0pVcb{padding-bottom:0}.TZchLb{background-repeat:no-repeat;height:inherit;width:100%;background-position:center top;-webkit-background-size:cover;background-size:cover}.TZchLb.FQ4MFe{background-color:black;background-position:center;-webkit-background-size:contain;background-size:contain}.pHBU0d{background-color:#f5f5f5;bottom:0;position:absolute;width:100%;height:48px;padding:12px;white-space:nowrap}.qWgPxd .pHBU0d{display:none}.pHBU0d.ueBsse{height:100%}.ojy9Ed{position:relative;top:50%;margin-top:-12px;height:24px;font-size:16px;font-weight:300;text-overflow:ellipsis;overflow:hidden}.McKOwe{height:auto;max-height:24px;vertical-align:middle;width:24px}.pB4Yfc{padding-left:8px;vertical-align:middle;white-space:nowrap;width:100%}.DnR2hf{position:relative}.xixgIb{background-color:rgba(245,245,245,1);border:1px solid rgba(100,100,100,0.15);-webkit-border-radius:2px;border-radius:2px;height:100%;width:100%;position:relative}.I1YLrd{height:100px;min-height:60%;position:relative}.N8dEed{color:rgba(100,100,100,1);font-size:14px;padding:0 20px 20px 20px;text-align:center;width:100%}.CWKJXd{color:rgba(100,100,100,1);font-size:14px;font-weight:500;padding:0 0 10px 0;text-align:center;width:100%}.UzswCe.EmVfjc{left:-webkit-calc(50% - 14px);left:calc(50% - 14px);position:absolute;top:-webkit-calc(50% - 14px);top:calc(50% - 14px);z-index:60}::-webkit-scrollbar{height:16px;overflow:visible}::-webkit-scrollbar-button{height:0;width:0}::-webkit-scrollbar-track{background-clip:padding-box;border:solid transparent;border-width:0 0 0 4px}::-webkit-scrollbar-track:horizontal{border-width:4px 0 0}::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.05);-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.1);box-shadow:inset 1px 0 0 rgba(0,0,0,.1)}::-webkit-scrollbar-track:horizontal:hover{-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.1);box-shadow:inset 0 1px 0 rgba(0,0,0,.1)}::-webkit-scrollbar-track:active{background-color:rgba(0,0,0,.05);-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07);box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07)}::-webkit-scrollbar-track:horizontal:active{-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.14),inset 0 -1px 0 rgba(0,0,0,.07);box-shadow:inset 0 1px 0 rgba(0,0,0,.14),inset 0 -1px 0 rgba(0,0,0,.07)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-track:hover{background-color:rgba(255,255,255,.1);-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.2);box-shadow:inset 1px 0 0 rgba(255,255,255,.2)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-track:horizontal:hover{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2);box-shadow:inset 0 1px 0 rgba(255,255,255,.2)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-track:active{background-color:rgba(255,255,255,.1);-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.25),inset -1px 0 0 rgba(255,255,255,.15);box-shadow:inset 1px 0 0 rgba(255,255,255,.25),inset -1px 0 0 rgba(255,255,255,.15)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-track:horizontal:active{-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),inset 0 -1px 0 rgba(255,255,255,.15);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),inset 0 -1px 0 rgba(255,255,255,.15)}::-webkit-scrollbar-thumb{border:solid transparent;border-width:1px 1px 1px 6px;min-height:28px;padding:100px 0 0;-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07);box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset 0 -1px 0 rgba(0,0,0,.07)}::-webkit-scrollbar-thumb:horizontal{border-width:6px 1px 1px;padding:0 0 0 100px;-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset -1px 0 0 rgba(0,0,0,.07);box-shadow:inset 1px 1px 0 rgba(0,0,0,.1),inset -1px 0 0 rgba(0,0,0,.07)}::-webkit-scrollbar-thumb:hover{-webkit-box-shadow:inset 1px 1px 1px rgba(0,0,0,.25);box-shadow:inset 1px 1px 1px rgba(0,0,0,.25)}::-webkit-scrollbar-thumb:active{-webkit-box-shadow:inset 1px 1px 3px rgba(0,0,0,0.35);box-shadow:inset 1px 1px 3px rgba(0,0,0,0.35)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,.3);-webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,.15),inset 0 -1px 0 rgba(255,255,255,.1);box-shadow:inset 1px 1px 0 rgba(255,255,255,.15),inset 0 -1px 0 rgba(255,255,255,.1)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-thumb:horizontal{-webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,.15),inset -1px 0 0 rgba(255,255,255,.1);box-shadow:inset 1px 1px 0 rgba(255,255,255,.15),inset -1px 0 0 rgba(255,255,255,.1)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-thumb:hover{background-color:rgba(255,255,255,.6);-webkit-box-shadow:inset 1px 1px 1px rgba(255,255,255,.37);box-shadow:inset 1px 1px 1px rgba(255,255,255,.37)}.tk3N6e-qrhCuc-to915::-webkit-scrollbar-thumb:active{background-color:rgba(255,255,255,.75);-webkit-box-shadow:inset 1px 1px 3px rgba(255,255,255,.5);box-shadow:inset 1px 1px 3px rgba(255,255,255,.5)}.tk3N6e-qrhCuc-xTH6G::-webkit-scrollbar-track{border-width:0 1px 0 6px}.tk3N6e-qrhCuc-xTH6G::-webkit-scrollbar-track:horizontal{border-width:6px 0 1px}.tk3N6e-qrhCuc-xTH6G::-webkit-scrollbar-track:hover{background-color:rgba(0,0,0,.035);-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.14),inset -1px -1px 0 rgba(0,0,0,.07);box-shadow:inset 1px 1px 0 rgba(0,0,0,.14),inset -1px -1px 0 rgba(0,0,0,.07)}.tk3N6e-qrhCuc-xTH6G.tk3N6e-qrhCuc-to915::-webkit-scrollbar-track:hover{background-color:rgba(255,255,255,.07);-webkit-box-shadow:inset 1px 1px 0 rgba(255,255,255,.25),inset -1px -1px 0 rgba(255,255,255,.15);box-shadow:inset 1px 1px 0 rgba(255,255,255,.25),inset -1px -1px 0 rgba(255,255,255,.15)}.tk3N6e-qrhCuc-xTH6G::-webkit-scrollbar-thumb{border-width:0 1px 0 6px}.tk3N6e-qrhCuc-xTH6G::-webkit-scrollbar-thumb:horizontal{border-width:6px 0 1px}::-webkit-scrollbar-corner{background:transparent}body::-webkit-scrollbar-track-piece{background-clip:padding-box;background-color:#f5f5f5;border:solid #fff;border-width:0 0 0 3px;-webkit-box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07);box-shadow:inset 1px 0 0 rgba(0,0,0,.14),inset -1px 0 0 rgba(0,0,0,.07)}body::-webkit-scrollbar-track-piece:horizontal{border-width:3px 0 0;-webkit-box-shadow:inset 0 1px 0 rgba(0,0,0,.14),inset 0 -1px 0 rgba(0,0,0,.07);box-shadow:inset 0 1px 0 rgba(0,0,0,.14),inset 0 -1px 0 rgba(0,0,0,.07)}body::-webkit-scrollbar-thumb{border-width:1px 1px 1px 5px}body::-webkit-scrollbar-thumb:horizontal{border-width:5px 1px 1px}body::-webkit-scrollbar-corner{background-clip:padding-box;background-color:#f5f5f5;border:solid #fff;border-width:3px 0 0 3px;-webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.14);box-shadow:inset 1px 1px 0 rgba(0,0,0,.14)}html{font-size:16px}ul,ul ul{list-style-type:square}.yaqOZd{-webkit-background-size:cover;background-size:cover;display:table;position:relative;table-layout:fixed;width:100%}.IFuOkc{-webkit-background-size:cover;background-size:cover;display:table;table-layout:fixed}@media only screen and (max-width:767px){.yaqOZd,.IFuOkc{padding-bottom:0;padding-top:0}}@media only screen and (min-width:768px){.yaqOZd:not(.LB7kq):not(.Iju1Ze):not(.WxWicb){padding-bottom:1.5rem;padding-top:1.5rem}}.yaqOZd:before,.IFuOkc:before,.IFuOkc:after,.zfr3Q:before,.baZpAe:before,.Zjiec:before{bottom:0;content:"";display:none;left:0;pointer-events:none;position:absolute;right:0;top:0}.YTv4We:before{bottom:0;content:"";display:none;pointer-events:none;position:absolute;right:0}.j10yRb:before{bottom:0;content:"";display:none;pointer-events:none;position:absolute;right:0;top:0}.IFuOkc{display:table-cell;height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.WFZZBb .jXK9ad{vertical-align:middle}.cJgDec .aw5Odc,.cJgDec .dhtgD:hover,.cJgDec .dhtgD:visited,.LB7kq .aw5Odc,.LB7kq .dhtgD:hover,.LB7kq .dhtgD:visited{color:inherit}.mYVXT{display:table-cell;vertical-align:middle;width:100%}.zfr3Q{font-variant-ligatures:none;margin:0;outline:none;position:relative}.zfr3Q[dir="rtl"]{text-align:right}.TMjjoe:not(.TYR86d){display:block}.qM9fHf{background-color:rgba(0,0,0,0.06);font-family:'Source Code Pro','monospace';font-weight:400}.s1gOZb{background-color:rgba(0,0,0,0.06);border:1px solid rgba(255,255,255,0.12);-webkit-border-radius:3px;border-radius:3px;margin:12px 0 0 0;padding:5px}.FVr0A code{font-family:'Source Code Pro','monospace'}.zfr3Q.FVr0A{line-height:1.4;margin:0}.yaqOZd .zfr3Q:first-child,.zfr3Q:first-child,.BKnRcf:first-child,.UVNKR:first-child,.n8H08c .TYR86d:first-child,.yaqOZd .aP9Z7e:first-child+.zfr3Q,.aP9Z7e:first-child+.zfr3Q{margin-top:0;padding-top:0}.yaqOZd .aP9Z7e:first-child,.aP9Z7e:first-child{margin-bottom:0}.yaqOZd .zfr3Q:last-child,.zfr3Q:last-child,.BKnRcf:last-child,.UVNKR:last-child,.n8H08c .TYR86d:last-child{margin-bottom:0;padding-bottom:0}.n8H08c{padding-left:20px;margin:6px 0 0 0}.n8H08c .n8H08c,.n8H08c .TYR86d{margin:6px 0 0 0}.dhtgD,.PsKE7e,.PsKE7e>div>a,.zfr3Q{color:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;text-decoration:inherit}.IKA38e{padding-right:12px}.hDrhEe{padding-left:12px;vertical-align:middle}.aJHbb{cursor:pointer;overflow:hidden}.aJHbb:focus{outline:0}.dhtgD.rXJpyf,.dhtgD.rXJpyf:hover{color:inherit}.JzO0Vc{width:250px}.jYxBte{list-style-type:none;margin:0;padding:0}.jYxBte ul{list-style-type:none;padding-left:0}.PsKE7e,.aJHbb{display:block;position:relative;text-overflow:ellipsis;white-space:nowrap}.PsKE7e>div{position:relative}.Zjiec{cursor:pointer;position:relative;text-decoration:none;z-index:20}.Zjiec>span{color:inherit;display:block;outline:none;overflow:hidden;position:relative;text-overflow:ellipsis}.TlfmSc{height:56px;max-width:380px;text-overflow:ellipsis;white-space:nowrap}.TlfmSc .QTKDff{display:inline-block;line-height:1;max-width:380px;outline:none;overflow:hidden;padding:16px 12px;text-decoration:none;text-overflow:ellipsis}.YTv4We{color:white;cursor:pointer;height:55px;outline:none;padding:16px 12px;width:48px}.YTv4We:before{height:32px;left:8px;top:12px;width:32px}.j10yRb{bottom:50%;cursor:pointer;display:inline-block;height:24px;left:-36px;outline:none;padding-left:12px;position:absolute;-webkit-transform:translateY(50%);transform:translateY(50%);vertical-align:middle;width:36px}.j10yRb:before{left:12px}.YTv4We.chg4Jd:focus:before,.j10yRb.chg4Jd:focus:before{color:white;display:block;border-style:solid;border-width:1px}.ZXW7w{opacity:.26}a.chg4Jd:focus{outline:0;-webkit-box-shadow:0 0 0 2px #4285f4,0 0 0 3px rgba(255,255,255,0.8);box-shadow:0 0 0 2px #4285f4,0 0 0 3px rgba(255,255,255,0.8)}a.chg4Jd.HB1eCd-X3SwIb-hSRGPd:focus,a.chg4Jd.HB1eCd-X3SwIb-hSRGPd-di8rgd-KBDgbd:focus{-webkit-box-shadow:none;box-shadow:none}a.HB1eCd-X3SwIb-hSRGPd-di8rgd-KBDgbd{padding:2px;margin:-2px}a.HB1eCd-X3SwIb-hSRGPd-di8rgd-KBDgbd:focus{border:1px dashed;padding:1px}a.HB1eCd-X3SwIb-hSRGPd{padding:2px!important;margin:-2px -2px -2px 4px}a.HB1eCd-X3SwIb-hSRGPd:focus{border:1px dashed;padding:1px!important}::-webkit-scrollbar{-webkit-border-radius:100px;background-color:rgba(0,0,0,0);width:9px}::-webkit-scrollbar-thumb{-webkit-border-radius:100px;background:rgba(0,0,0,0.2)}::-webkit-scrollbar-thumb:hover{-webkit-border-radius:100px;background:rgba(0,0,0,0.35)}::-webkit-scrollbar-thumb:active{-webkit-border-radius:4px;background:rgba(0,0,0,0.45)}.wFCWne{transition:transform .45s cubic-bezier(0.4,0.0,0.2,1);height:24px;width:24px}.hlJH0,.HBu6N,.cLAGQe{transition:transform .45s cubic-bezier(0.4,0.0,0.2,1)}.wFCWne path.HBu6N.o0iVae{-webkit-transition:all .45s cubic-bezier(0.4,0.0,0.2,1) ,opacity .45s .45s;transition:all .45s cubic-bezier(0.4,0.0,0.2,1) ,opacity .45s .45s}.wFCWne.o0iVae{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.o0iVae .hlJH0{-webkit-transform:rotate(45deg) translate(0px,5px);transform:rotate(45deg) translate(0px,5px)}.o0iVae .HBu6N{-webkit-transform:rotate(135deg);transform:rotate(135deg);opacity:0}.o0iVae .cLAGQe{-webkit-transform:rotate(135deg) translate(0px,-5px);transform:rotate(135deg) translate(0px,-5px)}.JzO0Vc{-webkit-transition:left .5s cubic-bezier(0.4,0.0,0.2,1);transition:left .5s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition-delay:.125s;transition-delay:.125s;left:-100%;padding-top:56px}.JzO0Vc.oecJfe{-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition:left .5s cubic-bezier(0.4,0.0,0.2,1);transition:left .5s cubic-bezier(0.4,0.0,0.2,1);left:0}.IKA38e{-webkit-transition:left 0s .5s ,opacity .375s .125s cubic-bezier(0.4,0.0,1,1);transition:left 0s .5s ,opacity .375s .125s cubic-bezier(0.4,0.0,1,1);left:-32px;opacity:0;padding-left:36px}.JzO0Vc .IKA38e.r8s4j-R6PoUb{padding-left:36px}.JzO0Vc .IKA38e.r8s4j-ibL1re{padding-left:56px}.JzO0Vc .IKA38e.r8s4j-c5RTEf{padding-left:76px}.JzO0Vc .IKA38e.r8s4j-II5mzb{padding-left:96px}.JzO0Vc .IKA38e.r8s4j-wNfPc{padding-left:116px}.baH5ib .hDrhEe{padding-left:4px}.baH5ib .j10yRb{left:-32px}.oecJfe .IKA38e{-webkit-transition:left .375s cubic-bezier(0.4,0.0,1,1) ,opacity .375s cubic-bezier(0.4,0.0,1,1);transition:left .375s cubic-bezier(0.4,0.0,1,1) ,opacity .375s cubic-bezier(0.4,0.0,1,1);-webkit-transition-delay:1.125s;transition-delay:1.125s;left:0;opacity:1}.oecJfe .jYxBte>li:nth-child(1) .IKA38e{-webkit-transition-delay:.125s;transition-delay:.125s}.oecJfe .jYxBte>li:nth-child(2) .IKA38e{-webkit-transition-delay:.175s;transition-delay:.175s}.oecJfe .jYxBte>li:nth-child(3) .IKA38e{-webkit-transition-delay:.225s;transition-delay:.225s}.oecJfe .jYxBte>li:nth-child(4) .IKA38e{-webkit-transition-delay:.275s;transition-delay:.275s}.oecJfe .jYxBte>li:nth-child(5) .IKA38e{-webkit-transition-delay:.325s;transition-delay:.325s}.oecJfe .jYxBte>li:nth-child(6) .IKA38e{-webkit-transition-delay:.375s;transition-delay:.375s}.oecJfe .jYxBte>li:nth-child(7) .IKA38e{-webkit-transition-delay:.425s;transition-delay:.425s}.oecJfe .jYxBte>li:nth-child(8) .IKA38e{-webkit-transition-delay:.475s;transition-delay:.475s}.oecJfe .jYxBte>li:nth-child(9) .IKA38e{-webkit-transition-delay:.525s;transition-delay:.525s}.oecJfe .jYxBte>li:nth-child(10) .IKA38e{-webkit-transition-delay:.575s;transition-delay:.575s}.oecJfe .jYxBte>li:nth-child(11) .IKA38e{-webkit-transition-delay:.625s;transition-delay:.625s}.oecJfe .jYxBte>li:nth-child(12) .IKA38e{-webkit-transition-delay:.675s;transition-delay:.675s}.oecJfe .jYxBte>li:nth-child(13) .IKA38e{-webkit-transition-delay:.725s;transition-delay:.725s}.oecJfe .jYxBte>li:nth-child(14) .IKA38e{-webkit-transition-delay:.775s;transition-delay:.775s}.oecJfe .jYxBte>li:nth-child(15) .IKA38e{-webkit-transition-delay:.825s;transition-delay:.825s}.oecJfe .jYxBte>li:nth-child(16) .IKA38e{-webkit-transition-delay:.875s;transition-delay:.875s}.oecJfe .jYxBte>li:nth-child(17) .IKA38e{-webkit-transition-delay:.925s;transition-delay:.925s}.oecJfe .jYxBte>li:nth-child(18) .IKA38e{-webkit-transition-delay:.975s;transition-delay:.975s}.oecJfe .jYxBte>li:nth-child(19) .IKA38e{-webkit-transition-delay:1.025s;transition-delay:1.025s}.oecJfe .jYxBte>li:nth-child(20) .IKA38e{-webkit-transition-delay:1.075s;transition-delay:1.075s}.oGuwee{overflow:hidden;position:relative}.VcS63b{-webkit-transition:margin-top .25s cubic-bezier(0.4,0.0,0.2,1);transition:margin-top .25s cubic-bezier(0.4,0.0,0.2,1)}.dvmRw{height:24px;width:24px}.K4B8Y,.MrYMx{transition:transform .25s cubic-bezier(0.4,0.0,0.2,1)}svg.FWGjId .K4B8Y{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}svg.FWGjId .MrYMx{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.Fpy8Db .hDrhEe{white-space:normal}.hDrhEe.HlqNPb.chg4Jd:focus{-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,0.8),inset 0 0 0 3px #4285f4;box-shadow:inset 0 0 0 1px rgba(255,255,255,0.8),inset 0 0 0 3px #4285f4}.PxsaWe{cursor:not-allowed}.VsJjtf{display:inline-block;max-width:300px;overflow:visible;position:relative;text-align:left;-webkit-transition:opacity 0ms 300ms;transition:opacity 0ms 300ms;vertical-align:middle;white-space:nowrap}.RPRy1e .IKA38e{left:0;opacity:1;padding-left:32px}.RPRy1e .oGuwee .IKA38e{padding-left:48px}.jgXgSe{display:inline-block;max-width:240px;position:relative;vertical-align:top}.mBHtvb{cursor:pointer;display:inline-block;margin-left:3px;outline:none;overflow:hidden;padding-left:4px;padding-right:2px;vertical-align:top}.mBHtvb>svg{height:12px;-webkit-transform:scale(2);transform:scale(2);vertical-align:middle;width:12px}.T7RySe .oGuwee{list-style-type:none}.oXBWEc:not([more-menu-item]){margin:0;padding:0}.eWDljc{-webkit-box-shadow:0 0 10px rgba(0,0,0,0.55);box-shadow:0 0 10px rgba(0,0,0,0.55)}.ZmrVpf{display:none}.RPRy1e .G95ACe.IKA38e{padding-left:32px}.G95ACe .j10yRb{display:none}.G95ACe .aJHbb{opacity:.7}.ijMPi{-webkit-transition:height .3s;transition:height .3s;overflow:hidden}.ijMPi .PsKE7e{-webkit-transition:padding-left .3s;transition:padding-left .3s}.PMD4Hd{display:none}.Qrrb5{display:inline-block;overflow:hidden;padding:10px 12px;vertical-align:middle}.Qrrb5>div{display:inline-block;vertical-align:top}.rgLkl{background-color:transparent;cursor:default;display:inline-block;height:2px;position:relative;vertical-align:middle;width:2px}li.VsJjtf:nth-last-child(2) .rgLkl{display:none}.RPRy1e{-webkit-border-radius:2px;border-radius:2px;left:-28px;overflow-y:auto;padding:8px 0;position:absolute;width:240px}.NMm5M{fill:currentColor;-webkit-flex-shrink:0;flex-shrink:0}html[dir="rtl"] .hhikbc{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.DPvwYc{font-family:'Material Icons Extended';font-weight:normal;font-style:normal;font-size:24px;line-height:1;letter-spacing:normal;text-rendering:optimizeLegibility;text-transform:none;display:inline-block;word-wrap:normal;direction:ltr;font-feature-settings:'liga' 1;-webkit-font-smoothing:antialiased}html[dir="rtl"] .sm8sCf{-webkit-transform:scaleX(-1);-webkit-transform:scaleX(-1);transform:scaleX(-1);filter:FlipH}.mr3rhf{width:100%}.mr3rhf:focus{outline:None;cursor:pointer}.Ah1ayc{position:relative;overflow:hidden}.nQBJnb{position:absolute}.xxDasc{width:100%;position:relative}.Eoo44b.Y5FYJe{display:None;cursor:pointer;position:absolute;top:44%;color:white;background-color:#202124;opacity:.7}.Eoo44b:focus{background-color:#5f6368}.Eoo44b:hover{background-color:#5f6368;box-shadow:0 1px 3px 0 rgba(60,64,67,0.302),0 4px 8px 3px rgba(60,64,67,0.149)}.eb4Tkf{right:0;margin-right:10px}.B43yq{margin-left:10px}.mr3rhf:hover .HSOwmd .Eoo44b,.mr3rhf:focus .HSOwmd .Eoo44b,.mr3rhf:active .HSOwmd .Eoo44b,.mr3rhf.RDNzqc .HSOwmd .Eoo44b{display:block}.nvYnLe{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center}.zwQnHc{background:white;bottom:0;-webkit-border-radius:5px;border-radius:5px;color:navy;font-size:.8rem;left:0;opacity:.8;padding:0 1em;position:fixed;z-index:90}.Ijt6Ff{font-size:1rem;cursor:pointer}.NBxL9e{-webkit-transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;background-color:rgba(0,0,0,0.502);bottom:0;left:0;opacity:0;position:fixed;right:0;top:0;z-index:5000}.NBxL9e.iWO5td{-webkit-transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);opacity:1}.QSj8ac{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;bottom:0;left:0;padding:0 5%;position:absolute;right:0;top:0;-webkit-transition:-webkit-transform .4s cubic-bezier(0.4,0.0,0.2,1);transition:-webkit-transform .4s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition:transform .4s cubic-bezier(0.4,0.0,0.2,1);transition:transform .4s cubic-bezier(0.4,0.0,0.2,1)}.bJHJLe,.C40Us{display:block;height:3em}.pdYghb>.bJHJLe,.pdYghb>.C40Us{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.Inn9w{-webkit-flex-shrink:1;flex-shrink:1;max-height:100%}.Inn9w:focus{outline:none}@keyframes quantumWizBoxInkSpread{0%{-webkit-transform:translate(-50%,-50%) scale(.2);transform:translate(-50%,-50%) scale(.2)}to{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2)}}@-webkit-keyframes quantumWizBoxInkSpread{0%{-webkit-transform:translate(-50%,-50%) scale(.2);transform:translate(-50%,-50%) scale(.2)}to{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2)}}@keyframes quantumWizIconFocusPulse{0%{-webkit-transform:translate(-50%,-50%) scale(1.5);transform:translate(-50%,-50%) scale(1.5);opacity:0}to{-webkit-transform:translate(-50%,-50%) scale(2);transform:translate(-50%,-50%) scale(2);opacity:1}}@-webkit-keyframes quantumWizIconFocusPulse{0%{-webkit-transform:translate(-50%,-50%) scale(1.5);transform:translate(-50%,-50%) scale(1.5);opacity:0}to{-webkit-transform:translate(-50%,-50%) scale(2);transform:translate(-50%,-50%) scale(2);opacity:1}}@keyframes quantumWizRadialInkSpread{0%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}to{-webkit-transform:scale(2.5);transform:scale(2.5);opacity:1}}@-webkit-keyframes quantumWizRadialInkSpread{0%{-webkit-transform:scale(1.5);transform:scale(1.5);opacity:0}to{-webkit-transform:scale(2.5);transform:scale(2.5);opacity:1}}@keyframes quantumWizRadialInkFocusPulse{0%{-webkit-transform:scale(2);transform:scale(2);opacity:0}to{-webkit-transform:scale(2.5);transform:scale(2.5);opacity:1}}@-webkit-keyframes quantumWizRadialInkFocusPulse{0%{-webkit-transform:scale(2);transform:scale(2);opacity:0}to{-webkit-transform:scale(2.5);transform:scale(2.5);opacity:1}}.O0WRkf{-webkit-user-select:none;-webkit-transition:background .2s .1s;transition:background .2s .1s;border:0;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;min-width:4em;outline:none;overflow:hidden;position:relative;text-align:center;text-transform:uppercase;-webkit-tap-highlight-color:transparent;z-index:0}.A9jyad{font-size:13px;line-height:16px}.zZhnYe{-webkit-transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);background:#dfdfdf;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2)}.zZhnYe.qs41qe{-webkit-transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition:background .8s;transition:background .8s;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2)}.e3Duub,.e3Duub a,.e3Duub a:hover,.e3Duub a:link,.e3Duub a:visited{background:#4285f4;color:#fff}.HQ8yf,.HQ8yf a{color:#4285f4}.UxubU,.UxubU a{color:#fff}.ZFr60d{position:absolute;top:0;right:0;bottom:0;left:0;background-color:transparent}.O0WRkf.u3bW4e .ZFr60d{background-color:rgba(0,0,0,0.12)}.UxubU.u3bW4e .ZFr60d{background-color:rgba(255,255,255,0.30)}.e3Duub.u3bW4e .ZFr60d{background-color:rgba(0,0,0,0.122)}.HQ8yf.u3bW4e .ZFr60d{background-color:rgba(66,133,244,0.149)}.Vwe4Vb{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.O0WRkf.qs41qe .Vwe4Vb{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.O0WRkf.qs41qe.M9Bg4d .Vwe4Vb{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.O0WRkf.j7nIZb .Vwe4Vb{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.oG5Srb .Vwe4Vb,.zZhnYe .Vwe4Vb{background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.HQ8yf .Vwe4Vb{background-image:radial-gradient(circle farthest-side,rgba(66,133,244,0.251),rgba(66,133,244,0.251) 80%,rgba(66,133,244,0) 100%)}.e3Duub .Vwe4Vb{background-image:radial-gradient(circle farthest-side,#3367d6,#3367d6 80%,rgba(51,103,214,0) 100%)}.UxubU .Vwe4Vb{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.30),rgba(255,255,255,0.30) 80%,rgba(255,255,255,0) 100%)}.O0WRkf.RDPZE{-webkit-box-shadow:none;box-shadow:none;color:rgba(68,68,68,0.502);cursor:default;fill:rgba(68,68,68,0.502)}.zZhnYe.RDPZE{background:rgba(153,153,153,0.102)}.UxubU.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.UxubU.zZhnYe.RDPZE{background:rgba(204,204,204,0.102)}.CwaK9{position:relative}.RveJvd{display:inline-block;margin:.5em}.mUbCce{-webkit-user-select:none;-webkit-transition:background .3s;transition:background .3s;border:0;-webkit-border-radius:50%;border-radius:50%;cursor:pointer;display:inline-block;-webkit-flex-shrink:0;flex-shrink:0;height:48px;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent;width:48px;z-index:0}.mUbCce>.TpQm9d{height:48px;width:48px}.mUbCce.u3bW4e,.mUbCce.qs41qe,.mUbCce.j7nIZb{-webkit-transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,white 100%,black 100%)}.YYBxpf{-webkit-border-radius:0;border-radius:0;overflow:visible}.YYBxpf.u3bW4e,.YYBxpf.qs41qe,.YYBxpf.j7nIZb{-webkit-mask-image:none}.fKz7Od{color:rgba(0,0,0,0.54);fill:rgba(0,0,0,0.54)}.p9Nwte{color:rgba(255,255,255,0.749);fill:rgba(255,255,255,0.749)}.fKz7Od.u3bW4e{background-color:rgba(0,0,0,0.12)}.p9Nwte.u3bW4e{background-color:rgba(204,204,204,0.251)}.YYBxpf.u3bW4e{background-color:transparent}.VTBa7b{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.YYBxpf.u3bW4e .VTBa7b{-webkit-animation:quantumWizIconFocusPulse .7s infinite alternate;animation:quantumWizIconFocusPulse .7s infinite alternate;height:100%;left:50%;top:50%;width:100%;visibility:visible}.mUbCce.qs41qe .VTBa7b{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.mUbCce.qs41qe.M9Bg4d .VTBa7b{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.mUbCce.j7nIZb .VTBa7b{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.fKz7Od .VTBa7b{background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.p9Nwte .VTBa7b{background-image:radial-gradient(circle farthest-side,rgba(204,204,204,0.251),rgba(204,204,204,0.251) 80%,rgba(204,204,204,0) 100%)}.mUbCce.RDPZE{color:rgba(0,0,0,0.26);fill:rgba(0,0,0,0.26);cursor:default}.p9Nwte.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.xjKiLb{position:relative;top:50%}.xjKiLb>span{display:inline-block;position:relative}.I7OXgf{-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;box-shadow:0 1px 3px 0 rgba(60,64,67,0.302),0 4px 8px 3px rgba(60,64,67,0.149);background-color:#fff;-webkit-border-radius:8px;border-radius:8px;max-width:24em;outline:1px solid transparent;overflow:hidden;position:relative;-webkit-transition:-webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .225s cubic-bezier(0.0,0.0,0.2,1);transition:transform .225s cubic-bezier(0.0,0.0,0.2,1)}.I7OXgf.HVo9if{width:256px}.I7OXgf.GKheFe{max-width:100%;width:400px}.I7OXgf.TcAFyb{max-width:100%;width:544px}.xiutKc .I7OXgf{padding:0}.I7OXgf.kdCdqc{-webkit-transition:-webkit-transform .15s cubic-bezier(0.4,0.0,1,1);transition:-webkit-transform .15s cubic-bezier(0.4,0.0,1,1);-webkit-transition:transform .15s cubic-bezier(0.4,0.0,1,1);transition:transform .15s cubic-bezier(0.4,0.0,1,1)}.ZEeHrd.CAwICe{-webkit-transform:scale(0.8);transform:scale(0.8)}.ZEeHrd.kdCdqc{-webkit-transform:scale(0.9);transform:scale(0.9)}.l8mKC.CAwICe,.l8mKC.kdCdqc{-webkit-transform:translateY(50%);transform:translateY(50%)}.TsMwdd.CAwICe{-webkit-transform:scale(0.8) translateY(100%);transform:scale(0.8) translateY(100%)}.uBdAJe>.bJHJLe,.uBdAJe>.C40Us,.fwQRxe>.bJHJLe{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.fwQRxe>.C40Us{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2}.rzobpc>.bJHJLe{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0}.rzobpc>.C40Us,.obqKJf>.bJHJLe{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.obqKJf>.I7OXgf{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2}.obqKJf>.C40Us{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.xiutKc{-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;padding:0}.xiutKc>.I7OXgf{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2;-webkit-border-radius:0;border-radius:0;left:0;max-width:100%;right:0}.xiutKc>.C40Us,.xiutKc>.bJHJLe{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;height:0}.df5yGe{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.1px;line-height:24px}.VhQQpd .df5yGe{padding-bottom:0}.xiutKc .df5yGe{display:none}.feojCc{font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:16px;font-weight:500;letter-spacing:.1px;line-height:24px;-webkit-flex-shrink:0;flex-shrink:0;box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;background-color:#fff;border-bottom:#dadce0 1px solid;color:#3c4043;display:none}.xiutKc .feojCc{display:-webkit-box;display:-webkit-flex;display:flex}.Shk6y{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;margin:18px 24px 16px 24px;min-width:0;word-wrap:break-word}.Shk6y.zktgbc{text-align:center}.feojCc .Shk6y{margin:16px}.feojCc .b9xlif{display:none}.jFptUc{display:-webkit-box;display:-webkit-flex;display:flex}.df5yGe .jFptUc{display:none}.NFUcsb .ORmQmd{float:right;margin-right:4px;margin-top:4px}.UYUfn{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2;-webkit-flex-shrink:2;flex-shrink:2;font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;display:block;outline:none;overflow-y:auto;padding:0 24px}.fNxzgd .UYUfn{padding-top:20px}.Niudaf .UYUfn{padding-bottom:24px}.xiutKc .UYUfn{padding:16px}.OE6hId{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;box-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;line-height:0;padding:16px 8px 8px 24px}.xiutKc .OE6hId{display:none}.jzUkrb{box-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;display:none}.xiutKc .jzUkrb{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;margin:0 16px}.ARrCac.O0WRkf.C0oVfc,.OE6hId .O0WRkf.C0oVfc{min-width:64px}.ARrCac+.ARrCac{margin-left:8px}.feojCc .ORmQmd{-webkit-align-self:center;align-self:center;margin:0 0 0 8px;position:initial}.iOct6d{margin-top:8px}.hvREyb{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center}.VnX4Cd .wnIM7,.VnX4Cd .XGSlvc{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;min-width:0}.EJmNoc{font-size:18px;margin-top:6px;margin-bottom:8px}.m961pb .J9fJmf{padding:24px}.H2gdJ{margin-bottom:10px}.IrxBzb,.IrxBzb:focus,.IrxBzb:visited{color:inherit;display:block;fill:inherit;outline:none;stroke:inherit;text-decoration:none}.uArJ5e.u3bW4e{outline:1px solid transparent}.UQuaGc{transition:box-shadow 280ms cubic-bezier(0.4,0.0,0.2,1);-webkit-font-smoothing:antialiased;-webkit-user-select:none;-webkit-transition:background .2s .1s;transition:background .2s .1s;border:0;-webkit-border-radius:4px;border-radius:4px;color:#5f6368;cursor:pointer;display:inline-block;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:36px;text-decoration:none;text-transform:none;min-width:auto;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent;z-index:0}.UQuaGc.qs41qe{transition:box-shadow 280ms cubic-bezier(0.4,0.0,0.2,1)}.DRsGyd{font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:13px;font-weight:500;letter-spacing:.25px;line-height:24px;text-decoration:none;text-transform:none}.UQuaGc.TuHiFd{width:100%}.TuHiFd .l4V7wb{-webkit-justify-content:center;justify-content:center}.Y5sE8d{background:#1a73e8;color:#fff}.UQuaGc.Y5sE8d.qs41qe{box-shadow:0 3px 5px -1px rgba(26,115,232,0.2),0 6px 10px 0 rgba(26,115,232,0.141),0 1px 18px 0 rgba(26,115,232,0.122)}.An19kf{background:#e8f0fe;color:#1967d2}.UQuaGc.An19kf.qs41qe{box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.141),0 1px 18px 0 rgba(0,0,0,0.122)}.l3F1ye,.l3F1ye .TpQm9d{color:#1a73e8}.j6PN2,.j6PN2 .TpQm9d{color:#e8eaed}.j6PN2.l3F1ye,.j6PN2.l3F1ye .TpQm9d{color:#8ab4f8}.j6PN2.l3F1ye.qs41qe,.j6PN2.l3F1ye.qs41qe .TpQm9d{color:#aecbfa}.AeAAkf{border:1px #e8eaed solid;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1a73e8;height:36px;line-height:34px}.AeAAkf.DRsGyd{height:24px;line-height:22px}.AeAAkf.qs41qe{box-shadow:0 2px 1px -1px rgba(26,115,232,0.2),0 1px 1px 0 rgba(26,115,232,0.141),0 1px 3px 0 rgba(26,115,232,0.122);border:none}.AeAAkf .CLZ2pd{color:#1a73e8}.Y5sE8d .TpQm9d,.Y5sE8d .TpQm9d:hover,.Y5sE8d .TpQm9d:link,.Y5sE8d .TpQm9d:visited{color:#fff}.An19kf .TpQm9d,.An19kf .TpQm9d:hover,.An19kf .TpQm9d:link,.An19kf .TpQm9d:visited{color:#1967d2}.YhQJj{box-shadow:0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122);background-color:#fff;color:#1a73e8}.YhQJj.qs41qe{box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.141),0 1px 18px 0 rgba(0,0,0,0.122)}.YhQJj .CLZ2pd{color:#1a73e8}.e19J0b{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#5f6368;opacity:0}.j6PN2 .e19J0b{background-color:#e8eaed}.j6PN2.l3F1ye .e19J0b{background-color:#8ab4f8}.Y5sE8d .e19J0b{background-color:#fff}.An19kf .e19J0b{background-color:#1a73e8}.l3F1ye .e19J0b,.AeAAkf .e19J0b,.YhQJj .e19J0b{background-color:#4285f4}.UQuaGc:hover .e19J0b{opacity:.04}.AeAAkf:hover{border-color:#d2e3fc}.Y5sE8d:hover{box-shadow:0 2px 1px -1px rgba(26,115,232,0.2),0 1px 1px 0 rgba(26,115,232,0.141),0 1px 3px 0 rgba(26,115,232,0.122)}.An19kf:hover{box-shadow:0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122)}.j6PN2:hover .e19J0b{opacity:.04}.Y5sE8d:hover .e19J0b{opacity:.08}.UQuaGc.u3bW4e .e19J0b{opacity:.12}.AeAAkf.u3bW4e{border-color:#d2e3fc}.j6PN2.u3bW4e .e19J0b{opacity:.12}.Y5sE8d.u3bW4e .e19J0b{opacity:.24}.UQuaGc.u3bW4e:hover .e19J0b{opacity:.155}.j6PN2.u3bW4e:hover .e19J0b{opacity:.155}.Y5sE8d.u3bW4e:hover .e19J0b{opacity:.3}.UQuaGc.RDPZE .e19J0b{opacity:0}.Fvio9d{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.UQuaGc.qs41qe .Fvio9d{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.UQuaGc.qs41qe.M9Bg4d .Fvio9d{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.UQuaGc.j7nIZb .Fvio9d{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.kCyAyd .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.l3F1ye .Fvio9d,.AeAAkf .Fvio9d,.YhQJj .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(66,133,244,0.161),rgba(66,133,244,0.161) 80%,rgba(66,133,244,0) 100%)}.An19kf .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(26,115,232,0.161),rgba(26,115,232,0.161) 80%,rgba(26,115,232,0) 100%)}.j6PN2 .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(232,234,237,0.161),rgba(232,234,237,0.161) 80%,rgba(232,234,237,0) 100%)}.j6PN2.l3F1ye .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(174,203,250,0.161),rgba(174,203,250,0.161) 80%,rgba(174,203,250,0) 100%)}.Y5sE8d .Fvio9d{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.322),rgba(255,255,255,0.322) 80%,rgba(255,255,255,0) 100%)}.UQuaGc.RDPZE{-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,0.38);cursor:default;fill:rgba(0,0,0,0.38)}.j6PN2.RDPZE{color:rgba(255,255,255,0.38);fill:rgba(255,255,255,0.38)}.AeAAkf.RDPZE,.AeAAkf.RDPZE:hover{border-color:rgba(0,0,0,0.12)}.Y5sE8d.RDPZE,.YhQJj.RDPZE,.An19kf.RDPZE{background:rgba(0,0,0,0.12)}.l4V7wb{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.l4V7wb .NPEfkd{display:inline-block;margin:0}.kCyAyd .l4V7wb,.l3F1ye .l4V7wb{padding:0 8px}.AeAAkf .l4V7wb{padding:0 23px}.AeAAkf.qs41qe .l4V7wb{padding:1px 24px}.Y5sE8d .l4V7wb,.YhQJj .l4V7wb,.An19kf .l4V7wb{padding:0 24px}.DRsGyd.AeAAkf .l4V7wb{padding:0 11px}.DRsGyd.AeAAkf.qs41qe .l4V7wb{padding:1px 12px}.DRsGyd.Y5sE8d .l4V7wb,.DRsGyd.YhQJj .l4V7wb{padding:0 12px}.l4V7wb.cd29Sd{padding:0 16px 0 12px}.l4V7wb.cd29Sd.olttVd{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:horizontal;box-orient:horizontal;-webkit-flex-direction:row-reverse;flex-direction:row-reverse;padding:0 12px 0 16px}.AeAAkf.qs41qe .cd29Sd.l4V7wb{padding:1px 16px 1px 12px}.AeAAkf.qs41qe .cd29Sd.olttVd.l4V7wb{padding:1px 12px 1px 16px}.AeAAkf .cd29Sd.l4V7wb{padding:0 15px 0 11px}.AeAAkf .cd29Sd.olttVd.l4V7wb{padding:0 -webkit-calc(12px - 1px) 0 -webkit-calc(16px - 1px);padding:0 0;padding:0 calc(12px - 1px) 0 calc(16px - 1px)}.E6FpNe{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;color:currentcolor;fill:currentcolor;margin-right:8px}.l4V7wb.olttVd .E6FpNe{margin-left:8px;margin-right:0}.Y5FYJe{-webkit-user-select:none;-webkit-transition:background .3s;transition:background .3s;border:0;-webkit-border-radius:50%;border-radius:50%;cursor:pointer;display:inline-block;-webkit-flex-shrink:0;flex-shrink:0;height:48px;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent;width:48px;z-index:0}.Y5FYJe>.TpQm9d{display:-webkit-box;display:-webkit-flex;display:flex;height:48px;width:48px}.Y5FYJe.u3bW4e,.Y5FYJe.qs41qe,.Y5FYJe.j7nIZb{-webkit-transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,white 100%,black 100%)}.L23pJb{overflow:visible}.L23pJb.u3bW4e,.L23pJb.qs41qe,.L23pJb.j7nIZb{-webkit-mask-image:none}.Y5FYJe:hover{background-color:rgba(95,99,104,0.039)}.Y5FYJe.RDPZE:hover{background-color:transparent}.VsxsTb:hover{background-color:rgba(232,234,237,0.039)}.OZ6W0d:hover{background-color:rgba(66,133,244,0.039)}.cjq2Db{color:#5f6368;fill:#5f6368}.VsxsTb{color:#e8eaed;fill:#e8eaed}.OZ6W0d{color:#1a73e8;fill:#1a73e8}.cjq2Db.u3bW4e{background-color:rgba(95,99,104,0.122)}.cjq2Db.u3bW4e:hover{background-color:rgba(95,99,104,0.157)}.VsxsTb.u3bW4e{background-color:rgba(232,234,237,0.122)}.VsxsTb.u3bW4e:hover{background-color:rgba(232,234,237,0.157)}.OZ6W0d.u3bW4e{background-color:rgba(66,133,244,0.122)}.OZ6W0d.u3bW4e:hover{background-color:rgba(66,133,244,0.157)}.L23pJb.u3bW4e{background-color:transparent}.PDXc1b{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.L23pJb.u3bW4e .PDXc1b{-webkit-animation:quantumWizIconFocusPulse .7s infinite alternate;animation:quantumWizIconFocusPulse .7s infinite alternate;height:100%;left:50%;top:50%;width:100%;visibility:visible}.Y5FYJe.qs41qe .PDXc1b{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.Y5FYJe.qs41qe.M9Bg4d .PDXc1b{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.Y5FYJe.j7nIZb .PDXc1b{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.cjq2Db .PDXc1b{background-image:radial-gradient(circle farthest-side,rgba(95,99,104,0.161),rgba(95,99,104,0.161) 80%,rgba(95,99,104,0) 100%)}.VsxsTb .PDXc1b{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.161),rgba(255,255,255,0.161) 80%,rgba(255,255,255,0) 100%)}.OZ6W0d .PDXc1b{background-image:radial-gradient(circle farthest-side,rgba(66,133,244,0.161),rgba(66,133,244,0.161) 80%,rgba(66,133,244,0) 100%)}.Y5FYJe.RDPZE{color:#9aa0a6;fill:#9aa0a6;cursor:default}.VsxsTb.RDPZE{color:rgba(255,255,255,0.38);fill:rgba(255,255,255,0.38)}.XuQwKc{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;height:100%;-webkit-justify-content:center;justify-content:center;position:relative;width:100%}.GmuOkf{display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.hRUMVb{display:inline-block;position:relative;width:32px;height:32px}.eZj3ab{position:absolute;width:0;height:0;overflow:hidden}.EjqBzf{width:100%;height:100%}.hRUMVb.qs41qe .EjqBzf{-webkit-animation:spinner-container-rotate 1568ms linear infinite;-webkit-animation:spinner-container-rotate 1568ms linear infinite;animation:spinner-container-rotate 1568ms linear infinite}.xgjrdc{position:absolute;width:100%;height:100%;opacity:0}.W16UYe{border-color:#1a73e8}.Z3wgcd{border-color:#d93025}.YAHIzf{border-color:#f9ab00}.zd0Iye{border-color:#1e8e3e}.hRUMVb.qs41qe .xgjrdc.W16UYe{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.hRUMVb.qs41qe .xgjrdc.Z3wgcd{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.hRUMVb.qs41qe .xgjrdc.YAHIzf{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.hRUMVb.qs41qe .xgjrdc.zd0Iye{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.lUa73{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.lUa73 .O8fgAf{width:1000%;left:-450%}.NzjLhf{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;width:50%;height:100%;overflow:hidden;border-color:inherit}.NzjLhf.GBKMJf{left:0%}.NzjLhf.W8OIte{left:50%}.NzjLhf .O8fgAf{width:200%}.O8fgAf{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;border-width:4px;border-style:solid;border-color:inherit;border-bottom-color:transparent;-webkit-border-radius:50%;border-radius:50%;-webkit-animation:none;-webkit-animation:none;animation:none}.NzjLhf.GBKMJf .O8fgAf{border-right-color:transparent;-webkit-transform:rotate(129deg);-webkit-transform:rotate(129deg);transform:rotate(129deg)}.NzjLhf.W8OIte .O8fgAf{left:-100%;border-left-color:transparent;-webkit-transform:rotate(-129deg);-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.hRUMVb.qs41qe .NzjLhf.GBKMJf .O8fgAf{-webkit-animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.hRUMVb.qs41qe .NzjLhf.W8OIte .O8fgAf{-webkit-animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.hRUMVb.sf4e6b .EjqBzf{-webkit-animation:spinner-container-rotate 400ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1);-webkit-animation:spinner-container-rotate 400ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1);animation:spinner-container-rotate 400ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1)}@keyframes spinner-container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes spinner-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes spinner-blue-fade-in-out{0%{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@-webkit-keyframes spinner-blue-fade-in-out{0%{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes spinner-red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}}@-webkit-keyframes spinner-red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}}@keyframes spinner-yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}}@-webkit-keyframes spinner-yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}}@keyframes spinner-green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@-webkit-keyframes spinner-green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@keyframes spinner-left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes spinner-left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@keyframes spinner-right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}@-webkit-keyframes spinner-right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}@keyframes spinner-fade-out{0%{opacity:.99}to{opacity:0}}@-webkit-keyframes spinner-fade-out{0%{opacity:.99}to{opacity:0}}@keyframes agmTextInputRemoveUnderline{0%{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}to{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:0}}@-webkit-keyframes agmTextInputRemoveUnderline{0%{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}to{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:0}}@keyframes agmTextInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes agmTextInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.jsbB5e{-webkit-user-select:none;-webkit-tap-highlight-color:transparent;display:inline-block;outline:none;width:280px}.jsbB5e.mXfoO{width:100%}.Yalane{min-height:1.5em;position:relative;vertical-align:top}.fWf7qe .Yalane{background-color:#f8f9fa;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0}.fWf7qe.RDPZE .Yalane{background-color:rgba(248,249,250,0.38)}.fWf7qe:not(.RDPZE):hover .Yalane{background-color:#f1f3f4;cursor:pointer}.AkVYk .Yalane{-webkit-border-radius:4px;border-radius:4px}.Y6Mzcf{display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.AkVYk .Yalane:before{border:1px solid #dadce0;-webkit-border-radius:4px;border-radius:4px;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:0}.AkVYk.u3bW4e .Yalane:before{border:2px solid #1a73e8}.AkVYk.IYewr .Yalane:before{border:2px solid #d93025}.AkVYk.IYewr.RDPZE .Yalane:before{border:2px solid rgba(217,48,37,0.38)}.hqfVKd{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;background-color:transparent;border:none;-webkit-box-sizing:content-box;box-sizing:content-box;caret-color:#1a73e8;display:block;height:24px;min-height:24px;margin:0;outline:none;overflow-y:visible;overflow-x:hidden;padding:16px;resize:none;white-space:pre-wrap;word-wrap:break-word;z-index:1}.jsbB5e.IYewr .hqfVKd{caret-color:#d93025}.jsbB5e.IYewr.RDPZE .hqfVKd{caret-color:rgba(217,48,37,0.38)}.fWf7qe:not(.yaevDc) .hqfVKd{padding:23px 16px 9px 16px}.jsbB5e.KoF8Ce .hqfVKd,.fWf7qe.KoF8Ce:not(.yaevDc) .hqfVKd{padding-bottom:0}.fWf7qe.u3bW4e .Yalane,.fWf7qe.CDELXb .Yalane,.fWf7qe.IhU0Je .Yalane{padding-top:23px}.AkVYk.u3bW4e .Yalane,.AkVYk.CDELXb .Yalane,.AkVYk.IhU0Je .Yalane,.jsbB5e.IbzNie.yaevDc .Yalane,.fWf7qe.u3bW4e.yaevDc .Yalane,.fWf7qe.CDELXb.yaevDc .Yalane{padding-top:16px}.jsbB5e.u3bW4e .hqfVKd,.jsbB5e.CDELXb.yaevDc .hqfVKd,.jsbB5e.IbzNie.yaevDc .hqfVKd,.fWf7qe:not(.yaevDc).u3bW4e .hqfVKd,.AkVYk:not(.yaevDc).u3bW4e .hqfVKd,.fWf7qe:not(.yaevDc).CDELXb .hqfVKd,.AkVYk:not(.yaevDc).CDELXb .hqfVKd,.fWf7qe:not(.yaevDc).IhU0Je .hqfVKd,.AkVYk:not(.yaevDc).IhU0Je .hqfVKd{padding-top:0}.hqfVKd.bhfTYe{text-align:center}.jsbB5e.RDPZE .hqfVKd{color:rgba(60,64,67,0.38)}.oQ5Hqe{background-color:#80868b;bottom:0;height:1px;left:0;margin:0;padding:0;position:absolute;width:100%}.aCxcAe{-webkit-transform:scaleX(0);transform:scaleX(0);background-color:#1a73e8;bottom:0;height:2px;left:0;margin:0;padding:0;position:absolute;width:100%}.fWf7qe.RDPZE .oQ5Hqe{background-color:rgba(128,134,139,0.38)}.AkVYk .oQ5Hqe,.AkVYk .aCxcAe{display:none}.jsbB5e.IYewr>.Yalane>.oQ5Hqe,.jsbB5e.IYewr>.Yalane>.aCxcAe{background-color:#d93025;height:2px}.jsbB5e.IYewr.RDPZE>.Yalane>.oQ5Hqe,.jsbB5e.IYewr.RDPZE>.Yalane>.aCxcAe{background-color:rgba(217,48,37,0.38)}.jsbB5e .aCxcAe.Y2Zypf{-webkit-animation:agmTextInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:agmTextInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1)}.jsbB5e.u3bW4e>.Yalane>.aCxcAe{-webkit-animation:agmTextInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:agmTextInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);-webkit-transform:scaleX(1);transform:scaleX(1)}.CYSZae{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;-webkit-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition:all .3s cubic-bezier(0.4,0,0.2,1);transition:all .3s cubic-bezier(0.4,0,0.2,1);-webkit-transition-property:color,top,transform;transition-property:color,top,transform;color:#5f6368;left:16px;overflow:hidden;pointer-events:none;position:absolute;right:16px;text-overflow:ellipsis;top:16px;white-space:nowrap;z-index:2}.fWf7qe.u3bW4e>.Yalane>.CYSZae,.fWf7qe.CDELXb>.Yalane>.CYSZae,.fWf7qe.IhU0Je>.Yalane>.CYSZae{-webkit-transform:scale(.75) translateY(-20px);transform:scale(.75) translateY(-20px)}.AkVYk .CYSZae{background-color:white;padding:2px 4px;left:12px;max-width:-webkit-calc(100% - 32px);max-width:calc(100% - 32px);top:14px;right:unset}.AkVYk.u3bW4e>.Yalane>.CYSZae,.AkVYk.CDELXb>.Yalane>.CYSZae,.AkVYk.IhU0Je>.Yalane>.CYSZae{-webkit-transform:scale(.75) translateY(-41px);transform:scale(.75) translateY(-41px)}.jsbB5e.u3bW4e .CYSZae{color:#1a73e8}.jsbB5e.RDPZE .CYSZae{color:rgba(60,64,67,0.38)}.jsbB5e.IYewr .CYSZae,.jsbB5e.u3bW4e.IYewr .CYSZae{color:#d93025}.jsbB5e.RDPZE.IYewr .Yalane .CYSZae{color:rgba(217,48,37,0.38)}.sLGmhc{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;color:#9aa0a6;left:16px;overflow:hidden;pointer-events:none;position:absolute;right:16px;text-overflow:ellipsis;top:16px;white-space:nowrap;z-index:2}.jsbB5e.RDPZE .sLGmhc{color:rgba(154,160,166,0.38)}.fWf7qe:not(.yaevDc) .sLGmhc{top:23px}.jsbB5e.CDELXb>.Yalane>.sLGmhc{display:none}.YQwhRe{font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:16px;-webkit-tap-highlight-color:transparent;height:16px;margin-left:auto;padding-bottom:4px;padding-right:16px;pointer-events:none;text-align:right;white-space:nowrap}.jsbB5e.sT3Fhb{padding-bottom:4px}.yJqEpe,.JmRlzf:not(:empty){-webkit-tap-highlight-color:transparent;font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:16px;-webkit-flex:1 1 auto;flex:1 1 auto;min-height:16px;padding:4px 16px}.jsbB5e.sT3Fhb .K7PyWb{display:-webkit-box;display:-webkit-flex;display:flex}.JmRlzf{pointer-events:none;color:#5f6368}.YQwhRe{color:#5f6368}.jsbB5e.RDPZE .JmRlzf,.jsbB5e.RDPZE .YQwhRe{color:rgba(95,99,104,0.38)}.yJqEpe{color:#d93025}.jsbB5e.RDPZE .yJqEpe{color:rgba(217,48,37,0.38)}.jsbB5e.k0tWj .JmRlzf,.jsbB5e:not(.k0tWj) .JmRlzf:not(:empty)+.yJqEpe{display:none}.W9wDc{-webkit-user-select:none;-webkit-tap-highlight-color:transparent;display:inline-block;outline:none;width:280px}.W9wDc.YcPWMc{width:100%}.n9IS1{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;position:relative}.W9wDc.F5VHze .n9IS1,.W9wDc.F5VHze .FtBNWb{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.HyS0Qd .n9IS1{background-color:#f8f9fa;-webkit-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;height:56px}.HyS0Qd.RDPZE .n9IS1{background-color:rgba(248,249,250,0.38)}.HyS0Qd:not(.RDPZE):hover .n9IS1{background-color:#f1f3f4;cursor:pointer}.D3oBEe .n9IS1:before{-webkit-border-radius:4px;border-radius:4px;border:1px solid #dadce0;bottom:0;content:"";left:0;position:absolute;right:0;top:0;z-index:0}.D3oBEe.u3bW4e .n9IS1:before{border:2px solid #1a73e8}.D3oBEe.IYewr .n9IS1:before{border:2px solid #d93025}.D3oBEe.IYewr.RDPZE .n9IS1:before{border-color:rgba(217,48,37,0.38)}.FtBNWb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;cursor:text;min-width:0%;position:relative}.poFWNe{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;background-color:transparent;border:none;-webkit-box-sizing:content-box;box-sizing:content-box;caret-color:#1a73e8;display:block;height:24px;margin:0;padding:16px;min-width:0%;outline:none;z-index:0}.poFWNe[disabled]{color:rgba(60,64,67,0.38)}.HyS0Qd:not(.yaevDc) .poFWNe{padding:23px 16px 9px 16px}.poFWNe:invalid,.poFWNe:-moz-submit-invalid,.poFWNe:-moz-ui-invalid{-webkit-box-shadow:none;box-shadow:none}.W9wDc.HYyP9e .poFWNe{padding-left:0}.W9wDc.JFSSzd .poFWNe{padding-left:4px}.W9wDc.svmwUe:not(.F5VHze) .poFWNe{padding-right:0}.W9wDc.svmwUe.F5VHze .poFWNe{padding-right:0}.W9wDc.vkREqc:not(.F5VHze) .poFWNe{padding-right:4px}.W9wDc.vkREqc.F5VHze .poFWNe{padding-right:4px}.W9wDc.IYewr .poFWNe{caret-color:#d93025}.rXTzdc .poFWNe::-ms-clear,.rXTzdc .poFWNe::-ms-reveal{display:none}.CROdRc+.poFWNe{padding-left:2px}.AKIybd{background-color:#80868b;bottom:0;height:1px;left:0;margin:0;padding:0;position:absolute;width:100%}.AKIybd:before{content:"";position:absolute;top:0;bottom:-1px;left:0;right:0;border-bottom:1px solid rgba(0,0,0,0);pointer-events:none}.HyS0Qd.RDPZE .AKIybd{background-color:rgba(128,134,139,0.38)}.cWL65e{-webkit-transform:scaleX(0);transform:scaleX(0);background-color:#1a73e8;bottom:0;height:2px;left:0;margin:0;padding:0;position:absolute;width:100%}.D3oBEe .AKIybd,.D3oBEe .cWL65e{display:none}.W9wDc.IYewr .AKIybd,.W9wDc.IYewr .cWL65e{background-color:#d93025;height:2px}.W9wDc.IYewr.RDPZE .AKIybd,.W9wDc.IYewr.RDPZE .cWL65e{background-color:rgba(217,48,37,0.38)}.poFWNe[disabled]~.AKIybd{background:none;border-bottom:1px dotted #dadce0}.cWL65e.Y2Zypf{-webkit-animation:agmTextInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:agmTextInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1)}.W9wDc.u3bW4e .cWL65e{-webkit-animation:agmTextInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:agmTextInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);-webkit-transform:scaleX(1);transform:scaleX(1)}.qTs5Xc{-webkit-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition:all .3s cubic-bezier(0.4,0,0.2,1);transition:all .3s cubic-bezier(0.4,0,0.2,1);-webkit-transition-property:color,transform;transition-property:color,transform;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;color:#5f6368;left:16px;right:16px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;pointer-events:none;position:absolute;top:16px}.D3oBEe .qTs5Xc{background-color:white;left:12px;max-width:-webkit-calc(100% - 32px);max-width:calc(100% - 32px);padding:2px 4px;right:auto;top:14px}.D3oBEe .poFWNe:not([disabled]):focus~.qTs5Xc,.D3oBEe .poFWNe[badinput="true"]~.qTs5Xc,.W9wDc.D3oBEe.CDELXb .qTs5Xc,.W9wDc.D3oBEe.sM9l1e .qTs5Xc{-webkit-transform:scale(.75) translateY(-41px);transform:scale(.75) translateY(-41px)}.W9wDc.RDPZE .qTs5Xc{color:rgba(60,64,67,0.38)}.W9wDc.HYyP9e .qTs5Xc{left:0}.D3oBEe .n9IS1>.qTs5Xc{left:12px}.HyS0Qd.svmwUe .qTs5Xc{right:0}.poFWNe:not([disabled]):focus~.qTs5Xc,.poFWNe[badinput="true"]~.qTs5Xc,.W9wDc.CDELXb .qTs5Xc,.W9wDc.sM9l1e .qTs5Xc{-webkit-transform:scale(.75) translateY(-20px);transform:scale(.75) translateY(-20px)}.poFWNe:not([disabled]):focus~.qTs5Xc{color:#1a73e8}.W9wDc.IYewr .poFWNe:not([disabled]):focus~.qTs5Xc,.W9wDc.IYewr .n9IS1 .qTs5Xc{color:#d93025}.W9wDc.IYewr.RDPZE .n9IS1 .qTs5Xc{color:rgba(217,48,37,0.38)}.uUUR3b{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;color:#9aa0a6;left:16px;overflow:hidden;pointer-events:none;position:absolute;right:16px;text-overflow:ellipsis;top:16px;white-space:nowrap}.W9wDc.RDPZE .uUUR3b{color:rgba(154,160,166,0.38)}.HyS0Qd:not(.yaevDc) .uUUR3b{top:23px}.W9wDc.CDELXb .uUUR3b{display:none}.W9wDc.HYyP9e .uUUR3b{left:0}.W9wDc.svmwUe .uUUR3b{right:0}.uDjDl{display:-webkit-box;display:-webkit-flex;display:flex}.DAKCob{-webkit-tap-highlight-color:transparent;font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:16px;height:16px;margin-left:auto;padding:4px 12px;pointer-events:none;white-space:nowrap}.uNeeU,.cHUCT:not(:empty){-webkit-tap-highlight-color:transparent;-webkit-flex:1 1 auto;flex:1 1 auto;font-family:Roboto,Arial,sans-serif;font-size:12px;font-weight:400;letter-spacing:.3px;line-height:16px;min-height:16px;padding:4px 16px}.cHUCT{pointer-events:none}.uNeeU{color:#d93025}.W9wDc.RDPZE .uNeeU{color:rgba(217,48,37,0.38)}.cHUCT,.DAKCob{color:#5f6368}.W9wDc.RDPZE .cHUCT,.W9wDc.RDPZE .DAKCob{color:rgba(95,99,104,0.38)}.W9wDc.IYewr .cHUCT,.W9wDc:not(.IYewr) .cHUCT:not(:empty)+.uNeeU{display:none}.hmzrif,.Hzgwd{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;flex-shrink:0;font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;-webkit-align-self:center;align-self:center;color:#80868b;height:24px}.W9wDc.svmwUe:not(.F5VHze) .n9IS1 .hmzrif{padding-right:0}.W9wDc.svmwUe.F5VHze .n9IS1 .hmzrif{padding-right:0}.W9wDc.HYyP9e:not(.F5VHze) .n9IS1 .Hzgwd{padding-left:0}.W9wDc.HYyP9e.F5VHze .n9IS1 .Hzgwd{padding-left:0}.W9wDc.RDPZE .hmzrif,.W9wDc.RDPZE .Hzgwd{opacity:.38}.W9wDc:not(.F5VHze) .hmzrif{padding:16px 16px 16px 0}.W9wDc.F5VHze .hmzrif{padding:16px 16px 16px 0}.W9wDc:not(.F5VHze) .Hzgwd{padding:16px 0 16px 16px}.W9wDc.F5VHze .Hzgwd{padding:16px 0 16px 16px}.HyS0Qd:not(.yaevDc):not(.F5VHze) .hmzrif{padding:24px 16px 8px 0}.HyS0Qd:not(.yaevDc).F5VHze .hmzrif{padding:24px 16px 8px 0}.HyS0Qd:not(.yaevDc):not(.F5VHze) .Hzgwd{padding:24px 0 8px 16px}.HyS0Qd:not(.yaevDc).F5VHze .Hzgwd{padding:24px 0 8px 16px}.Pl5mpf,.GIwIzd{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;line-height:24px;padding:0 12px;position:relative}.CROdRc{-webkit-align-self:center;align-self:center;padding:16px 0 16px 16px}.HyS0Qd:not(.yaevDc) .CROdRc{padding:23px 0 9px 16px}.fb0g6{position:relative}.VLoccc{left:0;padding-left:36px;padding-right:8px;position:fixed;top:0;-webkit-transition:opacity .5s,padding-left .125s;transition:opacity .5s,padding-left .125s;white-space:nowrap;width:100%;z-index:20}.DdtOdf .VLoccc{top:64px}.DdtOdf .RCETm{margin-top:64px}.DdtOdf .JzO0Vc{margin-top:64px;padding-bottom:64px}.ED26l{background-color:green;height:2px;width:100%;position:absolute;top:56px;z-index:20;margin-top:2px;margin-bottom:2px}.DdtOdf .ED26l{top:120px}.RCETm .ED26l{top:0}.DdtOdf .RCETm .ED26l{top:64px}.VLoccc.K5Zlne.QDWEj{padding-right:0}.GAuSPc{color:inherit}.VLoccc.ELAV1d{padding-left:16px;padding-right:16px}.Pvc6xe{display:table;min-width:100%;table-layout:fixed}.zDUgLc{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;-webkit-transition:opacity .125s;transition:opacity .125s;width:100%;z-index:-10}.VLoccc.M5I4Fc{border-bottom:2px solid green}.TlfmSc{display:table-cell;font-size:24px;vertical-align:middle}.QTKDff{display:inline-block;vertical-align:middle}.lzy1Td{display:inline-block;max-height:56px;max-width:225px;padding:8px 4px 8px 12px;vertical-align:middle}@media only screen and (max-width:479px){.TlfmSc>.QTKDff{max-width:-webkit-calc(100vw - 56px);max-width:calc(100vw - 56px)}.p46B7e.QTKDff{display:none}}.JzO0Vc{display:block;height:100%;max-width:80%;overflow-y:auto;position:fixed;z-index:70}.DXsoRd{left:0;position:fixed;top:0;vertical-align:middle;z-index:90}.DdtOdf.b2Iqye .DXsoRd{top:64px}@media only screen and (min-width:480px) and (max-width:767px){.DdtOdf .DXsoRd{top:64px}}@media only screen and (max-width:479px){.DdtOdf .VLoccc,.DdtOdf.b2Iqye .DXsoRd,.DdtOdf .DXsoRd{top:48px}.DdtOdf .RCETm,.DdtOdf .JzO0Vc{margin-top:48px}.DdtOdf.WZv7J .VLoccc,.DdtOdf.WZv7J.b2Iqye .DXsoRd,.DdtOdf.WZv7J .DXsoRd{top:96px}.DdtOdf.WZv7J .RCETm,.DdtOdf.WZv7J .JzO0Vc{margin-top:96px}.DdtOdf .ED26l{top:104px}.DdtOdf .RCETm .ED26l{top:48px}.DdtOdf.WZv7J .ED26l{top:152px}.DdtOdf.WZv7J .RCETm .ED26l{top:96px}}.Mz8gvb{-webkit-transition-delay:1s;transition-delay:1s;-webkit-transition-duration:0s;transition-duration:0s;-webkit-transition-property:z-index;transition-property:z-index;z-index:25}.TxnWlb{-webkit-transition: opacity .5s ,width 0s .5s ,z-index 0s .5s;transition: opacity .5s ,width 0s .5s ,z-index 0s .5s;background-color:black;height:100%;left:0;opacity:0;position:fixed;top:0;width:0}.XPSexb{-webkit-transition:opacity .5s;transition:opacity .5s;opacity:.6;width:100%;z-index:60}.yxgWrb{-webkit-transition:margin-left .5s cubic-bezier(0.4,0.0,0.2,1);transition:margin-left .5s cubic-bezier(0.4,0.0,0.2,1)}.Zjiec{display:none}.r9CsCb{max-height:36px;max-width:100%}.XMyrgf{display:none}.plFg0c{display:table-cell;text-align:right;vertical-align:middle}@media only screen and (min-width:768px){.K5Zlne>.DXsoRd,.K5Zlne>.JzO0Vc,.K5Zlne>.TxnWlb{display:none}.VLoccc.K5Zlne{padding-left:16px;padding-right:16px}}@media only screen and (max-width:767px){.plFg0c{display:none}}@media only screen and (min-width:1280px){.DXsoRd,.TxnWlb,.VLoccc:not(.K5Zlne):not(.ELAV1d){display:none}.Zjiec,.XMyrgf{display:block}.JzO0Vc{left:0;padding-top:0}.yxgWrb{margin-left:250px}.IKA38e{left:0;opacity:1}}.tmEwIf{position:fixed;right:0;z-index:10;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end}.SQqBze{position:fixed;z-index:10;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end}.tmEwIf{top:86px;bottom:86px;-webkit-transition:right .2s ease-in-out,opacity .2s ease-in-out;transition:right .2s ease-in-out,opacity .2s ease-in-out}.sq1sLe{opacity:0}.SQqBze{top:0;bottom:0;background:linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,1));overflow-x:hidden;padding-top:66px;width:100%;right:-100%}.vhAfWb,.cDOFvf{position:relative;height:100%;overflow-x:hidden;overflow-y:auto;text-align:right}.vhAfWb{background:transparent;max-height:420px}.vhAfWb ul,.cDOFvf ul{list-style-type:none;display:inline-block}.O5B6cc{margin:0;position:relative}.SrMKbd{margin:0;position:relative;padding-right:26px}.DwUlsc,.zi9OL{position:relative;display:inline-block;text-decoration:none}.DwUlsc{-webkit-border-radius:4px;border-radius:4px;vertical-align:bottom;margin:1px 0}.zi9OL{color:#434343;font-size:.85rem;font-weight:600;-webkit-border-radius:4px;border-radius:4px}.DwUlsc:hover,.DwUlsc:focus{outline:none}.Z3sm1d{position:absolute;background:transparent;border:1px solid #9e9e9e;-webkit-border-radius:50%;border-radius:50%;height:8px;-webkit-transform:translateY(-50%);transform:translateY(-50%);top:50%;right:12px;width:8px}.DwUlsc:hover>.Z3sm1d{background:#9e9e9e;-webkit-transform:translateY(-50%) scale(1.25);transform:translateY(-50%) scale(1.25)}.rAEAIc>.Z3sm1d{background:#9e9e9e}.oy5LNb,.Wz2s3b{white-space:nowrap;overflow:hidden}.oy5LNb{width:0}.Wz2s3b{padding:8px 0}.YgVWv .oy5LNb{width:auto}.WyFqCc,.pKrIZc{display:inline-block}.WyFqCc{overflow:hidden;vertical-align:bottom;margin-right:32px;padding:7px;-webkit-border-radius:3px;border-radius:3px;background:rgba(255,255,255,0.85);font-family:Roboto,serif;font-size:13px;color:black}.pKrIZc{padding:.6rem .7rem;-webkit-border-radius:4px;border-radius:4px}.DwUlsc:hover .WyFqCc,.rAEAIc .WyFqCc{background:white;color:#212121;font-weight:500}.deHUh .pKrIZc{background:#111111;color:white}.VbitGd{display:inline-block;height:18px;margin-left:8px;margin-right:3px;vertical-align:bottom}.HlqNPb{white-space:nowrap}.NwiZ9b{padding:8px 16px 16px 0}.NwiZ9b>*:first-child{margin-right:1em}.p4cxUb{margin-top:8px;margin-bottom:6px}.PJNf3e{margin-top:.5em}.HPdh1b{margin-left:1em;margin-top:.5em}.FKF6mc,.FKF6mc:focus{display:block;outline:none;text-decoration:none}.FKF6mc:visited{fill:inherit;stroke:inherit}.U26fgb.u3bW4e{outline:1px solid transparent}.C0oVfc{line-height:20px;min-width:88px}.C0oVfc .RveJvd{margin:8px}.llhEMd{-webkit-transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;background-color:rgba(0,0,0,0.502);bottom:0;left:0;opacity:0;position:fixed;right:0;top:0;z-index:5000}.llhEMd.iWO5td{-webkit-transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);opacity:1}.mjANdc{-webkit-transition:-webkit-transform .4s cubic-bezier(0.4,0.0,0.2,1);transition:-webkit-transform .4s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition:transform .4s cubic-bezier(0.4,0.0,0.2,1);transition:transform .4s cubic-bezier(0.4,0.0,0.2,1);-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;bottom:0;left:0;padding:0 5%;position:absolute;right:0;top:0}.x3wWge,.ONJhl{display:block;height:3em}.eEPege>.x3wWge,.eEPege>.ONJhl{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.J9Nfi{-webkit-flex-shrink:1;flex-shrink:1;max-height:100%}.g3VIld{-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;box-orient:vertical;-webkit-flex-direction:column;flex-direction:column;-webkit-transition:-webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .225s cubic-bezier(0.0,0.0,0.2,1);transition:transform .225s cubic-bezier(0.0,0.0,0.2,1);position:relative;background-color:#fff;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 12px 15px 0 rgba(0,0,0,0.24);box-shadow:0 12px 15px 0 rgba(0,0,0,0.24);max-width:24em;outline:1px solid transparent;overflow:hidden}.vcug3d .g3VIld{padding:0}.g3VIld.kdCdqc{-webkit-transition:-webkit-transform .15s cubic-bezier(0.4,0.0,1,1);transition:-webkit-transform .15s cubic-bezier(0.4,0.0,1,1);-webkit-transition:transform .15s cubic-bezier(0.4,0.0,1,1);transition:transform .15s cubic-bezier(0.4,0.0,1,1)}.Up8vH.CAwICe{-webkit-transform:scale(0.8);transform:scale(0.8)}.Up8vH.kdCdqc{-webkit-transform:scale(0.9);transform:scale(0.9)}.E4P6x.CAwICe,.E4P6x.kdCdqc{-webkit-transform:translateY(50%);transform:translateY(50%)}.vDc8Ic.CAwICe{-webkit-transform:scale(0.8) translateY(100%);transform:scale(0.8) translateY(100%)}.XIJ9Ac>.x3wWge,.XIJ9Ac>.ONJhl,.HhoEBe>.x3wWge{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.HhoEBe>.ONJhl{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2}.Nevtdc>.x3wWge{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0}.Nevtdc>.ONJhl,.t8Vtv>.x3wWge{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.t8Vtv>.g3VIld{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2}.t8Vtv>.ONJhl{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1}.vcug3d{-webkit-box-align:stretch;box-align:stretch;-webkit-align-items:stretch;align-items:stretch;padding:0}.vcug3d>.g3VIld{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2;-webkit-border-radius:0;border-radius:0;left:0;right:0;max-width:100%}.vcug3d>.ONJhl,.vcug3d>.x3wWge{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;height:0}.tOrNgd{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;font:500 20px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;padding:24px 24px 20px 24px}.vcug3d .tOrNgd{display:none}.TNczib{box-pack:justify;-webkit-box-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;-webkit-flex-shrink:0;flex-shrink:0;-webkit-box-shadow:0 3px 4px 0 rgba(0,0,0,0.24);box-shadow:0 3px 4px 0 rgba(0,0,0,0.24);background-color:#455a64;color:white;display:none;font:500 20px Roboto,RobotoDraft,Helvetica,Arial,sans-serif}.vcug3d .TNczib{display:-webkit-box;display:-webkit-flex;display:flex}.PNenzf{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;overflow:hidden;word-wrap:break-word}.TNczib .PNenzf{margin:16px 0}.VY7JQd{height:0}.TNczib .VY7JQd,.tOrNgd .bZWIgd{display:none}.R6Lfte .Wtw8H{-webkit-flex-shrink:0;flex-shrink:0;display:block;margin:-12px -6px 0 0}.PbnGhe{-webkit-box-flex:2;box-flex:2;-webkit-flex-grow:2;flex-grow:2;-webkit-flex-shrink:2;flex-shrink:2;display:block;font:400 14px / 20px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;padding:0 24px;overflow-y:auto}.Whe8ub .PbnGhe{padding-top:24px}.hFEqNb .PbnGhe{padding-bottom:24px}.vcug3d .PbnGhe{padding:16px}.XfpsVe{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-shrink:0;flex-shrink:0;box-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;padding:24px 24px 16px 24px}.vcug3d .XfpsVe{display:none}.OllbWe{box-pack:end;-webkit-box-pack:end;-webkit-justify-content:flex-end;justify-content:flex-end;display:none}.vcug3d .OllbWe{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:start;box-align:start;-webkit-align-items:flex-start;align-items:flex-start;margin:0 16px}.kHssdc.O0WRkf.C0oVfc,.XfpsVe .O0WRkf.C0oVfc{min-width:64px}.kHssdc+.kHssdc{margin-left:8px}.TNczib .kHssdc{color:#fff;margin-top:10px}.TNczib .Wtw8H{margin:4px 24px 4px 0}.TNczib .kHssdc.u3bW4e,.TNczib .Wtw8H.u3bW4e{background-color:rgba(204,204,204,0.251)}.TNczib .kHssdc>.Vwe4Vb,.TNczib .Wtw8H>.VTBa7b{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.30),rgba(255,255,255,0.30) 80%,rgba(255,255,255,0) 100%)}.TNczib .kHssdc.RDPZE,.TNczib .Wtw8H.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.rFrNMe{-webkit-user-select:none;-webkit-tap-highlight-color:transparent;display:inline-block;outline:none;padding-bottom:8px;width:200px}.aCsJod{height:40px;position:relative;vertical-align:top}.aXBtI{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;top:14px}.Xb9hP{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;min-width:0%;position:relative}.A37UZe{-webkit-box-sizing:border-box;box-sizing:border-box;height:24px;line-height:24px;position:relative}.qgcB3c:not(:empty){padding-right:12px}.sxyYjd:not(:empty){padding-left:12px}.whsOnd{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;background-color:transparent;border:none;display:block;font:400 16px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;height:24px;line-height:24px;margin:0;min-width:0%;outline:none;padding:0;z-index:0}.rFrNMe.dm7YTc .whsOnd{color:#fff}.whsOnd:invalid,.whsOnd:-moz-submit-invalid,.whsOnd:-moz-ui-invalid{-webkit-box-shadow:none;box-shadow:none}.I0VJ4d>.whsOnd::-ms-clear,.I0VJ4d>.whsOnd::-ms-reveal{display:none}.i9lrp{background-color:rgba(0,0,0,0.12);bottom:-2px;height:1px;left:0;margin:0;padding:0;position:absolute;width:100%}.i9lrp:before{content:"";position:absolute;top:0;bottom:-2px;left:0;right:0;border-bottom:1px solid rgba(0,0,0,0);pointer-events:none}.rFrNMe.dm7YTc .i9lrp{background-color:rgba(255,255,255,0.70)}.OabDMe{-webkit-transform:scaleX(0);transform:scaleX(0);background-color:#4285f4;bottom:-2px;height:2px;left:0;margin:0;padding:0;position:absolute;width:100%}.rFrNMe.dm7YTc .OabDMe{background-color:#a1c2fa}.rFrNMe.k0tWj .i9lrp,.rFrNMe.k0tWj .OabDMe{background-color:#d50000;height:2px}.rFrNMe.k0tWj.dm7YTc .i9lrp,.rFrNMe.k0tWj.dm7YTc .OabDMe{background-color:#e06055}.whsOnd[disabled]{color:rgba(0,0,0,0.38)}.rFrNMe.dm7YTc .whsOnd[disabled]{color:rgba(255,255,255,0.50)}.whsOnd[disabled]~.i9lrp{background:none;border-bottom:1px dotted rgba(0,0,0,0.38)}.OabDMe.Y2Zypf{-webkit-animation:quantumWizPaperInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:quantumWizPaperInputRemoveUnderline .3s cubic-bezier(0.4,0,0.2,1)}.rFrNMe.u3bW4e .OabDMe{-webkit-animation:quantumWizPaperInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);animation:quantumWizPaperInputAddUnderline .3s cubic-bezier(0.4,0,0.2,1);-webkit-transform:scaleX(1);transform:scaleX(1)}.rFrNMe.sdJrJc>.aCsJod{padding-top:24px}.AxOyFc{-webkit-transform-origin:bottom left;transform-origin:bottom left;-webkit-transition:all .3s cubic-bezier(0.4,0,0.2,1);transition:all .3s cubic-bezier(0.4,0,0.2,1);-webkit-transition-property:color,bottom,transform;transition-property:color,bottom,transform;color:rgba(0,0,0,0.38);font:400 16px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:16px;pointer-events:none;position:absolute;bottom:3px;left:0;width:100%}.whsOnd:not([disabled]):focus~.AxOyFc,.whsOnd[badinput="true"]~.AxOyFc,.rFrNMe.CDELXb .AxOyFc,.rFrNMe.dLgj8b .AxOyFc{-webkit-transform:scale(.75) translateY(-39px);transform:scale(.75) translateY(-39px)}.whsOnd:not([disabled]):focus~.AxOyFc{color:#4285f4}.rFrNMe.dm7YTc .whsOnd:not([disabled]):focus~.AxOyFc{color:#a1c2fa}.rFrNMe.k0tWj .whsOnd:not([disabled]):focus~.AxOyFc{color:#d50000}.ndJi5d{color:rgba(0,0,0,0.38);font:400 16px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;max-width:100%;overflow:hidden;pointer-events:none;position:absolute;text-overflow:ellipsis;top:2px;left:0;white-space:nowrap}.rFrNMe.CDELXb .ndJi5d{display:none}.K0Y8Se{-webkit-tap-highlight-color:transparent;font:400 12px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;height:16px;margin-left:auto;padding-left:16px;padding-top:8px;pointer-events:none;opacity:.3;white-space:nowrap}.rFrNMe.dm7YTc .AxOyFc,.rFrNMe.dm7YTc .K0Y8Se,.rFrNMe.dm7YTc .ndJi5d{color:rgba(255,255,255,0.70)}.rFrNMe.Tyc9J{padding-bottom:4px}.dEOOab,.ovnfwe:not(:empty){-webkit-tap-highlight-color:transparent;-webkit-flex:1 1 auto;flex:1 1 auto;font:400 12px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;min-height:16px;padding-top:8px}.LXRPh{display:-webkit-box;display:-webkit-flex;display:flex}.ovnfwe{pointer-events:none}.dEOOab{color:#d50000}.rFrNMe.dm7YTc .dEOOab,.rFrNMe.dm7YTc.k0tWj .whsOnd:not([disabled]):focus~.AxOyFc{color:#e06055}.ovnfwe{opacity:.3}.rFrNMe.dm7YTc .ovnfwe{color:rgba(255,255,255,0.70);opacity:1}.rFrNMe.k0tWj .ovnfwe,.rFrNMe:not(.k0tWj) .ovnfwe:not(:empty)+.dEOOab{display:none}@keyframes quantumWizPaperInputRemoveUnderline{0%{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}to{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:0}}@-webkit-keyframes quantumWizPaperInputRemoveUnderline{0%{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:1}to{-webkit-transform:scaleX(1);transform:scaleX(1);opacity:0}}@keyframes quantumWizPaperInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}@-webkit-keyframes quantumWizPaperInputAddUnderline{0%{-webkit-transform:scaleX(0);transform:scaleX(0)}to{-webkit-transform:scaleX(1);transform:scaleX(1)}}.JRtysb{-webkit-user-select:none;-webkit-transition:background .3s;transition:background .3s;border:0;-webkit-border-radius:50%;border-radius:50%;color:#444;cursor:pointer;display:inline-block;fill:#444;-webkit-flex-shrink:0;flex-shrink:0;height:48px;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent;width:48px;z-index:0}.JRtysb.u3bW4e,.JRtysb.qs41qe,.JRtysb.j7nIZb{-webkit-transform:translateZ(0);-webkit-mask-image:-webkit-radial-gradient(circle,white 100%,black 100%)}.JRtysb.RDPZE{cursor:default}.ZDSs1{color:rgba(255,255,255,0.749);fill:rgba(255,255,255,0.749)}.WzwrXb.u3bW4e{background-color:rgba(153,153,153,0.4)}.ZDSs1.u3bW4e{background-color:rgba(204,204,204,0.251)}.NWlf3e{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.JRtysb.iWO5td>.NWlf3e{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.JRtysb.j7nIZb>.NWlf3e{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.WzwrXb.iWO5td>.NWlf3e{background-image:radial-gradient(circle farthest-side,rgba(153,153,153,0.4),rgba(153,153,153,0.4) 80%,rgba(153,153,153,0) 100%)}.ZDSs1.iWO5td>.NWlf3e{background-image:radial-gradient(circle farthest-side,rgba(204,204,204,0.251),rgba(204,204,204,0.251) 80%,rgba(204,204,204,0) 100%)}.WzwrXb.RDPZE{color:rgba(68,68,68,0.502);fill:rgba(68,68,68,0.502)}.ZDSs1.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.MhXXcc{line-height:44px;position:relative}.Lw7GHd{margin:8px;display:inline-block}.hBW7Hb{-webkit-border-radius:18px;border-radius:18px;bottom:16px;color:rgba(32,33,36,0.502);fill:rgba(32,33,36,0.502);display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;height:36px;-webkit-justify-content:flex-start;justify-content:flex-start;left:16px;max-width:36px;position:fixed;-webkit-transition:background-color 300ms ease-in-out,bottom 350ms ease-in-out 1000ms,color 300ms ease-in-out,fill 300ms ease-in-out,left .5s cubic-bezier(0.4,0.0,0.2,1) .125s,max-width 300ms ease-in-out;transition:background-color 300ms ease-in-out,bottom 350ms ease-in-out 1000ms,color 300ms ease-in-out,fill 300ms ease-in-out,left .5s cubic-bezier(0.4,0.0,0.2,1) .125s,max-width 300ms ease-in-out;z-index:55}.b2Iqye.WwqPKb .hBW7Hb{left:266px;-webkit-transition:left .25s cubic-bezier(0.4,0.0,0.2,1) 0s;transition:left .25s cubic-bezier(0.4,0.0,0.2,1) 0s}.QMuaBc{-webkit-border-radius:10px;border-radius:10px;color:rgba(32,33,36,0.502);fill:currentColor;height:28px;margin:4px 6px;width:28px}.LqzjUe:not(.gFG57e) .QMuaBc:not(.qs41qe){background:rgba(255,255,255,0.502)}.LqzjUe:not(.gFG57e) .QMuaBc:not(.qs41qe):hover{background:rgba(218,220,224,0.749);color:rgba(32,33,36,0.502);fill:currentColor}.ynRLnc .hBW7Hb{bottom:-60px;visibility:hidden;-webkit-transition:bottom 350ms ease-in-out,visibility 0s linear 350ms;transition:bottom 350ms ease-in-out,visibility 0s linear 350ms}.ynRLnc .hBW7Hb .QMuaBc{color:#fff;fill:currentColor}.gFG57e .hBW7Hb{width:auto;max-width:1000px;background:rgba(32,33,36,0.749);color:#dadce0;fill:currentColor;z-index:111}.gFG57e .hBW7Hb .QMuaBc{color:#dadce0;fill:currentColor}.QMuaBc svg{color:#3c4043;fill:currentColor;height:20px;width:20px;margin:2px}.LqzjUe.gFG57e .QMuaBc:hover svg{color:#fff;fill:currentColor}.LqzjUe.gFG57e .QMuaBc svg{color:#dadce0;fill:currentColor}.kpPxtd{cursor:pointer}.hUphyc{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-justify-content:space-between;justify-content:space-between;list-style:none;margin:0;overflow:hidden;padding:0}.YkaBSd{display:-webkit-box;display:-webkit-flex;display:flex}.YkaBSd:last-child{margin-right:15px}.J7BuEb{font-family:'Roboto';font-weight:400;line-height:28px;font-size:13px;padding:4px 6px;white-space:nowrap}.gFG57e .QMuaBc:hover,.QMuaBc:hover,.J7BuEb:hover,.dji00c:hover{color:#fff;fill:currentColor}.J7BuEb:focus,.J7BuEb.chg4Jd,.dji00c:focus,a.dji00c:focus{-webkit-box-shadow:none;box-shadow:none;color:#fff;outline:none;position:relative}.LqzjUe.bVEB4e .J7BuEb{cursor:not-allowed}.Q0cSn{height:100vh;left:0;pointer-events:none;position:fixed;top:0;width:100vw}.gFG57e .Q0cSn{pointer-events:all;z-index:110}.iBkmkf{line-height:28px;padding:4px 6px;cursor:default;font-family:'Roboto';font-size:13px;font-weight:400;color:#dadce0}a.dji00c{color:#dadce0;cursor:pointer;text-decoration:none}.dZA9kd{bottom:0;margin:0 0 12px 12px;position:fixed;-webkit-transition:bottom 350ms ease-in-out 1000ms,left .5s cubic-bezier(0.4,0.0,0.2,1) 0s;transition:bottom 350ms ease-in-out 1000ms,left .5s cubic-bezier(0.4,0.0,0.2,1) 0s}.b2Iqye.WwqPKb .dZA9kd{left:266px;-webkit-transition:left .5s cubic-bezier(0.4,0.0,0.2,1) 0s;transition:left .5s cubic-bezier(0.4,0.0,0.2,1) 0s}.dZA9kd.ynRLnc{bottom:-60px;visibility:hidden;-webkit-transition:bottom 350ms ease-in-out,visibility 0s linear 350ms;transition:bottom 350ms ease-in-out,visibility 0s linear 350ms}.zXBiaf{background:rgba(255,255,255,0.502);-webkit-border-radius:17px;border-radius:17px;color:rgba(32,33,36,0.502);fill:currentColor;height:48px;width:48px;-webkit-transition:background-color 300ms ease-in-out,color 300ms ease-in-out,fill 300ms ease-in-out;transition:background-color 300ms ease-in-out,color 300ms ease-in-out,fill 300ms ease-in-out}.zXBiaf svg{color:#3c4043;fill:currentColor;height:30px;width:30px;margin:2px}.zXBiaf .snByac{display:block;margin:auto;height:48px;width:48px}.zXBiaf.WzwrXb.iWO5td .NWlf3e{background:none}.JPdR6b{-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:max-width .2s cubic-bezier(0.0,0.0,0.2,1) ,max-height .2s cubic-bezier(0.0,0.0,0.2,1) ,opacity .1s linear;transition:max-width .2s cubic-bezier(0.0,0.0,0.2,1) ,max-height .2s cubic-bezier(0.0,0.0,0.2,1) ,opacity .1s linear;background:#ffffff;border:0;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);-webkit-box-sizing:border-box;box-sizing:border-box;max-height:100%;max-width:100%;opacity:1;outline:1px solid transparent;z-index:2000}.XvhY1d{overflow-x:hidden;overflow-y:auto;-webkit-overflow-scrolling:touch}.JAPqpe{float:left;padding:16px 0}.JPdR6b.qjTEB{-webkit-transition:left .2s cubic-bezier(0.0,0.0,0.2,1) ,max-width .2s cubic-bezier(0.0,0.0,0.2,1) ,max-height .2s cubic-bezier(0.0,0.0,0.2,1) ,opacity .05s linear,top .2s cubic-bezier(0.0,0.0,0.2,1);transition:left .2s cubic-bezier(0.0,0.0,0.2,1) ,max-width .2s cubic-bezier(0.0,0.0,0.2,1) ,max-height .2s cubic-bezier(0.0,0.0,0.2,1) ,opacity .05s linear,top .2s cubic-bezier(0.0,0.0,0.2,1)}.JPdR6b.jVwmLb{max-height:56px;opacity:0}.JPdR6b.CAwICe{overflow:hidden}.JPdR6b.oXxKqf{-webkit-transition:none;transition:none}.z80M1{color:#222;cursor:pointer;display:block;outline:none;overflow:hidden;padding:0 24px;position:relative}.uyYuVb{display:-webkit-box;display:-webkit-flex;display:flex;font-size:14px;font-weight:400;line-height:40px;height:40px;position:relative;white-space:nowrap}.jO7h3c{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;min-width:0}.JPdR6b.e5Emjc .z80M1{padding-left:64px}.JPdR6b.CblTmf .z80M1{padding-right:48px}.PCdOIb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;background-repeat:no-repeat;height:40px;left:24px;opacity:.54;position:absolute}.z80M1.RDPZE .PCdOIb{opacity:.26}.z80M1.FwR7Pc{outline:1px solid transparent;background-color:#eeeeee}.z80M1.RDPZE{color:#b8b8b8;cursor:default}.z80M1.N2RpBe::before{-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:left;transform-origin:left;content:"\0000a0";display:block;border-right:2px solid #222;border-bottom:2px solid #222;height:16px;left:24px;opacity:.54;position:absolute;top:13%;width:7px;z-index:0}.JPdR6b.CblTmf .z80M1.N2RpBe::before{left:auto;right:16px}.z80M1.RDPZE::before{border-color:#b8b8b8;opacity:1}.aBBjbd{pointer-events:none;position:absolute}.z80M1.qs41qe>.aBBjbd{-webkit-animation:quantumWizBoxInkSpread .3s ease-out;animation:quantumWizBoxInkSpread .3s ease-out;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-image:-webkit-radial-gradient(circle farthest-side,#bdbdbd,#bdbdbd 80%,rgba(189,189,189,0) 100%);background-image:radial-gradient(circle farthest-side,#bdbdbd,#bdbdbd 80%,rgba(189,189,189,0) 100%);-webkit-background-size:cover;background-size:cover;opacity:1;top:0;left:0}.J0XlZe{color:inherit;line-height:40px;padding:0 6px 0 1em}.a9caSc{color:inherit;direction:ltr;padding:0 6px 0 1em}.kCtYwe{border-top:1px solid rgba(0,0,0,0.12);margin:7px 0}.B2l7lc{border-left:1px solid rgba(0,0,0,0.12);display:inline-block;height:48px}@media screen and (max-width:840px){.JAPqpe{padding:8px 0}.z80M1{padding:0 16px}.JPdR6b.e5Emjc .z80M1{padding-left:48px}.PCdOIb{left:12px}}.hVNH5c{box-shadow:0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122);-webkit-border-radius:4px;border-radius:4px;max-width:280px!important}.hVNH5c.llrsB{max-width:none!important}.hVNH5c .K0NPx{max-width:100%;min-width:0!important;padding:8px 0}.hVNH5c.e5Emjc .FeRvI{padding-left:40px}.FeRvI{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;height:32px;min-width:112px;overflow:hidden;padding:0}.MEhszc .FeRvI{height:48px}.FeRvI.N2RpBe{background-color:rgba(26,115,232,0.039)}.FeRvI.N2RpBe:hover{background-color:rgba(26,115,232,0.078)}.hVNH5c:not(.MEhszc) .FeRvI.N2RpBe::before{top:0}.FeRvI.N2RpBe.RDPZE{background-color:transparent}.FeRvI .oJeWuf{font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.1px;-webkit-box-sizing:border-box;box-sizing:border-box;height:32px;line-height:32px;padding:0 16px;width:100%}.MEhszc .FeRvI .oJeWuf{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;height:48px;line-height:48px}.FeRvI .jO7h3c{text-overflow:ellipsis;overflow:hidden}.FeRvI .Ce1Y1c{bottom:6px;height:20px;width:20px;display:-webkit-box;display:-webkit-flex;display:flex;left:16px;opacity:1;top:6px}.MEhszc .FeRvI .Ce1Y1c{bottom:0;height:100%;top:0}.FeRvI .HhLEze{padding:0}.I12f0b:hover{background-color:rgba(32,33,36,0.039)}.I12f0b.RDPZE:hover{background-color:transparent}.hvvWV:hover{background-color:rgba(232,234,237,0.039)}.wwnMtb:hover{background-color:rgba(66,133,244,0.039)}.K2mXPb{color:#5f6368;fill:#5f6368}.hvvWV{color:#e8eaed;fill:#e8eaed}.wwnMtb{color:#1a73e8;fill:#1a73e8}.K2mXPb.u3bW4e{background-color:rgba(32,33,36,0.122)}.K2mXPb.u3bW4e:hover{background-color:rgba(32,33,36,0.157)}.hvvWV.u3bW4e{background-color:rgba(232,234,237,0.122)}.hvvWV.u3bW4e:hover{background-color:rgba(232,234,237,0.157)}.wwnMtb.u3bW4e{background-color:rgba(66,133,244,0.122)}.wwnMtb.u3bW4e:hover{background-color:rgba(66,133,244,0.157)}.I12f0b.RDPZE{color:#9aa0a6;fill:#9aa0a6}.hvvWV.RDPZE{color:rgba(255,255,255,0.38);fill:rgba(255,255,255,0.38)}.I12f0b .oJeWuf{display:-webkit-box;display:-webkit-flex;display:flex;height:100%;width:100%}.I12f0b .snByac{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-justify-content:center;justify-content:center;margin:0}.pxjVId{width:100%;height:100%;border:none}.fFW7wc-OEVmcd{width:100%;height:100%;border:0;overflow:hidden}.fFW7wc.XKSfm-Sx9Kwc-xJ5Hnf{position:absolute;top:0;left:0;background-color:#fff}.fFW7wc.XKSfm-Sx9Kwc{position:absolute;top:0;left:0;background-color:#fff;border:1px solid #acacac;width:auto;padding:0;z-index:1001;overflow:auto;-webkit-box-shadow:rgba(0,0,0,.2) 0 4px 16px;-webkit-box-shadow:rgba(0,0,0,.2) 0 4px 16px;box-shadow:rgba(0,0,0,.2) 0 4px 16px;-webkit-transition:top .5s ease-in-out;-webkit-transition:top .5s ease-in-out;transition:top .5s ease-in-out}.fFW7wc-jJNx8e{position:absolute;z-index:1002}.fFW7wc.XKSfm-Sx9Kwc-bN97Pc{font-size:0;padding:0}.fFW7wc.XKSfm-Sx9Kwc-r4nke{height:0;margin:0}.fFW7wc.XKSfm-Sx9Kwc-r4nke-fmcmS,.fFW7wc.XKSfm-Sx9Kwc-c6xFrd{display:none}.es0ex{position:relative;display:-webkit-box;display:-webkit-flex;display:flex}.es0ex.G03iKb{-webkit-flex-direction:row-reverse;flex-direction:row-reverse}.es0ex.Didmac{-webkit-flex-direction:row;flex-direction:row}.es0ex.XPO28d{-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.es0ex.H1J9xf{-webkit-flex-direction:column;flex-direction:column}.jMzYee.qs41qe{position:absolute;left:0;top:0;z-index:1;opacity:1;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.jMzYee{opacity:0;z-index:0;-webkit-transform:rotate(225deg);transform:rotate(225deg);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.es0ex>.qjhGk{position:absolute;display:inherit;-webkit-flex-direction:inherit;flex-direction:inherit;opacity:0;z-index:1;-webkit-transition:opacity .2s ease-out;transition:opacity .2s ease-out}.es0ex.Didmac>.qjhGk{left:64px}.es0ex.G03iKb>.qjhGk{right:64px}.es0ex.XPO28d>.qjhGk{bottom:64px}.es0ex.H1J9xf>.qjhGk{top:64px}.es0ex>.qjhGk.eLNT1d{display:none}.es0ex>.qjhGk.FVKzAb{opacity:1;-webkit-transition:opacity .2s ease-in;transition:opacity .2s ease-in}.XHsn7e{background-color:#000;border:none;-webkit-border-radius:50%;border-radius:50%;-webkit-box-sizing:content-box;box-sizing:content-box;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);cursor:pointer;display:inline-block;fill:#fff;height:56px;outline:none;overflow:hidden;position:relative;text-align:center;width:56px;z-index:4000}.HaXdpb{background:rgba(255,255,255,0.2);bottom:0;display:none;left:0;position:absolute;right:0;top:0}.XHsn7e:hover{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2)}.XHsn7e:hover .HaXdpb{display:block}.XHsn7e.qs41qe{-webkit-box-shadow:0 12px 17px 2px rgba(0,0,0,0.14),0 5px 22px 4px rgba(0,0,0,0.12),0 7px 8px -4px rgba(0,0,0,0.2);box-shadow:0 12px 17px 2px rgba(0,0,0,0.14),0 5px 22px 4px rgba(0,0,0,0.12),0 7px 8px -4px rgba(0,0,0,0.2)}.XHsn7e.qs41qe .HaXdpb{display:block}.XHsn7e.RDPZE{background:rgba(153,153,153,0.102);-webkit-box-shadow:none;box-shadow:none;color:rgba(68,68,68,0.502);cursor:default;fill:rgba(68,68,68,0.502)}.XHsn7e.RDPZE:hover{opacity:1}.XHsn7e.RDPZE .HaXdpb{display:none}.XHsn7e:focus{-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2)}.XHsn7e:focus .HaXdpb{display:block}.Ip8zfc{display:inline-block;height:24px;position:absolute;top:16px;left:16px;width:24px;-webkit-transform:rotate(0);transform:rotate(0);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.Ip8zfc.eLNT1d{opacity:0;visibility:hidden;-webkit-transform:rotate(225deg);transform:rotate(225deg);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.Ip8zfc.ReqAjb{-webkit-transform:rotate(135deg);transform:rotate(135deg);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out}.dURtfb{height:40px;width:40px}.dURtfb .Ip8zfc{top:8px;left:8px}.HRp7vf{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;background-image:radial-gradient(circle farthest-side,rgba(204,204,204,0.251),rgba(204,204,204,0.251) 80%,rgba(204,204,204,0) 100%);-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.XHsn7e.qs41qe>.HRp7vf{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.XHsn7e.qs41qe.M9Bg4d>.HRp7vf{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.XHsn7e.j7nIZb>.HRp7vf{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.sbsxqb{pointer-events:none;-webkit-transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;transition:opacity .15s cubic-bezier(0.4,0.0,0.2,1) .15s;bottom:0;left:0;position:fixed;right:0;top:0;opacity:0;z-index:5000;background-color:rgba(0,0,0,0.502)}.sbsxqb.iWO5td{pointer-events:all;-webkit-transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);transition:opacity .05s cubic-bezier(0.4,0.0,0.2,1);opacity:1}.RM9ulf{visibility:hidden;position:fixed;z-index:5000;color:#fff;pointer-events:none}.RM9ulf.catR2e{max-width:90%;max-height:90%}.R8qYlc{-webkit-border-radius:2px;border-radius:2px;background-color:rgba(97,97,97,0.902);position:absolute;left:0;width:100%;height:100%;opacity:0;-webkit-transform:scale(0,0.5);transform:scale(0,0.5);-webkit-transform-origin:inherit;transform-origin:inherit}.AZnilc{display:block;position:relative;font-size:10px;font-weight:500;padding:5px 8px 6px;opacity:0}.RM9ulf.qs41qe .R8qYlc{opacity:1;-webkit-transform:scale(1,1);transform:scale(1,1)}.RM9ulf.catR2e .AZnilc{word-wrap:break-word}.RM9ulf.qs41qe .AZnilc{opacity:1}.RM9ulf.AXm5jc .AZnilc{font-size:14px;padding:8px 16px}.RM9ulf.u5lFJe{-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:200ms;transition-duration:200ms;-webkit-transition-timing-function:cubic-bezier(0.24,1,0.32,1);transition-timing-function:cubic-bezier(0.24,1,0.32,1)}.RM9ulf.u5lFJe .R8qYlc{-webkit-transition-property:opacity,transform;transition-property:opacity,transform;-webkit-transition-duration:50ms,200ms;transition-duration:50ms,200ms;-webkit-transition-timing-function:linear,cubic-bezier(0.24,1,0.32,1);transition-timing-function:linear,cubic-bezier(0.24,1,0.32,1)}.RM9ulf.u5lFJe .AZnilc{-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:150ms;transition-duration:150ms;-webkit-transition-delay:50ms;transition-delay:50ms;-webkit-transition-timing-function:cubic-bezier(0,0,0.6,1);transition-timing-function:cubic-bezier(0,0,0.6,1)}.RM9ulf.xCxor{-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-duration:70ms;transition-duration:70ms;-webkit-transition-delay:0ms;transition-delay:0ms;-webkit-transition-timing-function:linear;transition-timing-function:linear}.mD9Vkc{margin-top:0;margin-bottom:0;display:inline;overflow-wrap:break-word;overflow:hidden;margin-left:8px}.EuvMxb.SV3pxb{margin-left:10px}.d8ISdd.SV3pxb{margin-left:20px}.UhN1Zb{padding-bottom:10px;padding-top:10px;padding-left:8px;overflow-wrap:break-word}.S6jGtc{display:block;padding-left:10px;height:16px}.LZTDrc{z-index:10;display:-webkit-box;display:-webkit-flex;display:flex}.LZTDrc:hover .tDszrc,.mujzYc .tDszrc{display:block}.tDszrc{height:24px;width:24px;display:none}.PRAsaf{margin-bottom:3px}.mujzYc .mD9Vkc{color:#5f6368}.EmVfjc{display:inline-block;position:relative;width:28px;height:28px}.Cg7hO{position:absolute;width:0;height:0;overflow:hidden}.xu46lf{width:100%;height:100%}.EmVfjc.qs41qe .xu46lf{-webkit-animation:spinner-container-rotate 1568ms linear infinite;-webkit-animation:spinner-container-rotate 1568ms linear infinite;animation:spinner-container-rotate 1568ms linear infinite}.ir3uv{position:absolute;width:100%;height:100%;opacity:0}.uWlRce{border-color:#4285f4}.GFoASc{border-color:#db4437}.WpeOqd{border-color:#f4b400}.rHV3jf{border-color:#0f9d58}.EmVfjc.qs41qe .ir3uv.uWlRce{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.EmVfjc.qs41qe .ir3uv.GFoASc{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.EmVfjc.qs41qe .ir3uv.WpeOqd{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.EmVfjc.qs41qe .ir3uv.rHV3jf{-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,spinner-green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.HBnAAc{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.HBnAAc .X6jHbb{width:1000%;left:-450%}.xq3j6{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.xq3j6 .X6jHbb{width:200%}.X6jHbb{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent;-webkit-border-radius:50%;border-radius:50%;-webkit-animation:none;-webkit-animation:none;animation:none}.xq3j6.ERcjC .X6jHbb{border-right-color:transparent;-webkit-transform:rotate(129deg);-webkit-transform:rotate(129deg);transform:rotate(129deg)}.xq3j6.dj3yTd .X6jHbb{left:-100%;border-left-color:transparent;-webkit-transform:rotate(-129deg);-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.EmVfjc.qs41qe .xq3j6.ERcjC .X6jHbb{-webkit-animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.EmVfjc.qs41qe .xq3j6.dj3yTd .X6jHbb{-webkit-animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:spinner-right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.EmVfjc.sf4e6b .xu46lf{-webkit-animation:spinner-container-rotate 1568ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1);-webkit-animation:spinner-container-rotate 1568ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1);animation:spinner-container-rotate 1568ms linear infinite,spinner-fade-out 400ms cubic-bezier(0.4,0.0,0.2,1)}@keyframes spinner-container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes spinner-container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spinner-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes spinner-fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@keyframes spinner-blue-fade-in-out{0%{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@-webkit-keyframes spinner-blue-fade-in-out{0%{opacity:.99}25%{opacity:.99}26%{opacity:0}89%{opacity:0}90%{opacity:.99}to{opacity:.99}}@keyframes spinner-red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}}@-webkit-keyframes spinner-red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:.99}50%{opacity:.99}51%{opacity:0}}@keyframes spinner-yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}}@-webkit-keyframes spinner-yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:.99}75%{opacity:.99}76%{opacity:0}}@keyframes spinner-green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@-webkit-keyframes spinner-green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:.99}90%{opacity:.99}to{opacity:0}}@keyframes spinner-left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes spinner-left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@keyframes spinner-right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}@-webkit-keyframes spinner-right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}@keyframes spinner-fade-out{0%{opacity:.99}to{opacity:0}}@-webkit-keyframes spinner-fade-out{0%{opacity:.99}to{opacity:0}}.x95qze.hgWedc{color:#4fc3f7}.IWfHH{position:absolute;top:-10000px}.gyVfUd .wnIM7{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;padding-bottom:20px}.l4aFZe{height:18px;margin-right:14px;width:18px}.gvjLye{font-size:18px;color:rgba(0,0,0,0.87);vertical-align:middle}.vOSR6b{display:block;-webkit-border-radius:2px;border-radius:2px;margin:10px 0;background-color:#fafafa;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);position:relative;text-align:start}.KxKAY{background:white;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:50px}.KxKAY.q62bEc .OfNpS{color:#9aa0a6}.KxKAY.q62bEc .nrl8kc{fill:#9aa0a6}.XpySQb.vOSR6b{-webkit-border-radius:8px;border-radius:8px;box-shadow:0 1px 2px 0 rgba(60,64,67,0.302),0 2px 6px 2px rgba(60,64,67,0.149)}.Hbk4p{width:32px;height:32px;margin-left:15px;color:#5f6368}.vu8Pwe{color:#616161;fill:currentColor;height:24px;width:24px}.nrl8kc{width:28px;height:28px;color:#5f6368;fill:currentColor}.KxKAY .nrl8kc{width:30px;height:30px;margin-top:2px}.KxKAY .JrUK1e{margin-top:0}.QhgxM{width:24px;height:24px;margin-top:1px;margin-left:1px;color:#5f6368;fill:currentColor}.OfNpS{color:#5f6368;white-space:nowrap;margin-left:15px;-webkit-user-select:none;overflow:hidden;text-overflow:ellipsis;width:100%;margin-right:15px}.ndEEyd{background-color:#fff;color:#5f6368;padding:0 16px 10px;width:100%}.ndEEyd .mIZh1c,.ndEEyd .cXrdqd{display:none}.ndEEyd .ndJi5d{color:rgba(0,0,0,0.54)}.zHQkBf{width:100%;text-overflow:ellipsis}.LgQiCc{overflow:hidden;-webkit-transition-property:transform,margin,padding,height,opacity;transition-property:transform,margin,padding,height,opacity;-webkit-transition-delay:0ms,100ms,0ms,0ms,0ms;transition-delay:0ms,100ms,0ms,0ms,0ms;-webkit-transition-duration:200ms,100ms,100ms,150ms,200ms;transition-duration:200ms,100ms,100ms,150ms,200ms}.Wdnjke{height:48px;margin:4px 0;opacity:1;vertical-align:middle;z-index:25;fill:currentColor}.vsGQBe{display:none}.fgIOnf>.Wdnjke.fOU46b{opacity:1}.fgIOnf>.vsGQBe{-webkit-border-radius:32px 0 0 32px;border-radius:32px 0 0 32px;display:block;height:32px;opacity:1;position:absolute;right:0;top:12px;-webkit-transition:opacity .18s ease,width .18s;transition:opacity .18s ease,width .18s;width:46px;z-index:24}.fgIOnf>.vsGQBe.wgxiMe{border-right-style:none}.fgIOnf>.vsGQBe.fOU46b{opacity:0;width:0}.Wdnjke.HB1eCd-Guievd-WqyaDf svg.vu8Pwe.iWs3gf,.Wdnjke.HB1eCd-Guievd-CuyGMb svg.vu8Pwe.iWs3gf,.Wdnjke.HB1eCd-Guievd-q0KqEf svg.vu8Pwe.iWs3gf{fill:ButtonText}.TbNlJb{background-color:#eeeeee;height:0;opacity:0;padding:14px 0;position:fixed;right:0;top:0;-webkit-transition:opacity .18s ,width .18s ,height .18s step-start,visibility .18s step-start,box-shadow .3s ease;transition:opacity .18s ,width .18s ,height .18s step-start,visibility .18s step-start,box-shadow .3s ease;visibility:hidden;width:0;z-index:110}.h3nfre{margin:0 -66px 0 18px}.JyJRXe{display:none;margin-top:-13px}.i3PoXe,.Kk06A{display:block;margin-top:-13px}.i3PoXe.ge6pde{display:none}.fAUEUd{color:#616161;fill:currentColor;height:24px;width:24px}.V4YR2c{color:#6d6d6d;fill:currentColor;height:24px;width:24px}.b7AJhc{background-color:#fff;-webkit-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);color:#212121;height:48px;margin:0 auto;max-width:720px;padding:0;width:100%}.E2UJ5{margin:0 auto;max-width:720px;width:50%;position:relative}.JnCZPc{position:absolute;right:32px;top:1px;z-index:1}.b7AJhc .mIZh1c,.b7AJhc .cXrdqd{display:none}.b7AJhc .ndJi5d{color:rgba(0,0,0,0.54)}.BuY5Fd{background-color:rgba(33,33,33,.5);height:0;left:0;opacity:0;position:fixed;top:0;-webkit-transition:opacity .18s,height .18s step-end;transition:opacity .18s,height .18s step-end;width:100vw;z-index:110}.upKXGe{display:-webkit-box;display:-webkit-flex;display:flex;opacity:1}.TbNlJb.upKXGe{height:48px;width:100%;-webkit-transition:opacity .18s ,width .18s ,height .18s step-start,visibility .18s step-start,box-shadow .3s ease;transition:opacity .18s ,width .18s ,height .18s step-start,visibility .18s step-start,box-shadow .3s ease;visibility:visible}.vUSp5d{-webkit-box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2);box-shadow:0 4px 5px 0 rgba(0,0,0,0.14),0 1px 10px 0 rgba(0,0,0,0.12),0 2px 4px -1px rgba(0,0,0,0.2)}.BuY5Fd.upKXGe{height:100vh;-webkit-transition:opacity .18s,height .18s step-start;transition:opacity .18s,height .18s step-start}.RBEWZc{position:fixed;right:0;top:0;width:48px;z-index:25}.DdtOdf.b2Iqye .RBEWZc{top:64px}@media only screen and (max-width:479px){.DdtOdf.b2Iqye .RBEWZc{top:48px}.DdtOdf.WZv7J.b2Iqye .RBEWZc{top:96px}}.VLoccc .RBEWZc{display:table-cell;position:relative}.SKShhf{display:none;height:20px;margin-left:12px;padding-right:16px;width:20px}.SKShhf[data-active="true"]{display:block}.rwJaEb{position:relative;bottom:5px;width:33px;height:33px}@media only screen and (min-width:768px) and (max-width:1279px){.E2UJ5{min-width:208px}}@media only screen and (min-width:480px) and (max-width:767px){.E2UJ5{min-width:320px;width:65%}}@media only screen and (max-width:479px){.b7AJhc{min-width:320px}.E2UJ5{margin:0 8px;min-width:320px;width:100%}.h3nfre{display:none}.JyJRXe{display:block}.JyJRXe.ge6pde,.i3PoXe{display:none}}@media only screen and (max-width:319px){.Wdnjke{visibility:hidden}}.jkdiL{color:#09713b;margin-top:8px;font-size:14px}.ufjOY{display:inline-block}.Xoaijc{padding:0 5px}.Ge2BBc{padding-top:40px;padding-bottom:20px;text-align:center}.WkjCic .Ge2BBc,.DLXGJd .Ge2BBc{background-color:white}.QNEVYe{color:#1d1d1d;font-size:22px;font-weight:500}.Ge2BBc img{margin:26px auto}.jnwyce{color:#3a3a3a;font-size:18px;padding-bottom:20px}@media only screen and (max-width:767px){.Ge2BBc img{height:auto;max-height:200px;max-width:200px;width:100%}}@media only screen and (max-width:479px){.Ge2BBc{padding:0 20px}.jnwyce{padding-bottom:0}.WkjCic .Ge2BBc,.i3uTwd .Ge2BBc{padding:20px}}.cc2eUc{width:40px}.VrVRXd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -37px 0;background-size:81px 1462px;height:21px;width:21px;flex-shrink:0;margin-top:2px}.DiScDc{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -563px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.IWdLmb{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -38px -916px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.O0t38e{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -563px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.YQFB6b{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -58px -686px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.jJ9mWb{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -38px -317px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.LAOMlc{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -41px -1227px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.LoDB5e{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -484px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.l3JIpd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -725px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.uuSHHd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -59px -854px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.jxchXb{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -21px -1319px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.GCshMd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -45px -1363px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.x0gqJ{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -61px -484px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.loedCb{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -1206px;background-size:81px 1462px;height:20px;width:20px;flex-shrink:0;margin-top:1px}.P1aisf{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -629px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.HyFxKd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -546px;background-size:81px 1462px;height:12px;width:12px;flex-shrink:0;margin-top:7px}.o7nvpe{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -42px -1206px;background-size:81px 1462px;height:18px;width:18px;flex-shrink:0;margin-top:3px}.UnRWz{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -17px -37px;background-size:81px 1462px;height:20px;width:20px;flex-shrink:0;margin-top:1px}.JdSVpf{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -388px;background-size:81px 1462px;height:20px;width:20px;flex-shrink:0;margin-top:1px}.VGGU2{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -40px -584px;background-size:81px 1462px;height:20px;width:20px;flex-shrink:0;margin-top:1px}.QLOr0{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -38px -37px;background-size:81px 1462px;height:20px;width:20px;flex-shrink:0;margin-top:1px}.J8KNEc{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -21px -58px;background-size:81px 1462px;height:22px;width:22px;flex-shrink:0}.A61Ogf{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/internal_ldpi-8728a3a67f38069303f7d4ca99a59394.png) -21px -60px;-webkit-background-size:62px 80px;background-size:62px 80px;width:18px;height:18px;margin-top:3px;-webkit-flex-shrink:0;flex-shrink:0;margin-right:20px}.mkdTfb{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -373px;background-size:81px 1462px;width:14px;height:14px;display:inline-block;flex-shrink:0;margin-right:5px;vertical-align:middle;margin-top:-2px}.iDwFFd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -43px -686px;background-size:81px 1462px;width:14px;height:14px;display:inline-block;flex-shrink:0;margin-right:5px;vertical-align:middle;margin-top:-2px;opacity:.5}.IqcL9c{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) 0 -270px;background-size:81px 1462px;width:12px;height:12px;display:inline-block;flex-shrink:0;margin-right:5px;vertical-align:middle;margin-top:-2px}.vLOMkd{background:no-repeat url(//ssl.gstatic.com/atari/images/cloudsearch/icons_ldpi-f79964f7f886f44608d6398f29bddba7.png) -22px -806px;background-size:81px 1462px;width:12px;height:12px;display:inline-block;flex-shrink:0;margin-right:5px;vertical-align:middle;margin-top:-2px}.MVJdTb{color:#212121;margin-top:24px;text-align:center}.ufgVgc{background-color:#e1e1e1;-webkit-border-radius:2px;border-radius:2px;margin-left:8px;margin-right:8px;vertical-align:middle;height:36px;width:36px}.ufgVgc svg{fill:#212121;height:24px;width:24px}.SU3CYe{font-size:18px;margin-left:8px;margin-right:8px;vertical-align:middle}.gtazFe{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-align-items:start;align-items:start;background:white;-webkit-box-sizing:border-box;box-sizing:border-box;padding:24px;border-bottom:1px #eeeeee solid;width:100%}.t9frpc{height:150px}.f8CPt{width:24px;height:auto;-webkit-flex-shrink:0;flex-shrink:0;padding-right:20px}.vH0yjd{word-wrap:break-word;-webkit-box-flex:1;-webkit-flex:1;flex:1;width:80%}.vH0yjd a{color:#3d4db7;display:block;font-size:18px;text-decoration:none}.vH0yjd a:hover{text-decoration:underline}.oHq05e{text-align:center;font-family:Roboto,sans-serif;font-size:14px;color:#020202;margin:24px 8px 10px 8px}.dazWPb{color:#757575;font-size:14px;margin-top:8px}.tloCEe{font-style:italic}.gtazFe .yDWqEe{color:#212121;font-size:14px;margin-top:8px;margin-right:10px}.sVLFaf{color:#757575;font-size:14px;margin-top:8px}.A2rfde{color:#757575;font-size:14px;margin-top:8px;display:inline-block}.ardndf{padding:0 5px}@media only screen and (max-width:479px){.ZOn7Lb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-align-items:stretch;align-items:stretch}}.i3uTwd{font-family:Roboto,sans-serif;left:0;margin:0 auto;margin-top:85px;max-width:720px;padding-bottom:64px;position:absolute;right:0;width:50%}.oykKbf{background-color:#eeeeee;display:-webkit-box;display:-webkit-flex;display:flex;height:100vh;position:fixed;width:100vw;z-index:-10;left:0}.x8xhwb{background:white;-webkit-box-sizing:border-box;box-sizing:border-box;color:#757575;font-size:14px;padding:20px 0 15px 24px;border-bottom:1px #eeeeee solid}@media only screen and (max-width:479px){.i3uTwd{min-width:320px;width:100%}.DLXGJd{padding-left:8px;padding-right:8px}}@media only screen and (min-width:480px) and (max-width:767px){.i3uTwd{min-width:320px;width:65%}}@media only screen and (min-width:768px) and (max-width:1279px){.i3uTwd{min-width:208px}}.WkjCic{font-family:Roboto,sans-serif;left:0;margin:85px auto 0 auto;max-width:720px;padding-bottom:64px;position:absolute;right:0}.kaAt2.gLfaqc{-webkit-box-flex:0 0 auto;-webkit-flex:0 0 auto;flex:0 0 auto;font-size:15px;margin:5px 0 0 30px}.kaAt2.gLfaqc .VZhFab{margin-bottom:5px}.ZjAUM.gIqpX{background:white;border-bottom:1px #eeeeee solid}.QB8Y1e{background-color:#eeeeee;display:-webkit-box;display:-webkit-flex;display:flex;height:100vh;position:fixed;width:100vw;z-index:-10;left:0}@media only screen and (max-width:479px){.WkjCic{min-width:320px;margin:85px 8px 0 8px}.kaAt2.gLfaqc{margin:5px 0 0 15px}}@media only screen and (min-width:480px) and (max-width:767px){.WkjCic{min-width:320px;width:65%}.ZjAUM.gIqpX{width:auto}.kaAt2.gLfaqc{margin:8px 0 0 20px}}@media only screen and (min-width:768px) and (max-width:1279px){.WkjCic{min-width:208px;width:50%}.kaAt2.gLfaqc{margin:8px 0 0 20px}}.mrslJ{display:-webkit-box;display:-webkit-flex;display:flex;border-bottom:1px solid rgba(0,0,0,0.12);position:relative;width:100%}.ThdJC{-webkit-user-select:none;-webkit-transition:color .1s;transition:color .1s;-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;border:0;color:rgba(0,0,0,0.54);cursor:pointer;font-size:14px;font-weight:500;line-height:48px;min-width:4em;outline:none;overflow:hidden;position:relative;text-align:center;text-transform:uppercase;-webkit-tap-highlight-color:transparent}.ThdJC.u3bW4e{background-color:#ddd}.ThdJC.KKjvXb{color:#4285f4}.FAGNtc{background-image:radial-gradient(circle farthest-side,rgba(66,133,244,0.251),rgba(66,133,244,0.251) 80%,rgba(66,133,244,0) 100%);-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0}.ThdJC.qs41qe>.FAGNtc{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1}.ThdJC.j7nIZb>.FAGNtc{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2)}.kx3Hed{display:inline-block;white-space:nowrap}.w7qIhd{background-color:#4285f4;bottom:0;height:2px;position:absolute;will-change:left,width}.w7qIhd.KoToPc{-webkit-transition:left .15s cubic-bezier(0.4,0.0,1,1) ,width .15s cubic-bezier(0.4,0.0,1,1);transition:left .15s cubic-bezier(0.4,0.0,1,1) ,width .15s cubic-bezier(0.4,0.0,1,1)}html[dir="rtl"] .w7qIhd.KoToPc{-webkit-transition:right .15s cubic-bezier(0.4,0.0,1,1) ,width .15s cubic-bezier(0.4,0.0,1,1);transition:right .15s cubic-bezier(0.4,0.0,1,1) ,width .15s cubic-bezier(0.4,0.0,1,1)}.w7qIhd.HnxWY{-webkit-transition:left .18s cubic-bezier(0.0,0.0,0.2,1) ,width .18s cubic-bezier(0.0,0.0,0.2,1);transition:left .18s cubic-bezier(0.0,0.0,0.2,1) ,width .18s cubic-bezier(0.0,0.0,0.2,1)}html[dir="rtl"] .w7qIhd.HnxWY{-webkit-transition:right .18s cubic-bezier(0.0,0.0,0.2,1) ,width .18s cubic-bezier(0.0,0.0,0.2,1);transition:right .18s cubic-bezier(0.0,0.0,0.2,1) ,width .18s cubic-bezier(0.0,0.0,0.2,1)}.WwvKTc{background-color:#4285f4;bottom:0;display:none;height:2px;position:absolute;width:100%}.ThdJC.LdTVNd .WwvKTc{display:block}.HALYaf{display:none}.HALYaf.KKjvXb{display:block}.HALYaf.YgHNKb{display:block;-webkit-transition:transform .33s cubic-bezier(0.4,0.0,0.2,1);transition:transform .33s cubic-bezier(0.4,0.0,0.2,1)}.c0XF8e{color:#5f6368;-webkit-box-flex:1;-webkit-flex:1;flex:1;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;line-height:46px;min-width:24px;text-overflow:ellipsis;text-transform:none}.q21cab>.c0XF8e.KKjvXb{color:#1a73e8}.JZmjkd>.c0XF8e.KKjvXb{color:#202124}.c0XF8e.kaAt2.LdTVNd .s7bIcf{display:none}.q21cab .s7bIcf,.JZmjkd .s7bIcf{background-color:#1a73e8}.q21cab .s7bIcf{-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;height:3px}.NDkStf{-webkit-border-radius:16px;border-radius:16px;color:white;font-family:Roboto,sans-serif;position:relative;text-align:center;width:100%}.NDkStf:not(:first-child){margin-top:8px}.Pyr9We{font-size:20px;padding:8px}.Pyr9We a{color:white;text-decoration:none}.Pyr9We:hover{text-decoration:underline}.OciHj{font-size:16px;padding:0 8px 8px 8px}.OciHj a{color:white}.BktDV{border:1px solid rgba(0,0,0,0.36);-webkit-border-radius:16px;border-radius:16px;font-family:Roboto,sans-serif;position:relative;text-align:center;width:100%}.zy2Zie{padding:16px 8px 8px}.lK5wEe{padding:8px 8px 16px}.ky2xYc{padding:8px 8px 16px;color:red}.uBSP7e{display:-webkit-box;display:-webkit-flex;display:flex;border-top:1px solid rgba(0,0,0,0.36);color:rgba(0,0,0,0.72);text-align:left}.wFxGec{padding:8px 16px}.c84hQd{-webkit-flex:0 0 auto;flex:0 0 auto;padding:8px 0 8px 16px;width:108px}.L7IXhc{-webkit-user-select:none;-webkit-transition:background .2s .1s;transition:background .2s .1s;-webkit-align-items:center;align-items:center;border:1px solid;border-color:inherit;-webkit-border-radius:4px;border-radius:4px;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;height:36px;overflow:hidden;position:relative;vertical-align:middle;-webkit-tap-highlight-color:transparent;width:100%;z-index:0}.L7IXhc.INsAgc{background-color:transparent}.L7IXhc.fmcmS{background-color:transparent;border:none}.L7IXhc:hover{-webkit-box-shadow:0 1px 2px 0 rgba(60,64,67,.30),0 2px 6px 2px rgba(60,64,67,.15);box-shadow:0 1px 2px 0 rgba(60,64,67,.30),0 2px 6px 2px rgba(60,64,67,.15)}.L7IXhc.fmcmS:hover,.L7IXhc.INsAgc:hover{-webkit-box-shadow:none;box-shadow:none;background-color:inherit}.L7IXhc.qs41qe{-webkit-transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition:background .8s;transition:background .8s}.wvnY3c{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden;background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.L7IXhc.qs41qe .wvnY3c{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.L7IXhc.qs41qe.M9Bg4d .wvnY3c{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1),opacity .2s cubic-bezier(0.0,0.0,0.2,1)}.L7IXhc.j7nIZb .wvnY3c{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.L7IXhc a{width:100%}.j8HNsb{padding:5px}.NsaAfc{text-align:center;width:100%}@media only screen and (max-width:767px){.NsaAfc{padding-left:6px;padding-right:6px}}@media only screen and (min-width:768px){.NsaAfc{padding-left:12px;padding-right:12px}}.NsaAfc p{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cc0d9d{position:relative;margin-top:10px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center}.ZbQFKd{height:10px;width:10px;margin:0 4px;background-color:#bdc1c6;-webkit-border-radius:50%;border-radius:50%;display:inline-block;-webkit-transition:background-color .6s ease,width .4s ease-in-out,height .4s ease-in-out;transition:background-color .6s ease,width .4s ease-in-out,height .4s ease-in-out}.ZbQFKd.rwN1W{background-color:#669df6}.ZbQFKd.iBBDgd{height:0;width:0;margin:0}.ZbQFKd.qIwn1b{height:8px;width:8px}.ZbQFKd.kshb5{height:6px;width:6px}.dVFkob{height:14px;overflow:hidden;padding:0 8px;text-align:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-justify-content:center;justify-content:center;-webkit-flex-direction:column;flex-direction:column;margin-top:10px;position:relative}.Ecdcnc{overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap}.purZT-AhqUyc-R6PoUb.JNdkSc .QaN0Zc{padding-top:30%}.purZT-AhqUyc-R6PoUb.JNdkSc .UFN0uf{width:15%}.purZT-AhqUyc-ibL1re.JNdkSc .QaN0Zc{padding-top:15%}.purZT-AhqUyc-ibL1re.JNdkSc .UFN0uf{width:7.5%}.purZT-AhqUyc-c5RTEf.JNdkSc .QaN0Zc{padding-top:10%}.purZT-AhqUyc-c5RTEf.JNdkSc .UFN0uf{width:5%}.purZT-AhqUyc-II5mzb.JNdkSc .QaN0Zc{padding-top:7.5%}.purZT-AhqUyc-II5mzb.JNdkSc .UFN0uf{width:3.75%}.purZT-AhqUyc-wNfPc.JNdkSc .QaN0Zc{padding-top:6%}.purZT-AhqUyc-wNfPc.JNdkSc .UFN0uf{width:3%}.purZT-AhqUyc-qWD73c.JNdkSc .QaN0Zc{padding-top:5%}.purZT-AhqUyc-qWD73c.JNdkSc .UFN0uf{width:2.5%}.purZT-AhqUyc-OwsYgb.JNdkSc .QaN0Zc{padding-top:4.28571428%}.purZT-AhqUyc-OwsYgb.JNdkSc .UFN0uf{width:2.14285714%}.purZT-AhqUyc-OiUrBf.JNdkSc .QaN0Zc{padding-top:3.75%}.purZT-AhqUyc-OiUrBf.JNdkSc .UFN0uf{width:1.875%}.purZT-AhqUyc-Clt0zb.JNdkSc .QaN0Zc{padding-top:3.33333334%}.purZT-AhqUyc-Clt0zb.JNdkSc .UFN0uf{width:1.66666667%}.purZT-AhqUyc-EehZO.JNdkSc .QaN0Zc{padding-top:3%}.purZT-AhqUyc-EehZO.JNdkSc .UFN0uf{width:1.5%}.purZT-AhqUyc-zQtlcf.JNdkSc .QaN0Zc{padding-top:2.72727272%}.purZT-AhqUyc-zQtlcf.JNdkSc .UFN0uf{width:1.36363636%}.purZT-AhqUyc-uQSCkd.JNdkSc .QaN0Zc{padding-top:2.5%}.purZT-AhqUyc-uQSCkd.JNdkSc .UFN0uf{width:1.25%}@media only screen{.purZT-AhqUyc-R6PoUb{width:25%}.purZT-AhqUyc-R6PoUb.JNdkSc .JNdkSc-SmKAyb{padding-left:15%;padding-right:15%}.purZT-AhqUyc-R6PoUb.oaCj6d .lkp1lf{padding-left:15%;padding-right:15%}.purZT-AhqUyc-R6PoUb .wATtBb{left:-17.647059%;right:-17.647059%}.purZT-AhqUyc-R6PoUb .wATtBb .p67j0{left:30%;width:40%}.purZT-AhqUyc-R6PoUb .purZT-AhqUyc-R6PoUb{width:100%}.purZT-AhqUyc-ibL1re{width:50%}.purZT-AhqUyc-ibL1re.JNdkSc .JNdkSc-SmKAyb{padding-left:7.5%;padding-right:7.5%}.purZT-AhqUyc-ibL1re.oaCj6d .lkp1lf{padding-left:7.5%;padding-right:7.5%}.purZT-AhqUyc-ibL1re .wATtBb{left:-8.108108%;right:-8.108108%}.purZT-AhqUyc-ibL1re .wATtBb .p67j0{left:15%;width:70%}.purZT-AhqUyc-ibL1re .purZT-AhqUyc-R6PoUb{width:50%}.purZT-AhqUyc-ibL1re .purZT-AhqUyc-ibL1re{width:100%}.purZT-AhqUyc-c5RTEf{width:75%}.purZT-AhqUyc-c5RTEf.JNdkSc .JNdkSc-SmKAyb{padding-left:5%;padding-right:5%}.purZT-AhqUyc-c5RTEf.oaCj6d .lkp1lf{padding-left:5%;padding-right:5%}.purZT-AhqUyc-c5RTEf .wATtBb{left:-5.263158%;right:-5.263158%}.purZT-AhqUyc-c5RTEf .wATtBb .p67j0{left:10%;width:80%}.purZT-AhqUyc-c5RTEf .purZT-AhqUyc-R6PoUb{width:33.333333%}.purZT-AhqUyc-c5RTEf .purZT-AhqUyc-ibL1re{width:66.666667%}.purZT-AhqUyc-c5RTEf .purZT-AhqUyc-c5RTEf{width:100%}.purZT-AhqUyc-II5mzb{width:100%}.purZT-AhqUyc-II5mzb.JNdkSc .JNdkSc-SmKAyb{padding-left:3.75%;padding-right:3.75%}.purZT-AhqUyc-II5mzb.oaCj6d .lkp1lf{padding-left:3.75%;padding-right:3.75%}.purZT-AhqUyc-II5mzb .wATtBb{left:-3.896104%;right:-3.896104%}.purZT-AhqUyc-II5mzb .wATtBb .p67j0{left:7.5%;width:85%}.purZT-AhqUyc-II5mzb .purZT-AhqUyc-R6PoUb{width:25%}.purZT-AhqUyc-II5mzb .purZT-AhqUyc-ibL1re{width:50%}.purZT-AhqUyc-II5mzb .purZT-AhqUyc-c5RTEf{width:75%}.purZT-AhqUyc-II5mzb .purZT-AhqUyc-II5mzb{width:100%}.purZT-AhqUyc-wNfPc{width:125%}.purZT-AhqUyc-wNfPc.JNdkSc .JNdkSc-SmKAyb{padding-left:3%;padding-right:3%}.purZT-AhqUyc-wNfPc.oaCj6d .lkp1lf{padding-left:3%;padding-right:3%}.purZT-AhqUyc-wNfPc .wATtBb{left:-3.092784%;right:-3.092784%}.purZT-AhqUyc-wNfPc .wATtBb .p67j0{left:6%;width:88%}.purZT-AhqUyc-wNfPc .purZT-AhqUyc-R6PoUb{width:20%}.purZT-AhqUyc-wNfPc .purZT-AhqUyc-ibL1re{width:40%}.purZT-AhqUyc-wNfPc .purZT-AhqUyc-c5RTEf{width:60%}.purZT-AhqUyc-wNfPc .purZT-AhqUyc-II5mzb{width:80%}.purZT-AhqUyc-wNfPc .purZT-AhqUyc-wNfPc{width:100%}.purZT-AhqUyc-qWD73c{width:150%}.purZT-AhqUyc-qWD73c.JNdkSc .JNdkSc-SmKAyb{padding-left:2.5%;padding-right:2.5%}.purZT-AhqUyc-qWD73c.oaCj6d .lkp1lf{padding-left:2.5%;padding-right:2.5%}.purZT-AhqUyc-qWD73c .wATtBb{left:-2.564103%;right:-2.564103%}.purZT-AhqUyc-qWD73c .wATtBb .p67j0{left:5%;width:90%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-R6PoUb{width:16.666667%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-ibL1re{width:33.333333%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-c5RTEf{width:50%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-II5mzb{width:66.666667%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-wNfPc{width:83.333333%}.purZT-AhqUyc-qWD73c .purZT-AhqUyc-qWD73c{width:100%}.purZT-AhqUyc-OwsYgb{width:175%}.purZT-AhqUyc-OwsYgb.JNdkSc .JNdkSc-SmKAyb{padding-left:2.14285714%;padding-right:2.14285714%}.purZT-AhqUyc-OwsYgb.oaCj6d .lkp1lf{padding-left:2.14285714%;padding-right:2.14285714%}.purZT-AhqUyc-OwsYgb .wATtBb{left:-2.189781%;right:-2.189781%}.purZT-AhqUyc-OwsYgb .wATtBb .p67j0{left:4.28571428%;width:91.42857144%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-R6PoUb{width:14.285714%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-ibL1re{width:28.571429%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-c5RTEf{width:42.857143%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-II5mzb{width:57.142857%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-wNfPc{width:71.428571%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-qWD73c{width:85.714286%}.purZT-AhqUyc-OwsYgb .purZT-AhqUyc-OwsYgb{width:100%}.purZT-AhqUyc-OiUrBf{width:200%}.purZT-AhqUyc-OiUrBf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.875%;padding-right:1.875%}.purZT-AhqUyc-OiUrBf.oaCj6d .lkp1lf{padding-left:1.875%;padding-right:1.875%}.purZT-AhqUyc-OiUrBf .wATtBb{left:-1.910828%;right:-1.910828%}.purZT-AhqUyc-OiUrBf .wATtBb .p67j0{left:3.75%;width:92.5%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-R6PoUb{width:12.5%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-ibL1re{width:25%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-c5RTEf{width:37.5%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-II5mzb{width:50%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-wNfPc{width:62.5%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-qWD73c{width:75%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-OwsYgb{width:87.5%}.purZT-AhqUyc-OiUrBf .purZT-AhqUyc-OiUrBf{width:100%}.purZT-AhqUyc-Clt0zb{width:225%}.purZT-AhqUyc-Clt0zb.JNdkSc .JNdkSc-SmKAyb{padding-left:1.66666667%;padding-right:1.66666667%}.purZT-AhqUyc-Clt0zb.oaCj6d .lkp1lf{padding-left:1.66666667%;padding-right:1.66666667%}.purZT-AhqUyc-Clt0zb .wATtBb{left:-1.694915%;right:-1.694915%}.purZT-AhqUyc-Clt0zb .wATtBb .p67j0{left:3.33333334%;width:93.33333332%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-R6PoUb{width:11.111111%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-ibL1re{width:22.222222%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-c5RTEf{width:33.333333%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-II5mzb{width:44.444444%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-wNfPc{width:55.555556%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-qWD73c{width:66.666667%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-OwsYgb{width:77.777778%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-OiUrBf{width:88.888889%}.purZT-AhqUyc-Clt0zb .purZT-AhqUyc-Clt0zb{width:100%}.purZT-AhqUyc-EehZO{width:250%}.purZT-AhqUyc-EehZO.JNdkSc .JNdkSc-SmKAyb{padding-left:1.5%;padding-right:1.5%}.purZT-AhqUyc-EehZO.oaCj6d .lkp1lf{padding-left:1.5%;padding-right:1.5%}.purZT-AhqUyc-EehZO .wATtBb{left:-1.522843%;right:-1.522843%}.purZT-AhqUyc-EehZO .wATtBb .p67j0{left:3%;width:94%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-R6PoUb{width:10%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-ibL1re{width:20%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-c5RTEf{width:30%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-II5mzb{width:40%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-wNfPc{width:50%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-qWD73c{width:60%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-OwsYgb{width:70%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-OiUrBf{width:80%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-Clt0zb{width:90%}.purZT-AhqUyc-EehZO .purZT-AhqUyc-EehZO{width:100%}.purZT-AhqUyc-zQtlcf{width:275%}.purZT-AhqUyc-zQtlcf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.36363636%;padding-right:1.36363636%}.purZT-AhqUyc-zQtlcf.oaCj6d .lkp1lf{padding-left:1.36363636%;padding-right:1.36363636%}.purZT-AhqUyc-zQtlcf .wATtBb{left:-1.382488%;right:-1.382488%}.purZT-AhqUyc-zQtlcf .wATtBb .p67j0{left:2.72727272%;width:94.54545456%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-R6PoUb{width:9.090909%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-ibL1re{width:18.181818%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-c5RTEf{width:27.272727%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-II5mzb{width:36.363636%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-wNfPc{width:45.454545%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-qWD73c{width:54.545455%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-OwsYgb{width:63.636364%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-OiUrBf{width:72.727273%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-Clt0zb{width:81.818182%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-EehZO{width:90.909091%}.purZT-AhqUyc-zQtlcf .purZT-AhqUyc-zQtlcf{width:100%}.purZT-AhqUyc-uQSCkd{width:300%}.purZT-AhqUyc-uQSCkd.JNdkSc .JNdkSc-SmKAyb{padding-left:1.25%;padding-right:1.25%}.purZT-AhqUyc-uQSCkd.oaCj6d .lkp1lf{padding-left:1.25%;padding-right:1.25%}.purZT-AhqUyc-uQSCkd .wATtBb{left:-1.265823%;right:-1.265823%}.purZT-AhqUyc-uQSCkd .wATtBb .p67j0{left:2.5%;width:95%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-R6PoUb{width:8.333333%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-ibL1re{width:16.666667%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-c5RTEf{width:25%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-II5mzb{width:33.333333%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-wNfPc{width:41.666667%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-qWD73c{width:50%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-OwsYgb{width:58.333333%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-OiUrBf{width:66.666667%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-Clt0zb{width:75%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-EehZO{width:83.333333%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-zQtlcf{width:91.666667%}.purZT-AhqUyc-uQSCkd .purZT-AhqUyc-uQSCkd{width:100%}}.pSzOP-AhqUyc-R6PoUb.JNdkSc .QaN0Zc{padding-top:30%}.pSzOP-AhqUyc-R6PoUb.JNdkSc .UFN0uf{width:15%}.pSzOP-AhqUyc-ibL1re.JNdkSc .QaN0Zc{padding-top:15%}.pSzOP-AhqUyc-ibL1re.JNdkSc .UFN0uf{width:7.5%}.pSzOP-AhqUyc-c5RTEf.JNdkSc .QaN0Zc{padding-top:10%}.pSzOP-AhqUyc-c5RTEf.JNdkSc .UFN0uf{width:5%}.pSzOP-AhqUyc-II5mzb.JNdkSc .QaN0Zc{padding-top:7.5%}.pSzOP-AhqUyc-II5mzb.JNdkSc .UFN0uf{width:3.75%}.pSzOP-AhqUyc-wNfPc.JNdkSc .QaN0Zc{padding-top:6%}.pSzOP-AhqUyc-wNfPc.JNdkSc .UFN0uf{width:3%}.pSzOP-AhqUyc-qWD73c.JNdkSc .QaN0Zc{padding-top:5%}.pSzOP-AhqUyc-qWD73c.JNdkSc .UFN0uf{width:2.5%}.pSzOP-AhqUyc-OwsYgb.JNdkSc .QaN0Zc{padding-top:4.28571428%}.pSzOP-AhqUyc-OwsYgb.JNdkSc .UFN0uf{width:2.14285714%}.pSzOP-AhqUyc-OiUrBf.JNdkSc .QaN0Zc{padding-top:3.75%}.pSzOP-AhqUyc-OiUrBf.JNdkSc .UFN0uf{width:1.875%}.pSzOP-AhqUyc-Clt0zb.JNdkSc .QaN0Zc{padding-top:3.33333334%}.pSzOP-AhqUyc-Clt0zb.JNdkSc .UFN0uf{width:1.66666667%}.pSzOP-AhqUyc-EehZO.JNdkSc .QaN0Zc{padding-top:3%}.pSzOP-AhqUyc-EehZO.JNdkSc .UFN0uf{width:1.5%}.pSzOP-AhqUyc-zQtlcf.JNdkSc .QaN0Zc{padding-top:2.72727272%}.pSzOP-AhqUyc-zQtlcf.JNdkSc .UFN0uf{width:1.36363636%}.pSzOP-AhqUyc-uQSCkd.JNdkSc .QaN0Zc{padding-top:2.5%}.pSzOP-AhqUyc-uQSCkd.JNdkSc .UFN0uf{width:1.25%}@media only screen and (min-width:480px){.pSzOP-AhqUyc-R6PoUb{width:16.666667%}.pSzOP-AhqUyc-R6PoUb.JNdkSc .JNdkSc-SmKAyb{padding-left:15%;padding-right:15%}.pSzOP-AhqUyc-R6PoUb.oaCj6d .lkp1lf{padding-left:15%;padding-right:15%}.pSzOP-AhqUyc-R6PoUb .wATtBb{left:-17.647059%;right:-17.647059%}.pSzOP-AhqUyc-R6PoUb .wATtBb .p67j0{left:30%;width:40%}.pSzOP-AhqUyc-R6PoUb .pSzOP-AhqUyc-R6PoUb{width:100%}.pSzOP-AhqUyc-ibL1re{width:33.333333%}.pSzOP-AhqUyc-ibL1re.JNdkSc .JNdkSc-SmKAyb{padding-left:7.5%;padding-right:7.5%}.pSzOP-AhqUyc-ibL1re.oaCj6d .lkp1lf{padding-left:7.5%;padding-right:7.5%}.pSzOP-AhqUyc-ibL1re .wATtBb{left:-8.108108%;right:-8.108108%}.pSzOP-AhqUyc-ibL1re .wATtBb .p67j0{left:15%;width:70%}.pSzOP-AhqUyc-ibL1re .pSzOP-AhqUyc-R6PoUb{width:50%}.pSzOP-AhqUyc-ibL1re .pSzOP-AhqUyc-ibL1re{width:100%}.pSzOP-AhqUyc-c5RTEf{width:50%}.pSzOP-AhqUyc-c5RTEf.JNdkSc .JNdkSc-SmKAyb{padding-left:5%;padding-right:5%}.pSzOP-AhqUyc-c5RTEf.oaCj6d .lkp1lf{padding-left:5%;padding-right:5%}.pSzOP-AhqUyc-c5RTEf .wATtBb{left:-5.263158%;right:-5.263158%}.pSzOP-AhqUyc-c5RTEf .wATtBb .p67j0{left:10%;width:80%}.pSzOP-AhqUyc-c5RTEf .pSzOP-AhqUyc-R6PoUb{width:33.333333%}.pSzOP-AhqUyc-c5RTEf .pSzOP-AhqUyc-ibL1re{width:66.666667%}.pSzOP-AhqUyc-c5RTEf .pSzOP-AhqUyc-c5RTEf{width:100%}.pSzOP-AhqUyc-II5mzb{width:66.666667%}.pSzOP-AhqUyc-II5mzb.JNdkSc .JNdkSc-SmKAyb{padding-left:3.75%;padding-right:3.75%}.pSzOP-AhqUyc-II5mzb.oaCj6d .lkp1lf{padding-left:3.75%;padding-right:3.75%}.pSzOP-AhqUyc-II5mzb .wATtBb{left:-3.896104%;right:-3.896104%}.pSzOP-AhqUyc-II5mzb .wATtBb .p67j0{left:7.5%;width:85%}.pSzOP-AhqUyc-II5mzb .pSzOP-AhqUyc-R6PoUb{width:25%}.pSzOP-AhqUyc-II5mzb .pSzOP-AhqUyc-ibL1re{width:50%}.pSzOP-AhqUyc-II5mzb .pSzOP-AhqUyc-c5RTEf{width:75%}.pSzOP-AhqUyc-II5mzb .pSzOP-AhqUyc-II5mzb{width:100%}.pSzOP-AhqUyc-wNfPc{width:83.333333%}.pSzOP-AhqUyc-wNfPc.JNdkSc .JNdkSc-SmKAyb{padding-left:3%;padding-right:3%}.pSzOP-AhqUyc-wNfPc.oaCj6d .lkp1lf{padding-left:3%;padding-right:3%}.pSzOP-AhqUyc-wNfPc .wATtBb{left:-3.092784%;right:-3.092784%}.pSzOP-AhqUyc-wNfPc .wATtBb .p67j0{left:6%;width:88%}.pSzOP-AhqUyc-wNfPc .pSzOP-AhqUyc-R6PoUb{width:20%}.pSzOP-AhqUyc-wNfPc .pSzOP-AhqUyc-ibL1re{width:40%}.pSzOP-AhqUyc-wNfPc .pSzOP-AhqUyc-c5RTEf{width:60%}.pSzOP-AhqUyc-wNfPc .pSzOP-AhqUyc-II5mzb{width:80%}.pSzOP-AhqUyc-wNfPc .pSzOP-AhqUyc-wNfPc{width:100%}.pSzOP-AhqUyc-qWD73c{width:100%}.pSzOP-AhqUyc-qWD73c.JNdkSc .JNdkSc-SmKAyb{padding-left:2.5%;padding-right:2.5%}.pSzOP-AhqUyc-qWD73c.oaCj6d .lkp1lf{padding-left:2.5%;padding-right:2.5%}.pSzOP-AhqUyc-qWD73c .wATtBb{left:-2.564103%;right:-2.564103%}.pSzOP-AhqUyc-qWD73c .wATtBb .p67j0{left:5%;width:90%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-R6PoUb{width:16.666667%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-ibL1re{width:33.333333%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-c5RTEf{width:50%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-II5mzb{width:66.666667%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-wNfPc{width:83.333333%}.pSzOP-AhqUyc-qWD73c .pSzOP-AhqUyc-qWD73c{width:100%}.pSzOP-AhqUyc-OwsYgb{width:116.666667%}.pSzOP-AhqUyc-OwsYgb.JNdkSc .JNdkSc-SmKAyb{padding-left:2.14285714%;padding-right:2.14285714%}.pSzOP-AhqUyc-OwsYgb.oaCj6d .lkp1lf{padding-left:2.14285714%;padding-right:2.14285714%}.pSzOP-AhqUyc-OwsYgb .wATtBb{left:-2.189781%;right:-2.189781%}.pSzOP-AhqUyc-OwsYgb .wATtBb .p67j0{left:4.28571428%;width:91.42857144%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-R6PoUb{width:14.285714%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-ibL1re{width:28.571429%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-c5RTEf{width:42.857143%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-II5mzb{width:57.142857%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-wNfPc{width:71.428571%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-qWD73c{width:85.714286%}.pSzOP-AhqUyc-OwsYgb .pSzOP-AhqUyc-OwsYgb{width:100%}.pSzOP-AhqUyc-OiUrBf{width:133.333333%}.pSzOP-AhqUyc-OiUrBf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.875%;padding-right:1.875%}.pSzOP-AhqUyc-OiUrBf.oaCj6d .lkp1lf{padding-left:1.875%;padding-right:1.875%}.pSzOP-AhqUyc-OiUrBf .wATtBb{left:-1.910828%;right:-1.910828%}.pSzOP-AhqUyc-OiUrBf .wATtBb .p67j0{left:3.75%;width:92.5%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-R6PoUb{width:12.5%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-ibL1re{width:25%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-c5RTEf{width:37.5%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-II5mzb{width:50%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-wNfPc{width:62.5%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-qWD73c{width:75%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-OwsYgb{width:87.5%}.pSzOP-AhqUyc-OiUrBf .pSzOP-AhqUyc-OiUrBf{width:100%}.pSzOP-AhqUyc-Clt0zb{width:150%}.pSzOP-AhqUyc-Clt0zb.JNdkSc .JNdkSc-SmKAyb{padding-left:1.66666667%;padding-right:1.66666667%}.pSzOP-AhqUyc-Clt0zb.oaCj6d .lkp1lf{padding-left:1.66666667%;padding-right:1.66666667%}.pSzOP-AhqUyc-Clt0zb .wATtBb{left:-1.694915%;right:-1.694915%}.pSzOP-AhqUyc-Clt0zb .wATtBb .p67j0{left:3.33333334%;width:93.33333332%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-R6PoUb{width:11.111111%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-ibL1re{width:22.222222%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-c5RTEf{width:33.333333%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-II5mzb{width:44.444444%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-wNfPc{width:55.555556%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-qWD73c{width:66.666667%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-OwsYgb{width:77.777778%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-OiUrBf{width:88.888889%}.pSzOP-AhqUyc-Clt0zb .pSzOP-AhqUyc-Clt0zb{width:100%}.pSzOP-AhqUyc-EehZO{width:166.666667%}.pSzOP-AhqUyc-EehZO.JNdkSc .JNdkSc-SmKAyb{padding-left:1.5%;padding-right:1.5%}.pSzOP-AhqUyc-EehZO.oaCj6d .lkp1lf{padding-left:1.5%;padding-right:1.5%}.pSzOP-AhqUyc-EehZO .wATtBb{left:-1.522843%;right:-1.522843%}.pSzOP-AhqUyc-EehZO .wATtBb .p67j0{left:3%;width:94%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-R6PoUb{width:10%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-ibL1re{width:20%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-c5RTEf{width:30%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-II5mzb{width:40%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-wNfPc{width:50%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-qWD73c{width:60%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-OwsYgb{width:70%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-OiUrBf{width:80%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-Clt0zb{width:90%}.pSzOP-AhqUyc-EehZO .pSzOP-AhqUyc-EehZO{width:100%}.pSzOP-AhqUyc-zQtlcf{width:183.333333%}.pSzOP-AhqUyc-zQtlcf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.36363636%;padding-right:1.36363636%}.pSzOP-AhqUyc-zQtlcf.oaCj6d .lkp1lf{padding-left:1.36363636%;padding-right:1.36363636%}.pSzOP-AhqUyc-zQtlcf .wATtBb{left:-1.382488%;right:-1.382488%}.pSzOP-AhqUyc-zQtlcf .wATtBb .p67j0{left:2.72727272%;width:94.54545456%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-R6PoUb{width:9.090909%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-ibL1re{width:18.181818%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-c5RTEf{width:27.272727%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-II5mzb{width:36.363636%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-wNfPc{width:45.454545%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-qWD73c{width:54.545455%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-OwsYgb{width:63.636364%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-OiUrBf{width:72.727273%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-Clt0zb{width:81.818182%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-EehZO{width:90.909091%}.pSzOP-AhqUyc-zQtlcf .pSzOP-AhqUyc-zQtlcf{width:100%}.pSzOP-AhqUyc-uQSCkd{width:200%}.pSzOP-AhqUyc-uQSCkd.JNdkSc .JNdkSc-SmKAyb{padding-left:1.25%;padding-right:1.25%}.pSzOP-AhqUyc-uQSCkd.oaCj6d .lkp1lf{padding-left:1.25%;padding-right:1.25%}.pSzOP-AhqUyc-uQSCkd .wATtBb{left:-1.265823%;right:-1.265823%}.pSzOP-AhqUyc-uQSCkd .wATtBb .p67j0{left:2.5%;width:95%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-R6PoUb{width:8.333333%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-ibL1re{width:16.666667%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-c5RTEf{width:25%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-II5mzb{width:33.333333%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-wNfPc{width:41.666667%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-qWD73c{width:50%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-OwsYgb{width:58.333333%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-OiUrBf{width:66.666667%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-Clt0zb{width:75%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-EehZO{width:83.333333%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-zQtlcf{width:91.666667%}.pSzOP-AhqUyc-uQSCkd .pSzOP-AhqUyc-uQSCkd{width:100%}}.hJDwNd-AhqUyc-R6PoUb.JNdkSc .QaN0Zc{padding-top:30%}.hJDwNd-AhqUyc-R6PoUb.JNdkSc .UFN0uf{width:15%}.hJDwNd-AhqUyc-ibL1re.JNdkSc .QaN0Zc{padding-top:15%}.hJDwNd-AhqUyc-ibL1re.JNdkSc .UFN0uf{width:7.5%}.hJDwNd-AhqUyc-c5RTEf.JNdkSc .QaN0Zc{padding-top:10%}.hJDwNd-AhqUyc-c5RTEf.JNdkSc .UFN0uf{width:5%}.hJDwNd-AhqUyc-II5mzb.JNdkSc .QaN0Zc{padding-top:7.5%}.hJDwNd-AhqUyc-II5mzb.JNdkSc .UFN0uf{width:3.75%}.hJDwNd-AhqUyc-wNfPc.JNdkSc .QaN0Zc{padding-top:6%}.hJDwNd-AhqUyc-wNfPc.JNdkSc .UFN0uf{width:3%}.hJDwNd-AhqUyc-qWD73c.JNdkSc .QaN0Zc{padding-top:5%}.hJDwNd-AhqUyc-qWD73c.JNdkSc .UFN0uf{width:2.5%}.hJDwNd-AhqUyc-OwsYgb.JNdkSc .QaN0Zc{padding-top:4.28571428%}.hJDwNd-AhqUyc-OwsYgb.JNdkSc .UFN0uf{width:2.14285714%}.hJDwNd-AhqUyc-OiUrBf.JNdkSc .QaN0Zc{padding-top:3.75%}.hJDwNd-AhqUyc-OiUrBf.JNdkSc .UFN0uf{width:1.875%}.hJDwNd-AhqUyc-Clt0zb.JNdkSc .QaN0Zc{padding-top:3.33333334%}.hJDwNd-AhqUyc-Clt0zb.JNdkSc .UFN0uf{width:1.66666667%}.hJDwNd-AhqUyc-EehZO.JNdkSc .QaN0Zc{padding-top:3%}.hJDwNd-AhqUyc-EehZO.JNdkSc .UFN0uf{width:1.5%}.hJDwNd-AhqUyc-zQtlcf.JNdkSc .QaN0Zc{padding-top:2.72727272%}.hJDwNd-AhqUyc-zQtlcf.JNdkSc .UFN0uf{width:1.36363636%}.hJDwNd-AhqUyc-uQSCkd.JNdkSc .QaN0Zc{padding-top:2.5%}.hJDwNd-AhqUyc-uQSCkd.JNdkSc .UFN0uf{width:1.25%}@media only screen and (min-width:768px){.hJDwNd-AhqUyc-R6PoUb{width:8.333333%}.hJDwNd-AhqUyc-R6PoUb.JNdkSc .JNdkSc-SmKAyb{padding-left:15%;padding-right:15%}.hJDwNd-AhqUyc-R6PoUb.oaCj6d .lkp1lf{padding-left:15%;padding-right:15%}.hJDwNd-AhqUyc-R6PoUb .wATtBb{left:-17.647059%;right:-17.647059%}.hJDwNd-AhqUyc-R6PoUb .wATtBb .p67j0{left:30%;width:40%}.hJDwNd-AhqUyc-R6PoUb .hJDwNd-AhqUyc-R6PoUb{width:100%}.hJDwNd-AhqUyc-ibL1re{width:16.666667%}.hJDwNd-AhqUyc-ibL1re.JNdkSc .JNdkSc-SmKAyb{padding-left:7.5%;padding-right:7.5%}.hJDwNd-AhqUyc-ibL1re.oaCj6d .lkp1lf{padding-left:7.5%;padding-right:7.5%}.hJDwNd-AhqUyc-ibL1re .wATtBb{left:-8.108108%;right:-8.108108%}.hJDwNd-AhqUyc-ibL1re .wATtBb .p67j0{left:15%;width:70%}.hJDwNd-AhqUyc-ibL1re .hJDwNd-AhqUyc-R6PoUb{width:50%}.hJDwNd-AhqUyc-ibL1re .hJDwNd-AhqUyc-ibL1re{width:100%}.hJDwNd-AhqUyc-c5RTEf{width:25%}.hJDwNd-AhqUyc-c5RTEf.JNdkSc .JNdkSc-SmKAyb{padding-left:5%;padding-right:5%}.hJDwNd-AhqUyc-c5RTEf.oaCj6d .lkp1lf{padding-left:5%;padding-right:5%}.hJDwNd-AhqUyc-c5RTEf .wATtBb{left:-5.263158%;right:-5.263158%}.hJDwNd-AhqUyc-c5RTEf .wATtBb .p67j0{left:10%;width:80%}.hJDwNd-AhqUyc-c5RTEf .hJDwNd-AhqUyc-R6PoUb{width:33.333333%}.hJDwNd-AhqUyc-c5RTEf .hJDwNd-AhqUyc-ibL1re{width:66.666667%}.hJDwNd-AhqUyc-c5RTEf .hJDwNd-AhqUyc-c5RTEf{width:100%}.hJDwNd-AhqUyc-II5mzb{width:33.333333%}.hJDwNd-AhqUyc-II5mzb.JNdkSc .JNdkSc-SmKAyb{padding-left:3.75%;padding-right:3.75%}.hJDwNd-AhqUyc-II5mzb.oaCj6d .lkp1lf{padding-left:3.75%;padding-right:3.75%}.hJDwNd-AhqUyc-II5mzb .wATtBb{left:-3.896104%;right:-3.896104%}.hJDwNd-AhqUyc-II5mzb .wATtBb .p67j0{left:7.5%;width:85%}.hJDwNd-AhqUyc-II5mzb .hJDwNd-AhqUyc-R6PoUb{width:25%}.hJDwNd-AhqUyc-II5mzb .hJDwNd-AhqUyc-ibL1re{width:50%}.hJDwNd-AhqUyc-II5mzb .hJDwNd-AhqUyc-c5RTEf{width:75%}.hJDwNd-AhqUyc-II5mzb .hJDwNd-AhqUyc-II5mzb{width:100%}.hJDwNd-AhqUyc-wNfPc{width:41.666667%}.hJDwNd-AhqUyc-wNfPc.JNdkSc .JNdkSc-SmKAyb{padding-left:3%;padding-right:3%}.hJDwNd-AhqUyc-wNfPc.oaCj6d .lkp1lf{padding-left:3%;padding-right:3%}.hJDwNd-AhqUyc-wNfPc .wATtBb{left:-3.092784%;right:-3.092784%}.hJDwNd-AhqUyc-wNfPc .wATtBb .p67j0{left:6%;width:88%}.hJDwNd-AhqUyc-wNfPc .hJDwNd-AhqUyc-R6PoUb{width:20%}.hJDwNd-AhqUyc-wNfPc .hJDwNd-AhqUyc-ibL1re{width:40%}.hJDwNd-AhqUyc-wNfPc .hJDwNd-AhqUyc-c5RTEf{width:60%}.hJDwNd-AhqUyc-wNfPc .hJDwNd-AhqUyc-II5mzb{width:80%}.hJDwNd-AhqUyc-wNfPc .hJDwNd-AhqUyc-wNfPc{width:100%}.hJDwNd-AhqUyc-qWD73c{width:50%}.hJDwNd-AhqUyc-qWD73c.JNdkSc .JNdkSc-SmKAyb{padding-left:2.5%;padding-right:2.5%}.hJDwNd-AhqUyc-qWD73c.oaCj6d .lkp1lf{padding-left:2.5%;padding-right:2.5%}.hJDwNd-AhqUyc-qWD73c .wATtBb{left:-2.564103%;right:-2.564103%}.hJDwNd-AhqUyc-qWD73c .wATtBb .p67j0{left:5%;width:90%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-R6PoUb{width:16.666667%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-ibL1re{width:33.333333%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-c5RTEf{width:50%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-II5mzb{width:66.666667%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-wNfPc{width:83.333333%}.hJDwNd-AhqUyc-qWD73c .hJDwNd-AhqUyc-qWD73c{width:100%}.hJDwNd-AhqUyc-OwsYgb{width:58.333333%}.hJDwNd-AhqUyc-OwsYgb.JNdkSc .JNdkSc-SmKAyb{padding-left:2.14285714%;padding-right:2.14285714%}.hJDwNd-AhqUyc-OwsYgb.oaCj6d .lkp1lf{padding-left:2.14285714%;padding-right:2.14285714%}.hJDwNd-AhqUyc-OwsYgb .wATtBb{left:-2.189781%;right:-2.189781%}.hJDwNd-AhqUyc-OwsYgb .wATtBb .p67j0{left:4.28571428%;width:91.42857144%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-R6PoUb{width:14.285714%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-ibL1re{width:28.571429%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-c5RTEf{width:42.857143%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-II5mzb{width:57.142857%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-wNfPc{width:71.428571%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-qWD73c{width:85.714286%}.hJDwNd-AhqUyc-OwsYgb .hJDwNd-AhqUyc-OwsYgb{width:100%}.hJDwNd-AhqUyc-OiUrBf{width:66.666667%}.hJDwNd-AhqUyc-OiUrBf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.875%;padding-right:1.875%}.hJDwNd-AhqUyc-OiUrBf.oaCj6d .lkp1lf{padding-left:1.875%;padding-right:1.875%}.hJDwNd-AhqUyc-OiUrBf .wATtBb{left:-1.910828%;right:-1.910828%}.hJDwNd-AhqUyc-OiUrBf .wATtBb .p67j0{left:3.75%;width:92.5%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-R6PoUb{width:12.5%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-ibL1re{width:25%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-c5RTEf{width:37.5%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-II5mzb{width:50%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-wNfPc{width:62.5%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-qWD73c{width:75%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-OwsYgb{width:87.5%}.hJDwNd-AhqUyc-OiUrBf .hJDwNd-AhqUyc-OiUrBf{width:100%}.hJDwNd-AhqUyc-Clt0zb{width:75%}.hJDwNd-AhqUyc-Clt0zb.JNdkSc .JNdkSc-SmKAyb{padding-left:1.66666667%;padding-right:1.66666667%}.hJDwNd-AhqUyc-Clt0zb.oaCj6d .lkp1lf{padding-left:1.66666667%;padding-right:1.66666667%}.hJDwNd-AhqUyc-Clt0zb .wATtBb{left:-1.694915%;right:-1.694915%}.hJDwNd-AhqUyc-Clt0zb .wATtBb .p67j0{left:3.33333334%;width:93.33333332%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-R6PoUb{width:11.111111%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-ibL1re{width:22.222222%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-c5RTEf{width:33.333333%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-II5mzb{width:44.444444%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-wNfPc{width:55.555556%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-qWD73c{width:66.666667%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-OwsYgb{width:77.777778%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-OiUrBf{width:88.888889%}.hJDwNd-AhqUyc-Clt0zb .hJDwNd-AhqUyc-Clt0zb{width:100%}.hJDwNd-AhqUyc-EehZO{width:83.333333%}.hJDwNd-AhqUyc-EehZO.JNdkSc .JNdkSc-SmKAyb{padding-left:1.5%;padding-right:1.5%}.hJDwNd-AhqUyc-EehZO.oaCj6d .lkp1lf{padding-left:1.5%;padding-right:1.5%}.hJDwNd-AhqUyc-EehZO .wATtBb{left:-1.522843%;right:-1.522843%}.hJDwNd-AhqUyc-EehZO .wATtBb .p67j0{left:3%;width:94%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-R6PoUb{width:10%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-ibL1re{width:20%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-c5RTEf{width:30%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-II5mzb{width:40%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-wNfPc{width:50%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-qWD73c{width:60%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-OwsYgb{width:70%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-OiUrBf{width:80%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-Clt0zb{width:90%}.hJDwNd-AhqUyc-EehZO .hJDwNd-AhqUyc-EehZO{width:100%}.hJDwNd-AhqUyc-zQtlcf{width:91.666667%}.hJDwNd-AhqUyc-zQtlcf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.36363636%;padding-right:1.36363636%}.hJDwNd-AhqUyc-zQtlcf.oaCj6d .lkp1lf{padding-left:1.36363636%;padding-right:1.36363636%}.hJDwNd-AhqUyc-zQtlcf .wATtBb{left:-1.382488%;right:-1.382488%}.hJDwNd-AhqUyc-zQtlcf .wATtBb .p67j0{left:2.72727272%;width:94.54545456%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-R6PoUb{width:9.090909%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-ibL1re{width:18.181818%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-c5RTEf{width:27.272727%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-II5mzb{width:36.363636%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-wNfPc{width:45.454545%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-qWD73c{width:54.545455%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-OwsYgb{width:63.636364%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-OiUrBf{width:72.727273%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-Clt0zb{width:81.818182%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-EehZO{width:90.909091%}.hJDwNd-AhqUyc-zQtlcf .hJDwNd-AhqUyc-zQtlcf{width:100%}.hJDwNd-AhqUyc-uQSCkd{width:100%}.hJDwNd-AhqUyc-uQSCkd.JNdkSc .JNdkSc-SmKAyb{padding-left:1.25%;padding-right:1.25%}.hJDwNd-AhqUyc-uQSCkd.oaCj6d .lkp1lf{padding-left:1.25%;padding-right:1.25%}.hJDwNd-AhqUyc-uQSCkd .wATtBb{left:-1.265823%;right:-1.265823%}.hJDwNd-AhqUyc-uQSCkd .wATtBb .p67j0{left:2.5%;width:95%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-R6PoUb{width:8.333333%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-ibL1re{width:16.666667%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-c5RTEf{width:25%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-II5mzb{width:33.333333%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-wNfPc{width:41.666667%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-qWD73c{width:50%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-OwsYgb{width:58.333333%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-OiUrBf{width:66.666667%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-Clt0zb{width:75%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-EehZO{width:83.333333%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-zQtlcf{width:91.666667%}.hJDwNd-AhqUyc-uQSCkd .hJDwNd-AhqUyc-uQSCkd{width:100%}}.dQCS7c-AhqUyc-R6PoUb.JNdkSc .QaN0Zc{padding-top:30%}.dQCS7c-AhqUyc-R6PoUb.JNdkSc .UFN0uf{width:15%}.dQCS7c-AhqUyc-ibL1re.JNdkSc .QaN0Zc{padding-top:15%}.dQCS7c-AhqUyc-ibL1re.JNdkSc .UFN0uf{width:7.5%}.dQCS7c-AhqUyc-c5RTEf.JNdkSc .QaN0Zc{padding-top:10%}.dQCS7c-AhqUyc-c5RTEf.JNdkSc .UFN0uf{width:5%}.dQCS7c-AhqUyc-II5mzb.JNdkSc .QaN0Zc{padding-top:7.5%}.dQCS7c-AhqUyc-II5mzb.JNdkSc .UFN0uf{width:3.75%}.dQCS7c-AhqUyc-wNfPc.JNdkSc .QaN0Zc{padding-top:6%}.dQCS7c-AhqUyc-wNfPc.JNdkSc .UFN0uf{width:3%}.dQCS7c-AhqUyc-qWD73c.JNdkSc .QaN0Zc{padding-top:5%}.dQCS7c-AhqUyc-qWD73c.JNdkSc .UFN0uf{width:2.5%}.dQCS7c-AhqUyc-OwsYgb.JNdkSc .QaN0Zc{padding-top:4.28571428%}.dQCS7c-AhqUyc-OwsYgb.JNdkSc .UFN0uf{width:2.14285714%}.dQCS7c-AhqUyc-OiUrBf.JNdkSc .QaN0Zc{padding-top:3.75%}.dQCS7c-AhqUyc-OiUrBf.JNdkSc .UFN0uf{width:1.875%}.dQCS7c-AhqUyc-Clt0zb.JNdkSc .QaN0Zc{padding-top:3.33333334%}.dQCS7c-AhqUyc-Clt0zb.JNdkSc .UFN0uf{width:1.66666667%}.dQCS7c-AhqUyc-EehZO.JNdkSc .QaN0Zc{padding-top:3%}.dQCS7c-AhqUyc-EehZO.JNdkSc .UFN0uf{width:1.5%}.dQCS7c-AhqUyc-zQtlcf.JNdkSc .QaN0Zc{padding-top:2.72727272%}.dQCS7c-AhqUyc-zQtlcf.JNdkSc .UFN0uf{width:1.36363636%}.dQCS7c-AhqUyc-uQSCkd.JNdkSc .QaN0Zc{padding-top:2.5%}.dQCS7c-AhqUyc-uQSCkd.JNdkSc .UFN0uf{width:1.25%}@media only screen and (min-width:1280px){.dQCS7c-AhqUyc-R6PoUb{width:8.333333%}.dQCS7c-AhqUyc-R6PoUb.JNdkSc .JNdkSc-SmKAyb{padding-left:15%;padding-right:15%}.dQCS7c-AhqUyc-R6PoUb.oaCj6d .lkp1lf{padding-left:15%;padding-right:15%}.dQCS7c-AhqUyc-R6PoUb .wATtBb{left:-17.647059%;right:-17.647059%}.dQCS7c-AhqUyc-R6PoUb .wATtBb .p67j0{left:30%;width:40%}.dQCS7c-AhqUyc-R6PoUb .dQCS7c-AhqUyc-R6PoUb{width:100%}.dQCS7c-AhqUyc-ibL1re{width:16.666667%}.dQCS7c-AhqUyc-ibL1re.JNdkSc .JNdkSc-SmKAyb{padding-left:7.5%;padding-right:7.5%}.dQCS7c-AhqUyc-ibL1re.oaCj6d .lkp1lf{padding-left:7.5%;padding-right:7.5%}.dQCS7c-AhqUyc-ibL1re .wATtBb{left:-8.108108%;right:-8.108108%}.dQCS7c-AhqUyc-ibL1re .wATtBb .p67j0{left:15%;width:70%}.dQCS7c-AhqUyc-ibL1re .dQCS7c-AhqUyc-R6PoUb{width:50%}.dQCS7c-AhqUyc-ibL1re .dQCS7c-AhqUyc-ibL1re{width:100%}.dQCS7c-AhqUyc-c5RTEf{width:25%}.dQCS7c-AhqUyc-c5RTEf.JNdkSc .JNdkSc-SmKAyb{padding-left:5%;padding-right:5%}.dQCS7c-AhqUyc-c5RTEf.oaCj6d .lkp1lf{padding-left:5%;padding-right:5%}.dQCS7c-AhqUyc-c5RTEf .wATtBb{left:-5.263158%;right:-5.263158%}.dQCS7c-AhqUyc-c5RTEf .wATtBb .p67j0{left:10%;width:80%}.dQCS7c-AhqUyc-c5RTEf .dQCS7c-AhqUyc-R6PoUb{width:33.333333%}.dQCS7c-AhqUyc-c5RTEf .dQCS7c-AhqUyc-ibL1re{width:66.666667%}.dQCS7c-AhqUyc-c5RTEf .dQCS7c-AhqUyc-c5RTEf{width:100%}.dQCS7c-AhqUyc-II5mzb{width:33.333333%}.dQCS7c-AhqUyc-II5mzb.JNdkSc .JNdkSc-SmKAyb{padding-left:3.75%;padding-right:3.75%}.dQCS7c-AhqUyc-II5mzb.oaCj6d .lkp1lf{padding-left:3.75%;padding-right:3.75%}.dQCS7c-AhqUyc-II5mzb .wATtBb{left:-3.896104%;right:-3.896104%}.dQCS7c-AhqUyc-II5mzb .wATtBb .p67j0{left:7.5%;width:85%}.dQCS7c-AhqUyc-II5mzb .dQCS7c-AhqUyc-R6PoUb{width:25%}.dQCS7c-AhqUyc-II5mzb .dQCS7c-AhqUyc-ibL1re{width:50%}.dQCS7c-AhqUyc-II5mzb .dQCS7c-AhqUyc-c5RTEf{width:75%}.dQCS7c-AhqUyc-II5mzb .dQCS7c-AhqUyc-II5mzb{width:100%}.dQCS7c-AhqUyc-wNfPc{width:41.666667%}.dQCS7c-AhqUyc-wNfPc.JNdkSc .JNdkSc-SmKAyb{padding-left:3%;padding-right:3%}.dQCS7c-AhqUyc-wNfPc.oaCj6d .lkp1lf{padding-left:3%;padding-right:3%}.dQCS7c-AhqUyc-wNfPc .wATtBb{left:-3.092784%;right:-3.092784%}.dQCS7c-AhqUyc-wNfPc .wATtBb .p67j0{left:6%;width:88%}.dQCS7c-AhqUyc-wNfPc .dQCS7c-AhqUyc-R6PoUb{width:20%}.dQCS7c-AhqUyc-wNfPc .dQCS7c-AhqUyc-ibL1re{width:40%}.dQCS7c-AhqUyc-wNfPc .dQCS7c-AhqUyc-c5RTEf{width:60%}.dQCS7c-AhqUyc-wNfPc .dQCS7c-AhqUyc-II5mzb{width:80%}.dQCS7c-AhqUyc-wNfPc .dQCS7c-AhqUyc-wNfPc{width:100%}.dQCS7c-AhqUyc-qWD73c{width:50%}.dQCS7c-AhqUyc-qWD73c.JNdkSc .JNdkSc-SmKAyb{padding-left:2.5%;padding-right:2.5%}.dQCS7c-AhqUyc-qWD73c.oaCj6d .lkp1lf{padding-left:2.5%;padding-right:2.5%}.dQCS7c-AhqUyc-qWD73c .wATtBb{left:-2.564103%;right:-2.564103%}.dQCS7c-AhqUyc-qWD73c .wATtBb .p67j0{left:5%;width:90%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-R6PoUb{width:16.666667%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-ibL1re{width:33.333333%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-c5RTEf{width:50%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-II5mzb{width:66.666667%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-wNfPc{width:83.333333%}.dQCS7c-AhqUyc-qWD73c .dQCS7c-AhqUyc-qWD73c{width:100%}.dQCS7c-AhqUyc-OwsYgb{width:58.333333%}.dQCS7c-AhqUyc-OwsYgb.JNdkSc .JNdkSc-SmKAyb{padding-left:2.14285714%;padding-right:2.14285714%}.dQCS7c-AhqUyc-OwsYgb.oaCj6d .lkp1lf{padding-left:2.14285714%;padding-right:2.14285714%}.dQCS7c-AhqUyc-OwsYgb .wATtBb{left:-2.189781%;right:-2.189781%}.dQCS7c-AhqUyc-OwsYgb .wATtBb .p67j0{left:4.28571428%;width:91.42857144%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-R6PoUb{width:14.285714%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-ibL1re{width:28.571429%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-c5RTEf{width:42.857143%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-II5mzb{width:57.142857%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-wNfPc{width:71.428571%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-qWD73c{width:85.714286%}.dQCS7c-AhqUyc-OwsYgb .dQCS7c-AhqUyc-OwsYgb{width:100%}.dQCS7c-AhqUyc-OiUrBf{width:66.666667%}.dQCS7c-AhqUyc-OiUrBf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.875%;padding-right:1.875%}.dQCS7c-AhqUyc-OiUrBf.oaCj6d .lkp1lf{padding-left:1.875%;padding-right:1.875%}.dQCS7c-AhqUyc-OiUrBf .wATtBb{left:-1.910828%;right:-1.910828%}.dQCS7c-AhqUyc-OiUrBf .wATtBb .p67j0{left:3.75%;width:92.5%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-R6PoUb{width:12.5%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-ibL1re{width:25%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-c5RTEf{width:37.5%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-II5mzb{width:50%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-wNfPc{width:62.5%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-qWD73c{width:75%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-OwsYgb{width:87.5%}.dQCS7c-AhqUyc-OiUrBf .dQCS7c-AhqUyc-OiUrBf{width:100%}.dQCS7c-AhqUyc-Clt0zb{width:75%}.dQCS7c-AhqUyc-Clt0zb.JNdkSc .JNdkSc-SmKAyb{padding-left:1.66666667%;padding-right:1.66666667%}.dQCS7c-AhqUyc-Clt0zb.oaCj6d .lkp1lf{padding-left:1.66666667%;padding-right:1.66666667%}.dQCS7c-AhqUyc-Clt0zb .wATtBb{left:-1.694915%;right:-1.694915%}.dQCS7c-AhqUyc-Clt0zb .wATtBb .p67j0{left:3.33333334%;width:93.33333332%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-R6PoUb{width:11.111111%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-ibL1re{width:22.222222%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-c5RTEf{width:33.333333%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-II5mzb{width:44.444444%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-wNfPc{width:55.555556%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-qWD73c{width:66.666667%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-OwsYgb{width:77.777778%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-OiUrBf{width:88.888889%}.dQCS7c-AhqUyc-Clt0zb .dQCS7c-AhqUyc-Clt0zb{width:100%}.dQCS7c-AhqUyc-EehZO{width:83.333333%}.dQCS7c-AhqUyc-EehZO.JNdkSc .JNdkSc-SmKAyb{padding-left:1.5%;padding-right:1.5%}.dQCS7c-AhqUyc-EehZO.oaCj6d .lkp1lf{padding-left:1.5%;padding-right:1.5%}.dQCS7c-AhqUyc-EehZO .wATtBb{left:-1.522843%;right:-1.522843%}.dQCS7c-AhqUyc-EehZO .wATtBb .p67j0{left:3%;width:94%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-R6PoUb{width:10%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-ibL1re{width:20%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-c5RTEf{width:30%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-II5mzb{width:40%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-wNfPc{width:50%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-qWD73c{width:60%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-OwsYgb{width:70%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-OiUrBf{width:80%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-Clt0zb{width:90%}.dQCS7c-AhqUyc-EehZO .dQCS7c-AhqUyc-EehZO{width:100%}.dQCS7c-AhqUyc-zQtlcf{width:91.666667%}.dQCS7c-AhqUyc-zQtlcf.JNdkSc .JNdkSc-SmKAyb{padding-left:1.36363636%;padding-right:1.36363636%}.dQCS7c-AhqUyc-zQtlcf.oaCj6d .lkp1lf{padding-left:1.36363636%;padding-right:1.36363636%}.dQCS7c-AhqUyc-zQtlcf .wATtBb{left:-1.382488%;right:-1.382488%}.dQCS7c-AhqUyc-zQtlcf .wATtBb .p67j0{left:2.72727272%;width:94.54545456%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-R6PoUb{width:9.090909%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-ibL1re{width:18.181818%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-c5RTEf{width:27.272727%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-II5mzb{width:36.363636%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-wNfPc{width:45.454545%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-qWD73c{width:54.545455%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-OwsYgb{width:63.636364%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-OiUrBf{width:72.727273%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-Clt0zb{width:81.818182%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-EehZO{width:90.909091%}.dQCS7c-AhqUyc-zQtlcf .dQCS7c-AhqUyc-zQtlcf{width:100%}.dQCS7c-AhqUyc-uQSCkd{width:100%}.dQCS7c-AhqUyc-uQSCkd.JNdkSc .JNdkSc-SmKAyb{padding-left:1.25%;padding-right:1.25%}.dQCS7c-AhqUyc-uQSCkd.oaCj6d .lkp1lf{padding-left:1.25%;padding-right:1.25%}.dQCS7c-AhqUyc-uQSCkd .wATtBb{left:-1.265823%;right:-1.265823%}.dQCS7c-AhqUyc-uQSCkd .wATtBb .p67j0{left:2.5%;width:95%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-R6PoUb{width:8.333333%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-ibL1re{width:16.666667%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-c5RTEf{width:25%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-II5mzb{width:33.333333%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-wNfPc{width:41.666667%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-qWD73c{width:50%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-OwsYgb{width:58.333333%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-OiUrBf{width:66.666667%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-Clt0zb{width:75%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-EehZO{width:83.333333%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-zQtlcf{width:91.666667%}.dQCS7c-AhqUyc-uQSCkd .dQCS7c-AhqUyc-uQSCkd{width:100%}}@media only screen and (min-width:1280px){.L6cTce-dQCS7c{display:none}}@media only screen and (min-width:768px){.L6cTce-hJDwNd{display:none}.LS81yb{padding-left:48px;padding-right:48px}}@media only screen and (max-width:479px){.L6cTce-purZT,.jXK9ad.L6cTce-purZT.D2fZ2{display:none}.oKdM2c,.LS81yb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:center;justify-content:center}.JNdkSc-SmKAyb{padding-left:3.75%;padding-right:3.75%}}@media only screen and (min-width:480px) and (max-width:767px){.L6cTce-pSzOP,.jXK9ad.L6cTce-pSzOP.D2fZ2{display:none}.LS81yb,.oKdM2c{max-width:544px}.JNdkSc-SmKAyb{padding-left:2.5%;padding-right:2.5%}}.Y8Sxfc{background-color:rgba(0,0,0,.03);height:100%;left:0;position:absolute;outline:2px dashed rgba(0,0,0,0.10);overflow:hidden;top:0;width:100%}.nyKByd .Y8Sxfc,.lQAHbd .Y8Sxfc,.O13XJf .Y8Sxfc{background-color:rgba(255,255,255,.2);outline:2px dashed rgba(255,255,255,.32)}.tpmmCb .Y8Sxfc,.qeLZfd .Y8Sxfc{background-color:rgba(0,0,0,.03);outline:2px dashed rgba(0,0,0,0.10)}.rm120e{font-size:0;height:28px;opacity:0;top:-2px;-webkit-transition:.2s cubic-bezier(0.4,0.0,0.2,1);transition:.2s cubic-bezier(0.4,0.0,0.2,1);vertical-align:middle;width:28px}.rm120e.u3bW4e,.zfr3Q .rm120e.eB48Hf,.zfr3Q .CJIdie .rm120e{opacity:1}.rm120e:hover .uav4k{opacity:.8}.rm120e .TpQm9d{height:28px;width:28px}.QOTFId{position:fixed;top:0;z-index:21}@media only screen and (max-width:479px){.QOTFId.sMVRZe{height:initial}.QOTFId.sMVRZe .jCzMm{white-space:initial}}.Qg1aof{bottom:16px;position:fixed;right:24px;z-index:30}.t5XhQc{bottom:-80px;display:none;height:56px;position:absolute;right:0;-webkit-transition:bottom .35s cubic-bezier(0.4,0.0,0.2,1);transition:bottom .35s cubic-bezier(0.4,0.0,0.2,1);width:56px}.t5XhQc.TE29zb{display:block}.F4C1ud-bMElCd{bottom:0px}.F4C1ud-R6PoUb{bottom:64px}.F4C1ud-ibL1re{bottom:128px}.F4C1ud-c5RTEf{bottom:192px}.F4C1ud-II5mzb{bottom:256px}@media only screen and (max-width:1279px){.Qg1aof:not(.HnW5Jb)>.t5XhQc{bottom:-80px}}.MAXCNe{display:block;transition:.35s cubic-bezier(0.4,0.0,0.2,1);background:#f5f5f5}@media print{.MAXCNe{display:none}}.EI709d{color:#616161}.lxdgac{height:100%;position:absolute;top:0;width:100%;z-index:10}.oWHwWc{background-color:rgba(147,147,147,0.7);height:52px;position:absolute;right:12px;top:0;width:52px;z-index:15}.hmuWb{fill:white;height:18px;left:17px;position:relative;top:17px;width:18px}@media only screen and (min-width:768px){.oWHwWc{opacity:0;-webkit-transition:opacity .25s linear .25s;transition:opacity .25s linear .25s}.WIdY2d:hover .oWHwWc,.oWHwWc:focus{opacity:1;-webkit-transition-property:none;transition-property:none}.TPTLxf{display:none}}@media only screen and (max-width:767px){.TPTLxf{padding-top:75%}.t5qrWd{display:none}}.SzkQif{cursor:pointer}.WIdY2d.M1aSXe{overflow:hidden}.WIdY2d.M1aSXe.GcxRRc{-webkit-overflow-scrolling:touch;overflow:scroll}.CjVfdc{display:inline-block;max-width:100%;pointer-events:all;position:relative}.PPhIP{pointer-events:none;position:absolute;z-index:10}.PPhIP.OXwyfc{left:-37px;padding-right:9px}.PPhIP.rviiZ{right:-37px;padding-left:9px}.PPhIP:hover,.zfr3Q:hover .PPhIP{pointer-events:auto}@media only screen and (max-width:767px){.PPhIP{display:none}}.lhbLEe{background:#fafafa;-webkit-border-radius:2px;border-radius:2px;bottom:0;-webkit-box-shadow:0 6px 10px rgba(0,0,0,0.54);box-shadow:0 6px 10px rgba(0,0,0,0.54);color:white;font-family:Roboto,sans-serif;left:0;margin:24px;padding:20px;position:fixed;-webkit-transform:translateY(0);transform:translateY(0);-webkit-transition:all .25s cubic-bezier(0.4,0.0,0.2,1);transition:all .25s cubic-bezier(0.4,0.0,0.2,1);z-index:90}.dnjcK{min-width:280px;padding:24px 24px 8px 24px}.dnjcK .QjDm3{display:block;margin-right:0;margin-bottom:24px;max-width:392px;font-size:16px}.dnjcK .hsMuBe{float:right;margin-right:-16px}.dnjcK .vzKQHb{margin-left:8px}.lhbLEe.LSElHe{margin-bottom:0;-webkit-transform:translateY(100%);transform:translateY(100%)}.s0sm1d{display:inline-block;vertical-align:middle;background-color:#2196f3;-webkit-border-radius:50%;border-radius:50%;margin-right:24px}.vzKQHb{display:inline-block;vertical-align:middle;color:rgba(0,0,0,0.54);cursor:pointer;font-size:14px;font-weight:500;letter-spacing:.5px;margin-left:20px;padding:8px;text-transform:uppercase}.vzKQHb.chg4Jd{background:#e0e0e0}a.vzKQHb{text-decoration:none}.vzKQHb:not(a):hover,.vzKQHb.chg4Jd:not(a){color:rgba(0,0,0,0.87)}.vzKQHb>span{vertical-align:middle}.QjDm3{display:inline-block;vertical-align:middle;color:rgba(0,0,0,0.87);font-size:15px;font-weight:400;line-height:1.34;margin-right:10px;max-width:320px;word-wrap:break-word}.K2OSr{color:#1976d2}@media only screen and (max-width:767px){.lhbLEe{-webkit-box-shadow:0 -6px 15px rgba(0,0,0,0.38);box-shadow:0 -6px 15px rgba(0,0,0,0.38);margin:0;padding:20px 24px 14px 24px;text-align:right;width:-webkit-calc(100% - 48px);width:calc(100% - 48px)}.lhbLEe.LSElHe{margin-bottom:-15px}.vzKQHb{font-size:15px}.s0sm1d{display:none}.QjDm3,.dnjcK .QjDm3{display:block;font-size:18px;margin-bottom:10px;margin-left:0;margin-right:0;max-width:100%;text-align:left}}.oXhgue{background-color:black;border-spacing:10px 0;display:table;font-family:Roboto,sans-serif;font-size:14px;height:40px;position:fixed;width:100%;z-index:90}.AYJm0{color:white;display:table-cell;opacity:.9;text-align:center;vertical-align:middle}.uItUte{display:table-cell;padding-top:3px;vertical-align:middle}.gg4Ss{cursor:pointer;height:18px;fill:white;opacity:.8;position:relative;width:18px}.AYJm0 a{color:white;font-weight:bold;opacity:1;text-decoration:none}.AYJm0 a:hover{text-decoration:underline}.LdhqEc:hover{opacity:1}.NuCEdc{display:table-cell;font-weight:bold;position:relative;text-transform:uppercase;vertical-align:middle}.LUFmFf{color:#f4b400;cursor:pointer}.KcBtX{color:#f4b400}.mDtvSb{color:#0f9d58}.WZUyCb{background:#eeeeee}.p9b27{background-color:#eeeeee;height:100vh;opacity:0;position:fixed;-webkit-transition:opacity .18s ease;transition:opacity .18s ease;width:100vw;z-index:-10}.mWWh9d{opacity:1;-webkit-transition:opacity .18s ease;transition:opacity .18s ease;z-index:110}.zGRpZc{border:1px solid rgba(0,0,0,0.12);-webkit-border-radius:2px;border-radius:2px;background-color:rgba(255,255,255,0.12);position:relative}.TqzB8b{color:inherit;text-decoration:none}.eu5CGc{bottom:0;left:0;position:absolute;right:0;top:0}.SEaNKb{background-color:#ffffff;border-bottom:1px solid rgba(0,0,0,0.12);width:100%}.LI4ZNc{border-bottom:1px solid rgba(0,0,0,0.12);width:100%;background-repeat:no-repeat;background-position:center;-webkit-background-size:cover;background-size:cover}.vBSm9c{display:block;overflow:hidden;padding:8px}.nWW5Nb{display:block}.dB7MS{display:block;overflow:hidden;padding:0 8px 8px 8px}.Ebdwsc{position:relative}.eH00nf{line-height:normal}.ZQSezd,.y4Jagc{font-family:Roboto;font-size:20px;text-align:center}.NVoTp{color:#bdbdbd;font-size:181px;font-weight:900;margin:0;margin-top:50px}.nsUy4b{color:#757575;font-weight:300}.eEhdpf{color:#1e88e5;font-weight:500;text-decoration:none;text-transform:uppercase}.Clk3Bd{color:#1e88e5;font-weight:500;text-decoration:none}.lEFhrf{color:#999}.y4Jagc img{height:100px;width:100px;opacity:.2}.y4Jagc{margin-top:150px}.yYnFo{background-color:#f5f5f5}.fyr3xd{display:block;height:100%}.fyr3xd .fw1Wgd{color:#9e9e9e;font-size:123px;left:50%;margin:0;position:absolute;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.AKpWA{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:100vh}footer,.RCETm{-webkit-flex:0 0 auto;flex:0 0 auto;outline:none}.Xpil1b{-webkit-flex:1 0 auto;flex:1 0 auto}.VICjCf{margin-left:auto;margin-right:auto}.Nu95r{bottom:0;height:100%;left:0;overflow:hidden;position:absolute;right:0;top:0;width:100%}.WxWicb{padding-bottom:0;padding-top:0}.tyJCtd{position:relative;width:100%}.mGzaTb{padding:8px}.qUO6Ue.qUO6Ue .tyJCtd{padding-right:48px}.yYI8W .mGzaTb{padding:14px 8px}.t3iYD{overflow:hidden}.CENy8b{display:block;width:100%}.XqQF9c{color:inherit;text-decoration:none}.qUO6Ue .oKdM2c:first-child{border-bottom:1px solid #5f6368;cursor:pointer}.nyKByd .qUO6Ue .oKdM2c:first-child,.lQAHbd .qUO6Ue .oKdM2c:first-child,.O13XJf .qUO6Ue .oKdM2c:first-child{border-bottom:1px solid rgba(255,255,255,0.32)}.vhaaFf .oKdM2c:first-child{display:block}.vhaaFf .oKdM2c{display:none}.Vtm4Z{font-size:40px;color:rgba(0,0,0,0.54);fill:rgba(0,0,0,0.54)}.nyKByd .Vtm4Z,.lQAHbd .Vtm4Z,.O13XJf .Vtm4Z{color:rgba(255,255,255,0.32);fill:rgba(255,255,255,0.32)}.zGbri.zGbri,.amZmwc.amZmwc{position:absolute;top:50%;right:0;z-index:1;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.vhaaFf .zGbri,.amZmwc{display:block}.vhaaFf .amZmwc,.zGbri{display:none}.iwQgFb{margin-top:9px;height:1px;background-color:#5f6368}.GNzUNc{white-space:pre-wrap;word-wrap:break-word}.G9Qloe .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*56px);padding-bottom:56px;visibility:hidden;pointer-events:none}.tyJCtd .aP9Z7e{display:none}.b2Iqye .tyJCtd .aP9Z7e{display:block;margin-bottom:0}.G9Qloe.DdtOdf .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*120px);padding-bottom:120px;visibility:hidden;pointer-events:none}.b2Iqye.DdtOdf .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*64px);padding-bottom:64px;visibility:hidden;pointer-events:none}.G9Qloe section:not(.LB7kq) .tyJCtd .duRjpb,.G9Qloe section:not(.LB7kq) .tyJCtd .JYVBee,.G9Qloe section:not(.LB7kq) .tyJCtd .OmQG5e,.b2Iqye section:not(.LB7kq) .tyJCtd .duRjpb,.b2Iqye section:not(.LB7kq) .tyJCtd .JYVBee,.b2Iqye section:not(.LB7kq) .tyJCtd .OmQG5e{pointer-events:none}.G9Qloe section:not(.LB7kq) .tyJCtd .dhtgD,.G9Qloe section:not(.LB7kq) .tyJCtd .XqQF9c,.b2Iqye section:not(.LB7kq) .tyJCtd .dhtgD,.b2Iqye section:not(.LB7kq) .tyJCtd .XqQF9c{pointer-events:all}@media only screen and (min-width:768px){.LB7kq.gk8rDe .VICjCf .D2fZ2{padding-bottom:1.5rem;padding-top:1.5rem}.sPG4ze section:first-child .mYVXT{padding-top:0}.DdtOdf .LB7kq.WVklg{height:-webkit-calc(100vh - 64px);height:calc(100vh - 64px)}}.Hj0hJ{position:absolute;width:100%}@media only screen and (max-width:479px){.DdtOdf .LB7kq.WVklg{height:-webkit-calc(100vh - 48px);height:calc(100vh - 48px)}.DdtOdf.WZv7J .LB7kq.WVklg{height:-webkit-calc(100vh - 96px);height:calc(100vh - 96px)}.G9Qloe.DdtOdf .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*104px);padding-bottom:104px;visibility:hidden;pointer-events:none}.G9Qloe.DdtOdf.WZv7J .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*152px);padding-bottom:152px;visibility:hidden;pointer-events:none}}@media only screen and (max-width:767px){.OjCsFc{padding-top:1.5rem}.wHaque{padding-bottom:1.5rem}.zGbri,.amZmwc{margin-top:10px}}.gk8rDe .IFuOkc{display:none}.M63kCb{height:100vh;width:100vw;position:fixed;z-index:-10}@media only screen and (max-width:1279px){.vS6Uxe.b2Iqye .LB7kq{padding-bottom:56px;padding-top:112px}.b2Iqye .tyJCtd:not(.lkHyyc) .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*56px);padding-bottom:56px;visibility:hidden;pointer-events:none;margin-bottom:0}.b2Iqye.DdtOdf .tyJCtd .aP9Z7e{display:block;margin-bottom:0;margin-top:calc(-1*120px);padding-bottom:120px;visibility:hidden;pointer-events:none}.b2Iqye .tyJCtd:not(.lkHyyc) .duRjpb,.b2Iqye .tyJCtd:not(.lkHyyc) .JYVBee,.b2Iqye .tyJCtd:not(.lkHyyc) .OmQG5e{pointer-events:none}.b2Iqye .tyJCtd:not(.lkHyyc) .dhtgD,.b2Iqye .tyJCtd:not(.lkHyyc) .XqQF9c{pointer-events:all}.sPG4ze section:first-child .mYVXT{padding-top:56px}}.vS6Uxe.G9Qloe .LB7kq{padding-bottom:56px;padding-top:112px}.SwuGbc section:first-child .mYVXT{padding-top:56px}.LS81yb{outline:0}::-webkit-scrollbar-thumb{border:1px solid rgba(255,255,255,0.4)}.DnLU4{height:48px;width:48px;text-align:center;vertical-align:middle;position:absolute;bottom:0;left:-webkit-calc(50% - 24px);left:calc(50% - 24px)}.XE8yyf{height:48px;width:48px;position:relative;top:-12px}.HqAAld{opacity:.4;top:-12px}.HqAAld:hover,.HqAAld:focus{opacity:.8}.VuZoBf{outline:2px solid green}.SgjPsd{background-color:green;height:2px;width:100%;margin-top:2px;margin-bottom:2px}.Kk7lMc-DWWcKd-OomVLb-haAclf{background-color:white;border-left:1px solid #dadce0;-webkit-box-sizing:border-box;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:100%;position:relative;width:56px}.Kk7lMc-DWWcKd-OomVLb-Ku9FSb-haAclf{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1 0 auto;-webkit-flex:1 0 auto;flex:1 0 auto;-webkit-flex-direction:column;flex-direction:column;margin-bottom:56px}.Kk7lMc-DWWcKd-OomVLb-htvI8d-IT5dJd-haAclf{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:0 1 100%;-webkit-flex:0 1 100%;flex:0 1 100%;-webkit-flex-direction:column;flex-direction:column;overflow:hidden;padding-top:16px}.Kk7lMc-DWWcKd-OomVLb-hgDUwe{border-top:1px solid #dadce0;content:'';display:block;-webkit-box-flex:1 0 auto;-webkit-flex:1 0 auto;flex:1 0 auto;margin:0 auto;padding-bottom:16px;width:20px}.Kk7lMc-DWWcKd-OomVLb-htvI8d-IT5dJd-haAclf::before{border-top:1px solid #dadce0;content:'';display:block;-webkit-box-flex:1 0 auto;-webkit-flex:1 0 auto;flex:1 0 auto;margin:0 auto;padding-bottom:16px;width:20px}.Kk7lMc-DWWcKd-OomVLb-hgDUwe{margin-top:16px}.Kk7lMc-Ia7Qfc-to915.Kk7lMc-DWWcKd-OomVLb-haAclf,.Kk7lMc-Ia7Qfc-CZjX4e.Kk7lMc-DWWcKd-OomVLb-haAclf{background-color:transparent}.Kk7lMc-Ia7Qfc-to915.Kk7lMc-DWWcKd-OomVLb-haAclf,.Kk7lMc-Ia7Qfc-to915 .Kk7lMc-DWWcKd-OomVLb-hgDUwe,.Kk7lMc-Ia7Qfc-to915 .Kk7lMc-DWWcKd-OomVLb-htvI8d-IT5dJd-haAclf::before{border-color:rgba(255,255,255,.12)}.Kk7lMc-Ia7Qfc-CZjX4e.Kk7lMc-DWWcKd-OomVLb-haAclf,.Kk7lMc-Ia7Qfc-CZjX4e .Kk7lMc-DWWcKd-OomVLb-hgDUwe,.Kk7lMc-Ia7Qfc-CZjX4e .Kk7lMc-DWWcKd-OomVLb-htvI8d-IT5dJd-haAclf::before{border-color:rgba(100,121,143,.12)}.Kk7lMc-Ku9FSb-DWWcKd-OomVLb{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;height:100px;outline:none;overflow:hidden}.Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge{padding:16px 0}.Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge-ojAhob{-webkit-animation:dotLoadingAnimation 1s infinite ease-in-out both;-webkit-animation:dotLoadingAnimation 1s infinite ease-in-out both;animation:dotLoadingAnimation 1s infinite ease-in-out both;height:8px;background-color:#757575;-webkit-border-radius:50%;border-radius:50%;margin:0 auto 12px;width:8px}.Kk7lMc-Ia7Qfc-to915 .Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge-ojAhob{background-color:#fff}.Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge-ojAhob:last-child{margin-bottom:0}.Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge-ojAhob-R6PoUb{-webkit-animation-delay:-0.5s;-webkit-animation-delay:-0.5s;animation-delay:-0.5s}.Kk7lMc-DWWcKd-OomVLb-ge6pde-uDEFge-ojAhob-ibL1re{-webkit-animation-delay:-0.25s;-webkit-animation-delay:-0.25s;animation-delay:-0.25s}@-webkit-keyframes dotLoadingAnimation{0%,80%,to{opacity:.5}40%{opacity:1}}@keyframes dotLoadingAnimation{0%,80%,to{opacity:.5}40%{opacity:1}}.DWWcKd-OomVLb-LgbsSe{cursor:pointer;height:56px;outline:none;pointer-events:none;position:relative;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);width:56px}.DWWcKd-OomVLb-LgbsSe-OWB6Me{cursor:default;opacity:.38}.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.DWWcKd-OomVLb-LgbsSe-XpnDCe.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-FNFY6c .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{background-color:#e8eaed}.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.DWWcKd-OomVLb-LgbsSe-FNFY6c .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{background-color:#f1f3f4}.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-gk6SMd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{background-color:rgba(255,255,255,.24)}.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-FNFY6c .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc,.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-gk6SMd.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{background-color:rgba(255,255,255,.12)}.DWWcKd-OomVLb-LgbsSe-Bz112c-haAclf{background-color:transparent;background-repeat:no-repeat;background-position:center;-webkit-background-size:20px 20px;background-size:20px 20px;-webkit-border-radius:50%;border-radius:50%;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;height:40px;left:8px;pointer-events:auto;position:absolute;top:8px;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);width:40px}.DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{-webkit-border-radius:50%;border-radius:50%;display:-webkit-flex;display:flex;height:40px;left:8px;position:absolute;top:8px;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1);width:40px}.DWWcKd-OomVLb-LgbsSe-Bz112c{display:block;fill:#5f6368;margin:auto;-webkit-transition:all .3s cubic-bezier(.4,0,.2,1);transition:all .3s cubic-bezier(.4,0,.2,1)}.Kk7lMc-Ia7Qfc-to915 .DWWcKd-OomVLb-LgbsSe-Bz112c{fill:#fff}.DWWcKd-OomVLb-LgbsSe-zfbKYe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc.DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{-webkit-animation:presence-scale-inner 3s cubic-bezier(0.05,0.69,0.67,1) infinite normal;animation:presence-scale-inner 3s cubic-bezier(0.05,0.69,0.67,1) infinite normal;height:-webkit-calc(40px - 8px);height:calc(40px - 8px);width:-webkit-calc(40px - 8px);width:calc(40px - 8px);left:-webkit-calc((8px/2) + 8px);left:calc((8px/2) + 8px);top:-webkit-calc((8px/2) + 8px);top:calc((8px/2) + 8px)}.DWWcKd-OomVLb-LgbsSe-zfbKYe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc.DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{-webkit-animation:presence-scale-outer 3s cubic-bezier(0.05,0.69,0.67,1) infinite normal;animation:presence-scale-outer 3s cubic-bezier(0.05,0.69,0.67,1) infinite normal;background-color:transparent;border-style:solid;border-width:-webkit-calc(8px/2);border-width:calc(8px/2);height:40px;width:40px;left:-webkit-calc(8px - (8px/2));left:calc(8px - (8px/2));top:-webkit-calc(8px - (8px/2));top:calc(8px - (8px/2))}.DWWcKd-OomVLb-LgbsSe-mWkOW .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc.DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{-webkit-animation:inksplash-scale-background 2s cubic-bezier(0.05,0.69,0.67,1) infinite normal;animation:inksplash-scale-background 2s cubic-bezier(0.05,0.69,0.67,1) infinite normal}.DWWcKd-OomVLb-LgbsSe-mWkOW .DWWcKd-OomVLb-LgbsSe-Bz112c-haAclf{-webkit-animation:inksplash-scale-icon 2s cubic-bezier(0.05,0.69,0.67,1) infinite normal;animation:inksplash-scale-icon 2s cubic-bezier(0.05,0.69,0.67,1) infinite normal}@keyframes presence-scale-inner{0%{opacity:0;-webkit-transform:scale(0.57);transform:scale(0.57);visibility:hidden}15%{opacity:0;-webkit-transform:scale(0.57);transform:scale(0.57);visibility:visible}35%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}60%{opacity:0;-webkit-transform:scale(0.57);transform:scale(0.57)}to{opacity:0;-webkit-transform:scale(0.57);transform:scale(0.57);visibility:hidden}}@keyframes presence-scale-outer{0%{opacity:0;-webkit-transform:scale(0.75);transform:scale(0.75);visibility:hidden}34%{opacity:0;-webkit-transform:scale(0.75);transform:scale(0.75);visibility:visible}36%{opacity:.99}65%{opacity:1}90%{-webkit-transform:scale(1);transform:scale(1)}to{opacity:0;-webkit-transform:scale(1);transform:scale(1);visibility:hidden}}@keyframes inksplash-scale-background{0%{opacity:0;-webkit-transform:scale(0.00);transform:scale(0.00)}35%{opacity:0;-webkit-transform:scale(0.40);transform:scale(0.40)}50%{opacity:1}80%{-webkit-transform:scale(2.05);transform:scale(2.05)}to{opacity:0;-webkit-transform:scale(0.00);transform:scale(0.00)}}@keyframes inksplash-scale-icon{0%{-webkit-transform:scale(1.00);transform:scale(1.00)}20%{-webkit-transform:scale(1.00);transform:scale(1.00)}30%{-webkit-transform:scale(1.10);transform:scale(1.10)}40%{-webkit-transform:scale(1.00);transform:scale(1.00)}to{-webkit-transform:scale(1.00);transform:scale(1.00)}}.ONKrsd-jrnDlb-ho7Xm-VPIWce::after{content:"";background-color:#db4437;-webkit-border-radius:50%;border-radius:50%;height:8px;position:absolute;right:17px;top:17px;width:8px}.Kk7lMc-Ku9FSb-DWWcKd-OomVLb .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:#e8f0fe}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-v3pZbf .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:rgba(66,133,244,.24)}.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:#e6f4ea}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:rgba(52,168,83,.24)}.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:#fef7e0}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:rgba(251,188,4,.24)}.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-n0tgWb{border-color:rgba(255,255,255,.24)}.Kk7lMc-Ku9FSb-DWWcKd-OomVLb .DWWcKd-OomVLb-LgbsSe-mWkOW .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ku9FSb-DWWcKd-OomVLb .DWWcKd-OomVLb-LgbsSe-zfbKYe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ku9FSb-DWWcKd-OomVLb .DWWcKd-OomVLb-LgbsSe-gk6SMd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-v3pZbf.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#e8f0fe}.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-v3pZbf.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#d2e3fc}.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-mWkOW.ONKrsd-jrnDlb-v3pZbf .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-zfbKYe.ONKrsd-jrnDlb-v3pZbf .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-v3pZbf .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-v3pZbf.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(66,133,244,.24)}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-v3pZbf.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-v3pZbf.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(66,133,244,.12)}.DWWcKd-OomVLb-LgbsSe-mWkOW.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-zfbKYe.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-nllRtd.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#e6f4ea}.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-nllRtd.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#ceead6}.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-mWkOW.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-zfbKYe.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-nllRtd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-nllRtd.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(52,168,83,.24)}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-nllRtd.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-nllRtd.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(52,168,83,.12)}.DWWcKd-OomVLb-LgbsSe-mWkOW.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-zfbKYe.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-gS7Ybc.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#fef7e0}.DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-gS7Ybc.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:#feefc3}.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-mWkOW.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-zfbKYe.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-gS7Ybc .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .DWWcKd-OomVLb-LgbsSe-gk6SMd.ONKrsd-jrnDlb-gS7Ybc.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(251,188,4,.24)}.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-gS7Ybc.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-CZjX4e .ONKrsd-jrnDlb-gS7Ybc.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(251,188,4,.12)}.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-mWkOW .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-zfbKYe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-gk6SMd .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-gk6SMd.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(255,255,255,.24)}.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-ZmdkE .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb,.Kk7lMc-Ia7Qfc-to915 .ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-XpnDCe .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc-SmKAyb{background-color:rgba(255,255,255,.12)}.ONKrsd-jrnDlb-Bz112c-gvZm2b-uDEFge{background-color:#d704fb;-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px;display:none;height:40px;position:absolute;right:1px;top:8px;width:3px}.ONKrsd-jrnDlb-LgbsSe.DWWcKd-OomVLb-LgbsSe-gk6SMd .ONKrsd-jrnDlb-Bz112c-gvZm2b-uDEFge{display:inherit}.ONKrsd-jrnDlb-v3pZbf .ONKrsd-jrnDlb-Bz112c-gvZm2b-uDEFge{background-color:#4285f4}.ONKrsd-jrnDlb-nllRtd .ONKrsd-jrnDlb-Bz112c-gvZm2b-uDEFge{background-color:#34a853}.ONKrsd-jrnDlb-gS7Ybc .ONKrsd-jrnDlb-Bz112c-gvZm2b-uDEFge{background-color:#fbbc04}.Kk7lMc-Ia7Qfc-to915 .Kk7lMc-RPzgNd-xl07Ob-LgbsSe:not(.DWWcKd-OomVLb-LgbsSe-ZmdkE) .DWWcKd-OomVLb-LgbsSe-Bz112c-AHe6Kc{opacity:.7}.mTlTN{height:100%;margin-top:10px;width:100%;z-index:1000}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}.V0wXVe{-webkit-animation:fadeIn 1s;animation:fadeIn 1s;background-color:white;box-shadow:0 1px 4px;-webkit-box-shadow:0 1px 4px;height:100%;left:100%;outline:none;position:absolute;top:0;width:100%}.V0wXVe:focus{outline:none}.nalYvf{background-color:#4374e0;min-height:25px;font-size:15px;margin-bottom:5px;padding:16px 56px;font-weight:900}.ClF2qe.eiyPre{display:inline-block;background-color:transparent;position:absolute;top:10px;color:white;border:none;outline:none;box-shadow:none;-webkit-box-shadow:none;font-size:36px;height:36px;min-width:36px;width:36px;line-height:36px;margin:0 10px;padding:0 4px}.ClF2qe.eiyPre:focus{color:#ccc;background-color:transparent;-webkit-box-shadow:none;box-shadow:none;outline:none;border:none}.hROarf.ClF2qe{right:0}.BLyPl.ClF2qe{left:0;font-size:28px}.DY3Y7 .APALFe{display:inline-block;margin:5px auto;background-color:white;min-width:26px;color:#262626;box-shadow:0 0 2px rgba(0,0,0,.25);-webkit-box-shadow:0 0 2px rgba(0,0,0,.25);border:1px solid #d9d9d9;padding:6px 10px;width:80%;word-wrap:normal;white-space:normal;height:auto}.DY3Y7 .APALFe:active{box-shadow:inset 0 1px 0 #ddd;-webkit-box-shadow:inset 0 1px 0 #ddd;background-color:#e5e5e5;border-color:#bfbfbf}.DY3Y7 .APALFe:hover{background-color:#f5f5f5;box-shadow:0 0 2px rgba(0,0,0,.3);-webkit-box-shadow:0 0 2px rgba(0,0,0,.3);border-color:#bfbfbf}.ffVw8c{display:inline-block;text-align:center;width:auto;color:white;outline:none}.DY3Y7{text-align:center}.sxW6Mb{display:none}.niGtEb{font-size:16px;padding:16px}.QKgWhf .ZLoVhe{font-size:24px;line-height:normal}.asPyU{font-size:16px;margin-top:20px;margin-bottom:20px}.VkaByc{position:relative}.mTlTN.QKgWhf{height:auto;width:auto;position:relative}.QKgWhf .DY3Y7 .APALFe{padding:16px 0;box-shadow:1px 1px 5px 0 rgba(0,0,0,.35);-webkit-box-shadow:1px 1px 5px 0 rgba(0,0,0,.35);border:none;text-align:center;text-transform:uppercase;width:99%;margin-left:1px}.QKgWhf .DY3Y7 .APALFe:active{box-shadow:1px 1px 5px 0 rgba(0,0,0,.4);-webkit-box-shadow:1px 1px 5px 0 rgba(0,0,0,.4);background-color:#f0f0f0;border-color:transparent}.QKgWhf .DY3Y7 .APALFe:hover{box-shadow:1px 1px 5px 0 rgba(0,0,0,.37);-webkit-box-shadow:1px 1px 5px 0 rgba(0,0,0,.37);background-color:#f5f5f5;border-color:transparent}.QKgWhf .DY3Y7{text-align:left}.QKgWhf .V0wXVe{height:auto;box-shadow:none;-webkit-box-shadow:none;position:relative;left:0%;display:block}.QKgWhf .nalYvf{background-color:white;padding:16px 0}.QKgWhf .ffVw8c{color:black;text-align:left}.QKgWhf .ClF2qe{display:none}.QKgWhf .UuYU7d .sxW6Mb{display:inline-block;color:#4374e0;box-shadow:none;-webkit-box-shadow:none;text-align:start;background-color:transparent;padding:16px 0;border:none;text-transform:uppercase;margin-left:1px}.jnIAIf{width:100%;text-align:center}@keyframes primary-indeterminate-translate{0%{-webkit-transform:translateX(-145.166611%);transform:translateX(-145.166611%)}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495819);animation-timing-function:cubic-bezier(.5,0,.701732,.495819);-webkit-transform:translateX(-145.166611%);transform:translateX(-145.166611%)}59.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);-webkit-transform:translateX(-61.495191%);transform:translateX(-61.495191%)}to{-webkit-transform:translateX(55.444446%);transform:translateX(55.444446%)}}@-webkit-keyframes primary-indeterminate-translate{0%{-webkit-transform:translateX(-145.166611%);transform:translateX(-145.166611%)}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495819);animation-timing-function:cubic-bezier(.5,0,.701732,.495819);-webkit-transform:translateX(-145.166611%);transform:translateX(-145.166611%)}59.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);-webkit-transform:translateX(-61.495191%);transform:translateX(-61.495191%)}to{-webkit-transform:translateX(55.444446%);transform:translateX(55.444446%)}}@keyframes primary-indeterminate-translate-reverse{0%{-webkit-transform:translateX(145.166611%);transform:translateX(145.166611%)}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495819);animation-timing-function:cubic-bezier(.5,0,.701732,.495819);-webkit-transform:translateX(145.166611%);transform:translateX(145.166611%)}59.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);-webkit-transform:translateX(61.495191%);transform:translateX(61.495191%)}to{-webkit-transform:translateX(-55.4444461%);transform:translateX(-55.4444461%)}}@-webkit-keyframes primary-indeterminate-translate-reverse{0%{-webkit-transform:translateX(145.166611%);transform:translateX(145.166611%)}20%{-webkit-animation-timing-function:cubic-bezier(.5,0,.701732,.495819);animation-timing-function:cubic-bezier(.5,0,.701732,.495819);-webkit-transform:translateX(145.166611%);transform:translateX(145.166611%)}59.15%{-webkit-animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);animation-timing-function:cubic-bezier(.302435,.381352,.55,.956352);-webkit-transform:translateX(61.495191%);transform:translateX(61.495191%)}to{-webkit-transform:translateX(-55.4444461%);transform:translateX(-55.4444461%)}}@keyframes primary-indeterminate-scale{0%{-webkit-transform:scaleX(.08);transform:scaleX(.08)}36.65%{-webkit-animation-timing-function:cubic-bezier(.334731,.124820,.785844,1);animation-timing-function:cubic-bezier(.334731,.124820,.785844,1);-webkit-transform:scaleX(.08);transform:scaleX(.08)}69.15%{-webkit-animation-timing-function:cubic-bezier(.06,.11,.6,1);animation-timing-function:cubic-bezier(.06,.11,.6,1);-webkit-transform:scaleX(.661479);transform:scaleX(.661479)}to{-webkit-transform:scaleX(.08);transform:scaleX(.08)}}@-webkit-keyframes primary-indeterminate-scale{0%{-webkit-transform:scaleX(.08);transform:scaleX(.08)}36.65%{-webkit-animation-timing-function:cubic-bezier(.334731,.124820,.785844,1);animation-timing-function:cubic-bezier(.334731,.124820,.785844,1);-webkit-transform:scaleX(.08);transform:scaleX(.08)}69.15%{-webkit-animation-timing-function:cubic-bezier(.06,.11,.6,1);animation-timing-function:cubic-bezier(.06,.11,.6,1);-webkit-transform:scaleX(.661479);transform:scaleX(.661479)}to{-webkit-transform:scaleX(.08);transform:scaleX(.08)}}@keyframes auxiliary-indeterminate-translate{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.515058,.409685);animation-timing-function:cubic-bezier(.15,0,.515058,.409685);-webkit-transform:translateX(-54.888891%);transform:translateX(-54.888891%)}25%{-webkit-animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);-webkit-transform:translateX(-17.236978%);transform:translateX(-17.236978%)}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);-webkit-transform:translateX(29.497274%);transform:translateX(29.497274%)}to{-webkit-transform:translateX(105.388891%);transform:translateX(105.388891%)}}@-webkit-keyframes auxiliary-indeterminate-translate{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.515058,.409685);animation-timing-function:cubic-bezier(.15,0,.515058,.409685);-webkit-transform:translateX(-54.888891%);transform:translateX(-54.888891%)}25%{-webkit-animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);-webkit-transform:translateX(-17.236978%);transform:translateX(-17.236978%)}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);-webkit-transform:translateX(29.497274%);transform:translateX(29.497274%)}to{-webkit-transform:translateX(105.388891%);transform:translateX(105.388891%)}}@keyframes auxiliary-indeterminate-translate-reverse{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.515058,.409685);animation-timing-function:cubic-bezier(.15,0,.515058,.409685);-webkit-transform:translateX(54.888891%);transform:translateX(54.888891%)}25%{-webkit-animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);-webkit-transform:translateX(17.236978%);transform:translateX(17.236978%)}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);-webkit-transform:translateX(-29.497274%);transform:translateX(-29.497274%)}to{-webkit-transform:translateX(-105.388891%);transform:translateX(-105.388891%)}}@-webkit-keyframes auxiliary-indeterminate-translate-reverse{0%{-webkit-animation-timing-function:cubic-bezier(.15,0,.515058,.409685);animation-timing-function:cubic-bezier(.15,0,.515058,.409685);-webkit-transform:translateX(54.888891%);transform:translateX(54.888891%)}25%{-webkit-animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);animation-timing-function:cubic-bezier(.310330,.284058,.8,.733712);-webkit-transform:translateX(17.236978%);transform:translateX(17.236978%)}48.35%{-webkit-animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);animation-timing-function:cubic-bezier(.4,.627035,.6,.902026);-webkit-transform:translateX(-29.497274%);transform:translateX(-29.497274%)}to{-webkit-transform:translateX(-105.388891%);transform:translateX(-105.388891%)}}@keyframes auxiliary-indeterminate-scale{0%{-webkit-animation-timing-function:cubic-bezier(.205028,.057051,.576610,.453971);animation-timing-function:cubic-bezier(.205028,.057051,.576610,.453971);-webkit-transform:scaleX(.08);transform:scaleX(.08)}19.15%{-webkit-animation-timing-function:cubic-bezier(.152313,.196432,.648374,1.004315);animation-timing-function:cubic-bezier(.152313,.196432,.648374,1.004315);-webkit-transform:scaleX(.457104);transform:scaleX(.457104)}44.15%{-webkit-animation-timing-function:cubic-bezier(.257759,.003163,.211762,1.381790);animation-timing-function:cubic-bezier(.257759,.003163,.211762,1.381790);-webkit-transform:scaleX(.727960);transform:scaleX(.727960)}to{-webkit-transform:scaleX(.08);transform:scaleX(.08)}}@-webkit-keyframes auxiliary-indeterminate-scale{0%{-webkit-animation-timing-function:cubic-bezier(.205028,.057051,.576610,.453971);animation-timing-function:cubic-bezier(.205028,.057051,.576610,.453971);-webkit-transform:scaleX(.08);transform:scaleX(.08)}19.15%{-webkit-animation-timing-function:cubic-bezier(.152313,.196432,.648374,1.004315);animation-timing-function:cubic-bezier(.152313,.196432,.648374,1.004315);-webkit-transform:scaleX(.457104);transform:scaleX(.457104)}44.15%{-webkit-animation-timing-function:cubic-bezier(.257759,.003163,.211762,1.381790);animation-timing-function:cubic-bezier(.257759,.003163,.211762,1.381790);-webkit-transform:scaleX(.727960);transform:scaleX(.727960)}to{-webkit-transform:scaleX(.08);transform:scaleX(.08)}}@keyframes buffering{to{-webkit-transform:translateX(-10px);transform:translateX(-10px)}}@-webkit-keyframes buffering{to{-webkit-transform:translateX(-10px);transform:translateX(-10px)}}@keyframes buffering-reverse{to{-webkit-transform:translateX(10px);transform:translateX(10px)}}@-webkit-keyframes buffering-reverse{to{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes indeterminate-translate-ie{0%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}to{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes indeterminate-translate-reverse-ie{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.sZwd7c{height:4px;overflow:hidden;position:relative;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-transition:opacity 250ms linear;transition:opacity 250ms linear;width:100%}.w2zcLc{position:absolute}.xcNBHc,.MyvhI,.l3q5xe{height:100%;position:absolute;width:100%}.w2zcLc{-webkit-transform-origin:top left;transform-origin:top left;transition:transform 250ms ease}.MyvhI{-webkit-transform-origin:top left;transform-origin:top left;-webkit-transition:-webkit-transform 250ms ease;transition:transform 250ms ease;-webkit-animation:none;animation:none}.l3q5xe{-webkit-animation:none;animation:none}.w2zcLc{background-color:#e6e6e6;height:100%;-webkit-transform-origin:top left;transform-origin:top left;-webkit-transition:-webkit-transform 250ms ease;-webkit-transition:transform 250ms ease;transition:transform 250ms ease;width:100%}.TKVRUb{-webkit-transform:scaleX(0);transform:scaleX(0)}.sUoeld{visibility:hidden}.l3q5xe{background-color:#000;display:inline-block}.xcNBHc{-webkit-background-size:10px 4px;background-size:10px 4px;background-repeat:repeat-x;background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg%20version%3D%271.1%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20xmlns%3Axlink%3D%27http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%27%20x%3D%270px%27%20y%3D%270px%27%20enable-background%3D%27new%200%200%205%202%27%20xml%3Aspace%3D%27preserve%27%20viewBox%3D%270%200%205%202%27%20preserveAspectRatio%3D%27none%20slice%27%3E%3Ccircle%20cx%3D%271%27%20cy%3D%271%27%20r%3D%271%27%20fill%3D%27%23e6e6e6%27%2F%3E%3C%2Fsvg%3E');visibility:hidden}.sZwd7c.B6Vhqe .MyvhI{-webkit-transition:none;transition:none}.sZwd7c.B6Vhqe .TKVRUb{-webkit-animation:primary-indeterminate-translate 2s infinite linear;animation:primary-indeterminate-translate 2s infinite linear}.sZwd7c.B6Vhqe .TKVRUb>.l3q5xe{-webkit-animation:primary-indeterminate-scale 2s infinite linear;animation:primary-indeterminate-scale 2s infinite linear}.sZwd7c.B6Vhqe .sUoeld{-webkit-animation:auxiliary-indeterminate-translate 2s infinite linear;animation:auxiliary-indeterminate-translate 2s infinite linear;visibility:visible}.sZwd7c.B6Vhqe .sUoeld>.l3q5xe{-webkit-animation:auxiliary-indeterminate-scale 2s infinite linear;animation:auxiliary-indeterminate-scale 2s infinite linear}.sZwd7c.B6Vhqe.ieri7c .l3q5xe{-webkit-transform:scaleX(0.45);transform:scaleX(0.45)}.sZwd7c.B6Vhqe.ieri7c .sUoeld{-webkit-animation:none;animation:none;visibility:hidden}.sZwd7c.B6Vhqe.ieri7c .TKVRUb{-webkit-animation:indeterminate-translate-ie 2s infinite ease-out;animation:indeterminate-translate-ie 2s infinite ease-out}.sZwd7c.B6Vhqe.ieri7c .TKVRUb>.l3q5xe,.sZwd7c.B6Vhqe.ieri7c .sUoeld>.l3q5xe{-webkit-animation:none;animation:none}.sZwd7c.juhVM .w2zcLc,.sZwd7c.juhVM .MyvhI{right:0;-webkit-transform-origin:center right;transform-origin:center right}.sZwd7c.juhVM .TKVRUb{-webkit-animation-name:primary-indeterminate-translate-reverse;animation-name:primary-indeterminate-translate-reverse}.sZwd7c.juhVM .sUoeld{-webkit-animation-name:auxiliary-indeterminate-translate-reverse;animation-name:auxiliary-indeterminate-translate-reverse}.sZwd7c.juhVM.ieri7c .TKVRUb{-webkit-animation-name:indeterminate-translate-reverse-ie;animation-name:indeterminate-translate-reverse-ie}.sZwd7c.qdulke{opacity:0}.sZwd7c.jK7moc .sUoeld,.sZwd7c.jK7moc .TKVRUb,.sZwd7c.jK7moc .sUoeld>.l3q5xe,.sZwd7c.jK7moc .TKVRUb>.l3q5xe{-webkit-animation-play-state:paused;animation-play-state:paused}.sZwd7c.D6TUi .xcNBHc{-webkit-animation:buffering 250ms infinite linear;animation:buffering 250ms infinite linear;visibility:visible}.sZwd7c.D6TUi.juhVM .xcNBHc{-webkit-animation:buffering-reverse 250ms infinite linear;animation:buffering-reverse 250ms infinite linear}.d1dlne,.Ax4B8{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1}.L6J0Pc{-webkit-box-flex:1;-webkit-flex:1;flex:1}.v5yLH,.v5yLH .d1dlne,.v5yLH .Ax4B8{display:inline}.BBOA1c{position:absolute;height:4px;bottom:1px;left:1px;right:1px;overflow-x:hidden;background-color:#fff;display:none}.L6J0Pc.ge6pde .BBOA1c{display:block}.u3WVdc{position:absolute;right:0;left:0;z-index:1;outline:none;overflow-y:auto;-webkit-overflow-scrolling:touch}.u3WVdc[data-childcount="0"],.u3WVdc[data-expanded="false"]{display:none}.Cigftf{position:relative;top:-24px}.Ax4B8{position:relative}.yNVtPc{position:absolute;left:0;width:100%;opacity:.3}.Ax4B8,.yNVtPc{background-color:transparent;color:inherit;font:inherit;line-height:inherit}.Ax4B8::-ms-clear{display:none}.d1dlne,.Ax4B8,.yNVtPc{height:100%}.umNhxf{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.MkjOTb{cursor:default}.VOEIyf,.VOEIyf .jBmls,.oKubKe{font:400 16px Roboto,RobotoDraft,Helvetica,Arial,sans-serif;color:#222}.VOEIyf{display:inline-block;height:34px;line-height:34px}.IjMZm{display:inline-block;height:auto;line-height:auto}.VOEIyf .ZAGvjd{border-color:transparent;border-style:solid;border-width:0 1px;outline:none}.oKubKe,.VOEIyf .ZAGvjd{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 16px}.VOEIyf .jBmls{-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px 0;border:1px solid rgba(0,0,0,.2);background-color:#ffffff;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2)}.oKubKe{line-height:40px}.oKubKe[aria-selected="true"]{background-color:#eeeeee}.oKubKe.RDPZE{color:rgba(0,0,0,0.38)}.SmXtye{margin:7px 0;border-top:1px solid #dadada}.D4D33b{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.cTPETe{display:-webkit-box;display:-webkit-flex;display:flex}.u1Djpb{display:-webkit-box;display:-webkit-flex;display:flex;height:22px;-webkit-border-radius:11px;border-radius:11px;margin:0 6px 0 0;padding-left:12px;white-space:nowrap;color:rgba(0,0,0,0.87);background-color:#e0e0e0;font-size:14px}.fb31zf{margin:auto}.GorKAf{display:inline-block;position:relative;margin:3px;width:16px;height:16px;background-color:rgba(0,0,0,0.38);-webkit-border-radius:50%;border-radius:50%}.GorKAf::before{content:'';position:absolute;width:10px;height:2px;top:7px;background-color:#e0e0e0}.GorKAf::after{content:'';position:absolute;width:10px;height:2px;top:7px;background-color:#e0e0e0}.GorKAf::before{-webkit-transform:rotate(45deg);transform:rotate(45deg);left:3px}.GorKAf::after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);right:3px}.u1Djpb:hover{color:white;background-color:#616161}.u1Djpb:hover .GorKAf::before,.u1Djpb:hover .GorKAf::after{background-color:#616161}.u1Djpb:hover .GorKAf{background-color:white}.gDbkOe{display:inline-block}.g5O6Me{background-color:#009688;color:#fff;padding:14px 24px}.g5O6Me .yhlz6e{height:auto}.ghqSuf{font-size:200%;font-weight:bold}.OwJSvb{display:table;width:100%}.yhlz6e{display:table-row;height:40px}.WhQfHb{display:table-cell;vertical-align:middle;min-width:40px}.FmNPqf{background-color:#fff;color:#000}.LeaINd{text-align:center}.natoR{text-align:right}.FuZZcf{fill:none;margin-top:6px;stroke:rgba(0,0,0,0.54);stroke-width:2}.B6W3v{vertical-align:middle}.pwXtMb{width:2em;height:2em;-webkit-border-radius:50%;border-radius:50%;text-align:center;vertical-align:middle;cursor:pointer}.mpfSgf{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;max-height:250px;overflow-x:hidden;overflow-y:auto}.Ux2JBf{cursor:pointer;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-flex-shrink:0;flex-shrink:0;height:40px;-webkit-justify-content:center;justify-content:center;text-align:center;width:100%}.Ux2JBf[aria-disabled="true"]{opacity:.34}.Ux2JBf.TrJ0Tc{font-size:150%;color:#009688}.Ux2JBf.TrJ0Tc.krHqHb{color:#b2dfdb}.pb6Tnc{cursor:pointer}.pwXtMb.eFxgkf{background-color:#009688;color:#fff}.pwXtMb.GDobHd{cursor:default;color:rgba(0,0,0,0.38)}.CYhapf{font-size:12px;font-weight:400;padding:8px 16px 16px;outline:none}.qhENpb{color:#9e9e9e}.g5O6Me.krHqHb{background-color:#616161}.FmNPqf.krHqHb{background-color:#424242;color:#fff}.FuZZcf.krHqHb{fill:#424242;stroke:#fff}.pwXtMb.krHqHb.eFxgkf{color:#000}.Mh0NNb{background-color:#323232;bottom:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);color:#fff;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;font-size:14px;left:0;min-height:48px;position:fixed;right:0;-webkit-transform:translate(0,100%);transform:translate(0,100%);visibility:hidden;z-index:99999}.M6tHv{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;-webkit-align-content:center;align-content:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;min-height:inherit;padding:0}.aGJE1b{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;line-height:normal;overflow:hidden;padding:14px 24px;text-overflow:ellipsis;word-break:break-word}.x95qze{-webkit-align-self:center;align-self:center;color:#eeff41;-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;flex-shrink:0;float:right;text-transform:uppercase;font-weight:500;display:inline-block;cursor:pointer;outline:none;padding:14px 24px}.KYZn9b{background-color:#4285f4}.misTTe{-webkit-transform:translate(0,0);transform:translate(0,0)}@media screen and (min-width:481px){.Mh0NNb{min-width:288px;max-width:568px;-webkit-border-radius:2px;border-radius:2px}.Mp2Z0b{left:24px;margin-right:24px;right:auto}.VcC8Fc{left:50%;right:auto;-webkit-transform:translate(-50%,100%);transform:translate(-50%,100%)}.Mp2Z0b.misTTe{bottom:24px}.VcC8Fc.misTTe{bottom:0;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.M6tHv{padding:0}.aGJE1b{padding-right:24px}}@media screen and (max-width:480px){.xbgI6e .aGJE1b,.xbgI6e .x95qze{padding-bottom:24px;padding-top:24px}}@media screen and (min-width:481px) and (max-width:568px){.Mh0NNb{max-width:90%}}@media screen and (min-width:569px){.Mh0NNb{max-width:568px}}.QbSWVc{height:24px;-webkit-box-flex:0 0 24px;-webkit-flex:0 0 24px;flex:0 0 24px;overflow:hidden;cursor:pointer;pointer-events:none;opacity:0;-webkit-transition:opacity 500ms,transform 200ms;transition:opacity 500ms,transform 200ms}.QbSWVc:not(.RDPZE){pointer-events:auto;opacity:1}.QbSWVc:not(.RDPZE).sMVRZe{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.MKIwbc{pointer-events:none}.MKIwbc.hgDUwe{height:0;margin-left:2px;width:-webkit-calc(100% - 4px);width:calc(100% - 4px);border-bottom:2px solid rgba(255,255,255,0)}.MKIwbc.hgDUwe.h7Qs9c{border-bottom:2px solid #03a9f4}.MKIwbc.hgDUwe.zjQx8{border-bottom:2px solid #db4437}.MKIwbc.hgDUwe>.LqwEvb{position:relative;top:-33px}.MKIwbc.edvN0e{position:absolute;top:0;left:0;width:100%;height:100%;margin-top:2px;margin-left:2px;width:-webkit-calc(100% - 4px);width:calc(100% - 4px);height:-webkit-calc(100% - 4px);height:calc(100% - 4px);border:2px solid rgba(255,255,255,0);-webkit-border-radius:2px;border-radius:2px}.MKIwbc.edvN0e.h7Qs9c{border:2px solid #03a9f4}.MKIwbc.edvN0e.zjQx8{border:2px solid #db4437}.MKIwbc.edvN0e>.LqwEvb{position:absolute;top:-webkit-calc(50% - 4px);top:calc(50% - 4px);left:-5px}.MKIwbc.PoUo0{position:relative;-webkit-box-flex:0 0 24px;-webkit-flex:0 0 24px;flex:0 0 24px}.MKIwbc.PoUo0>.IBonv{position:absolute;right:2px;height:-webkit-calc(100% - 3px);height:calc(100% - 3px);width:9px;-webkit-border-radius:0 2px;border-radius:0 2px}.MKIwbc.PoUo0.h7Qs9c>.IBonv{border-left:2px solid #03a9f4}.MKIwbc.PoUo0.zjQx8>.IBonv{border-left:2px solid #db4437}.MKIwbc.PoUo0>.LqwEvb{position:absolute;right:0;bottom:0;top:auto}.LqwEvb{display:none}.MKIwbc.zjQx8>.LqwEvb{display:block;width:9px;height:9px;background:white}.MKIwbc.zjQx8>.LqwEvb:before,.MKIwbc.zjQx8>.LqwEvb:after{content:'';position:absolute;top:3px;width:8px;height:2px;background-color:#db4437}.MKIwbc.zjQx8>.LqwEvb:before{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.MKIwbc.zjQx8>.LqwEvb:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.MKIwbc.hgDUwe .Af5Txe{position:relative;height:30px;top:-15px;z-index:1}.MKIwbc.edvN0e .Af5Txe,.MKIwbc.PoUo0 .Af5Txe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.ZyPYLd .Af5Txe{pointer-events:auto}.ZyPYLd :not(.Af5Txe){pointer-events:none}.ZyPYLd{cursor:-webkit-grabbing;cursor:grabbing}.Duxokd{background:white;position:relative}.RzVr4e{position:relative}.Duxokd[aria-selected="true"] .RzVr4e{border:1px solid rgba(0,0,0,0.24)}.RzVr4e[aria-disabled="true"]{pointer-events:none}.RzVr4e:focus{outline:none}.ZzGJzf{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-transition:all 125ms cubic-bezier(0.4,0.0,0.2,1);transition:all 125ms cubic-bezier(0.4,0.0,0.2,1);opacity:0;height:0;overflow:hidden}.ZzGJzf.PBWx0c{opacity:1;height:auto;overflow:visible}.aQNlEf{width:100%}.bciPod{width:24px}.UIjBOb{position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none}.UIjBOb[elevation="1"]{-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2)}.Duxokd.fP2Ae .Af5Txe{pointer-events:none}.Be74ad{position:fixed;top:0;left:0;pointer-events:none}.XkWAb .n76mKf .oJeWuf{font-size:14px}.JfdRKe{height:48px}.JfdRKe>.RDPZE{opacity:.7}.IszBRc-Guievd-qnnXGd .PZiZPd:not(.RDPZE) .Ce1Y1c{opacity:1}.Ea2gie.Ea2gie{display:none}.u1NOge .LMgvRb{padding-right:44px;white-space:normal;word-wrap:normal}.u1NOge :not(.OA0qNb) .LMgvRb.KKjvXb{padding-bottom:12px;padding-top:12px}.u1NOge .OA0qNb{padding:8px 0}.u1NOge .OA0qNb .LMgvRb,.u1NOge .OA0qNb .LMgvRb.KKjvXb{border-style:none;margin:4px 0;padding-bottom:12px;padding-right:42px;padding-top:12px}.u1NOge .uLX2p,.u1NOge .OA0qNb .LMgvRb.KKjvXb .uLX2p{top:8px}.u1NOge .eU809d{right:18px;top:18px}.jgvuAb{-webkit-user-select:none;-webkit-transition:background .3s;transition:background .3s;border:0;-webkit-border-radius:3px;border-radius:3px;color:#444;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;outline:none;position:relative;text-align:center;-webkit-tap-highlight-color:transparent}.ij0xy{color:#fff;fill:#fff}.jgvuAb.u3bW4e{background-color:rgba(153,153,153,0.4)}.ij0xy.u3bW4e{background-color:rgba(204,204,204,0.251)}.kRoyt{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:-webkit-transform 0 linear .2s,opacity .2s ease;transition:-webkit-transform 0 linear .2s,opacity .2s ease;-webkit-transition:transform 0 linear .2s,opacity .2s ease;transition:transform 0 linear .2s,opacity .2s ease;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.jgvuAb.qs41qe .ziS7vd{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.jgvuAb .kRoyt{background-image:radial-gradient(circle farthest-side,rgba(153,153,153,0.4),rgba(153,153,153,0.4) 80%,rgba(153,153,153,0) 100%)}.ij0xy .kRoyt{background-image:radial-gradient(circle farthest-side,rgba(204,204,204,0.251),rgba(204,204,204,0.251) 80%,rgba(204,204,204,0) 100%)}.ij0xy.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.jgvuAb.RDPZE{-webkit-box-shadow:none;box-shadow:none;color:rgba(68,68,68,0.502);cursor:default}.vRMGwf{position:relative}.e2CuFe{border-color:rgba(68,68,68,0.4) transparent;border-style:solid;border-width:6px 6px 0 6px;height:0;width:0;position:absolute;right:5px;top:15px}.CeEBt{position:absolute;right:0;top:0;width:24px;overflow:hidden}.ncFHed{-webkit-transition:opacity .1s linear;transition:opacity .1s linear;background:#ffffff;border:0;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);opacity:0;outline:1px solid transparent;overflow:hidden;overflow-y:auto;position:fixed;z-index:2000}.jgvuAb.iWO5td .ncFHed{opacity:1}.MocG8c{border-color:transparent;color:#222;height:0;list-style:none;outline:none;overflow:hidden;padding-left:16px;padding-right:24px;position:relative;text-align:left;white-space:nowrap}.MocG8c.RDPZE{color:#b8b8b8;pointer-events:none;cursor:default}.MocG8c.DEh1R{color:rgba(0,0,0,0.54)}.jgvuAb.e5Emjc .MocG8c{padding-left:48px}.ry3kXd .MocG8c.KKjvXb{height:auto;padding-bottom:8px;padding-top:8px}.Ulgu9 .MocG8c:not(.KKjvXb){width:0;border:0;margin:0;position:relative;opacity:.0001;padding:0;top:-99999px;pointer-events:none}.ncFHed .MocG8c{cursor:pointer;height:auto;padding-right:26px;padding-bottom:8px;padding-top:8px}.ncFHed .MocG8c.KKjvXb{background-color:#eeeeee;border-style:dotted;border-width:1px 0;outline:1px solid transparent;padding-bottom:7px;padding-top:7px}.MWQFLe{background-repeat:no-repeat;height:21px;left:12px;opacity:.54;position:absolute;right:auto;top:5px;vertical-align:middle;width:21px}.ncFHed .MocG8c.KKjvXb .MWQFLe{top:4px}.jgvuAb.RDPZE .MWQFLe,.MocG8c.RDPZE .MWQFLe{opacity:.26}.ncFHed.qs41qe .ziS7vd{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.VOUU9e{border-top:0;height:0;margin:0;overflow:hidden}.ncFHed .VOUU9e{border-top:1px solid rgba(0,0,0,0.12);margin:7px 0}.mAW2Ib{width:64px}.YuHtjc .KKjvXb .vRMGwf{visibility:hidden}.YuHtjc .MocG8c{padding-left:48px;padding-right:12px}.jnWUSc,.bBv7Rb{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-flex:1;-webkit-flex:1;flex:1}.jnWUSc{position:relative}.NqFm6{-webkit-box-flex:1;-webkit-flex:1;flex:1}.DY539c,.DY539c .bBv7Rb{display:inline}.nI1yye{position:absolute;height:4px;bottom:1px;left:1px;right:1px;overflow-x:hidden;background-color:#fff;display:none}.NqFm6.ge6pde .nI1yye{display:block}.NqFm6 .tWfTvb{position:relative}.vJ2Mqc{position:absolute;right:0;left:0;z-index:1;outline:none;overflow-y:auto;-webkit-overflow-scrolling:touch}.vJ2Mqc[data-childcount="0"],.vJ2Mqc[data-expanded="false"]{display:none}.B2HJEe{position:relative;top:-24px}.bBv7Rb{position:relative}.dLo2Yc{position:absolute;left:0;width:100%}.dLo2Yc .snByac{visibility:hidden}.bBv7Rb,.dLo2Yc{color:inherit;font:inherit;line-height:inherit}.bBv7Rb::-ms-clear{display:none}.jnWUSc,.bBv7Rb,.dLo2Yc{height:100%}.LUbWPc{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.uRJuw{cursor:default}.vPNssb{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;color:#202124}.vPNssb .jBmls{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;color:#202124}.jaXlcf{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;color:#202124}.vPNssb{display:inline-block;height:36px;line-height:36px}.Ocy0Lc{display:inline-block;height:auto;line-height:auto;max-width:100%;width:100%}.vPNssb .ZAGvjd{border-color:transparent;border-style:solid;border-width:0 1px;outline:none}.jaXlcf,.vPNssb .ZAGvjd{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 16px}.vPNssb .jBmls{box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.141),0 1px 18px 0 rgba(0,0,0,0.122);background-color:#fff;-webkit-border-radius:4px;border-radius:4px;border:1px #e8eaed solid;-webkit-box-sizing:border-box;box-sizing:border-box;padding:8px 0}.vPNssb.RDPZE .Ny5lGc{visibility:hidden}.eZFVZ .jBmls{top:1px}.vPNssb .je6t8b .oJeWuf{min-width:0}.vPNssb .je6t8b{max-width:100%}.eZFVZ .je6t8b:not(.RDPZE),.eZFVZ .je6t8b:not(.RDPZE) .oJeWuf,.eZFVZ .je6t8b:not(.RDPZE).u3bW4e .oJeWuf,.eZFVZ .je6t8b:not(.RDPZE):hover .oJeWuf{background-color:transparent}.eZFVZ .Ny5lGc.RDPZE .oJeWuf{background-color:#f8f9fa}.eZFVZ:hover .Ny5lGc .oJeWuf{background-color:#f1f3f4}.jaXlcf{line-height:48px}.jaXlcf[aria-selected="true"]{background-color:rgba(26,115,232,0.078)}.jaXlcf.RDPZE{color:#dadce0}.IR46{margin:7px 0;border-top:1px solid #dadce0}.qaonhb{overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.p0oLxb{transition:box-shadow 280ms cubic-bezier(0.4,0.0,0.2,1);-webkit-font-smoothing:antialiased;-webkit-user-select:none;-webkit-transition:background .2s .1s;transition:background .2s .1s;border:0;-webkit-border-radius:4px;border-radius:4px;color:#5f6368;cursor:pointer;display:inline-block;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:36px;text-decoration:none;text-transform:none;min-width:auto;max-width:100%;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent;z-index:0}.p0oLxb.iWO5td{transition:box-shadow 280ms cubic-bezier(0.4,0.0,0.2,1)}.p0oLxb.REtOWc{width:100%}.REtOWc .GcVcmc{-webkit-justify-content:center;justify-content:center}.CMZlRd{color:#e8eaed;fill:#e8eaed}.BEAGS{border:1px #e8eaed solid;-webkit-box-sizing:border-box;box-sizing:border-box;color:#1a73e8;height:36px;line-height:34px}.BEAGS.iWO5td{box-shadow:0 2px 1px -1px rgba(26,115,232,0.2),0 1px 1px 0 rgba(26,115,232,0.141),0 1px 3px 0 rgba(26,115,232,0.122);border:none}.K2V86d{box-shadow:0 2px 1px -1px rgba(0,0,0,0.2),0 1px 1px 0 rgba(0,0,0,0.141),0 1px 3px 0 rgba(0,0,0,0.122);background-color:#fff;color:#1a73e8}.QkA63b{background:#1a73e8;color:#fff}.DqwBN{color:#1a73e8}.K2V86d.iWO5td{box-shadow:0 3px 5px -1px rgba(0,0,0,0.2),0 6px 10px 0 rgba(0,0,0,0.141),0 1px 18px 0 rgba(0,0,0,0.122)}.p0oLxb.QkA63b.iWO5td{box-shadow:0 3px 5px -1px rgba(26,115,232,0.2),0 6px 10px 0 rgba(26,115,232,0.141),0 1px 18px 0 rgba(26,115,232,0.122)}.GJYBjd{position:absolute;top:0;right:0;bottom:0;left:0;background-color:#5f6368;opacity:0}.CMZlRd .GJYBjd{background-color:#e8eaed}.QkA63b .GJYBjd{background-color:#fff}.DqwBN .GJYBjd,.BEAGS .GJYBjd,.K2V86d .GJYBjd{background-color:#4285f4}.p0oLxb:hover .GJYBjd{opacity:.04}.BEAGS:hover{border-color:#d2e3fc}.QkA63b:hover{box-shadow:0 2px 1px -1px rgba(26,115,232,0.2),0 1px 1px 0 rgba(26,115,232,0.141),0 1px 3px 0 rgba(26,115,232,0.122)}.CMZlRd:hover .GJYBjd{opacity:.04}.QkA63b:hover .GJYBjd{opacity:.08}.p0oLxb.u3bW4e .GJYBjd{opacity:.12}.BEAGS.u3bW4e{border-color:#d2e3fc}.CMZlRd.u3bW4e .GJYBjd{opacity:.12}.QkA63b.u3bW4e .GJYBjd{opacity:.24}.p0oLxb.u3bW4e:hover .GJYBjd{opacity:.155}.CMZlRd.u3bW4e:hover .GJYBjd{opacity:.155}.QkA63b.u3bW4e:hover .GJYBjd{opacity:.3}.p0oLxb.RDPZE .GJYBjd{opacity:0}.bnqxkd{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,transform 0s ease .2s;-webkit-transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;transition:opacity .2s ease,visibility 0s ease .2s,-webkit-transform 0s ease .2s;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.p0oLxb.iWO5td>.bnqxkd{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.p0oLxb.j7nIZb>.bnqxkd{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.p0oLxb>.bnqxkd{background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.MmaQOd.iWO5td>.bnqxkd{background-image:radial-gradient(circle farthest-side,rgba(0,0,0,0.12),rgba(0,0,0,0.12) 80%,rgba(0,0,0,0) 100%)}.CMZlRd.iWO5td>.bnqxkd{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.161),rgba(255,255,255,0.161) 80%,rgba(255,255,255,0) 100%)}.QkA63b.iWO5td>.bnqxkd{background-image:radial-gradient(circle farthest-side,rgba(255,255,255,0.322),rgba(255,255,255,0.322) 80%,rgba(255,255,255,0) 100%)}.DqwBN.iWO5td>.bnqxkd,.BEAGS.iWO5td>.bnqxkd,.K2V86d.iWO5td>.bnqxkd{background-image:radial-gradient(circle farthest-side,rgba(66,133,244,0.161),rgba(66,133,244,0.161) 80%,rgba(66,133,244,0) 100%)}.p0oLxb.RDPZE{-webkit-box-shadow:none;box-shadow:none;color:rgba(0,0,0,0.38);cursor:default;fill:rgba(0,0,0,0.38)}.CMZlRd.RDPZE{color:rgba(255,255,255,0.38);fill:rgba(255,255,255,0.38)}.BEAGS.RDPZE,.BEAGS.RDPZE:hover{border-color:rgba(0,0,0,0.12)}.QkA63b.RDPZE,.K2V86d.RDPZE{background:rgba(0,0,0,0.12)}.GcVcmc{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;position:relative}.GcVcmc .RdyDwe{display:inline-block;margin:0;overflow:hidden}.I0YiR .GcVcmc,.DqwBN .GcVcmc{padding:0 8px}.BEAGS .GcVcmc{padding:0 23px}.BEAGS.iWO5td .GcVcmc{padding:1px 24px}.BEAGS.iWO5td .cd29Sd.GcVcmc{padding:1px 16px 1px 12px}.BEAGS.iWO5td .rbRww.GcVcmc{padding:1px 12px 1px 16px}.BEAGS .cd29Sd.GcVcmc{padding-right:15px;padding-left:11px}.BEAGS .rbRww.GcVcmc{padding-left:15px;padding-right:11px}.QkA63b .GcVcmc,.K2V86d .GcVcmc{padding:0 24px}.GcVcmc.cd29Sd{padding:0 16px 0 12px}.GcVcmc.rbRww{padding:0 12px 0 16px}.lRRqZc{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;color:currentcolor;fill:currentcolor;margin-right:8px}.oPP9ge{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;color:currentcolor;fill:currentcolor;margin-left:8px}.ybOdnf .oJeWuf{line-height:32px;display:-webkit-box;display:-webkit-flex;display:flex;overflow:hidden}.ybOdnf .eU809d{top:22px;right:19px;border-color:#5f6368 transparent;border-width:5px 5px 0 5px}.ybOdnf.iWO5td .eU809d{-webkit-transform:scaleY(-1);transform:scaleY(-1);border-color:#bdc1c6 transparent}.ybOdnf:not(.iWO5td) .LMgvRb.KKjvXb{-webkit-border-radius:4px;border-radius:4px}.ybOdnf .OA0qNb{box-shadow:0 1px 2px 0 rgba(60,64,67,0.302),0 2px 6px 2px rgba(60,64,67,0.149);padding:8px 0 8px 0;-webkit-border-radius:4px;border-radius:4px}.cr8auc{background-color:#f8f9fa}.ybOdnf.iWO5td{background-color:#e8f0fe}.ybOdnf .OA0qNb .LMgvRb[aria-selected="true"]{background-color:rgba(26,115,232,0.078)}.ybOdnf .OA0qNb .LMgvRb[aria-selected="true"]:hover{background-color:rgba(26,115,232,0.039)}.HZ3kWc{font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;color:#202124;max-width:280px;min-width:112px;padding-right:48px}.RDPZE .HZ3kWc{color:rgba(0,0,0,0.38)}.ybOdnf.llrsB .HZ3kWc{max-width:none}.HZ3kWc .uLX2p{height:24px;opacity:1;top:12px;width:24px}.HZ3kWc.KKjvXb .uLX2p.uLX2p{top:11px}.mbHMhf{border-top:0;height:0;margin:0;overflow:hidden}.QXL7Te .mbHMhf{border-top:1px solid rgba(0,0,0,0.12);margin:8px 0}.uVccjd{-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-user-select:none;-webkit-transition:border-color .2s cubic-bezier(0.4,0,0.2,1);transition:border-color .2s cubic-bezier(0.4,0,0.2,1);-webkit-tap-highlight-color:transparent;border:10px solid rgba(0,0,0,0.54);-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-block;max-height:0;max-width:0;outline:none;overflow:visible;position:relative;vertical-align:middle;z-index:0}.uVccjd.ZdhN5b{border-color:rgba(255,255,255,0.70)}.uVccjd.ZdhN5b[aria-disabled="true"]{border-color:rgba(255,255,255,0.30)}.uVccjd[aria-disabled="true"]{border-color:#bdbdbd;cursor:default}.uHMk6b{-webkit-transition:all .1s .15s cubic-bezier(0.4,0,0.2,1);transition:all .1s .15s cubic-bezier(0.4,0,0.2,1);-webkit-transition-property:transform,border-radius;transition-property:transform,border-radius;border:8px solid white;left:-8px;position:absolute;top:-8px}[aria-checked="true"]>.uHMk6b,[aria-checked="mixed"]>.uHMk6b{-webkit-transform:scale(0);transform:scale(0);-webkit-transition:-webkit-transform .1s cubic-bezier(0.4,0,0.2,1);transition:-webkit-transform .1s cubic-bezier(0.4,0,0.2,1);-webkit-transition:transform .1s cubic-bezier(0.4,0,0.2,1);transition:transform .1s cubic-bezier(0.4,0,0.2,1);-webkit-border-radius:100%;border-radius:100%}.B6Vhqe .TCA6qd{left:5px;top:2px}.N2RpBe .TCA6qd{left:10px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:0;transform-origin:0;top:7px}.TCA6qd{height:100%;pointer-events:none;position:absolute;width:100%}.rq8Mwb{-webkit-animation:quantumWizPaperAnimateCheckMarkOut .2s forwards;animation:quantumWizPaperAnimateCheckMarkOut .2s forwards;clip:rect(0,20px,20px,0);height:20px;left:-10px;position:absolute;top:-10px;width:20px}[aria-checked="true"]>.rq8Mwb,[aria-checked="mixed"]>.rq8Mwb{-webkit-animation:quantumWizPaperAnimateCheckMarkIn .2s .1s forwards;animation:quantumWizPaperAnimateCheckMarkIn .2s .1s forwards;clip:rect(0,20px,20px,20px)}@media print{[aria-checked="true"]>.rq8Mwb,[aria-checked="mixed"]>.rq8Mwb{clip:auto}}.B6Vhqe .MbUTNc{display:none}.MbUTNc{border:1px solid #fff;height:5px;left:0;position:absolute}.B6Vhqe .Ii6cVc{width:8px;top:7px}.N2RpBe .Ii6cVc{width:11px}.Ii6cVc{border:1px solid #fff;left:0;position:absolute;top:5px}.PkgjBf{-webkit-transform:scale(2.5);transform:scale(2.5);-webkit-transition:opacity .15s ease;transition:opacity .15s ease;background-color:rgba(0,0,0,0.2);-webkit-border-radius:100%;border-radius:100%;height:20px;left:-10px;opacity:0;outline:.1px solid transparent;pointer-events:none;position:absolute;top:-10px;width:20px;z-index:-1}.ZdhN5b .PkgjBf{background-color:rgba(255,255,255,0.2)}.qs41qe>.PkgjBf{-webkit-animation:quantumWizRadialInkSpread .3s;animation:quantumWizRadialInkSpread .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:1}.i9xfbb>.PkgjBf{background-color:rgba(0,150,136,0.2)}.u3bW4e>.PkgjBf{-webkit-animation:quantumWizRadialInkFocusPulse .7s infinite alternate;animation:quantumWizRadialInkFocusPulse .7s infinite alternate;background-color:rgba(0,150,136,0.2);opacity:1}@keyframes quantumWizPaperAnimateCheckMarkIn{0%{clip:rect(0,0,20px,0)}to{clip:rect(0,20px,20px,0)}}@-webkit-keyframes quantumWizPaperAnimateCheckMarkIn{0%{clip:rect(0,0,20px,0)}to{clip:rect(0,20px,20px,0)}}@keyframes quantumWizPaperAnimateCheckMarkOut{0%{clip:rect(0,20px,20px,0)}to{clip:rect(0,20px,20px,20px)}}@-webkit-keyframes quantumWizPaperAnimateCheckMarkOut{0%{clip:rect(0,20px,20px,0)}to{clip:rect(0,20px,20px,20px)}}.aiSeRd{border-color:#5f6368}.aiSeRd:before{bottom:-24px;content:"";display:block;height:48px;left:-24px;position:absolute;right:-24px;top:-24px;width:48px}.aiSeRd.N2RpBe,.aiSeRd.B6Vhqe{border-color:#1a73e8}.aiSeRd.RDPZE{border-color:#bdc1c6}.aiSeRd>.MbhUzd{height:16px;width:16px;left:-8px;top:-8px}.aiSeRd:hover>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.039)}.aiSeRd.N2RpBe:hover>.MbhUzd{background-color:rgba(26,115,232,0.039)}.aiSeRd:focus>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.078)}.aiSeRd.N2RpBe:focus>.MbhUzd{background-color:rgba(26,115,232,0.078)}.aiSeRd.RDPZE:focus>.MbhUzd,.aiSeRd.RDPZE:hover>.MbhUzd{display:none}.aiSeRd.u3bW4e>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.122)}.aiSeRd.N2RpBe.u3bW4e>.MbhUzd{background-color:rgba(26,115,232,0.122)}.aiSeRd.qs41qe>.MbhUzd{-webkit-animation:quantumWizRadialInkFocusPulse .3s;animation:quantumWizRadialInkFocusPulse .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.161)}.aiSeRd.N2RpBe.qs41qe>.MbhUzd{background-color:rgba(26,115,232,0.161)}.gj14oe:hover>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(255,255,255,0.078)}.gj14oe:focus>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(255,255,255,0.161)}.gj14oe.RDPZE:hover>.MbhUzd{display:none}.gj14oe.u3bW4e>.MbhUzd{-webkit-animation:quantumWizRadialInkSpread;animation:quantumWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(255,255,255,0.239)}.gj14oe.qs41qe>.MbhUzd{-webkit-animation:quantumWizRadialInkFocusPulse .3s;animation:quantumWizRadialInkFocusPulse .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(255,255,255,0.322)}.BIHLNc{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex}.aiSeRd+.Mk3P9d{margin-left:8px}.aiSeRd.RDPZE+.Mk3P9d{color:rgba(0,0,0,0.38)}.aiSeRd.ptjlYb .rq8Mwb{-webkit-animation:quantumWizPaperAnimateCheckMarkOut forwards;animation:quantumWizPaperAnimateCheckMarkOut forwards}.aiSeRd.N2RpBe.ptjlYb .rq8Mwb{-webkit-animation:quantumWizPaperAnimateCheckMarkIn forwards;animation:quantumWizPaperAnimateCheckMarkIn forwards}@keyframes appsMaterialWizRadialInkSpread{0%{-webkit-transform:scale(1.25);transform:scale(1.25);opacity:0}to{-webkit-transform:scale(2.0);transform:scale(2.0);opacity:1}}@-webkit-keyframes appsMaterialWizRadialInkSpread{0%{-webkit-transform:scale(1.25);transform:scale(1.25);opacity:0}to{-webkit-transform:scale(2.0);transform:scale(2.0);opacity:1}}.LsSwGf{-webkit-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-block;height:20px;outline:none;position:relative;vertical-align:middle;width:37px;z-index:0}.LsSwGf[aria-disabled="true"]{cursor:default}.E7QdY{-webkit-transition:border-color .3s ease;transition:border-color .3s ease;border:10px solid #fafafa;-webkit-border-radius:100%;border-radius:100%;position:absolute;-webkit-box-shadow:0 1px 3px rgba(0,0,0,0.4);box-shadow:0 1px 3px rgba(0,0,0,0.4)}[aria-checked="true"] .E7QdY{border-color:#009688}[aria-disabled="true"] .E7QdY{border-color:#bdbdbd}.rbsY8b{-webkit-transition:-webkit-transform .06s ease;transition:-webkit-transform .06s ease;-webkit-transition:transform .06s ease;transition:transform .06s ease}.LsSwGf.N2RpBe>.rbsY8b{-webkit-transform:translate(17px);transform:translate(17px)}.LsSwGf.B6Vhqe>.rbsY8b{-webkit-transform:translate(8.5px);transform:translate(8.5px)}.hh4xKf{-webkit-transition:border-color .3s ease;transition:border-color .3s ease;border:7px solid #b9b9b9;-webkit-border-radius:7px;border-radius:7px;position:absolute;top:3px;width:23px}[aria-checked="true"]>.hh4xKf{border-color:rgba(0,150,136,0.502)}[aria-disabled="true"]>.hh4xKf{border-color:#b9b9b9}[aria-checked="mixed"] .E7QdY{border-color:#f4b400}[aria-checked="mixed"] .hh4xKf{border-color:#e0e0e0}[aria-checked="mixed"] .YGFwk{left:8.5px}.YGFwk{-webkit-transform:scale(2.5);transform:scale(2.5);-webkit-transition:opacity .15s ease,left .3s ease;transition:opacity .15s ease,left .3s ease;background-color:rgba(0,0,0,0.2);-webkit-border-radius:100%;border-radius:100%;height:20px;left:0;opacity:0;outline:.1px solid transparent;pointer-events:none;position:absolute;width:20px;z-index:-1}.qs41qe>.YGFwk{-webkit-animation:quantumWizRadialInkSpread .3s;animation:quantumWizRadialInkSpread .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}[aria-checked="true"]>.YGFwk{left:17px}.i9xfbb>.YGFwk{background-color:rgba(0,150,136,0.2)}.u3bW4e>.YGFwk{-webkit-animation:quantumWizRadialInkFocusPulse .7s infinite alternate;animation:quantumWizRadialInkFocusPulse .7s infinite alternate;background-color:rgba(0,150,136,0.2);opacity:1}.SWVgue.N2RpBe .E7QdY{border-color:#1a73e8}.SWVgue.RDPZE .E7QdY{border-color:#e8eaed}.SWVgue.RDPZE.N2RpBe .E7QdY{border-color:#8ab4f8}.SWVgue.N2RpBe .hh4xKf{border-color:rgba(26,115,232,0.502)}.SWVgue.RDPZE>.hh4xKf{border-color:rgba(232,234,237,0.502)}.SWVgue.RDPZE.N2RpBe>.hh4xKf{border-color:rgba(138,180,248,0.502)}.SWVgue>.YGFwk{-webkit-transform:scale(2.0);transform:scale(2.0)}.qs41qe>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread .3s;animation:appsMaterialWizRadialInkSpread .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:1}.SWVgue:not(.qs41qe):hover>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.039)}.N2RpBe:not(.qs41qe):hover>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(26,115,232,0.039)}.SWVgue:not(.qs41qe):focus>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.078)}.N2RpBe:not(.qs41qe):focus>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(26,115,232,0.078)}.SWVgue.u3bW4e>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(32,33,36,0.122)}.SWVgue.u3bW4e.N2RpBe>.YGFwk{-webkit-animation:appsMaterialWizRadialInkSpread;animation:appsMaterialWizRadialInkSpread;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;background-color:rgba(26,115,232,0.122)}.SWVgue.i9xfbb>.YGFwk{background-color:rgba(26,115,232,0.251)}.SWVgue.RDPZE:hover>.YGFwk{display:none}.lLfZXe{padding:8px 0}.H2Gmcc{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:flex-start;align-items:flex-start;-webkit-flex-direction:column;flex-direction:column}.lLfZXe.hpDt6e .H2Gmcc{-webkit-flex-direction:row;flex-direction:row}.d7L4fc{display:inline-block;-webkit-flex-shrink:0;flex-shrink:0;height:20px;position:relative;vertical-align:middle;width:20px;z-index:0}.Od2TWd{bottom:-10px;left:-10px;position:absolute;right:-10px;top:-10px;-webkit-transition:border-color .2s cubic-bezier(0.4,0,0.2,1);transition:border-color .2s cubic-bezier(0.4,0,0.2,1);-webkit-user-select:none;-webkit-tap-highlight-color:transparent;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;box-sizing:border-box;cursor:pointer;height:40px;outline:none;width:40px;z-index:0}.Od2TWd:not(.RDPZE):hover .x0k1lc,.NtlN8c:hover .Od2TWd:not(.RDPZE) .x0k1lc{-webkit-transform:scale(2);transform:scale(2);background-color:rgba(26,115,232,0.039);opacity:1}.lLfZXe:not(.hpDt6e) .d7L4fc+.d7L4fc,.lLfZXe:not(.hpDt6e) .NtlN8c+.NtlN8c{margin-top:8px}.lLfZXe.hpDt6e .d7L4fc+.d7L4fc,.lLfZXe.hpDt6e .NtlN8c+.NtlN8c{margin-left:16px}.lLfZXe:not(.x6g5Cd) .d7L4fc+.hHhDYc{margin-left:14px}.NtlN8c{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center}.lLfZXe.x6g5Cd .NtlN8c{-webkit-flex-direction:column-reverse;flex-direction:column-reverse}.hHhDYc{font-family:Roboto,Arial,sans-serif;font-size:16px;font-weight:400;letter-spacing:.1px;line-height:24px;word-break:break-word}.lLfZXe.x6g5Cd .hHhDYc{margin-bottom:8px}.vd3tt{-webkit-animation:agmAnimateSelectOut .2s forwards;animation:agmAnimateSelectOut .2s forwards;cursor:pointer;height:20px;position:relative;width:20px}.Od2TWd.N2RpBe>.vd3tt{-webkit-animation:agmAnimateSelectIn .2s .1s forwards;animation:agmAnimateSelectIn .2s .1s forwards}.AB7Lab{bottom:10px;left:10px;position:absolute;right:10px;top:10px;border:solid 2px;border-color:#5f6368;-webkit-border-radius:50%;border-radius:50%;-webkit-box-sizing:border-box;box-sizing:border-box;height:20px;width:20px}.Od2TWd.N2RpBe .AB7Lab{border-color:#1a73e8}.rseUEf{border:5px solid #1a73e8;-webkit-border-radius:50%;border-radius:50%;left:50%;position:absolute;top:50%;-webkit-transition:-webkit-transform ease .28s;transition:-webkit-transform ease .28s;-webkit-transition:transform ease .28s;transition:transform ease .28s;-webkit-transform:translateX(-50%) translateY(-50%) scale(0);transform:translateX(-50%) translateY(-50%) scale(0)}.Od2TWd.N2RpBe .rseUEf{-webkit-transform:translateX(-50%) translateY(-50%) scale(1);transform:translateX(-50%) translateY(-50%) scale(1)}.Od2TWd.RDPZE{cursor:default;pointer-events:none}.Od2TWd.RDPZE.N2RpBe .rseUEf,.Od2TWd.RDPZE .AB7Lab{border-color:#bdc1c6}.x0k1lc{bottom:10px;left:10px;position:absolute;right:10px;top:10px;-webkit-transform:scale(1);transform:scale(1);-webkit-transition:opacity .15s ease;transition:opacity .15s ease;background-color:rgba(218,220,224,0.2);-webkit-border-radius:100%;border-radius:100%;height:20px;opacity:0;outline:.1px solid transparent;pointer-events:none;width:20px;z-index:-1}.Od2TWd.qs41qe>.x0k1lc{-webkit-animation:agmRadialInkSpread .3s;animation:agmRadialInkSpread .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:1}.Od2TWd.u3bW4e>.x0k1lc{-webkit-transform:scale(2);transform:scale(2);background-color:rgba(26,115,232,0.122);opacity:1}@keyframes agmRadialInkSpread{0%{-webkit-transform:scale(1);transform:scale(1);opacity:0}to{-webkit-transform:scale(2);transform:scale(2);opacity:1}}@-webkit-keyframes agmRadialInkSpread{0%{-webkit-transform:scale(1);transform:scale(1);opacity:0}to{-webkit-transform:scale(2);transform:scale(2);opacity:1}}@keyframes agmAnimateSelectIn{0%{height:0;width:0}to{height:100%;width:100%}}@-webkit-keyframes agmAnimateSelectIn{0%{height:0;width:0}to{height:100%;width:100%}}@keyframes agmAnimateSelectOut{0%{height:0;width:0}to{height:100%;width:100%}}@-webkit-keyframes agmAnimateSelectOut{0%{height:0;width:0}to{height:100%;width:100%}}.c7fp5b{-webkit-user-select:none;-webkit-transition:background .3s;transition:background .3s;border:0;-webkit-border-radius:3px;border-radius:3px;color:#444;cursor:pointer;display:inline-block;font-size:14px;font-weight:500;min-width:88px;outline:none;overflow:hidden;position:relative;text-align:center;-webkit-tap-highlight-color:transparent}.hhcOmc{color:#fff;fill:#fff}.JvtX2e{-webkit-transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);background:#dfdfdf;-webkit-box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);box-shadow:0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2)}.rGMe1e{background:#4285f4;color:#fff}.JvtX2e.qs41qe{-webkit-transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);transition:box-shadow .28s cubic-bezier(0.4,0.0,0.2,1);-webkit-transition:background .8s;transition:background .8s;-webkit-box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2);box-shadow:0 8px 10px 1px rgba(0,0,0,0.14),0 3px 14px 2px rgba(0,0,0,0.12),0 5px 5px -3px rgba(0,0,0,0.2)}.rGMe1e.qs41qe{background:#3367d6}.JvtX2e.RDPZE{background:rgba(153,153,153,0.102)}.g4jUVc{-webkit-transition:opacity .2s ease;transition:opacity .2s ease;background-color:rgba(0,0,0,0.122);bottom:0;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0}.FS4hgd.u3bW4e{background-color:rgba(153,153,153,0.4)}.hhcOmc.u3bW4e{background-color:rgba(204,204,204,0.251)}.JvtX2e.u3bW4e .g4jUVc{opacity:1}.lVYxmb{-webkit-transform:translate(-50%,-50%) scale(0);transform:translate(-50%,-50%) scale(0);-webkit-transition:opacity .2s ease;transition:opacity .2s ease;-webkit-background-size:cover;background-size:cover;left:0;opacity:0;pointer-events:none;position:absolute;top:0;visibility:hidden}.c7fp5b.iWO5td>.lVYxmb{-webkit-transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:-webkit-transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);transition:transform .3s cubic-bezier(0.0,0.0,0.2,1);-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);opacity:1;visibility:visible}.c7fp5b.j7nIZb>.lVYxmb{-webkit-transform:translate(-50%,-50%) scale(2.2);transform:translate(-50%,-50%) scale(2.2);visibility:visible}.c7fp5b>.lVYxmb{background-image:radial-gradient(circle farthest-side,rgba(153,153,153,0.4),rgba(153,153,153,0.4) 80%,rgba(153,153,153,0) 100%)}.FS4hgd.iWO5td>.lVYxmb{background-image:radial-gradient(circle farthest-side,rgba(153,153,153,0.4),rgba(153,153,153,0.4) 80%,rgba(153,153,153,0) 100%)}.hhcOmc.iWO5td>.lVYxmb{background-image:radial-gradient(circle farthest-side,rgba(204,204,204,0.251),rgba(204,204,204,0.251) 80%,rgba(204,204,204,0) 100%)}.FS4hgd.RDPZE{color:rgba(68,68,68,0.502);fill:rgba(68,68,68,0.502);cursor:default}.hhcOmc.RDPZE{color:rgba(255,255,255,0.502);fill:rgba(255,255,255,0.502)}.c7fp5b.RDPZE{-webkit-box-shadow:none;box-shadow:none;color:rgba(68,68,68,0.502);cursor:default}.I3EnF{position:relative;margin:16px}.NlWrkb{display:inline-block;line-height:48px}.zJKIV{-webkit-user-select:none;-webkit-transition:border-color .2s cubic-bezier(0.4,0,0.2,1);transition:border-color .2s cubic-bezier(0.4,0,0.2,1);-webkit-tap-highlight-color:transparent;-webkit-border-radius:3px;border-radius:3px;-webkit-box-sizing:content-box;box-sizing:content-box;cursor:pointer;display:inline-block;height:20px;outline:none;position:relative;vertical-align:middle;width:20px;z-index:0}.SCWude{-webkit-animation:quantumWizPaperAnimateSelectOut .2s forwards;animation:quantumWizPaperAnimateSelectOut .2s forwards;position:relative;width:20px;height:20px;cursor:pointer}[aria-checked="true"]>.SCWude{-webkit-animation:quantumWizPaperAnimateSelectIn .2s .1s forwards;animation:quantumWizPaperAnimateSelectIn .2s .1s forwards}.t5nRo{position:absolute;top:0;left:0;width:16px;height:16px;-webkit-border-radius:50%;border-radius:50%;border:solid 2px;border-color:rgba(0,0,0,0.54)}.N2RpBe .t5nRo{border-color:#009688}.wEIpqb{position:absolute;top:50%;left:50%;-webkit-border-radius:50%;border-radius:50%;border:5px solid #009688;-webkit-transition:-webkit-transform ease .28s;transition:-webkit-transform ease .28s;-webkit-transition:transform ease .28s;transition:transform ease .28s;-webkit-transform:translateX(-50%) translateY(-50%) scale(0);transform:translateX(-50%) translateY(-50%) scale(0)}[aria-checked="true"] .wEIpqb{-webkit-transform:translateX(-50%) translateY(-50%) scale(1);transform:translateX(-50%) translateY(-50%) scale(1)}.zJKIV[aria-disabled="true"]{cursor:default;pointer-events:none}[aria-disabled="true"][aria-checked="true"] .wEIpqb,[aria-disabled="true"] .t5nRo{border-color:rgba(0,0,0,0.26)}.k5cvGe{-webkit-transform:scale(3);transform:scale(3);-webkit-transition:opacity .15s ease;transition:opacity .15s ease;background-color:rgba(0,0,0,0.2);-webkit-border-radius:100%;border-radius:100%;height:20px;left:0;opacity:0;outline:.1px solid transparent;pointer-events:none;position:absolute;width:20px;z-index:-1}.qs41qe>.k5cvGe{-webkit-animation:quantumWizRadialInkSpread .3s;animation:quantumWizRadialInkSpread .3s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;opacity:1}.i9xfbb>.k5cvGe{background-color:rgba(0,150,136,0.2)}.u3bW4e>.k5cvGe{-webkit-animation:quantumWizRadialInkFocusPulse .7s infinite alternate;animation:quantumWizRadialInkFocusPulse .7s infinite alternate;background-color:rgba(0,150,136,0.2);opacity:1}@keyframes quantumWizPaperAnimateSelectIn{0%{height:0;width:0}to{height:100%;width:100%}}@-webkit-keyframes quantumWizPaperAnimateSelectIn{0%{height:0;width:0}to{height:100%;width:100%}}@keyframes quantumWizPaperAnimateSelectOut{0%{height:0;width:0}to{height:100%;width:100%}}@-webkit-keyframes quantumWizPaperAnimateSelectOut{0%{height:0;width:0}to{height:100%;width:100%}}.VIpgJd-xl07Ob{-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-transition:opacity .218s;transition:opacity .218s;background:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);cursor:default;font-size:13px;margin:0;outline:none;padding:6px 0;position:absolute}.VIpgJd-j7LFlb,.VIpgJd-pWKtN,.VIpgJd-SFgmFf{position:relative;color:#333;cursor:pointer;list-style:none;margin:0;padding:6px 8em 6px 30px;white-space:nowrap}.VIpgJd-xl07Ob-RDtZlf .VIpgJd-j7LFlb,.VIpgJd-xl07Ob-GP8zAc .VIpgJd-j7LFlb{padding-left:16px;vertical-align:middle}.VIpgJd-xl07Ob-KEZkZ .VIpgJd-j7LFlb{padding-right:44px}.VIpgJd-j7LFlb-OWB6Me{cursor:default}.VIpgJd-j7LFlb-OWB6Me .VIpgJd-j7LFlb-x29Bmf,.VIpgJd-j7LFlb-OWB6Me .VIpgJd-j7LFlb-bN97Pc{color:#ccc!important}.VIpgJd-j7LFlb-OWB6Me .VIpgJd-j7LFlb-Bz112c{filter:alpha(opacity=30);opacity:.3}.VIpgJd-j7LFlb-sn54Q,.VIpgJd-j7LFlb-ZmdkE{background-color:#eee;border-color:#eee;border-style:dotted;border-width:1px 0;padding-top:5px;padding-bottom:5px}.VIpgJd-j7LFlb-sn54Q .VIpgJd-j7LFlb-bN97Pc,.VIpgJd-j7LFlb-ZmdkE .VIpgJd-j7LFlb-bN97Pc{color:#333}.VIpgJd-j7LFlb-MPu53c,.VIpgJd-j7LFlb-Bz112c{background-repeat:no-repeat;height:21px;left:3px;position:absolute;right:auto;top:3px;vertical-align:middle;width:21px}.VIpgJd-wQNmvb-gk6SMd{background-image:url(//ssl.gstatic.com/ui/v1/menu/checkmark.png);background-repeat:no-repeat;background-position:left center}.VIpgJd-wQNmvb-gk6SMd .VIpgJd-j7LFlb-bN97Pc{color:#333}.VIpgJd-j7LFlb-x29Bmf{color:#777;direction:ltr;left:auto;padding:0 6px;position:absolute;right:0;text-align:right}.VIpgJd-j7LFlb-PQTlnb-brjg8b{text-decoration:underline}.VIpgJd-j7LFlb-PQTlnb-hgDUwe{color:#777;font-size:12px;padding-left:4px}#docs-omnibox-toolbar .HB1eCd-QbdDtf-h0T7hb{margin-right:4px}.HB1eCd-QbdDtf-h0T7hb{margin-top:4px}.HB1eCd-QbdDtf-YPqjbf{-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;min-width:178px}.HB1eCd-QbdDtf-YPqjbf::-webkit-input-placeholder{color:#777;font-family:arial,sans-serif;font-size:11px;font-weight:700;opacity:1;padding-top:2px}.HB1eCd-QbdDtf-YPqjbf::-moz-placeholder{color:#777;font-family:arial,sans-serif;font-size:11px;font-weight:700;opacity:1}.HB1eCd-QbdDtf-YPqjbf:-ms-input-placeholder{color:#777;font-family:arial,sans-serif;font-size:11px;font-weight:700;opacity:1}.HB1eCd-UMrnmb .HB1eCd-QbdDtf-YPqjbf.tk3N6e-y4JFTd{border:1px solid #dadce0;border-radius:4px;box-sizing:border-box;color:#3c4043;padding:1px 8px;font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px;height:20px}.HB1eCd-UMrnmb .HB1eCd-QbdDtf-YPqjbf.tk3N6e-y4JFTd::placeholder{font-family:Roboto,RobotoDraft,Helvetica,Arial,sans-serif;font-size:12px;font-weight:400;line-height:16px}.HB1eCd-UMrnmb .HB1eCd-QbdDtf-YPqjbf.tk3N6e-y4JFTd:focus{border:2px solid #1a73e8;box-shadow:none;padding:0 7px}.HB1eCd-QbdDtf-h0T7hb .ztA2jd-SUR3Rd{-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);border:1px solid #ccc;background-color:#fff;min-width:250px;outline:medium none;position:fixed;width:auto;z-index:1003}.HB1eCd-QbdDtf-h0T7hb .ztA2jd-AHUcCb{font-weight:700}.HB1eCd-QbdDtf-h0T7hb .ztA2jd-auswjd{background-color:#eee}.HB1eCd-QbdDtf-oKdM2c-bN97Pc{font-family:arial,sans-serif}.cNrWH,.qcWwYc{overflow:visible}.u1KZub{background-color:#202124;bottom:0;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);box-shadow:0 6px 10px 0 rgba(0,0,0,0.14),0 1px 18px 0 rgba(0,0,0,0.12),0 3px 5px -1px rgba(0,0,0,0.2);color:#e8eaed;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;font-size:.875rem;left:0;min-height:48px;position:fixed;right:0;-webkit-transform:translate(0,100%);transform:translate(0,100%);visibility:hidden;z-index:99999}.YrbPvc{-webkit-box-align:center;box-align:center;-webkit-align-items:center;align-items:center;-webkit-align-content:center;align-content:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:row;flex-direction:row;min-height:inherit;padding:0}.pXn1rb{line-height:0}.w3FaXb{height:36px;margin-right:6px;width:36px}.VYTiVb{-webkit-box-flex:1;box-flex:1;-webkit-flex-grow:1;flex-grow:1;-webkit-flex-shrink:1;flex-shrink:1;line-height:normal;overflow:hidden;padding:14px 16px;text-overflow:ellipsis;word-break:break-word}.IAjCAb{-webkit-align-self:center;align-self:center;color:#6ba5ed;padding:0 8px;-webkit-box-flex:0;box-flex:0;-webkit-flex-grow:0;flex-grow:0;-webkit-flex-shrink:0;flex-shrink:0;float:right;display:inline-block;cursor:pointer;outline:none;-webkit-transition:background .3s;transition:background .3s;font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:36px;text-decoration:none;text-transform:none}.IAjCAb:focus,.IAjCAb:hover{background-color:rgba(107,165,237,.15);-webkit-border-radius:4px;border-radius:4px}.YaOh0{background-color:#4285f4}.nEwe6b{-webkit-transform:translate(0,0);transform:translate(0,0)}@media screen and (min-width:481px){.u1KZub{min-width:288px;max-width:568px;-webkit-border-radius:4px;border-radius:4px}.FPvg4{left:24px;margin-right:24px;right:auto}.VUvTof{left:50%;right:auto;-webkit-transform:translate(-50%,100%);transform:translate(-50%,100%)}.FPvg4.nEwe6b{bottom:24px}.VUvTof.nEwe6b{bottom:0;-webkit-transform:translate(-50%,0);transform:translate(-50%,0)}.YrbPvc{padding:0}}@media screen and (max-width:480px){.JL6eS .VYTiVb,.JL6eS .IAjCAb{padding-bottom:24px;padding-top:24px}}@media screen and (min-width:481px) and (max-width:568px){.u1KZub{max-width:90%}}@media screen and (min-width:569px){.u1KZub{max-width:568px}}.ndfHFb-aZ2wEe{height:44px;overflow:hidden;position:relative}.ndfHFb-vyDMJf-aZ2wEe{height:28px;left:50%;margin-left:-14px;position:absolute;top:8px;width:28px}.ndfHFb-vyDMJf-aZ2wEe.auswjd{-webkit-animation:container-rotate 1568ms linear infinite;-webkit-animation:container-rotate 1568ms linear infinite;animation:container-rotate 1568ms linear infinite}@-webkit-keyframes container-rotate{to{-webkit-transform:rotate(360deg)}}@keyframes container-rotate{to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.aZ2wEe-pbTTYe{position:absolute;width:100%;height:100%;opacity:0}.aZ2wEe-v3pZbf{border-color:#4285f4}.aZ2wEe-oq6NAc{border-color:#db4437}.aZ2wEe-gS7Ybc{border-color:#f4b400}.aZ2wEe-nllRtd{border-color:#0f9d58}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-pbTTYe.aZ2wEe-v3pZbf{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,blue-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-pbTTYe.aZ2wEe-oq6NAc{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,red-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-pbTTYe.aZ2wEe-gS7Ybc{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,yellow-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-pbTTYe.aZ2wEe-nllRtd{-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:fill-unfill-rotate 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both,green-fade-in-out 5332ms cubic-bezier(0.4,0.0,0.2,1) infinite both}@-webkit-keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg)}}@keyframes fill-unfill-rotate{12.5%{-webkit-transform:rotate(135deg);transform:rotate(135deg)}25%{-webkit-transform:rotate(270deg);transform:rotate(270deg)}37.5%{-webkit-transform:rotate(405deg);transform:rotate(405deg)}50%{-webkit-transform:rotate(540deg);transform:rotate(540deg)}62.5%{-webkit-transform:rotate(675deg);transform:rotate(675deg)}75%{-webkit-transform:rotate(810deg);transform:rotate(810deg)}87.5%{-webkit-transform:rotate(945deg);transform:rotate(945deg)}to{-webkit-transform:rotate(1080deg);transform:rotate(1080deg)}}@-webkit-keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@keyframes blue-fade-in-out{0%{opacity:1}25%{opacity:1}26%{opacity:0}89%{opacity:0}90%{opacity:1}to{opacity:1}}@-webkit-keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@keyframes red-fade-in-out{0%{opacity:0}15%{opacity:0}25%{opacity:1}50%{opacity:1}51%{opacity:0}}@-webkit-keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@keyframes yellow-fade-in-out{0%{opacity:0}40%{opacity:0}50%{opacity:1}75%{opacity:1}76%{opacity:0}}@-webkit-keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}@keyframes green-fade-in-out{0%{opacity:0}65%{opacity:0}75%{opacity:1}90%{opacity:1}to{opacity:0}}.aZ2wEe-pehrl-TpMipd{position:absolute;-webkit-box-sizing:border-box;box-sizing:border-box;top:0;left:45%;width:10%;height:100%;overflow:hidden;border-color:inherit}.aZ2wEe-pehrl-TpMipd .aZ2wEe-LkdAo{width:1000%;left:-450%}.aZ2wEe-LkdAo-e9ayKc{display:inline-block;position:relative;width:50%;height:100%;overflow:hidden;border-color:inherit}.aZ2wEe-LkdAo-e9ayKc .aZ2wEe-LkdAo{width:200%}.aZ2wEe-LkdAo{-webkit-box-sizing:border-box;box-sizing:border-box;height:100%;border-width:3px;border-style:solid;border-color:inherit;border-bottom-color:transparent!important;-webkit-border-radius:50%;border-radius:50%;-webkit-animation:none;-webkit-animation:none;animation:none}.aZ2wEe-LkdAo-e9ayKc.aZ2wEe-LK5yu .aZ2wEe-LkdAo{border-right-color:transparent!important;-webkit-transform:rotate(129deg);-webkit-transform:rotate(129deg);transform:rotate(129deg)}.aZ2wEe-LkdAo-e9ayKc.aZ2wEe-qwU8Me .aZ2wEe-LkdAo{left:-100%;border-left-color:transparent!important;-webkit-transform:rotate(-129deg);-webkit-transform:rotate(-129deg);transform:rotate(-129deg)}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-LkdAo-e9ayKc.aZ2wEe-LK5yu .aZ2wEe-LkdAo{-webkit-animation:left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:left-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}.ndfHFb-vyDMJf-aZ2wEe.auswjd .aZ2wEe-LkdAo-e9ayKc.aZ2wEe-qwU8Me .aZ2wEe-LkdAo{-webkit-animation:right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;-webkit-animation:right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both;animation:right-spin 1333ms cubic-bezier(0.4,0.0,0.2,1) infinite both}@-webkit-keyframes left-spin{0%{-webkit-transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg)}}@keyframes left-spin{0%{-webkit-transform:rotate(130deg);transform:rotate(130deg)}50%{-webkit-transform:rotate(-5deg);transform:rotate(-5deg)}to{-webkit-transform:rotate(130deg);transform:rotate(130deg)}}@-webkit-keyframes right-spin{0%{-webkit-transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg)}}@keyframes right-spin{0%{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}50%{-webkit-transform:rotate(5deg);transform:rotate(5deg)}to{-webkit-transform:rotate(-130deg);transform:rotate(-130deg)}}.aZ2wEe-hj4D6d{position:absolute;top:0;bottom:0;right:0;left:0}.ndfHFb-c4YZDc{color:#fff;font-family:arial,sans-serif;overflow:hidden;opacity:0;visibility:hidden;-webkit-transition-property:opacity,visibility;transition-property:opacity,visibility;-webkit-transition-duration:.1s,0s;transition-duration:.1s,0s;-webkit-transition-timing-function:cubic-bezier(0.0,0.0,0.2,1);transition-timing-function:cubic-bezier(0.0,0.0,0.2,1);-webkit-transition-delay:0s,.1s;transition-delay:0s,.1s;position:fixed;top:0;bottom:0;left:0;right:0;z-index:1001}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb{font-family:'Google Sans',Roboto, arial,sans-serif }.ndfHFb-c4YZDc-TSZdd{opacity:1;visibility:visible;-webkit-transition-timing-function:cubic-bezier(0.4,0.0,1,1);transition-timing-function:cubic-bezier(0.4,0.0,1,1);-webkit-transition-delay:0s,0s;transition-delay:0s,0s}.ndfHFb-c4YZDc-bnBfGc{background-color:#1e1e1e;position:fixed;top:0;bottom:0;left:0;right:0;filter:alpha(opacity=93);opacity:.93}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-bnBfGc{background-color:#d1d1d1;filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-bnBfGc{background-color:rgba(0,0,0,0.85);filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-qbOKL-OEVmcd{margin:0;height:100%;width:100%;overflow:hidden!important}.ndfHFb-c4YZDc-AHmuwe-Hr88gd-OWB6Me *:focus{outline:none}.ndfHFb-c4YZDc-Sx9Kwc{background:#fff;background-clip:padding-box;border:1px solid #acacac;border:1px solid rgba(0,0,0,.333);-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);outline:0;padding:30px 42px;position:absolute;z-index:1003}.ndfHFb-c4YZDc-Sx9Kwc-xJ5Hnf{background-color:#000;left:0;position:absolute;top:0;z-index:1002}.ndfHFb-c4YZDc-qbOKL-OEVmcd .VIpgJd-TUo6Hb-xJ5Hnf,.ndfHFb-c4YZDc-qbOKL-OEVmcd .XKSfm-Sx9Kwc-xJ5Hnf{background-color:#000}div.ndfHFb-c4YZDc-Sx9Kwc-xJ5Hnf{filter:alpha(opacity=75);opacity:.75}.ndfHFb-c4YZDc-Sx9Kwc-r4nke{background-color:#fff;color:#000;cursor:default;font-size:16px;line-height:24px}.ndfHFb-c4YZDc-Sx9Kwc-r4nke-TvD9Pc{height:11px;filter:alpha(opacity=70);opacity:.7;padding:17px;position:absolute;right:0;top:0;width:11px}.ndfHFb-c4YZDc-Sx9Kwc-r4nke-TvD9Pc:after{content:'';background:url(//ssl.gstatic.com/ui/v1/dialog/close-x.png);position:absolute;height:11px;width:11px;right:17px}.ndfHFb-c4YZDc-Sx9Kwc-r4nke-TvD9Pc:hover{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-Sx9Kwc-bN97Pc{background-color:#fff;line-height:1.4em}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd button{-webkit-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;cursor:default;font-size:11px;font-weight:bold;height:29px;line-height:27px;margin:0 16px 0 0;min-width:72px;outline:0;padding:0 8px}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd button:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd button:active{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd button:focus{border:1px solid #4d90fe}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd button[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#fff;background-image:none;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd .ndfHFb-c4YZDc-ldDVFe-JIbuQc{background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed;color:#fff}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd .ndfHFb-c4YZDc-ldDVFe-JIbuQc:hover{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd .ndfHFb-c4YZDc-ldDVFe-JIbuQc:active{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff;-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)}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd .ndfHFb-c4YZDc-ldDVFe-JIbuQc:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #4d90fe;outline:rgba(0,0,0,0) 0}.ndfHFb-c4YZDc-Sx9Kwc-c6xFrd .ndfHFb-c4YZDc-ldDVFe-JIbuQc[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#4d90fe;color:#fff;filter:alpha(opacity=50);opacity:.5}.ndfHFb-c4YZDc-Sx9Kwc-TD02Lb{position:absolute;visibility:hidden}.VIpgJd-TUo6Hb,.XKSfm-Sx9Kwc{-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;border:1px solid #acacac;border:1px solid rgba(0,0,0,.333);outline:0;position:absolute}.VIpgJd-TUo6Hb-xJ5Hnf,.XKSfm-Sx9Kwc-xJ5Hnf{background:#fff;left:0;position:absolute;top:0}div.VIpgJd-TUo6Hb-xJ5Hnf,div.XKSfm-Sx9Kwc-xJ5Hnf{filter:alpha(opacity=75);opacity:.75}.XKSfm-Sx9Kwc{color:#000;padding:30px 42px}.XKSfm-Sx9Kwc-r4nke{background-color:#fff;color:#000;cursor:default;font-size:16px;font-weight:normal;line-height:24px;margin:0 0 16px}.XKSfm-Sx9Kwc-r4nke-TvD9Pc{height:11px;opacity:.7;padding:17px;position:absolute;right:0;top:0;width:11px}.XKSfm-Sx9Kwc-r4nke-TvD9Pc:after{content:'';background:url(//ssl.gstatic.com/ui/v1/dialog/close-x.png);position:absolute;height:11px;width:11px;right:17px}.XKSfm-Sx9Kwc-r4nke-TvD9Pc:hover{opacity:1}.XKSfm-Sx9Kwc-bN97Pc{background-color:#fff;line-height:1.4em;word-wrap:break-word}.XKSfm-Sx9Kwc-c6xFrd{margin-top:16px}.XKSfm-Sx9Kwc-c6xFrd button{-webkit-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;cursor:default;font-family:inherit;font-size:11px;font-weight:bold;height:29px;line-height:27px;margin:0 16px 0 0;min-width:72px;outline:0;padding:0 8px}.XKSfm-Sx9Kwc-c6xFrd button:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.XKSfm-Sx9Kwc-c6xFrd button:active{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.XKSfm-Sx9Kwc-c6xFrd button:focus{border:1px solid #4d90fe}.XKSfm-Sx9Kwc-c6xFrd button[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#fff;background-image:none;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);color:#b8b8b8}.XKSfm-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc{background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed;color:#fff}.XKSfm-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:hover{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff}.XKSfm-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:active{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff;-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)}.XKSfm-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #4d90fe;outline:rgba(0,0,0,0) 0}.XKSfm-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#4d90fe;color:#fff;filter:alpha(opacity=50);opacity:.5}.tk3N6e-O0r3Gd,.tk3N6e-McfNlf,.tk3N6e-ostUZ{width:512px}.tk3N6e-VCkuzd{-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2);background-color:#fff;border:1px solid;border-color:#bbb #bbb #a8a8a8;padding:16px;position:absolute;z-index:1201!important}.tk3N6e-VCkuzd-kmh2Gb{background:url("//ssl.gstatic.com/ui/v1/icons/common/x_8px.png") no-repeat;border:1px solid transparent;height:21px;opacity:.4;outline:0;position:absolute;right:2px;top:2px;width:21px}.tk3N6e-VCkuzd-kmh2Gb:focus{border:1px solid #4d90fe;opacity:.8}.tk3N6e-VCkuzd-hFsbo{position:absolute}.tk3N6e-VCkuzd-hFsbo .tk3N6e-VCkuzd-jQ8oHc,.tk3N6e-VCkuzd-hFsbo .tk3N6e-VCkuzd-ez0xG{display:block;height:0;position:absolute;width:0}.tk3N6e-VCkuzd-hFsbo .tk3N6e-VCkuzd-jQ8oHc{border:9px solid}.tk3N6e-VCkuzd-hFsbo .tk3N6e-VCkuzd-ez0xG{border:8px solid}.tk3N6e-VCkuzd-Ya1KTb{bottom:0}.tk3N6e-VCkuzd-d6mlqf{top:-9px}.tk3N6e-VCkuzd-y6n2Me{left:-9px}.tk3N6e-VCkuzd-cX0Lwc{right:0}.tk3N6e-VCkuzd-Ya1KTb .tk3N6e-VCkuzd-jQ8oHc{left:-9px}.tk3N6e-VCkuzd-d6mlqf .tk3N6e-VCkuzd-jQ8oHc{border-color:#bbb transparent;left:-9px}.tk3N6e-VCkuzd-Ya1KTb .tk3N6e-VCkuzd-jQ8oHc{border-color:#a8a8a8 transparent}.tk3N6e-VCkuzd-Ya1KTb .tk3N6e-VCkuzd-ez0xG,.tk3N6e-VCkuzd-d6mlqf .tk3N6e-VCkuzd-ez0xG{border-color:#fff transparent;left:-8px}.tk3N6e-VCkuzd-Ya1KTb .tk3N6e-VCkuzd-jQ8oHc,.tk3N6e-VCkuzd-Ya1KTb .tk3N6e-VCkuzd-ez0xG{border-bottom-width:0}.tk3N6e-VCkuzd-d6mlqf .tk3N6e-VCkuzd-jQ8oHc{border-top-width:0}.tk3N6e-VCkuzd-d6mlqf .tk3N6e-VCkuzd-ez0xG{border-top-width:0;top:1px}.tk3N6e-VCkuzd-y6n2Me .tk3N6e-VCkuzd-jQ8oHc,.tk3N6e-VCkuzd-cX0Lwc .tk3N6e-VCkuzd-jQ8oHc{border-color:transparent #bbb;top:-9px}.tk3N6e-VCkuzd-y6n2Me .tk3N6e-VCkuzd-ez0xG,.tk3N6e-VCkuzd-cX0Lwc .tk3N6e-VCkuzd-ez0xG{border-color:transparent #fff;top:-8px}.tk3N6e-VCkuzd-y6n2Me .tk3N6e-VCkuzd-jQ8oHc{border-left-width:0}.tk3N6e-VCkuzd-y6n2Me .tk3N6e-VCkuzd-ez0xG{border-left-width:0;left:1px}.tk3N6e-VCkuzd-cX0Lwc .tk3N6e-VCkuzd-jQ8oHc,.tk3N6e-VCkuzd-cX0Lwc .tk3N6e-VCkuzd-ez0xG{border-right-width:0}.tk3N6e-suEOdc{-webkit-border-radius:0;border-radius:0;-webkit-box-shadow:none;box-shadow:none;-webkit-transition:visibility 0,opacity .13s ease-in;transition:visibility 0,opacity .13s ease-in;background-color:#2a2a2a;border:1px solid #fff;color:#fff;cursor:default;display:block;font-size:11px;font-weight:bold;margin-left:-1px;opacity:1;padding:7px 9px;position:absolute;visibility:visible;white-space:pre-wrap;word-break:break-all;word-break:break-word}.tk3N6e-suEOdc-ZYIfFd{-webkit-transition:visibility .13s ,opacity .13s ease-out,left 0 linear .13s ,top 0 linear .13s;transition:visibility .13s ,opacity .13s ease-out,left 0 linear .13s ,top 0 linear .13s;opacity:0;left:20px!important;top:20px!important;visibility:hidden}.tk3N6e-suEOdc-wZVHld{display:none}.tk3N6e-suEOdc-hFsbo{pointer-events:none;position:absolute}.tk3N6e-suEOdc-hFsbo .tk3N6e-suEOdc-jQ8oHc,.tk3N6e-suEOdc-hFsbo .tk3N6e-suEOdc-ez0xG{content:'';display:block;height:0;position:absolute;width:0}.tk3N6e-suEOdc-hFsbo .tk3N6e-suEOdc-jQ8oHc{border:6px solid}.tk3N6e-suEOdc-hFsbo .tk3N6e-suEOdc-ez0xG{border:5px solid}.tk3N6e-suEOdc-Ya1KTb{bottom:0}.tk3N6e-suEOdc-d6mlqf{top:-6px}.tk3N6e-suEOdc-y6n2Me{left:-6px}.tk3N6e-suEOdc-cX0Lwc{right:0}.tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-jQ8oHc,.tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-jQ8oHc{border-color:#fff transparent;left:-6px}.tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-ez0xG,.tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-ez0xG{border-color:#2a2a2a transparent;left:-5px}.tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-jQ8oHc,.tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-ez0xG{border-bottom-width:0}.tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-jQ8oHc{border-top-width:0}.tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-ez0xG{border-top-width:0;top:1px}.tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-jQ8oHc,.tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-jQ8oHc{border-color:transparent #fff;top:-6px}.tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-ez0xG,.tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-ez0xG{border-color:transparent #2a2a2a;top:-5px}.tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-jQ8oHc{border-left-width:0}.tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-ez0xG{border-left-width:0;left:1px}.tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-jQ8oHc,.tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-ez0xG{border-right-width:0}.ndfHFb-w37qKe-ppgLk-V68bde{display:-webkit-box;display:-webkit-flex;display:flex;vertical-align:middle}.ndfHFb-w37qKe-ppgLk-V68bde-sfGayb-SKd3Ne{margin:auto}.ndfHFb-w37qKe-V68bde{position:absolute;z-index:1002;-webkit-box-shadow:rgba(0,0,0,0.2) 0 4px 16px;box-shadow:rgba(0,0,0,0.2) 0 4px 16px;background-color:#f1f1f1;border:1px solid rgba(0,0,0,0.2);color:#6e6e6e;font-size:13px;font-weight:normal;text-align:left;white-space:nowrap}.ndfHFb-w37qKe-V68bde-i5vt6e-L6cTce *:focus{outline:none}.ndfHFb-w37qKe-V68bde-bN97Pc{display:-webkit-box;display:-webkit-flex;display:flex;padding:10px}.ndfHFb-w37qKe-V68bde-Ne3sFf{overflow:hidden;text-overflow:ellipsis;-webkit-box-orient:vertical;-webkit-line-clamp:6;display:-webkit-box;max-height:90px;margin:auto;max-width:160px;padding-right:10px;word-break:break-word}.ndfHFb-w37qKe-LgbsSe{display:inline-block;margin:auto}.ndfHFb-w37qKe-V68bde-hSRGPd-SKd3Ne{color:#15c;cursor:pointer;padding:0 7px}.ndfHFb-w37qKe-V68bde-TvD9Pc-SKd3Ne{cursor:pointer;height:15px;padding:3px;vertical-align:middle}.ndfHFb-w37qKe-V68bde-hSRGPd-SKd3Ne.ndfHFb-w37qKe-LgbsSe-ZmdkE{text-decoration:underline}.ndfHFb-w37qKe-V68bde-hFsbo{position:absolute;width:20px}.ndfHFb-w37qKe-V68bde-hFsbo .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe,.ndfHFb-w37qKe-V68bde-hFsbo .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc{content:'';display:block;height:0;position:absolute;width:0}.ndfHFb-w37qKe-V68bde-hFsbo .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe{border:10px solid}.ndfHFb-w37qKe-V68bde-hFsbo .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc{border:9px solid}.ndfHFb-w37qKe-V68bde-Ya1KTb{bottom:0}.ndfHFb-w37qKe-V68bde-d6mlqf{top:-10px}.ndfHFb-w37qKe-V68bde-Ya1KTb .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe,.ndfHFb-w37qKe-V68bde-d6mlqf .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe{border-color:rgba(0,0,0,0.2) transparent;left:0}.ndfHFb-w37qKe-V68bde-Ya1KTb .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc,.ndfHFb-w37qKe-V68bde-d6mlqf .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc{border-color:#f1f1f1 transparent;left:1px}.ndfHFb-w37qKe-V68bde-Ya1KTb .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe,.ndfHFb-w37qKe-V68bde-Ya1KTb .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc{border-bottom-width:0}.ndfHFb-w37qKe-V68bde-d6mlqf .ndfHFb-w37qKe-V68bde-Zj4Smb-WgXLxe{border-top-width:0}.ndfHFb-w37qKe-V68bde-d6mlqf .ndfHFb-w37qKe-V68bde-Zj4Smb-BuvAkc{border-top-width:0;top:2px}.ndfHFb-w37qKe-Sx9Kwc{-webkit-box-shadow:0 4px 16px rgba(0,0,0,.2);box-shadow:0 4px 16px rgba(0,0,0,.2);background:#fff;background-clip:padding-box;color:#000;font-family:inherit;outline:0;padding:24px;position:absolute;width:560px;z-index:2204}.ndfHFb-w37qKe-Sx9Kwc-xJ5Hnf{background:#000;left:0;position:absolute;top:0;z-index:2203}div.ndfHFb-w37qKe-Sx9Kwc-xJ5Hnf{filter:alpha(opacity=50);opacity:.5}.ndfHFb-w37qKe-Sx9Kwc-r4nke{background-color:#fff;color:#000;cursor:default;font-size:20px;font-weight:normal;line-height:24px}.ndfHFb-w37qKe-Sx9Kwc-r4nke-TvD9Pc{height:11px;margin:24px;opacity:.7;padding:6px;position:absolute;right:0;top:0;width:11px}.ndfHFb-w37qKe-Sx9Kwc-r4nke-TvD9Pc:after{background:url(//ssl.gstatic.com/ui/v1/dialog/close-x.png);content:'';height:11px;position:absolute;width:11px}.ndfHFb-w37qKe-Sx9Kwc-r4nke-TvD9Pc:hover{opacity:1}.ndfHFb-w37qKe-Sx9Kwc-bN97Pc{background-color:#fff;font-size:16px;line-height:1.4em;padding-top:24px;padding-bottom:24px;word-wrap:break-word}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd{text-align:right}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .ndfHFb-w37qKe-LgbsSe{-webkit-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;cursor:default;font-family:inherit;font-size:11px;font-weight:bold;height:29px;line-height:27px;margin:0 0 0 16px;min-width:72px;outline:0;padding:0 8px}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .ndfHFb-w37qKe-LgbsSe:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .ndfHFb-w37qKe-LgbsSe:active{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333;-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)}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .ndfHFb-w37qKe-LgbsSe:focus{border:1px solid #4d90fe}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .ndfHFb-w37qKe-LgbsSe[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#fff;background-image:none;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.5);color:rgba(0,0,0,.26)}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc{background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed;color:#fff}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:hover{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:active{background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7;color:#fff;-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)}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc:focus{-webkit-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff;border:1px solid #fff;border:rgba(0,0,0,0) solid 1px;outline:1px solid #4d90fe;outline:rgba(0,0,0,0) 0}.ndfHFb-w37qKe-Sx9Kwc-c6xFrd .VIpgJd-ldDVFe-JIbuQc[disabled]{-webkit-box-shadow:none;box-shadow:none;background:#4d90fe;color:#fff;filter:alpha(opacity=50);opacity:.5}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-xl07Ob{-webkit-box-shadow:none;box-shadow:none;margin-bottom:-24px;padding:0;position:relative;z-index:inherit}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb{color:#000;font-size:13px;height:16px;margin:0;opacity:.87;padding:0 0 24px 16px}.ndfHFb-w37qKe-Sx9Kwc-tlSJBe-V1ur5d{font-weight:bold}.ndfHFb-w37qKe-Sx9Kwc-rymPhb-ibnC6b{display:block;overflow:hidden;text-overflow:ellipsis}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb-sn54Q{border-left:0;background-color:inherit}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb-bN97Pc{margin:0}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb-sn54Q .VIpgJd-j7LFlb-bN97Pc,.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-wQNmvb-gk6SMd .VIpgJd-j7LFlb-bN97Pc{color:inherit}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb-auswjd .VIpgJd-j7LFlb-MPu53c{background:rgba(235,235,235,1)}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-j7LFlb-AHmuwe .VIpgJd-j7LFlb-MPu53c{border-color:rgba(77,144,254,1)}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-wQNmvb-gk6SMd{background:rgba(255,255,255,0)}.ndfHFb-w37qKe-Sx9Kwc .VIpgJd-wQNmvb-gk6SMd .VIpgJd-j7LFlb-MPu53c::after{-webkit-border-radius:50%;border-radius:50%;background:rgba(96,96,96,1);content:'';display:block}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{color:rgba(255,255,255, .87 );font-size:11px;font-weight:bold;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.8);vertical-align:middle;height:27px;line-height:27px;margin-right:2px;min-width:50px;padding:10px 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{-webkit-border-radius:2px;border-radius:2px;height:24px;line-height:24px;margin:0;padding:8px;min-width:0}.ndfHFb-c4YZDc-AHmuwe-Hr88gd-qnnXGd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe{border-color:#575757}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-OWB6Me{color:rgba(255,255,255, .47 );text-shadow:none}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{color:rgba(255,255,255, 1 );background-color:#232323;background-image:-webkit-linear-gradient(top,#333,#222);background-image:linear-gradient(top,#333,#222)}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:#838383;background-image:none}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-auswjd{-webkit-box-shadow:inset 0 1px 6px rgba(0,0,0,0.8);box-shadow:inset 0 1px 6px rgba(0,0,0,0.8)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-auswjd,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-LgbsSe-auswjd{-webkit-box-shadow:none;box-shadow:none;background-color:rgba(255,255,255,0.35)}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe{background-color:rgba(35,35,35,0.6);border-bottom:3px solid #4d90fe;padding-bottom:7px}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe{background-color:#6d6e71;border-bottom-color:#58595b}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:#838383}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{-webkit-transition:background-color .1s,opacity .1s;transition:background-color .1s,opacity .1s}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:rgba(255,255,255,0.25);background-image:none}.ndfHFb-c4YZDc-LgbsSe-IwzHHe .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe,.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe{background-color:rgba(255,255,255,0.1);border-bottom-color:#c1d9ff}.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-auswjd,.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-auswjd{-webkit-box-shadow:inset 0 1px 6px rgba(0,0,0,0.4);box-shadow:inset 0 1px 6px rgba(0,0,0,0.4)}.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE,.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE,.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe,.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe{background:#609cfd;outline:0}.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd .ndfHFb-c4YZDc-Wrql6b-gvZm2b-c6xFrd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe{background:#1f59c0}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-c6xFrd{display:inline-block;margin:6px 0}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-c6xFrd .ndfHFb-c4YZDc-to915-LgbsSe{background-color:#3f76d9}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-c6xFrd .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background:#407ff1}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-c6xFrd .ndfHFb-c4YZDc-Wrql6b-gvZm2b-LgbsSe-JbbQac.ndfHFb-c4YZDc-to915-LgbsSe{margin-right:1px;min-width:35px;width:35px;padding:4px 0;margin-left:5px}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-LgbsSe-JbbQac .ndfHFb-c4YZDc-Bz112c{background-position:0 0;width:25px;height:25px;padding:3px 10px;margin-left:4px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-gvZm2b-LgbsSe-JbbQac .ndfHFb-c4YZDc-Bz112c{background-position:0 -2602px}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-LgbsSe-V67aGc{font-size:13px;text-transform:uppercase;text-shadow:none;color:white;display:inline-block;padding-left:3px}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-Wrql6b-gvZm2b-xl07Ob-LgbsSe{padding:4px 10px;margin-right:5px}.ndfHFb-c4YZDc-Wrql6b-gvZm2b-xl07Ob-LgbsSe .ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo{margin-left:5px}.ndfHFb-c4YZDc .ndfHFb-aZ2wEe{display:none;height:100%;width:100%}.ndfHFb-c4YZDc .ndfHFb-vyDMJf-aZ2wEe{height:21px;margin-left:-10.5px;top:0;width:21px}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-vyDMJf-aZ2wEe{height:24px;margin-left:-12px;width:24px}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb{display:inline-block}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb{z-index:1;display:none}.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c{background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;margin-top:3px;height:21px;width:21px}.ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c{background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;height:21px}.ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c{background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;margin-top:3px;height:21px;width:21px}.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c,.ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c,.ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c{background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;margin-top:2px;height:24px;width:24px}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url( '//ssl.gstatic.com/docs/common/viewer/v-sprite19.svg' )!important}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_dark.gif')!important}.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c{background-position:0 -240px}.ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c{background-position:0 -600px}.ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c{background-position:0 -400px}.ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c{background-position:0 -1920px}.ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c{margin-top:4px;width:19px}.ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c{background-position:0 -2360px}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited){margin-top:2px;height:24px;width:24px;background-image:none!important;filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c .ndfHFb-aZ2wEe{display:block}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-mJSDk-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-w37qKe-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url( '//ssl.gstatic.com/docs/common/viewer/v3/v-sprite26.svg' )!important}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-mJSDk-wcotoc-ndfHFb-Bz112c{background-position:0 -2842px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c{background-position:0 -1538px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c{background-position:0 -480px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c{background-position:0 -2322px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-w37qKe-Bz112c{background-position:0 -2018px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c{background-position:0 -2122px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c{background-position:0 -1218px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-mJSDk-wcotoc-ndfHFb-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-ndfHFb-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-htvI8d-wcotoc-wHEfpf-ndfHFb-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-mvmHBc-wcotoc-ndfHFb-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-x5cW0b-wcotoc-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-w37qKe-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-ndfHFb-w37qKe-Bz112c{filter:alpha(opacity=100);opacity:1;margin-top:0;height:24px;width:24px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c{filter:alpha(opacity=100);opacity:1;margin:2.5px;width:19px;height:19px}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-Wrql6b-KJlZme-wcotoc-ndfHFb-Bz112c:not([onclick]):not(:link):not(:visited){margin:0;height:24px;width:24px}.ndfHFb-c4YZDc-Sx9Kwc.ndfHFb-c4YZDc-DWWcKd-ZpdDCc-Sx9Kwc{padding:0}.ndfHFb-c4YZDc-DWWcKd-ZpdDCc-Sx9Kwc-r4nke{border-bottom:1px solid #acacac;font-family:arial,sans-serif;padding:15px 12px}.ndfHFb-c4YZDc-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde{background-color:#f3f3f3;height:100%;position:relative;width:100%}.ndfHFb-c4YZDc-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde .ndfHFb-c4YZDc-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde-k4Qmrd{text-align:center;width:100%;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-DWWcKd-ZpdDCc-ge6pde-RJLb9c{background-image:url('//ssl.gstatic.com/ui/v1/activityindicator/loading_bg_f5.gif');background-repeat:no-repeat;display:inline-block;height:19px;position:relative;top:3px;width:19px}.ndfHFb-c4YZDc-y0R6E-DWWcKd-b3rLgd{display:inline-block;vertical-align:middle}.ndfHFb-c4YZDc-y0R6E-DWWcKd-Bz112c{display:inline-block;height:12px;width:12px}.ndfHFb-c4YZDc-y0R6E-DWWcKd-Ne3sFf{display:inline-block;padding-left:16px;vertical-align:top}.ndfHFb-c4YZDc-MqcBrc-b0t70b{background:white;color:black;height:100%;position:absolute;right:0;width:320px}.ndfHFb-c4YZDc-MqcBrc-L6cTce{display:none}.ndfHFb-c4YZDc-rovI0b{color:#fff;font-size:13px;font-weight:normal;text-align:left;text-shadow:0 2px 1px rgba(0,0,0,0.1);white-space:nowrap}.ndfHFb-c4YZDc-rovI0b-r4nke{line-height:30px;margin-bottom:10px;text-align:center}.ndfHFb-c4YZDc-rovI0b-bN97Pc{overflow-x:hidden;overflow-y:auto;border-top:1px solid #696868;border-bottom:1px solid #696868;min-height:55px}.ndfHFb-c4YZDc-rovI0b-bN97Pc.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb{min-height:0!important}.ndfHFb-c4YZDc-rovI0b-LS81yb{padding-bottom:10px}.ndfHFb-c4YZDc-rovI0b-LS81yb-Ud7fr{border-bottom:none;color:#cdcdcd;font-size:13px;font-weight:normal;line-height:25px;padding:0}.ndfHFb-c4YZDc-rovI0b-IyROMc-rymPhb{margin-left:100px}.ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b{cursor:pointer;display:block;padding:6px 15px 6px 0;border:none}.ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b.ndfHFb-c4YZDc-w5vlXd{border:none}.ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b:hover{background-color:#444;border-color:#444;border-style:dotted;border-width:1px 0;padding:5px 15px 5px 0}.ndfHFb-c4YZDc-rovI0b-ljLd3-IyROMc .ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b{font-weight:bold}.ndfHFb-c4YZDc-rovI0b-UEIKff-IyROMc .ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b,.ndfHFb-c4YZDc-rovI0b-MVH0Ye-IyROMc .ndfHFb-c4YZDc-rovI0b-DWWcKd-ibnC6b{font-weight:normal}.ndfHFb-c4YZDc-rovI0b-DWWcKd-Bz112c{display:inline-block;height:16px;margin-left:5px;vertical-align:middle;width:16px}.ndfHFb-c4YZDc-rovI0b-DWWcKd-V1ur5d{display:inline-block;line-height:16px;margin-left:20px}.ndfHFb-c4YZDc-JqEhuc-s2gQvd{bottom:0;overflow:auto;position:absolute}.ndfHFb-c4YZDc-JqEhuc{background-color:#fff;border:20px solid transparent;-webkit-border-radius:20px;border-radius:20px;color:#000;font-size:14px;position:absolute;word-wrap:break-word;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-JqEhuc{border:none;-webkit-border-radius:0;border-radius:0;border-top:10px solid transparent;-webkit-box-shadow:none;box-shadow:none}.ndfHFb-c4YZDc-JqEhuc-bN97Pc,.ndfHFb-c4YZDc-JqEhuc-tJHJj{margin-left:20px;margin-right:20px;right:0;left:0}.ndfHFb-c4YZDc-JqEhuc-n5VRYe{background-color:none;background-image:-webkit-linear-gradient(rgba(0,0,0,.2),transparent);background-image:linear-gradient(rgba(0,0,0,.2),transparent);height:8px;left:20px;position:absolute;right:20px;z-index:1;-webkit-mask-box-image:-webkit-linear-gradient(left,rgba(0,0,0,.1),rgba(0,0,0,.8),rgba(0,0,0,.8),rgba(0,0,0,.1))}.ndfHFb-c4YZDc-JqEhuc-r4nke{display:inline-block;font-size:30px;margin-right:10px;margin-left:10px;max-width:85%;filter:alpha(opacity=60);opacity:.6;overflow:hidden;padding-bottom:10px;text-overflow:ellipsis;vertical-align:middle}.ndfHFb-c4YZDc-JqEhuc-r4nke-tJHJj{border-bottom:1px solid #cececf}.ndfHFb-c4YZDc-JqEhuc-r4nke-oKdM2c{filter:alpha(opacity=60);opacity:.6;font-size:10px;display:block;overflow:hidden;white-space:nowrap}.ndfHFb-c4YZDc-JqEhuc-NnAfwf{display:inline-block;font-size:16px;filter:alpha(opacity=60);opacity:.6;vertical-align:middle}.ndfHFb-c4YZDc-JqEhuc-oKdM2c,.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c{border-bottom:1px solid #cececf;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c.ndfHFb-c4YZDc-LgbsSe,.ndfHFb-c4YZDc-JqEhuc-PlOyMe-Bz112c.ndfHFb-c4YZDc-LgbsSe,.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-JqEhuc-oKdM2c,.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c{cursor:pointer}.ndfHFb-c4YZDc-JqEhuc-bN97Pc .ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-JqEhuc-oKdM2c,.ndfHFb-c4YZDc-JqEhuc-bN97Pc .ndfHFb-c4YZDc-bMcfAe-ZmdkE.ndfHFb-c4YZDc-JqEhuc-oKdM2c,.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-JqEhuc-oKdM2c,.ndfHFb-c4YZDc-JqEhuc-bN97Pc .ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c,.ndfHFb-c4YZDc-JqEhuc-bN97Pc .ndfHFb-c4YZDc-bMcfAe-ZmdkE.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c,.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c,.ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c.ndfHFb-c4YZDc-LgbsSe:hover,.ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c.ndfHFb-c4YZDc-LgbsSe:active,.ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe{background-color:#ddd}.ndfHFb-c4YZDc-JqEhuc-oKdM2c-Bz112c{-webkit-background-size:contain;background-size:contain;display:inline-block;height:16px;width:16px;margin-left:10px;margin-right:10px;position:relative;top:3px}.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c-Bz112c{-webkit-background-size:contain;background-size:contain;display:inline-block;height:16px;width:16px;margin-left:3%;margin-right:3%;position:relative;top:10px}.ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c{background-position:0 -1840px;height:21px;width:21px;left:-5px;top:8px;position:absolute}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-JqEhuc-a4fUwd-Bz112c{background-position:0 -1040px}.ndfHFb-c4YZDc-JqEhuc-oKdM2c-V1ur5d{display:inline;line-height:38px}.ndfHFb-c4YZDc-JqEhuc-oKdM2c-dJDgTb{float:left}.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c-V1ur5d,.ndfHFb-c4YZDc-JqEhuc-oKdM2c-TzVJe-ihIZgd,.ndfHFb-c4YZDc-JqEhuc-oKdM2c-SxQuSe{display:inline-block;line-height:38px;overflow:hidden;text-overflow:ellipsis}.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c-V1ur5d{width:50%}.ndfHFb-c4YZDc-JqEhuc-oKdM2c-TzVJe-ihIZgd{width:22%;filter:alpha(opacity=60);opacity:.6}.ndfHFb-c4YZDc-JqEhuc-oKdM2c-SxQuSe{width:13%;filter:alpha(opacity=60);opacity:.6}.ndfHFb-c4YZDc-JqEhuc-jIkMge-oKdM2c:after{content:"";display:table;clear:both}.ndfHFb-c4YZDc-kODWGd{position:absolute}.ndfHFb-c4YZDc-kODWGd-nK2kYb{-webkit-user-select:none;-webkit-border-radius:5px;border-radius:5px;background-color:rgba(20,20,20,0.8);position:absolute;height:100%;width:100%;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-kODWGd-NziyQe-LgbsSe{position:absolute;top:2px;left:10px;right:auto}.ndfHFb-c4YZDc-kODWGd-HvfI2b-Bz112c{height:28px;width:26px}.ndfHFb-c4YZDc-kODWGd-NziyQe-Bz112c{height:28px;width:26px;background-position:0 -1120px}.ndfHFb-c4YZDc-kODWGd-HvfI2b-Bz112c{background-position:0 -120px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-NziyQe-Bz112c{background-position:0 -3002px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-HvfI2b-Bz112c{background-position:0 -1978px}.ndfHFb-c4YZDc-kODWGd-bVEB4e{border:1px solid #b3b3b3;background-color:#0a0a0a;display:table-cell;pointer-events:auto;text-align:center;vertical-align:middle}.ndfHFb-c4YZDc-kODWGd-LgbsSe{-webkit-border-radius:0;border-radius:0;-webkit-transition:all .218s;transition:all .218s;background-color:#f3f3f3;border:1px solid rgba(0,0,0,0.1);color:#444;font-weight:bold;font-size:11px;height:27px;line-height:27px;margin:6px;min-width:54px;padding:0 8px;text-align:center}.ndfHFb-c4YZDc-kODWGd-LgbsSe:hover{background-color:#d8d8d8;border:1px solid #c6c6c6;color:#222;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1)}.ndfHFb-c4YZDc-kODWGd-nK2kYb .ndfHFb-c4YZDc-SxecR{padding-left:0!important;padding-right:2px!important}.ndfHFb-c4YZDc-kODWGd-nK2kYb .ndfHFb-c4YZDc-SxecR-skjTt-MFS4be{border-bottom-left-radius:8px!important;border-top-left-radius:8px!important;border-bottom-right-radius:0!important;border-top-right-radius:0!important;padding-left:0!important;padding-right:3px!important}.ndfHFb-c4YZDc-wvGCSb-gkA7Yd{right:-50px;position:absolute;width:49px;top:0;z-index:3}.ndfHFb-c4YZDc-RDNXzf-L6cTce .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{display:none}.ndfHFb-c4YZDc-VCkuzd{min-height:190px;width:500px;bottom:10px;position:absolute;right:10px;z-index:10;-webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);box-shadow:0 0 20px rgba(0,0,0,0.8);background-color:#fff;padding:10px}.ndfHFb-c4YZDc-VCkuzd::after{content:"";height:0;width:0;bottom:-18px;right:5%;position:absolute;border-top:18px solid #fff;border-left:15px solid transparent;border-right:15px solid transparent}.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd{-webkit-border-radius:2px;border-radius:2px;border:0 solid;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);display:none;height:0;visibility:hidden;font-size:11px;overflow:hidden;padding:0;text-align:center;-webkit-transition:all 0 linear 1s,opacity 1s;transition:all 0 linear 1s,opacity 1s;background-color:#f9edbe;border-color:#f0c36d;color:#333}.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-TSZdd{-webkit-transition:opacity .218s;transition:opacity .218s;border-width:1px;display:inline-block;height:auto;max-width:90%;padding:6px 16px;text-overflow:ellipsis;visibility:visible}.ndfHFb-c4YZDc-X3SwIb.ndfHFb-c4YZDc-b3rLgd-haAclf{height:0;position:absolute;text-align:center;top:50px;width:100%;z-index:4}.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd{padding-left:6px}.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd,.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-hSRGPd,.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:visited,.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-hSRGPd:visited{color:#00f;cursor:pointer;text-decoration:none}.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:hover,.ndfHFb-c4YZDc-X3SwIb .ndfHFb-c4YZDc-b3rLgd-hSRGPd:hover{text-decoration:underline}.ndfHFb-c4YZDc-LgbsSe{cursor:default}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-LgbsSe{cursor:pointer}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-LgbsSe-OWB6Me{cursor:default}.ndfHFb-c4YZDc-jNm5if-Hn6s1b{background:rgba(66,133,244,0.9);border-color:transparent;-webkit-border-radius:50%;border-radius:50%;border-style:solid;border-width:30px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;height:320px;-webkit-justify-content:center;justify-content:center;position:absolute;right:-25px;top:-72px;white-space:normal;width:320px;z-index:10}.ndfHFb-c4YZDc-jNm5if-Hn6s1b-bBybbf{height:100%;width:100%;position:relative;z-index:10}.ndfHFb-c4YZDc-jNm5if-Hn6s1b .ndfHFb-c4YZDc-jNm5if-Hn6s1b-tJHJj{font-size:20px;font-weight:normal;line-height:24px}.ndfHFb-c4YZDc-jNm5if-Hn6s1b .ndfHFb-c4YZDc-jNm5if-Hn6s1b-Ne3sFf{font-size:14px;line-height:24px}.ndfHFb-c4YZDc-jNm5if-Hn6s1b-LgbsSe{position:absolute}.ndfHFb-c4YZDc-jNm5if-Hn6s1b-LgbsSe-Bz112c{background-position:0 -1378px;height:24px;left:32px;opacity:.6;position:relative;top:34px;width:24px}.ndfHFb-c4YZDc-jNm5if-Hn6s1b-LgbsSe-LkdAo{background:white;-webkit-border-radius:50%;border-radius:50%;height:88px;left:-32px;position:absolute;top:-34px;width:88px}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b{-webkit-animation:expandCallout .6s;animation:expandCallout .6s;-webkit-border-radius:50%;border-radius:50%;color:white;-webkit-justify-content:center;justify-content:center;line-height:24px;position:absolute;-webkit-transition:all ease-out;transition:all ease-out;white-space:normal}@keyframes expandCallout{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}to{-webkit-transform:scale(1,1);transform:scale(1,1)}}@-webkit-keyframes expandCallout{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}to{-webkit-transform:scale(1,1);transform:scale(1,1)}}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b-bBybbf{height:100%;position:relative;width:100%;z-index:2}.UMrnmb-v3pZbf .ndfHFb-c4YZDc-FNFY6c-Hn6s1b{-webkit-box-shadow:0 100px 0 250px rgba(17,109,231,0.96);box-shadow:0 100px 0 250px rgba(17,109,231,0.96)}.UMrnmb-nllRtd .ndfHFb-c4YZDc-FNFY6c-Hn6s1b{-webkit-box-shadow:0 100px 0 250px rgba(21,138,54,0.96);box-shadow:0 100px 0 250px rgba(21,138,54,0.96)}.UMrnmb-gS7Ybc .ndfHFb-c4YZDc-FNFY6c-Hn6s1b{-webkit-box-shadow:0 100px 0 250px rgba(249,168,0,0.96);box-shadow:0 100px 0 250px rgba(249,168,0,0.96);color:black}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-bN97Pc{background-color:rgba(0,0,0,0.005);border:1px solid transparent;padding:0 30px 30px 30px;width:400px}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-tJHJj{font-size:20px;font-weight:normal;margin-bottom:10px}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-Ne3sFf{font-size:14px}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-KY1xSc-z5C9Gb{color:white;display:inline-block;font-size:14px;font-weight:bold;margin-left:10px;text-decoration:none}.UMrnmb-gS7Ybc .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-KY1xSc-z5C9Gb{color:black}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-c6xFrd{font-size:14px;font-weight:bold}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-iDjqhe-Hnhb3b-WtFGnf{border:1px solid transparent;display:inline-block}.ndfHFb-c4YZDc-FNFY6c-Hn6s1b .ndfHFb-c4YZDc-FNFY6c-Hn6s1b-F2rEXb{border:1px solid transparent;display:inline-block;margin-left:40px;opacity:.75}.UMrnmb-v3pZbf .ndfHFb-c4YZDc-G0brRe-Hn6s1b{background-color:rgba(17,109,231,0.96)}.UMrnmb-nllRtd .ndfHFb-c4YZDc-G0brRe-Hn6s1b{background-color:rgba(21,138,54,0.96)}.UMrnmb-gS7Ybc .ndfHFb-c4YZDc-G0brRe-Hn6s1b{background-color:rgba(249,168,0,0.96);color:black}.ndfHFb-c4YZDc-G0brRe-Hn6s1b{-webkit-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;height:40px;margin:0 auto;position:absolute;right:0;top:56px}.ndfHFb-c4YZDc-G0brRe-Hn6s1b-Ne3sFf{float:left;font-size:14px;line-height:40px;margin-bottom:0;margin-top:0;padding:0 32px 0 24px}.ndfHFb-c4YZDc-G0brRe-Hn6s1b-scrj1b-G0brRe{color:white;font-size:14px;font-weight:bold;line-height:40px;margin-bottom:0;margin-top:0}.UMrnmb-gS7Ybc .ndfHFb-c4YZDc-G0brRe-Hn6s1b-scrj1b-G0brRe{color:black}.UMrnmb-gS7Ybc .ndfHFb-c4YZDc-G0brRe-Hn6s1b-TvD9Pc{background-position:0 -1578px}.ndfHFb-c4YZDc-G0brRe-Hn6s1b-TvD9Pc{background-position:0 -2362px;float:right;height:20px;margin-left:32px;margin-right:24px;margin-top:8px;opacity:.5;width:20px}.ndfHFb-c4YZDc-K9a4Re{position:absolute;-webkit-transition:bottom .218s ease-out;transition:bottom .218s ease-out;left:0;right:0;top:0;bottom:0;z-index:0}.ndfHFb-c4YZDc-K9a4Re-nKQ6qf{position:absolute;top:0;bottom:0;width:100%;-webkit-user-select:none}.ndfHFb-c4YZDc-K9a4Re-ge6pde-Ne3sFf{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-oKVyEf{-webkit-user-select:text}.ndfHFb-c4YZDc-MZArnb-b0t70b{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-shadow:inset 0 0 10px #000;box-shadow:inset 0 0 10px #000;background-color:#242223;bottom:0;position:fixed;right:0;top:47px;width:400px;z-index:1}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-b0t70b{-webkit-box-shadow:none;box-shadow:none;background-color:#323232;width:344px;top:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-MZArnb-b0t70b{z-index:4}.ndfHFb-c4YZDc-MZArnb-b0t70b-L6cTce{display:none}.ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c{display:block;margin-left:auto;margin-right:auto}.ndfHFb-c4YZDc-MZArnb-tJHJj{-webkit-box-sizing:border-box;box-sizing:border-box;font-family:Roboto, arial,sans-serif ;font-size:14px;text-transform:uppercase}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-tJHJj{-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.3);box-shadow:0 2px 2px rgba(0,0,0,0.3);font-family:'Google Sans',Roboto, arial,sans-serif ;font-size:16px;text-transform:none}.ndfHFb-c4YZDc-MZArnb-bN97Pc{bottom:0;left:0;margin:5px 0;overflow-y:auto;position:absolute;right:0;top:50px}.ndfHFb-c4YZDc-MZArnb-tJHJj .ndfHFb-c4YZDc-MZArnb-AznF2e{-webkit-box-sizing:border-box;box-sizing:border-box;color:#c0bebe;cursor:pointer;display:inline-block;height:50px;line-height:50px;margin:0 16px 0;padding:4px 2px 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-tJHJj .ndfHFb-c4YZDc-MZArnb-AznF2e{height:56px;line-height:56px}.ndfHFb-c4YZDc-MZArnb-cXCLoc{border-bottom:1px solid #ccc;margin:0 15px 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-cXCLoc{border-bottom:none;display:inline-block;margin:0}.ndfHFb-c4YZDc-MZArnb-AznF2e-gk6SMd.ndfHFb-c4YZDc-MZArnb-AznF2e-uDEFge{border-bottom:3px solid #4d90fe}.ndfHFb-c4YZDc-MZArnb-AznF2e:hover.ndfHFb-c4YZDc-MZArnb-AznF2e-uDEFge{border-bottom:3px solid #646464}.ndfHFb-c4YZDc-MZArnb-tJHJj .ndfHFb-c4YZDc-MZArnb-AznF2e:hover{margin:0 18px 0;padding:4px 0 0}.ndfHFb-c4YZDc-MZArnb-tJHJj .ndfHFb-c4YZDc-MZArnb-AznF2e.ndfHFb-c4YZDc-MZArnb-AznF2e-gk6SMd{color:#fff;cursor:default}.ndfHFb-c4YZDc-MZArnb-BKwaUc-tJHJj{color:#eee;font-family:Roboto-light, arial,sans-serif ;height:40px;line-height:40px}.ndfHFb-c4YZDc-MZArnb-BKwaUc-tJHJj-fmcmS{background-color:#242223;float:left;font-family:Roboto-light, arial,sans-serif ;font-size:12px;font-weight:500;padding-right:5px;text-transform:uppercase}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BKwaUc-tJHJj-fmcmS{background-color:#323232;font-family:'Google Sans',Roboto, arial,sans-serif ;font-size:14px;text-transform:none}.ndfHFb-c4YZDc-MZArnb-BKwaUc-hgDUwe-haAclf{margin-bottom:10px;padding-top:19px;width:100%}.ndfHFb-c4YZDc-MZArnb-BKwaUc-hgDUwe{border-top:1px solid #686868}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BKwaUc-hgDUwe{border-top:1px solid rgba(255,255,255,0.15)}.ndfHFb-c4YZDc-MZArnb-BKwaUc-bN97Pc{color:#b6b6b6;font-size:12px;padding-bottom:20px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BKwaUc-bN97Pc{color:rgba(255,255,255,0.57)}.ndfHFb-c4YZDc-MZArnb-BKwaUc-ibnC6b{display:inline-block;text-align:left;width:-webkit-calc(100% - 150px);width:calc(100% - 150px)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BKwaUc-ibnC6b{color:rgba(255,255,255,0.9);width:-webkit-calc(100% - 128px);width:calc(100% - 128px)}.ndfHFb-c4YZDc-MZArnb-BKwaUc-V67aGc{display:inline-block}.ndfHFb-c4YZDc-MZArnb-BKwaUc-V67aGc.ndfHFb-c4YZDc-MZArnb-Tswv1b-V67aGc{vertical-align:top;width:150px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BKwaUc-V67aGc.ndfHFb-c4YZDc-MZArnb-Tswv1b-V67aGc{width:128px}.ndfHFb-c4YZDc-MZArnb-BKwaUc-V67aGc.ndfHFb-c4YZDc-MZArnb-BA389-V67aGc{width:-webkit-calc(100% - 100px);width:calc(100% - 100px)}.ndfHFb-c4YZDc-MZArnb-P86uke-PntVL{display:inline-block;vertical-align:top;width:100%}.ndfHFb-c4YZDc-MZArnb-P86uke-Bz112c{float:left;margin-right:12px;margin-top:5px;width:16px;height:13px}.ndfHFb-c4YZDc-MZArnb-P86uke-hSRGPd{cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ndfHFb-c4YZDc-MZArnb-P86uke-hSRGPd:focus,.ndfHFb-c4YZDc-MZArnb-P86uke-hSRGPd:hover{text-decoration:underline}.ndfHFb-c4YZDc-MZArnb-BA389-V1ur5d{line-height:24px;margin-left:36px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ndfHFb-c4YZDc-MZArnb-BA389-nNAX0{display:inline-block;float:right;overflow-x:hidden}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-BA389-nNAX0{color:rgba(255,255,255,0.9)}.ndfHFb-c4YZDc-MZArnb-Tswv1b-oKdM2c{line-height:24px;padding-bottom:10px}.ndfHFb-c4YZDc-MZArnb-Tswv1b-BKwaUc{-webkit-box-sizing:content-box;box-sizing:content-box;border:none;width:100%}.ndfHFb-c4YZDc-MZArnb-ij8cu{font-weight:normal;padding-bottom:20px;word-wrap:break-word}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-ij8cu{margin-right:44px}.ndfHFb-c4YZDc-MZArnb-DyVDA-LgbsSe{background-color:#242223;cursor:pointer;float:right;margin-top:8px;padding-left:3px}.ndfHFb-c4YZDc-MZArnb-DyVDA-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:#242223;background-image:-webkit-linear-gradient(top,#333,#222);background-image:linear-gradient(top,#333,#222)}.ndfHFb-c4YZDc-MZArnb-DyVDA-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -760px;height:24px;width:24px}.ndfHFb-c4YZDc-MZArnb-ij8cu-DyVDA{-webkit-box-sizing:border-box;box-sizing:border-box;min-height:75px;max-width:350px;overflow-y:auto;width:100%}.ndfHFb-c4YZDc-MZArnb-Tswv1b-nUpftc,.ndfHFb-c4YZDc-MZArnb-RDNXzf-nUpftc{-webkit-user-select:text;padding:15px}.ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-bN97Pc-u0pjoe-fmcmS{font-size:12px;line-height:20px}.ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-EglORb-u0pjoe-RJLb9c{margin:1px 0}.ndfHFb-c4YZDc-MZArnb-BA389-YLEF4c{float:left;height:24px}.ndfHFb-c4YZDc-MZArnb-BA389-YLEF4c .ndfHFb-c4YZDc-MZArnb-jNm5if-YLEF4c{height:24px;position:relative;width:24px}.ndfHFb-c4YZDc-MZArnb-zTETae-YLEF4c-JUCs7e{background-color:#464445;-webkit-border-radius:50%;border-radius:50%;display:inline-block;height:24px;width:24px}.ndfHFb-c4YZDc-MZArnb-ynfwJ-bF1uUb{color:#fff;line-height:24px;text-align:center;text-transform:uppercase;vertical-align:middle}.ndfHFb-c4YZDc-MZArnb-JNdkSc-YLEF4c{background-position:0 -2160px}.ndfHFb-c4YZDc-MZArnb-QIk5de-YLEF4c{background-position:0 -2400px}.ndfHFb-c4YZDc-MZArnb-QIk5de-YLEF4c-SfQLQb-hSRGPd{background-position:0 -280px}.ndfHFb-c4YZDc-MZArnb-nE4Pff-YLEF4c{background-position:0 -720px}.ndfHFb-c4YZDc-MZArnb-nE4Pff-YLEF4c-SfQLQb-hSRGPd{background-position:0 -480px}.ndfHFb-c4YZDc-MZArnb-YLEF4c-Bz112c{height:20px;margin:2px;width:20px}.ndfHFb-c4YZDc-MZArnb-nupQLb-BA389-Ne3sFf{display:inline-block}.ndfHFb-c4YZDc-MZArnb-MPu53c{-webkit-box-sizing:border-box;box-sizing:border-box;border:2px solid #c1bfbf;-webkit-border-radius:2px;border-radius:2px;cursor:pointer;float:right;height:20px;width:20px}.ndfHFb-c4YZDc-MZArnb-MPu53c-bN97Pc{height:16px}.ndfHFb-c4YZDc-MZArnb-MPu53c-fmcmS{font-size:20px;font-weight:bold;line-height:16px;position:absolute}.ndfHFb-c4YZDc-MZArnb-MPu53c-Bz112c{background-position:0 -1680px;display:inline-block;height:14px;width:14px;margin-top:2px;margin-left:1px}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-MZArnb-b0t70b{width:100%;right:0;-webkit-transition:right .218s cubic-bezier(0.0,0.0,0.2,1);transition:right .218s cubic-bezier(0.0,0.0,0.2,1)}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-MZArnb-b0t70b-L6cTce{display:block;right:-100%;-webkit-transition:right .218 cubic-bezier(0.4,0.0,1,1);transition:right .218 cubic-bezier(0.4,0.0,1,1)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-DyVDA-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -80px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-J2xVie-Bz112c{background-position:0 -720px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-JNdkSc-YLEF4c{background-position:0 -1000px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-QIk5de-YLEF4c{background-position:0 -240px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-QIk5de-YLEF4c-SfQLQb-hSRGPd{background-position:0 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-nE4Pff-YLEF4c{background-position:0 -600px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-nE4Pff-YLEF4c-SfQLQb-hSRGPd{background-position:0 -1298px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe:not(.ndfHFb-c4YZDc-LgbsSe-ZmdkE){background-color:#323232;padding:8px;margin-top:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-TvD9Pc-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{float:right;margin:8px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-TvD9Pc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -2362px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-b0t70b .ndfHFb-c4YZDc-MZArnb-DyVDA-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{margin-top:-8px}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb{border-top:1px solid #686868;font-size:12px;font-weight:normal;outline:none;padding:18px 0 7px 0;position:relative;zoom:1}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb:first-child{border-top-color:transparent}.ndfHFb-c4YZDc-MZArnb-jNm5if-haAclf{margin-left:55px}.ndfHFb-c4YZDc-MZArnb-jNm5if{min-height:48px;position:relative}.ndfHFb-c4YZDc-MZArnb-jNm5if-tJHJj{color:#757272;font-style:italic}.ndfHFb-c4YZDc-MZArnb-jNm5if-EieU8{background-color:#211f20;margin:4px 0 3px}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb{margin-bottom:10px}.ndfHFb-c4YZDc-MZArnb-jNm5if-gqY2Od{color:#b6b6b6;display:inline-block;font-weight:bold;max-width:180px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ndfHFb-c4YZDc-MZArnb-jNm5if-IIEkAe .ndfHFb-c4YZDc-MZArnb-jNm5if-gqY2Od{max-width:120px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-bN97Pc .ndfHFb-c4YZDc-MZArnb-jNm5if-gqY2Od{font-style:normal;margin-right:4px}.ndfHFb-c4YZDc-MZArnb-jNm5if-YLEF4c{-webkit-border-radius:50%;border-radius:50%;height:48px;left:0;position:absolute;width:48px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb .ndfHFb-c4YZDc-MZArnb-jNm5if-YLEF4c{-webkit-border-radius:0%;border-radius:0%;height:24px;left:6px;width:24px}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb .ndfHFb-c4YZDc-MZArnb-zTETae-YLEF4c-JUCs7e{height:48px;width:48px;left:0;position:absolute}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb .ndfHFb-c4YZDc-MZArnb-ynfwJ-bF1uUb{font-size:24px;line-height:48px}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb .ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb .ndfHFb-c4YZDc-MZArnb-zTETae-YLEF4c-JUCs7e{-webkit-border-radius:0%;border-radius:0%;height:24px;width:24px}.ndfHFb-c4YZDc-MZArnb-jNm5if-pXBrqb .ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb .ndfHFb-c4YZDc-MZArnb-ynfwJ-bF1uUb{font-size:12px;line-height:24px}.ndfHFb-c4YZDc-MZArnb-jNm5if-biJjHb-haAclf{color:#c1bfbf;font-size:10px;padding-top:2px;position:absolute;right:0;top:0}.ndfHFb-c4YZDc-MZArnb-jNm5if-biJjHb{display:inline-block;padding:0 3px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-bN97Pc .ndfHFb-c4YZDc-MZArnb-jNm5if-biJjHb{color:#c1bfbf;font-size:10px;padding:3px 0;position:relative}.ndfHFb-c4YZDc-MZArnb-jNm5if-bN97Pc{color:#fff;margin-top:5px;word-wrap:break-word;top:-7px;zoom:1}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb{border-top:1px solid #242223;color:#888;min-height:24px;padding:6px 3px 0 6px;position:relative}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb:first-child{border-top-color:transparent}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-bN97Pc{padding-left:30px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-fmcmS{line-height:140%;position:relative;top:-3px;width:100%}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-qJTHM{color:#fff;display:inline;margin:0;position:relative;top:-4px;width:100%;word-wrap:break-word}.ndfHFb-c4YZDc-MZArnb-IIEkAe-jNm5if-Ne3sFf{display:inline;padding-right:18px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-JIbuQc{color:#fff;display:inline;font-style:italic;position:relative;top:-4px}.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-JIbuQc+.ndfHFb-c4YZDc-MZArnb-jNm5if-xtcdFb-qJTHM{display:block}.ndfHFb-c4YZDc-MZArnb-IIEkAe-jNm5if-Bz112c{background-position:0 -1680px;display:inline-block;height:12px;margin-left:3px;position:absolute;right:0;width:15px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-IIEkAe-jNm5if-Bz112c{background-position:0 -160px}.ndfHFb-c4YZDc-C7uZwb-LgbsSe .ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;margin-top:3px;height:21px;width:21px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{filter:alpha(opacity=87);opacity:.87;margin-right:auto;margin-top:3px;height:21px;width:21px}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-C7uZwb-LgbsSe-SfQLQb-Bz112c.ndfHFb-c4YZDc-LgbsSe-OWB6Me .ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{filter:alpha(opacity=47);opacity:.47}.ndfHFb-c4YZDc-C7uZwb-LgbsSe-SfQLQb-Bz112c.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-nupQLb-Bz112c{background-position:0 -1040px}.ndfHFb-c4YZDc-FNFY6c-bEDTcc-oxvKad-Bz112c{background-position:0 -1880px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-FNFY6c-bEDTcc-oxvKad-Bz112c{background-position:0 -1560px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-nupQLb-Bz112c{background-position:0 -2480px}.ndfHFb-c4YZDc-VkLyEc-Bz112c{background-position:0 -2320px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-VkLyEc-Bz112c{background-position:0 -1480px}.ndfHFb-c4YZDc-euCgFf-Bz112c{background-position:0 -1440px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-euCgFf-Bz112c{background-position:0 -1200px}.ndfHFb-c4YZDc-hN7jy-Bz112c{background-position:0 -2200px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-hN7jy-Bz112c{background-position:0 -2280px}.ndfHFb-c4YZDc-PEFSMe-Bz112c{background-position:0 -2240px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-PEFSMe-Bz112c{background-position:0 -360px}.ndfHFb-c4YZDc-uQPRwe-uWtm3-Bz112c{background-position:0 -1800px}.ndfHFb-c4YZDc-w37qKe-Bz112c{background-position:0 -440px}.ndfHFb-c4YZDc-ndfHFb-w37qKe-Bz112c{background-position:0 -40px}.ndfHFb-c4YZDc-Vkfede-fI6EEc-Bz112c{background-position:0 -1720px}.ndfHFb-c4YZDc-J2Tr8e-fI6EEc-Bz112c{background-position:0 -2000px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{background-image:url( '//ssl.gstatic.com/docs/common/viewer/v-sprite19.svg' );-webkit-background-size:auto;background-size:auto;margin-left:2px;left:8px;top:3px}.ndfHFb-c4YZDc-j7LFlb-sn54Q .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{top:2px}.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c.ndfHFb-c4YZDc-ndfHFb-w37qKe-Bz112c,.ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c.ndfHFb-c4YZDc-w37qKe-Bz112c{height:24px;margin-left:0;margin-top:-1px;width:24px}.ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe{border:1px solid #4d90fe;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:inset 0 1px 0 rgba(101,101,101,.1);box-shadow:inset 0 1px 0 rgba(101,101,101,.1);background-color:#4d90fe;color:#fff;display:inline-block;font-size:11px;font-weight:bold;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.8);height:28px;line-height:28px;margin-top:20px;min-width:54px;padding:0 20px 0 7px;vertical-align:middle;white-space:nowrap}.ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe-Bz112c{background-image:url( '//ssl.gstatic.com/docs/common/viewer/v-sprite19.svg' );height:21px;margin-top:4px;position:absolute;width:21px}.ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe-fmcmS{margin-left:35px;margin-right:10px}.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe{background-color:#4d90fe;background-image:-webkit-linear-gradient(top, #4d90fe ,#357ae8);background-image:linear-gradient(top, #4d90fe ,#357ae8)}.ndfHFb-c4YZDc-LgbsSe-auswjd.ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe{-webkit-box-shadow:inset 0 1px 6px rgba(0,0,0,.8);box-shadow:inset 0 1px 6px rgba(0,0,0,.8)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-C7uZwb-LgbsSe .ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{margin-top:0;height:24px;width:24px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{margin-top:0;height:24px;width:24px;background-image:url( '//ssl.gstatic.com/docs/common/viewer/v3/v-sprite26.svg' )}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-bN97Pc-nupQLb-LgbsSe-Bz112c{background-image:url( '//ssl.gstatic.com/docs/common/viewer/v3/v-sprite26.svg' )}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nupQLb-Bz112c{background-position:0 -1618px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-FNFY6c-bEDTcc-oxvKad-Bz112c{background-position:0 -2682px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-FNFY6c-bEDTcc-oxvKad-Bz112c{background-position:0 -2762px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-nupQLb-Bz112c{background-position:0 -2962px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-VkLyEc-Bz112c{background-position:0 -1120px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-VkLyEc-Bz112c{background-position:0 -120px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-euCgFf-Bz112c{background-position:0 -400px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-euCgFf-Bz112c{background-position:0 -40px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-hN7jy-Bz112c{background-position:0 -2242px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-hN7jy-Bz112c{background-position:0 -640px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-dMDEpe-tgaKEf-Bz112c{background-position:0 -760px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-dMDEpe-tgaKEf-Bz112c{background-position:0 -1738px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-PEFSMe-Bz112c{background-position:0 -2562px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-PEFSMe-Bz112c{background-position:0 -1658px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-uQPRwe-uWtm3-Bz112c{background-position:0 -1418px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-w37qKe-Bz112c{background-position:0 -1858px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-ndfHFb-w37qKe-Bz112c{background-position:0 -2522px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Vkfede-fI6EEc-Bz112c{background-position:0 -960px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-J2Tr8e-fI6EEc-Bz112c{background-position:0 -1778px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-Bz112c{background-position:0 -320px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-GSQQnc-LgbsSe{background-position:0 -200px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-htvI8d-jNm5if-Bz112c{background-position:0 -920px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-htvI8d-jNm5if-Bz112c{background-position:0 -1378px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-ge6pde-Bz112c .ndfHFb-aZ2wEe{display:block}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-pGuBYc-Bz112c{background-position:0 -2722px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-MqcBrc-Bz112c{background-position:0 -2802px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c.ndfHFb-c4YZDc-lCdvJf-Bz112c{background-position:0 -2162px}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar{height:12px;overflow:visible;width:12px}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-button{height:0;width:0}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-corner{background:transparent}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-track{background-color:transparent;-webkit-box-shadow:none!important;box-shadow:none!important;border:none}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-sn54Q::-webkit-scrollbar-track{background-color:rgba(255,255,255,0.1)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-sn54Q::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,0.9)}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-sn54Q::-webkit-scrollbar-track{background-color:rgba(0,0,0,0.1)}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-sn54Q::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.6)}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb{background-color:#4c4c4c;background-clip:padding-box;border-style:solid;border-color:transparent;border-width:0 1px 0 0;-webkit-box-shadow:inset 1px 1px 0 #676767,inset 0 -1px 0 #676767;box-shadow:inset 1px 1px 0 #676767,inset 0 -1px 0 #676767;min-height:75px;padding:100px 0 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb{background-color:rgba(255,255,255,0.75);-webkit-border-radius:1px;border-radius:1px;border-width:0;-webkit-box-shadow:none;box-shadow:none;min-height:56px;padding:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,0.5)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-to915::-webkit-scrollbar-thumb{background-color:#4c4c4c}.ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb:hover{background-color:#9f9f9f;-webkit-box-shadow:inset 1px 1px 0 #ccc;box-shadow:inset 1px 1px 0 #ccc}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar-thumb:hover{background-color:rgba(255,255,255,0.9);-webkit-box-shadow:none;box-shadow:none}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-s2gQvd.ndfHFb-c4YZDc-s2gQvd-to915::-webkit-scrollbar-thumb:hover{background-color:#9f9f9f}.ndfHFb-c4YZDc-s2gQvd{scrollbar-face-color:#666;scrollbar-track-color:#2e2e2e;scrollbar-arrow-color:#666;scrollbar-shadow-color:#717171}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-s2gQvd::-webkit-scrollbar{display:none}.ndfHFb-c4YZDc-E90Ek{background-color:rgba(0,0,0,0.75);display:inline-block;margin-right:50px;padding:2px;width:500px}.ndfHFb-c4YZDc-E90Ek-tJHJj{font-size:18px;margin:10px;text-align:center}.ndfHFb-c4YZDc-E90Ek-LgbsSe{background-color:dimgray;cursor:pointer;float:right;padding:10px}.ndfHFb-c4YZDc-E90Ek-bN97Pc{max-height:600px;max-width:600px;overflow-x:scroll}.ndfHFb-c4YZDc-E90Ek-Tswv1b-tJHJj{margin:10px;text-align:left}.ndfHFb-c4YZDc-E90Ek-Tswv1b-lTBxed{color:white;margin:0 10px}.ndfHFb-c4YZDc-Wrql6b-HDMZaf-Bz112c{background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;margin-left:auto;margin-right:auto;margin-top:3px;height:21px;width:19px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-PlOyMe-bN97Pc{line-height:32px}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-HDMZaf-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_dark.gif')}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-OWB6Me.ndfHFb-c4YZDc-Wrql6b-PlOyMe{background-color:transparent}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Wrql6b-HDMZaf-Bz112c:not([onclick]):not(:link):not(:visited){background-image:none;height:21px;width:21px}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-HDMZaf-Bz112c:not([onclick]):not(:link):not(:visited){background-image:none;height:24px;width:24px}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-Wrql6b-HDMZaf-Bz112c .ndfHFb-aZ2wEe{display:block}.ndfHFb-c4YZDc-cnqxLd{background-color:#121212;bottom:0;color:#fff;font-size:0;height:0;position:absolute;-webkit-transition:height .218s ease-out;transition:height .218s ease-out;width:100%;z-index:2}.ndfHFb-c4YZDc-cnqxLd-SmKAyb{overflow-x:auto;overflow-y:hidden;position:absolute;top:0;width:100%;white-space:nowrap}.ndfHFb-c4YZDc-cnqxLd-OEVmcd{border:3px solid #fff;-webkit-border-radius:3px;border-radius:3px;position:absolute;height:63px;width:84px;margin-top:3px}.ndfHFb-c4YZDc-cnqxLd-LQLjdd{position:absolute;height:25px;z-index:1}.ndfHFb-c4YZDc-cnqxLd-LQLjdd-hOcTPc{left:12px}.ndfHFb-c4YZDc-cnqxLd-LQLjdd-AeOLfc{right:12px}.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-LgbsSe{background-color:rgba(0,0,0,0.2);-webkit-border-radius:3px;border-radius:3px;color:rgba(255,255,255, .87 );font-size:11px;text-align:center;text-shadow:0 1px 1px rgba(0,0,0,.8);height:25px;line-height:25px;padding:0 13px}.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:rgba(0,0,0,0.4)}.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-LgbsSe-IwzHHe,.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-cnqxLd-N7Eqid-bF1uUb{background-color:rgba(0,0,0,0.6)}.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-LgbsSe-IwzHHe.ndfHFb-c4YZDc-LgbsSe-ZmdkE,.ndfHFb-c4YZDc-cnqxLd-LQLjdd .ndfHFb-c4YZDc-cnqxLd-N7Eqid-bF1uUb.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:rgba(0,0,0,0.9)}.ndfHFb-c4YZDc-cnqxLd-LSZ0mb-Bz112c{background-position:0 -1080px;display:inline-block;height:21px;margin-right:4px;vertical-align:top;width:21px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-cnqxLd-LSZ0mb-Bz112c{background-position:0 -1080px}.ndfHFb-c4YZDc-cnqxLd-LSZ0mb.ndfHFb-c4YZDc-LgbsSe-IwzHHe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-cnqxLd-LSZ0mb-Bz112c{background-position:0 -960px;height:16px;margin-top:5px;padding-left:5px;width:16px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-cnqxLd-LSZ0mb.ndfHFb-c4YZDc-LgbsSe-IwzHHe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-cnqxLd-LSZ0mb-Bz112c{background-position:0 -2202px}.ndfHFb-c4YZDc-cnqxLd-LSZ0mb-fmcmS{display:inline-block;margin-top:1px;vertical-align:middle}.ndfHFb-c4YZDc-n5VRYe-ma6Yeb,.ndfHFb-c4YZDc-n5VRYe-AeOLfc,.ndfHFb-c4YZDc-n5VRYe-cGMI2b,.ndfHFb-c4YZDc-n5VRYe-hOcTPc{z-index:1;position:absolute}.ndfHFb-c4YZDc-n5VRYe-ma6Yeb,.ndfHFb-c4YZDc-n5VRYe-cGMI2b{height:8px;left:0;right:0}.ndfHFb-c4YZDc-n5VRYe-AeOLfc,.ndfHFb-c4YZDc-n5VRYe-hOcTPc{bottom:0;top:0;width:8px}.ndfHFb-c4YZDc-n5VRYe-ma6Yeb{background-color:none;background-image:-webkit-linear-gradient(top,rgba(0,0,0,0.35),rgba(0,0,0,0));background-image:linear-gradient(top,rgba(0,0,0,0.35),rgba(0,0,0,0));top:0}.ndfHFb-c4YZDc-n5VRYe-AeOLfc{background-color:none;background-image:-webkit-linear-gradient(right,rgba(0,0,0,0.35),rgba(0,0,0,0));background-image:linear-gradient(right,rgba(0,0,0,0.35),rgba(0,0,0,0));right:0}.ndfHFb-c4YZDc-n5VRYe-cGMI2b{background-color:none;background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,0.35),rgba(0,0,0,0));background-image:linear-gradient(bottom,rgba(0,0,0,0.35),rgba(0,0,0,0));bottom:0}.ndfHFb-c4YZDc-n5VRYe-hOcTPc{background-color:none;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0.35),rgba(0,0,0,0));background-image:linear-gradient(left,rgba(0,0,0,0.35),rgba(0,0,0,0));left:0}.ndfHFb-c4YZDc-Sx9Kwc.ndfHFb-c4YZDc-t2cHAd-DWWcKd-ZpdDCc-Sx9Kwc{padding:0}.ndfHFb-c4YZDc-t2cHAd-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde{background-color:#f3f3f3;height:100%;position:relative;width:100%}.ndfHFb-c4YZDc-t2cHAd-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde .ndfHFb-c4YZDc-t2cHAd-DWWcKd-ZpdDCc-Sx9Kwc-ge6pde-k4Qmrd{text-align:center;width:100%;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-t2cHAd-DWWcKd-ZpdDCc-ge6pde-RJLb9c{background-image:url('//ssl.gstatic.com/ui/v1/activityindicator/loading_bg_f5.gif');background-repeat:no-repeat;display:inline-block;height:19px;position:relative;top:3px;width:19px}.ndfHFb-c4YZDc-w5vlXd{border:1px solid transparent}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url( '//ssl.gstatic.com/docs/common/viewer/v-sprite19.svg' )!important;background-repeat:no-repeat}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url( '//ssl.gstatic.com/docs/common/viewer/v3/v-sprite26.svg' )!important}.ndfHFb-c4YZDc-L5Fo6c-nUpftc{position:absolute}.ndfHFb-c4YZDc-HiaYvf{position:absolute;background-color:white;background-image:-webkit-linear-gradient(45deg,#efefef 25%,transparent 25%,transparent 75%,#efefef 75%,#efefef),-webkit-linear-gradient(45deg,#efefef 25%,transparent 25%,transparent 75%,#efefef 75%,#efefef);background-image:linear-gradient(45deg,#efefef 25%,transparent 25%,transparent 75%,#efefef 75%,#efefef),linear-gradient(45deg,#efefef 25%,transparent 25%,transparent 75%,#efefef 75%,#efefef);background-position:0 0,10px 10px;-webkit-background-size:21px 21px;background-size:21px 21px;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);-webkit-user-select:none;-webkit-user-drag:none}.ndfHFb-c4YZDc-HiaYvf-s2gQvd{bottom:0;left:0;overflow:auto;position:absolute;right:0;top:0}.ndfHFb-c4YZDc-HiaYvf-s2gQvd .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{right:initial}.ndfHFb-c4YZDc-HiaYvf-haAclf .ndfHFb-c4YZDc-TvD9Pc-qnnXGd,.ndfHFb-c4YZDc-HiaYvf-RJLb9c{height:100%;position:absolute;width:100%}.ndfHFb-c4YZDc-HiaYvf.ndfHFb-c4YZDc-HiaYvf-gvZm2b-qnnXGd{cursor:crosshair}.ndfHFb-c4YZDc-HiaYvf-lI7fHe-oYxtQd{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,0.5);box-shadow:0 2px 4px 0 rgba(0,0,0,0.5);-webkit-border-radius:3px;border-radius:3px;position:absolute;z-index:1}.ndfHFb-c4YZDc-HiaYvf-gvZm2b{-webkit-box-shadow:0 2px 4px 0 rgba(0,0,0,0.5);box-shadow:0 2px 4px 0 rgba(0,0,0,0.5);-webkit-border-radius:3px;border-radius:3px;position:absolute}.ndfHFb-c4YZDc-HiaYvf-AHUcCb-oYxtQd.ndfHFb-c4YZDc-HiaYvf-lI7fHe-oYxtQd,.ndfHFb-c4YZDc-HiaYvf-gvZm2b{z-index:2}.ndfHFb-c4YZDc-HiaYvf-gvZm2b-SmKAyb,.ndfHFb-c4YZDc-HiaYvf-gvZm2b-n0tgWb{left:0;top:0;right:0;bottom:0;position:absolute}.ndfHFb-c4YZDc-HiaYvf-gvZm2b-SmKAyb{-webkit-border-radius:2px;border-radius:2px;border:2px solid #fff;margin:1px;z-index:1}.ndfHFb-c4YZDc-HiaYvf-gvZm2b-n0tgWb{-webkit-border-radius:3px;border-radius:3px;border:2px solid rgba(243,179,0,0.5);z-index:2}.ndfHFb-c4YZDc-HiaYvf-mvZqyf{width:100%;height:100%;position:absolute;border:30000px solid #000;-webkit-border-radius:30003px;border-radius:30003px;-webkit-transform:translate(-30000px,-30000px);transform:translate(-30000px,-30000px);opacity:0;-webkit-transition:opacity .4s ease;transition:opacity .4s ease;pointer-events:none}.ndfHFb-c4YZDc-HiaYvf-AHUcCb-oYxtQd .ndfHFb-c4YZDc-HiaYvf-mvZqyf,.ndfHFb-c4YZDc-HiaYvf-gvZm2b .ndfHFb-c4YZDc-HiaYvf-mvZqyf{opacity:.5}.ndfHFb-c4YZDc-RDNXzf-L6cTce .ndfHFb-c4YZDc-HiaYvf-lI7fHe-oYxtQd{display:none}.ndfHFb-c4YZDc-dkyuHd-ostUZ{position:absolute;min-width:400px;max-width:568px;line-height:20px;top:8px;background:#4285f4;color:white;overflow:hidden;-webkit-border-radius:2px;border-radius:2px;-webkit-transform:translate(-50%,-64px);transform:translate(-50%,-64px);display:-webkit-box;display:-webkit-flex;display:flex;-webkit-align-items:center;align-items:center;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.5);box-shadow:0 2px 4px rgba(0,0,0,0.5);-webkit-transition:transform .15s;transition:transform .15s;z-index:4;left:50%}.ndfHFb-c4YZDc-dkyuHd-ostUZ.ndfHFb-c4YZDc-dkyuHd-ostUZ-TSZdd{height:auto;-webkit-transform:translate(-50%,0px);transform:translate(-50%,0px)}.ndfHFb-c4YZDc-dkyuHd-ostUZ-Ne3sFf{padding:10px 32px 10px 16px;font-size:14px;font-weight:500;float:left}.ndfHFb-c4YZDc-dkyuHd-ostUZ-IbE0S,.ndfHFb-c4YZDc-dkyuHd-ostUZ-IbE0S:visited{margin-left:auto;margin-top:auto;margin-bottom:auto;text-transform:uppercase;font-size:14px;cursor:pointer;padding:10px 16px;text-decoration:none;float:right}.ndfHFb-c4YZDc-dkyuHd-ostUZ-IbE0S.ndfHFb-c4YZDc-LgbsSe-XpnDCe,.ndfHFb-c4YZDc-dkyuHd-ostUZ-IbE0S:hover{outline:white auto 5px}.ndfHFb-c4YZDc-oKVyEf-haAclf,.ndfHFb-c4YZDc-oKVyEf-haAclf .ndfHFb-c4YZDc-TvD9Pc-qnnXGd{height:100%;position:absolute;width:100%}.ndfHFb-c4YZDc-oKVyEf-s2gQvd{bottom:0;left:0;overflow:auto;position:absolute;right:0;top:0}.ndfHFb-c4YZDc-oKVyEf-s2gQvd .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{right:initial}@media print{.ndfHFb-c4YZDc-oKVyEf-PEFSMe-OWB6Me{display:none}}.ndfHFb-c4YZDc-LzGo7c{display:inline-block;font-size:12px;margin-bottom:10px;margin-left:5px;opacity:.7}.ndfHFb-c4YZDc-LzGo7c-fmcmS{color:#ffffff;display:inline-block;margin-right:4px}.ndfHFb-c4YZDc-LzGo7c .ndfHFb-c4YZDc-LzGo7c-dZ8yzd:link,.ndfHFb-c4YZDc-LzGo7c .ndfHFb-c4YZDc-LzGo7c-dZ8yzd:visited{color:#ffffff;cursor:pointer;display:inline-block;text-decoration:underline}.ndfHFb-c4YZDc-hSRGPd-LgbsSe{color:#b3b3b3;cursor:pointer;text-decoration:underline}.ndfHFb-c4YZDc-xl07Ob,.ndfHFb-c4YZDc-mg9Pef{-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);background:#fff;color:#333;font-family:arial,sans-serif;font-size:13px;border:1px solid #919191;outline:none;line-height:18px;overflow-y:auto;position:absolute;z-index:1101}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-xl07Ob,.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-mg9Pef{-webkit-box-shadow:0 4px 8px rgba(0,0,0,0.35);box-shadow:0 4px 8px rgba(0,0,0,0.35);font-family:'Google Sans',Roboto, arial,sans-serif ;border:0;-webkit-border-radius:2px;border-radius:2px;line-height:34px}.ndfHFb-c4YZDc-j7LFlb{cursor:pointer;list-style:none;padding:6px 6em 6px 37px;position:relative;white-space:nowrap}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb{padding:1px 60px 1px 52px}.ndfHFb-c4YZDc-j7LFlb-Bz112c{-webkit-background-size:contain;background-size:contain;height:16px;left:10px;position:absolute;top:6px;width:16px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-Bz112c{left:16px;height:20px;width:20px}.ndfHFb-c4YZDc-j7LFlb-sn54Q{background-color:#f1f1f1;border-color:#f1f1f1;border-style:dotted;border-width:1px 0;padding:5px 6em 5px 37px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-j7LFlb-sn54Q{background-color:#dfdfdf;border-color:#dfdfdf;padding:0 60px 0 52px}.ndfHFb-c4YZDc-j7LFlb-sn54Q .ndfHFb-c4YZDc-j7LFlb-Bz112c{top:5px}.ndfHFb-c4YZDc-xl07Ob-tJHJj{color:#595959;cursor:default;font-size:12px;list-style:none;padding:6px 6em 6px 6px;position:relative;white-space:nowrap}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-xl07Ob-tJHJj{padding:0 24px 0 12px}.ndfHFb-c4YZDc-xl07Ob-hgDUwe{border-bottom:1px solid #444}.ndfHFb-c4YZDc-xl07Ob-WfNeFe-tJHJj{background-color:#efefef;font-style:italic}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-xl07Ob-hgDUwe{border-color:#dfdfdf;margin:8px 0}.ndfHFb-c4YZDc-mg9Pef .ndfHFb-c4YZDc-j7LFlb{line-height:36px;padding:0 40px 0 16px}.ndfHFb-c4YZDc-mg9Pef .ndfHFb-c4YZDc-j7LFlb-sn54Q{border:none;color:rgba(0,0,0,0.7)}.ndfHFb-c4YZDc-mg9Pef{padding:8px 0}.ndfHFb-c4YZDc-EglORb-haAclf{background-color:#4c494c;-webkit-border-radius:12px;border-radius:12px;color:#fff;margin-bottom:40px;padding:20px;text-align:center;-webkit-box-shadow:0 10px 12px 5px rgba(0,0,0,0.2);box-shadow:0 10px 12px 5px rgba(0,0,0,0.2)}.ndfHFb-c4YZDc-EglORb-u0pjoe,.ndfHFb-c4YZDc-EglORb-ge6pde{min-width:300px;position:absolute;text-align:center}.ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c{background-repeat:no-repeat;display:inline-block;height:19px;position:relative;top:3px;width:19px}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_dark.gif')!important}.ndfHFb-c4YZDc-e1YmVc.ndfHFb-c4YZDc .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_gray.gif')!important}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe.ndfHFb-c4YZDc .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){background-image:none!important;height:21px;width:21px;top:2px}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c .ndfHFb-aZ2wEe{display:block}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c .ndfHFb-vyDMJf-aZ2wEe{height:32px;width:32px;margin-left:-16px}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe.ndfHFb-c4YZDc.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){height:32px;width:32px}.ndfHFb-c4YZDc-EglORb-ge6pde-fmcmS{font-size:19px;line-height:19px;margin-left:12px}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-EglORb-ge6pde-fmcmS{color:#1e1e1e}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-EglORb-ge6pde-fmcmS,.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-EglORb-ge6pde-fmcmS{display:none}.ndfHFb-c4YZDc-EglORb-u0pjoe-RJLb9c{background-repeat:no-repeat;background-position:0 -800px;display:inline-block;height:37px;margin:0 auto;padding:0;width:31px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-EglORb-u0pjoe-RJLb9c{background-position:0 -2082px}.ndfHFb-c4YZDc-EglORb-u0pjoe-fmcmS{display:inline-block;font-size:19px;line-height:27px;-webkit-user-select:text}.ndfHFb-c4YZDc-EglORb-u0pjoe-EbqdBd-ebJZBb-fmcmS{display:block;font-size:17px}.ndfHFb-c4YZDc-EglORb-u0pjoe-EbqdBd-ebJZBb{display:block;font-size:12px;text-align:left;white-space:pre-wrap;-webkit-user-select:text}.ndfHFb-c4YZDc-EglORb-joDrKf-u0pjoe-fmcmS{font-size:13px;margin-top:10px}.ndfHFb-c4YZDc-EglORb-u0pjoe-Hr33Cd{font-size:19px;line-height:27px}.ndfHFb-c4YZDc-EglORb-nupQLb-LgbsSe,.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe{display:inline-block}.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe{margin-left:20px;margin-top:20px;-webkit-border-radius:2px;border-radius:2px;background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;font-size:11px;font-weight:bold;height:28px;line-height:28px;min-width:72px;outline:0;padding:0 8px;vertical-align:middle}.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333}.ndfHFb-c4YZDc-LgbsSe-auswjd.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#333;-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)}.ndfHFb-c4YZDc-LgbsSe-XpnDCe.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe{border:1px solid #4d90fe}.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe-Bz112c{-webkit-background-size:contain;background-size:contain;height:16px;left:10px;position:absolute;top:6px;width:16px}.ndfHFb-c4YZDc-EDpFhf-z5C9Gb-IyROMc-LgbsSe-fmcmS{margin-left:35px}.ndfHFb-c4YZDc-bN97Pc-u0pjoe-haAclf{color:#fff;padding-bottom:20px;text-align:center}.ndfHFb-c4YZDc-bN97Pc-u0pjoe-fmcmS{display:inline-block;font-size:15px;padding-left:20px;text-align:left;vertical-align:top}.XkWAb-LmsqOc,.XkWAb-JaavZc{image-rendering:optimizeSpeed;image-rendering:-webkit-optimize-contrast}.XkWAb-LmsqOc{-webkit-transition:opacity .5s linear;transition:opacity .5s linear}.XkWAb-xzdHvd{-webkit-transform:translate(-50%,-50%) rotate(90deg) translate(50%,-50%);transform:translate(-50%,-50%) rotate(90deg) translate(50%,-50%)}.XkWAb-hTN0Jd{-webkit-transform:translate(-50%,-50%) rotate(180deg) translate(-50%,-50%);transform:translate(-50%,-50%) rotate(180deg) translate(-50%,-50%)}.XkWAb-IZxJAe{-webkit-transform:translate(-50%,-50%) rotate(270deg) translate(-50%,50%);transform:translate(-50%,-50%) rotate(270deg) translate(-50%,50%)}.XkWAb-cYRDff img.XkWAb-Iak2Lc{-webkit-transition:none;transition:none}.XkWAb-cYRDff img.L6cTce{filter:alpha(opacity=0);opacity:0}.XkWAb-CHX6zb{filter:alpha(opacity=0);opacity:0;position:absolute;z-index:1002;height:100%;width:100%;background-color:#008000;-webkit-tap-highlight-color:rgba(0,0,0,0)}.XkWAb-pfZwlb{overflow:hidden}.XkWAb-cYRDff{background:transparent!important;position:absolute;overflow:hidden}.XkWAb-LmsqOc,.XkWAb-JaavZc{position:absolute}.XkWAb-pVNTue{position:absolute;z-index:1003;width:1px;height:1px;-webkit-user-select:none}.XkWAb-RCfa3e{-webkit-transition:all .5s;transition:all .5s}.XkWAb-pVNTue.XkWAb-RCfa3e{-webkit-transition:opacity .5s;transition:opacity .5s}.XkWAb-pVNTue .XkWAb-sM5MNb{width:100%;height:100%;border:1px solid #808080;background:#000}.XkWAb-pVNTue .XkWAb-SMWX4b{direction:ltr;width:100%;height:100%;background-repeat:no-repeat;overflow:hidden;position:relative}.XkWAb-pVNTue .XkWAb-SMWX4b .XkWAb-pfZwlb .XkWAb-cYRDff{position:absolute}.XkWAb-pVNTue .XkWAb-xJ5Hz{background:transparent!important;border:1px solid #fff;position:absolute;z-index:1001}.XkWAb-pVNTue .XkWAb-ZdFRdf{position:absolute;background:#000;filter:alpha(opacity=60);opacity:.6;z-index:1001}.XkWAb-pVNTue .XkWAb-UH1Jve{width:100%;height:30px;background:#000;border-style:solid;border-color:#808080;border-width:0 1px 1px 1px;position:absolute;-webkit-transition:height .5s;transition:height .5s}.XkWAb-eJuzjc,.XkWAb-a4WLyb{color:#fff;cursor:pointer;font-size:13px;height:30px;position:absolute;top:0;text-align:center;-webkit-transition:height .5s;transition:height .5s;vertical-align:middle;width:22px}.XkWAb-BtWyge{display:table-cell;width:22px;height:30px;text-align:center;vertical-align:middle}.XkWAb-pVNTue .XkWAb-eJuzjc{right:0}.XkWAb-pVNTue .XkWAb-a4WLyb{left:0}.XkWAb-pVNTue .XkWAb-IlRY5e{height:30px;width:16px;background:#fff!important;cursor:pointer;-webkit-transition:height .5s;transition:height .5s}.XkWAb-pVNTue .XkWAb-IE9qgd{left:22px;position:absolute;right:22px;top:0;-webkit-transition:height .5s;transition:height .5s}.XkWAb-AHe6Kc{background-image:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgAQMAAABJtOi3AAAAAXNSR0IArs4c6QAAAAZQTFRF9/f3////TOsULwAAABRJREFUCNdjYGD4/5+BigR1TWMAAO29P8H0ss2LAAAAAElFTkSuQmCC');position:absolute;z-index:1}.ndfHFb-c4YZDc-ls4dqb{position:absolute;left:0;right:0;top:0;bottom:0;z-index:1}.XkWAb-cYRDff,.XkWAb-xJ5Hz{background-color:transparent!important}.XkWAb-pVNTue .XkWAb-IlRY5e{background-color:#fff!important}.ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=87);opacity:.87;background-position:0 -160px;margin-left:auto;margin-right:auto;margin-top:3px;height:21px;width:21px}.ndfHFb-c4YZDc-z5C9Gb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-z5C9Gb-LgbsSe-yEEHq.ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -400px;margin-top:2px;height:24px;width:24px}.ndfHFb-c4YZDc-z5C9Gb-LgbsSe-ndfHFb-yEEHq.ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -1920px;margin-top:2px;height:24px;width:24px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -1458px;margin-top:0;height:24px;width:24px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-z5C9Gb-LgbsSe-yEEHq.ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -2322px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-z5C9Gb-LgbsSe-ndfHFb-yEEHq.ndfHFb-c4YZDc-z5C9Gb-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -2122px}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-z5C9Gb-xl07Ob{font-size:13px;min-width:240px;padding:8px 0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-z5C9Gb-xl07Ob .ndfHFb-c4YZDc-j7LFlb-Bz112c{filter:alpha(opacity=60);opacity:.6;left:12px;top:6px;margin-left:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-z5C9Gb-xl07Ob .ndfHFb-c4YZDc-j7LFlb-sn54Q .ndfHFb-c4YZDc-j7LFlb-Bz112c{top:5px}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-z5C9Gb-xl07Ob .ndfHFb-c4YZDc-z5C9Gb-xl07Ob-xl07Ob-ibnC6b-OWB6Me{filter:alpha(opacity=60);opacity:.6}.ndfHFb-c4YZDc-tJiF1e-LgbsSe,.ndfHFb-c4YZDc-E7ORLb-LgbsSe{position:absolute;top:80px;bottom:80px;margin-top:auto;margin-bottom:auto;outline:0;width:40px;height:90px;z-index:5}.ndfHFb-c4YZDc-tJiF1e-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-E7ORLb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-tJiF1e-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -1960px}.ndfHFb-c4YZDc-E7ORLb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -840px}.ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -1640px}.ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -680px}.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c:not([onclick]):not(:link):not(:visited),.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url(//ssl.gstatic.com/docs/common/v-icons4.png)!important}.ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:-26px -26px}.ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-tJiF1e-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -520px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-E7ORLb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -880px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-tJiF1e-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -520px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-E7ORLb-LgbsSe.ndfHFb-c4YZDc-PRu6Hd-QebRhd.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -880px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-tJiF1e-LgbsSe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-E7ORLb-LgbsSe{width:48px}.ndfHFb-c4YZDc-DH6Rkf-Bz112c{height:26px;position:absolute;width:26px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-DH6Rkf-Bz112c{height:24px;width:24px}.ndfHFb-c4YZDc-DH6Rkf-AHe6Kc{height:30px;width:40px;background:#000;-webkit-border-radius:3px;border-radius:3px;filter:alpha(opacity=80);opacity:.8;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-DH6Rkf-AHe6Kc{height:40px;width:40px;-webkit-border-radius:20px;border-radius:20px;background:rgba(0,0,0,0.75);-webkit-transition:background .2s,opacity .34s,transform .34s cubic-bezier(0.4,0.0,0.2,1);transition:background .2s,opacity .34s,transform .34s cubic-bezier(0.4,0.0,0.2,1);opacity:1}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-DH6Rkf-AHe6Kc .ndfHFb-c4YZDc-DH6Rkf-Bz112c{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-LgbsSe-XpnDCe .ndfHFb-c4YZDc-DH6Rkf-AHe6Kc,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-AHe6Kc{background:#4285f4}.ndfHFb-c4YZDc-LgbsSe-OWB6Me .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-LgbsSe-OWB6Me .ndfHFb-c4YZDc-DH6Rkf-AHe6Kc{display:none}.ndfHFb-c4YZDc-Wrql6b-FNFY6c-J42Xof-qMHh7d{display:inline-block;margin-right:10px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-FNFY6c-J42Xof-qMHh7d{border:1px solid transparent;-webkit-border-radius:2px;border-radius:2px;background:rgba(0,0,0,0.75);margin:0;white-space:nowrap}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-PlOyMe.ndfHFb-c4YZDc-Wrql6b-FNFY6c-BP2Omd-qMHh7d,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-FNFY6c.ndfHFb-c4YZDc-Wrql6b-FNFY6c-BP2Omd-qMHh7d{border-bottom-right-radius:0;border-right:0;border-top-right-radius:0;display:inline-block;margin-right:0;min-width:64px}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-PlOyMe,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-FNFY6c,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-qMHh7d{font-size:13px;font-weight:normal;margin:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-PlOyMe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-FNFY6c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-qMHh7d{min-width:0;padding:0;color:white;height:30px;margin-left:0}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-PlOyMe,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-FNFY6c{padding-right:4px;min-width:79px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-PlOyMe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-FNFY6c{padding-left:8px;padding-right:8px}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-qMHh7d{display:inline-block;min-width:89px;padding:10px 0}.ndfHFb-c4YZDc-FNFY6c-V67aGc{display:inline-block}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-FNFY6c-V67aGc{line-height:24px;margin-top:4px;max-width:200px;overflow:hidden;text-overflow:ellipsis}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-Wrql6b-qMHh7d.ndfHFb-c4YZDc-Wrql6b-qMHh7d-yolsp{border-bottom-left-radius:0;border-left:0;border-top-left-radius:0;min-width:15px}.ndfHFb-c4YZDc-Wrql6b-qMHh7d-fmcmS{display:inline-block;min-width:59px;padding-left:4px;padding-right:6px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-qMHh7d-fmcmS{line-height:30px;padding-left:8px;padding-right:0;float:left}.ndfHFb-c4YZDc-Wrql6b-qMHh7d-yolsp .ndfHFb-c4YZDc-Wrql6b-qMHh7d-fmcmS{display:none}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-Wrql6b-PlOyMe,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-Wrql6b-FNFY6c,.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-Wrql6b-qMHh7d{background-color:#232323;background-image:-webkit-linear-gradient(top,#333,#222);background-image:linear-gradient(top,#333,#222)}.ndfHFb-c4YZDc-Wrql6b-qMHh7d-SmKAyb,.ndfHFb-c4YZDc-Wrql6b-qMHh7d-yolsp .ndfHFb-c4YZDc-Wrql6b-qMHh7d-SmKAyb{display:inline-block;margin:0 4px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-qMHh7d-SmKAyb{margin:0;overflow:hidden}.ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo{filter:alpha(opacity=80);opacity:.8;display:inline-block;margin-bottom:1px;vertical-align:middle}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo{filter:alpha(opacity=100);opacity:1;border-bottom-right-radius:2px;border-right:2px;border-top-right-radius:2px;margin-bottom:0}.ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo .ndfHFb-c4YZDc-Bz112c{background-position:0 -960px;height:16px;width:16px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo .ndfHFb-c4YZDc-Bz112c{background-position:0 -2202px;height:24px;width:24px;margin-top:4px}.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-Wrql6b-xl07Ob-LgbsSe-hFsbo{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-FNFY6c-DWWcKd-Bz112c{-webkit-background-size:contain;background-size:contain;display:inline-block;height:16px;margin-right:6px;width:16px;vertical-align:text-bottom}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-FNFY6c-DWWcKd-Bz112c{float:left;height:24px;width:24px;margin-top:4px;margin-left:-4px}.ndfHFb-c4YZDc-Wrql6b-qMHh7d-yolsp .ndfHFb-c4YZDc-Wrql6b-FNFY6c-hgDUwe{border-left:1px solid rgba(255,255,255,0.3);display:inline-block;height:11px;vertical-align:middle}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-qMHh7d-yolsp .ndfHFb-c4YZDc-Wrql6b-FNFY6c-hgDUwe{border-color:rgba(255,255,255,0.35);height:24px;margin-top:3px;vertical-align:top}.ndfHFb-c4YZDc-LgbsSe-ZmdkE~.ndfHFb-c4YZDc-Wrql6b-qMHh7d>.ndfHFb-c4YZDc-Wrql6b-FNFY6c-hgDUwe,.ndfHFb-c4YZDc-LgbsSe-ZmdkE>.ndfHFb-c4YZDc-Wrql6b-FNFY6c-hgDUwe{opacity:0}.ndfHFb-c4YZDc-DARUcf-NnAfwf{-webkit-transition:opacity .218s;transition:opacity .218s;background-color:#000;-webkit-border-radius:3px;border-radius:3px;bottom:10px;position:absolute;line-height:25px;padding:0 18px;text-align:center;height:25px;min-width:56px;z-index:3}.ndfHFb-c4YZDc-DARUcf-NnAfwf-auswjd{filter:alpha(opacity=70);opacity:.7}.ndfHFb-c4YZDc-DARUcf-NnAfwf-L6cTce{filter:alpha(opacity=0);opacity:0}.ndfHFb-c4YZDc-DARUcf-NnAfwf-fmcmS{color:#fff;font-size:11px;font-weight:bold}.ndfHFb-c4YZDc-DARUcf-NnAfwf-i5oIFb{border-right:1px solid rgba(255,255,255,0.2);display:inline-block;font-size:13px;line-height:44px;height:44px;vertical-align:middle}.ndfHFb-c4YZDc-DARUcf-NnAfwf-tJHJj{display:inline-block;margin-left:12px;vertical-align:middle}.ndfHFb-c4YZDc-DARUcf-NnAfwf-cQYSPc,.ndfHFb-c4YZDc-DARUcf-NnAfwf-j4LONd{display:inline-block;text-align:center;vertical-align:middle;width:48px}.ndfHFb-c4YZDc-cYSp0e,.ndfHFb-c4YZDc-cYSp0e-s2gQvd{bottom:0;left:0;position:absolute;right:0;top:0}.ndfHFb-c4YZDc-cYSp0e-Oz6c3e{position:relative}.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-Oz6c3e{max-width:800px;margin-left:auto;margin-right:auto;margin-top:60px;margin-bottom:60px}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-Oz6c3e{margin-top:56px;margin-bottom:56px}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-TJEFFc.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-cYSp0e-Oz6c3e{margin-top:12px;margin-bottom:12px}.ndfHFb-c4YZDc-cYSp0e-hpYHOb{bottom:0;position:absolute;top:0}.ndfHFb-c4YZDc-cYSp0e{outline:none}.ndfHFb-c4YZDc-cYSp0e-BIzmGd{border:1px solid #eee;-webkit-box-shadow:0 3px 3px rgba(0,0,0,0.05);box-shadow:0 3px 3px rgba(0,0,0,0.05);background:rgba(255,255,255,0.95);-webkit-border-radius:100%;border-radius:100%;display:block;opacity:0;position:absolute;width:40px;height:40px;left:100%;margin-left:-22px;cursor:pointer;-webkit-transition:opacity .25s ease-in-out;transition:opacity .25s ease-in-out;z-index:3}.ndfHFb-c4YZDc-cYSp0e-BIzmGd.ndfHFb-c4YZDc-LgbsSe{opacity:1}.ndfHFb-c4YZDc-cYSp0e-BIzmGd.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-OWB6Me{opacity:0}.ndfHFb-c4YZDc-BIzmGd-Bz112c{background-position:0 -280px;display:inline-block;height:24px;margin:10px 10px;opacity:.5;pointer-events:none;width:24px}.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-cYSp0e-BIzmGd .ndfHFb-c4YZDc-BIzmGd-Bz112c{opacity:1}.ndfHFb-c4YZDc-cYSp0e-s2gQvd{overflow:auto}.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-s2gQvd{margin-left:12px;margin-right:12px;overflow:hidden}.ndfHFb-c4YZDc-cYSp0e-B7I4Od{left:-5000px;position:absolute;top:-5000px}.ndfHFb-c4YZDc-cYSp0e-DARUcf{position:relative;pointer-events:none;background-color:rgba(79,79,79,0.2)}.ndfHFb-c4YZDc-cYSp0e-DARUcf+.ndfHFb-c4YZDc-cYSp0e-DARUcf{margin-top:40px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-cYSp0e-DARUcf+.ndfHFb-c4YZDc-cYSp0e-DARUcf{margin-top:16px}.ndfHFb-c4YZDc.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-cYSp0e-DARUcf+.ndfHFb-c4YZDc-cYSp0e-DARUcf{margin-top:12px}.ndfHFb-c4YZDc-cYSp0e-DARUcf-Df1ZY-bN97Pc-haAclf{font-size:11px;opacity:.01;overflow:hidden;height:100%;position:absolute;width:100%;z-index:-1}.ndfHFb-c4YZDc-cYSp0e-DARUcf-Df1ZY-tJHJj,.ndfHFb-c4YZDc-cYSp0e-DARUcf-Df1ZY-eEGnhe{position:absolute;margin:0;padding:0;border-width:0}.ndfHFb-c4YZDc-cYSp0e-DARUcf-gSKZZ .ndfHFb-c4YZDc-cYSp0e-DARUcf-PLDbbf{cursor:text}.ndfHFb-c4YZDc-cYSp0e-DARUcf-xUXeUb .ndfHFb-c4YZDc-cYSp0e-DARUcf-PLDbbf{cursor:crosshair}.ndfHFb-c4YZDc-cYSp0e-DARUcf-RJLb9c{position:absolute;width:100%;height:100%;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-cYSp0e-DARUcf-M1R4Ee-UzWXSb{position:absolute;width:100%;height:100%;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);background-color:#fff}.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-DARUcf-RJLb9c{-webkit-box-shadow:none;box-shadow:none}.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-DARUcf{background-color:transparent}.ndfHFb-c4YZDc-TJEFFc .ndfHFb-c4YZDc-cYSp0e-DARUcf-RJLb9c{position:relative;height:auto}.ndfHFb-c4YZDc-cYSp0e-DARUcf-PLDbbf{height:100%;overflow:hidden;position:absolute;width:100%;pointer-events:auto;z-index:2}.ndfHFb-c4YZDc-cYSp0e-DARUcf-hSRGPd{cursor:pointer;position:absolute;background-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==)}.ndfHFb-c4YZDc-cYSp0e-wxLEad-sn54Q{position:absolute;filter:alpha(opacity=35);opacity:.35;background-color:#ffe168;z-index:1}.ndfHFb-c4YZDc-cYSp0e .ndfHFb-c4YZDc-bN97Pc-u0pjoe-haAclf,.ndfHFb-c4YZDc-cYSp0e .ndfHFb-c4YZDc-EglORb-ge6pde{position:relative}.ndfHFb-c4YZDc-cYSp0e-DARUcf-u0pjoe-DARUcf{position:absolute;height:100%;width:100%;pointer-events:auto;z-index:2}.ndfHFb-c4YZDc-cYSp0e-DARUcf-u0pjoe-EglORb{text-align:center;width:100%;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-cYSp0e .ndfHFb-c4YZDc-bN97Pc-u0pjoe-fmcmS{font-size:15px;line-height:25px}.ndfHFb-c4YZDc-cYSp0e .ndfHFb-c4YZDc-EglORb-u0pjoe-RJLb9c{margin:5px 0}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-cYSp0e-DARUcf-PLDbbf:not([onclick]):not(:link):not(:visited){background-color:transparent!important}.ndfHFb-c4YZDc-UmsTj-Sx9Kwc{position:absolute;min-width:400px;height:105px;background:#232323;border:1px solid #000;-webkit-border-radius:3px;border-radius:3px;color:white;cursor:default;font-size:15px;font-weight:bold;font-family:arial,sans-serif;-webkit-user-select:text}.ndfHFb-c4YZDc-UmsTj-Ne3sFf{position:relative;top:11px;margin-left:40px;margin-right:10px;white-space:nowrap}.ndfHFb-c4YZDc-UmsTj-Bz112c{position:absolute;top:4px;left:7px;width:28px;height:28px;background-position:0 -920px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-UmsTj-Bz112c{background-position:0 -2402px}.ndfHFb-c4YZDc-UmsTj-YPqjbf-sM5MNb{position:absolute;left:10px;right:10px;top:40px}.ndfHFb-c4YZDc-UmsTj-YPqjbf{position:absolute;top:0;height:19px;width:100%;margin:0;background-color:#5c5c5c;border:1px solid #000;color:white;font:normal 16px arial,sans-serif;-webkit-box-sizing:content-box;box-sizing:content-box}.ndfHFb-c4YZDc-UmsTj-Sx9Kwc-cGMI2b{position:relative;top:53px;width:100%;white-space:nowrap}.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-UmsTj-sFeBqf{top:0;right:9px;background-color:#4d90fe;color:rgba(255,255,255,.87);margin:0;padding:0 8px;font-size:13px;height:25px;line-height:25px;min-width:50px;text-align:center}.ndfHFb-c4YZDc-UmsTj-u0pjoe{position:relative;top:2px;margin-left:13px;margin-right:20px;min-width:295px;white-space:nowrap;display:inline-block}.ndfHFb-c4YZDc-UmsTj-u0pjoe-fmcmS{color:#ff0000}.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-OWB6Me.ndfHFb-c4YZDc-UmsTj-sFeBqf{background-color:#808080;color:#c2c2c2}.ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-UmsTj-sFeBqf{background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);color:rgba(255,255,255,1)}.ndfHFb-c4YZDc-n1UuX-Bz112c,.ndfHFb-c4YZDc-mKZypf-bEDTcc,.ndfHFb-c4YZDc-UcSZ6e-mKZypf-bEDTcc-yHKmmc,.ndfHFb-c4YZDc-no16zc-UcSZ6e{display:inline-block;padding:9px 0}.ndfHFb-c4YZDc-Woal0c-jcJzye-ZMv3u{vertical-align:middle}.ndfHFb-c4YZDc-n1UuX-RJLb9c{background-color:#464445;-webkit-border-radius:50%;border-radius:50%;height:29px;width:29px;margin-left:13px;vertical-align:middle}.ndfHFb-c4YZDc-no16zc-UcSZ6e{vertical-align:middle}.ndfHFb-c4YZDc-no16zc-UcSZ6e-LgbsSe{margin-left:13px;margin-right:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ndfHFb-c4YZDc-mKZypf-bEDTcc-LgbsSe{margin-left:13px;margin-right:0}.ndfHFb-c4YZDc-UcSZ6e-mKZypf-bEDTcc-LgbsSe,.ndfHFb-c4YZDc-UcSZ6e-mKZypf-yHKmmc-LgbsSe{display:inline-block;margin-left:13px;margin-right:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-n1UuX-Bz112c{padding:5.5px 8px 5.5px 8px;margin-left:3px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-mKZypf-bEDTcc,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-UcSZ6e-mKZypf-bEDTcc-yHKmmc,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-no16zc-UcSZ6e{padding:5.5px 8px 5.5px 8px;margin-left:8px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-n1UuX-RJLb9c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-mKZypf-bEDTcc-LgbsSe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-no16zc-UcSZ6e-LgbsSe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-UcSZ6e-mKZypf-bEDTcc-LgbsSe,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-UcSZ6e-mKZypf-yHKmmc-LgbsSe{margin-left:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-UcSZ6e-mKZypf-bEDTcc-LgbsSe+.ndfHFb-c4YZDc-UcSZ6e-mKZypf-yHKmmc-LgbsSe{margin-left:13px}.ndfHFb-c4YZDc-kODWGd-umzg3c{height:100%;position:absolute;left:46px;right:auto}.ndfHFb-c4YZDc-kODWGd-umzg3c-SxecR{width:130px}.ndfHFb-c4YZDc-kODWGd-umzg3c-SxecR-PFprWc{height:12px;width:20px}.ndfHFb-c4YZDc-kODWGd-umzg3c-ihIZgd{font-family:'Open Sans', arial,sans-serif ;font-size:13px;font-weight:bold;min-width:30px;top:8px;left:144px;right:auto;position:absolute}.ndfHFb-c4YZDc-sbW6Cb{-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);background-color:#f8f8f8;color:#2a2a2a;display:block;font:13px 'Google Sans',arial,sans-serif;line-height:19px;margin-left:20px;opacity:1;position:absolute;visibility:visible;z-index:1102}.ndfHFb-c4YZDc-sbW6Cb-bN97Pc{padding:10px}.ndfHFb-c4YZDc-sbW6Cb-bN97Pc-hSRGPd{color:#2a2a2a;text-decoration:underline}.ndfHFb-c4YZDc-sbW6Cb-hFsbo{position:absolute}.ndfHFb-c4YZDc-sbW6Cb-hFsbo .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe,.ndfHFb-c4YZDc-sbW6Cb-hFsbo .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{content:'';display:block;height:0;position:absolute;width:0}.ndfHFb-c4YZDc-sbW6Cb-hFsbo .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe{border:16px solid}.ndfHFb-c4YZDc-sbW6Cb-hFsbo .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border:14px solid}.ndfHFb-c4YZDc-sbW6Cb-Ya1KTb{bottom:0}.ndfHFb-c4YZDc-sbW6Cb-d6mlqf{top:-14px}.ndfHFb-c4YZDc-sbW6Cb-y6n2Me{left:-14px}.ndfHFb-c4YZDc-sbW6Cb-cX0Lwc{right:0}.ndfHFb-c4YZDc-sbW6Cb-Ya1KTb .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe,.ndfHFb-c4YZDc-sbW6Cb-d6mlqf .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe{border-color:#f8f8f8 transparent;left:-16px}.ndfHFb-c4YZDc-sbW6Cb-Ya1KTb .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc,.ndfHFb-c4YZDc-sbW6Cb-d6mlqf .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-color:#f8f8f8 transparent;left:-14px}.ndfHFb-c4YZDc-sbW6Cb-Ya1KTb .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe,.ndfHFb-c4YZDc-sbW6Cb-Ya1KTb .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-bottom-width:0}.ndfHFb-c4YZDc-sbW6Cb-d6mlqf .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe{border-top-width:0}.ndfHFb-c4YZDc-sbW6Cb-d6mlqf .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-top-width:0;top:2px}.ndfHFb-c4YZDc-sbW6Cb-y6n2Me .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe,.ndfHFb-c4YZDc-sbW6Cb-cX0Lwc .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe{border-color:transparent #f8f8f8;top:-16px}.ndfHFb-c4YZDc-sbW6Cb-y6n2Me .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc,.ndfHFb-c4YZDc-sbW6Cb-cX0Lwc .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-color:transparent #f8f8f8;top:-14px}.ndfHFb-c4YZDc-sbW6Cb-y6n2Me .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe{border-left-width:0}.ndfHFb-c4YZDc-sbW6Cb-y6n2Me .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-left-width:0;left:2px}.ndfHFb-c4YZDc-sbW6Cb-cX0Lwc .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-WgXLxe,.ndfHFb-c4YZDc-sbW6Cb-cX0Lwc .ndfHFb-c4YZDc-sbW6Cb-Zj4Smb-BuvAkc{border-right-width:0}.ndfHFb-c4YZDc-Lo93Wb-fmcmS{display:inline-block;vertical-align:middle;max-width:150px;margin-right:5px}.ndfHFb-c4YZDc-Lo93Wb-Bz112c{display:inline-block;vertical-align:middle;background-repeat:no-repeat;filter:alpha(opacity=87);opacity:.87;height:21px;width:21px}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc{color:#000;font:normal 13px arial,sans-serif;width:340px}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc-r4nke{font-weight:normal;margin:0 0 16px}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc-dI4VCc{-webkit-border-radius:1px;border-radius:1px;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;font-size:13px;height:25px;padding:1px 8px;width:300px}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc-dI4VCc:focus{-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);border:1px solid #4d90fe;outline:none}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc-dI4VCc::-ms-clear{display:none}.ndfHFb-c4YZDc-Iqlsrf-Sx9Kwc-c6xFrd{margin-top:16px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Iqlsrf-Bz112c{background-position:0 -2282px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe{position:absolute;right:56px;top:-42px;z-index:4;height:40px;width:295px;background-color:#2d2d2d;border:1px solid #000;-webkit-border-radius:3px;border-radius:3px;border-top-width:1px;-webkit-transition:top .218s ease-out;transition:top .218s ease-out}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-ti6hGc{top:50px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-haAclf{position:relative;margin:0 0 0 4px;vertical-align:middle;height:25px;padding:0 9px;width:198px;background-color:#0a0a0a;border:solid #444;border-width:0 0 1px 1px;display:inline-block}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf-haAclf{display:table-cell;width:100%}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf,.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-NnAfwf{color:#fff;font-size:13px;font-weight:normal}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf{width:100%;background-color:#0a0a0a;border:0;height:25px;outline:none!important;padding:0}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf::-webkit-input-placeholder{color:#fff;opacity:.75}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf::-moz-placeholder{color:#fff;opacity:.75}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-YPqjbf:-ms-input-placeholder{color:#fff;opacity:.75}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-NnAfwf-haAclf{display:table-cell;max-width:100px;opacity:.5;padding-left:7px;white-space:nowrap}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-NnAfwf{padding:0 2px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-NnAfwf-x5ghY{background-color:#ff4500}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-y7UsZc{display:inline-block;height:100%;position:absolute}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-SKd3Ne{position:relative;top:8px;height:21px;width:21px;opacity:.7}.ndfHFb-c4YZDc-LgbsSe-ZmdkE.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-SKd3Ne{opacity:.9}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-SKd3Ne.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-TvD9Pc{background-position:0 0;margin-left:-2px;top:5px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-SKd3Ne.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-TvD9Pc.ndfHFb-c4YZDc-w5vlXd{top:8px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-tJiF1e,.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-E7ORLb{border:1px solid #444}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-tJiF1e{background-position:0 -80px;left:-1px;border-top-right-radius:3px;border-bottom-right-radius:3px}.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-E7ORLb{background-position:0 -1240px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-SKd3Ne.ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-TvD9Pc{background-position:0 -2362px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-tJiF1e{background-position:0 -1338px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-vWsuo-fmcmS-xxlfEe-E7ORLb{background-position:0 -2882px}.ndfHFb-c4YZDc-O1htCb-LgbsSe,.ndfHFb-c4YZDc-O1htCb-K2kob{background-color:rgba(90,90,90,0.7);border:2px solid #d7d7d7;height:32px;left:70px;position:absolute;top:80px;width:32px;z-index:5;-webkit-border-radius:50%;border-radius:50%}@media screen and (max-width:800px){.ndfHFb-c4YZDc-O1htCb-LgbsSe{left:5%}}.ndfHFb-c4YZDc-O1htCb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE,.VIpgJd-j7LFlb-sn54Q .ndfHFb-c4YZDc-O1htCb-K2kob{background-color:rgba(138,138,138,0.7);border:2px solid #fff;-webkit-box-shadow:0 2px 5px rgba(83,83,83,0.7);box-shadow:0 2px 5px rgba(83,83,83,0.7)}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-O1htCb-LgbsSe,.VIpgJd-wQNmvb-gk6SMd .ndfHFb-c4YZDc-O1htCb-K2kob{background-color:#4d90fe;border:2px solid #fff;-webkit-box-shadow:0 2px 5px rgba(83,83,83,0.7);box-shadow:0 2px 5px rgba(83,83,83,0.7)}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-O1htCb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE,.VIpgJd-wQNmvb-gk6SMd.VIpgJd-j7LFlb-sn54Q .ndfHFb-c4YZDc-O1htCb-K2kob{background-color:#5e9bfe}.ndfHFb-c4YZDc-O1htCb-LgbsSe.ndfHFb-c4YZDc-O1htCb-LgbsSe-gk6SMd-YLEHIf,.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b-YLEHIf .ndfHFb-c4YZDc-O1htCb-K2kob{-webkit-animation:driveViewerSelectButtonSelectedAnimation .3s linear 0s 1;animation:driveViewerSelectButtonSelectedAnimation .3s linear 0s 1}.ndfHFb-c4YZDc-O1htCb-LgbsSe-Bz112c,.ndfHFb-c4YZDc-O1htCb-K2kob-Bz112c{background-image:url( '//ssl.gstatic.com/docs/common/viewer/v-sprite19.svg' );background-position:0 -1320px;width:30px;height:30px;margin-top:-4px;filter:alpha(opacity=70);opacity:.7}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-O1htCb-LgbsSe-Bz112c,.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-O1htCb-K2kob-Bz112c{background-image:url( '//ssl.gstatic.com/docs/common/viewer/v3/v-sprite26.svg' );background-position:0 -1898px}.ndfHFb-c4YZDc-O1htCb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-O1htCb-LgbsSe-Bz112c{filter:alpha(opacity=90);opacity:.9}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-O1htCb-LgbsSe-Bz112c{filter:alpha(opacity=100);opacity:1}@-webkit-keyframes driveViewerSelectButtonSelectedAnimation{0%{opacity:.3;-webkit-transform:scale(.7)}50%{opacity:1;-webkit-transform:scale(1.1)}70%{-webkit-transform:scale(.9)}to{-webkit-transform:scale(1)}}@keyframes driveViewerSelectButtonSelectedAnimation{0%{opacity:.3;-webkit-transform:scale(.7)}50%{opacity:1;-webkit-transform:scale(1.1)}70%{-webkit-transform:scale(.9)}to{-webkit-transform:scale(1)}}.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob{background:rgb(237,237,237);-webkit-border-radius:3px;border-radius:3px;border:none;-webkit-box-shadow:0 1px 2px 1px rgba(0,0,0,0.4);box-shadow:0 1px 2px 1px rgba(0,0,0,0.4);margin-top:4px;margin-left:-35px;max-height:70%;max-width:645px}.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob .ndfHFb-c4YZDc-j7LFlb{display:inline-block;padding:0}.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob .ndfHFb-c4YZDc-j7LFlb-sn54Q{padding:0;border:none}.ndfHFb-c4YZDc-gvZm2b-xl07Ob .ndfHFb-c4YZDc-JUCs7e{border:none;-webkit-border-radius:0;border-radius:0;display:block;height:auto;margin:0;width:auto}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b{display:inline-block;height:110px;margin:3px 8px;overflow:hidden;position:relative;width:110px}.ndfHFb-c4YZDc-gvZm2b-xl07Ob .ndfHFb-c4YZDc-JUCs7e-SmKAyb{display:table-cell;height:90px;text-align:center;vertical-align:middle;width:110px}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b .ndfHFb-c4YZDc-JUCs7e-SmKAyb img{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.7);box-shadow:0 1px 2px 0 rgba(0,0,0,0.7);max-width:100%;max-height:90%;display:inline-block}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b img.ndfHFb-c4YZDc-JUCs7e-Bz112c{background-color:rgb(245,245,245);height:60px;width:60px}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b-r4nke{font-size:15px;margin-top:3px;overflow:hidden;text-overflow:ellipsis;text-align:center;white-space:nowrap}@media screen and (max-width:1350px){.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob{max-width:520px}}@media screen and (max-width:1000px){.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob{max-width:390px}}@media screen and (max-width:700px){.ndfHFb-c4YZDc-xl07Ob.ndfHFb-c4YZDc-gvZm2b-xl07Ob{max-width:273px}}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b .ndfHFb-c4YZDc-O1htCb-K2kob-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b .ndfHFb-c4YZDc-O1htCb-K2kob{position:absolute;right:0;top:55px}.VIpgJd-j7LFlb-sn54Q .ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b .ndfHFb-c4YZDc-O1htCb-K2kob,.VIpgJd-wQNmvb-gk6SMd .ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b .ndfHFb-c4YZDc-O1htCb-K2kob{-webkit-box-shadow:none;box-shadow:none}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b.VIpgJd-wQNmvb-gk6SMd{background-image:none}.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b.VIpgJd-j7LFlb-sn54Q,.ndfHFb-c4YZDc-gvZm2b-xl07Ob-ibnC6b.VIpgJd-j7LFlb-ZmdkE{background-color:transparent;border:none;padding:0}.ndfHFb-c4YZDc-ZCZpd-h9d3hd{-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);outline:none;z-index:1101!important}.ndfHFb-c4YZDc-qbOKL-OEVmcd .IyROMc-w3KqTd-ztA2jd-SUR3Rd{z-index:1102!important}.ndfHFb-c4YZDc-SxecR{height:12px;margin-top:12px;padding-left:0;padding-right:2px}.ndfHFb-c4YZDc-SxecR-PFprWc{background-color:#e5e5e5;background-image:-webkit-linear-gradient(top,#ffffff,#c0c0c0);background-image:linear-gradient(top,#ffffff,#c0c0c0);-webkit-box-shadow:0 0 5px 0 #000000;box-shadow:0 0 5px 0 #000000;background-color:#e5e5e5!important;-webkit-border-radius:6px;border-radius:6px;position:absolute;top:10px}.ndfHFb-c4YZDc-SxecR-skjTt{-webkit-border-radius:8px;border-radius:8px;height:6px;position:absolute}.ndfHFb-c4YZDc-SxecR-cQwEuf{background-color:#4d4d4d;margin-top:1px;width:0%}.ndfHFb-c4YZDc-SxecR-skjTt-j4LONd{background-color:transparent;border:1px solid #808080!important;width:inherit}.ndfHFb-c4YZDc-SxecR-skjTt-MFS4be{background-color:#d9d9d9;background-image:-webkit-linear-gradient(top,#c3c3c3,#d9d9d9);background-image:linear-gradient(top,#c3c3c3,#d9d9d9);background-color:#d9d9d9!important;border-bottom-right-radius:0;border-top-right-radius:0;margin-top:1px;width:0}.ndfHFb-c4YZDc-Ng57nc.ndfHFb-c4YZDc-b3rLgd-haAclf{bottom:24px;left:24px;position:absolute;text-align:left;z-index:4}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-Ng57nc.ndfHFb-c4YZDc-b3rLgd-haAclf{bottom:0;left:0;text-align:center;width:100%}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd{-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2);-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-transform:translate3d(0,72px,0);transform:translate3d(0,72px,0);-webkit-transition:transform .15s cubic-bezier(0.4,0.0,1,1) ,opacity .15s cubic-bezier(0.4,0.0,1,1) ,visibility 0ms linear .15s;transition:transform .15s cubic-bezier(0.4,0.0,1,1) ,opacity .15s cubic-bezier(0.4,0.0,1,1) ,visibility 0ms linear .15s;-webkit-transition:all 0 linear 1s,opacity 1s;transition:all 0 linear 1s,opacity 1s;background-color:#eee;border:none;color:black;font-size:14px;margin:0;max-width:568px;min-height:20px;min-width:288px;opacity:0;padding:14px 0 14px 24px;text-align:left}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd{background-color:#323232;color:white;max-width:none;width:100%}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-TSZdd{-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);bottom:24px;opacity:1}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-Ne3sFf{-webkit-align-items:center;align-items:center;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex:1 1 0;flex:1 1 0;line-height:19px;overflow:hidden}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd{-webkit-flex:0 0 auto;flex:0 0 auto;padding-left:24px;padding-right:24px}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-hSRGPd,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:visited,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-hSRGPd:visited{background:none;border:none;color:#4285f4;cursor:pointer;font-family:inherit;font-size:inherit;font-weight:bold;margin:0;outline:none;text-decoration:none}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:visited{text-transform:uppercase;float:right}.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:hover,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd:focus,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-hSRGPd:hover,.ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-hSRGPd:focus{text-decoration:underline}.ndfHFb-c4YZDc-N4imRe .ndfHFb-c4YZDc-Ng57nc .ndfHFb-c4YZDc-b3rLgd-JIbuQc-hSRGPd{color:#a1c2fa;padding-right:48px}.ndfHFb-c4YZDc-hDEnYe{width:100%;height:100%;padding-top:47px;-webkit-box-sizing:border-box;box-sizing:border-box}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-hDEnYe{padding-top:0}.ndfHFb-c4YZDc-i5oIFb:not(.ndfHFb-c4YZDc-e1YmVc) .ndfHFb-c4YZDc-hDEnYe{padding-top:56px}.ndfHFb-c4YZDc-hDEnYe-SmKAyb{width:100%;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box;padding-bottom:39px}.ndfHFb-c4YZDc-hDEnYe-SmKAyb .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{position:relative;right:initial;top:initial}.ndfHFb-c4YZDc-hDEnYe-AznF2e{width:100%;height:100%;font-size:0;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.ndfHFb-c4YZDc-hDEnYe-AznF2e>.ndfHFb-c4YZDc-bN97Pc-u0pjoe-haAclf{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-hDEnYe-XuHpsb-haAclf{background-color:transparent;z-index:1;overflow:auto;position:absolute;left:0;top:0;right:0;bottom:0}.ndfHFb-c4YZDc-hDEnYe-RwANvf-BvBYQ-haAclf{position:absolute;left:0;bottom:0;overflow-y:hidden}.ndfHFb-c4YZDc-hDEnYe-RwANvf-DKlKme-haAclf{position:absolute;top:0;overflow-x:hidden}.ndfHFb-c4YZDc-hDEnYe-RwANvf-qbOKL-PLDbbf{position:absolute;overflow:hidden}.ndfHFb-c4YZDc-hDEnYe-XuHpsb-qJTHM{position:relative}.ndfHFb-c4YZDc-hDEnYe-Df1ZY-bN97Pc{font-size:11px;opacity:.01;overflow:hidden;position:absolute;width:100%;height:100%;left:0;top:0;z-index:-1;display:block}.ndfHFb-c4YZDc-hDEnYe-fFW7wc{width:100%;z-index:3;background-color:#000;position:absolute;bottom:0;padding-left:46px;-webkit-box-sizing:border-box;box-sizing:border-box;white-space:nowrap;padding-bottom:6px;padding-top:1px}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{font-size:12px;font-weight:normal;padding:0 8px;max-width:200px;overflow:hidden;background-color:#212121;background-image:none;color:#989898;line-height:32px;margin-right:4px;border:none;border-top-right-radius:0;border-top-left-radius:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px;height:inherit;-webkit-box-shadow:none;box-shadow:none;text-overflow:ellipsis}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{padding:5px 0 1px 0}.ndfHFb-c4YZDc-hDEnYe-z5C9Gb-Bz112c{background-position:0 -200px;width:24px;height:24px;margin-left:auto;margin-right:auto}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-hDEnYe-z5C9Gb-Bz112c{background-position:0 -2442px}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe{background-color:#4a4a4a;color:white}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{color:white;cursor:pointer}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-xl07Ob{background-color:#212121;border:none;max-height:200px}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-xl07Ob>.ndfHFb-c4YZDc-j7LFlb{margin:0 20px;padding:0;font-size:12px;color:#989898;height:32px;border:none}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-xl07Ob>.ndfHFb-c4YZDc-j7LFlb>.ndfHFb-c4YZDc-j7LFlb-bN97Pc{max-width:250px;min-width:30px;white-space:nowrap;text-overflow:ellipsis;overflow-x:hidden;line-height:32px;display:inline-block}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-xl07Ob>.ndfHFb-c4YZDc-j7LFlb-sn54Q{color:white;cursor:pointer;background-color:inherit}.ndfHFb-c4YZDc-hDEnYe-fFW7wc-z5C9Gb-xl07Ob>.ndfHFb-c4YZDc-LgbsSe-IwzHHe.ndfHFb-c4YZDc-j7LFlb{background-color:#4a4a4a;color:white}.ndfHFb-c4YZDc-hDEnYe-eFD6re{left:-5000px;position:absolute;top:-5000px}.ndfHFb-c4YZDc-hDEnYe-wvGCSb-gkA7Yd-haAclf .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{left:30px;position:absolute;right:30px;top:0}.ndfHFb-c4YZDc-hDEnYe-wvGCSb-gkA7Yd-haAclf{bottom:39px;overflow:auto;padding-top:8px;position:absolute;left:auto;right:0;top:56px;width:320px}.ndfHFb-c4YZDc-hDEnYe-wvGCSb-bF1uUb{bottom:39px;left:0;overflow:hidden;position:absolute;right:0;top:56px}.ndfHFb-c4YZDc-hDEnYe-jNm5if-Bz112c-awotqb{display:inline-block;margin:0 4px;vertical-align:middle}.ndfHFb-c4YZDc-hDEnYe-jNm5if-NnAfwf-VCkuzd{background:white;-webkit-border-radius:2px 2px 0 2px;border-radius:2px 2px 0 2px;color:black;height:16px;min-width:12px;padding:0 4px;position:relative;text-align:center;top:-1px}.ndfHFb-c4YZDc-hDEnYe-jNm5if-NnAfwf{font-family:'Google Sans',Roboto, arial,sans-serif ;font-size:10px;position:relative;top:-9px}.ndfHFb-c4YZDc-hDEnYe-jNm5if-Zj4Smb{border-left:4px solid transparent;border-top:4px solid white;height:0;position:absolute;right:0;top:16px;width:0}.ndfHFb-c4YZDc-hDEnYe-wvGCSb-ge6pde-uDEFge{background:#4285f4;left:50%;padding:10px 16px 10px 16px;position:absolute;top:68px;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.ndfHFb-c4YZDc-hDEnYe-XuHpsb-hSRGPd-haAclf{-webkit-user-select:none}.ndfHFb-c4YZDc-hDEnYe-bN97Pc{position:absolute}.ndfHFb-c4YZDc-fmcmS-RCfa3e{-webkit-transition:left .218s ease-out,top .218s ease-out,height .218s ease-out,width .218s ease-out;transition:left .218s ease-out,top .218s ease-out,height .218s ease-out,width .218s ease-out}.ndfHFb-c4YZDc-fmcmS,.ndfHFb-c4YZDc-fmcmS-s2gQvd{bottom:0;position:absolute;top:0;width:100%}.ndfHFb-c4YZDc-fmcmS-haAclf{height:100%;position:absolute;width:100%}.ndfHFb-c4YZDc-fmcmS-s2gQvd{overflow:auto}.ndfHFb-c4YZDc-fmcmS-s2gQvd .ndfHFb-c4YZDc-wvGCSb-gkA7Yd{right:initial}.ndfHFb-c4YZDc-fmcmS-b0t70b{position:absolute}.ndfHFb-c4YZDc-fmcmS-bN97Pc{-webkit-user-select:text;background-color:#fff!important;color:#000!important;border:20px solid transparent;font-family:"Courier New",Courier,monospace, arial,sans-serif ;font-size:14px;word-wrap:break-word;-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-fmcmS-DARUcf{-webkit-user-select:text;background-color:#fff!important;color:#000!important;display:block;font-family:"Courier New",Courier,monospace, arial,sans-serif ;margin:0;white-space:pre-wrap;word-wrap:break-word}.ndfHFb-c4YZDc-fmcmS-bN97Pc.ndfHFb-c4YZDc-fmcmS-kY93ue,.ndfHFb-c4YZDc-fmcmS-kY93ue .ndfHFb-c4YZDc-fmcmS-DARUcf{-webkit-user-select:none;-webkit-user-select:none}.ndfHFb-c4YZDc-vWsuo-fmcmS-IDNFyf{height:100%;position:absolute;width:100%;z-index:1}.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q{position:absolute}.ndfHFb-c4YZDc-vWsuo-fmcmS-gvZm2b .ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-Hl5q5c{filter:alpha(opacity=20);opacity:.2;background-color:#28f}.ndfHFb-c4YZDc-vWsuo-fmcmS-G0jgYd.ndfHFb-c4YZDc-vWsuo-fmcmS-IDNFyf{filter:alpha(opacity=50);opacity:.5}.ndfHFb-c4YZDc-vWsuo-fmcmS-G0jgYd .ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-Hl5q5c{filter:alpha(opacity=40);opacity:.4;background-color:#34a853}.ndfHFb-c4YZDc-vWsuo-fmcmS-G0jgYd .ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-auswjd.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-Hl5q5c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-vWsuo-fmcmS-IDNFyf:not([onclick]):not(:link):not(:visited){background-color:transparent!important}.ndfHFb-c4YZDc-cYSp0e-oYxtQd-gvZm2b.ndfHFb-c4YZDc-vWsuo-fmcmS-IDNFyf{filter:alpha(opacity=.5);opacity:.5}.ndfHFb-c4YZDc-cYSp0e-oYxtQd-gvZm2b .ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-Hl5q5c{filter:alpha(opacity=40);opacity:.4;background-color:#fbbc04}.ndfHFb-c4YZDc-cYSp0e-oYxtQd-gvZm2b .ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-auswjd.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-Hl5q5c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-RDNXzf-L6cTce .ndfHFb-c4YZDc-cYSp0e-oYxtQd-gvZm2b{display:none}.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q.ndfHFb-c4YZDc-vWsuo-fmcmS-sn54Q-NowJzb{border-bottom:2px solid #fbbc04}.ndfHFb-c4YZDc-JUCs7e{border:3px solid transparent;-webkit-border-radius:3px;border-radius:3px;display:inline-block;height:63px;margin:3px 0 3px 3px;outline:none;width:84px}.ndfHFb-c4YZDc-JUCs7e-SmKAyb{display:table-cell;height:inherit;vertical-align:middle;width:inherit}.ndfHFb-c4YZDc-JUCs7e img{display:block;margin:auto}.ndfHFb-c4YZDc-JUCs7e-Bz112c{width:63px;height:63px}.ndfHFb-c4YZDc-JUCs7e-RJLb9c{max-height:63px;max-width:84px}.ndfHFb-c4YZDc-JUCs7e.ndfHFb-c4YZDc-JUCs7e-gk6SMd{border-color:transparent}.ndfHFb-c4YZDc-JUCs7e.ndfHFb-c4YZDc-JUCs7e-ZmdkE,.ndfHFb-c4YZDc-JUCs7e.ndfHFb-c4YZDc-JUCs7e-XpnDCe{border-color:#9c9c9c}.ndfHFb-c4YZDc-q77wGc{position:absolute;left:50%;margin-right:-50%;-webkit-transform:translate(-50%);transform:translate(-50%);-webkit-border-radius:3px;border-radius:3px;bottom:12px;z-index:3;overflow:hidden}.ndfHFb-c4YZDc-q77wGc .ndfHFb-c4YZDc-DARUcf-NnAfwf-i5oIFb,.ndfHFb-c4YZDc-q77wGc .ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb{background:rgba(0,0,0,0.75)}.ndfHFb-c4YZDc-Wrql6b{background-color:rgba(0,0,0,0.6);height:27px;padding:10px 0 10px 0;position:absolute;top:0;width:100%;z-index:3}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-Wrql6b{background-color:#4d90fe}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-Wrql6b{background-color:rgba(147,147,147,0.7);padding:10px 0 10px 0}.ndfHFb-c4YZDc-Wrql6b-hOcTPc{left:20px;position:absolute;white-space:nowrap}.ndfHFb-c4YZDc-Wrql6b-LQLjdd{position:absolute;top:0;white-space:nowrap;height:47px}.ndfHFb-c4YZDc-gvZm2b-WAutxc .ndfHFb-c4YZDc-Wrql6b-LQLjdd{background-color:#4d90fe;border-left:1px solid #6aa3ff;border-right:1px solid #6aa3ff}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-Wrql6b-LQLjdd{border-color:transparent}.ndfHFb-c4YZDc-Wrql6b-C7uZwb-b0t70b{display:inline-block}.ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b{position:absolute;right:16px;top:0;white-space:nowrap}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b{right:0}.ndfHFb-c4YZDc-Wrql6b-N7Eqid{background-color:rgba(0,0,0,0.6);display:inline-block;font-size:11px;line-height:28px;margin-right:10px;vertical-align:top}.ndfHFb-c4YZDc-Wrql6b-Bz112c{-webkit-background-size:contain;background-size:contain;display:inline-block;float:left;height:16px;margin-right:12px;position:relative;top:6px;width:16px}.ndfHFb-c4YZDc-Wrql6b-jfdpUb{color:#b3b3b3;display:inline-block}.ndfHFb-c4YZDc-Wrql6b-V1ur5d{color:#fff;font-size:13px;font-weight:normal;line-height:27px}.ndfHFb-c4YZDc-Wrql6b-V1ur5d.ndfHFb-c4YZDc-Wrql6b-K4efff-V1ur5d-qnnXGd{line-height:20px}.ndfHFb-c4YZDc-Wrql6b-V1ur5d-hpYHOb,.ndfHFb-c4YZDc-Wrql6b-K4efff-V1ur5d-hpYHOb{visibility:hidden;position:absolute;height:auto;width:auto}.ndfHFb-c4YZDc-Wrql6b-V1ur5d.ndfHFb-c4YZDc-Iqlsrf-qnnXGd{cursor:pointer}.ndfHFb-c4YZDc-Wrql6b-V1ur5d-hSRGPd:hover{cursor:pointer;text-decoration:underline}.ndfHFb-c4YZDc-Wrql6b-K4efff-V1ur5d{font-size:11px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b{pointer-events:none;background:linear-gradient(to bottom,rgba(0,0,0,0.65) 0%,transparent 100%);height:56px;padding:0 0 16px 0;left:0;right:0;width:auto}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-SmKAyb{position:absolute;pointer-events:auto;height:48px;left:0;right:0;padding-top:8px;width:auto}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b.ndfHFb-c4YZDc-Wrql6b-qbOKL{-webkit-box-shadow:0 2px 2px rgba(0,0,0,0.6);box-shadow:0 2px 2px rgba(0,0,0,0.6);background:#323232;padding:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-Wrql6b{background:rgba(0,0,0,0.75);height:40px;top:12px;left:auto;padding:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-Wrql6b-SmKAyb{height:40px;padding:0;margin:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{margin-left:8px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-DdWCyb-b0t70b{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b{top:auto;right:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b.ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b-SfQLQb-Woal0c-jcJzye-n1UuX{top:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-Bz112c{-webkit-border-radius:2px;border-radius:2px;margin:3px 11px;top:8px;width:18px;height:18px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-jfdpUb{letter-spacing:0}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-V1ur5d{font-size:14px;line-height:40px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-V1ur5d.ndfHFb-c4YZDc-Wrql6b-K4efff-V1ur5d-qnnXGd{line-height:30px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-LQLjdd{display:inline-block;position:relative}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-TvD9Pc-LgbsSe.ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{float:left;margin-left:0}.ndfHFb-c4YZDc-Wrql6b-C7uZwb-b0t70b .ndfHFb-c4YZDc-LgbsSe.ndfHFb-c4YZDc-C7uZwb-ibnC6b-Btuy5e{-webkit-border-radius:25%;border-radius:25%;padding:0}.ndfHFb-c4YZDc-Wrql6b-C7uZwb-b0t70b .ndfHFb-c4YZDc-C7uZwb-ibnC6b-Btuy5e .ndfHFb-c4YZDc-C7uZwb-LgbsSe-Bz112c{-webkit-transform:scale(0.66667) translateY(-2px);transform:scale(0.66667) translateY(-2px)}.ndfHFb-c4YZDc-GSQQnc-LgbsSe,.ndfHFb-c4YZDc-MZArnb-LgbsSe,.ndfHFb-c4YZDc-TvD9Pc-LgbsSe{z-index:1;min-height:26px}.ndfHFb-c4YZDc-TvD9Pc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-GSQQnc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-MZArnb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{filter:alpha(opacity=87);opacity:.87;position:relative;margin-left:auto;margin-right:auto}.ndfHFb-c4YZDc-TvD9Pc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-GSQQnc-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-MZArnb-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-DH6Rkf-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-GSQQnc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c,.ndfHFb-c4YZDc-MZArnb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{height:21px;width:21px;margin-top:3px}.ndfHFb-c4YZDc-TvD9Pc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 0}.ndfHFb-c4YZDc-GSQQnc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -1160px}.ndfHFb-c4YZDc-MZArnb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -1280px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-TvD9Pc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -2602px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-MZArnb-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -320px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-GSQQnc-LgbsSe .ndfHFb-c4YZDc-DH6Rkf-Bz112c{background-position:0 -840px;height:24px;width:24px;margin:0}.ndfHFb-c4YZDc-i5oIFb.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-Wrql6b-AeOLfc-b0t70b .ndfHFb-c4YZDc-GSQQnc-LgbsSe{margin-left:0}.ndfHFb-c4YZDc-tk3N6e-suEOdc.tk3N6e-suEOdc{background-color:#000;border-color:#000;font-family:arial,sans-serif;z-index:1111}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-tk3N6e-suEOdc.tk3N6e-suEOdc{-webkit-border-radius:2px;border-radius:2px;font-family:'Google Sans',Roboto, arial,sans-serif }.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-jQ8oHc,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-jQ8oHc,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-Ya1KTb .tk3N6e-suEOdc-ez0xG,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-d6mlqf .tk3N6e-suEOdc-ez0xG{border-color:#000 transparent}.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-jQ8oHc,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-jQ8oHc,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-y6n2Me .tk3N6e-suEOdc-ez0xG,.ndfHFb-c4YZDc-tk3N6e-suEOdc .tk3N6e-suEOdc-cX0Lwc .tk3N6e-suEOdc-ez0xG{border-color:transparent #000}.ndfHFb-c4YZDc-neVct-RCfa3e{-webkit-transition-property:left,top,width,height;transition-property:left,top,width,height;-webkit-transition-duration:.218s;transition-duration:.218s;-webkit-transition-timing-function:cubic-bezier(0.0,0.0,0.2,1);transition-timing-function:cubic-bezier(0.0,0.0,0.2,1)}.ndfHFb-c4YZDc-N4imRe-NMrWyd-RCfa3e{-webkit-transition-property:left,right,top,bottom;transition-property:left,right,top,bottom;-webkit-transition-duration:.218s;transition-duration:.218s;-webkit-transition-timing-function:cubic-bezier(0.0,0.0,0.2,1);transition-timing-function:cubic-bezier(0.0,0.0,0.2,1)}.ndfHFb-c4YZDc-Wrql6b-zM6fo-GMvhG-b0t70b{display:inline-block}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-Wrql6b-zM6fo-GMvhG-b0t70b{border:1px solid transparent;-webkit-border-radius:2px;border-radius:2px;background:rgba(0,0,0,0.75);margin:0;white-space:nowrap}.ndfHFb-c4YZDc-zM6fo-GMvhG-Bz112c{background-position:0 -1120px;height:18px;width:18px;margin:2px 4px;position:absolute}.ndfHFb-c4YZDc-zM6fo-GMvhG-fmcmS{line-height:20px;margin:2px 15px 2px 24px;font-size:14px;font-weight:normal}.ndfHFb-c4YZDc-aTv5jf{border:10px solid transparent;position:absolute;z-index:0}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-aTv5jf{border:none}.ndfHFb-c4YZDc-aTv5jf-uquGtd{position:absolute;top:0;left:0;width:100%;height:100%;z-index:1}.ndfHFb-c4YZDc-aTv5jf-AHe6Kc{position:absolute;width:100%;height:100%;top:0;left:0;z-index:1}.ndfHFb-c4YZDc-aTv5jf-u0pjoe-Ne3sFf{font:13px arial;text-align:center;z-index:2;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-aTv5jf-u0pjoe-Ne3sFf a{color:#fff!important;text-decoration:underline}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-aTv5jf-u0pjoe-Ne3sFf{color:#1e1e1e}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-aTv5jf-u0pjoe-Ne3sFf a{color:#1e1e1e!important}.ndfHFb-c4YZDc-aTv5jf-bVEB4e{background-color:black;cursor:pointer;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-aTv5jf-NziyQe-Bz112c:not(:link):not(:visited){background-image:url('//ssl.gstatic.com/s2/tt/images/play-overlay.png')!important;background-color:transparent!important;background-repeat:no-repeat;height:77px;width:77px;filter:alpha(opacity=80);opacity:.8}.ndfHFb-c4YZDc-aTv5jf-NziyQe-LgbsSe{z-index:3;filter:alpha(opacity=80);opacity:.8;position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc-aTv5jf-bVEB4e-RJLb9c{height:100%;width:100%}.ndfHFb-c4YZDc:not(.ndfHFb-c4YZDc-e1YmVc) .ndfHFb-c4YZDc-aTv5jf-AHe6Kc{-webkit-box-shadow:0 4px 15px 2px rgba(0,0,0,0.35);box-shadow:0 4px 15px 2px rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-aTv5jf .ndfHFb-c4YZDc-EglORb-ge6pde{position:absolute;top:50%;left:50%;margin-right:-50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-aTv5jf .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_dark.gif')!important}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe.ndfHFb-c4YZDc .ndfHFb-c4YZDc-aTv5jf .ndfHFb-c4YZDc-EglORb-ge6pde-RJLb9c:not(:link):not(:visited){background-image:none!important}.ndfHFb-c4YZDc .ndfHFb-c4YZDc-aTv5jf .ndfHFb-c4YZDc-EglORb-ge6pde-fmcmS{color:#fff!important}.ndfHFb-c4YZDc-LSZ0mb-fmcmS{margin-left:5px}.ndfHFb-c4YZDc-LSZ0mb-hFsbo{border-left:4px solid transparent;border-right:4px solid transparent;margin-bottom:1px;margin-left:11px;display:inline-block}.ndfHFb-c4YZDc-LSZ0mb-hFsbo-hgHJW{border-top:4px solid rgba(255,255,255, .87 )}.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-LSZ0mb-hFsbo-hgHJW{border-top:4px solid rgba(255,255,255, 1 )}.ndfHFb-c4YZDc-LSZ0mb-hFsbo-yHKmmc{border-bottom:4px solid rgba(255,255,255, .87 )}.ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-LSZ0mb-hFsbo-yHKmmc{border-bottom:4px solid rgba(255,255,255, 1 )}.ndfHFb-c4YZDc-kODWGd-xlL3N{height:100%;position:absolute;left:auto;right:10px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-LgbsSe{left:-35px;right:auto;position:absolute;top:2px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-bMElCd-Bz112c,.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-R6PoUb-Bz112c,.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-ibL1re-Bz112c,.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-c5RTEf-Bz112c{height:28px;width:31px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-bMElCd-Bz112c{background-position:0 -2120px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-R6PoUb-Bz112c{background-position:0 -2040px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-ibL1re-Bz112c{background-position:0 -560px}.ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-c5RTEf-Bz112c{background-position:0 -1400px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-bMElCd-Bz112c{background-position:0 -2482px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-R6PoUb-Bz112c{background-position:0 -2642px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-ibL1re-Bz112c{background-position:0 -360px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-kODWGd-xlL3N-qPaVXd-r8s4j-c5RTEf-Bz112c{background-position:0 -1178px}.ndfHFb-c4YZDc-kODWGd-xlL3N-SxecR{width:40px}.ndfHFb-c4YZDc-kODWGd-xlL3N-SxecR-PFprWc{height:12px;width:12px}.ndfHFb-c4YZDc-deA65-di8rgd-Sx9Kwc{background:#4285f4;-webkit-border-radius:2px;border-radius:2px;color:#000;font:normal 13px arial,sans-serif;line-height:20px;position:absolute;width:562px;z-index:1002}.ndfHFb-c4YZDc-deA65-di8rgd-LgbsSe{background:transparent;border:none;color:white;cursor:pointer;float:right;font-size:14px;margin-bottom:auto;margin-left:auto;margin-top:auto;padding:10px 16px;text-decoration:none;text-transform:uppercase}.ndfHFb-c4YZDc-deA65-di8rgd-LgbsSe:hover{outline:white auto 5px}.ndfHFb-c4YZDc-deA65-di8rgd-Sx9Kwc-r4nke-fmcmS,.ndfHFb-c4YZDc-deA65-di8rgd-Sx9Kwc-bN97Pc{float:left;font-size:14px;font-weight:500;padding:10px 32px 10px 16px}.ndfHFb-c4YZDc-nJjxad-nK2kYb,.ndfHFb-c4YZDc-nJjxad-b0t70b{display:inline-block;white-space:nowrap}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-nK2kYb{height:40px}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-nJjxad-b0t70b{margin-left:10px}.ndfHFb-c4YZDc-nJjxad-nK2kYb .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=87);opacity:.87;height:21px;width:21px;position:relative;margin-left:auto;margin-right:auto;margin-top:3px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-nK2kYb .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=100);opacity:1;height:24px;width:24px;margin:0}.ndfHFb-c4YZDc-nJjxad-nK2kYb .ndfHFb-c4YZDc-LgbsSe-OWB6Me .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=47);opacity:.47}.ndfHFb-c4YZDc-nJjxad-nK2kYb .ndfHFb-c4YZDc-LgbsSe-ZmdkE .ndfHFb-c4YZDc-Bz112c{filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-nK2kYb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-ZmdkE{background-color:#616161;background-image:none}.ndfHFb-c4YZDc-nJjxad-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -2440px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -800px}.ndfHFb-c4YZDc-nJjxad-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe .ndfHFb-c4YZDc-Bz112c{background-position:0 -1360px}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-LgbsSe.ndfHFb-c4YZDc-LgbsSe-IwzHHe .ndfHFb-c4YZDc-Bz112c{background-position:0 -1498px}.ndfHFb-c4YZDc-nJjxad-LgbsSe.ndfHFb-c4YZDc-nJjxad-ge6pde .ndfHFb-c4YZDc-Bz112c:not([onclick]):not(:link):not(:visited){background-image:url('//ssl.gstatic.com/docs/common/v-spinner_dark.gif')!important;background-position:0}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-nJjxad-LgbsSe.ndfHFb-c4YZDc-nJjxad-ge6pde .ndfHFb-c4YZDc-Bz112c:not([onclick]):not(:link):not(:visited){background-image:none!important;filter:alpha(opacity=100);opacity:1}.ndfHFb-c4YZDc-vyDMJf-aZ2wEe .ndfHFb-c4YZDc-nJjxad-LgbsSe.ndfHFb-c4YZDc-nJjxad-ge6pde .ndfHFb-aZ2wEe{display:block}.ndfHFb-c4YZDc-nJjxad-SxecR{display:inline-block;height:8px;margin-right:10px;width:100px}.ndfHFb-c4YZDc-nJjxad-SxecR .ndfHFb-c4YZDc-SxecR-skjTt-j4LONd{background-color:#d9d9d9;background-image:-webkit-linear-gradient(top,#c3c3c3,#d9d9d9);background-image:linear-gradient(top,#c3c3c3,#d9d9d9);background-color:#d9d9d9!important}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-nJjxad-SxecR .ndfHFb-c4YZDc-SxecR-skjTt-j4LONd{background-color:#fff!important;background-image:none;border-color:transparent!important;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.35);box-shadow:0 1px 1px 0 rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-nJjxad-SxecR-PFprWc{background-color:#151515;background-image:-webkit-linear-gradient(top,#000000,#303030);background-image:linear-gradient(top,#000000,#303030);-webkit-box-shadow:0 0 5px 0 #ffffff;box-shadow:0 0 5px 0 #ffffff;background-color:#151515!important;-webkit-border-radius:6px;border-radius:6px;top:18px;height:10px;width:10px;border:solid 1px #fff}.ndfHFb-c4YZDc-i5oIFb .ndfHFb-c4YZDc-nJjxad-SxecR-PFprWc{top:16px}.ndfHFb-c4YZDc-e1YmVc .ndfHFb-c4YZDc-nJjxad-SxecR-PFprWc{background-color:#58595b!important;background-image:none;height:8px;width:8px;border:solid 2px #fff;margin-left:10px;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,0.35);box-shadow:0 1px 1px 0 rgba(0,0,0,0.35)}.ndfHFb-c4YZDc-auswjd-gk6SMd .ndfHFb-c4YZDc-SxecR-PFprWc.ndfHFb-c4YZDc-nJjxad-SxecR-PFprWc{background-color:#fff!important;background-image:none;-webkit-box-shadow:0 1px 1px 0 rgba(30,53,69,0.9);box-shadow:0 1px 1px 0 rgba(30,53,69,0.9)}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb{display:inline-block;padding:2px;vertical-align:middle}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe{-webkit-border-radius:1px;border-radius:1px;width:24px;height:24px}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe.ndfHFb-c4YZDc-LgbsSe-OWB6Me{filter:alpha(opacity=47);opacity:.47}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-to915-LgbsSe .ndfHFb-c4YZDc-Bz112c{width:24px;height:24px}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-nJjxad-m9bMae-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -3042px}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-nJjxad-bEDTcc-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -680px}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-nJjxad-hj4D6d-LgbsSe .ndfHFb-c4YZDc-Bz112c{background-position:0 -800px}.ndfHFb-c4YZDc-nJjxad-nK2kYb-i5oIFb .ndfHFb-c4YZDc-nJjxad-hj4D6d-LgbsSe.ndfHFb-c4YZDc-nJjxad-S9gUrf .ndfHFb-c4YZDc-Bz112c{background-position:0 -1498px}.IyROMc-JIbuQc-mJSDk-Bz112c{direction:ltr;text-align:left;overflow:hidden;position:relative;vertical-align:middle}.IyROMc-JIbuQc-mJSDk-RJLb9c:before{content:url(//ssl.gstatic.com/docs/common/shortcut_sprite1.png)}.IyROMc-JIbuQc-mJSDk-RJLb9c{height:95px;position:absolute;width:21px}.IyROMc-JIbuQc-mJSDk-a4fUwd{left:0;top:-63px}.IyROMc-JIbuQc-mJSDk-a4fUwd-HLvlvd{left:0;top:-21px}.IyROMc-JIbuQc-mJSDk-TvD9Pc-PvhD9{left:0;top:-84px}.IyROMc-JIbuQc-mJSDk-G0jgYd{left:0;top:-42px}.IyROMc-JIbuQc-mJSDk-G0jgYd-HLvlvd{left:0;top:0}.BwLsRc{min-width:400px;min-height:280px}.BwLsRc .oJeWuf{outline:none}.NFGJTd{padding-top:6px;padding-bottom:6px}.nSaGTc:first-child{padding-top:0}.nSaGTc{padding-top:24px}.N6Cpdd{font-family:'Google Sans',Roboto,Arial,sans-serif;font-size:14px;font-weight:500;letter-spacing:.25px;line-height:20px;color:#5f6368}.Nzynh{font-family:Roboto,Arial,sans-serif;font-size:14px;font-weight:400;letter-spacing:.2px;line-height:20px;padding-top:4px;color:#202124}.AhVlie{margin-top:30px;color:#3f51b5}.VKlqKf:focus{outline:none}.srAWVe{display:inline-block;padding-right:5px;bottom:-5px;position:relative}.Y2nX2{text-align:center;margin-top:75px;margin-left:160px}.e73elf{width:100%;padding-top:30px;padding-left:10px;opacity:.54}.aT3bXc{padding-left:10px;color:#202124}.bPHSCe{color:#212121;font-size:28px;padding-bottom:0;padding-left:30px}.SySSPd{padding-top:30px;padding-left:10px;font-weight:500;font-size:15px;color:#616161}.yYZkTe{padding-top:10px;padding-left:10px;font-size:14px;color:#212121}.RjldYb{font:15px;padding-left:10px;color:#212121}sentinel{}
/*# sourceURL=/_/atari/_/ss/k=atari.vw.o-Q1__oivhs.L.W.O/d=1/ct=zgms/rs=AGEqA5maXe_2p2f7k5Do8VL62eBDY0SAag */</style><title itemprop="name">Khaled Alanezi Paaet</title><style jsname="ptDGoc">.gk8rDe .zfr3Q{color: rgba(0,0,0,1);}.M63kCb{background-color: rgba(255,255,255,1);}.OUGEr{color: rgba(33,33,33,1);}.duRjpb .OUGEr{color: rgba(0,104,91,1);}.JYVBee .OUGEr{color: rgba(0,104,91,1);}.OmQG5e .OUGEr{color: rgba(33,33,33,1);}.iwQgFb{background-color: rgba(0,0,0,0.150000006);}.ySLm4c{font-family: Lato, sans-serif;}.CbiMKe{background-color: rgba(19,130,117,1);}.qeLZfd .zfr3Q{color: rgba(33,33,33,1);}.qeLZfd .qnVSj{color: rgba(33,33,33,1);}.qeLZfd .Glwbz{color: rgba(33,33,33,1);}.qeLZfd .duRjpb{color: rgba(0,104,91,1);}.qeLZfd .qLrapd{color: rgba(0,104,91,1);}.qeLZfd .JYVBee{color: rgba(0,104,91,1);}.qeLZfd .aHM7ed{color: rgba(0,104,91,1);}.qeLZfd .OmQG5e{color: rgba(33,33,33,1);}.qeLZfd .NHD4Gf{color: rgba(33,33,33,1);}.qeLZfd .aw5Odc{color: rgba(0,102,56,1);}.qeLZfd .dhtgD:hover{color: rgba(0,0,0,1);}.qeLZfd .dhtgD:visited{color: rgba(0,102,56,1);}.qeLZfd .iwQgFb{background-color: rgba(0,0,0,0.150000006);}.qeLZfd .OUGEr{color: rgba(33,33,33,1);}.qeLZfd .duRjpb .OUGEr{color: rgba(0,104,91,1);}.qeLZfd .JYVBee .OUGEr{color: rgba(0,104,91,1);}.qeLZfd .OmQG5e .OUGEr{color: rgba(33,33,33,1);}.qeLZfd:before{background-color: rgba(242,242,242,1); display: block;}.lQAHbd .zfr3Q{color: rgba(255,255,255,1);}.lQAHbd .qnVSj{color: rgba(255,255,255,1);}.lQAHbd .Glwbz{color: rgba(255,255,255,1);}.lQAHbd .duRjpb{color: rgba(255,255,255,1);}.lQAHbd .qLrapd{color: rgba(255,255,255,1);}.lQAHbd .JYVBee{color: rgba(255,255,255,1);}.lQAHbd .aHM7ed{color: rgba(255,255,255,1);}.lQAHbd .OmQG5e{color: rgba(255,255,255,1);}.lQAHbd .NHD4Gf{color: rgba(255,255,255,1);}.lQAHbd .aw5Odc{color: rgba(255,255,255,1);}.lQAHbd .dhtgD:hover{color: rgba(255,255,255,1);}.lQAHbd .dhtgD:visited{color: rgba(255,255,255,1);}.lQAHbd .iwQgFb{background-color: rgba(255,255,255,0.150000006);}.lQAHbd .OUGEr{color: rgba(255,255,255,1);}.lQAHbd .duRjpb .OUGEr{color: rgba(255,255,255,1);}.lQAHbd .JYVBee .OUGEr{color: rgba(255,255,255,1);}.lQAHbd .OmQG5e .OUGEr{color: rgba(255,255,255,1);}.lQAHbd .CbiMKe{background-color: rgba(255,255,255,1);}.lQAHbd:before{background-color: rgba(19,130,117,1); display: block;}.cJgDec .zfr3Q{color: rgba(255,255,255,1);}.cJgDec .zfr3Q .OUGEr{color: rgba(255,255,255,1);}.cJgDec .qnVSj{color: rgba(255,255,255,1);}.cJgDec .Glwbz{color: rgba(255,255,255,1);}.cJgDec .qLrapd{color: rgba(255,255,255,1);}.cJgDec .aHM7ed{color: rgba(255,255,255,1);}.cJgDec .NHD4Gf{color: rgba(255,255,255,1);}.cJgDec .IFuOkc:before{background-color: rgba(33,33,33,1); opacity: 0; display: block;}.O13XJf{height: 340px; padding-bottom: 60px; padding-top: 60px;}.O13XJf .IFuOkc{background-color: rgba(0,104,91,1); background-image: url(https://ssl.gstatic.com/atari/images/simple-header-blended-small.png);}.O13XJf .IFuOkc:before{background-color: rgba(33,33,33,1); opacity: 0.4; display: block;}.O13XJf .zfr3Q{color: rgba(255,255,255,1);}.O13XJf .qnVSj{color: rgba(255,255,255,1);}.O13XJf .Glwbz{color: rgba(255,255,255,1);}.O13XJf .duRjpb{color: rgba(255,255,255,1);}.O13XJf .qLrapd{color: rgba(255,255,255,1);}.O13XJf .JYVBee{color: rgba(255,255,255,1);}.O13XJf .aHM7ed{color: rgba(255,255,255,1);}.O13XJf .OmQG5e{color: rgba(255,255,255,1);}.O13XJf .NHD4Gf{color: rgba(255,255,255,1);}.tpmmCb .zfr3Q{color: rgba(33,33,33,1);}.tpmmCb .zfr3Q .OUGEr{color: rgba(33,33,33,1);}.tpmmCb .qnVSj{color: rgba(33,33,33,1);}.tpmmCb .Glwbz{color: rgba(33,33,33,1);}.tpmmCb .qLrapd{color: rgba(33,33,33,1);}.tpmmCb .aHM7ed{color: rgba(33,33,33,1);}.tpmmCb .NHD4Gf{color: rgba(33,33,33,1);}.tpmmCb .IFuOkc:before{background-color: rgba(255,255,255,1); display: block;}.tpmmCb .Wew9ke{fill: rgba(33,33,33,1);}.aw5Odc{color: rgba(0,102,56,1);}.dhtgD:hover{color: rgba(0,136,84,1);}.dhtgD:active{color: rgba(0,136,84,1);}.dhtgD:visited{color: rgba(0,102,56,1);}.Zjiec{color: rgba(255,255,255,1); font-family: Lato, sans-serif; font-size: 19pt; font-weight: 300; letter-spacing: 1px; line-height: 1.3; padding-bottom: 62.5px; padding-left: 48px; padding-right: 36px; padding-top: 11.5px;}.XMyrgf{margin-top: 0px; margin-left: 48px; margin-bottom: 24px; margin-right: 24px;}.TlfmSc{color: rgba(255,255,255,1); font-family: Lato, sans-serif; font-size: 15pt; font-weight: 300; line-height: 1.333;}.Mz8gvb{color: rgba(255,255,255,1);}.zDUgLc{background-color: rgba(33,33,33,1);}.QTKDff.chg4Jd:focus{background-color: rgba(255,255,255,0.1199999973);}.YTv4We{color: rgba(178,178,178,1);}.YTv4We:hover:before{background-color: rgba(255,255,255,0.1199999973); display: block;}.YTv4We.chg4Jd:focus:before{border-color: rgba(255,255,255,0.3600000143); display: block;}.eWDljc{background-color: rgba(33,33,33,1);}.eWDljc .hDrhEe{padding-left: 8px;}.ZXW7w{color: rgba(255,255,255,1); opacity: 0.26;}.PsKE7e{color: rgba(255,255,255,1); font-family: Lato, sans-serif; font-size: 12pt; font-weight: 300;}.lhZOrc{color: rgba(77,255,175,1);}.hDrhEe:hover{color: rgba(77,255,175,1);}.M9vuGd{color: rgba(77,255,175,1); font-weight: 400;}.jgXgSe:hover{color: rgba(77,255,175,1);}.j10yRb:hover{color: rgba(77,255,175,1);}.j10yRb.chg4Jd:focus:before{border-color: rgba(255,255,255,0.3600000143); display: block;}.iWs3gf{color: rgba(255,255,255,1);}.wgxiMe{background-color: rgba(33,33,33,1);}.fOU46b .TlfmSc{color: rgba(255,255,255,1);}.fOU46b .KJll8d{background-color: rgba(255,255,255,1);}.fOU46b .Mz8gvb{color: rgba(255,255,255,1);}.fOU46b .Mz8gvb.chg4Jd:focus:before{border-color: rgba(255,255,255,1); display: block;}.fOU46b .qV4dIc{color: rgba(255,255,255,0.8700000048);}.fOU46b .jgXgSe:hover{color: rgba(255,255,255,1);}.fOU46b .M9vuGd{color: rgba(255,255,255,1);}.fOU46b .iWs3gf{color: rgba(255,255,255,0.8700000048);}.fOU46b .G8QRnc .Mz8gvb{color: rgba(0,0,0,0.8000000119);}.fOU46b .G8QRnc .Mz8gvb.chg4Jd:focus:before{border-color: rgba(0,0,0,0.8000000119); display: block;}.fOU46b .G8QRnc .ZXW7w{color: rgba(0,0,0,0.8000000119);}.fOU46b .G8QRnc .TlfmSc{color: rgba(0,0,0,0.8000000119);}.fOU46b .G8QRnc .KJll8d{background-color: rgba(0,0,0,0.8000000119);}.fOU46b .G8QRnc .qV4dIc{color: rgba(0,0,0,0.6399999857);}.fOU46b .G8QRnc .jgXgSe:hover{color: rgba(0,0,0,0.8199999928);}.fOU46b .G8QRnc .M9vuGd{color: rgba(0,0,0,0.8199999928);}.fOU46b .G8QRnc .iWs3gf{color: rgba(0,0,0,0.6399999857);}.fOU46b .usN8rf .Mz8gvb{color: rgba(0,0,0,0.8000000119);}.fOU46b .usN8rf .Mz8gvb.chg4Jd:focus:before{border-color: rgba(0,0,0,0.8000000119); display: block;}.fOU46b .usN8rf .ZXW7w{color: rgba(0,0,0,0.8000000119);}.fOU46b .usN8rf .TlfmSc{color: rgba(0,0,0,0.8000000119);}.fOU46b .usN8rf .KJll8d{background-color: rgba(0,0,0,0.8000000119);}.fOU46b .usN8rf .qV4dIc{color: rgba(0,0,0,0.6399999857);}.fOU46b .usN8rf .jgXgSe:hover{color: rgba(0,0,0,0.8199999928);}.fOU46b .usN8rf .M9vuGd{color: rgba(0,0,0,0.8199999928);}.fOU46b .usN8rf .iWs3gf{color: rgba(0,0,0,0.6399999857);}.fOU46b .aCIEDd .qV4dIc{color: rgba(33,33,33,1);}.fOU46b .aCIEDd .TlfmSc{color: rgba(33,33,33,1);}.fOU46b .aCIEDd .KJll8d{background-color: rgba(33,33,33,1);}.fOU46b .aCIEDd .ZXW7w{color: rgba(33,33,33,1);}.fOU46b .aCIEDd .jgXgSe:hover{color: rgba(33,33,33,1); opacity: 0.82;}.fOU46b .aCIEDd .Mz8gvb{color: rgba(33,33,33,1);}.fOU46b .aCIEDd .iWs3gf{color: rgba(33,33,33,1);}.fOU46b .a3ETed .qV4dIc{color: rgba(255,255,255,1);}.fOU46b .a3ETed .TlfmSc{color: rgba(255,255,255,1);}.fOU46b .a3ETed .KJll8d{background-color: rgba(255,255,255,1);}.fOU46b .a3ETed .ZXW7w{color: rgba(255,255,255,1);}.fOU46b .a3ETed .jgXgSe:hover{color: rgba(255,255,255,1); opacity: 0.82;}.fOU46b .a3ETed .Mz8gvb{color: rgba(255,255,255,1);}.fOU46b .a3ETed .iWs3gf{color: rgba(255,255,255,1);}@media only screen and (min-width: 1280px){.XeSM4.b2Iqye.fOU46b .LBrwzc .iWs3gf{color: rgba(255,255,255,0.8700000048);}}@media only screen and (min-width: 1280px){.KuNac.b2Iqye.fOU46b .iWs3gf{color: rgba(0,0,0,0.6399999857);}}.fOU46b .zDUgLc{opacity: 0;}.LBrwzc .ZXW7w{color: rgba(0,0,0,1);}.LBrwzc .KJll8d{background-color: rgba(0,0,0,1);}.GBy4H .ZXW7w{color: rgba(255,255,255,1);}.GBy4H .KJll8d{background-color: rgba(255,255,255,1);}.eBSUbc{background-color: rgba(33,33,33,1); color: rgba(0,188,212,0.6999999881);}.BFDQOb:hover{color: rgba(77,255,175,1);}.ImnMyf{background-color: rgba(255,255,255,1); color: rgba(33,33,33,1);}.Vs12Bd{background-color: rgba(242,242,242,1); color: rgba(33,33,33,1);}.S5d9Rd{background-color: rgba(19,130,117,1); color: rgba(255,255,255,1);}.zfr3Q{color: rgba(33,33,33,1); font-family: Lato, sans-serif; font-size: 11pt; font-weight: 400; line-height: 1.6667; margin-top: 12px;}.qnVSj{color: rgba(33,33,33,1);}.Glwbz{color: rgba(33,33,33,1);}.duRjpb{color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 34pt; font-weight: 300; letter-spacing: 0.5px; line-height: 1.2; margin-top: 30px;}.Ap4VC{margin-bottom: -30px;}.qLrapd{color: rgba(0,104,91,1);}.JYVBee{color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 19pt; font-weight: 400; line-height: 1.4; margin-top: 20px;}.CobnVe{margin-bottom: -20px;}.aHM7ed{color: rgba(0,104,91,1);}.OmQG5e{color: rgba(33,33,33,1); font-family: Lato, sans-serif; font-size: 15pt; font-style: normal; font-weight: 400; line-height: 1.25; margin-top: 16px;}.GV3q8e{margin-bottom: -16px;}.NHD4Gf{color: rgba(33,33,33,1);}.LB7kq .duRjpb{font-size: 64pt; letter-spacing: 2px; line-height: 1; margin-top: 40px;}.LB7kq .JYVBee{font-size: 25pt; font-weight: 300; line-height: 1.1; margin-top: 25px;}@media only screen and (max-width: 479px){.LB7kq .duRjpb{font-size: 40pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.LB7kq .duRjpb{font-size: 53pt;}}@media only screen and (max-width: 479px){.LB7kq .JYVBee{font-size: 19pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.LB7kq .JYVBee{font-size: 22pt;}}.O13XJf{height: 340px; padding-bottom: 60px; padding-top: 60px;}@media only screen and (min-width: 480px) and (max-width: 767px){.O13XJf{height: 280px; padding-bottom: 40px; padding-top: 40px;}}@media only screen and (max-width: 479px){.O13XJf{height: 250px; padding-bottom: 30px; padding-top: 30px;}}.SBrW1{height: 520px;}@media only screen and (min-width: 480px) and (max-width: 767px){.SBrW1{height: 520px;}}@media only screen and (max-width: 479px){.SBrW1{height: 400px;}}.WVklg{height: 100vh;}.Wew9ke{fill: rgba(255,255,255,1);}.gk8rDe{height: 180px; padding-bottom: 32px; padding-top: 60px;}.gk8rDe .duRjpb{color: rgba(0,104,91,1); font-size: 45pt; line-height: 1.1;}.gk8rDe .qLrapd{color: rgba(0,104,91,1);}.gk8rDe .JYVBee{color: rgba(0,104,91,1); font-size: 27pt; line-height: 1.35; margin-top: 15px;}.gk8rDe .aHM7ed{color: rgba(0,104,91,1);}@media only screen and (max-width: 479px){.gk8rDe .duRjpb{font-size: 30pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.gk8rDe .duRjpb{font-size: 38pt;}}@media only screen and (max-width: 479px){.gk8rDe .JYVBee{font-size: 20pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.gk8rDe .JYVBee{font-size: 24pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.gk8rDe{padding-top: 45px;}}@media only screen and (max-width: 479px){.gk8rDe{padding-bottom: 0px; padding-top: 30px;}}.dhtgD{text-decoration: underline;}.JzO0Vc{background-color: rgba(33,33,33,1); font-family: Lato, sans-serif; width: 250px;}@media only screen and (min-width: 1280px){.JzO0Vc{padding-top: 48.5px;}}.Zjiec{font-family: Lato, sans-serif; font-size: 19pt; font-weight: 300; letter-spacing: 1px; line-height: 1.3; padding-bottom: 62.5px; padding-left: 48px; padding-right: 36px; padding-top: 11.5px;}.TlfmSc{font-family: Lato, sans-serif; font-size: 15pt; font-weight: 300; line-height: 1.333;}.PsKE7e{font-family: Lato, sans-serif; font-size: 12pt;}.IKA38e{line-height: 1.21;}.hDrhEe{padding-bottom: 11.5px; padding-top: 11.5px;}.zDUgLc{opacity: 1;}.QmpIrf{background-color: rgba(19,130,117,1); border-color: rgba(255,255,255,1); color: rgba(255,255,255,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.xkUom{border-color: rgba(19,130,117,1); color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.xkUom:hover{background-color: rgba(19,130,117,0.1000000015);}.KjwKmc{color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal; line-height: normal;}.KjwKmc:hover{background-color: rgba(19,130,117,0.1000000015);}.lQAHbd .QmpIrf{background-color: rgba(255,255,255,1); border-color: rgba(0,104,91,1); color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.lQAHbd .xkUom{border-color: rgba(242,242,242,1); color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.lQAHbd .xkUom:hover{background-color: rgba(255,255,255,0.1000000015);}.lQAHbd .KjwKmc{color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.lQAHbd .KjwKmc:hover{background-color: rgba(255,255,255,0.1000000015);}.cJgDec .QmpIrf{background-color: rgba(255,255,255,1); border-color: rgba(0,104,91,1); color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.cJgDec .xkUom{border-color: rgba(242,242,242,1); color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.cJgDec .xkUom:hover{background-color: rgba(255,255,255,0.1000000015);}.cJgDec .KjwKmc{color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.cJgDec .KjwKmc:hover{background-color: rgba(255,255,255,0.1000000015);}.tpmmCb .QmpIrf{background-color: rgba(255,255,255,1); border-color: rgba(0,104,91,1); color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.tpmmCb .xkUom{border-color: rgba(19,130,117,1); color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.tpmmCb .xkUom:hover{background-color: rgba(19,130,117,0.1000000015);}.tpmmCb .KjwKmc{color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.tpmmCb .KjwKmc:hover{background-color: rgba(19,130,117,0.1000000015);}.gk8rDe .QmpIrf{background-color: rgba(19,130,117,1); border-color: rgba(255,255,255,1); color: rgba(255,255,255,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.gk8rDe .xkUom{border-color: rgba(19,130,117,1); color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.gk8rDe .xkUom:hover{background-color: rgba(19,130,117,0.1000000015);}.gk8rDe .KjwKmc{color: rgba(19,130,117,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.gk8rDe .KjwKmc:hover{background-color: rgba(19,130,117,0.1000000015);}.O13XJf .QmpIrf{background-color: rgba(255,255,255,1); border-color: rgba(0,104,91,1); color: rgba(0,104,91,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.O13XJf .xkUom{border-color: rgba(242,242,242,1); color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.O13XJf .xkUom:hover{background-color: rgba(255,255,255,0.1000000015);}.O13XJf .KjwKmc{color: rgba(242,242,242,1); font-family: Lato, sans-serif; font-size: 11pt; line-height: normal;}.O13XJf .KjwKmc:hover{background-color: rgba(255,255,255,0.1000000015);}.Y4CpGd{font-family: Lato, sans-serif; font-size: 11pt;}.CMArNe{background-color: rgba(242,242,242,1);}.LBrwzc .TlfmSc{color: rgba(0,0,0,0.8000000119);}.LBrwzc .YTv4We{color: rgba(0,0,0,0.6399999857);}.LBrwzc .YTv4We.chg4Jd:focus:before{border-color: rgba(0,0,0,0.6399999857); display: block;}.LBrwzc .Mz8gvb{color: rgba(0,0,0,0.6399999857);}.LBrwzc .iWs3gf{color: rgba(0,0,0,0.6399999857);}.LBrwzc .wgxiMe{background-color: rgba(255,255,255,1);}.LBrwzc .qV4dIc{color: rgba(0,0,0,0.6399999857);}.LBrwzc .M9vuGd{color: rgba(0,0,0,0.8000000119);}.LBrwzc .Zjiec{color: rgba(0,0,0,0.8000000119);}.LBrwzc .IKA38e{color: rgba(0,0,0,0.6399999857);}.LBrwzc .lhZOrc.IKA38e{color: rgba(0,0,0,0.8000000119);}.LBrwzc .j10yRb:hover{color: rgba(0,0,0,0.8000000119);}.LBrwzc .eBSUbc{color: rgba(0,0,0,0.8000000119);}.LBrwzc .hDrhEe:hover{color: rgba(0,0,0,0.8000000119);}.LBrwzc .jgXgSe:hover{color: rgba(0,0,0,0.8000000119);}.LBrwzc .M9vuGd:hover{color: rgba(0,0,0,0.8000000119);}.LBrwzc .zDUgLc{border-bottom-color: rgba(204,204,204,1); border-bottom-width: 1px; border-bottom-style: solid;}.fOU46b .LBrwzc .M9vuGd{color: rgba(0,0,0,0.8000000119);}.fOU46b .LBrwzc .jgXgSe:hover{color: rgba(0,0,0,0.8000000119);}.fOU46b .LBrwzc .zDUgLc{opacity: 1; border-bottom-style: none;}.fOU46b .LBrwzc .iWs3gf{color: rgba(0,0,0,0.6399999857);}.fOU46b .GBy4H .M9vuGd{color: rgba(255,255,255,1);}.fOU46b .GBy4H .jgXgSe:hover{color: rgba(255,255,255,1);}.fOU46b .GBy4H .zDUgLc{opacity: 1;}.fOU46b .GBy4H .iWs3gf{color: rgba(255,255,255,0.8700000048);}.XeSM4.G9Qloe.fOU46b .LBrwzc .iWs3gf{color: rgba(0,0,0,0.6399999857);}.GBy4H .lhZOrc.IKA38e{color: rgba(255,255,255,1);}.GBy4H .eBSUbc{color: rgba(255,255,255,0.8700000048);}.GBy4H .hDrhEe:hover{color: rgba(255,255,255,1);}.GBy4H .j10yRb:hover{color: rgba(255,255,255,1);}.GBy4H .YTv4We{color: rgba(255,255,255,1);}.GBy4H .YTv4We.chg4Jd:focus:before{border-color: rgba(255,255,255,1); display: block;}.GBy4H .iWs3gf{color: rgba(255,255,255,0.8700000048);}.GBy4H .jgXgSe:hover{color: rgba(255,255,255,1);}.GBy4H .jgXgSe:hover{color: rgba(255,255,255,1);}.GBy4H .M9vuGd{color: rgba(255,255,255,1);}.GBy4H .M9vuGd:hover{color: rgba(255,255,255,1);}.QcmuFb{padding-left: 20px;}.vDPrib{padding-left: 40px;}.TBDXjd{padding-left: 60px;}.bYeK8e{padding-left: 80px;}.CuqSDe{padding-left: 100px;}.Havqpe{padding-left: 120px;}.JvDrRe{padding-left: 140px;}.o5lrIf{padding-left: 160px;}.yOJW7c{padding-left: 180px;}.rB8cye{padding-left: 200px;}.RuayVd{padding-right: 20px;}.YzcKX{padding-right: 40px;}.reTV0b{padding-right: 60px;}.vSYeUc{padding-right: 80px;}.PxtZIe{padding-right: 100px;}.ahQMed{padding-right: 120px;}.rzhcXb{padding-right: 140px;}.PBhj0b{padding-right: 160px;}.TlN46c{padding-right: 180px;}.GEdNnc{padding-right: 200px;}.TMjjoe{font-family: Lato, sans-serif; font-size: 9pt; line-height: 1.2; margin-top: 0px;}@media only screen and (min-width: 1280px){.yxgWrb{margin-left: 250px;}}@media only screen and (max-width: 479px){.Zjiec{font-size: 15pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.Zjiec{font-size: 17pt;}}@media only screen and (max-width: 479px){.TlfmSc{font-size: 13pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.TlfmSc{font-size: 14pt;}}@media only screen and (max-width: 479px){.PsKE7e{font-size: 12pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.PsKE7e{font-size: 12pt;}}@media only screen and (max-width: 479px){.duRjpb{font-size: 24pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.duRjpb{font-size: 29pt;}}@media only screen and (max-width: 479px){.JYVBee{font-size: 15pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.JYVBee{font-size: 17pt;}}@media only screen and (max-width: 479px){.OmQG5e{font-size: 13pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.OmQG5e{font-size: 14pt;}}@media only screen and (max-width: 479px){.Zjiec{font-size: 15pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.Zjiec{font-size: 17pt;}}@media only screen and (max-width: 479px){.TlfmSc{font-size: 13pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.TlfmSc{font-size: 14pt;}}@media only screen and (max-width: 479px){.PsKE7e{font-size: 12pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.PsKE7e{font-size: 12pt;}}@media only screen and (max-width: 479px){.TMjjoe{font-size: 9pt;}}@media only screen and (min-width: 480px) and (max-width: 767px){.TMjjoe{font-size: 9pt;}}section[id="h.21f617238c530fb1_79"] .IFuOkc:before{opacity: 0.0;}</style><script type="text/javascript">_at_config = [null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,1,null,0,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,[]
,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,4,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,1,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,1000,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,null,1,null,null,null,null,null,1,null,null,0,0,null,null,null,0,null,null,null,null,null,null,null,null,null,null,null,null,0,null,null,null,1,null,null,null,null,null,null,null,null,null,0,0,0,null,null,[]
,null,null,null,null,null,null,1,null,0,0,0,0,0]
; window.globals = {"disableErrorReporting":true}; function gapiLoaded() {if (globals.gapiLoaded == undefined) {globals.gapiLoaded = true;} else {globals.gapiLoaded();}}window.messages = []; window.addEventListener && window.addEventListener('message', function(e) {if (window.messages && e.data && e.data.magic == 'SHIC') {window.messages.push(e);}});</script><script type="text/javascript">(function(){/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2011 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2013 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
/*
Copyright 2005 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
}).call(this);
</script></head><body dir="ltr" itemscope itemtype="http://schema.org/WebPage" id="yDmH0d" css="yDmH0d"><div jscontroller="pc62j" jsmodel="iTeaXe" jsaction="rcuQ6b:WYd;GvneHb:og1FDd;vbaUQc:uAM5ec;YBArc:dj7Cne;"><div jscontroller="X4BaPc" jsaction="rcuQ6b:WYd;o6xM5b:Pg9eo;HuL2Hd:mHeCvf;VMhF5:FFYy5e;sk3Qmb:HI1Mdd;"><div jsname="tiN4bf"><div class="M63kCb"></div><div class="fktJzd AKpWA fOU46b Ly6Unf b2Iqye KuNac" jsname="UzWXSb" jscontroller="Md9ENb" jsaction="gsiSmd:Ffcznf;yj5fUd:cpPetb;HNXL3:q0Vyke;rcuQ6b:WYd;"><header id="atIdViewHeader"><div class="BbxBP G8QRnc" jsname="WA9qLc" jscontroller="RQOkef" jsaction="rcuQ6b:JdcaS;MxH79b:JdcaS;VbOlFf:ywL4Jf;FaOgy:ywL4Jf; keydown:Hq2uPe; wheel:Ut4Ahc;" data-top-navigation="false" data-is-preview="false"><div class="DXsoRd YTv4We oNsfjf" role="button" tabindex="0" jsaction="click:LUvzV" jsname="z4Tpl" id="s9iPrd" aria-haspopup="true" aria-controls="yuynLe" aria-expanded="false"><svg class="wFCWne" viewBox="0 0 24 24" stroke="currentColor" jsname="B1n9ub" focusable="false"><g transform="translate(12,12)"><path class="hlJH0" d="M-9 -5 L9 -5" fill="none" stroke-width="2"/><path class="HBu6N" d="M-9 0 L9 0" fill="none" stroke-width="2"/><path class="cLAGQe" d="M-9 5 L9 5" fill="none" stroke-width="2"/></g></svg></div><nav class="JzO0Vc" jsname="ihoMLd" role="navigation" id="yuynLe" jsaction="transitionend:UD2r5"><a class="XMyrgf" href="index.html"><img src="759ada0927e75eac8d162a211ad7a493.jpg" class="r9CsCb" role="img" aria-label="logo"></a><a class="Zjiec oNsfjf" href="index.html"><span>Dr. Khaled</span></a><ul class="jYxBte Fpy8Db" role="navigation"><li jsname="ibnC6b" nav-level="1"><div class="PsKE7e r8s4j-R6PoUb IKA38e baH5ib oNsfjf"><div><a class="aJHbb dk90Ob hDrhEe HlqNPb" jsname="QwLHlb" role="link" tabindex="0" href="index.html" data-url="index.html" data-type="1" jsaction="keydown:mPuKz; click:vHQTA;" data-level="1">index</a></div></div></li><li jsname="ibnC6b" nav-level="1"><div class="PsKE7e r8s4j-R6PoUb IKA38e baH5ib oNsfjf"><div><a class="aJHbb dk90Ob hDrhEe HlqNPb" jsname="QwLHlb" role="link" tabindex="-1" href="Publications.html" data-url="Publications.html" data-type="1" jsaction="keydown:mPuKz; click:vHQTA;" data-level="1">Publications</a></div></div></li><li jsname="ibnC6b" nav-level="1"><div class="PsKE7e r8s4j-R6PoUb IKA38e baH5ib oNsfjf"><div><a class="aJHbb dk90Ob hDrhEe HlqNPb" jsname="QwLHlb" role="link" tabindex="-1" href="Projects.html" data-url="Projects.html" data-type="1" jsaction="keydown:mPuKz; click:vHQTA;" data-level="1">Projects</a></div></div></li><li jsname="ibnC6b" nav-level="1"><div class="PsKE7e r8s4j-R6PoUb IKA38e baH5ib oNsfjf lhZOrc" aria-current="true"><div><a class="aJHbb dk90Ob hDrhEe HlqNPb" jsname="QwLHlb" role="link" tabindex="-1" aria-selected="true" href="Teaching.html" data-url="Teaching.html" data-type="1" jsaction="keydown:mPuKz; click:vHQTA;" data-level="1">Teaching</a></div></div></li></ul></nav><div class="VLoccc" jsname="rtFGi"><div class="Pvc6xe"><div jsname="I8J07e" class="TlfmSc YSH9J"><a class="GAuSPc" jsname="jIujaf" href="index.html"><img src="759ada0927e75eac8d162a211ad7a493.jpg" class="lzy1Td" role="img" aria-label="logo" jsname="SwcDWb"><span class="QTKDff p46B7e">Dr. Khaled</span></a></div></div><div jsname="mADGA" class="zDUgLc"></div></div><div class="TxnWlb" jsname="BDdyze" jsaction="click:LUvzV"></div></div><script type="text/javascript">DOCS_timing['navv'] = new Date().getTime();</script></header><div role="main" class="UtePc RCETm yxgWrb" dir="ltr"><section id="h.21f617238c530fb1_79" class="yaqOZd LB7kq cJgDec tpmmCb gk8rDe" style=""><div class="yaqOZd IFuOkc"></div><div class="mYVXT"><div class="LS81yb VICjCf" tabindex="-1"><div class="hJDwNd-AhqUyc-ibL1re JNdkSc L6cTce-purZT L6cTce-pSzOP"><div class="JNdkSc-SmKAyb"><div class="" jscontroller="sGwD4d" jsaction="zXBUYb:zTPCnb;zQF9Uc:Qxe3nd;" jsname="F57UId"></div></div></div><div class="hJDwNd-AhqUyc-OiUrBf purZT-AhqUyc-II5mzb pSzOP-AhqUyc-qWD73c JNdkSc"><div class="JNdkSc-SmKAyb"><div class="" jscontroller="sGwD4d" jsaction="zXBUYb:zTPCnb;zQF9Uc:Qxe3nd;" jsname="F57UId"><div class="oKdM2c Kzv0Me"><div id="h.21f617238c530fb1_82" class="hJDwNd-AhqUyc-OiUrBf jXK9ad D2fZ2 OjCsFc wHaque GNzUNc"><div class="jXK9ad-SmKAyb"><div class="tyJCtd mGzaTb baZpAe lkHyyc"><h1 id="h.ekwmauqymzlg" dir="ltr" class="zfr3Q duRjpb" style="text-align: center;">Teaching</h1></div></div></div></div></div></div></div><div class="hJDwNd-AhqUyc-ibL1re JNdkSc L6cTce-purZT L6cTce-pSzOP"><div class="JNdkSc-SmKAyb"><div class="" jscontroller="sGwD4d" jsaction="zXBUYb:zTPCnb;zQF9Uc:Qxe3nd;" jsname="F57UId"></div></div></div></div></div></section><section id="h.21f617238c530fb1_148" class="yaqOZd" style=""><div class="yaqOZd IFuOkc"></div><div class="mYVXT"><div class="LS81yb VICjCf" tabindex="-1"><div class="hJDwNd-AhqUyc-uQSCkd purZT-AhqUyc-II5mzb pSzOP-AhqUyc-qWD73c JNdkSc"><div class="JNdkSc-SmKAyb"><div class="" jscontroller="sGwD4d" jsaction="zXBUYb:zTPCnb;zQF9Uc:Qxe3nd;" jsname="F57UId"><div class="oKdM2c Kzv0Me"><div id="h.21f617238c530fb1_145" class="hJDwNd-AhqUyc-uQSCkd jXK9ad D2fZ2 OjCsFc wHaque GNzUNc"><div class="jXK9ad-SmKAyb"><div class="tyJCtd mGzaTb baZpAe"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">I teach using a hands-on style on which students are encouraged to immediately apply what they learn inside the classroom. Also, group projects and presentations are given to students to put them in a job-market-like experience while studying the subject. Since I started teaching in 2016, I have been typically switching between teaching the following courses depending on the department and students needs:</p><ul class="n8H08c UVNKR" style="list-style-type: square; margin-left: 0; margin-right: 0; padding: 0;"><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Operating Systems.</p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Introduction to Computing.</p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Web Programming (HTML, CSS, PHP & SQL using XAMPP).</p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Digital logic.</p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Java Programming I (Introduction to programming). </p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Java Programming II (Object-Oriented programming).</p></li><li dir="ltr" class="TYR86d zfr3Q" style="margin-left: 15pt;"><p dir="ltr" class="zfr3Q" style="margin-left: 0; padding-left: 0; text-indent: 0;">Database Systems.</p></li></ul></div></div></div></div></div></div></div></div></div></section></div></div></div><script type="text/javascript">DOCS_timing['cov']=new Date().getTime();</script><script type="text/javascript" id="base-js">var _F_jsUrl = '/_/atari/_/js/k=';
"use strict";this.default_tk=this.default_tk||{};(function(_){var window=this;
try{
var aaa,baa,Ea,Ja,Ma,Ka,Oa,eaa,faa,haa,Za,db,eb,hb,laa,Ab,maa,Ib,oaa,qaa,waa,dc,ec,xaa,fc,gc,hc,Va,yaa,ic,mc,nc,Aaa,rc,sc;_.ba=function(a){return a[a.length-1]};_.ca=function(a,b,c){for(var d="string"===typeof a?a.split(""):a,e=a.length-1;0<=e;--e)e in d&&b.call(c,d[e],e,a)};_.ea=function(a,b,c){b=_.da(a,b,c);return 0>b?null:"string"===typeof a?a.charAt(b):a[b]};_.da=function(a,b,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)if(f in e&&b.call(c,e[f],f,a))return f;return-1};
_.fa=function(a,b,c){for(var d="string"===typeof a?a.split(""):a,e=a.length-1;0<=e;e--)if(e in d&&b.call(c,d[e],e,a))return e;return-1};_.ia=function(a,b){return 0<=(0,_.ha)(a,b)};_.ja=function(a){if(!Array.isArray(a))for(var b=a.length-1;0<=b;b--)delete a[b];a.length=0};_.ka=function(a,b){_.ia(a,b)||a.push(b)};_.na=function(a,b){b=(0,_.ha)(a,b);var c;(c=0<=b)&&_.ma(a,b);return c};_.ma=function(a,b){return 1==Array.prototype.splice.call(a,b,1).length};
aaa=function(a,b){var c=0;_.ca(a,function(d,e){b.call(void 0,d,e,a)&&_.ma(a,e)&&c++})};_.oa=function(a){return Array.prototype.concat.apply([],arguments)};_.pa=function(a){var b=a.length;if(0<b){for(var c=Array(b),d=0;d<b;d++)c[d]=a[d];return c}return[]};_.ra=function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(_.qa(d)){var e=a.length||0,f=d.length||0;a.length=e+f;for(var h=0;h<f;h++)a[e+h]=d[h]}else a.push(d)}};
_.ta=function(a,b,c,d){Array.prototype.splice.apply(a,_.sa(arguments,1))};_.sa=function(a,b,c){return 2>=arguments.length?Array.prototype.slice.call(a,b):Array.prototype.slice.call(a,b,c)};_.wa=function(a,b,c){b=b||a;var d=function(l){return _.ua(l)?"o"+_.va(l):(typeof l).charAt(0)+l};c=c||d;d={};for(var e=0,f=0;f<a.length;){var h=a[f++],k=c(h);Object.prototype.hasOwnProperty.call(d,k)||(d[k]=!0,b[e++]=h)}b.length=e};_.ya=function(a,b){a.sort(b||_.xa)};
_.za=function(a,b,c){if(!_.qa(a)||!_.qa(b)||a.length!=b.length)return!1;var d=a.length;c=c||baa;for(var e=0;e<d;e++)if(!c(a[e],b[e]))return!1;return!0};_.xa=function(a,b){return a>b?1:a<b?-1:0};baa=function(a,b){return a===b};_.Aa=function(a){for(var b=[],c=0;c<arguments.length;c++){var d=arguments[c];if(Array.isArray(d))for(var e=0;e<d.length;e+=8192)for(var f=_.Aa.apply(null,_.sa(d,e,e+8192)),h=0;h<f.length;h++)b.push(f[h]);else b.push(d)}return b};
Ea=function(a){a=a[Ca];return a instanceof _.Da?a:null};_.m=function(){!_.Fa&&_.Ga&&(_.Fa=(0,_.Ga)());return _.Fa};Ja=function(a,b,c){var d={count:0},e=(0,_.p)(b,null);d.lI=_.Ha(_.Ia(void 0).measure(function(f){f.height=a.el().clientHeight;d.count++;10==d.count&&c()}).Wa(function(f){0<f.height?e(f.height):d.lI()}));d.lI()};
Ma=function(a,b,c){if(_.r.Mr){var d=a.find("path");d.Oa({transition:"none"});a=a.el();Ka(a,b,c);d.Yb(function(e){e.setAttribute("temp-transform",caa(e))});Ka(a,b,!c);d.Oa({transition:""});d.Yb(function(e){var f=e.getAttribute("temp-transform");e.removeAttribute("temp-transform");f&&"none"!=f?e.setAttribute("transform",f):e.removeAttribute("transform")});Ka(a,b,c)}else _.La(a,b,c)};Ka=function(a,b,c){var d=a.getAttribute("class").split(" ");_.na(d,b);c&&d.push(b);a.setAttribute("class",d.join(" "))};
Oa=function(){if(void 0===Na){var a=daa.exec(location.pathname);Na=a&&a[1]?a[1]:""}return Na};eaa=function(){for(var a in Array.prototype)return!1;return!0};
faa=function(){var a=void 0===a?!1:a;var b=void 0===b?!1:b;var c=void 0===c?{}:c;var d="",e="";window&&window._F_cssRowKey&&(d=window._F_cssRowKey,window._F_combinedSignature&&(e=window._F_combinedSignature));if(d&&"function"!==typeof window._F_installCss)throw Error("Ia");var f="";var h=_.t._F_jsUrl,k=document.getElementById("base-js");if(k){var l=k.tagName.toUpperCase();if("SCRIPT"==l||"LINK"==l)f=k.src?k.src:k.getAttribute("href")}if(h&&f){if(h!=f)throw Error("Ga`"+h+"`"+f);f=h}else f=h||f;if(!Pa(f))throw Error("Ha");
a=new _.Qa(_.Ra(f),d,e,a,b);c.Fr&&(a.Fr=c.Fr);c=_.m();c.xa=a;c.FH(!0)};haa=function(a,b){b=void 0===b?null:b;var c={userAgent:_.r,dir:"ltr"};b&&b instanceof Sa&&(c.configuration=b,c.Xx=_.Ta(b,415));a.registerService(Ua,new gaa(c))};
Za=function(a){var b=void 0===b?iaa:b;var c=_.va(a),d=function(f){f=_.u(f);f.next();f=Va(f);return b(c,f)},e=function(f){var h=_.u(f);f=h.next().value;h=Va(h);return a.apply(f,h)};return function(f){for(var h=[],k=0;k<arguments.length;++k)h[k]=arguments[k];k=this||_.t;var l=Wa.get(k);l||(l={},Wa.set(k,l));return _.Xa(l,[this].concat(_.Ya(h)),e,d)}};_.bb=function(a){var b=new _.$a;return _.ab(b,a)};
db=function(a){var b=new Set;Array.from(arguments).forEach(function(c){_.cb(c).forEach(function(d){b.add(c[d])})});return b};eb=function(a,b,c,d){for(a=d?a:new Set(a);0<b.length;)d=b.shift(),d instanceof Set?d instanceof Set&&(b=b.concat(_.Ya(d.values()).concat())):a.add(d);b=c||[];for(1==b.length&&b[0]instanceof Set&&(b=_.Ya(b[0].values()).concat());0<b.length;)c=b.shift(),c instanceof Set?c instanceof Set&&(b=b.concat(_.Ya(c.values()).concat())):a.delete(c);return a};
_.fb=function(a,b){a.__soy_skip_handler=b};hb=function(a,b,c){var d=[_.gb];if(a){var e="";d&&d.length&&(e="; track:"+d.join(",").trim());d="";c&&c.length&&(d="; "+c.join("; ").trim());a.setAttribute("jslog",b+e+d);a.__ve=void 0}};
laa=function(a){var b=window;var c=b;c=void 0===c?window:c;var d=new ib;jb(d,"click");jb(d,"focus");jb(d,"focusin");jb(d,"blur");jb(d,"focusout");jb(d,"keydown");jb(d,"keypress");jb(d,"load");jb(d,"mouseover");jb(d,"mouseout");jb(d,"mouseenter");jb(d,"mouseleave");jb(d,"mouseup");jb(d,"mousedown");jb(d,"mousemove");jb(d,"touchstart");jb(d,"touchmove");jb(d,"touchend");jb(d,"change");jb(d,"keyup");jb(d,"input");jb(d,"dragstart");jb(d,"dragend");jb(d,"dragover");jb(d,"dragleave");jb(d,"drag");jb(d,
"drop");jb(d,"dblclick");jb(d,"copy");jb(d,"cut");jb(d,"wheel");jb(d,"load");var e;window.B&&(e="webkitAnimationEnd");jb(d,"animationend",e);var f;window.C&&(f="webkitAnimationIteration");jb(d,"animationiteration",f);jb(d,"transitionend");f=c.document.documentElement;e=new jaa(f);a:{for(var h=0;h<d.B.length;h++)if(kb(d.B[h].B,f)){f=!0;break a}f=!1}if(f)d.D.push(e);else{mb(d,e);d.B.push(e);e=d.D.concat(d.B);f=[];h=[];for(var k=0;k<d.B.length;++k){var l=d.B[k];if(nb(l,e)){f.push(l);for(var n=0;n<l.C.length;++n){var q=
l.B,w=l.C[n];q.removeEventListener?q.removeEventListener(w.ki,w.Db,w.capture):q.detachEvent&&q.detachEvent("on"+w.ki,w.Db)}l.C=[]}else h.push(l)}for(k=0;k<d.D.length;++k)l=d.D[k],nb(l,e)?f.push(l):(h.push(l),mb(d,l));d.B=h;d.D=f}_.ob("_bind",kaa(d),c);c=c._bind;if(null==c)throw Error("sb");d=c.trigger;c=c.bind;b=new pb(b.document,a);d=new qb(d,b,a);a&&(_.rb.Ia().Tc=a,a.ha(b));e=d.H;c((0,_.p)(e.F,e));b.dirty();b=d.D;a=_.sb(a,_.tb);b=(0,_.p)(b.dirty,b);a&&a.C.listen(ub,b)};
Ab=function(a){var b=new Set([]);if(eb(vb,[wb,xb]).has(a))return b;b.add("presentation");yb.has(a)?b.add("row"):"row"==a?b.add(new Set(["grid","rowgroup","treegrid","table"])):"rowgroup"==a?b.add(zb):"listitem"==a?b.add("list"):0==String(a).indexOf("menuitem")?b.add("menu"):"option"==a?b.add("listbox"):"radio"==a?b.add("radiogroup"):"tab"==a?b.add("tablist"):"treeitem"==a&&b.add("tree");return b};
maa=function(a){if("main"==a)return new Set(Bb);var b=new Set("alert alertdialog group log radiogroup status FIELDSET".split(" "));if(Cb.has(a)||Db.has(a)){var c=[b];-1<String(a).indexOf("dialog")?(c.push("dialog"),c.push("DIALOG")):b.has(a)||c.push("search");return eb(Eb,[Bb],c)}if("presentation"==a)return Fb;b=Cb.has(a)?new Set(Bb):eb(Bb,[Eb]);var d=function(e,f){_.Ya(Ab(e).values()).concat().reduce(function(h,k){k instanceof Set?h=h.concat(_.Ya(k.values()).concat()):h.push(k);return h},[]).forEach(function(h){f.has(h)||
(f.add(h),"presentation"!=h&&d(h,f))})};d(a,b);"gridcell"==a?b.delete("table"):"cell"==a&&b.delete("grid");"button"!=a&&"link"!=a&&"checkbox"!=a&&"switch"!=a||eb(b,["alertdialog","heading","toolbar",Gb],[],!0);return b};
Ib=function(a){if((eb(vb,[Hb,yb]).has(a)||"tooltip"==a)&&"list"!=a)return new Set;var b=new Set;zb.has(a)?b=new Set(["row","rowgroup"]):"rowgroup"==a||"treegrid"==a?b=new Set(["row"]):"row"==a?b=new Set(yb):"list"==a?b=new Set(["listitem"]):"menu"==a?b=new Set(["menuitem","menuitemcheckbox","menuitemradio"]):"listbox"==a?b=new Set(["option"]):"radiogroup"==a?b=new Set(["radio"]):"tablist"==a?b=new Set(["tab"]):"tree"==a?b=new Set(["treeitem"]):"combobox"==a&&(b=new Set(["listbox","textbox","text"]));
b.add("presentation");return b};
oaa=function(a){var b=new Set(Bb);if("presentation"==a)return Fb;if(Jb.has(a)&&_.Kb(a,"r")||"img"==a)return b;var c=function(e,f){_.Ya(Ib(e).values()).concat().forEach(function(h){f.has(h)||(f.add(h),"presentation"!=h&&c(h,f))})};c(a,b);"table"==a?b.delete("gridcell"):"grid"==a&&b.delete("cell");if(zb.has(a))return eb(b,[Lb,"checkbox","switch","textbox","TEXTAREA"]);naa.has(a)?b.add("menu"):("listitem"==a||"list"==a)&&b.add("list");if(Mb.has(a)||Nb.has(a))return b;var d=new Set(["img","IMG"]);if("alertdialog"==
a||"heading"==a)return eb(b,[Lb,"checkbox","switch","heading",d,Gb],"heading"==a?[a,Gb]:[a]);if("group"==a||"menubar"==a)eb(b,[Lb,"checkbox","switch","img"],[],!0);else if(Cb.has(a)||Db.has(a)){eb(b,[new Set(Ob),"LABEL"],[Cb],!0);if("application"==a)return eb(b,[Db,Pb,Qb,"tabpanel"]);d=new Set(["document","list","listitem"]);if(eb(Cb,["list","listitem"],[Rb]).has(a))return eb(b,[Eb],d.has(a)?[]:[a])}return b};
qaa=function(a,b){var c=new Set;"menu"==a&&(c.add({ji:!0,has:"Must be labeled",ai:function(d){for(d=d.parentElement;d!=document.body;){if("menubar"==d.getAttribute("role"))return!0;d=d.parentElement}return!1},Sb:!1,Yh:Sb,value:null}),c.add({ji:!0,has:"Must be labeled",ai:function(d){for(d=d.parentElement;d!=document.body;){if("menubar"==d.getAttribute("role"))return!0;d=d.parentElement}return!1},Sb:!1,Yh:Sb,value:""}));wb.has(a)?(c.add({ji:!0,has:"aria-disabled is true",ai:function(d){return"true"==
d.getAttribute("aria-disabled")},Sb:!0,Yh:"tabindex",value:"-1"}),c.add({ji:!0,has:"aria-disabled is null or false",ai:function(d){var e=d.getAttribute("aria-disabled"),f=d.hasAttribute("type")?d.getAttribute("type"):Tb[d.tagName.toUpperCase()];return(null===e||"false"==e)&&!(paa.has(f)||d.hasAttribute("href"))},Sb:!0,Yh:"tabindex",value:"0"}),c.add({ji:!0,has:"tabindex is not 0",ai:function(d){return"0"==d.getAttribute("tabindex")},Sb:!1,Yh:"aria-disabled",value:"true"}),c.add({ji:!0,has:"tabindex of -1",
ai:function(d){return"-1"==d.getAttribute("tabindex")},Sb:!0,Yh:"aria-disabled",value:"true"})):Mb.has(a)&&(c.add({ji:!0,has:"aria-owns that is not empty",ai:function(d){return 0!=String(d.getAttribute("aria-owns")||"").length},Sb:!0,Yh:"tabindex",value:"0"}),c.add({ji:!0,has:"tabindex of 0",ai:function(d){return"0"==d.getAttribute("tabindex")},Sb:!1,Yh:"aria-owns",value:""}));"button"!=a&&"link"!=a||c.add({ji:!0,has:"tagName "+"A".toString()+" and no href",ai:function(d){return"A"==Tb[d.tagName.toUpperCase()]&&
null===d.getAttribute("href")},Sb:!0,Yh:"tabindex",value:"0"});c.add({ji:!0,has:"Must be labeled",ai:function(){return b},Sb:!1,Yh:eb(Sb,[Ub]),value:null});c.add({ji:!0,has:"Must be labeled",ai:function(){return b},Sb:!1,Yh:eb(Sb,[Ub]),value:""});return c};
waa=function(a){var b=Vb.has(a)?wb.has(a)?1:2:-1;var c=0>b&&!zb.has(a),d=raa.has(a),e=new Set([]);saa.has(a)&&!d?(e.add(Wb.has(a)?Sb:eb(Sb,[],["aria-placeholder"])),Xb.add(a)):"tabpanel"==a&&(e.add("aria-labelledby"),Xb.add(a));Vb.has(a)&&1==b&&"button"!=a&&"link"!=a&&e.add("tabindex");/.*(checkbox|radio|switch).*/.test(a)&&"radiogroup"!=a?e.add("switch"==a?"checked":"aria-checked"):"option"==a?e.add(new Set(["aria-checked","aria-selected"])):"tab"==a?(e.add("aria-selected"),e.add("aria-controls")):
"combobox"==a&&(e.add("aria-autocomplete"),e.add("aria-expanded"));Wb.has(a)&&e.add("contenteditable");Yb.has(a)&&(eb(e,["aria-valuemin","aria-valuemax","aria-valuenow"],[],!0),"scrollbar"==a&&eb(e,["aria-controls","aria-orientation"],[],!0));var f=new Set(e);var h=eb(taa,[uaa]);Yb.has(a)&&h.add("aria-valuetext");if(Rb.has(a))f=h;else if("listitem"!=a&&(d||Qb.has(a)||"menu"==a)&&(h.add(Wb.has(a)?Sb:eb(Sb,[],["aria-placeholder"])),Xb.add(a)),(d||Xb.has(a))&&"listitem"!=a&&h.add("aria-describedby"),
Jb.has(a))f=h;else{var k=[];eb(Hb,[xb,"application"]).has(a)&&(xb.has(a)&&k.push("aria-activedescendant"),k.push(vaa));Nb.has(a)&&-1==String(a).indexOf("menu")?k.push("option"!=a&&0!=String(a).indexOf("t")?eb(Zb,[],["aria-selected"]):Zb):"button"==a?k.push("aria-pressed"):zb.has(a)?(h.add("aria-rowcount"),h.add("aria-colcount")):yb.has(a)&&("cell"!=a&&(h.add("aria-selected"),h.add("aria-readonly"),h.add("contenteditable")),h.add("aria-colindex"),h.add("aria-rowindex"),h.add("aria-colspan"),h.add("aria-rowspan"));
h=eb(h,k,[f]);Vb.has(a)&&(h.add("title"),h.add("autofocus"));f=h}h=Ab(a);k=maa(a);var l=Ib(a),n=oaa(a),q=qaa(a,d);if("presentation"==a)a=eb(db($b),_.ac(bc));else{var w=[];"button"==a||"link"==a?w=w.concat("button"==a?["A"]:["button","link"]):"heading"==a?w=w.concat("H1 H2 H3 H4 H5 H6".split(" ")):_.Kb(a.toString(),"header")?w.push("TH"):"gridcell"==a||"cell"==a?w.push("TD"):zb.has(a)?w.push("TABLE"):"rowgroup"==a?w=w.concat(["TBODY","TFOOT","THEAD"]):"row"==a?w.push("TR"):"combobox"==a&&w.push("text");
a=eb(cc,w)}return{z6:b,H7:c,N6:d,z7:f,g7:e,E5:q,K7:k,NX:h,L7:n,MX:l,m5:a}};dc=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};ec="function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};
xaa=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("a");};fc=xaa(this);gc=function(a,b){if(b)a:{var c=fc;a=a.split(".");for(var d=0;d<a.length-1;d++){var e=a[d];if(!(e in c))break a;c=c[e]}a=a[a.length-1];d=c[a];b=b(d);b!=d&&null!=b&&ec(c,a,{configurable:!0,writable:!0,value:b})}};
gc("Symbol",function(a){if(a)return a;var b=function(e,f){this.B=e;ec(this,"description",{configurable:!0,writable:!0,value:f})};b.prototype.toString=function(){return this.B};var c=0,d=function(e){if(this instanceof d)throw new TypeError("b");return new b("jscomp_symbol_"+(e||"")+"_"+c++,e)};return d});
gc("Symbol.iterator",function(a){if(a)return a;a=Symbol("c");for(var b="Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "),c=0;c<b.length;c++){var d=fc[b[c]];"function"===typeof d&&"function"!=typeof d.prototype[a]&&ec(d.prototype,a,{configurable:!0,writable:!0,value:function(){return hc(dc(this))}})}return a});hc=function(a){a={next:a};a[Symbol.iterator]=function(){return this};return a};
_.u=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):{next:dc(a)}};Va=function(a){for(var b,c=[];!(b=a.next()).done;)c.push(b.value);return c};_.Ya=function(a){return a instanceof Array?a:Va(_.u(a))};yaa="function"==typeof Object.create?Object.create:function(a){var b=function(){};b.prototype=a;return new b};
if("function"==typeof Object.setPrototypeOf)ic=Object.setPrototypeOf;else{var jc;a:{var zaa={a:!0},kc={};try{kc.__proto__=zaa;jc=kc.a;break a}catch(a){}jc=!1}ic=jc?function(a,b){a.__proto__=b;if(a.__proto__!==b)throw new TypeError("e`"+a);return a}:null}_.lc=ic;
_.v=function(a,b){a.prototype=yaa(b.prototype);a.prototype.constructor=a;if(_.lc)(0,_.lc)(a,b);else for(var c in b)if("prototype"!=c)if(Object.defineProperties){var d=Object.getOwnPropertyDescriptor(b,c);d&&Object.defineProperty(a,c,d)}else a[c]=b[c];a.oa=b.prototype};mc=function(){this.I=!1;this.F=null;this.J=void 0;this.B=1;this.D=this.H=0;this.R=this.C=null};nc=function(a){if(a.I)throw new TypeError("g");a.I=!0};mc.prototype.L=function(a){this.J=a};
var oc=function(a,b){a.C={LD:b,DF:!0};a.B=a.H||a.D};mc.prototype.return=function(a){this.C={return:a};this.B=this.D};_.pc=function(a,b,c){a.B=c;return{value:b}};mc.prototype.bm=function(a){this.B=a};_.qc=function(a){this.B=new mc;this.C=a};Aaa=function(a,b){nc(a.B);var c=a.B.F;if(c)return rc(a,"return"in c?c["return"]:function(d){return{value:d,done:!0}},b,a.B.return);a.B.return(b);return sc(a)};
rc=function(a,b,c,d){try{var e=b.call(a.B.F,c);if(!(e instanceof Object))throw new TypeError("f`"+e);if(!e.done)return a.B.I=!1,e;var f=e.value}catch(h){return a.B.F=null,oc(a.B,h),sc(a)}a.B.F=null;d.call(a.B,f);return sc(a)};sc=function(a){for(;a.B.B;)try{var b=a.C(a.B);if(b)return a.B.I=!1,{value:b.value,done:!1}}catch(c){a.B.J=void 0,oc(a.B,c)}a.B.I=!1;if(a.B.C){b=a.B.C;a.B.C=null;if(b.DF)throw b.LD;return{value:b.return,done:!0}}return{value:void 0,done:!0}};
_.tc=function(a){this.next=function(b){nc(a.B);a.B.F?b=rc(a,a.B.F.next,b,a.B.L):(a.B.L(b),b=sc(a));return b};this.throw=function(b){nc(a.B);a.B.F?b=rc(a,a.B.F["throw"],b,a.B.L):(oc(a.B,b),b=sc(a));return b};this.return=function(b){return Aaa(a,b)};this[Symbol.iterator]=function(){return this}};
gc("Promise",function(a){function b(){this.B=null}function c(h){return h instanceof e?h:new e(function(k){k(h)})}if(a)return a;b.prototype.C=function(h){if(null==this.B){this.B=[];var k=this;this.D(function(){k.H()})}this.B.push(h)};var d=fc.setTimeout;b.prototype.D=function(h){d(h,0)};b.prototype.H=function(){for(;this.B&&this.B.length;){var h=this.B;this.B=[];for(var k=0;k<h.length;++k){var l=h[k];h[k]=null;try{l()}catch(n){this.F(n)}}}this.B=null};b.prototype.F=function(h){this.D(function(){throw h;
})};var e=function(h){this.Ca=0;this.Mg=void 0;this.B=[];var k=this.C();try{h(k.resolve,k.reject)}catch(l){k.reject(l)}};e.prototype.C=function(){function h(n){return function(q){l||(l=!0,n.call(k,q))}}var k=this,l=!1;return{resolve:h(this.L),reject:h(this.D)}};e.prototype.L=function(h){if(h===this)this.D(new TypeError("h"));else if(h instanceof e)this.R(h);else{a:switch(typeof h){case "object":var k=null!=h;break a;case "function":k=!0;break a;default:k=!1}k?this.J(h):this.F(h)}};e.prototype.J=function(h){var k=
void 0;try{k=h.then}catch(l){this.D(l);return}"function"==typeof k?this.S(k,h):this.F(h)};e.prototype.D=function(h){this.H(2,h)};e.prototype.F=function(h){this.H(1,h)};e.prototype.H=function(h,k){if(0!=this.Ca)throw Error("i`"+h+"`"+k+"`"+this.Ca);this.Ca=h;this.Mg=k;this.I()};e.prototype.I=function(){if(null!=this.B){for(var h=0;h<this.B.length;++h)f.C(this.B[h]);this.B=null}};var f=new b;e.prototype.R=function(h){var k=this.C();h.Zr(k.resolve,k.reject)};e.prototype.S=function(h,k){var l=this.C();
try{h.call(k,l.resolve,l.reject)}catch(n){l.reject(n)}};e.prototype.then=function(h,k){function l(y,D){return"function"==typeof y?function(H){try{n(y(H))}catch(P){q(P)}}:D}var n,q,w=new e(function(y,D){n=y;q=D});this.Zr(l(h,n),l(k,q));return w};e.prototype.catch=function(h){return this.then(void 0,h)};e.prototype.Zr=function(h,k){function l(){switch(n.Ca){case 1:h(n.Mg);break;case 2:k(n.Mg);break;default:throw Error("j`"+n.Ca);}}var n=this;null==this.B?f.C(l):this.B.push(l)};e.resolve=c;e.reject=
function(h){return new e(function(k,l){l(h)})};e.race=function(h){return new e(function(k,l){for(var n=_.u(h),q=n.next();!q.done;q=n.next())c(q.value).Zr(k,l)})};e.all=function(h){var k=_.u(h),l=k.next();return l.done?c([]):new e(function(n,q){function w(H){return function(P){y[H]=P;D--;0==D&&n(y)}}var y=[],D=0;do y.push(void 0),D++,c(l.value).Zr(w(y.length-1),q),l=k.next();while(!l.done)})};return e});
var uc=function(a,b,c){if(null==a)throw new TypeError("k`"+c);if(b instanceof RegExp)throw new TypeError("l`"+c);return a+""};gc("String.prototype.endsWith",function(a){return a?a:function(b,c){var d=uc(this,b,"endsWith");void 0===c&&(c=d.length);c=Math.max(0,Math.min(c|0,d.length));for(var e=b.length;0<e&&0<c;)if(d[--c]!=b[--e])return!1;return 0>=e}});
var vc=function(a,b,c){a instanceof String&&(a=String(a));for(var d=a.length,e=0;e<d;e++){var f=a[e];if(b.call(c,f,e,a))return{sF:e,v:f}}return{sF:-1,v:void 0}};gc("Array.prototype.find",function(a){return a?a:function(b,c){return vc(this,b,c).v}});gc("String.prototype.startsWith",function(a){return a?a:function(b,c){var d=uc(this,b,"startsWith"),e=d.length,f=b.length;c=Math.max(0,Math.min(c|0,d.length));for(var h=0;h<f&&c<e;)if(d[c++]!=b[h++])return!1;return h>=f}});
gc("String.prototype.repeat",function(a){return a?a:function(b){var c=uc(this,null,"repeat");if(0>b||1342177279<b)throw new RangeError("m");b|=0;for(var d="";b;)if(b&1&&(d+=c),b>>>=1)c+=c;return d}});var wc=function(a,b){a instanceof String&&(a+="");var c=0,d=!1,e={next:function(){if(!d&&c<a.length){var f=c++;return{value:b(f,a[f]),done:!1}}d=!0;return{done:!0,value:void 0}}};e[Symbol.iterator]=function(){return e};return e};
gc("Array.prototype.keys",function(a){return a?a:function(){return wc(this,function(b){return b})}});var xc=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)},Baa="function"==typeof Object.assign?Object.assign:function(a,b){for(var c=1;c<arguments.length;c++){var d=arguments[c];if(d)for(var e in d)xc(d,e)&&(a[e]=d[e])}return a};gc("Object.assign",function(a){return a||Baa});gc("Object.is",function(a){return a?a:function(b,c){return b===c?0!==b||1/b===1/c:b!==b&&c!==c}});
gc("Math.imul",function(a){return a?a:function(b,c){b=Number(b);c=Number(c);var d=b&65535,e=c&65535;return d*e+((b>>>16&65535)*e+d*(c>>>16&65535)<<16>>>0)|0}});gc("Array.prototype.values",function(a){return a?a:function(){return wc(this,function(b,c){return c})}});gc("Array.prototype.entries",function(a){return a?a:function(){return wc(this,function(b,c){return[b,c]})}});
gc("WeakMap",function(a){function b(){}function c(l){var n=typeof l;return"object"===n&&null!==l||"function"===n}function d(l){if(!xc(l,f)){var n=new b;ec(l,f,{value:n})}}function e(l){var n=Object[l];n&&(Object[l]=function(q){if(q instanceof b)return q;Object.isExtensible(q)&&d(q);return n(q)})}if(function(){if(!a||!Object.seal)return!1;try{var l=Object.seal({}),n=Object.seal({}),q=new a([[l,2],[n,3]]);if(2!=q.get(l)||3!=q.get(n))return!1;q.delete(l);q.set(n,4);return!q.has(l)&&4==q.get(n)}catch(w){return!1}}())return a;
var f="$jscomp_hidden_"+Math.random();e("freeze");e("preventExtensions");e("seal");var h=0,k=function(l){this.lb=(h+=Math.random()+1).toString();if(l){l=_.u(l);for(var n;!(n=l.next()).done;)n=n.value,this.set(n[0],n[1])}};k.prototype.set=function(l,n){if(!c(l))throw Error("n");d(l);if(!xc(l,f))throw Error("o`"+l);l[f][this.lb]=n;return this};k.prototype.get=function(l){return c(l)&&xc(l,f)?l[f][this.lb]:void 0};k.prototype.has=function(l){return c(l)&&xc(l,f)&&xc(l[f],this.lb)};k.prototype.delete=
function(l){return c(l)&&xc(l,f)&&xc(l[f],this.lb)?delete l[f][this.lb]:!1};return k});
gc("Map",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var k=Object.seal({x:4}),l=new a(_.u([[k,"s"]]));if("s"!=l.get(k)||1!=l.size||l.get({x:4})||l.set({x:4},"t")!=l||2!=l.size)return!1;var n=l.entries(),q=n.next();if(q.done||q.value[0]!=k||"s"!=q.value[1])return!1;q=n.next();return q.done||4!=q.value[0].x||"t"!=q.value[1]||!n.next().done?!1:!0}catch(w){return!1}}())return a;var b=new WeakMap,c=function(k){this.C={};this.B=
f();this.size=0;if(k){k=_.u(k);for(var l;!(l=k.next()).done;)l=l.value,this.set(l[0],l[1])}};c.prototype.set=function(k,l){k=0===k?0:k;var n=d(this,k);n.list||(n.list=this.C[n.id]=[]);n.entry?n.entry.value=l:(n.entry={next:this.B,previous:this.B.previous,head:this.B,key:k,value:l},n.list.push(n.entry),this.B.previous.next=n.entry,this.B.previous=n.entry,this.size++);return this};c.prototype.delete=function(k){k=d(this,k);return k.entry&&k.list?(k.list.splice(k.index,1),k.list.length||delete this.C[k.id],
k.entry.previous.next=k.entry.next,k.entry.next.previous=k.entry.previous,k.entry.head=null,this.size--,!0):!1};c.prototype.clear=function(){this.C={};this.B=this.B.previous=f();this.size=0};c.prototype.has=function(k){return!!d(this,k).entry};c.prototype.get=function(k){return(k=d(this,k).entry)&&k.value};c.prototype.entries=function(){return e(this,function(k){return[k.key,k.value]})};c.prototype.keys=function(){return e(this,function(k){return k.key})};c.prototype.values=function(){return e(this,
function(k){return k.value})};c.prototype.forEach=function(k,l){for(var n=this.entries(),q;!(q=n.next()).done;)q=q.value,k.call(l,q[1],q[0],this)};c.prototype[Symbol.iterator]=c.prototype.entries;var d=function(k,l){var n=l&&typeof l;"object"==n||"function"==n?b.has(l)?n=b.get(l):(n=""+ ++h,b.set(l,n)):n="p_"+l;var q=k.C[n];if(q&&xc(k.C,n))for(k=0;k<q.length;k++){var w=q[k];if(l!==l&&w.key!==w.key||l===w.key)return{id:n,list:q,index:k,entry:w}}return{id:n,list:q,index:-1,entry:void 0}},e=function(k,
l){var n=k.B;return hc(function(){if(n){for(;n.head!=k.B;)n=n.previous;for(;n.next!=n.head;)return n=n.next,{done:!1,value:l(n)};n=null}return{done:!0,value:void 0}})},f=function(){var k={};return k.previous=k.next=k.head=k},h=0;return c});
gc("Array.from",function(a){return a?a:function(b,c,d){c=null!=c?c:function(k){return k};var e=[],f="undefined"!=typeof Symbol&&Symbol.iterator&&b[Symbol.iterator];if("function"==typeof f){b=f.call(b);for(var h=0;!(f=b.next()).done;)e.push(c.call(d,f.value,h++))}else for(f=b.length,h=0;h<f;h++)e.push(c.call(d,b[h],h));return e}});gc("Object.values",function(a){return a?a:function(b){var c=[],d;for(d in b)xc(b,d)&&c.push(b[d]);return c}});
gc("Array.prototype.includes",function(a){return a?a:function(b,c){var d=this;d instanceof String&&(d=String(d));var e=d.length;c=c||0;for(0>c&&(c=Math.max(c+e,0));c<e;c++){var f=d[c];if(f===b||Object.is(f,b))return!0}return!1}});gc("String.prototype.includes",function(a){return a?a:function(b,c){return-1!==uc(this,b,"includes").indexOf(b,c||0)}});
gc("Set",function(a){if(function(){if(!a||"function"!=typeof a||!a.prototype.entries||"function"!=typeof Object.seal)return!1;try{var c=Object.seal({x:4}),d=new a(_.u([c]));if(!d.has(c)||1!=d.size||d.add(c)!=d||1!=d.size||d.add({x:4})!=d||2!=d.size)return!1;var e=d.entries(),f=e.next();if(f.done||f.value[0]!=c||f.value[1]!=c)return!1;f=e.next();return f.done||f.value[0]==c||4!=f.value[0].x||f.value[1]!=f.value[0]?!1:e.next().done}catch(h){return!1}}())return a;var b=function(c){this.B=new Map;if(c){c=
_.u(c);for(var d;!(d=c.next()).done;)this.add(d.value)}this.size=this.B.size};b.prototype.add=function(c){c=0===c?0:c;this.B.set(c,c);this.size=this.B.size;return this};b.prototype.delete=function(c){c=this.B.delete(c);this.size=this.B.size;return c};b.prototype.clear=function(){this.B.clear();this.size=0};b.prototype.has=function(c){return this.B.has(c)};b.prototype.entries=function(){return this.B.entries()};b.prototype.values=function(){return this.B.values()};b.prototype.keys=b.prototype.values;
b.prototype[Symbol.iterator]=b.prototype.values;b.prototype.forEach=function(c,d){var e=this;this.B.forEach(function(f){return c.call(d,f,f,e)})};return b});gc("Array.prototype.findIndex",function(a){return a?a:function(b,c){return vc(this,b,c).sF}});gc("Number.isNaN",function(a){return a?a:function(b){return"number"===typeof b&&isNaN(b)}});
gc("Array.prototype.fill",function(a){return a?a:function(b,c,d){var e=this.length||0;0>c&&(c=Math.max(0,e+c));if(null==d||d>e)d=e;d=Number(d);0>d&&(d=Math.max(0,e+d));for(c=Number(c||0);c<d;c++)this[c]=b;return this}});var yc=function(a){return a?a:Array.prototype.fill};gc("Int8Array.prototype.fill",yc);gc("Uint8Array.prototype.fill",yc);gc("Uint8ClampedArray.prototype.fill",yc);gc("Int16Array.prototype.fill",yc);gc("Uint16Array.prototype.fill",yc);gc("Int32Array.prototype.fill",yc);
gc("Uint32Array.prototype.fill",yc);gc("Float32Array.prototype.fill",yc);gc("Float64Array.prototype.fill",yc);gc("Object.entries",function(a){return a?a:function(b){var c=[],d;for(d in b)xc(b,d)&&c.push([d,b[d]]);return c}});gc("Object.fromEntries",function(a){return a?a:function(b){var c={};if(!(Symbol.iterator in b))throw new TypeError("p`"+b);b=b[Symbol.iterator].call(b);for(var d=b.next();!d.done;d=b.next()){d=d.value;if(Object(d)!==d)throw new TypeError("q");c[d[0]]=d[1]}return c}});
gc("Math.sign",function(a){return a?a:function(b){b=Number(b);return 0===b||isNaN(b)?b:0<b?1:-1}});gc("Promise.prototype.finally",function(a){return a?a:function(b){return this.then(function(c){return Promise.resolve(b()).then(function(){return c})},function(c){return Promise.resolve(b()).then(function(){throw c;})})}});gc("Array.prototype.flatMap",function(a){return a?a:function(b,c){for(var d=[],e=0;e<this.length;e++){var f=b.call(c,this[e],e,this);Array.isArray(f)?d.push.apply(d,f):d.push(f)}return d}});
/*
Copyright The Closure Library Authors.
SPDX-License-Identifier: Apache-2.0
*/
var zc,Caa,Bc,Ac,Ic,Daa,Eaa,Faa,Gaa,Nc;zc=zc||{};_.t=this||self;_.ob=function(a,b,c){a=a.split(".");c=c||_.t;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b};_.Cc=function(a){if(a&&a!=_.t)return Ac(a.document);null===Bc&&(Bc=Ac(_.t.document));return Bc};Caa=/^[\w+/_-]+[=]{0,2}$/;Bc=null;
Ac=function(a){return(a=a.querySelector&&a.querySelector("script[nonce]"))&&(a=a.nonce||a.getAttribute("nonce"))&&Caa.test(a)?a:""};_.Dc=function(a,b){a=a.split(".");b=b||_.t;for(var c=0;c<a.length;c++)if(b=b[a[c]],null==b)return null;return b};_.Ec=function(){};_.Fc=function(a){a.xz=void 0;a.Ia=function(){return a.xz?a.xz:a.xz=new a}};_.Gc=function(a){var b=typeof a;return"object"!=b?b:a?Array.isArray(a)?"array":b:"null"};_.qa=function(a){var b=_.Gc(a);return"array"==b||"object"==b&&"number"==typeof a.length};
_.Hc=function(a){return"function"==_.Gc(a)};_.ua=function(a){var b=typeof a;return"object"==b&&null!=a||"function"==b};_.va=function(a){return Object.prototype.hasOwnProperty.call(a,Ic)&&a[Ic]||(a[Ic]=++Daa)};Ic="closure_uid_"+(1E9*Math.random()>>>0);Daa=0;Eaa=function(a,b,c){return a.call.apply(a.bind,arguments)};
Faa=function(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}};_.p=function(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?_.p=Eaa:_.p=Faa;return _.p.apply(null,arguments)};
_.Jc=function(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}};_.Kc=Date.now;Gaa=function(a){(0,eval)(a)};_.Mc=function(a,b,c){_.ob(a,b,c)};_.x=function(a,b){function c(){}c.prototype=b.prototype;a.oa=b.prototype;a.prototype=new c;a.prototype.constructor=a;a.s5=function(d,e,f){for(var h=Array(arguments.length-2),k=2;k<arguments.length;k++)h[k-2]=arguments[k];return b.prototype[e].apply(d,h)}};Nc=function(a){return a};
_.Oc=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,_.Oc);else{var b=Error().stack;b&&(this.stack=b)}a&&(this.message=String(a))};_.x(_.Oc,Error);_.Oc.prototype.name="CustomError";
var Pc;
var Qc=function(a,b){a=a.split("%s");for(var c="",d=a.length-1,e=0;e<d;e++)c+=a[e]+(e<b.length?b[e]:"%s");_.Oc.call(this,c+a[d])};_.x(Qc,_.Oc);Qc.prototype.name="AssertionError";
_.ha=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1};
_.Rc=Array.prototype.lastIndexOf?function(a,b){return Array.prototype.lastIndexOf.call(a,b,a.length-1)}:function(a,b){var c=a.length-1;0>c&&(c=Math.max(0,a.length+c));if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.lastIndexOf(b,c);for(;0<=c;c--)if(c in a&&a[c]===b)return c;return-1};_.Sc=Array.prototype.forEach?function(a,b,c){Array.prototype.forEach.call(a,b,c)}:function(a,b,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)f in e&&b.call(c,e[f],f,a)};
_.Tc=Array.prototype.filter?function(a,b,c){return Array.prototype.filter.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=[],f=0,h="string"===typeof a?a.split(""):a,k=0;k<d;k++)if(k in h){var l=h[k];b.call(c,l,k,a)&&(e[f++]=l)}return e};_.Uc=Array.prototype.map?function(a,b,c){return Array.prototype.map.call(a,b,c)}:function(a,b,c){for(var d=a.length,e=Array(d),f="string"===typeof a?a.split(""):a,h=0;h<d;h++)h in f&&(e[h]=b.call(c,f[h],h,a));return e};
_.Vc=Array.prototype.reduce?function(a,b,c){return Array.prototype.reduce.call(a,b,c)}:function(a,b,c){var d=c;(0,_.Sc)(a,function(e,f){d=b.call(void 0,d,e,f,a)});return d};_.Xc=Array.prototype.some?function(a,b,c){return Array.prototype.some.call(a,b,c)}:function(a,b,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)if(f in e&&b.call(c,e[f],f,a))return!0;return!1};
_.Yc=Array.prototype.every?function(a,b,c){return Array.prototype.every.call(a,b,c)}:function(a,b,c){for(var d=a.length,e="string"===typeof a?a.split(""):a,f=0;f<d;f++)if(f in e&&!b.call(c,e[f],f,a))return!1;return!0};
var Zc=function(a){return _.Uc(a,function(b){b=b.toString(16);return 1<b.length?b:"0"+b}).join("")};
var Haa,Iaa,ed;_.$c=function(a){return function(){return a}};_.ad=function(){return!0};_.bd=function(){return null};_.cd=function(a){return a};Haa=function(a){return function(){throw Error(a);}};Iaa=function(a){return function(){throw a;}};_.dd=function(a){var b=b||0;return function(){return a.apply(this,Array.prototype.slice.call(arguments,0,b))}};ed=function(a){var b=!1,c;return function(){b||(c=a(),b=!0);return c}};
_.fd=function(a,b,c){var d=0,e=!1,f=[],h=function(){d=0;e&&(e=!1,k())},k=function(){d=_.t.setTimeout(h,b);a.apply(c,f)};return function(l){f=arguments;d?e=!0:k()}};
var bc=function(){};bc.prototype.toString=function(){};
var od,qd;_.gd=function(a,b,c){for(var d in a)b.call(c,a[d],d,a)};_.hd=function(a,b){var c={},d;for(d in a)b.call(void 0,a[d],d,a)&&(c[d]=a[d]);return c};_.id=function(a,b,c){var d={},e;for(e in a)d[e]=b.call(c,a[e],e,a);return d};_.jd=function(a,b,c){for(var d in a)if(b.call(c,a[d],d,a))return!0;return!1};_.kd=function(a){var b=0,c;for(c in a)b++;return b};_.ac=function(a){var b=[],c=0,d;for(d in a)b[c++]=a[d];return b};_.cb=function(a){var b=[],c=0,d;for(d in a)b[c++]=d;return b};
_.ld=function(a,b){for(var c in a)if(a[c]==b)return!0;return!1};_.md=function(a){for(var b in a)return!1;return!0};_.nd=function(a,b){b in a&&delete a[b]};od=function(a,b){for(var c in a)if(!(c in b)||a[c]!==b[c])return!1;for(var d in b)if(!(d in a))return!1;return!0};_.pd=function(a){var b={},c;for(c in a)b[c]=a[c];return b};qd="constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" ");
_.rd=function(a,b){for(var c,d,e=1;e<arguments.length;e++){d=arguments[e];for(c in d)a[c]=d[c];for(var f=0;f<qd.length;f++)c=qd[f],Object.prototype.hasOwnProperty.call(d,c)&&(a[c]=d[c])}};_.sd=function(a){var b=arguments.length;if(1==b&&Array.isArray(arguments[0]))return _.sd.apply(null,arguments[0]);for(var c={},d=0;d<b;d++)c[arguments[d]]=!0;return c};
var Jaa={area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0};
var td;_.ud=function(){if(void 0===td){var a=null,b=_.t.trustedTypes;if(b&&b.createPolicy){try{a=b.createPolicy("goog#html",{createHTML:Nc,createScript:Nc,createScriptURL:Nc})}catch(c){_.t.console&&_.t.console.error(c.message)}td=a}else td=a}return td};
var xd=function(a,b){this.B=a===vd&&b||"";this.C=wd},wd,vd;xd.prototype.Fh=!0;xd.prototype.Nf=function(){return this.B};_.yd=function(a){return a instanceof xd&&a.constructor===xd&&a.C===wd?a.B:"type_error:Const"};_.zd=function(a){return new xd(vd,a)};wd={};vd={};
var Kaa,Laa,Maa,Naa,Oaa,Paa;Kaa=/<[^>]*>|&[^;]+;/g;_.Ad=function(a,b){return b?a.replace(Kaa,""):a};Laa=/[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0900-\u1fff\u200e\u2c00-\ud801\ud804-\ud839\ud83c-\udbff\uf900-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]/;Maa=/^[^A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0900-\u1fff\u200e\u2c00-\ud801\ud804-\ud839\ud83c-\udbff\uf900-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]*[\u0591-\u06ef\u06fa-\u08ff\u200f\ud802-\ud803\ud83a-\ud83b\ufb1d-\ufdff\ufe70-\ufefc]/;
Naa=/^http:\/\/.*/;Oaa=/\s+/;Paa=/[\d\u06f0-\u06f9]/;_.Bd=function(a,b){var c=0,d=0,e=!1;a=_.Ad(a,b).split(Oaa);for(b=0;b<a.length;b++){var f=a[b];Maa.test(_.Ad(f,void 0))?(c++,d++):Naa.test(f)?e=!0:Laa.test(_.Ad(f,void 0))?d++:Paa.test(f)&&(e=!0)}return 0==d?e?1:0:.4<c/d?-1:1};_.Cd=function(a,b){switch(_.Bd(b)){case 1:"ltr"!==a.dir&&(a.dir="ltr");break;case -1:"rtl"!==a.dir&&(a.dir="rtl");break;default:a.removeAttribute("dir")}};
var Fd,Dd;_.Ed=function(a,b){this.C=b===Dd?a:""};_.Ed.prototype.Fh=!0;_.Ed.prototype.Nf=function(){return this.C.toString()};_.Ed.prototype.uz=!0;_.Ed.prototype.B=function(){return 1};_.Gd=function(a){return Fd(a).toString()};Fd=function(a){return a instanceof _.Ed&&a.constructor===_.Ed?a.C:"type_error:TrustedResourceUrl"};_.Hd=function(a){return _.Ra(_.yd(a))};Dd={};_.Ra=function(a){var b=_.ud();a=b?b.createScriptURL(a):a;return new _.Ed(a,Dd)};
var Rd,Ld,Md,Nd,Od,Pd,Qd,Qaa,Ud,Td;_.Id=function(a,b){return 0==a.lastIndexOf(b,0)};_.Kb=function(a,b){var c=a.length-b.length;return 0<=c&&a.indexOf(b,c)==c};_.Jd=function(a){return/^[\s\xa0]*$/.test(a)};_.Kd=String.prototype.trim?function(a){return a.trim()}:function(a){return/^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(a)[1]};
Rd=function(a,b){if(b)a=a.replace(Ld,"&").replace(Md,"<").replace(Nd,">").replace(Od,""").replace(Pd,"'").replace(Qd,"�");else{if(!Qaa.test(a))return a;-1!=a.indexOf("&")&&(a=a.replace(Ld,"&"));-1!=a.indexOf("<")&&(a=a.replace(Md,"<"));-1!=a.indexOf(">")&&(a=a.replace(Nd,">"));-1!=a.indexOf('"')&&(a=a.replace(Od,"""));-1!=a.indexOf("'")&&(a=a.replace(Pd,"'"));-1!=a.indexOf("\x00")&&(a=a.replace(Qd,"�"))}return a};Ld=/&/g;Md=/</g;Nd=/>/g;Od=/"/g;Pd=/'/g;
Qd=/\x00/g;Qaa=/[\x00&<>"']/;_.Sd=function(a,b){return-1!=a.toLowerCase().indexOf(b.toLowerCase())};
Ud=function(a,b){var c=0;a=(0,_.Kd)(String(a)).split(".");b=(0,_.Kd)(String(b)).split(".");for(var d=Math.max(a.length,b.length),e=0;0==c&&e<d;e++){var f=a[e]||"",h=b[e]||"";do{f=/(\d*)(\D*)(.*)/.exec(f)||["","","",""];h=/(\d*)(\D*)(.*)/.exec(h)||["","","",""];if(0==f[0].length&&0==h[0].length)break;c=Td(0==f[1].length?0:parseInt(f[1],10),0==h[1].length?0:parseInt(h[1],10))||Td(0==f[2].length,0==h[2].length)||Td(f[2],h[2]);f=f[3];h=h[3]}while(0==c)}return c};Td=function(a,b){return a<b?-1:a>b?1:0};
var Raa,ae,Vd;_.Wd=function(a,b){this.C=b===Vd?a:""};_.Wd.prototype.Fh=!0;_.Wd.prototype.Nf=function(){return this.C.toString()};_.Wd.prototype.uz=!0;_.Wd.prototype.B=function(){return 1};_.Xd=function(a){return a instanceof _.Wd&&a.constructor===_.Wd?a.C:"type_error:SafeUrl"};_.Yd=/^(?:audio\/(?:3gpp2|3gpp|aac|L16|midi|mp3|mp4|mpeg|oga|ogg|opus|x-m4a|x-matroska|x-wav|wav|webm)|font\/\w+|image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp|x-icon)|text\/csv|video\/(?:mpeg|mp4|ogg|webm|quicktime|x-matroska))(?:;\w+=(?:\w+|"[\w;,= ]+"))*$/i;
Raa=/^data:(.*);base64,[a-z0-9+\/]+=*$/i;_.$d=function(a){a=String(a);a=a.replace(/(%0A|%0D)/g,"");var b=a.match(Raa);return b&&_.Yd.test(b[1])?_.Zd(a):null};ae=/^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i;_.be=function(a){if(a instanceof _.Wd)return a;a="object"==typeof a&&a.Fh?a.Nf():String(a);return ae.test(a)?_.Zd(a):_.$d(a)};
_.de=function(a,b){if(a instanceof _.Wd)return a;a="object"==typeof a&&a.Fh?a.Nf():String(a);if(b&&/^data:/i.test(a)&&(b=_.$d(a)||_.ce,b.Nf()==a))return b;ae.test(a)||(a="about:invalid#zClosurez");return _.Zd(a)};Vd={};_.Zd=function(a){return new _.Wd(a,Vd)};_.ce=_.Zd("about:invalid#zClosurez");
var ie,Uaa,Saa,le,ke,Taa,Vaa;_.fe=function(a,b){this.B=b===_.ee?a:""};_.fe.prototype.Fh=!0;_.fe.prototype.Nf=function(){return this.B};_.ge=function(a){return a instanceof _.fe&&a.constructor===_.fe?a.B:"type_error:SafeStyle"};_.ee={};_.he=new _.fe("",_.ee);
_.je=function(a){var b="",c;for(c in a)if(Object.prototype.hasOwnProperty.call(a,c)){if(!/^[-_a-zA-Z0-9]+$/.test(c))throw Error("v`"+c);var d=a[c];null!=d&&(d=Array.isArray(d)?_.Uc(d,ie).join(" "):ie(d),b+=c+":"+d+";")}return b?new _.fe(b,_.ee):_.he};
ie=function(a){if(a instanceof _.Wd)return'url("'+_.Xd(a).replace(/</g,"%3c").replace(/[\\"]/g,"\\$&")+'")';if(a instanceof xd)a=_.yd(a);else{a=String(a);var b=a.replace(ke,"$1").replace(ke,"$1").replace(le,"url");if(Saa.test(b)){if(b=!Taa.test(a)){for(var c=b=!0,d=0;d<a.length;d++){var e=a.charAt(d);"'"==e&&c?b=!b:'"'==e&&b&&(c=!c)}b=b&&c&&Uaa(a)}a=b?Vaa(a):"zClosurez"}else a="zClosurez"}if(/[{;}]/.test(a))throw new Qc("Value does not allow [{;}], got: %s.",[a]);return a};
Uaa=function(a){for(var b=!0,c=/^[-_a-zA-Z0-9]$/,d=0;d<a.length;d++){var e=a.charAt(d);if("]"==e){if(b)return!1;b=!0}else if("["==e){if(!b)return!1;b=!1}else if(!b&&!c.test(e))return!1}return b};Saa=/^[-,."'%_!# a-zA-Z0-9\[\]]+$/;le=/\b(url\([ \t\n]*)('[ -&(-\[\]-~]*'|"[ !#-\[\]-~]*"|[!#-&*-\[\]-~]*)([ \t\n]*\))/g;ke=/\b(calc|cubic-bezier|fit-content|hsl|hsla|linear-gradient|matrix|minmax|repeat|rgb|rgba|(rotate|scale|translate)(X|Y|Z|3d)?)\([-+*/0-9a-z.%\[\], ]+\)/g;Taa=/\/\*/;
Vaa=function(a){return a.replace(le,function(b,c,d,e){var f="";d=d.replace(/^(['"])(.*)\1$/,function(h,k,l){f=k;return l});b=(_.be(d)||_.ce).Nf();return c+f+b+f+e})};
var me;a:{var ne=_.t.navigator;if(ne){var oe=ne.userAgent;if(oe){me=oe;break a}}me=""}var pe=function(a){return-1!=me.indexOf(a)};
var qe=function(){return pe("Firefox")||pe("FxiOS")},se=function(){return pe("Safari")&&!(re()||pe("Coast")||pe("Opera")||pe("Edge")||pe("Edg/")||pe("OPR")||qe()||pe("Silk")||pe("Android"))},re=function(){return(pe("Chrome")||pe("CriOS"))&&!pe("Edge")},te=function(){return pe("Android")&&!(re()||qe()||pe("Opera")||pe("Silk"))};
var Ae,Waa,Xaa,ue;_.ve=function(a,b,c){this.D=c===ue?a:"";this.C=b};_.ve.prototype.uz=!0;_.ve.prototype.B=function(){return this.C};_.ve.prototype.Fh=!0;_.ve.prototype.Nf=function(){return this.D.toString()};_.xe=function(a){return _.we(a).toString()};_.we=function(a){return a instanceof _.ve&&a.constructor===_.ve?a.D:"type_error:SafeHtml"};_.ze=function(a){if(a instanceof _.ve)return a;var b="object"==typeof a,c=null;b&&a.uz&&(c=a.B());return _.ye(Rd(b&&a.Fh?a.Nf():String(a)),c)};Ae=/^[a-zA-Z0-9-]+$/;
Waa={action:!0,cite:!0,data:!0,formaction:!0,href:!0,manifest:!0,poster:!0,src:!0};Xaa={APPLET:!0,BASE:!0,EMBED:!0,IFRAME:!0,LINK:!0,MATH:!0,META:!0,OBJECT:!0,SCRIPT:!0,STYLE:!0,SVG:!0,TEMPLATE:!0};
_.Ce=function(a,b,c){var d=String(a);if(!Ae.test(d))throw Error("w");if(d.toUpperCase()in Xaa)throw Error("w");a=String(a);d=null;var e="<"+a,f="";if(b)for(l in b)if(Object.prototype.hasOwnProperty.call(b,l)){if(!Ae.test(l))throw Error("w");var h=b[l];if(null!=h){var k=l;if(h instanceof xd)h=_.yd(h);else if("style"==k.toLowerCase()){if(!_.ua(h))throw Error("w");h instanceof _.fe||(h=_.je(h));h=_.ge(h)}else{if(/^on/i.test(k))throw Error("w");if(k.toLowerCase()in Waa)if(h instanceof _.Ed)h=_.Gd(h);
else if(h instanceof _.Wd)h=_.Xd(h);else if("string"===typeof h)h=(_.be(h)||_.ce).Nf();else throw Error("w");}h.Fh&&(h=h.Nf());k=k+'="'+Rd(String(h))+'"';f+=" "+k}}var l=e+f;null==c?c=[]:Array.isArray(c)||(c=[c]);!0===Jaa[a.toLowerCase()]?l+=">":(c=_.Be(c),l+=">"+_.xe(c)+"</"+a+">",d=c.B());(b=b&&b.dir)&&(/^(ltr|rtl|auto)$/i.test(b)?d=0:d=null);return _.ye(l,d)};
_.De=function(a,b){a=_.ze(a);var c=a.B(),d=[],e=function(f){Array.isArray(f)?_.Sc(f,e):(f=_.ze(f),d.push(_.xe(f)),f=f.B(),0==c?c=f:0!=f&&c!=f&&(c=null))};_.Sc(b,e);return _.ye(d.join(_.xe(a)),c)};_.Be=function(a){return _.De(_.Ee,Array.prototype.slice.call(arguments))};ue={};_.ye=function(a,b){var c=_.ud();a=c?c.createHTML(a):a;return new _.ve(a,b,ue)};_.ye("<!DOCTYPE html>",0);_.Ee=new _.ve(_.t.trustedTypes&&_.t.trustedTypes.emptyHTML||"",0,ue);_.Fe=_.ye("<br>",0);
var Yaa;Yaa=ed(function(){var a=document.createElement("div"),b=document.createElement("div");b.appendChild(document.createElement("div"));a.appendChild(b);b=a.firstChild.firstChild;a.innerHTML=_.we(_.Ee);return!b.parentElement});_.Ge=function(a,b){if(Yaa())for(;a.lastChild;)a.removeChild(a.lastChild);a.innerHTML=_.we(b)};_.He=function(a,b){b=b instanceof _.Wd?b:_.de(b);a.href=_.Xd(b)};_.Je=function(a,b){a.src=Fd(b);_.Ie(a)};
_.Ie=function(a){var b=_.Cc(a.ownerDocument&&a.ownerDocument.defaultView);b&&a.setAttribute("nonce",b)};_.Ke=function(a,b){b=b instanceof _.Wd?b:_.de(b);a.href=_.Xd(b)};_.Le=function(a,b){b=b instanceof _.Wd?b:_.de(b);a.replace(_.Xd(b))};_.Me=function(a,b,c,d){a=a instanceof _.Wd?a:_.de(a);return(b||_.t).open(_.Xd(a),c instanceof xd?_.yd(c):c||"",d,void 0)};
var Zaa,$aa,aba,Ue,af;_.Ne=function(a){return encodeURIComponent(String(a))};_.Oe=function(a){return decodeURIComponent(a.replace(/\+/g," "))};_.Pe=function(a){return a=Rd(a,void 0)};_.Qe=function(a){return-1!=a.indexOf("&")?"document"in _.t?Zaa(a):$aa(a):a};
Zaa=function(a){var b={"&":"&","<":"<",">":">",""":'"'};var c=_.t.document.createElement("div");return a.replace(aba,function(d,e){var f=b[d];if(f)return f;"#"==e.charAt(0)&&(e=Number("0"+e.substr(1)),isNaN(e)||(f=String.fromCharCode(e)));f||(f=_.ye(d+" ",null),_.Ge(c,f),f=c.firstChild.nodeValue.slice(0,-1));return b[d]=f})};
$aa=function(a){return a.replace(/&([^;]+);/g,function(b,c){switch(c){case "amp":return"&";case "lt":return"<";case "gt":return">";case "quot":return'"';default:return"#"!=c.charAt(0)||(c=Number("0"+c.substr(1)),isNaN(c))?b:String.fromCharCode(c)}})};aba=/&([^;\s<&]+);?/g;_.Re=function(a){return String(a).replace(/([-()\[\]{}+?*.$\^|,:#<!\\])/g,"\\$1").replace(/\x08/g,"\\x08")};_.Se=String.prototype.repeat?function(a,b){return a.repeat(b)}:function(a,b){return Array(b+1).join(a)};
Ue=function(a,b){a=String(a);var c=a.indexOf(".");-1==c&&(c=a.length);return(0,_.Se)("0",Math.max(0,b-c))+a};_.Ve=function(a){return null==a?"":String(a)};_.We=function(a){return Array.prototype.join.call(arguments,"")};_.Xe=function(){return Math.floor(2147483648*Math.random()).toString(36)+Math.abs(Math.floor(2147483648*Math.random())^(0,_.Kc)()).toString(36)};_.bba=2147483648*Math.random()|0;_.Ye=function(a){var b=Number(a);return 0==b&&_.Jd(a)?NaN:b};
_.Ze=function(a){return String(a).replace(/\-([a-z])/g,function(b,c){return c.toUpperCase()})};_.$e=function(a){return String(a).replace(/([A-Z])/g,"-$1").toLowerCase()};af=function(a){return a.replace(/(^|[\s]+)([a-z])/g,function(b,c,d){return c+d.toUpperCase()})};_.bf=function(a){isFinite(a)&&(a=String(a));return"string"===typeof a?/^\s*-?0x/i.test(a)?parseInt(a,16):parseInt(a,10):NaN};
var cf=function(){return pe("iPhone")&&!pe("iPod")&&!pe("iPad")},df=function(){return cf()||pe("iPad")||pe("iPod")},ef=function(){var a=me,b="";pe("Windows")?(b=/Windows (?:NT|Phone) ([0-9.]+)/,b=(a=b.exec(a))?a[1]:"0.0"):df()?(b=/(?:iPhone|iPod|iPad|CPU)\s+OS\s+(\S+)/,b=(a=b.exec(a))&&a[1].replace(/_/g,".")):pe("Macintosh")?(b=/Mac OS X ([0-9_.]+)/,b=(a=b.exec(a))?a[1].replace(/_/g,"."):"10"):_.Sd(me,"KaiOS")?(b=/(?:KaiOS)\/(\S+)/i,b=(a=b.exec(a))&&a[1]):pe("Android")?(b=/Android\s+([^\);]+)(\)|;)/,
b=(a=b.exec(a))&&a[1]):pe("CrOS")&&(b=/(?:CrOS\s+(?:i686|x86_64)\s+([0-9.]+))/,b=(a=b.exec(a))&&a[1]);return b||""};
_.ff=function(a){_.ff[" "](a);return a};_.ff[" "]=_.Ec;_.gf=function(a,b){try{return _.ff(a[b]),!0}catch(c){}return!1};_.Xa=function(a,b,c,d){d=d?d(b):b;return Object.prototype.hasOwnProperty.call(a,d)?a[d]:a[d]=c(b)};
_.r={lw:!1,kw:!1,XB:!1,aC:!1,ow:!1,pw:!1,DI:!1};_.r.To=_.r.lw||_.r.kw||_.r.XB||_.r.ow||_.r.aC||_.r.pw;_.r.vi=function(){return me};_.r.By=function(){return _.t.navigator||null};_.r.l6=function(){return _.r.By()};_.r.Df=_.r.To?_.r.pw:pe("Opera");_.r.Ka=_.r.To?_.r.lw:pe("Trident")||pe("MSIE");_.r.Te=_.r.To?_.r.kw:pe("Edge");_.r.Mr=_.r.Te||_.r.Ka;_.r.uc=_.r.To?_.r.XB:pe("Gecko")&&!(_.Sd(me,"WebKit")&&!pe("Edge"))&&!(pe("Trident")||pe("MSIE"))&&!pe("Edge");
_.r.Mc=_.r.To?_.r.aC||_.r.ow:_.Sd(me,"WebKit")&&!pe("Edge");_.r.eS=function(){return _.r.Mc&&pe("Mobile")};_.r.XI=_.r.ow||_.r.eS();_.r.Qj=_.r.Mc;_.r.TK=function(){var a=_.r.By();return a&&a.platform||""};_.r.v2=_.r.TK();_.r.ZB=!1;_.r.bC=!1;_.r.YB=!1;_.r.cC=!1;_.r.So=!1;_.r.Mm=!1;_.r.Lm=!1;_.r.mw=!1;_.r.EI=!1;_.r.Wh=_.r.ZB||_.r.bC||_.r.YB||_.r.cC||_.r.So||_.r.Mm||_.r.Lm||_.r.mw;_.r.MAC=_.r.Wh?_.r.ZB:pe("Macintosh");_.r.ug=_.r.Wh?_.r.bC:pe("Windows");_.r.bS=function(){return pe("Linux")||pe("CrOS")};
_.r.LINUX=_.r.Wh?_.r.YB:_.r.bS();_.r.oS=function(){var a=_.r.By();return!!a&&-1!=(a.appVersion||"").indexOf("X11")};_.r.R4=_.r.Wh?_.r.cC:_.r.oS();_.r.ANDROID=_.r.Wh?_.r.So:pe("Android");_.r.Uk=_.r.Wh?_.r.Mm:cf();_.r.Tk=_.r.Wh?_.r.Lm:pe("iPad");_.r.UI=_.r.Wh?_.r.mw:pe("iPod");_.r.Or=_.r.Wh?_.r.Mm||_.r.Lm||_.r.mw:df();_.r.T0=_.r.Wh?_.r.EI:_.Sd(me,"KaiOS");_.r.wp=function(){var a="",b=_.r.HO();b&&(a=b?b[1]:"");return _.r.Ka&&(b=_.r.eE(),null!=b&&b>parseFloat(a))?String(b):a};
_.r.HO=function(){var a=_.r.vi();if(_.r.uc)return/rv:([^\);]+)(\)|;)/.exec(a);if(_.r.Te)return/Edge\/([\d\.]+)/.exec(a);if(_.r.Ka)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(_.r.Mc)return/WebKit\/(\S+)/.exec(a);if(_.r.Df)return/(?:Version)[ \/]?(\S+)/.exec(a)};_.r.eE=function(){var a=_.t.document;return a?a.documentMode:void 0};_.r.VERSION=_.r.wp();_.r.compare=function(a,b){return Ud(a,b)};_.r.nS={};_.r.Eb=function(a){return _.r.DI||_.Xa(_.r.nS,a,function(){return 0<=Ud(_.r.VERSION,a)})};
_.r.qk=_.r.Eb;_.r.xf=function(a){return Number(_.r.LI)>=a};_.r.t6=_.r.xf;var hf;if(_.t.document&&_.r.Ka){var jf=_.r.eE();hf=jf?jf:parseInt(_.r.VERSION,10)||void 0}else hf=void 0;_.r.LI=hf;
_.r.product={};_.r.product.WB=!1;_.r.product.Mm=!1;_.r.product.Lm=!1;_.r.product.So=!1;_.r.product.VB=!1;_.r.product.$B=!1;_.r.product.Om=_.r.lw||_.r.kw||_.r.pw||_.r.product.WB||_.r.product.Mm||_.r.product.Lm||_.r.product.So||_.r.product.VB||_.r.product.$B;_.r.product.Df=_.r.Df;_.r.product.Ka=_.r.Ka;_.r.product.Te=_.r.Te;_.r.product.Rg=_.r.product.Om?_.r.product.WB:qe();_.r.product.aS=function(){return cf()||pe("iPod")};_.r.product.Uk=_.r.product.Om?_.r.product.Mm:_.r.product.aS();
_.r.product.Tk=_.r.product.Om?_.r.product.Lm:pe("iPad");_.r.product.ANDROID=_.r.product.Om?_.r.product.So:te();_.r.product.Xf=_.r.product.Om?_.r.product.VB:re();_.r.product.iS=function(){return se()&&!df()};_.r.product.Qj=_.r.product.Om?_.r.product.$B:_.r.product.iS();
var kf,lf;kf={};lf=null;
_.mf=function(a,b){void 0===b&&(b=0);if(!lf){lf={};for(var c="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""),d=["+/=","+/","-_=","-_.","-_"],e=0;5>e;e++){var f=c.concat(d[e].split(""));kf[e]=f;for(var h=0;h<f.length;h++){var k=f[h];void 0===lf[k]&&(lf[k]=h)}}}b=kf[b];c=[];for(d=0;d<a.length;d+=3){var l=a[d],n=(e=d+1<a.length)?a[d+1]:0;k=(f=d+2<a.length)?a[d+2]:0;h=l>>2;l=(l&3)<<4|n>>4;n=(n&15)<<2|k>>6;k&=63;f||(k=64,e||(n=64));c.push(b[h],b[l],b[n]||"",b[k]||"")}return c.join("")};
_.nf=function(a){this.C=0;this.B=a};_.nf.prototype.next=function(){return this.C<this.B.length?{done:!1,value:this.B[this.C++]}:{done:!0,value:void 0}};"undefined"!=typeof Symbol&&"undefined"!=typeof Symbol.iterator&&(_.nf.prototype[Symbol.iterator]=function(){return this});
var of,pf,vf,zf,xf,Bf;_.z=function(){};of="function"==typeof Uint8Array;
_.A=function(a,b,c,d,e,f){a.B=null;b||(b=c?[c]:[]);a.V=c?String(c):void 0;a.H=0===c?-1:0;a.F=b;a:{c=a.F.length;b=-1;if(c&&(b=c-1,c=a.F[b],!(null===c||"object"!=typeof c||Array.isArray(c)||of&&c instanceof Uint8Array))){a.J=b-a.H;a.D=c;break a}-1<d?(a.J=Math.max(d,b+1-a.H),a.D=null):a.J=Number.MAX_VALUE}a.L={};if(e)for(d=0;d<e.length;d++)b=e[d],b<a.J?(b+=a.H,a.F[b]=a.F[b]||pf):(_.qf(a),a.D[b]=a.D[b]||pf);if(f&&f.length)for(d=0;d<f.length;d++)_.rf(a,f[d])};pf=[];
_.qf=function(a){var b=a.J+a.H;a.F[b]||(a.D=a.F[b]={})};_.E=function(a,b){if(b<a.J){b+=a.H;var c=a.F[b];return c===pf?a.F[b]=[]:c}if(a.D)return c=a.D[b],c===pf?a.D[b]=[]:c};_.Ta=function(a,b){a=_.E(a,b);return null==a?a:!!a};_.F=function(a,b,c){a=_.E(a,b);return null==a?c:a};_.G=function(a,b,c){b<a.J?a.F[b+a.H]=c:(_.qf(a),a.D[b]=c);return a};_.rf=function(a,b){for(var c,d,e=0;e<b.length;e++){var f=b[e],h=_.E(a,f);null!=h&&(c=f,d=h,_.G(a,f,void 0))}return c?(_.G(a,c,d),c):0};
_.I=function(a,b,c){a.B||(a.B={});if(!a.B[c]){var d=_.E(a,c);d&&(a.B[c]=new b(d))}return a.B[c]};_.tf=function(a,b,c){_.sf(a,b,c);b=a.B[c];b==pf&&(b=a.B[c]=[]);return b};_.sf=function(a,b,c){a.B||(a.B={});if(!a.B[c]){for(var d=_.E(a,c),e=[],f=0;f<d.length;f++)e[f]=new b(d[f]);a.B[c]=e}};_.J=function(a,b,c){a.B||(a.B={});var d=c?c.Bb():c;a.B[b]=c;return _.G(a,b,d)};_.uf=function(a,b,c){a.B||(a.B={});c=c||[];for(var d=[],e=0;e<c.length;e++)d[e]=c[e].Bb();a.B[b]=c;return _.G(a,b,d)};
vf=function(a){if(a.B)for(var b in a.B){var c=a.B[b];if(Array.isArray(c))for(var d=0;d<c.length;d++)c[d]&&c[d].Bb();else c&&c.Bb()}};_.z.prototype.Bb=function(){vf(this);return this.F};_.z.prototype.ob=of?function(){var a=Uint8Array.prototype.toJSON;Uint8Array.prototype.toJSON=function(){return _.mf(this)};try{return JSON.stringify(this.F&&this.Bb(),wf)}finally{Uint8Array.prototype.toJSON=a}}:function(){return JSON.stringify(this.F&&this.Bb(),wf)};
var wf=function(a,b){return"number"!==typeof b||!isNaN(b)&&Infinity!==b&&-Infinity!==b?b:String(b)};_.z.prototype.toString=function(){vf(this);return this.F.toString()};_.yf=function(a,b){return a==b||!(!a||!b)&&a instanceof b.constructor&&xf(a.Bb(),b.Bb())};zf=function(a,b){a=a||{};b=b||{};var c={},d;for(d in a)c[d]=0;for(d in b)c[d]=0;for(d in c)if(!xf(a[d],b[d]))return!1;return!0};
xf=function(a,b){if(a==b)return!0;if(!_.ua(a)||!_.ua(b))return"number"===typeof a&&isNaN(a)||"number"===typeof b&&isNaN(b)?String(a)==String(b):!1;if(a.constructor!=b.constructor)return!1;if(of&&a.constructor===Uint8Array){if(a.length!=b.length)return!1;for(var c=0;c<a.length;c++)if(a[c]!=b[c])return!1;return!0}if(a.constructor===Array){var d=void 0,e=void 0,f=Math.max(a.length,b.length);for(c=0;c<f;c++){var h=a[c],k=b[c];h&&h.constructor==Object&&(d=h,h=void 0);k&&k.constructor==Object&&(e=k,k=void 0);
if(!xf(h,k))return!1}return d||e?(d=d||{},e=e||{},zf(d,e)):!0}if(a.constructor===Object)return zf(a,b);throw Error("y");};_.z.prototype.clone=function(){return _.Af(this)};_.Af=function(a){return new a.constructor(Bf(a.Bb()))};Bf=function(a){if(Array.isArray(a)){for(var b=Array(a.length),c=0;c<a.length;c++){var d=a[c];null!=d&&(b[c]="object"==typeof d?Bf(d):d)}return b}if(of&&a instanceof Uint8Array)return new Uint8Array(a);b={};for(c in a)d=a[c],null!=d&&(b[c]="object"==typeof d?Bf(d):d);return b};
var Ff,Ef,Kf,Lf,cba,Jf;_.Cf=function(a,b){this.C=a|0;this.B=b|0};_.Df=function(a){return 4294967296*a.B+(a.C>>>0)};
_.Cf.prototype.toString=function(a){a=a||10;if(2>a||36<a)throw Error("z`"+a);var b=this.B>>21;if(0==b||-1==b&&(0!=this.C||-2097152!=this.B))return b=_.Df(this),10==a?""+b:b.toString(a);b=14-(a>>2);var c=Math.pow(a,b),d=Ef(c,c/4294967296);c=Ff(this,d);d=Math.abs(_.Df(this.add(_.Gf(_.Hf(c,d)))));var e=10==a?""+d:d.toString(a);e.length<b&&(e="0000000000000".substr(e.length-b)+e);d=_.Df(c);return(10==a?d:d.toString(a))+e};var If=function(a){return 0==a.C&&0==a.B};
_.Cf.prototype.Sb=function(a){return this.C==a.C&&this.B==a.B};_.Cf.prototype.compare=function(a){return this.B==a.B?this.C==a.C?0:this.C>>>0>a.C>>>0?1:-1:this.B>a.B?1:-1};_.Gf=function(a){var b=~a.C+1|0;return Ef(b,~a.B+!b|0)};_.Cf.prototype.add=function(a){var b=this.B>>>16,c=this.B&65535,d=this.C>>>16,e=a.B>>>16,f=a.B&65535,h=a.C>>>16;a=(this.C&65535)+(a.C&65535);h=(a>>>16)+(d+h);d=h>>>16;d+=c+f;b=(d>>>16)+(b+e)&65535;return Ef((h&65535)<<16|a&65535,b<<16|d&65535)};
_.Hf=function(a,b){if(If(a))return a;if(If(b))return b;var c=a.B>>>16,d=a.B&65535,e=a.C>>>16;a=a.C&65535;var f=b.B>>>16,h=b.B&65535,k=b.C>>>16;b=b.C&65535;var l=a*b;var n=(l>>>16)+e*b;var q=n>>>16;n=(n&65535)+a*k;q+=n>>>16;q+=d*b;var w=q>>>16;q=(q&65535)+e*k;w+=q>>>16;q=(q&65535)+a*h;w=w+(q>>>16)+(c*b+d*k+e*h+a*f)&65535;return Ef((n&65535)<<16|l&65535,w<<16|q&65535)};
Ff=function(a,b){if(If(b))throw Error("A");if(0>a.B){if(a.Sb(Jf)){if(b.Sb(Kf)||b.Sb(Lf))return Jf;if(b.Sb(Jf))return Kf;var c=1;if(0==c)c=a;else{var d=a.B;c=32>c?Ef(a.C>>>c|d<<32-c,d>>c):Ef(d>>c-32,0<=d?0:-1)}c=Ff(c,b).shiftLeft(1);if(c.Sb(_.Mf))return 0>b.B?Kf:Lf;a=a.add(_.Gf(_.Hf(b,c)));return c.add(Ff(a,b))}return 0>b.B?Ff(_.Gf(a),_.Gf(b)):_.Gf(Ff(_.Gf(a),b))}if(If(a))return _.Mf;if(0>b.B)return b.Sb(Jf)?_.Mf:_.Gf(Ff(a,_.Gf(b)));for(d=_.Mf;0<=a.compare(b);){c=Math.max(1,Math.floor(_.Df(a)/_.Df(b)));
var e=Math.ceil(Math.log(c)/Math.LN2);e=48>=e?1:Math.pow(2,e-48);for(var f=_.Nf(c),h=_.Hf(f,b);0>h.B||0<h.compare(a);)c-=e,f=_.Nf(c),h=_.Hf(f,b);If(f)&&(f=Kf);d=d.add(f);a=a.add(_.Gf(h))}return d};_.Cf.prototype.and=function(a){return Ef(this.C&a.C,this.B&a.B)};_.Cf.prototype.or=function(a){return Ef(this.C|a.C,this.B|a.B)};_.Cf.prototype.xor=function(a){return Ef(this.C^a.C,this.B^a.B)};
_.Cf.prototype.shiftLeft=function(a){a&=63;if(0==a)return this;var b=this.C;return 32>a?Ef(b<<a,this.B<<a|b>>>32-a):Ef(0,b<<a-32)};_.Nf=function(a){return 0<a?0x7fffffffffffffff<=a?cba:new _.Cf(a,a/4294967296):0>a?-9223372036854775808>=a?Jf:_.Gf(new _.Cf(-a,-a/4294967296)):_.Mf};Ef=function(a,b){return new _.Cf(a,b)};_.Mf=Ef(0,0);Kf=Ef(1,0);Lf=Ef(-1,-1);cba=Ef(4294967295,2147483647);Jf=Ef(0,2147483648);
var Of=function(a){_.A(this,a,"er",-1,null,null)};_.x(Of,_.z);Of.messageId="er";Of.prototype.getData=function(){return _.E(this,4)};Of.prototype.Wl=function(){return null!=_.E(this,4)};
var Qf=function(a){_.A(this,a,"xsrf",-1,null,null)};_.x(Qf,_.z);Qf.messageId="xsrf";
var Rf=function(a){return _.Xa(a.prototype,"$$generatedClassName",function(){return"Class$obf_"+{valueOf:function(){return++dba}}})},dba=1E3;
_.Sf=function(){};_.Sf.prototype.Sb=function(a){return _.Tf(this,a)};_.Sf.prototype.Rn=function(){return Uf(this)};_.Sf.prototype.toString=function(){return _.Vf(Wf(Xf(this.constructor)))+"@"+_.Vf(Yf(this.Rn()))};
var Zf=function(){},cg;_.v(Zf,_.Sf);_.bg=function(a,b){$f(a);a.F=b;ag(a)};cg=function(a,b,c){$f(a);a.H=c;a.F=b;ag(a)};Zf.prototype.C=function(a){this.B=a;eba(this,a)};var ag=function(a){a.B instanceof Error&&(Error.captureStackTrace?Error.captureStackTrace(a.B):a.B.stack=Error().stack)};Zf.prototype.toString=function(){var a=Wf(Xf(this.constructor)),b=this.F;return null==b?a:_.Vf(a)+": "+_.Vf(b)};
var gg=function(a){if(null!=a){var b=a.BJ;if(null!=b)return b}a instanceof TypeError?(b=new dg,_.bg(b,_.Vf(a)),eg(b),b.D=a,b.C(new TypeError(b)),a=b):(b=new fg,_.bg(b,_.Vf(a)),eg(b),b.D=a,b.C(Error(b)),a=b);return a},$f=function(a){a.I=_.hg([0],Zf,ig,Zf.B)},ig=function(a){return a instanceof Zf},eba=function(a,b){if(b instanceof Object)try{b.BJ=a,Object.defineProperties(b,{cause:{get:function(){return a.H&&a.H.B}}})}catch(c){}};
var jg=function(){};_.v(jg,Zf);
_.kg=function(){};_.v(_.kg,jg);_.lg=function(a){var b=new _.kg;_.bg(b,a);b.C(Error(b));return b};
var mg=function(a){return 56320<=a&&57343>=a};
_.Tf=function(a,b){return Object.is(a,b)||null==a&&null==b};
var ng=function(){};_.v(ng,_.Sf);
var og=function(){},pg;_.v(og,_.Sf);
var qg=function(){};_.v(qg,og);
_.rg=function(a){return Math.max(Math.min(a,2147483647),-2147483648)|0};
var sg=function(){};_.v(sg,_.kg);_.tg=function(a){var b=new sg;_.bg(b,a);b.C(Error(b));return b};
var ug=function(){};_.v(ug,sg);
var Uf=function(a){return a.UB||(Object.defineProperties(a,{UB:{value:++fba,enumerable:!1}}),a.UB)},fba=0;
var gba=function(){};
var vg=function(){};_.v(vg,_.Sf);
var zg;_.xg=function(a){var b;Array.isArray(a)?b=Wf(wg(a))+"@"+Yf(Uf(a)):b=a.toString();return b};zg=function(a){var b=typeof a;if("number"==b)return Xf(qg);if("boolean"==b)return Xf(ng);if("string"==b)return Xf(_.yg);if(Array.isArray(a))return wg(a);if(a instanceof _.Sf)return Xf(a.constructor);if(a)return Xf("function"==b?gba:vg);throw new TypeError("D");};
var Ag=function(){};_.v(Ag,_.kg);_.Bg=function(){var a=new Ag;$f(a);ag(a);a.C(Error(a));return a};_.Cg=function(a){var b=new Ag;_.bg(b,a);b.C(Error(b));return b};
var fg=function(){};_.v(fg,_.kg);fg.prototype.C=function(a){_.kg.prototype.C.call(this,"__noinit__"===this.D?a:this.D)};var eg=function(a){a.D="__noinit__"};
var dg=function(){};_.v(dg,fg);
var Dg=function(){};_.v(Dg,_.Sf);Dg.prototype.toString=function(){return this.Le};
var Eg=function(a,b){return"string"==typeof a?a.charCodeAt(b):a.Le.charCodeAt(b)};
var Fg=function(){};_.v(Fg,Dg);
var Gg,wg;_.hg=function(a,b,c,d){return Gg(a,d,_.Hg(b,c,a.length))};Gg=function(a,b,c){var d=a[0];if(null==d)return null;var e=[];c&&(e.TB=c);if(1<a.length){a=a.slice(1);c=c&&_.Hg(c.Sz,c.PF,c.ws-1);for(var f=0;f<d;f++)e[f]=Gg(a,b,c)}else if(void 0!==b)for(a=0;a<d;a++)e[a]=b;else e.length=d;return e};wg=function(a){return(a=a.TB)?Xf(a.Sz,a.ws):Xf(_.Sf,1)};_.Hg=function(a,b,c){return{Sz:a,PF:b,ws:c}};
var Ig=function(){this.Al=0};_.v(Ig,og);var Yf=function(a){return(a>>>0).toString(16)},Mg=function(a){if(-129<a&&128>a){var b=a+128|0,c=(Jg(),Kg)[b];c||(c=Kg[b]=Lg(a));return c}return Lg(a)},Lg=function(a){var b=new Ig;b.Al=a;return b};Ig.prototype.Sb=function(a){return _.Ng(a)&&a.Al==this.Al};Ig.prototype.Rn=function(){return this.Al};Ig.prototype.toString=function(){return""+this.Al};_.Ng=function(a){return a instanceof Ig};
var Kg,Jg=function(){Jg=function(){};Kg=_.hg([256],Ig,_.Ng,Ig.B)};
var Og;_.yg=function(){};_.v(_.yg,_.Sf);_.Vf=function(a){return null==a?"null":_.xg(a)};Og=function(a,b){var c=a.length,d,e=Eg(a,(d=b,b=b+1|0,d)),f,h;55296<=e&&56319>=e&&b<c&&mg(f=Eg(a,b))?h=65536+((e&1023)<<10)+(f&1023)|0:h=e;return h};_.Pg=function(a,b,c){return a.substr(b,c-b|0)};_.Qg=function(a){for(var b=a.length,c=0;c<b&&32>=a.charCodeAt(c);)c=c+1|0;for(var d=b;d>c&&32>=a.charCodeAt(d-1|0);)d=d-1|0;return 0<c||d<b?_.Pg(a,c,d):a};_.Rg=function(a){return"string"===typeof a};
var Tg=function(a){switch(typeof a){case "string":return Sg(a);case "number":return _.rg(a);case "boolean":return a?1231:1237;default:return null==a?0:Uf(a)}};
var Ug,Vg,Sg=function(a){Wg();var b=":"+_.Vf(a),c=Ug[b];if(null!=c)return _.rg(c);c=Vg[b];if(null==c){var d=0;c=a.length;for(var e=c-4|0,f=0;f<e;)d=a.charCodeAt(f+3|0)+Math.imul(31,a.charCodeAt(f+2|0)+Math.imul(31,a.charCodeAt(f+1|0)+Math.imul(31,a.charCodeAt(f)+Math.imul(31,d))))|0,d|=0,f=f+4|0;for(;f<c;){e=void 0;d=Math.imul(d,31);var h=(e=f,f=f+1|0,e);d=d+a.charCodeAt(h)|0}a=d|0}else a=_.rg(c);256==Xg&&(Vg=Ug,Ug=new _.Sf,Xg=0);Xg=Xg+1|0;return Ug[b]=a},Wg=function(){Wg=function(){};Vg=new _.Sf;
Xg=0;Ug=new _.Sf},Xg=0;
var Yg=function(a,b){this.C=a;this.B=b};_.v(Yg,_.Sf);var Wf=function(a){var b=Rf(a.C);0!=a.B&&(b="L"+_.Vf(b)+";");return _.Vf(Zg("[",a.B))+_.Vf(b)};Yg.prototype.toString=function(){return"class "+_.Vf(Wf(this))};var Zg=function(a,b){for(var c="",d=0;d<b;d=d+1|0)c=_.Vf(c)+_.Vf(a);return c},Xf=function(a,b){var c=b||0;return _.Xa(a.prototype,"$$class/"+c,function(){return new Yg(a,c)})};
var $g=function(a,b){if(!a)throw _.Cg(_.Vf(b)).B;},ah=function(a){if(null==a)throw a=new dg,$f(a),ag(a),eg(a),a.C(new TypeError(a)),a.B;return a};
_.bh=function(a){return a||""};
var ch=function(a,b){a=_.Vf(a);if(b)for(var c=0;c<b.length;c=c+1|0){var d=b,e=c;var f=b[c];if(null==f)var h="null";else try{h=_.xg(f)}catch(q){if(q=gg(q),q instanceof jg)h=q,f=_.Vf(Wf(zg(f)))+String.fromCharCode(64)+_.Vf(Yf(Tg(f))),_.Vf(f),h="<"+_.Vf(f)+" threw "+_.Vf(Wf(zg(h)))+">";else throw q.B;}d[e]=h}else b=["(Object[])null"];c=new Fg;c.Le="";var k=0;for(d=0;d<b.length;){e=void 0;f=a.indexOf("%s",k);if(-1==f)break;h=a;var l=f;c.Le=_.Vf(c.Le)+_.Vf(_.Pg(_.Vf(h),k,l));h=b[e=d,d=d+1|0,e];c.Le=_.Vf(c.Le)+
_.Vf(h);k=f+2|0}e=a;f=k;a=a.length;c.Le=_.Vf(c.Le)+_.Vf(_.Pg(_.Vf(e),f,a));if(d<b.length){var n;c.Le=_.Vf(c.Le)+" [";a=b[n=d,d=d+1|0,n];for(c.Le=_.Vf(c.Le)+_.Vf(a);d<b.length;)n=void 0,c.Le=_.Vf(c.Le)+", ",a=b[n=d,d=d+1|0,n],c.Le=_.Vf(c.Le)+_.Vf(a);c.Le=_.Vf(c.Le)+String.fromCharCode(93)}return c.toString()};
var dh=function(a,b){a.push(b)};
_.eh=function(a){for(var b=Array(a.length),c=0;c<a.length;c=c+1|0)b[c]=a[c];return b};
var fh=function(){return"save as | save | save a copy | copy to |"},gh=function(){return"url | web site | address | web page | add a hyperlink"},hh=function(){return"See changes since you last viewed this document"},ih=function(){return"organize | folders | Drive | move to | collection"},jh=function(){return"Move to next suggestion"},kh=function(){return"Move to previous suggestion"},lh=function(){return"views | stats | data | receipt | statistics"},nh=function(){return"photo | picture | change | switch | swap"};
var qh=function(a,b,c,d,e){a=(new oh(a,null,null)).label(b).U(c);d&&a.keys(d);null!=e&&a.icon(ph(e,a.C&&!1));return K(a)},L=function(a,b,c){return qh(a,b,c,null,null)},rh=function(a,b,c){return qh(a,"",b,null!=c?[c]:null,null)},hba=function(){var a=function(k){var l=_.sh(_.th(),"docs-sol"),n=_.sh(_.th(),"docs-aaor");if(l||n){var q=new uh;l&&(l=_.vh(_.th(),"docs-sol"),_.G(q,5,l));n&&(n=_.wh(_.th(),"docs-aaor"),_.G(q,6,n));_.J(k,82,q)}},b=function(k,l){_.Rg(l)&&_.G(k,11,l)},c=function(){},d=_.r.keyboard.Vk&&
_.r.uc?"Ctrl+`":"Alt+/",e=_.r.keyboard.Vk?"Ctrl+Alt+Z":_.r.product.Xf?"Alt+Z":"Alt+Shift+Z",f=function(k){return new oh(k,null,null)};M(L("docs-menu-bar","",59));M(K(xh(yh(f("docs-chrome-focus").label("Move to top of application").U(668),"Move focus out of editing area").key("Ctrl+Alt+Shift+M"),"Navigation")));M(L("docs-tool-bar","",347));M(K(xh(f("docs-toolbar-focus").label("Move to toolbar").U(30203),"Navigation")));M(L("docs-context-menu","",172));M(K(xh(f("docs-context-menu-shortcut").label("Context menu").U(173).keys(["Ctrl+Shift+\\"]),
"Menus")));var h=_.r.MAC;h||zh(_.Ah("docs-context-menu-shortcut"),"Ctrl+Shift+X");M(L("docs-new-menu","New",65));M(K(N(yh(Bh(f("docs-document").label("Document").U(61),"document"),"New document"),"create | write | word | pages |")));M(K(N(yh(Bh(f("docs-encrypted-document").label("Encrypted document").U(29938),"encryption-shield"),"New encrypted document"),"create | write | word | pages | encrypted")));M(K(N(yh(Bh(f("docs-presentation").label("Presentation").U(66),"punch"),"New presentation"),"create | new slides | powerpoint | keynote |")));
M(K(N(yh(Bh(f("docs-encrypted-presentation").label("Encrypted presentation").U(30024),"encryption-shield"),"New encrypted presentation"),"create | new slides | powerpoint | keynote | encrypted")));M(K(N(yh(Bh(f("docs-spreadsheet").label("Spreadsheet").U(68),"spreadsheet"),"New spreadsheet"),"create | new workbook | excel | numbers |")));M(K(N(yh(Bh(f("docs-encrypted-spreadsheet").label("Encrypted spreadsheet").U(29969),"encryption-shield"),"New encrypted spreadsheet"),"create | new workbook | excel | numbers | encrypted")));
M(K(N(yh(Bh(f("docs-form").label("Form").U(63),"form"),"New form"),"create | new survey | poll | question |")));M(K(N(yh(Bh(f("docs-drawing").label("Drawing").U(62),"drawing"),"New drawing"),"create new picture | new image | visio | diagram | chart")));M(K(N(yh(Bh(f("docs-script").label("Script").U(690),"script"),"New script"),"create | automate | macro | extension | plugin")));M(K(N(yh(Bh(f("docs-atari").label("Site").U(2351),"site"),"New Site"),"create | website | url | web page | site")));M(K(N(yh(f("docs-template").label("From template").U(64),
"New document from template"),"create | template | resume | letter |")));M(L("docs-new-custom","",60));M(L("docs-download-menu","Download",18));M(K(Bh(f("docs-email-menu").label("Email").U(30030),"gmail")));M(K(f("docs-reply-with-attachment").label("Reply with attachment").U(30038)));M(K(f("docs-reply-with-link").label("Reply with link").U(30057)));M(K(f("docs-show-original-message").label("Show original message").U(30073)));M(L("docs-file-menu","",24));M(K(Bh(f("docs-export-disabled").label("Export options disabled"),
"help").U(2188)));M(L("docs-file-custom","",373));M(K(xh(N(f("docs-open").label("Open").U(73).key("Ctrl+O"),"find | document | search ||"),"File commands")));M(L("docs-open-menu","Open",29470));M(K(Bh(N(xh(f("docs-open-drive").label("Drive").U(29471),"File commands"),"find | document | search ||"),"drive-black")));M(K(Bh(xh(f("docs-upload-drive").label("Upload from computer").U(29472),"File commands"),"file-upload")));M(L("docs-open-custom","",344));M(L("docs-upload-custom","",115));M(L("docs-upload",
"Upload",114));M(L("docs-revisions-custom","",90));M(K(N(f("docs-rename").label("Rename").U(84),"save as | save a copy | save | title |")));M(K(xh(N(f("docs-edit-description").label("Edit description").U(20).key("Ctrl+Shift+E"),"change | describe |||"),"Editing")));M(K(N(f("docs-make-copy").label("Make a copy").U(58),fh())));M(K(N(f("docs-make-copy-menu").label("Make a copy").U(29967),fh())));M(K(Bh(f("docs-unlock-file").label("Unlock").U(29775),"approvals-lock-open")));M(K(Bh(f("docs-approvals").label("Approvals").U(29790),
"approvals-stamp")));M(K(f("docs-doc-copy-made").U(29629)));M(K(f("docs-copy-from-revision").U(29644)));M(K(f("docs-docseverywhere-copy-to-google-doc").label("").U(29657)));M(K(N(Bh(f("docs-trash").label("Move to trash").U(765),"trash"),"trash | delete | remove ||")));M(K(xh(Bh(f("docs-save").label("Save").U(97).key("Ctrl+S"),"save"),"File commands")));M(K(xh(yh(Bh(f("docs-client-save").label("Save").U(29944),"save"),"Save"),"File commands")));M(K(f("docs-show-new-changes").label("See new changes").hint(hh()).U(1885)));
M(K(f("docs-show-new-changes-sidebar").U(2223)));M(K(f("docs-show-unseen-new-changes").label("See new changes").hint(hh()).U(2109)));M(K(f("docs-new-changes-mode").U(2194)));M(K(f("docs-close-new-changes").U(2193)));M(K(f("docs-show-v0").label("View original document").hint("View original document").U(2561)));M(K(f("docs-download-v0").label("Download original document").hint("Download original document").U(29240)));M(L("docs-speak-copy-selection","",663));M(L("docs-custom-inline","",79));M(K(N(f("docs-print-preview").label("Print preview").U(80),
"printer ||||")));M(K(f("docs-print-preview-mode").U(2254)));M(K(f("docs-print-preview-sidebar").U(2224)));M(L("docs-print-preview-close","",81));M(K(xh(N(Bh(f("docs-print").label("Print").U(78).key("Ctrl+P"),"print"),"printer ||||"),"File commands")));M(K(Ch(N(Bh(f("docs-star").label("Star").U(102),"star"),"favorite ||||"),function(k){var l=_.Ah("docs-star").wg();_.G(k,31,l)})));M(qh("docs-subscribe","Subscribe",104,null,"subscribe"));M(K(N(f("docs-share").label("Share").U(101),"people ||||")));
M(K(N(Bh(f("docs-organize").label("Move").U(74),"folder-move"),ih())));M(K(N(Bh(f("docs-add-shortcut").label("Add shortcut to Drive").U(74),"add-to-drive"),ih())));M(K(N(Bh(f("docs-move").label("Move").U(74),"folder-move"),ih())));M(L("docs-organize-close","",29434));M(K(N(f("docs-publish").label("Publish to the web").U(82),"send | webpage |||")));M(L("docs-publish-custom","",571));M(K(N(f("docs-report-abuse").label("Report abuse/copyright").U(87),"Report issue | error |||")));M(K(N(f("docs-page-setup").label("Page setup").U(267),
"orientation | landscape | portrait | margins | letter")));M(K(N(f("docs-doc-details").label("Document details").U(2532),"details | information | info | about |")));M(K(Dh(N(f("docs-make-available-offline").label("Make available offline").U(29452),"pin ||||"),(_.Eh(),Fh),!1)));M(K(f("docs-open-save-indicator-popup")));M(K(f("docs-install-offline-extension-requested").U(30060)));M(K(f("docs-enable-offline-requested").U(30023)));M(L("docs-one-details-pane","",29986));M(L("docs-one-details-pane-close",
"",29987));M(L("docs-one-details-pane-focus","",29988));M(K(N(f("docs-view-labels").label("Labels").U(30049),"labels | categories | metadata | fields |")));M(L("docs-edit-menu","Edit",22));M(K(xh(N(Bh(f("docs-copy").label("Copy").U(12).key("Ctrl+C"),"copy"),"Copy selection ||||"),"Editing")));M(L("docs-copypaste-custom","",13));M(K(xh(N(Bh(f("docs-cut").label("Cut").U(14).key("Ctrl+X"),"cut"),"Cut selection ||||"),"Editing")));M(L("docs-edit-custom","",19));M(K(xh(N(Bh(f("docs-paste").label("Paste").U(76).key("Ctrl+V"),
"paste"),"Paste selection ||||"),"Editing")));M(K(xh(Bh(f("docs-paste-without-formatting").label("Paste without formatting").U(2462).key("Ctrl+Shift+V"),"paste-without-formatting"),"Editing")));M(K(xh(N(Bh(f("docs-redo").label("Redo").U(83).keys(["Ctrl+Y","Ctrl+Shift+Z"]),"redo"),"redo edit ||||"),"Editing")));M(K(xh(N(f("docs-select-all").label("Select all").U(99).key("Ctrl+A"),"select everything ||||"),"Selection")));M(K(xh(N(f("docs-select-none").label("Select none").U(100).key("Ctrl+Shift+A"),
"deselect || unselect ||"),"Selection")));M(K(xh(N(Bh(f("docs-undo").label("Undo").U(113).key("Ctrl+Z"),"undo"),"undo edit ||||"),"Editing")));M(K(xh(f("docs-delete").label("Delete").U(29671),"Editing")));M(qh("docs-find-next","",29,["Ctrl+G","F3"],null));M(qh("docs-find-previous","",30,["Ctrl+Shift+G","Shift+F3"],null));M(K(xh(N(f("docs-find-start").label("Find").U(31).key("Ctrl+F"),"search | locate |||"),"Editing")));M(L("docs-find","",26));M(K(xh(N(f("docs-find-and-replace-start").label("Find and replace").U(27).key(String(_.r.keyboard.Vk?
"Meta+Shift":"Ctrl")+"+H"),"search | locate |||"),"Editing")));M(L("docs-find-and-replace-stop","",28));M(L("docs-replace","",85));M(L("docs-replace-all","",86));M(K(xh(f("docs-nudge-image-down").label("Nudge image down").U(1114).key("Down"),"With objects")));M(K(xh(f("docs-nudge-image-left").label("Nudge image left").U(1115).key("Left"),"With objects")));M(K(xh(f("docs-nudge-image-right").label("Nudge image right").U(1120).key("Right"),"With objects")));M(K(xh(f("docs-nudge-image-up").label("Nudge image up").U(1121).key("Up"),
"With objects")));M(K(xh(f("docs-nudge-image-pixel-down").label("Nudge image down by a pixel").U(1116).key("Shift+Down"),"With objects")));M(K(xh(f("docs-nudge-image-pixel-left").label("Nudge image left by a pixel").U(1117).key("Shift+Left"),"With objects")));M(K(xh(f("docs-nudge-image-pixel-right").label("Nudge image right by a pixel").U(1118).key("Shift+Right"),"With objects")));M(K(xh(f("docs-nudge-image-pixel-up").label("Nudge image up by a pixel").U(1119).key("Shift+Up"),"With objects")));M(L("docs-rotate",
"",1136));M(L("docs-rotate-menu","Rotate",535));M(K(xh(f("docs-rotate-cw").label("Rotate clockwise by 15\u00b0").U(1077).key("Alt+Right"),"With objects")));M(K(xh(f("docs-rotate-cw-1").label("Rotate clockwise by 1\u00b0").U(1078).key("Alt+Shift+Right"),"With objects")));M(K(N(f("docs-rotate-cw-90").label("Rotate clockwise 90\u00b0").U(537),"turn | pivot | clockwise | spin |")));M(K(xh(f("docs-rotate-ccw").label("Rotate counter-clockwise by 15\u00b0").U(1079).key("Alt+Left"),"With objects")));M(K(xh(f("docs-rotate-ccw-1").label("Rotate counter-clockwise by 1\u00b0").U(1080).key("Alt+Shift+Left"),
"With objects")));M(K(N(f("docs-rotate-ccw-90").label("Rotate counter-clockwise 90\u00b0").U(536),"turn | pivot | counterclockwise | spin |")));M(K(xh(f("docs-rotate-image-cw").label("Rotate image clockwise by 15\u00b0").U(1130).key("Alt+Right"),"With objects")));M(K(xh(f("docs-rotate-image-cw-1").label("Rotate image clockwise by 1\u00b0").U(1131).key("Alt+Shift+Right"),"With objects")));M(K(xh(f("docs-rotate-image-ccw").label("Rotate image counter-clockwise by 15\u00b0").U(1132).key("Alt+Left"),
"With objects")));M(K(xh(f("docs-rotate-image-ccw-1").label("Rotate image counter-clockwise by 1\u00b0").U(1133).key("Alt+Shift+Left"),"With objects")));M(K(f("docs-insert-slides-as-images")));M(L("docs-insert-menu","Insert",46));M(K(f("docs-insert-date-and-time").U(1038)));M(K(N(f("docs-insert-date-and-time-dialog").label("Date & time").U(1037).hint("Insert date and time"),"insert date and time | insert date | insert time | insert day |")));M(K(N(yh(Bh(f("docs-image").label("Image").U(43),"image-type"),
"Insert image"),"photo | picture | add a photo | add a picture | add an image")));M(K(f("docs-insert-image-blob").U(1704)));M(K(N(Bh(f("docs-shape").label("Shape").U(47),"shapes"),"drawing | diagram |||")));M(K(N(yh(Bh(f("docs-special-character").label("Special characters").U(48).hint("Insert special characters"),"special-character"),"Insert special characters"),"symbol | add a symbol | add symbols ||")));M(K(N(yh(Bh(f("docs-text-box").label("Text box").U(49),"textbox"),"Insert text box"),"area | add |||")));
M(K(N(yh(Bh(f("docs-video").label("Video").U(50),"video"),"Insert video"),"movie | youtube | add ||")));M(K(N(yh(Bh(f("docs-audio").label("Audio").U(29602),"volume-up"),"Insert audio"),"music | sound | add | audio |")));M(K(f("docs-insert-image-sidebar-close").U(29364)));M(K(Bh(f("docs-insert-image-menu").label("Image").hint("Insert image").U(29365),"image-type")));M(K(Bh(N(yh(f("docs-insert-image-upload").label("Upload from computer"),"Upload and insert image").U(29366),"upload and insert image | insert via upload | upload and insert picture | upload image from computer |"),
"file-upload")));M(K(Bh(N(yh(f("docs-insert-image-websearch").label("Search the web"),"Insert image from web").U(29367),"insert image from web | search image on web | search picture | insert picture from web |"),"search-this-document")));M(K(f("docs-insert-image-websearch-sidebar").U(29709)));M(K(Bh(N(yh(f("docs-insert-image-drive").label("Drive"),"Insert image from Drive").U(29368),"insert image from Google Drive | insert picture from Google Drive | search image in Drive | search picture in Drive |"),
"drive-black")));M(K(f("docs-insert-image-drive-sidebar").U(29710)));M(K(Bh(N(yh(f("docs-insert-image-photos").label("Photos"),"Insert image from Photos").U(29369),"insert image from Google Photos | insert photo | add photo | add photo from Photos Albums |"),"photos")));M(K(f("docs-insert-image-photos-sidebar").U(29711)));M(K(Bh(N(yh(f("docs-insert-image-by-url").label("By URL"),"Insert image by URL").U(29370),"insert image by url | insert picture by url | insert image using url | url insert image |"),
"link")));M(K(Bh(N(yh(f("docs-insert-image-camera").label("Camera"),"Insert image from Camera").U(29612),"insert image from camera | insert image using camera | insert image from webcam | insert picture from camera |"),"camera")));M(K(f("onepick-item-preview").U(29413)));M(K(f("insert-from-onepick-item-preview").U(29414)));M(K(f("docs-insert-sheets-charts")));M(K(Bh(f("docs-insert-chart-menu").label("Chart").U(29191),"chart")));M(K(Bh(f("docs-insert-chart").label("From Sheets").U(29151),"spreadsheet")));
M(K(Bh(f("docs-insert-bar-chart").label("Bar").U(29187),"bar-chart")));M(K(Bh(f("docs-insert-column-chart").label("Column").U(29188),"column-chart")));M(K(Bh(f("docs-insert-line-chart").label("Line").U(29189),"line-chart")));M(K(Bh(f("docs-insert-pie-chart").label("Pie").U(29190),"pie-chart")));M(K(xh(Bh(f("docs-copy-format").label("Copy formatting").U(174).key("Ctrl+Alt+C"),"textbox"),"Editing")));M(K(xh(f("docs-paste-format").label("Paste formatting").U(271).key("Ctrl+Alt+V"),"Editing")));M(L("docs-format-menu",
"Format",34));M(K(xh(N(Bh(f("docs-bold").label("Bold").U(2).key("Ctrl+B"),"bold"),"strong | dark |||"),"Text formatting")));M(K(f("docs-format-font-menu").label("Text").U(29565)));M(K(Ch(f("docs-font-family").label("Font").U(32),function(k,l){_.Rg(l)&&_.G(k,12,l);_.G(k,11,"en")})));M(K(f("docs-font-family-palette").label("Font").U(29465)));M(K(N(Ch(f("docs-edit-font-family").label("Get fonts").U(21),function(k,l){_.Rg(l)&&_.G(k,11,l)}),"Get fonts ||||")));M(K(f("docs-scheme-font-family").U(29805)));
M(K(N(Ch(f("docs-font-size").label("Font size").U(33),function(k,l){("number"===typeof l||l instanceof og)&&_.G(k,9,"number"==typeof l?_.rg(l):l.Al)}),"point | px | pt | change font size | set font size")));M(K(f("docs-font-size-menu").label("Size").U(2235)));M(K(N(f("docs-font-size-increment").label("Increase font size").U(2236).key("Ctrl+Shift+."),"bigger | make the font bigger | make bigger | make it bigger |")));M(K(N(f("docs-font-size-decrement").label("Decrease font size").U(2237).key("Ctrl+Shift+,"),
"smaller | make the font smaller | make smaller | make it smaller |")));M(K(f("docs-font-size-palette").label("Font size").U(29466)));M(K(xh(N(Bh(f("docs-italic").label("Italic").U(51).key("Ctrl+I"),"italic"),"emphasis | emphasized | italicize ||"),"Text formatting")));M(K(xh(N(Bh(f("docs-strikethrough").label("Strikethrough").U(103).key(h?"Ctrl+Shift+X":"Alt+Shift+5"),"strikethrough"),"strike-through | strikethrough |||"),"Text formatting")));M(K(f("docs-deprecated-strikethrough-shortcut").U(29353).keys([])));
h&&zh(_.Ah("docs-deprecated-strikethrough-shortcut"),"Alt+Shift+5");M(K(xh(N(Bh(f("docs-subscript").label("Subscript").U(105).key("Ctrl+,"),"subscript"),"sub script | sub-script | apply subscript ||"),"Text formatting")));M(K(xh(N(Bh(f("docs-superscript").label("Superscript").U(106).key("Ctrl+."),"superscript"),"super script | super-script | exponent | apply superscript |"),"Text formatting")));M(L("docs-border-color","Border color",363));M(L("docs-border-style","Border style",372));M(K(N(Ch(Bh(f("docs-text-bgcolor").label("Highlight color").U(108),
"text-bgcolor"),function(k,l){if(_.Rg(l)){var n=new Gh;_.G(n,1,l);_.J(k,3,n)}}),"highlight | background color |||")));M(qh("docs-no-text-bgcolor","Transparent",680,null,"no-color"));M(K(f("docs-text-color").label("Color").hint("Text color").U(374)));M(L("docs-text-color-highlight","Highlight color",29518));M(K(Ch(Bh(N(f("docs-text-fgcolor").label("Text color"),"Font color ||||").U(109),"text-color"),function(k,l){if(_.Rg(l)){var n=new Gh;_.G(n,1,l);_.J(k,4,n)}})));M(K(f("docs-scheme-color-palette").U(29806)));
M(K(xh(Bh(f("docs-underline").label("Underline").U(112).key("Ctrl+U"),"underline"),"Text formatting")));M(qh("docs-no-fill","Transparent",69,null,"no-color"));M(qh("docs-no-line","Transparent",70,null,"no-color"));M(qh("docs-fill-color","Fill color",25,null,"fill-color"));M(qh("docs-line-color","Border color",52,null,"line-color"));M(L("docs-line-menu","Borders & lines",1171));M(K(N(Bh(f("docs-line-width").label("Border weight").U(53),"line-width"),"thickness | width |||")));M(K(N(Bh(f("docs-line-dashing").label("Border dash").U(508),
"line-type"),"border style | line style | dotted line | stroke style |")));M(K(Ch(Bh(f("docs-paint-format").label("Paint format").U(75),"paint-format"),function(k,l){var n=new Hh;_.G(n,1,!0===l);_.J(k,92,n)})));M(K(xh(N(Bh(f("docs-clear-formatting").label("Clear formatting").U(5).hint("Clear formatting").keys(["Ctrl+\\","Ctrl+Space"]),"clear-formatting"),"remove formatting ||||"),"Text formatting")));M(K(xh(f("docs-open-link").label("Open link").U(356).key("Alt+Enter"),"Editing")));M(K(Bh(N(f("docs-delete-link").label("Remove link").hint("Remove link"),
"delete link ||||").U(15),"unlink")));M(K(N(yh(f("docs-insert-link").U(44),"Insert link"),gh())));M(K(xh(N(yh(Bh(f("docs-insert-link-dialog").label("Link").U(45).hint("Insert link").key("Ctrl+K"),"link"),"Insert link"),gh()),"Editing")));M(K(Bh(N(f("docs-copy-link").label("Copy link URL").hint("Copy link URL"),"copy link ||||").U(362),"copy")));M(K(f("docs-open-doc-previews-mole").U(29858).visible(!1)));M(K(f("docs-doc-previews-open-sample-mole").label("Open sample doc previews pane").U(29930)));
M(K(f("docs-toggle-display-link-previews-card").label("Show link details").U(29924).enabled(!0)));M(K(f("docs-request-drive-access").U(29943)));M(K(f("docs-smart-compose-suggestion-allowed").U(29904)));M(K(f("docs-smart-compose-after-new-suggestion-shown").U(29939).enabled(!0)));M(K(f("docs-smart-compose-feedback-dialog-open").U(29925)));M(K(f("docs-smart-compose-submit-feedback").U(29926)));M(K(f("docs-smart-compose-show-mobile-promo").U(30113)));M(K(f("docs-smart-select-feedback-dialog-open").U(30003)));
M(K(f("docs-smart-select-feedback-submit").U(30004)));M(K(f("docs-smart-select-suggestion-liked").U(29981)));M(K(f("docs-smart-select-suggestion-disliked").U(29982)));M(K(f("docs-smart-select-suggestion-open-external").U(29999)));M(K(f("docs-smart-select-suggestion-email").U(30002)));M(K(f("docs-autocorrect-feedback-dialog-open").U(29959)));M(K(f("docs-autocorrect-submit-feedback").U(29960)));M(K(f("docs-autocorrect-bubble-rendered").U(29964).enabled(!0)));M(K(f("docs-clear-autocorrect-style").U(30191).enabled(!0)));
M(K(f("docs-autocorrect-submit-feedback-docos").U(30170)));M(K(f("docs-autocorrect-feedback-dialog-open-docos").U(30171)));M(L("docs-autocorrect-style-applied","",30015));M(L("docs-autocorrect-style-removed","",30016));M(K(f("docs-doc-previews-toggle-mole").U(29935)));M(K(Bh(f("docs-doc-previews-copy-link").hint("Copy link URL"),"copy").U(29936)));M(K(Bh(f("docs-doc-previews-close-mole").hint("Close preview"),"close-20").U(29934)));M(K(Bh(f("docs-doc-previews-open-in-new-tab"),"open-in-external").hint("Open in new tab").U(29937)));
M(K(Bh(f("docs-link-open-doc-previews-mole"),"popout-below").label("Pop out viewer").U(29899)));M(K(Ih(xh(f("docs-focus-bubble").U(659).key(Jh(["E","P"])).label("Move focus to popup"),"Navigation"))));M(L("docs-view-menu","",118));M(L("docs-view-custom","",117));M(K(xh(N(f("docs-zoom-in").label("Zoom in").U(119).keys(["Ctrl+Alt+Num-Plus","Ctrl+Alt+Equals"]),"increase | bigger | enlarge | magnify |"),"Navigation")));M(K(xh(N(f("docs-zoom-out").label("Zoom out").U(120).keys(["Ctrl+Alt+Num-Minus","Ctrl+Alt+Dash"]),
"decrease | smaller |||"),"Navigation")));M(K(xh(Ih(N(f("docs-view-compact").label("Compact controls").U(116).key("Ctrl+Shift+F"),"exit | leave |||")),"Navigation")));M(K(xh(N(f("docs-hide-controls").label("Full screen").U(42),"exit | leave |||"),"View")));M(K(Bh(N(f("docs-open-a11y-settings").label("Accessibility settings").U(29745),"braille | collaborator announcements | screen magnifier | screen reader |"),"accessibility")));M(K(N(f("docs-enable-screen-magnifier").label("Enable Screen Magnifier support").U(29444),
"magnification ||||")));M(K(xh(f("docs-toggle-screenreader").label("Toggle screen reader support").U(23).keys(["Ctrl+Alt+Z","Alt+Shift+`"]),"Screen reader support")));M(K(Dh(xh(N(f("docs-quick-access-menu").label("Quick Access").U(30146),"navigation | move | jump | go to | find").key("Alt+."),"Menus"),Kh,!0)));M(K(f("docs-show-ruler").label("Show ruler").hint("Show ruler").U(29613)));M(K(f("docs-toggle-braille-with-screenreader").label("Enable Braille support").U(30048).key("Ctrl+Alt+H").selected(!1)));
M(K(f("docs-enable-braille").label("Enable Braille support").U(1271).selected(!1)));M(K(N(f("docs-mute_collaborators").label("Turn off collaborator announcements").U(29251),"silence collaborators | mute collaborators |||").selected(!1)));M(K(xh(Ih(f("docs-speak-selection").label("Speak selection").U(338).key(Jh(["A","X"]))),"Screen reader support")));M(K(xh(Ih(N(f("docs-speak-selection-formatting").label("Speak selection formatting"),"speak formatting ||||").U(660).key(Jh(["A","F"]))),"Screen reader support")));
M(K(xh(Ih(N(f("docs-speak-remaining-section").label("Speak from cursor location"),"speak from here | speak from location |||").U(1218).key(Jh(["A","R"]))),"Screen reader support")));M(K(xh(Ih(N(f("docs-docos-speak-comment").label("Speak comment"),"speak discussion | speak suggestion | speak smart todo | speak action item | speak feedback").U(29350).key(Jh(["A","C"]))),"Screen reader support")));M(K(xh(Ih(N(f("docs-docos-speak-anchor").label("Speak anchor"),"speak commented text | |||").U(29351).key(Jh(["A",
"A"]))),"Screen reader support")));M(L("docs-tools-menu","",111));M(L("docs-spelling-menu",_.vh(_.th(),"docs-senu")?"Spelling and grammar":"Spelling",29598));M(L("spellcheck-bubble-tab-to-focus","",29966));M(L("docs-tools-custom","",110));M(L("docs-macros-extensions","",775));M(L("docs-macros-extension-promo","",29559));M(K(Bh(f("open-spell-and-grammar-help-page").label("Grammar (learn more)"),"dogfood").U(29618)));M(L("docs-tools-top-custom","",721));M(K(N(f("docs-preferences").label("Preferences").U(77),
"options | settings | configurations ||")));M(L("docs-dictionary-sidebar","",29211));h=xh(N(yh(f("docs-dictionary-sidebar-focus").label("Dictionary").U(29212).hint("Define word"),"Define word"),"dictionary | look up | lookup | |"),"Editing").key("Ctrl+Shift+Y");M(K(h));M(L("docs-dictionary-close","",29214));M(L("docs-dictionary-search","",29335));M(L("docs-contentembedding-sidebar","",29767));h=f("docs-contentembedding-sidebar-focus").label("Linked objects").U(29768);M(K(h));M(L("docs-contentembedding-sidebar-close",
"",29769));M(L("docs-contentembedding-sidebar-refresh","",29770));M(L("docs-explore-sidebar","",2558));h=xh(N(Bh(f("docs-explore-menu").label("Explore"),"explore-black-padded").U(2557),"explore | search | lookup | look up |"),"Navigation").key("Ctrl+Alt+Shift+I");M(K(h));M(L("docs-explore-widget","",29275));M(L("docs-explore-close","",2609));M(L("docs-explore-refresh-nuggets","",2612));M(L("docs-explore-search","",2613));M(L("docs-explore-preview-image","",29205));M(L("docs-explore-show-more","",
2610));M(L("docs-explore-suggested-content-available","",29201));M(L("docs-explore-suggested-content-not-available","",29202));M(L("docs-explore-feedback","",29224));M(L("docs-explore-promo-show","",29281));M(L("docs-explore-promo-continue","",29279));M(L("docs-explore-promo-dismiss","",29280));M(L("docs-explore-content-insertion-promo-continue","",29674));M(L("docs-explore-survey-promo-open-link","",29630));M(L("docs-focus-fact-suggestions-menu","",29521));M(L("docs-close-fact-suggestions-menu",
"",29523));M(K(f("docs-collaborator-activity-close").U(29766)));M(K(xh(N(f("docs-collaborator-activity-focus").U(29753).key("Ctrl+Alt+Shift+R").label("Show live edits"),"see live edits | collaborator changes | follow collaborators ||"),"Navigation")));M(K(f("docs-collaborator-activity-sidebar").U(29755)));M(K(f("docs-collaborator-activity-tileclicked").U(29774)));M(L("docs-companion-sidebar","",29359));M(K(f("docs-companion-open").label("Companion").U(29358)));M(L("docs-companion-close","",29356));
M(L("docs-companion-focus","",29357));M(K(Ch(f("docs-companion-add-content-to-host").U(29558),function(k){var l=new Lh;_.J(k,93,l)})));M(K(Bh(f("docs-companion-save-link-to-keep").label("Save to Keep").U(29626),"keep-lightbulb")));M(K(Bh(f("docs-companion-save-selection-to-keep").label("Save to Keep").U(29627),"keep-lightbulb")));M(L("docs-companion-collapse","",29734));M(K(f("docs-companion-editor-gsao-file-scope-granted").U(30074)));M(K(f("docs-cycle-focus-previous").label("Jump to previous section").U(29692).key(pe("CrOS")?
"Alt+Shift+,":"Ctrl+Alt+,")));M(K(f("docs-cycle-focus-next").label("Jump to next section").U(29693).key(pe("CrOS")?"Alt+Shift+.":"Ctrl+Alt+.")));M(K(f("docs-insert-tool-open").label("Research").U(1899)));M(K(f("docs-insert-tool-open-image-search").U(2211)));M(K(f("docs-insert-tool-open-web").U(2191)));M(L("docs-insert-tool-insert-citation","",29298));M(L("docs-insert-tool-insert-link","",2201));M(K(f("docs-insert-tool-insert-text").U(1943)));M(L("docs-insert-tool-insert-image","",2200));M(L("docs-insert-tool-insert-image-placeholder",
"",29270));M(K(f("docs-insert-tool-insert-image-blob").U(29262)));M(K(f("docs-insert-tool-copy").U(2598)));M(K(f("docs-insert-tool-paste").U(2599)));M(K(f("docs-insert-tool-search").U(2192)));M(K(N(f("docs-table-delete").label("Delete table").U(1258),"remove table ||||")));M(K(N(f("docs-table-delete-column").label("Delete column").U(1259),"remove column ||||")));M(K(N(f("docs-table-delete-row").label("Delete row").U(1260),"remove row ||||")));M(K(N(f("docs-table-distribute-columns").U(717).label("Distribute columns"),
"even | equal | same size | width |")));M(K(N(f("docs-table-distribute-rows").U(718).label("Distribute rows"),"even | equal | same size | height |")));M(K(Ch(f("docs-table-insert").label("Insert table").U(1261),function(k,l){l instanceof _.Mh&&(_.G(k,13,_.rg(l.width)),_.G(k,14,_.rg(l.height)))})));_.Ah("docs-table-insert").setValue(new _.Mh(0,0));M(K(N(f("docs-table-insert-column-left").label("Insert column left").U(1262),"add column left | insert new column left | add new column left ||")));M(K(N(f("docs-table-insert-column-right").label("Insert column right").U(1263),
"add column right | insert new column right | add new column right | insert column | insert new column")));M(K(f("docs-table-insert-menu").label("Table").U(1264)));M(K(N(f("docs-table-insert-row-above").label("Insert row above").U(1266),"add row above | insert new row above | add new row above ||")));M(K(N(f("docs-table-insert-row-below").label("Insert row below").U(1267),"add row below | insert new row below | add new row below | insert row | insert new row")));M(K(f("docs-mobile-ui-table-insert-column-left").label("Insert column left").U(1946)));
M(K(f("docs-mobile-ui-table-insert-column-right").label("Insert column right").U(1947)));M(K(f("docs-mobile-ui-table-insert-row-above").label("Insert row above").U(1948)));M(K(f("docs-mobile-ui-table-insert-row-below").label("Insert row below").U(1949)));M(K(f("docs-mobile-ui-table-insert-single-column-left").label("Insert single column left").U(29347)));M(K(f("docs-mobile-ui-table-insert-single-column-right").label("Insert single column right").U(29348)));M(K(f("docs-mobile-ui-table-insert-single-row-above").label("Insert single row above").U(29345)));
M(K(f("docs-mobile-ui-table-insert-single-row-below").label("Insert single row below").U(29346)));M(L("docs-table-insert-table-menu","Insert table",1265));M(L("docs-table-menu","Table",107));M(K(N(f("docs-table-merge-cells").label("Merge cells").U(1268),"combine ||||")));M(K(N(f("docs-table-unmerge-cells").label("Unmerge cells").U(1269),"separate | split |||")));M(K(Dh(f("docs-table-toggle-merge-cells").label("Merge cells").U(29417),Fh,!1)));M(K(xh(N(f("docs-table-select-borders").label("Select table borders").U(446),
"select borders ||||"),"Selection")));M(L("docs-help-menu","",40));M(K(N(f("docs-help-center").label("Help Center").U(35),"help forum | user forum | discussion forum ||")));M(K(xh(N(yh(Bh(f("docs-help-shortcuts").label("Keyboard shortcuts").U(41),"keyboard").key("Ctrl+/"),"See keyboard shortcuts"),"hotkeys ||||"),"Navigation")));M(K(N(f("docs-feedback").label("Report a problem").U(37),"Problem | error | feedback ||")));M(K(N(f("docs-feedback-experiment").label("Report a problem").U(29945),"Problem | error | feedback ||")));
M(K(N(f("docs-google-help").label("Get help").U(580),"Problem | help |||")));M(L("docs-help-custom","",36));M(K(N(f("docs-help-training").label("Training").U(29802),"learn | discover |||")));M(K(N(f("docs-help-updates").label("Updates").U(29803),"blog | news |||")));M(K(f("docs-help-privacy").label("Privacy Policy").U(30025)));M(K(f("docs-help-tos").label("Terms of Service").U(30026)));M(K(f("docs-screenreader-menu").U(1278)));M(K(f("docs-screenreader-menu-toolbar").U(2195)));M(L("docs-screenreader-speak-menu",
"Speak",1317));M(L("docs-screenreader-comments-menu","Comments",1368));M(L("docs-screenreader-edits-menu","Edits",2337));M(L("docs-screenreader-footnote-menu","Footnote",1369));M(L("docs-screenreader-headings-menu","Headings",1378));M(L("docs-screenreader-graphics-menu","Graphics",1371));M(L("docs-screenreader-list-menu","List",1377));M(L("docs-screenreader-link-menu","Link",1373));M(L("docs-screenreader-table-menu","Table",1374));M(L("docs-screenreader-sector-menu","Section",29784));M(L("docs-screenreader-misspelling-menu",
"Misspelling",1375));M(L("docs-screenreader-formatting-menu","Formatting",1376));M(L("docs-screenreader-settings-menu","Settings",1372));M(L("docs-screenreader-menu-custom-items","",1284));M(L("docs-revisions-zoomin","Zoom in",95));M(L("docs-revisions-zoomout","Zoom out",96));M(L("docs-revisions-revert","",92));M(K(f("docs-revisions-mode").U(1956)));M(L("docs-revisions-show","",93));M(K(f("docs-revisions-show-revert-dialog").hint("Restore this version").U(29319)));M(K(f("docs-revisions-show-snapshot-dialog").label("Name current version").U(29430)));
M(L("docs-revisions-close","",89));M(L("docs-revisions-sidebar","",94));M(L("docs-revisions-diff","",91));M(L("docs-revisions-load-details","",29299));M(L("docs-revisions-toggle-name-filter","",29336));M(K(xh(N(f("docs-revisions-focus").label("See version history").U(346).key("Ctrl+Alt+Shift+H"),"revision history | revert old changes | edit history | version control | prior versions"),"Navigation")));M(L("docs-revisions-menu","Version history",29448));M(K(xh(Ih(N(f("docs-revisions-move-to-change-next").label("Move to next edit").hint("Next edit").U(1060).keys(["Ctrl+Alt+K",
Jh(["N","R"])]),"move to next edit in version history | move to next change |||")),"Navigation")));M(K(xh(Ih(N(f("docs-revisions-move-to-change-previous").label("Move to previous edit").hint("Previous edit").U(1061).keys(["Ctrl+Alt+J",Jh(["P","R"])]),"move to previous edit in version history | move to previous change |||")),"Navigation")));M(K(f("docs-revisions-modify-name").U(29323)));M(K(f("docs-revisions-snapshot-modify-name").U(29447)));M(K(f("docs-revisions-tile-menu").label("More actions").U(29329)));
M(K(f("docs-show-blame").label("Show edit history").U(29695)));M(K(N(f("docs-show-blame-cell").label("Show edit history of a cell").U(29695),"cell revision history | cell version history | last edit ||")));M(K(f("docs-show-blame-contributors").label("Show editors").U(30166)));M(L("docs-chat-sidebar","",4));M(K(xh(N(f("docs-chat-focus").label("Chat").U(3).key("Shift+Esc"),"Chat ||||"),"Navigation")));M(L("docs-details-close","",353));M(L("docs-details-sidebar","",355));M(L("docs-details-focus","",
354));M(K(f("docs-hub-open-external").hint("Open in new tab").label("Open in new tab").U(30041)));M(K(f("docs-hub-close").hint("Close").label("Close").U(30042)));M(K(Ih(f("docs-omnibox").U(71).hint("Search the menus").label("Search the menus").keys([d,e]))));M(L("docs-help-omnibox","",750));M(qh("docs-hats-focus","",1007,["Ctrl+Alt+Shift+D"],null));M(K(xh(N(yh(Bh(f("docs-docos-insert-discussion").label("Comment").U(17).hint("Add comment").key("Ctrl+Alt+M"),"comment"),"Add comment"),"Add comment | Insert comment |||"),
"Comments")));M(K(N(f("docs-docos-insert-posted-discussion").label("Comment").U(29260),"Add comment | Insert comment |||")));M(L("docs-docos-delete-discussion","Delete",16));M(K(xh(N(yh(Bh(f("docs-docos-activity-box").label("Open comment history").U(625).hint("Open comment history").key("Ctrl+Alt+Shift+A"),"insert-comment"),"Open comment history"),"Open comment history | Open discussion history | Open comments activity box ||"),"Comments")));M(K(f("docs-docos-accept-suggestion").label("Accept").U(670).hint("Accept suggestion")));
M(L("docos-delete-suggestion","",768));M(K(f("docs-docos-accept-suggestion-from-menu").label("Accept suggestion").U(29610).hint("Accept suggestion")));M(K(Ih(N(yh(f("docs-docos-move-to-suggestion-next").label(jh()),jh()).hint(jh()).U(29456).key(Jh(["N","U"])),"Go to next suggestion | Move to next recommendation |||"))));M(K(Ih(N(yh(f("docs-docos-move-to-suggestion-previous").label(kh()),kh()).hint(kh()).U(29457).key(Jh(["P","U"])),"Go to previous suggestion | Move to previous recommendation |||"))));
M(K(N(yh(f("docs-docos-accept-all-suggestions").label("Accept all"),"Accept all suggestions").hint("Accept all suggestions").U(29327),"Apply recommendations | Batch accept |||")));M(K(N(yh(f("docs-docos-reject-all-suggestions").label("Reject all"),"Reject all suggestions").hint("Reject all suggestions").U(29328),"Dismiss recommendations | Delete recommendations | Batch reject ||")));M(K(f("docs-docos-accept-all-suggestions-menu").hint("More accept options").U(29463)));M(K(f("docs-docos-reject-all-suggestions-menu").hint("More reject options").U(29464)));
M(K(N(f("docs-docos-preview-accept-all-suggestions").label('Preview "Accept all"').U(29338),"Show recommendations | Preview batch applied suggestions |||")));M(K(N(f("docs-docos-preview-reject-all-suggestions").label('Preview "Reject all"').U(29339),"Preview dismiss recommendations | Show deleted recommendations | Preview batch reject ||")));M(K(N(f("docs-docos-highlight-suggestions").label("Show suggested edits").U(29340),"Show recommendations | View recommendations |||")));M(K(xh(Ih(N(f("docs-docos-open-suggestion-dialog").label("Review suggested edits").U(29387),
"Batch accept recommendations | Reject all suggestions |||").key(Jh(["O","U"]))),"Comments")));M(L("docs-docos-close-suggestion-dialog","",29388));M(L("docs-docos-refresh-suggestion-preview","Refresh",29415));M(K(xh(Ih(f("docs-docos-move-into-discussion").label("Enter current comment").U(235).key(Jh(["E","C"]))),"Comments")));M(K(xh(f("docs-docos-view-discussion").label("View comment").U(2356),"Comments")));M(K(xh(f("docs-docos-view-comment").label("View comment").U(29257),"Comments")));M(K(xh(f("docs-docos-view-suggestion").label("View suggestion").U(29258),
"Comments")));M(K(xh(Ih(N(f("docs-docos-move-to-discussion-next").label("Move to next comment").U(238).key(Jh(["N","C"])),"Go to next comment ||||")),"Comments")));M(K(xh(Ih(N(f("docs-docos-move-to-discussion-previous").label("Move to previous comment").U(239).key(Jh(["P","C"])),"Go to previous comment ||||")),"Comments")));M(K(f("docs-docos-reject-suggestion").label("Reject").U(671).hint("Reject suggestion")));M(K(f("docs-docos-reject-suggestion-from-menu").label("Reject suggestion").U(29611).hint("Reject suggestion")));
M(K(xh(Bh(f("docs-docos-insert-instant-doco").U(17),"instant-comment-blue600-24").label("Add comment").hint("Add comment"),"Comments").visible(!1)));M(K(xh(Bh(f("docs-docos-instant-suggest-mode").U(30128),"instant-suggest-green600-24").label("Suggest edits").hint("Suggest edits"),"Comments")));M(K(f("docs-docos-convert-smart-todo-to-discussion").U(29208)));M(K(f("docs-docos-convert-smart-todo-to-draft").U(29246)));M(K(f("docs-docos-convert-draft-to-discussion").U(29245)));M(K(f("docs-docos-abort-smart-todo")));
M(K(f("docs-docos-reject-smart-todo").U(29210)));M(K(f("docs-docos-set-smart-todo-feature-enabled").U(29268)));M(K(f("docs-docos-delete-draft").U(29247)));M(K(f("docs-docos-reanchor-mode").label("Reanchor mode").U(29730)));M(K(f("docs-docos-reanchor-comment").label("Reanchor comment").U(29731)));M(K(f("docs-docos-apply-new-anchor-change").label("Apply new anchor change").U(29732)));M(K(f("docs-docos-cancel-reanchor-comment").label("Cancel reanchor").U(29733)));M(K(f("docos-people-mention-acl-fix-accept").U(30200)));
M(K(f("docos-people-mention-acl-fix-dismiss").U(30201)));d=_.vh(_.th(),"docs-eqam")?"Move to editing area":"";M(L("docs-focus-editor",d,192));d=_.r.keyboard.Vk?"Ctrl":"Alt";M(K(Ih(f("docs-focus-toast").U(29616).key(_.Vf(d)+"+G "+_.Vf(d)+"+K"))));M(L("docs-macros-menu","",57));M(K(Bh(f("macros-insert").label("Script").U(55),"insert-script")));M(K(N(f("macros-manage").label("Script manager").U(56),"find scripts | browse scripts | load scripts ||")));M(K(Bh(N(f("macros-editor").label("Script editor").U(54),
"edit scripts ||||"),"code")));M(L("macros-gallery","Script gallery",349));M(L("macros-exec","",337));M(L("macros-resume","",352));M(L("macros-extension-disabled","",992));M(L("macros-extension-help","Help",1081));M(L("macros-extension-install-start","Install",29426));M(L("macros-extension-menu-promo","",1145));M(L("macros-extensions","Get add-ons",664));M(L("docs-extensions-menu","",1056));M(L("macros-manage-extensions","Manage add-ons",757));M(K(f("macros-polymorphic-item").U(2452)));M(L("macros-extension-store-install",
"",29836));M(L("macros-extension-store-render","",29827));M(L("macros-extension-store-report","",29832));M(L("macros-extension-store-settings","",29833));M(L("macros-extension-store-uninstall-item","",29834));M(L("macros-extension-store-use-in-doc","",29835));M(L("macros-application-focus","",692));M(L("macros-application-sidebar","",693));M(L("macros-addon-sidebar","",29423));M(L("macros-addon-sidebar-focus","Document add-ons",29424));M(rh("macros-trigger-0",731,"Ctrl+Alt+Shift+0"));M(rh("macros-trigger-1",
732,"Ctrl+Alt+Shift+1"));M(rh("macros-trigger-2",733,"Ctrl+Alt+Shift+2"));M(rh("macros-trigger-3",734,"Ctrl+Alt+Shift+3"));M(rh("macros-trigger-4",735,"Ctrl+Alt+Shift+4"));M(rh("macros-trigger-5",736,"Ctrl+Alt+Shift+5"));M(rh("macros-trigger-6",737,"Ctrl+Alt+Shift+6"));M(rh("macros-trigger-7",738,"Ctrl+Alt+Shift+7"));M(rh("macros-trigger-8",739,"Ctrl+Alt+Shift+8"));M(rh("macros-trigger-9",740,"Ctrl+Alt+Shift+9"));M(K(f("recorded-action-stop").label("Save recording").U(29411).visible(!1)));M(L("language-menu",
"Language",232));M(L("docs-document-locale-custom","",29459));M(K(Ch(f("apply-language-settings").U(169),b)));M(rh("embed-parent-focus",358,"Ctrl+Shift+Esc"));M(L("docs-spellcheck-bubble-open","",29816));M(L("docs-apply-similar-spellcheck-suggestion","",370));M(L("docs-apply-spellcheck-suggestion","",121));M(L("docs-apply-spellcheck-suggestion-no-focus","",375));M(L("docs-ignore-word","",130));M(L("docs-ignore-word-contextual-with-focus","",29793));M(L("docs-ignore-word-contextual","",371));M(L("docs-ignore-word-no-focus",
"",376));M(L("docs-spellcheck-move-iterator-to-next","Next misspelling",729));M(L("docs-spellcheck-move-iterator-to-previous","Previous misspelling",730));M(L("docs-override-spellcheck-suggestion","",148));M(L("docs-speak-override-spellcheck-suggestion","",1301));M(L("docs-override-spellcheck-suggestion-no-focus","",377));M(L("docs-remove-overridden-spellcheck-suggestion","",1236));M(L("docs-show-spellcheck-feedback-dialog","",29795));M(L("docs-spellcheck-feedback-submit","",29812));M(K(f("docs-spellcheck-change-menu").U(707).hint("More change options")));
M(K(f("docs-spellcheck-feedback-flyout-menu").U(29813).label("Feedback on suggestion")));M(K(f("docs-spellcheck-dictionary-menu").U(1298).hint("More dictionary options")));M(K(f("docs-spellcheck-ignore-menu").U(708).hint("More ignore options")));d=_.vh(_.th(),"docs-senu")?"Spelling and grammar check":"Spell check";d=N(f("docs-show-spellcheck-tool").label(d).U(368),"misspelled | spellcheck |||");_.vh(_.th(),"docs-seepc")&&d.icon(ph("spellcheck",d.C&&!1)).keys(["Ctrl+Alt+X","F7"]);M(K(d));M(K(f("docs-highlight-current-misspelled-text").U(2637)));
M(K(f("docs-clear-misspelled-text-highlight").U(2636)));M(K(N(f("docs-show-dictionary-tool").label("Personal dictionary").U(1255).hint("Personal dictionary"),"misspelling | dictionary | correction | spellcheck |")));M(K(Ch(N(f("docs-analytics-open").label("Activity dashboard").U(29349).hint("Activity dashboard"),lh()),a)));M(K(Ch(N(f("docs-analytics-privacy").label("Activity dashboard privacy").U(29582).hint("Activity dashboard privacy"),lh()),a)));M(K(Ch(N(N(f("docs-analytics-notification-settings").label("Notifications").U(29811).hint("Notifications"),
lh()),"alerts | | | |"),a)));M(L("docs-more-button","More",369));M(K(f("docs-mode-switcher").U(1090).hint("Mode")));M(L("docs-mode-switcher-contextmenu","",1094));M(L("docs-mode-switcher-viewmenu","Mode",1253));M(K(yh(Bh(f("docs-mode-switcher-edit").U(1091),"mode-edit"),"Editing mode")));M(K(Bh(f("docs-mode-switcher-edit-contextmenu").label("Return to editing").U(1095),"mode-edit")));M(K(xh(f("docs-mode-switcher-edit-shortcut").label("Switch to editing").U(1233).key("Ctrl+Alt+Shift+Z"),"Editing")));
M(K(yh(Bh(f("docs-mode-switcher-comment").U(1092),"acl-comment-only"),"Suggesting mode")));M(K(Bh(f("docs-mode-switcher-comment-contextmenu").label("Suggest edits").U(1096),"acl-comment-only")));M(K(xh(f("docs-mode-switcher-comment-shortcut").label("Switch to suggesting").U(1232).key("Ctrl+Alt+Shift+X"),"Editing")));M(K(yh(Bh(f("docs-mode-switcher-view").U(1217),"acl-view-only"),"Viewing mode")));M(K(xh(f("docs-mode-switcher-view-shortcut").label("Switch to viewing").U(1234).key("Ctrl+Alt+Shift+C"),
"Editing")));M(K(N(f("docs-toggle-input-tools").U(360).hint("Input tools").key("Ctrl+Shift+K"),"Toggle input tools ||||")));M(K(N(f("docs-input-tools-menu").U(359).hint("Select input tools").key("Ctrl+Alt+Shift+K"),"Input tool ||||")));M(K(N(Bh(f("docs-voice-tools-show").label("Voice typing").U(697).hint("Voice typing"),"mic"),"voice | dictation | speech | speak | microphone")));M(K(xh(Ch(N(f("docs-voice-recording").label("Start voice typing").U(696).key("Ctrl+Shift+S"),"voice | dictation | speech | speak | microphone"),
b),"Editing")));M(L("docs-voice-insert-spoken-text","",709));M(L("docs-voice-display-dotted-span","",710));M(L("docs-voice-add-corrections-suggestions","",711));M(L("docs-voice-clear-corrections-suggestions","",712));M(K(Ch(f("docs-voice-apply-correction").U(713),function(){})));M(K(f("docs-voice-newline").label("newline").U(2483)));M(L("docs-voice-typing-language-menu","",2446));M(K(Ch(f("docs-voice-apply-voice-typing-language").U(2447),b)));M(K(N(f("docs-voice-help").label("Voice typing help").U(2535),
"voice commands help | voice commands list | voice commands | see voice typing help | see all voice commands")));M(K(N(f("docs-voice-stop-listening").label("Stop listening").U(29244),"stop dictating | stop voice typing | end listening | end dictating | end voice typing")));M(L("docs-alt-text","",681));M(K(f("docs-alt-text-dialog").label("Alt text").U(460).key("Ctrl+Alt+Y")));M(L("docs-after-zoom","",1003));M(K(Ch(f("docs-zoom").label("Zoom").U(749),function(k,l){"number"===typeof l&&_.G(k,19,l)})));
M(K(N(f("docs-zoom-to-fit").label("Fit").U(490).key("Ctrl+Alt+open-square-bracket"),"zoom ||||")));M(K(N(Bh(f("docs-crop-mode").label("Crop image").U(970),"crop"),"resize | reshape | shrink | obscure |")));M(qh("docs-crop-mode-exit","",1055,["Enter"],null));M(K(Bh(f("docs-crop-mode-toggle").label("Crop image").U(29428),"crop")));a=_.r.keyboard.Vk?"Meta":"Alt";M(K(xh(Ih(f("docs-resize-image-larger").label("Resize image larger").U(1138).key("Ctrl+"+_.Vf(a)+"+K")),"With objects")));M(K(xh(Ih(f("docs-resize-image-larger-x").label("Resize image larger horizontally").U(1139).key("Ctrl+"+
_.Vf(a)+"+B")),"With objects")));M(K(xh(Ih(f("docs-resize-image-larger-y").label("Resize image larger vertically").U(1140).key("Ctrl+"+_.Vf(a)+"+I")),"With objects")));M(K(xh(Ih(f("docs-resize-image-smaller").label("Resize image smaller").U(1141).key("Ctrl+"+_.Vf(a)+"+J")),"With objects")));M(K(xh(Ih(f("docs-resize-image-smaller-x").label("Resize image smaller horizontally").U(1142).key("Ctrl+"+_.Vf(a)+"+W")),"With objects")));M(K(xh(Ih(f("docs-resize-image-smaller-y").label("Resize image smaller vertically").U(1143).key("Ctrl+"+
_.Vf(a)+"+Q")),"With objects")));M(K(xh(Ih(f("docs-resize-larger").label("Resize larger").U(1102).key("Ctrl+"+_.Vf(a)+"+K")),"With objects")));M(K(xh(Ih(f("docs-resize-larger-x").label("Resize larger horizontally").U(1101).key("Ctrl+"+_.Vf(a)+"+B")),"With objects")));M(K(xh(Ih(f("docs-resize-larger-y").label("Resize larger vertically").U(1100).key("Ctrl+"+_.Vf(a)+"+I")),"With objects")));M(K(xh(Ih(f("docs-resize-smaller").label("Resize smaller").U(1099).key("Ctrl+"+_.Vf(a)+"+J")),"With objects")));
M(K(xh(Ih(f("docs-resize-smaller-x").label("Resize smaller horizontally").U(1097).key("Ctrl+"+_.Vf(a)+"+W")),"With objects")));M(K(xh(Ih(f("docs-resize-smaller-y").label("Resize smaller vertically").U(1098).key("Ctrl+"+_.Vf(a)+"+Q")),"With objects")));M(K(f("docs-insert-document-images").U(29585)));M(K(Bh(f("docs-format-image-menu").label("Image"),"image-type").U(29502)));M(K(N(f("docs-replace-image").label("Replace image").U(1216),nh())));M(K(N(f("docs-replace-image-blob").U(1868),nh())));M(K(N(f("docs-replace-image-dialog").label("Replace image").U(1161),
nh())));M(K(Bh(N(yh(f("docs-replace-image-by-url").label("By URL"),"Replace image by URL").U(29486),"replace image by url | swap picture by url | switch picture by url | replace image using url |"),"link")));M(K(Bh(N(yh(f("docs-replace-image-drive").label("Drive"),"Replace image from Drive").U(29484),"replace image from Google Drive | swap picture from Google Drive | search image in Drive | search picture in Drive |"),"drive-black")));M(K(f("docs-replace-image-drive-sidebar").U(29713)));M(K(Bh(N(yh(f("docs-replace-image-camera").label("Camera"),
"Replace image from camera").U(29614),"replace image from camera | replace image using camera | replace image from webcam | replace picture from camera |"),"camera")));M(K(N(f("docs-replace-image-menu").label("Replace image").U(29481),nh())));M(K(f("docs-replace-image-popup-menu").U(29590)));M(K(Bh(N(yh(f("docs-replace-image-photos").label("Photos"),"Replace image from Photos").U(29485),"replace image from Google Photos | swap photo | switch photo | swap photo from Photos Albums |"),"photos")));M(K(f("docs-replace-image-photos-sidebar").U(29714)));
M(K(f("docs-replace-image-sidebar-close").U(29480)));M(K(Bh(N(yh(f("docs-replace-image-upload").label("Upload from computer"),"Upload and replace image").U(29482),"upload and replace image | upload and replace picture | upload and swap image | upload and swap picture |"),"file-upload")));M(K(Bh(N(yh(f("docs-replace-image-websearch").label("Search the web"),"Replace image from web").U(29483),"replace image from web | search image on web | search picture | swap picture from web |"),"search-this-document")));
M(K(f("docs-replace-image-websearch-sidebar").U(29712)));M(K(N(Bh(f("docs-reset-image").label("Reset image").U(1174),"reset-image"),"photo | picture | remove filters | revert changes |")));M(K(Bh(f("docs-download-source-image").label("Download image").U(29772),"download")));M(K(f("docs-image-palette").label("Image options").U(29300)));M(L("docs-image-effects-brightness","",1291));M(L("docs-image-effects-contrast","",1292));M(L("docs-image-effects-opacity","",1293));M(L("docs-image-effects-recolor",
"",1294));M(L("docs-image-effects-reset","",1295));M(L("docs-image-effects-sidebar","",1296));M(L("docs-image-effects-sidebar-focus","Image options",1297));M(L("docs-format-options-sidebar","",29905));M(L("docs-format-options-sidebar-focus","Image options",29906));M(L("docs-fill-color-palette","Fill color",29393));M(L("docs-image-adjustments-palette","Adjustments",29724));M(L("docs-line-color-palette","Border color",29389));M(L("docs-line-style-palette","Border style",29390));M(L("docs-line-start-palette",
"Line start",29441));M(L("docs-line-end-palette","Line end",29442));M(L("docs-mask-image-palette","Image mask",29392));M(L("docs-reflection-palette","Reflection",29726));M(L("docs-replace-image-palette","Replace image",29396));M(L("docs-shadow-palette","Drop shadow",29725));M(L("docs-table-borders-style-palette","Borders",29391));M(L("docs-text-bgcolor-palette","Highlight color",29395));M(L("docs-text-fgcolor-palette","Text color",29394));M(L("docs-debug-menu","",1882));M(L("docs-debug-custom-items",
"",1883));M(L("docs-js-error","JS Error",504));M(L("docs-debug-show-font-family-prompt","Apply arbitrary font family",29372));M(L("docs-debug-apply-arbitrary-font-family","Apply arbitrary font family",29373));M(L("docs-debug-badge-config-update_menu","Update Badge Config",30202));M(L("docs-debug-meet-dialog","Open Meet in Editors debug dashboard",30122));M(qh("docs-no-download","",1863,["Ctrl+P","Ctrl+C","Ctrl+X"],null));M(K(Bh(f("docs-update-chart").label("Update chart").U(29154),"update-chart")));
M(K(f("docs-update-all-charts").label("Update all charts").U(29276)));M(K(f("docs-open-chart-in-sheets").label("Open in Sheets").U(29184)));M(K(f("docs-unlink-chart").label("Unlink from Sheets").U(29186)));M(K(Ih(f("docs-focus-embedded-content-controls").U(29193).key(Jh(["E","O"])))));M(K(Ih(f("docs-focus-embedded-linking-controls").U(29962).key(Jh(["E","O"])))));M(K(Bh(f("docs-update-grid-range").label("Update table").U(29324),"update-table")));M(K(f("docs-open-grid-range-in-sheets").label("Open in Sheets").U(29325)));
M(K(f("docs-unlink-grid-range").label("Unlink from Sheets").U(29326)));M(K(Bh(f("docs-update-slide").label("Update slide").U(29494),"update-slide")));M(K(f("docs-unlink-slide").label("Unlink from Slides").U(29490)));M(K(Bh(f("docs-link-slides").label("Link to Slides").U(29462),"link")));M(K(f("docs-do-not-link-slides").label("Do not link to Slides").U(29517)));M(K(f("docs-open-slide-in-slides").label("Open in Slides").U(29493)));M(K(f("docs-open-embedding-controls-menu").label("Link options").U(29503)));
M(K(f("docs-edit-embedded-grid-range-source").label("Submit changed range").U(29342)));M(K(f("docs-open-edit-embedded-grid-range-source-dialog").label("Change range").U(29363)));M(K(f("docs-reset-grid-range").label("Match spreadsheet data and formatting").U(29343)));M(K(Bh(yh(f("docs-open-insert-drawings-from-drive").label("From Drive"),"Insert drawings from Drive").U(29746),"drive")));M(K(f("docs-insert-drawings-from-drive").label("Insert drawings").U(29747)));M(K(f("docs-unlink-drawing").label("Unlink from Drawings").U(29748)));
M(K(Bh(f("docs-update-drawing").label("Update drawing").U(29749),"drawing-black")));M(K(f("docs-open-drawing-in-drawings").label("Open in Drawings").U(29750)));M(K(f("docs-update-all-embeds").label("Update All").U(29752)));M(K(f("docs-domain-template-approve").label("Approve").U(29253)));M(K(f("docs-domain-template-reject").label("Reject").U(29254)));M(K(f("docs-domain-template-dismiss-moderation").label("Got it").U(29255)));M(L("docs-paragraph-alignment-palette","Alignment",29478));M(L("docs-vertical-alignment-palette",
"Vertical alignment",29479));M(L("docs-insert-drop-items","Perform drop",29526));M(L("docs-populate-drag-transfer-agent","",29634));M(K(Ch(f("docs-continue-edit-unsupported-content-warning-editapplier").U(29605),c)));M(K(Ch(f("docs-cancel-edit-unsupported-content-warning-editapplier").U(29606),c)));M(K(Ch(f("docs-continue-edit-unsupported-content-warning-non-editapplier").U(29667),c)));M(K(Ch(f("docs-cancel-edit-unsupported-content-warning-non-editapplier").U(29668),c)));M(K(Ch(f("docs-view-unsupported-content-details").U(29617),
c)));M(K(f("docs-continue-edit-binary-upsave-warning-editapplier").U(29721)));M(K(f("docs-cancel-edit-binary-upsave-warning-editapplier").U(29722)));M(K(f("docs-continue-edit-binary-upsave-warning-non-editapplier").U(29764)));M(K(f("docs-cancel-edit-binary-upsave-warning-non-editapplier").U(29765)));M(K(f("docs-continue-edit-after-fake-warning").U(29742)));M(K(f("docs-cancel-edit-after-fake-warning").U(29743)));M(K(f("docs-shadowdocs-promo-welcome-dialog-take-a-tour").U(29837)));M(K(Ch(f("docs-enable-captions").U(29639).label("Toggle captions (English only)").selected(!1),
function(k){var l=_.Ah("docs-enable-captions").wg();_.G(k,31,l)})));M(K(f("docs-captions-preferences-menu").U(29894).label("Captions preferences")));M(K(f("docs-captions-size").U(29896).label("Text size")));M(K(f("docs-captions-position").U(29929).label("Text position")));M(K(f("docs-display-density-switcher-view-menu").U(29719).label("Display density")));M(K(N(yh(f("docs-display-density-switcher-default").U(29718).label("Default"),"Compressed view & button area"),"default display density ||||")));
M(K(N(yh(f("docs-display-density-switcher-comfortable").U(29717).label("Comfortable"),"Expanded view & button area"),"comfortable display density ||||")));M(K(f("docs-show-increased-menu-spacing").U(30055).label("Show increased menu spacing")));M(K(f("docs-titlebar-edit-buttons").U(30008)));M(K(f("docs-titlebar-document-details-info").U(30010)));M(K(f("docs-cse-idp-sign-in").U(30059).label("Sign in")));M(K(f("docs-toggle-meet-menu").U(30136)));M(K(f("docs-start-directed-hangouts-call").U(30112)));
M(K(f("docs-start-meet-call").U(30118)));M(K(Bh(f("docs-create-email-draft").U(30151),"send-to-email-24-red600").label("Send snippet").hint("Send snippet")))};
var Nh,M,iba,Oh;M=function(a){Oh();var b=Nh,c=a.getId();_.Ph(b.B,c,a)};_.Ah=function(a){Oh();return Nh.B[a]};iba=function(){Oh();return Qh(Nh.B)};Oh=function(){Oh=function(){};Nh=jba();hba()};
var Rh=function(){};_.v(Rh,_.Sf);var jba=function(){var a=new Rh;a.B={};return a};
var Qh,Vh;_.Ph=function(a,b,c){a[b]=void 0!==c?c:null};_.Sh=function(a,b,c){a[b]=void 0!==c?c:null};Qh=function(a){var b=[],c;for(c in a)b.push(a[c]);return b};_.Th=function(a){for(var b in a)return!1;return!0};_.Uh=function(a){var b={},c;for(c in a)b[c]=a[c];return b};Vh=function(a){for(var b in a)delete a[b]};
var kba=function(a,b,c){_.Sh(a,b,c)};
var Wh=function(){};_.v(Wh,_.Sf);_.Xh=function(){var a=new Wh;a.B={};return a};_.Yh=function(a,b,c){_.Ph(a.B,b,c);return a};_.Zh=function(a){var b=a.B;a.B=null;return b};
var $h=function(a){this.B=a};$h.prototype.toString=function(){return this.B};
_.ai=new $h("visibility");_.bi=new $h("selection");_.ci=new $h("value");_.di=new $h("enabled");_.ei=new $h("change");_.fi=new $h("action");
_.gi=function(a,b){this.data=a;this.B=b||null};
_.hi=function(a,b,c){this.Ii=a;this.newValue=b;this.oldValue=c};
var Kh,ji,ki,li,mi,ni,oi,pi,qi,ri,si,ui,vi,Fh,wi,xi;_.ii=function(a){_.Eh();this.B=a};_.v(_.ii,_.Sf);
_.Eh=function(){_.Eh=function(){};ji=new _.ii("category");ki=new _.ii("enabled");li=new _.ii("force-ctrl-key");mi=new _.ii("hint");ni=new _.ii("icon");oi=new _.ii("keys");pi=new _.ii("keys-enabled");qi=new _.ii("label");ri=new _.ii("long-label");new _.ii("mnemonic");si=new _.ii("node-label");_.ti=new _.ii("parameter_type");Kh=new _.ii("require_direct_target");new _.ii("radio");ui=new _.ii("selected");vi=new _.ii("synonyms");Fh=new _.ii("toggle-selected-on-fire");wi=new _.ii("value");xi=new _.ii("visible")};
var uh=function(a){_.A(this,a,0,-1,null,null)};_.x(uh,_.z);
_.yi=function(a){_.A(this,a,0,-1,lba,null)};_.x(_.yi,_.z);var Gh=function(a){_.A(this,a,0,-1,null,null)};_.x(Gh,_.z);var Hh=function(a){_.A(this,a,0,-1,null,null)};_.x(Hh,_.z);var Lh=function(a){_.A(this,a,0,-1,null,null)};_.x(Lh,_.z);var lba=[99];
_.Mh=function(a,b){this.width=a;this.height=b};_.zi=function(a,b){return a==b?!0:a&&b?a.width==b.width&&a.height==b.height:!1};_.Mh.prototype.clone=function(){return new _.Mh(this.width,this.height)};_.Bi=function(){var a=_.Ai();return Math.min(a.width,a.height)};_.Ci=function(a){return a.width*a.height};_.g=_.Mh.prototype;_.g.aspectRatio=function(){return this.width/this.height};_.g.Dc=function(){return!_.Ci(this)};
_.g.ceil=function(){this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};_.g.floor=function(){this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};_.g.round=function(){this.width=Math.round(this.width);this.height=Math.round(this.height);return this};
var Di,Ei,Fi=function(){Fi=function(){};Di=new _.ii("docs-action-data-populator");Ei=new _.ii("docs-impression-code")};
var oh=function(a,b,c){this.F=a;this.D=b;this.B={};this.C=!0===c};_.v(oh,_.Sf);var Dh=function(a,b,c){return a.Ii(b.B,c)};oh.prototype.Ii=function(a,b){_.Ph(this.B,a,b);return this};var K=function(a){var b=(_.Eh(),qi);b.B in a.B||Dh(a,b,"");b=a.B[qi.B];mi.B in a.B||Dh(a,mi,b);xi.B in a.B||Dh(a,xi,!0);b=new Gi(a.F,a.B);a.D&&(a=a.D,a(b));return b},Ch=function(a,b){return Dh(a,(Fi(),Di),b)};oh.prototype.enabled=function(a){return Dh(this,(_.Eh(),ki),a)};
oh.prototype.hint=function(a){return Dh(this,(_.Eh(),mi),a)};oh.prototype.icon=function(a){return Dh(this,(_.Eh(),ni),a)};var Bh=function(a,b){return a.icon(ph(b,a.C&&!1))};_.g=oh.prototype;_.g.U=function(a){return Dh(this,(Fi(),Ei),a)};_.g.keys=function(a){return Dh(this,(_.Eh(),oi),a)};_.g.key=function(a){return Dh(this,(_.Eh(),oi),[a])};_.g.label=function(a){return Dh(this,(_.Eh(),qi),a)};_.g.sG=function(a){return Dh(this,(_.Eh(),si),a)};var yh=function(a,b){return Dh(a,(_.Eh(),ri),b)};
oh.prototype.selected=function(a){return Dh(this,(_.Eh(),ui),a)};var N=function(a,b){return Dh(a,(_.Eh(),vi),b)},xh=function(a,b){return Dh(a,(_.Eh(),ji),b)};oh.prototype.value=function(a){return Dh(this,(_.Eh(),wi),a)};oh.prototype.visible=function(a){return Dh(this,(_.Eh(),xi),a)};var Ih=function(a){return Dh(a,(_.Eh(),li),!0)};
var zh=function(a,b){var c=a.Fc().slice(0);c.push(b);b=(_.Eh(),oi);a.setProperty(b.B,c)},Jh=function(a){for(var b="Ctrl+"+String(_.r.keyboard.Vk?"Meta+":"Alt+"),c="",d=0;d<a.length;d=d+1|0)c=_.Vf(c)+(_.Vf(b)+_.Vf(a[d])+String(d<(a.length-1|0)?" ":""));return c},ph=function(a,b){var c="docs-icon-img";_.r.Ka&&!_.r.Eb(9)&&(c=_.Vf(c)+" docs-icon-img-legacy");return _.Vf(c)+" docs-icon-"+_.Vf(a)+String(!0===b?"-rtl":"")};
var mba=String.prototype.repeat?function(a,b){return a.repeat(b)}:function(a,b){return Array(b+1).join(a)};
var nba=/\|/;
_.Hi=function(){this.S=!1};_.v(_.Hi,_.Sf);_.Hi.prototype.dispose=function(){if(!this.S){this.S=!0;this.ma();var a=Xf(this.constructor);_.Vf(Rf(a.C));_.Vf(Zg("[]",a.B))}};_.Hi.prototype.isDisposed=function(){return this.S};_.Hi.prototype.ha=function(a){a&&!a.isDisposed()&&(this.isDisposed()?a.dispose():(this.J||(this.J=[]),this.J.push(a)))};_.Hi.prototype.ma=function(){if(this.J){var a=this.J;for(var b=0;b<a.length;b++)a[b].dispose();this.J.length=0}};
var Ii=function(){_.Hi.call(this);this.B=[]};_.v(Ii,_.Hi);var oba=function(a,b,c){c=Ji(b).subscribe(Ki,c,null);a=a.B;var d=new Li;d.C=b;d.B=c;a.push(d)};Ii.prototype.removeAll=function(){var a=this.B;for(var b=0;b<a.length;b++){var c=a[b];c.C.Sw(c.B)}this.B.length=0};Ii.prototype.ma=function(){_.Hi.prototype.ma.call(this);this.removeAll()};
var Li=function(){this.B=0};_.v(Li,_.Sf);
_.r.keyboard={};_.r.keyboard.FI=!1;_.r.keyboard.SK=function(){return pe("Macintosh")||df()};_.r.keyboard.Vk=_.r.keyboard.FI||_.r.keyboard.SK();
var Mi,Ni=function(){Ni=function(){};Mi=_.Zh(_.Yh(_.Yh(_.Yh(_.Yh(_.Xh(),_.xg(_.ai),(_.Eh(),xi)),_.xg(_.bi),ui),_.xg(_.ci),wi),_.xg(_.di),ki))};
var Oi=function(){_.Hi.call(this)};_.v(Oi,_.Hi);var Ji=function(a){a.I||(a.I=new Pi);return a.I};_.g=Oi.prototype;_.g.jt=function(){return this.Ib("node-label")};_.g.fk=function(){var a=this.yy();return a?a:(a=this.jt())?_.Qi(a):this.getLabel()};_.g.subscribe=function(a,b,c){if("action"!==a)throw _.Cg("Unsupported Topic.").B;return pba(Ji(this),a,b,c)};_.g.Rw=function(a,b,c){_.Tf(a,_.fi)||_.Tf(a,_.ei)?b=Ji(this).subscribe(a,b,c):(Ni(),a=_.xg(a),a=ah(Mi[a]),b=Ji(this).subscribe(qba(this,a),b,c));return b};
_.g.unsubscribe=function(a,b,c){a:{var d=Ji(this);if((a=d.B[a])&&0!=a.length)for(var e=0;e<a.length;e=e+1|0){var f=a[e];if(_.Tf(b,d.C[f])&&_.Tf(c,d.I[f])){b=Ri(d,f);break a}}b=!1}return b};
var Si=function(){_.Hi.call(this);this.D=1;this.R=[];this.F=0;this.L={};this.C={};this.H={};this.I={};this.B={}},Ti=function(){};_.v(Si,_.Hi);Si.prototype.subscribe=function(a,b,c){var d,e=_.xg(a);e=this.B[e];if(!e){e=[];var f=_.xg(a);_.Ph(this.B,f,e)}f=(d=this.D,this.D=this.D+1|0,d);a=_.xg(a);_.Sh(this.L,f,a);_.Sh(this.C,f,b);a=this.H;b=c?b.bind(c):b;_.Sh(a,f,b);_.Sh(this.I,f,c);e.push(f);return f};
Si.prototype.unsubscribe=function(a,b,c){a=_.xg(a);if((a=this.B[a])&&0!=a.length)for(var d=0;d<a.length;d=d+1|0){var e=a[d];if(_.Tf(b,this.C[e])&&_.Tf(c,this.I[e]))return Ri(this,e)}return!1};
var Ri=function(a,b){var c=a.L[b];if(null!=c){c=a.B[c];if(0!=a.F)a.R.push(b),_.Sh(a.C,b,Ti),_.Sh(a.H,b,Ti);else{if(c&&0!=c.length){var d=c.indexOf(b);0<=d&&c.splice(d,1)}delete a.L[b];delete a.C[b];delete a.H[b];delete a.I[b]}return!0}return!1},Ui=function(a,b,c){b=_.xg(b);if((b=a.B[b])&&0!=b.length){a.F=a.F+1|0;var d=0;try{for(var e=b.length;d<e;d=d+1|0)(0,a.H[b[d]])(c)}finally{if(a.F=a.F-1|0,0==a.F)for(;0!=a.R.length;)Ri(a,_.rg(a.R.pop()))}}};
Si.prototype.clear=function(a){if(a){var b=_.xg(a);if(b=this.B[b]){for(var c=0;c<b.length;c=c+1|0)Ri(this,b[c]);a=_.xg(a);delete this.B[a]}}else Vh(this.L),Vh(this.C),Vh(this.H),Vh(this.I),this.B={}};Si.prototype.Ub=function(a){return Vi(this,a?_.xg(a):null)};var Vi=function(a,b){if(null!=b)return(a=a.B[b])?a.length:0;b=0;for(var c in a.B)b=b+Vi(a,c)|0;return b};Si.prototype.ma=function(){_.Hi.prototype.ma.call(this);this.clear(null);this.R.length=0};
var Pi=function(){Si.call(this)};_.v(Pi,Si);var pba=function(a,b,c,d){var e,f=a.B[b];f||(f=[],_.Ph(a.B,b,f));var h=(e=a.D,a.D=a.D+1|0,e);_.Sh(a.L,h,b);_.Sh(a.C,h,c);kba(a.H,h,function(k){c.call(d,k.data,k.B)});_.Sh(a.I,h,d);f.push(h);return h};
try{(new self.OffscreenCanvas(0,0)).getContext("2d")}catch(a){}var rba=!_.r.Ka||_.r.xf(9),sba=!_.r.uc&&!_.r.Ka||_.r.Ka&&_.r.xf(9)||_.r.uc&&_.r.Eb("1.9.1"),Wi=_.r.Ka&&!_.r.Eb("9"),tba=_.r.Ka||_.r.Df||_.r.Mc;
_.Xi=function(a,b){return a+Math.random()*(b-a)};_.Yi=function(a,b,c){return Math.min(Math.max(a,b),c)};_.Zi=function(a,b){a%=b;return 0>a*b?a+b:a};
var cj;_.$i=function(a,b){this.x=void 0!==a?a:0;this.y=void 0!==b?b:0};_.$i.prototype.clone=function(){return new _.$i(this.x,this.y)};_.$i.prototype.Sb=function(a){return a instanceof _.$i&&_.aj(this,a)};_.aj=function(a,b){return a==b?!0:a&&b?a.x==b.x&&a.y==b.y:!1};_.bj=function(a,b){var c=a.x-b.x;a=a.y-b.y;return Math.sqrt(c*c+a*a)};cj=function(a,b){var c=a.x-b.x;a=a.y-b.y;return c*c+a*a};_.$i.prototype.ceil=function(){this.x=Math.ceil(this.x);this.y=Math.ceil(this.y);return this};
_.$i.prototype.floor=function(){this.x=Math.floor(this.x);this.y=Math.floor(this.y);return this};_.$i.prototype.round=function(){this.x=Math.round(this.x);this.y=Math.round(this.y);return this};_.$i.prototype.B=function(a,b){this.x*=a;this.y*="number"===typeof b?b:a;return this};
var lj,rj,uj,tj,wj,Fj,uba,Oj,Tj;_.fj=function(a){return a?new _.dj(_.ej(a)):Pc||(Pc=new _.dj)};_.gj=function(a,b){return"string"===typeof b?a.getElementById(b):b};_.ij=function(a,b){var c=b||document;return c.querySelectorAll&&c.querySelector?c.querySelectorAll("."+a):_.hj(document,"*",a,b)};_.kj=function(a,b){var c=b||document,d=null;c.getElementsByClassName?d=c.getElementsByClassName(a)[0]:d=_.jj(document,"*",a,b);return d||null};
_.hj=function(a,b,c,d){a=d||a;b=b&&"*"!=b?String(b).toUpperCase():"";if(a.querySelectorAll&&a.querySelector&&(b||c))return a.querySelectorAll(b+(c?"."+c:""));if(c&&a.getElementsByClassName){a=a.getElementsByClassName(c);if(b){d={};for(var e=0,f=0,h;h=a[f];f++)b==h.nodeName&&(d[e++]=h);d.length=e;return d}return a}a=a.getElementsByTagName(b||"*");if(c){d={};for(f=e=0;h=a[f];f++)b=h.className,"function"==typeof b.split&&_.ia(b.split(/\s+/),c)&&(d[e++]=h);d.length=e;return d}return a};
_.jj=function(a,b,c,d){var e=d||a,f=b&&"*"!=b?String(b).toUpperCase():"";return e.querySelectorAll&&e.querySelector&&(f||c)?e.querySelector(f+(c?"."+c:"")):_.hj(a,b,c,d)[0]||null};_.mj=function(a,b){_.gd(b,function(c,d){c&&"object"==typeof c&&c.Fh&&(c=c.Nf());"style"==d?a.style.cssText=c:"class"==d?a.className=c:"for"==d?a.htmlFor=c:lj.hasOwnProperty(d)?a.setAttribute(lj[d],c):_.Id(d,"aria-")||_.Id(d,"data-")?a.setAttribute(d,c):a[d]=c})};
lj={cellpadding:"cellPadding",cellspacing:"cellSpacing",colspan:"colSpan",frameborder:"frameBorder",height:"height",maxlength:"maxLength",nonce:"nonce",role:"role",rowspan:"rowSpan",type:"type",usemap:"useMap",valign:"vAlign",width:"width"};_.Ai=function(a){a=(a||window).document;a=_.nj(a)?a.documentElement:a.body;return new _.Mh(a.clientWidth,a.clientHeight)};
_.pj=function(a){var b=_.oj(a);a=a.parentWindow||a.defaultView;return _.r.Ka&&_.r.Eb("10")&&a.pageYOffset!=b.scrollTop?new _.$i(b.scrollLeft,b.scrollTop):new _.$i(a.pageXOffset||b.scrollLeft,a.pageYOffset||b.scrollTop)};_.oj=function(a){return a.scrollingElement?a.scrollingElement:!_.r.Mc&&_.nj(a)?a.documentElement:a.body||a.documentElement};_.qj=function(a){return a?a.parentWindow||a.defaultView:window};_.sj=function(a,b,c){return rj(document,arguments)};
rj=function(a,b){var c=String(b[0]),d=b[1];if(!rba&&d&&(d.name||d.type)){c=["<",c];d.name&&c.push(' name="',_.Pe(d.name),'"');if(d.type){c.push(' type="',_.Pe(d.type),'"');var e={};_.rd(e,d);delete e.type;d=e}c.push(">");c=c.join("")}c=tj(a,c);d&&("string"===typeof d?c.className=d:Array.isArray(d)?c.className=d.join(" "):_.mj(c,d));2<b.length&&uj(a,c,b,2);return c};
uj=function(a,b,c,d){function e(k){k&&b.appendChild("string"===typeof k?a.createTextNode(k):k)}for(;d<c.length;d++){var f=c[d];if(!_.qa(f)||_.ua(f)&&0<f.nodeType)e(f);else{a:{if(f&&"number"==typeof f.length){if(_.ua(f)){var h="function"==typeof f.item||"string"==typeof f.item;break a}if(_.Hc(f)){h="function"==typeof f.item;break a}}h=!1}_.Sc(h?_.pa(f):f,e)}}};_.vj=function(a){return tj(document,a)};tj=function(a,b){b=String(b);"application/xhtml+xml"===a.contentType&&(b=b.toLowerCase());return a.createElement(b)};
_.nj=function(a){return"CSS1Compat"==a.compatMode};wj=function(a,b){a.appendChild(b)};_.xj=function(a,b){uj(_.ej(a),a,arguments,1)};_.yj=function(a){for(var b;b=a.firstChild;)a.removeChild(b)};_.zj=function(a,b){b.parentNode&&b.parentNode.insertBefore(a,b)};_.Aj=function(a,b){b.parentNode&&b.parentNode.insertBefore(a,b.nextSibling)};_.Bj=function(a,b,c){a.insertBefore(b,a.childNodes[c]||null)};_.Cj=function(a){return a&&a.parentNode?a.parentNode.removeChild(a):null};
_.Dj=function(a,b){var c=b.parentNode;c&&c.replaceChild(a,b)};_.Ej=function(a){return sba&&void 0!=a.children?a.children:_.Tc(a.childNodes,function(b){return 1==b.nodeType})};_.Gj=function(a){return void 0!==a.firstElementChild?a.firstElementChild:Fj(a.firstChild,!0)};_.Hj=function(a){return void 0!==a.lastElementChild?a.lastElementChild:Fj(a.lastChild,!1)};_.Ij=function(a){return void 0!==a.nextElementSibling?a.nextElementSibling:Fj(a.nextSibling,!0)};
_.Jj=function(a){return void 0!==a.previousElementSibling?a.previousElementSibling:Fj(a.previousSibling,!1)};Fj=function(a,b){for(;a&&1!=a.nodeType;)a=b?a.nextSibling:a.previousSibling;return a};_.Kj=function(a){return _.ua(a)&&1==a.nodeType};_.Lj=function(a){var b;if(tba&&!(_.r.Ka&&_.r.Eb("9")&&!_.r.Eb("10")&&_.t.SVGElement&&a instanceof _.t.SVGElement)&&(b=a.parentElement))return b;b=a.parentNode;return _.Kj(b)?b:null};
_.Mj=function(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};_.ej=function(a){return 9==a.nodeType?a:a.ownerDocument||a.document};
_.Nj=function(a,b){if("textContent"in a)a.textContent=b;else if(3==a.nodeType)a.data=String(b);else if(a.firstChild&&3==a.firstChild.nodeType){for(;a.lastChild!=a.firstChild;)a.removeChild(a.lastChild);a.firstChild.data=String(b)}else _.yj(a),a.appendChild(_.ej(a).createTextNode(String(b)))};uba={SCRIPT:1,STYLE:1,HEAD:1,IFRAME:1,OBJECT:1};Oj={IMG:" ",BR:"\n"};_.Pj=function(a,b){b?a.tabIndex=0:(a.tabIndex=-1,a.removeAttribute("tabIndex"))};
_.Qi=function(a){if(Wi&&null!==a&&"innerText"in a)a=a.innerText.replace(/(\r\n|\r|\n)/g,"\n");else{var b=[];_.Qj(a,b,!0);a=b.join("")}a=a.replace(/ \xAD /g," ").replace(/\xAD/g,"");a=a.replace(/\u200B/g,"");Wi||(a=a.replace(/ +/g," "));" "!=a&&(a=a.replace(/^\s*/,""));return a};
_.Qj=function(a,b,c){if(!(a.nodeName in uba))if(3==a.nodeType)c?b.push(String(a.nodeValue).replace(/(\r\n|\r|\n)/g,"")):b.push(a.nodeValue);else if(a.nodeName in Oj)b.push(Oj[a.nodeName]);else for(a=a.firstChild;a;)_.Qj(a,b,c),a=a.nextSibling};_.Rj=function(a,b,c,d){a&&!c&&(a=a.parentNode);for(c=0;a&&(null==d||c<=d);){if(b(a))return a;a=a.parentNode;c++}return null};_.Sj=function(a){try{var b=a&&a.activeElement;return b&&b.nodeName?b:null}catch(c){return null}};
_.Uj=function(){var a=_.qj();return void 0!==a.devicePixelRatio?a.devicePixelRatio:a.matchMedia?Tj(3)||Tj(2)||Tj(1.5)||Tj(1)||.75:1};Tj=function(a){return _.qj().matchMedia("(min-resolution: "+a+"dppx),(min--moz-device-pixel-ratio: "+a+"),(min-resolution: "+96*a+"dpi)").matches?a:0};_.dj=function(a){this.B=a||_.t.document||document};_.g=_.dj.prototype;_.g.W=_.fj;_.g.O=function(a){return _.gj(this.B,a)};_.g.IZ=_.dj.prototype.O;_.g.getElementsByTagName=function(a,b){return(b||this.B).getElementsByTagName(String(a))};
_.g.Eg=function(a,b){return _.ij(a,b||this.B)};_.g.wa=function(a,b){return _.kj(a,b||this.B)};_.g.oc=function(a,b){return _.kj(a,b||this.B)};_.g.setProperties=_.mj;_.g.ra=function(a,b,c){return rj(this.B,arguments)};_.Vj=function(a,b){return tj(a.B,b)};_.g=_.dj.prototype;_.g.getWindow=function(){var a=this.B;return a.parentWindow||a.defaultView};_.g.Jb=wj;_.g.Oy=_.xj;_.g.Wd=_.yj;_.g.au=_.Aj;_.g.yq=_.Bj;_.g.Dd=_.Cj;_.g.iH=_.Dj;_.g.getChildren=_.Ej;_.g.et=_.Gj;_.g.wy=_.Hj;_.g.Cy=_.Ij;_.g.uE=_.Jj;
_.g.uO=_.Lj;_.g.contains=_.Mj;_.g.Jl=_.ej;_.g.ke=_.Nj;_.g.Xd=_.Pj;_.g.CE=_.Qi;
var Gi=function(a,b){Wj();_.Hi.call(this);this.H=vba;this.C={};this.F={};this.L=a;this.D={};this.B=b?_.Uh(b):{};Xj(this)},Yj,Ki,vba=function(){return Zj},Zj;_.v(Gi,Oi);var Xj=function(a){var b=(_.Eh(),pi).B;b in a.B||_.Ph(a.B,b,!0);a.isEnabled()||_.Ph(a.D,"default",!0);b=Fh.B;b in a.B||_.Ph(a.B,b,!0)};_.g=Gi.prototype;_.g.ma=function(){Oi.prototype.ma.call(this);Vh(this.C)};_.g.getId=function(){return this.L};_.g.isEnabled=function(){return!0===_.ak(this,(_.Eh(),ki))};
_.g.setEnabled=function(a,b){b=b?b:"default";a?(delete this.D[b],a=_.Th(this.D)):(_.Ph(this.D,b,!0),a=!1);b=(_.Eh(),ki);this.setProperty(b.B,a)};_.g.isVisible=function(){return!0===_.ak(this,(_.Eh(),xi))};_.g.ua=function(a){var b=(_.Eh(),xi);this.setProperty(b.B,a)};_.g.wg=function(){return!0===_.ak(this,(_.Eh(),ui))};_.g.zf=function(a){var b=(_.Eh(),ui);this.setProperty(b.B,a)};_.g.vh=function(){return _.bh(_.ak(this,(_.Eh(),ji)))};_.g.Gl=function(){return _.bh(_.ak(this,(_.Eh(),mi)))};
_.g.getLabel=function(){return _.ak(this,(_.Eh(),qi))||""};_.g.yy=function(){return _.ak(this,(_.Eh(),ri))||""};_.g.vg=function(){return _.ak(this,(_.Eh(),ni))};_.g.Fc=function(){return _.ak(this,(_.Eh(),oi))};_.g.getValue=function(){return _.ak(this,(_.Eh(),wi))};_.g.setValue=function(a){var b=(_.Eh(),wi);this.setProperty(b.B,a)};_.ak=function(a,b){return a.Ib(b.B)};Gi.prototype.Ib=function(a){return a in this.C?this.C[a]:this.B[a]};
var qba=function(a,b){var c=a.F[b.B];c||(c=new $h(b.B),_.Ph(a.F,b.B,c));return c};_.g=Gi.prototype;_.g.setProperty=function(a,b){var c=this.Ib(a);(a in this.C||null!=this.B[a])&&_.Tf(b,c)||(_.Ph(this.C,a,b),Ui(Ji(this),Yj,new _.hi(a,b,c)),a in this.F&&Ui(Ji(this),this.F[a],new _.hi(a,b,c)))};_.g.fq=function(){var a=_.ak(this,(_.Eh(),vi));if(!a)return[];a=_.eh(a.split(nba));for(var b=a.length-1|0;0<=b;b=b-1|0)a[b]&&(a[b]=_.Qg(a[b])),!a[b]&&a.splice(b,1);return a};
_.g.Me=function(a,b){if(this.isEnabled()){var c,d=_.ak(this,(_.Eh(),ui));null!=d&&_.ak(this,Fh)&&this.zf(!d);a=new _.gi(a,b);b=(c=this.H,c());b.D(this,a);Ui(Ji(this),Ki,a);b.C()}};_.g.Sw=function(a){Ri(Ji(this),a)};_.g.reset=function(){Ji(this).clear(null);Vh(this.C);this.D={};Xj(this)};var Wj=function(){Wj=function(){};Yj=new $h("change");Ki=new $h("action");Zj=new bk};
var bk=function(){};_.v(bk,_.Sf);bk.prototype.D=function(){};bk.prototype.C=function(){};
var ck;_.th=function(){ck||(ck=new dk(null));return ck};
var ek=function(){};_.v(ek,_.Sf);ek.prototype.get=function(){if(!this.B){var a=_.t._docs_flag_initialData;this.B=a?a:{}}return this.B};
var dk=function(a){this.B=new ek;if(a)for(var b in a){var c=b,d=a[b],e=this.B.get();_.Ng(d)?e[c]=d.Al:_.Ph(e,c,d)}};_.v(dk,_.Sf);dk.prototype.clear=function(){this.B=new ek};dk.prototype.get=function(a){return this.B.get()[a]};_.sh=function(a,b){a=a.B.get();return b in a};_.vh=function(a,b){a=a.get(b);return"string"==typeof a?"true"==a||"1"==a:!!a};
_.wh=function(a,b){if(!_.sh(a,b)||null==a.get(b))return NaN;try{var c=_.Vf(a.get(b));pg||(pg=/^\s*[+-]?(NaN|Infinity|((\d+\.?\d*)|(\.\d+))([eE][+-]?\d+)?[dDfF]?)\s*$/);if(!pg.test(c)){var d='For input string: "'+_.Vf(c)+'"',e=new ug;_.bg(e,d);e.C(Error(e));throw e.B;}return parseFloat(c)}catch(f){f=gg(f);if(f instanceof ug)return NaN;throw f.B;}};_.fk=function(a,b){if(!_.sh(a,b))return"";a=a.get(b);return null==a?"":"number"===typeof a&&_.rg(a)==_.rg(a)?""+_.rg(a):_.Vf(a)};
var wba=function(){var a=a?a:function(c){return _.rg(Math.floor(Math.random()*c))};var b=Yf(a(2147483647));b=_.Vf(mba("0",Math.max(0,8-b.length|0)))+_.Vf(b);a=Yf(a(2147483647));return _.Vf(a)+_.Vf(b)};
var hk=function(a,b){return _.gk()(b)in a};
var xba,kk;xba=function(a){if(null==a)throw a=new dg,_.bg(a,"can't identity hash null"),eg(a),a.C(new TypeError(a)),a.B;return":"+Tg(a)};_.gk=function(){_.jk();return xba};kk=function(){_.jk();return function(a){return _.xg(a)}};_.jk=function(){_.jk=function(){};_.ik=kk();kk()};
_.lk=function(a){this.id=a};_.lk.prototype.toString=function(){return this.id};
var mk,yba;mk="closure_listenable_"+(1E6*Math.random()|0);_.nk=function(a){return!(!a||!a[mk])};yba=0;
_.ok=function(){_.Hi.call(this);this.B=1;this.F=!1;this.C=[];this.D=[]};_.v(_.ok,_.Hi);_.g=_.ok.prototype;_.g.getValue=function(){$g(2==this.B,"XDeferred does not have an value");return this.R};_.g.getError=function(){$g(this.Wg(),"XDeferred does not have an error");return this.L};_.g.Gc=function(){return 1!=this.B};_.g.Wg=function(){return 3==this.B};_.g.callback=function(a){$g(4!=this.B,"Cannot fire a disposed XDeferred");$g(1==this.B,"Cannot fire a XDeferred more than once");this.R=a;pk(this,!0)};
_.g.Tb=function(a){$g(4!=this.B,"Cannot fire a disposed XDeferred");$g(1==this.B,"Cannot fire a XDeferred more than once");this.L=a;pk(this,!1)};_.g.Qd=function(a,b){$g(4!=this.B,"Cannot add callback to disposed XDeferred");$g(!this.F,"Cannot add callback to XDeferred that is firing its callback/errback queue");qk(this,a,b)||(a&&dh(this.C,function(c){a(c)}),b&&dh(this.D,function(c){b(c)}))};_.g.Ja=function(a){this.Qd(a,null)};_.g.$b=function(a){this.Qd(null,a)};
_.g.transform=function(a){$g(0==this.F,"Cannot add callback to XDeferred that is firing its callback/errback queue");var b=new _.ok,c=function(e){var f=null;try{f=a(e)}catch(h){h=gg(h);if(h instanceof jg){b.Tb(h);return}throw h.B;}b.callback(f)},d=function(e){b.Tb(e)};if(qk(this,c,d))return b;this.C.push(c);this.D.push(d);return b};
_.g.se=function(a){var b=new _.ok,c=function(e){var f=null;try{f=a(e)}catch(h){h=gg(h);if(h instanceof jg){b.Tb(h);return}throw h.B;}b.callback(f)},d=function(e){b.callback(e)};if(qk(this,d,c))return b;this.C.push(d);this.D.push(c);return b};_.g.ma=function(){this.B=4;this.C.length=0;this.D.length=0;_.Hi.prototype.ma.call(this)};
var pk=function(a,b){a.F=!0;if(b){a.B=2;b=a.C;for(var c=0;c<b.length;c++)(0,b[c])(a.R)}else for(a.B=3,b=a.D,c=0;c<b.length;c++)(0,b[c])(a.L);a.F=!1;a.C.length=0;a.D.length=0},qk=function(a,b,c){return a.Gc()?(a.F=!0,2==a.B&&b?b(a.R):a.Wg()&&c&&c(a.L),a.F=!1,!0):!1};
var rk=function(a,b){this.D=a;this.F=b;this.C=0;this.B=null};rk.prototype.get=function(){if(0<this.C){this.C--;var a=this.B;this.B=a.next;a.next=null}else a=this.D();return a};var sk=function(a,b){a.F(b);100>a.C&&(a.C++,b.next=a.B,a.B=b)};
var tk=[],uk=[],vk=!1,wk=function(a){tk[tk.length]=a;if(vk)for(var b=0;b<uk.length;b++)a((0,_.p)(uk[b].B,uk[b]))};
_.xk=function(a){_.t.setTimeout(function(){throw a;},0)};_.yk=function(a,b,c){var d=a;b&&(d=(0,_.p)(a,b));d=_.yk.C(d);_.Hc(_.t.setImmediate)&&(c||_.yk.F())?_.t.setImmediate(d):(_.yk.B||(_.yk.B=_.yk.D()),_.yk.B(d))};_.yk.F=function(){return _.t.Window&&_.t.Window.prototype&&!pe("Edge")&&_.t.Window.prototype.setImmediate==_.t.setImmediate?!1:!0};
_.yk.D=function(){var a=_.t.MessageChannel;"undefined"===typeof a&&"undefined"!==typeof window&&window.postMessage&&window.addEventListener&&!pe("Presto")&&(a=function(){var e=_.vj("IFRAME");e.style.display="none";document.documentElement.appendChild(e);var f=e.contentWindow;e=f.document;e.open();e.close();var h="callImmediate"+Math.random(),k="file:"==f.location.protocol?"*":f.location.protocol+"//"+f.location.host;e=(0,_.p)(function(l){if(("*"==k||l.origin==k)&&l.data==h)this.port1.onmessage()},
this);f.addEventListener("message",e,!1);this.port1={};this.port2={postMessage:function(){f.postMessage(h,k)}}});if("undefined"!==typeof a&&!pe("Trident")&&!pe("MSIE")){var b=new a,c={},d=c;b.port1.onmessage=function(){if(void 0!==c.next){c=c.next;var e=c.bs;c.bs=null;e()}};return function(e){d.next={bs:e};d=d.next;b.port2.postMessage(0)}}return function(e){_.t.setTimeout(e,0)}};_.yk.C=_.cd;wk(function(a){_.yk.C=a});
var zk=function(){this.C=this.B=null},Bk=new rk(function(){return new Ak},function(a){a.reset()});zk.prototype.add=function(a,b){var c=Bk.get();c.set(a,b);this.C?this.C.next=c:this.B=c;this.C=c};zk.prototype.remove=function(){var a=null;this.B&&(a=this.B,this.B=this.B.next,this.B||(this.C=null),a.next=null);return a};var Ak=function(){this.next=this.scope=this.Oc=null};Ak.prototype.set=function(a,b){this.Oc=a;this.scope=b;this.next=null};
Ak.prototype.reset=function(){this.next=this.scope=this.Oc=null};
var Ck,zba,Dk,Ek,Gk;_.Fk=function(a,b){Ck||zba();Dk||(Ck(),Dk=!0);Ek.add(a,b)};zba=function(){if(_.t.Promise&&_.t.Promise.resolve){var a=_.t.Promise.resolve(void 0);Ck=function(){a.then(Gk)}}else Ck=function(){_.yk(Gk)}};Dk=!1;Ek=new zk;Gk=function(){for(var a;a=Ek.remove();){try{a.Oc.call(a.scope)}catch(b){_.xk(b)}sk(Bk,a)}Dk=!1};
var Hk=function(a){if(!a)return!1;try{return!!a.$goog_Thenable}catch(b){return!1}};
var Jk,Kk,Lk,Pk,Zk,al,Bba,bl;_.Ik=function(a,b){this.Ca=0;this.Mg=void 0;this.Zm=this.Uj=this.Gb=null;this.Gt=this.$x=!1;if(a!=_.Ec)try{var c=this;a.call(b,function(d){c.mg(2,d)},function(d){c.mg(3,d)})}catch(d){this.mg(3,d)}};Jk=function(){this.next=this.context=this.C=this.D=this.B=null;this.$k=!1};Jk.prototype.reset=function(){this.context=this.C=this.D=this.B=null;this.$k=!1};Kk=new rk(function(){return new Jk},function(a){a.reset()});
Lk=function(a,b,c){var d=Kk.get();d.D=a;d.C=b;d.context=c;return d};_.Mk=function(a){if(a instanceof _.Ik)return a;var b=new _.Ik(_.Ec);b.mg(2,a);return b};_.Nk=function(a){return new _.Ik(function(b,c){c(a)})};Pk=function(a,b,c){Ok(a,b,c,null)||_.Fk(_.Jc(b,a))};_.Qk=function(a){return new _.Ik(function(b,c){var d=a.length,e=[];if(d)for(var f=function(n,q){d--;e[n]=q;0==d&&b(e)},h=function(n){c(n)},k=0,l;k<a.length;k++)l=a[k],Pk(l,_.Jc(f,k),h);else b(e)})};
_.Rk=function(a){return new _.Ik(function(b){var c=a.length,d=[];if(c)for(var e=function(k,l,n){c--;d[k]=l?{Jp:!0,value:n}:{Jp:!1,reason:n};0==c&&b(d)},f=0,h;f<a.length;f++)h=a[f],Pk(h,_.Jc(e,f,!0),_.Jc(e,f,!1));else b(d)})};_.Sk=function(){var a,b,c=new _.Ik(function(d,e){a=d;b=e});return new Aba(c,a,b)};_.Ik.prototype.then=function(a,b,c){return Tk(this,_.Hc(a)?a:null,_.Hc(b)?b:null,c)};_.Ik.prototype.$goog_Thenable=!0;_.Vk=function(a,b,c){b=Lk(b,b,c);b.$k=!0;Uk(a,b);return a};
_.Ik.prototype.se=function(a,b){return Tk(this,null,a,b)};_.Ik.prototype.cancel=function(a){if(0==this.Ca){var b=new _.Wk(a);_.Fk(function(){Xk(this,b)},this)}};
var Xk=function(a,b){if(0==a.Ca)if(a.Gb){var c=a.Gb;if(c.Uj){for(var d=0,e=null,f=null,h=c.Uj;h&&(h.$k||(d++,h.B==a&&(e=h),!(e&&1<d)));h=h.next)e||(f=h);e&&(0==c.Ca&&1==d?Xk(c,b):(f?(d=f,d.next==c.Zm&&(c.Zm=d),d.next=d.next.next):Yk(c),Zk(c,e,3,b)))}a.Gb=null}else a.mg(3,b)},Uk=function(a,b){a.Uj||2!=a.Ca&&3!=a.Ca||$k(a);a.Zm?a.Zm.next=b:a.Uj=b;a.Zm=b},Tk=function(a,b,c,d){var e=Lk(null,null,null);e.B=new _.Ik(function(f,h){e.D=b?function(k){try{var l=b.call(d,k);f(l)}catch(n){h(n)}}:f;e.C=c?function(k){try{var l=
c.call(d,k);void 0===l&&k instanceof _.Wk?h(k):f(l)}catch(n){h(n)}}:h});e.B.Gb=a;Uk(a,e);return e.B};_.Ik.prototype.kZ=function(a){this.Ca=0;this.mg(2,a)};_.Ik.prototype.lZ=function(a){this.Ca=0;this.mg(3,a)};_.Ik.prototype.mg=function(a,b){0==this.Ca&&(this===b&&(a=3,b=new TypeError("E")),this.Ca=1,Ok(b,this.kZ,this.lZ,this)||(this.Mg=b,this.Ca=a,this.Gb=null,$k(this),3!=a||b instanceof _.Wk||Bba(this,b)))};
var Ok=function(a,b,c,d){if(a instanceof _.Ik)return Uk(a,Lk(b||_.Ec,c||null,d)),!0;if(Hk(a))return a.then(b,c,d),!0;if(_.ua(a))try{var e=a.then;if(_.Hc(e))return Cba(a,e,b,c,d),!0}catch(f){return c.call(d,f),!0}return!1},Cba=function(a,b,c,d,e){var f=!1,h=function(l){f||(f=!0,c.call(e,l))},k=function(l){f||(f=!0,d.call(e,l))};try{b.call(a,h,k)}catch(l){k(l)}},$k=function(a){a.$x||(a.$x=!0,_.Fk(a.Qs,a))},Yk=function(a){var b=null;a.Uj&&(b=a.Uj,a.Uj=b.next,b.next=null);a.Uj||(a.Zm=null);return b};
_.Ik.prototype.Qs=function(){for(var a;a=Yk(this);)Zk(this,a,this.Ca,this.Mg);this.$x=!1};Zk=function(a,b,c,d){if(3==c&&b.C&&!b.$k)for(;a&&a.Gt;a=a.Gb)a.Gt=!1;if(b.B)b.B.Gb=null,al(b,c,d);else try{b.$k?b.D.call(b.context):al(b,c,d)}catch(e){bl.call(null,e)}sk(Kk,b)};al=function(a,b,c){2==b?a.D.call(a.context,c):a.C&&a.C.call(a.context,c)};Bba=function(a,b){a.Gt=!0;_.Fk(function(){a.Gt&&bl.call(null,b)})};bl=_.xk;_.Wk=function(a){_.Oc.call(this,a)};_.x(_.Wk,_.Oc);_.Wk.prototype.name="cancel";
var Aba=function(a,b,c){this.Va=a;this.resolve=b;this.reject=c};
/*
Portions of this code are from MochiKit, received by
The Closure Authors under the MIT license. All other code is Copyright
2005-2009 The Closure Authors. All Rights Reserved.
*/
var ll,fl,gl;_.cl=function(a,b){this.Av=[];this.zG=a;this.XC=b||null;this.oq=this.PD=!1;this.Mg=void 0;this.xB=this.YJ=this.gx=!1;this.Sv=0;this.Gb=null;this.Yf=0};_.cl.prototype.cancel=function(a){if(this.Gc())this.Mg instanceof _.cl&&this.Mg.cancel();else{if(this.Gb){var b=this.Gb;delete this.Gb;a?b.cancel(a):(b.Yf--,0>=b.Yf&&b.cancel())}this.zG?this.zG.call(this.XC,this):this.xB=!0;this.Gc()||this.Tb(new _.dl(this))}};_.cl.prototype.RC=function(a,b){this.gx=!1;el(this,a,b)};
var el=function(a,b,c){a.PD=!0;a.Mg=c;a.oq=!b;fl(a)};_.cl.prototype.Vj=function(){if(this.Gc()){if(!this.xB)throw new gl(this);this.xB=!1}};_.cl.prototype.callback=function(a){this.Vj();el(this,!0,a)};_.cl.prototype.Tb=function(a){this.Vj();el(this,!1,a)};var hl=function(a){throw a;};_.cl.prototype.Ja=function(a,b){return this.Qd(a,null,b)};_.cl.prototype.$b=function(a,b){return this.Qd(null,a,b)};var il=function(a,b,c){a.Qd(b,function(d){var e=b.call(this,d);if(void 0===e)throw d;return e},c)};
_.cl.prototype.Qd=function(a,b,c){this.Av.push([a,b,c]);this.Gc()&&fl(this);return this};_.cl.prototype.then=function(a,b,c){var d,e,f=new _.Ik(function(h,k){d=h;e=k});this.Qd(d,function(h){h instanceof _.dl?f.cancel():e(h)});return f.then(a,b,c)};_.cl.prototype.$goog_Thenable=!0;_.jl=function(a,b){a.Qd(b.callback,b.Tb,b)};_.kl=function(a,b){b instanceof _.cl?a.Ja((0,_.p)(b.Zh,b)):a.Ja(function(){return b})};_.cl.prototype.Zh=function(a){var b=new _.cl;_.jl(this,b);a&&(b.Gb=this,this.Yf++);return b};
_.cl.prototype.Gc=function(){return this.PD};_.cl.prototype.isError=function(a){return a instanceof Error};ll=function(a){return _.Xc(a.Av,function(b){return _.Hc(b[1])})};
fl=function(a){if(a.Sv&&a.Gc()&&ll(a)){var b=a.Sv,c=ml[b];c&&(_.t.clearTimeout(c.lb),delete ml[b]);a.Sv=0}a.Gb&&(a.Gb.Yf--,delete a.Gb);b=a.Mg;for(var d=c=!1;a.Av.length&&!a.gx;){var e=a.Av.shift(),f=e[0],h=e[1];e=e[2];if(f=a.oq?h:f)try{var k=f.call(e||a.XC,b);void 0!==k&&(a.oq=a.oq&&(k==b||a.isError(k)),a.Mg=b=k);if(Hk(b)||"function"===typeof _.t.Promise&&b instanceof _.t.Promise)d=!0,a.gx=!0}catch(l){b=l,a.oq=!0,ll(a)||(c=!0)}}a.Mg=b;d&&(k=(0,_.p)(a.RC,a,!0),d=(0,_.p)(a.RC,a,!1),b instanceof _.cl?
(b.Qd(k,d),b.YJ=!0):b.then(k,d));c&&(b=new nl(b),ml[b.lb]=b,a.Sv=b.lb)};_.ol=function(a){var b=new _.cl;b.callback(a);return b};_.pl=function(a){var b=new _.cl;a.then(function(c){b.callback(c)},function(c){b.Tb(c)});return b};_.ql=function(a){var b=new _.cl;b.Tb(a);return b};gl=function(a){_.Oc.call(this);this.Id=a};_.x(gl,_.Oc);gl.prototype.message="Deferred has already fired";gl.prototype.name="AlreadyCalledError";_.dl=function(a){_.Oc.call(this);this.Id=a};_.x(_.dl,_.Oc);
_.dl.prototype.message="Deferred was canceled";_.dl.prototype.name="CanceledError";var nl=function(a){this.lb=_.t.setTimeout((0,_.p)(this.C,this),0);this.B=a};nl.prototype.C=function(){delete ml[this.lb];hl(this.B)};var ml={};
var rl=function(){};_.v(rl,_.kg);var sl=function(a){var b=new rl,c="Deferred errback'ed: "+_.Vf(a.F);cg(b,c,a);b.C(Error(b));return b},Dba=function(a){ig(a)?a=sl(a):a instanceof Error?a=sl(gg(a)):(a=new rl,_.bg(a,"Deferred errback'ed"),a.C(Error(a)));return a};
var tl=function(){};_.v(tl,_.kg);
var Eba=function(a,b){a.Qd(function(c){b.callback(c)},function(c){b.Tb(Dba(c))})},Fba=function(a){var b=new _.ok;a.then(function(c){b.callback(c);return null},function(c){if(c instanceof Error||ig(c)){if(null==c)c=new Zf,$f(c),ag(c),c.C(Error(c));else if(!ig(c))if(c instanceof Error)c=gg(c);else throw _.tg("Unsupported type cannot be used to create a Throwable.").B;var d=new tl;cg(d,"Promise rejected",c);d.C(Error(d));c=d}else c=new tl,_.bg(c,"Promise rejected"),c.C(Error(c));b.Tb(c);return null});
return b};
_.Al=function(a,b,c){a=_.ak(a,(Fi(),Di));if(!a)return b;if(b&&b.B&&_.ul(b.B))var d=b.B?_.ul(b.B):null;else b=b?_.vl(b):_.wl(new _.xl,21),d=new _.yi,b=_.yl(_.zl(b,d));a(d,c);return b};
var Bl=function(a){_.A(this,a,0,-1,null,null)};_.x(Bl,_.z);
var Gba;_.Cl=function(a){_.A(this,a,0,-1,Gba,null)};_.x(_.Cl,_.z);_.Dl=function(a){_.A(this,a,0,-1,null,null)};_.x(_.Dl,_.z);Gba=[3,42];_.ul=function(a){return _.I(a,_.yi,4)};
var El=function(a){_.A(this,a,0,-1,null,null)};_.x(El,_.z);var Fl=function(a){_.A(this,a,0,-1,null,null)};_.x(Fl,_.z);
var Gl=function(a){_.A(this,a,0,-1,Hba,null)};_.x(Gl,_.z);var Hl=function(a){_.A(this,a,0,-1,null,null)};_.x(Hl,_.z);var Hba=[2];
var Il=function(a){_.A(this,a,0,-1,null,null)};_.x(Il,_.z);var Jl=function(a){_.A(this,a,0,-1,null,null)};_.x(Jl,_.z);var Kl=function(a){_.A(this,a,0,-1,null,null)};_.x(Kl,_.z);
var Ll=function(a){_.A(this,a,0,-1,Iba,null)};_.x(Ll,_.z);var Iba=[2,27];
var Ml=function(a){_.A(this,a,0,-1,Jba,null)};_.x(Ml,_.z);var Jba=[1];
var Nl=function(a){_.A(this,a,0,-1,null,null)};_.x(Nl,_.z);_.Ol=function(a){return _.I(a,_.Cl,1)};
_.Pl=function(a,b,c,d,e,f,h,k,l,n,q,w,y,D,H,P,aa,la,Ba,lb,Wc,Lc,Te,Pf,mh,U9,V9,W9,X9,Y9,Z9,$9,a$){this.la=a;this.C=void 0===c?null:c;this.X=void 0===b?null:b;this.D=void 0===d?null:d;this.B=void 0===e?null:e;this.H=void 0===f?null:f;this.gb=void 0===h?null:h;this.kg=void 0===k?null:k;this.Ha=void 0===l?null:l;this.ac=void 0===n?null:n;this.mb=void 0===q?null:q;this.Qg=void 0===w?null:w;this.L=void 0===y?null:y;this.ea=void 0===D?null:D;this.I=void 0===H?null:H;this.F=void 0===P?null:P;this.J=void 0===
aa?null:aa;this.aa=void 0===la?null:la;this.$a=void 0===Ba?null:Ba;this.za=void 0===lb?null:lb;this.S=void 0===Wc?null:Wc;this.Xa=void 0===Lc?null:Lc;this.Hb=void 0===Te?null:Te;this.Ob=void 0===Pf?null:Pf;this.kc=void 0===mh?null:mh;this.Rb=void 0===U9?null:U9;this.qa=void 0===V9?null:V9;this.Aa=void 0===W9?null:W9;this.V=void 0===X9?null:X9;this.R=void 0===Y9?null:Y9;this.Sa=void 0===Z9?null:Z9;this.xa=void 0===$9?null:$9;this.Fa=void 0===a$?null:a$};
_.xl=function(){this.xa=this.ea=this.J=this.R=this.qa=this.Aa=this.aa=this.kc=this.Hb=this.Qg=this.mb=this.Ha=this.L=this.la=this.Sa=this.V=this.ac=this.I=this.Rb=this.X=this.$a=this.H=this.gb=this.Ob=this.za=this.kg=this.Xa=this.B=this.F=this.D=this.Fa=this.S=this.C=null};_.wl=function(a,b){a.zd=b;return a};_.zl=function(a,b){a.C=b;return a};
_.yl=function(a){a.C&&(a.B||(a.B=new _.Cl),_.J(a.B,4,a.C));return new _.Pl(a.zd,a.S,a.D,a.F,a.B,a.Fa,a.kg,a.Xa,a.za,a.Ob,a.$a,a.gb,a.H,a.X,a.Rb,a.I,a.ac,a.V,a.Sa,a.la,a.L,a.Ha,a.mb,a.Qg,a.Hb,a.kc,a.aa,a.qa,a.R,a.J,a.Aa,a.ea,a.xa)};
_.vl=function(a){var b=_.wl(new _.xl,a.la);b.S=a.X;b.D=a.C;b.F=a.D;b.B=a.B;b.Fa=a.H;b.kg=a.gb;b.Xa=a.kg;b.za=a.Ha;b.Ob=a.ac;b.$a=a.mb;b.gb=a.Qg;b.H=a.L;b.X=a.ea;b.Rb=a.I;b.I=a.F;b.ac=a.J;b.V=a.aa;b.Sa=a.$a;b.la=a.za;b.L=a.S;b.Ha=a.Xa;b.mb=a.Hb;b.Qg=a.Ob;b.Hb=a.kc;b.kc=a.Rb;b.aa=a.qa;b.qa=a.Aa;b.R=a.V;b.J=a.R;b.Aa=a.Sa;b.ea=a.xa;b.xa=a.Fa;return b};
_.Ql=function(a){_.Hi.call(this);this.B=new Ii;this.ha(this.B);this.H={};this.C=a;this.F(iba())};_.v(_.Ql,_.Hi);_.Ql.prototype.D=function(a){var b=a.getId();b in this.H||null==_.ak(a,(Fi(),Ei))||(Kba(this,a),this.H[b]=!0)};_.Ql.prototype.F=function(a){for(var b=0;b<a.length;b++)this.D(a[b])};var Kba=function(a,b){a.C?b.H=a.C:oba(a.B,b,function(c){a.I(b,c.data,c.B)})};_.Ql.prototype.ma=function(){var a=this.B;a&&a.dispose();_.Hi.prototype.ma.call(this)};
var Sl=function(){this.B=new Rl};_.v(Sl,_.Sf);
var Rl=function(a){_.A(this,a,0,-1,Lba,null)};_.x(Rl,_.z);var Lba=[90,91,93,103];
_.Tl=function(a,b){this.start=a<b?a:b;this.end=a<b?b:a};_.Tl.prototype.clone=function(){return new _.Tl(this.start,this.end)};_.Ul=function(a,b){return a.start<=b&&a.end>=b};
_.Wl=function(){this.B=new Vl};_.v(_.Wl,_.Sf);
var Xl=function(a){_.A(this,a,0,-1,null,null)};_.x(Xl,_.z);
var Vl=function(a){_.A(this,a,0,-1,Mba,null)};_.x(Vl,_.z);var Mba=[2,9];
var Yl=function(){_.Hi.call(this)};_.v(Yl,_.Hi);
_.Zl=function(){_.Hi.call(this);this.B={};this.C=null};_.v(_.Zl,Yl);_.$l=function(a,b){ah(b);if(hk(a.B,b))throw _.Cg(ch("Observer %s previously registered.",[b])).B;_.Ph(a.B,_.gk()(b),b);a.C=null;return b};_.Zl.prototype.wv=function(a){if(!hk(this.B,a))throw _.tg(ch("Trying to remove inexistant Observer %s.",[a])).B;a=_.gk()(a);delete this.B[a];this.C=null};_.Zl.prototype.ma=function(){Yl.prototype.ma.call(this);Vh(this.B);this.C=null};
_.Zl.prototype.dispatchEvent=function(a){this.C||(this.C=Qh(this.B));var b=this.C;for(var c=0;c<b.length;c=c+1|0)(0,b[c])(a)};
var am=function(){this.JN=_.fk(_.th(),"gaia_session_id")},bm;_.v(am,_.Sf);
var dm,Nba,em,fm,gm,hm,im,jm,km,lm,mm,nm,om,pm,rm;dm=function(a,b){_.cm();this.C=a;this.B=b;_.Ph(Nba,a,this)};Nba={};_.v(dm,_.Sf);dm.prototype.isError=function(){return 1!=this.B};dm.prototype.Sb=function(a){return a instanceof dm?_.Tf(this.toString(),a.toString()):!1};dm.prototype.Rn=function(){return Sg(this.C)};dm.prototype.toString=function(){return this.C};
_.cm=function(){_.cm=function(){};fm=new dm("IDLE",1);gm=new dm("BUSY",1);hm=new dm("RECOVERING",2);im=new dm("OFFLINE",3);jm=new dm("SERVER_DOWN",3);km=new dm("FORBIDDEN",4);lm=new dm("AUTH_REQUIRED",4);mm=new dm("SESSION_LIMIT_EXCEEDED",5);nm=new dm("LOCKED",5);om=new dm("INCOMPATIBLE_SERVER",5);pm=new dm("CLIENT_ERROR",5);new dm("BATCH_CLIENT_ERROR",3);_.qm=new dm("SAVE_ERROR",5);new dm("BATCH_SAVE_ERROR",3);rm=new dm("DOCS_EVERYWHERE_IMPORT_ERROR",5);em=new dm("POST_LIMIT_EXCEEDED_ERROR",5)};
var Oba=/^[^\[\{]+/;
var sm=function(){_.Hi.call(this);this.Us=new _.Zl;this.C=new _.Zl;this.B=(_.cm(),fm);this.ha(this.Us);this.ha(this.C)};_.v(sm,_.Hi);sm.prototype.Za=function(a,b,c){var d=this.B;_.Tf(a,d)||(_.Vf(d),_.Vf(a),this.B=a,this.Us.dispatchEvent(new tm(d,a,b,c)))};sm.prototype.getState=function(){return this.B};
var tm=function(a,b,c,d){this.D=a;this.rG=b;this.B=c;this.C=d};_.v(tm,_.Sf);
var um=function(a,b,c,d,e){this.H=a;this.D=b;this.F=c;this.C=d;this.B=e};_.v(um,_.Sf);um.prototype.toString=function(){var a="MalformedCharacterContext(unicodeChar: "+_.Vf(this.H)+", index: "+this.D+", textLength: "+this.F;null!=this.C&&(a=_.Vf(a)+(", prev: "+_.Vf(this.C)));null!=this.B&&(a=_.Vf(a)+(", next: "+_.Vf(this.B)));return _.Vf(a)+")"};um.prototype.Sb=function(a){var b;if(b=a instanceof um)a=_.xg(a),b=_.Tf(this.toString(),a);return b};
um.prototype.Rn=function(){for(var a=[this.H,Mg(this.D),Mg(this.F),this.C,this.B],b=1,c=0;c<a.length;c++){b=Math.imul(31,b);var d=a[c];if(null!=d)if(d.Rn)d=d.Rn();else{var e=typeof d;d="number"==e?_.rg(d):"boolean"==e?d?1231:1237:"string"==e?Sg(d):Uf(d)}else d=0;b=b+d|0;b|=0}return b};
var vm=function(a,b){return 0>b||b>=a.length?null:"\\u"+_.Vf(Yf(Og(a,b)))};
var wm=function(){};_.v(wm,_.Sf);
_.xm=function(){_.Hi.call(this);this.B=[]};_.v(_.xm,_.Hi);_.ym=function(a,b,c){a=a.B;c=_.$l(b,c);var d=new wm;d.B=b;d.C=c;a.push(d)};_.xm.prototype.ma=function(){this.removeAll();_.Hi.prototype.ma.call(this)};_.xm.prototype.wv=function(a){for(var b=0;b<this.B.length;b=b+1|0){var c=this.B[b];if(void 0==c.C&&_.Tf(c.B,a)){hk(c.B.B,c.C)&&c.B.wv(c.C);a=b;a==(this.B.length-1|0)?this.B.pop():(b=this.B.pop(),this.B[a]=b);break}}};
_.xm.prototype.removeAll=function(){for(var a=this.B.pop();a;)hk(a.B.B,a.C)&&a.B.wv(a.C),a=this.B.pop()};
var zm=function(a){this.B=a};zm.prototype.toString=function(){return this.B};_.Am=function(a){return new zm(a)};
var Bm=_.Am("xO31ue"),Pba=_.Am("aiCLEf"),Qba=_.Am("gsiSmd"),Rba=_.Am("SK99f"),Sba=_.Am("XxLlob");
_.Da=function(a,b,c){this.Bv=a;this.Ou=b||null;this.RK=c||[]};_.Da.prototype.toString=function(){return this.Bv};_.Da.prototype.pn=function(){return this.RK};
var Ca=Symbol("F");
_.Cm=function(a,b,c,d){this.type=a.type;this.event=a;this.C=b;this.B=c;this.data=a.data;this.source=d};
var Dm=function(a){var b={},c={},d=[],e=[],f=function(n){if(!c[n]){var q=n instanceof _.Da?n.pn():[];c[n]=_.pa(q);_.Sc(q,function(w){b[w]=b[w]||[];b[w].push(n)});q.length||d.push(n);_.Sc(q,f)}};for(_.Sc(a,f);d.length;){var h=d.shift();e.push(h);b[h]&&_.Sc(b[h],function(n){_.na(c[n],h);c[n].length||d.push(n)})}var k={},l=[];_.Sc(e,function(n){n instanceof _.Da&&(n=n.Ou,null==n||k[n]||(k[n]=!0,l.push(n)))});return{services:e,KU:l}};
var Em=function(){this.B={}},Fm,Tba;Em.prototype.register=function(a,b){this.B[a]=b};Fm=function(a,b){if(!a.B[b])return b;a=a.B[b];return(a=a.C||a.B)?a:b};Tba=function(a,b){return!!a.B[b]};_.Gm=function(a){var b=Em.Ia().B[a];if(!b)throw Error("G`"+a);return b};_.Fc(Em);
var Uba=function(a){var b=_.t.onerror,c=!1;_.r.Mc&&!_.r.Eb("535.3")&&(c=!c);_.t.onerror=function(d,e,f,h,k){b&&b(d,e,f,h,k);a({message:d,fileName:e,line:f,lineNumber:f,C5:h,error:k});return c}},Vba=function(a){var b=_.Dc("window.location.href");null==a&&(a='Unknown Error of type "null/undefined"');if("string"===typeof a)return{message:a,name:"Unknown error",lineNumber:"Not available",fileName:b,stack:"Not available"};var c=!1;try{var d=a.lineNumber||a.line||"Not available"}catch(f){d="Not available",
c=!0}try{var e=a.fileName||a.filename||a.sourceURL||_.t.$googDebugFname||b}catch(f){e="Not available",c=!0}b=Hm(a);if(!(!c&&a.lineNumber&&a.fileName&&a.stack&&a.message&&a.name))return c=a.message,null==c&&(c=a.constructor&&a.constructor instanceof Function?'Unknown Error of type "'+(a.constructor.name?a.constructor.name:Im(a.constructor))+'"':"Unknown Error of unknown type","function"===typeof a.toString&&Object.prototype.toString!==a.toString&&(c+=": "+a.toString())),{message:c,name:a.name||"UnknownError",
lineNumber:d,fileName:e,stack:b||"Not available"};a.stack=b;return a},Hm=function(a,b){b||(b={});b[Jm(a)]=!0;var c=a.stack||"";(a=a.cause)&&!b[Jm(a)]&&(c+="\nCaused by: ",a.stack&&0==a.stack.indexOf(a.toString())||(c+="string"===typeof a?a:a.message+"\n"),c+=Hm(a,b));return c},Jm=function(a){var b="";"function"===typeof a.toString&&(b=""+a);return b+a.stack},Km=function(a,b){a instanceof Error||(a=Error(a),Error.captureStackTrace&&Error.captureStackTrace(a,Km));a.stack||(a.stack=Lm(Km));if(b){for(var c=
0;a["message"+c];)++c;a["message"+c]=String(b)}return a},Mm=function(a,b){a=Km(a);if(b)for(var c in b){var d=a,e=c,f=b[c];d.__closure__error__context__984382||(d.__closure__error__context__984382={});d.__closure__error__context__984382[e]=f}return a},Om=function(a){var b=Nm(Om);if(b)return b;b=[];for(var c=arguments.callee.caller,d=0;c&&(!a||d<a);){b.push(Im(c));b.push("()\n");try{c=c.caller}catch(e){b.push("[exception trying to get caller]\n");break}d++;if(50<=d){b.push("[...long stack...]");break}}a&&
d>=a?b.push("[...reached max depth limit...]"):b.push("[end]");return b.join("")},Nm=function(a){var b=Error();if(Error.captureStackTrace)return Error.captureStackTrace(b,a),String(b.stack);try{throw b;}catch(c){b=c}return(a=b.stack)?String(a):null},Lm=function(a){var b;(b=Nm(a||Lm))||(b=Pm(a||arguments.callee.caller,[]));return b},Pm=function(a,b){var c=[];if(_.ia(b,a))c.push("[...circular reference...]");else if(a&&50>b.length){c.push(Im(a)+"(");for(var d=a.arguments,e=0;d&&e<d.length;e++){0<e&&
c.push(", ");var f=d[e];switch(typeof f){case "object":f=f?"object":"null";break;case "string":break;case "number":f=String(f);break;case "boolean":f=f?"true":"false";break;case "function":f=(f=Im(f))?f:"[fn]";break;default:f=typeof f}40<f.length&&(f=f.substr(0,40)+"...");c.push(f)}b.push(a);c.push(")\n");try{c.push(Pm(a.caller,b))}catch(h){c.push("[exception trying to get caller]\n")}}else a?c.push("[...long stack...]"):c.push("[end]");return c.join("")},Im=function(a){if(Qm[a])return Qm[a];a=String(a);
if(!Qm[a]){var b=/function\s+([^\(]+)/m.exec(a);Qm[a]=b?b[1]:"[Anonymous]"}return Qm[a]},Qm={};
_.Rm="StopIteration"in _.t?_.t.StopIteration:{message:"StopIteration",stack:""};_.Sm=function(){};_.Sm.prototype.next=function(){throw _.Rm;};_.Sm.prototype.Pm=function(){return this};
_.Tm=function(a,b){this.C={};this.B=[];this.F=this.D=0;var c=arguments.length;if(1<c){if(c%2)throw Error("t");for(var d=0;d<c;d+=2)this.set(arguments[d],arguments[d+1])}else if(a)if(a instanceof _.Tm)for(c=a.Fc(),d=0;d<c.length;d++)this.set(c[d],a.get(c[d]));else for(d in a)this.set(d,a[d])};_.Tm.prototype.Ub=function(){return this.D};_.Tm.prototype.Pc=function(){Um(this);for(var a=[],b=0;b<this.B.length;b++)a.push(this.C[this.B[b]]);return a};_.Tm.prototype.Fc=function(){Um(this);return this.B.concat()};
_.Wm=function(a,b){return Vm(a.C,b)};_.Tm.prototype.dj=function(a){for(var b=0;b<this.B.length;b++){var c=this.B[b];if(Vm(this.C,c)&&this.C[c]==a)return!0}return!1};_.Tm.prototype.Sb=function(a,b){if(this===a)return!0;if(this.D!=a.Ub())return!1;b=b||Wba;Um(this);for(var c,d=0;c=this.B[d];d++)if(!b(this.get(c),a.get(c)))return!1;return!0};var Wba=function(a,b){return a===b};_.Tm.prototype.Dc=function(){return 0==this.D};_.Tm.prototype.clear=function(){this.C={};this.F=this.D=this.B.length=0};
_.Tm.prototype.remove=function(a){return Vm(this.C,a)?(delete this.C[a],this.D--,this.F++,this.B.length>2*this.D&&Um(this),!0):!1};var Um=function(a){if(a.D!=a.B.length){for(var b=0,c=0;b<a.B.length;){var d=a.B[b];Vm(a.C,d)&&(a.B[c++]=d);b++}a.B.length=c}if(a.D!=a.B.length){var e={};for(c=b=0;b<a.B.length;)d=a.B[b],Vm(e,d)||(a.B[c++]=d,e[d]=1),b++;a.B.length=c}};_.g=_.Tm.prototype;_.g.get=function(a,b){return Vm(this.C,a)?this.C[a]:b};
_.g.set=function(a,b){Vm(this.C,a)||(this.D++,this.B.push(a),this.F++);this.C[a]=b};_.g.forEach=function(a,b){for(var c=this.Fc(),d=0;d<c.length;d++){var e=c[d],f=this.get(e);a.call(b,f,e,this)}};_.g.clone=function(){return new _.Tm(this)};_.g.Pm=function(a){Um(this);var b=0,c=this.F,d=this,e=new _.Sm;e.next=function(){if(c!=d.F)throw Error("I");if(b>=d.B.length)throw _.Rm;var f=d.B[b++];return a?f:d.C[f]};return e};var Vm=function(a,b){return Object.prototype.hasOwnProperty.call(a,b)};
_.O=function(){this.Qg=this.Qg;this.kg=this.kg};_.O.prototype.Qg=!1;_.O.prototype.isDisposed=function(){return this.Qg};_.O.prototype.dispose=function(){this.Qg||(this.Qg=!0,this.ma())};_.O.prototype.ha=function(a){_.Xm(this,_.Jc(_.Ym,a))};_.Xm=function(a,b,c){a.Qg?void 0!==c?b.call(c):b():(a.kg||(a.kg=[]),a.kg.push(void 0!==c?(0,_.p)(b,c):b))};_.O.prototype.ma=function(){if(this.kg)for(;this.kg.length;)this.kg.shift()()};_.Zm=function(a){return a&&"function"==typeof a.isDisposed?a.isDisposed():!1};
_.Ym=function(a){a&&"function"==typeof a.dispose&&a.dispose()};_.$m=function(a){for(var b=0,c=arguments.length;b<c;++b){var d=arguments[b];_.qa(d)?_.$m.apply(null,d):_.Ym(d)}};
var an=function(){_.O.call(this)};_.x(an,_.O);an.prototype.initialize=function(){};
var bn=function(a,b){this.B=a;this.C=b};bn.prototype.execute=function(a){this.B&&(this.B.call(this.C||null,a),this.B=this.C=null)};bn.prototype.abort=function(){this.C=this.B=null};wk(function(a){bn.prototype.execute=a(bn.prototype.execute)});
var cn=function(a,b){_.O.call(this);this.F=a;this.lb=b;this.D=[];this.C=[];this.B=[]};_.x(cn,_.O);_.g=cn.prototype;_.g.eA=an;_.g.fA=null;_.g.pn=function(){return this.F};_.g.getId=function(){return this.lb};_.g.Hv=function(a){if(this.eA===an)this.eA=a;else throw Error("J");};_.g.tt=function(a,b){this.D.push(new bn(a,b))};var dn=function(a,b){a.C.push(new bn(b,void 0))};cn.prototype.Jc=function(){return!!this.fA};
cn.prototype.onLoad=function(a){var b=new this.eA;b.initialize(a());this.fA=b;b=(b=!!en(this.B,a()))||!!en(this.D,a());b||(this.C.length=0);return b};cn.prototype.Ig=function(a){(a=en(this.C,a))&&window.setTimeout(Haa("Module errback failures: "+a),0);this.B.length=0;this.D.length=0};var en=function(a,b){for(var c=[],d=0;d<a.length;d++)try{a[d].execute(b)}catch(e){_.xk(e),c.push(e)}a.length=0;return c.length?c:null};cn.prototype.ma=function(){cn.oa.ma.call(this);_.Ym(this.fA)};
_.fn=function(){this.xa=this.X=null};_.g=_.fn.prototype;_.g.FH=function(){};_.g.GH=function(){};_.g.Dv=function(){};_.g.xh=function(){return this.xa};_.g.nE=function(){return this.X};_.g.gB=function(a){this.X=a};_.g.Mb=function(){return!1};_.g.HF=function(){return!1};_.g.dH=function(){};_.g.Hv=function(){};_.g.tt=function(){};
_.Fa=null;_.Ga=null;
var gn=function(){_.fn.call(this);this.C={};this.F=[];this.H=[];this.aa=[];this.B=[];this.I=[];this.Ha={};this.R={};this.D=this.L=new cn([],"");this.qa=null;this.J=new _.cl;this.la=this.ea=!1;this.S=0;this.za=this.Fa=this.Aa=!1};_.x(gn,_.fn);var hn=function(){_.Oc.call(this)};_.x(hn,_.Oc);_.g=gn.prototype;_.g.FH=function(a){this.ea=a};_.g.GH=function(a){this.la=a};
_.g.Dv=function(a,b){if(!(this instanceof gn))this.Dv(a,b);else if("string"===typeof a){a=a.split("/");for(var c=[],d=0;d<a.length;d++){var e=a[d].split(":"),f=e[0];if(e[1]){e=e[1].split(",");for(var h=0;h<e.length;h++)e[h]=c[parseInt(e[h],36)]}else e=[];c.push(f);this.C[f]?(f=this.C[f].pn(),f!=e&&f.splice.apply(f,[0,f.length].concat(_.Ya(e)))):this.C[f]=new cn(e,f)}b&&b.length?(_.ra(this.F,b),this.qa=_.ba(b)):this.J.Gc()||this.J.callback();jn(this)}};_.g.wi=function(a){return this.C[a]};
_.g.gB=function(a){gn.oa.gB.call(this,a);jn(this)};_.g.Mb=function(){return 0<this.F.length};_.g.HF=function(){return 0<this.I.length};
var kn=function(a){var b=a.Mb();b!=a.Aa&&(a.Qs(b?"active":"idle"),a.Aa=b);b=a.HF();b!=a.Fa&&(a.Qs(b?"userActive":"userIdle"),a.Fa=b)},ln=function(a,b,c){var d=[];_.wa(b,d);b=[];for(var e={},f=0;f<d.length;f++){var h=d[f],k=a.wi(h);if(!k)throw Error("L`"+h);var l=new _.cl;e[h]=l;k.Jc()?l.callback(a.X):(Xba(a,h,k,!!c,l),a.ku(h)||b.push(h))}0<b.length&&(a.la?a.J.Ja((0,_.p)(a.V,a,b)):0==a.F.length?a.V(b):(a.B.push(b),kn(a)));return e},Xba=function(a,b,c,d,e){c.tt(e.callback,e);dn(c,function(f){e.Tb(new hn(f))});
a.ku(b)?d&&(_.ia(a.I,b)||a.I.push(b),kn(a)):d&&(_.ia(a.I,b)||a.I.push(b))};gn.prototype.V=function(a,b,c){b||(this.S=0);b=Yba(this,a);this.la?_.ra(this.F,b):this.F=b;this.H=this.ea?a:_.pa(b);kn(this);0!=b.length&&(this.aa.push.apply(this.aa,b),a=(0,_.p)(this.xh().za,this.xh(),_.pa(b),this.C,{th:this.Ha,b6:!!c,Ig:(0,_.p)(this.gQ,this,this.H,b),vW:(0,_.p)(this.iQ,this)}),(c=5E3*Math.pow(this.S,2))?window.setTimeout(a,c):a())};
var Yba=function(a,b){b=_.Tc(b,function(e){return a.C[e].Jc()?(_.t.setTimeout(function(){return Error("M`"+e)},0),!1):!0});for(var c=[],d=0;d<b.length;d++)c=c.concat(mn(a,b[d]));_.wa(c);return!a.ea&&1<c.length?(b=c.shift(),a.B=_.Uc(c,function(e){return[e]}).concat(a.B),[b]):c},mn=function(a,b){var c=_.sd(a.aa),d=[];c[b]||d.push(b);b=[b];for(var e=0;e<b.length;e++)for(var f=a.wi(b[e]).pn(),h=f.length-1;0<=h;h--){var k=f[h];a.wi(k).Jc()||c[k]||(d.push(k),b.push(k))}d.reverse();_.wa(d);return d},jn=
function(a){a.D==a.L&&(a.D=null,a.L.onLoad((0,_.p)(a.nE,a))&&nn(a,4),kn(a))};_.g=gn.prototype;_.g.ja=function(){if(this.D){var a=this.D.getId();this.isDisposed()||(this.C[a].onLoad((0,_.p)(this.nE,this))&&nn(this,4),_.na(this.I,a),_.na(this.F,a),0==this.F.length&&on(this),this.qa&&a==this.qa&&(this.J.Gc()||this.J.callback()),kn(this),this.D=null)}};_.g.ku=function(a){if(_.ia(this.F,a))return!0;for(var b=0;b<this.B.length;b++)if(_.ia(this.B[b],a))return!0;return!1};
_.g.load=function(a,b){return ln(this,[a],b)[a]};_.g.Cu=function(a){return ln(this,a,void 0)};_.g.ia=function(a){this.D=this.wi(a)};_.g.dH=function(a){this.D&&this.D.B.push(new bn(a,void 0))};_.g.Hv=function(a){this.D&&this.D.Hv(a)};_.g.gQ=function(a,b,c){this.S++;this.H=a;_.Sc(b,_.Jc(_.na,this.aa),this);401==c?(nn(this,0),this.B.length=0):410==c?(pn(this,3),on(this)):3<=this.S?(pn(this,1),on(this)):this.V(this.H,!0,8001==c)};_.g.iQ=function(){pn(this,2);on(this)};
var pn=function(a,b){1<a.H.length?a.B=_.Uc(a.H,function(c){return[c]}).concat(a.B):nn(a,b)},nn=function(a,b){var c=a.H;a.F.length=0;for(var d=[],e=0;e<a.B.length;e++){var f=_.Tc(a.B[e],function(l){var n=mn(this,l);return _.Xc(c,function(q){return _.ia(n,q)})},a);_.ra(d,f)}for(e=0;e<c.length;e++)_.ka(d,c[e]);for(e=0;e<d.length;e++){for(f=0;f<a.B.length;f++)_.na(a.B[f],d[e]);_.na(a.I,d[e])}var h=a.R.error;if(h)for(e=0;e<h.length;e++){var k=h[e];for(f=0;f<d.length;f++)k("error",d[f],b)}for(e=0;e<c.length;e++)a.C[c[e]]&&
a.C[c[e]].Ig(b);a.H.length=0;kn(a)},on=function(a){for(;a.B.length;){var b=_.Tc(a.B.shift(),function(c){return!this.wi(c).Jc()},a);if(0<b.length){a.V(b);return}}kn(a)};gn.prototype.tt=function(a,b){Array.isArray(a)||(a=[a]);for(var c=0;c<a.length;c++){var d=a[c],e=b,f=this.R;f[d]||(f[d]=[]);f[d].push(e)}};gn.prototype.Qs=function(a){for(var b=this.R[a],c=0;b&&c<b.length;c++)b[c](a)};
gn.prototype.dispose=function(){_.$m(_.ac(this.C),this.L);this.C={};this.F=[];this.H=[];this.I=[];this.B=[];this.R={};this.za=!0};gn.prototype.isDisposed=function(){return this.za};_.Ga=function(){return new gn};
var qn,sn,$ba,Zba;_.rb=function(){this.B={};this.C=this.Tc=null;this.D=Zba};_.rb.prototype.Yc=function(){return this.Tc};_.rb.prototype.register=function(a,b){b.displayName=a;b[Ca]=a;this.B[a]=b};qn=function(a,b){if(a=Ea(b))return a};sn=function(a,b){var c=Fm(Em.Ia(),b);return(b=a.B[c])?_.ol(b):c instanceof _.Da?_.pl(_.rn(a,[c])).Ja(function(){if(a.B[c])return a.B[c];throw new TypeError("N`"+c);}):_.ql(new TypeError("N`"+c))};_.rn=function(a,b){a=$ba(a,b);a.se(function(){});return a};
$ba=function(a,b){b=b.map(function(e){return Fm(Em.Ia(),e)});b=b.filter(function(e){return!a.Jc(e)});var c=[],d={};Dm(b).services.filter(function(e){return e instanceof _.Da&&!a.Jc(e)}).forEach(function(e){e=e.Ou;null==e||d[e]||(d[e]=!0,c.push(e))});if(0==c.length)return _.Mk();try{return _.Qk(Object.values(a.D(a,c)))}catch(e){return _.Nk(e)}};_.rb.prototype.Jc=function(a){return!!this.B[a]};_.Fc(_.rb);_.tn=function(a){a.C||(a.C=_.m());return a.C};Zba=function(a,b){return _.tn(a).Cu(b)};
var un=function(a,b,c,d,e,f){_.cl.call(this,e,f);this.Nb=a;this.B=[];this.C=!!b;this.I=!!c;this.H=!!d;for(b=this.F=0;b<a.length;b++)a[b].Qd((0,_.p)(this.D,this,b,!0),(0,_.p)(this.D,this,b,!1));0!=a.length||this.C||this.callback(this.B)};_.x(un,_.cl);un.prototype.D=function(a,b,c){this.F++;this.B[a]=[b,c];this.Gc()||(this.C&&b?this.callback([a,c]):this.I&&!b?this.Tb(c):this.F==this.Nb.length&&this.callback(this.B));this.H&&!b&&(c=null);return c};
un.prototype.Tb=function(a){un.oa.Tb.call(this,a);for(a=0;a<this.Nb.length;a++)this.Nb[a].cancel()};_.vn=function(a){return(new un(a,!1,!0)).Ja(function(b){for(var c=[],d=0;d<b.length;d++)c[d]=b[d][1];return c})};
var aca,wn,xn,yn,zn,bca;aca=function(){};wn={};xn={};yn=function(a){_.gd(a,function(b,c){wn[c]=b})};zn=function(a){_.gd(a,function(b,c){wn[c]=b;xn[c]=!0})};_.An=function(a,b){var c=[],d=_.id(b,function(f,h){return bca(a,b[h],c,wn[h],h)}),e=_.vn(c);e.Ja(function(f){return _.id(d,function(h){var k=new aca;_.gd(h,function(l,n){k[n]=f[l]});return k})});e.$b(function(f){throw f;});return e};
bca=function(a,b,c,d,e){var f={},h;xn[e]?h=d(a,b):h=_.id(b,function(k){return d(a,k,b)});_.gd(h,function(k,l){k instanceof _.Ik&&(k=_.pl(k));var n=c.length;c.push(k);f[l]=n});return f};
zn({La:function(a,b){for(var c=_.u(Object.keys(b)),d=c.next();!d.done;d=c.next()){d=d.value;var e=b[d];b[d]=Ea(e)||e}c=_.ac(b);if(0==c.length)return{};a=a.Yc();try{var f=_.Bn(a,c)}catch(h){throw h;}return _.id(b,function(h){return f[h]})},preload:function(a,b){a=_.ac(b).filter(function(d){return d instanceof _.Da});var c=_.rn(_.rb.Ia(),a);return _.id(b,function(){return c})}});
yn({context:function(a,b){return a.getContext(b)},Id:function(a,b){a=b.call(a);return Array.isArray(a)?_.vn(a):a},Gk:function(a,b){return new _.Ik(function(c){"function"===typeof b&&c(b.call(a,a));c(b)})}});_.t||_.An(null,{l5:{},La:{},context:{},controller:{},controllers:{},data:{},Id:{},Gk:{},rN:{},preload:{},xS:{},S6:{},model:{},JX:{},service:{}}).then();
var Dn;_.Cn=new WeakMap;Dn=new WeakMap;
/*
Copyright 2011 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
_.Q=function(a,b){this.type=a instanceof _.lk?String(a):a;this.currentTarget=this.target=b;this.defaultPrevented=this.D=!1};_.Q.prototype.stopPropagation=function(){this.D=!0};_.Q.prototype.preventDefault=function(){this.defaultPrevented=!0};
var En,dca,eca;_.cca=!_.r.Ka||_.r.xf(9);En=!_.r.Ka||_.r.xf(9);dca=_.r.Ka&&!_.r.Eb("9");_.Fn="ontouchstart"in _.t||!!(_.t.document&&document.documentElement&&"ontouchstart"in document.documentElement)||!(!_.t.navigator||!_.t.navigator.maxTouchPoints&&!_.t.navigator.msMaxTouchPoints);_.Gn="PointerEvent"in _.t;_.Hn="MSPointerEvent"in _.t&&!(!_.t.navigator||!_.t.navigator.msPointerEnabled);
eca=function(){if(!_.t.addEventListener||!Object.defineProperty)return!1;var a=!1,b=Object.defineProperty({},"passive",{get:function(){a=!0}});try{_.t.addEventListener("test",_.Ec,b),_.t.removeEventListener("test",_.Ec,b)}catch(c){}return a}();
_.In=_.Gn?"pointerdown":_.Hn?"MSPointerDown":"mousedown";_.Jn=_.Gn?"pointerup":_.Hn?"MSPointerUp":"mouseup";_.Kn=_.Gn?"pointercancel":_.Hn?"MSPointerCancel":"mousecancel";_.Ln=_.Gn?"pointermove":_.Hn?"MSPointerMove":"mousemove";_.Mn={Wk:_.In,Xk:_.Jn,Nm:_.Kn,bJ:_.Ln,dJ:_.Gn?"pointerover":_.Hn?"MSPointerOver":"mouseover",cJ:_.Gn?"pointerout":_.Hn?"MSPointerOut":"mouseout",$I:_.Gn?"pointerenter":_.Hn?"MSPointerEnter":"mouseenter",aJ:_.Gn?"pointerleave":_.Hn?"MSPointerLeave":"mouseleave"};
_.Nn=function(a,b){_.Q.call(this,a?a.type:"");this.relatedTarget=this.currentTarget=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=this.offsetY=this.offsetX=0;this.key="";this.charCode=this.keyCode=0;this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.state=null;this.I=!1;this.pointerId=0;this.pointerType="";this.ec=null;a&&this.init(a,b)};_.x(_.Nn,_.Q);var fca={2:"touch",3:"pen",4:"mouse"};
_.Nn.prototype.init=function(a,b){var c=this.type=a.type,d=a.changedTouches&&a.changedTouches.length?a.changedTouches[0]:null;this.target=a.target||a.srcElement;this.currentTarget=b;(b=a.relatedTarget)?_.r.uc&&(_.gf(b,"nodeName")||(b=null)):"mouseover"==c?b=a.fromElement:"mouseout"==c&&(b=a.toElement);this.relatedTarget=b;d?(this.clientX=void 0!==d.clientX?d.clientX:d.pageX,this.clientY=void 0!==d.clientY?d.clientY:d.pageY,this.screenX=d.screenX||0,this.screenY=d.screenY||0):(this.offsetX=_.r.Mc||
void 0!==a.offsetX?a.offsetX:a.layerX,this.offsetY=_.r.Mc||void 0!==a.offsetY?a.offsetY:a.layerY,this.clientX=void 0!==a.clientX?a.clientX:a.pageX,this.clientY=void 0!==a.clientY?a.clientY:a.pageY,this.screenX=a.screenX||0,this.screenY=a.screenY||0);this.button=a.button;this.keyCode=a.keyCode||0;this.key=a.key||"";this.charCode=a.charCode||("keypress"==c?a.keyCode:0);this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.I=_.r.MAC?a.metaKey:a.ctrlKey;this.pointerId=
a.pointerId||0;this.pointerType="string"===typeof a.pointerType?a.pointerType:fca[a.pointerType]||"";this.state=a.state;this.ec=a;a.defaultPrevented&&this.preventDefault()};_.Nn.prototype.stopPropagation=function(){_.Nn.oa.stopPropagation.call(this);this.ec.stopPropagation?this.ec.stopPropagation():this.ec.cancelBubble=!0};
_.Nn.prototype.preventDefault=function(){_.Nn.oa.preventDefault.call(this);var a=this.ec;if(a.preventDefault)a.preventDefault();else if(a.returnValue=!1,dca)try{if(a.ctrlKey||112<=a.keyCode&&123>=a.keyCode)a.keyCode=-1}catch(b){}};
var gca=function(a,b,c,d,e){this.listener=a;this.proxy=null;this.src=b;this.type=c;this.capture=!!d;this.Db=e;this.key=++yba;this.removed=this.Yi=!1},On=function(a){a.removed=!0;a.listener=null;a.proxy=null;a.src=null;a.Db=null};
var Pn=function(a){this.src=a;this.B={};this.C=0};Pn.prototype.add=function(a,b,c,d,e){var f=a.toString();a=this.B[f];a||(a=this.B[f]=[],this.C++);var h=Qn(a,b,d,e);-1<h?(b=a[h],c||(b.Yi=!1)):(b=new gca(b,this.src,f,!!d,e),b.Yi=c,a.push(b));return b};Pn.prototype.remove=function(a,b,c,d){a=a.toString();if(!(a in this.B))return!1;var e=this.B[a];b=Qn(e,b,c,d);return-1<b?(On(e[b]),_.ma(e,b),0==e.length&&(delete this.B[a],this.C--),!0):!1};
var Rn=function(a,b){var c=b.type;if(!(c in a.B))return!1;var d=_.na(a.B[c],b);d&&(On(b),0==a.B[c].length&&(delete a.B[c],a.C--));return d};Pn.prototype.removeAll=function(a){a=a&&a.toString();var b=0,c;for(c in this.B)if(!a||c==a){for(var d=this.B[c],e=0;e<d.length;e++)++b,On(d[e]);delete this.B[c];this.C--}return b};Pn.prototype.ht=function(a,b){a=this.B[a.toString()];var c=[];if(a)for(var d=0;d<a.length;++d){var e=a[d];e.capture==b&&c.push(e)}return c};
Pn.prototype.Xp=function(a,b,c,d){a=this.B[a.toString()];var e=-1;a&&(e=Qn(a,b,c,d));return-1<e?a[e]:null};Pn.prototype.hasListener=function(a,b){var c=void 0!==a,d=c?a.toString():"",e=void 0!==b;return _.jd(this.B,function(f){for(var h=0;h<f.length;++h)if(!(c&&f[h].type!=d||e&&f[h].capture!=b))return!0;return!1})};var Qn=function(a,b,c,d){for(var e=0;e<a.length;++e){var f=a[e];if(!f.removed&&f.listener==b&&f.capture==!!c&&f.Db==d)return e}return-1};
var Sn,Tn,Un,Yn,hca,$n,fo,ao,ho;Sn="closure_lm_"+(1E6*Math.random()|0);Tn={};Un=0;_.Wn=function(a,b,c,d,e){if(d&&d.once)return _.Vn(a,b,c,d,e);if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.Wn(a,b[f],c,d,e);return null}c=_.Xn(c);return _.nk(a)?a.listen(b,c,_.ua(d)?!!d.capture:!!d,e):Yn(a,b,c,!1,d,e)};
Yn=function(a,b,c,d,e,f){if(!b)throw Error("O");var h=_.ua(e)?!!e.capture:!!e,k=_.Zn(a);k||(a[Sn]=k=new Pn(a));c=k.add(b,c,d,h,f);if(c.proxy)return c;d=hca();c.proxy=d;d.src=a;d.listener=c;if(a.addEventListener)eca||(e=h),void 0===e&&(e=!1),a.addEventListener(b.toString(),d,e);else if(a.attachEvent)a.attachEvent($n(b.toString()),d);else if(a.addListener&&a.removeListener)a.addListener(d);else throw Error("P");Un++;return c};
hca=function(){var a=ao,b=En?function(c){return a.call(b.src,b.listener,c)}:function(c){c=a.call(b.src,b.listener,c);if(!c)return c};return b};_.Vn=function(a,b,c,d,e){if(Array.isArray(b)){for(var f=0;f<b.length;f++)_.Vn(a,b[f],c,d,e);return null}c=_.Xn(c);return _.nk(a)?a.hb(b,c,_.ua(d)?!!d.capture:!!d,e):Yn(a,b,c,!0,d,e)};
_.bo=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)_.bo(a,b[f],c,d,e);else d=_.ua(d)?!!d.capture:!!d,c=_.Xn(c),_.nk(a)?a.jb(b,c,d,e):a&&(a=_.Zn(a))&&(b=a.Xp(b,c,d,e))&&_.co(b)};
_.co=function(a){if("number"===typeof a||!a||a.removed)return!1;var b=a.src;if(_.nk(b))return b.Ko(a);var c=a.type,d=a.proxy;b.removeEventListener?b.removeEventListener(c,d,a.capture):b.detachEvent?b.detachEvent($n(c),d):b.addListener&&b.removeListener&&b.removeListener(d);Un--;(c=_.Zn(b))?(Rn(c,a),0==c.C&&(c.src=null,b[Sn]=null)):On(a);return!0};_.eo=function(a,b,c,d,e){c=_.Xn(c);d=!!d;return _.nk(a)?a.Xp(b,c,d,e):a?(a=_.Zn(a))?a.Xp(b,c,d,e):null:null};
$n=function(a){return a in Tn?Tn[a]:Tn[a]="on"+a};_.go=function(a,b,c,d){var e=!0;if(a=_.Zn(a))if(b=a.B[b.toString()])for(b=b.concat(),a=0;a<b.length;a++){var f=b[a];f&&f.capture==c&&!f.removed&&(f=fo(f,d),e=e&&!1!==f)}return e};fo=function(a,b){var c=a.listener,d=a.Db||a.src;a.Yi&&_.co(a);return c.call(d,b)};
ao=function(a,b){if(a.removed)return!0;if(!En){var c=b||_.Dc("window.event");b=new _.Nn(c,this);var d=!0;if(!(0>c.keyCode||void 0!=c.returnValue)){a:{var e=!1;if(0==c.keyCode)try{c.keyCode=-1;break a}catch(h){e=!0}if(e||void 0==c.returnValue)c.returnValue=!0}c=[];for(e=b.currentTarget;e;e=e.parentNode)c.push(e);a=a.type;for(e=c.length-1;!b.D&&0<=e;e--){b.currentTarget=c[e];var f=_.go(c[e],a,!0,b);d=d&&f}for(e=0;!b.D&&e<c.length;e++)b.currentTarget=c[e],f=_.go(c[e],a,!1,b),d=d&&f}return d}return fo(a,
new _.Nn(b,this))};_.Zn=function(a){a=a[Sn];return a instanceof Pn?a:null};ho="__closure_events_fn_"+(1E9*Math.random()>>>0);_.Xn=function(a){if(_.Hc(a))return a;a[ho]||(a[ho]=function(b){return a.handleEvent(b)});return a[ho]};wk(function(a){ao=a(ao)});
_.R=function(){_.O.call(this);this.Ug=new Pn(this);this.IJ=this;this.IA=null};_.x(_.R,_.O);_.R.prototype[mk]=!0;_.g=_.R.prototype;_.g.ti=function(){return this.IA};_.g.re=function(a){this.IA=a};_.g.addEventListener=function(a,b,c,d){_.Wn(this,a,b,c,d)};_.g.removeEventListener=function(a,b,c,d){_.bo(this,a,b,c,d)};
_.g.dispatchEvent=function(a){var b,c=this.ti();if(c)for(b=[];c;c=c.ti())b.push(c);c=this.IJ;var d=a.type||a;if("string"===typeof a)a=new _.Q(a,c);else if(a instanceof _.Q)a.target=a.target||c;else{var e=a;a=new _.Q(d,c);_.rd(a,e)}e=!0;if(b)for(var f=b.length-1;!a.D&&0<=f;f--){var h=a.currentTarget=b[f];e=_.io(h,d,!0,a)&&e}a.D||(h=a.currentTarget=c,e=_.io(h,d,!0,a)&&e,a.D||(e=_.io(h,d,!1,a)&&e));if(b)for(f=0;!a.D&&f<b.length;f++)h=a.currentTarget=b[f],e=_.io(h,d,!1,a)&&e;return e};
_.g.ma=function(){_.R.oa.ma.call(this);this.Ug&&this.Ug.removeAll(void 0);this.IA=null};_.g.listen=function(a,b,c,d){return this.Ug.add(String(a),b,!1,c,d)};_.g.hb=function(a,b,c,d){return this.Ug.add(String(a),b,!0,c,d)};_.g.jb=function(a,b,c,d){return this.Ug.remove(String(a),b,c,d)};_.g.Ko=function(a){return Rn(this.Ug,a)};
_.io=function(a,b,c,d){b=a.Ug.B[String(b)];if(!b)return!0;b=b.concat();for(var e=!0,f=0;f<b.length;++f){var h=b[f];if(h&&!h.removed&&h.capture==c){var k=h.listener,l=h.Db||h.src;h.Yi&&a.Ko(h);e=!1!==k.call(l,d)&&e}}return e&&!d.defaultPrevented};_.R.prototype.ht=function(a,b){return this.Ug.ht(String(a),b)};_.R.prototype.Xp=function(a,b,c,d){return this.Ug.Xp(String(a),b,c,d)};_.R.prototype.hasListener=function(a,b){return this.Ug.hasListener(void 0!==a?String(a):void 0,b)};
_.jo=function(a,b){_.R.call(this);this.B=a||1;this.C=b||_.t;this.D=(0,_.p)(this.TY,this);this.F=(0,_.Kc)()};_.x(_.jo,_.R);_.g=_.jo.prototype;_.g.enabled=!1;_.g.Ah=null;_.g.setInterval=function(a){this.B=a;this.Ah&&this.enabled?(this.stop(),this.start()):this.Ah&&this.stop()};
_.g.TY=function(){if(this.enabled){var a=(0,_.Kc)()-this.F;0<a&&a<.8*this.B?this.Ah=this.C.setTimeout(this.D,this.B-a):(this.Ah&&(this.C.clearTimeout(this.Ah),this.Ah=null),this.dispatchEvent("tick"),this.enabled&&(this.stop(),this.start()))}};_.g.start=function(){this.enabled=!0;this.Ah||(this.Ah=this.C.setTimeout(this.D,this.B),this.F=(0,_.Kc)())};_.g.stop=function(){this.enabled=!1;this.Ah&&(this.C.clearTimeout(this.Ah),this.Ah=null)};_.g.ma=function(){_.jo.oa.ma.call(this);this.stop();delete this.C};
_.S=function(a,b,c){if(_.Hc(a))c&&(a=(0,_.p)(a,c));else if(a&&"function"==typeof a.handleEvent)a=(0,_.p)(a.handleEvent,a);else throw Error("Q");return 2147483647<Number(b)?-1:_.t.setTimeout(a,b||0)};_.ko=function(a){_.t.clearTimeout(a)};_.lo=function(a,b){var c=null;return(new _.Ik(function(d,e){c=_.S(function(){d(b)},a);-1==c&&e(Error("R"))})).se(function(d){_.ko(c);throw d;})};
var no=function(a,b){if(!b&&a.hasAttribute("jsshadow"))return null;for(b=0;a=mo(a);){if(a.hasAttribute("jsslot"))b+=1;else if(a.hasAttribute("jsshadow")&&0<b){--b;continue}if(0>=b)return a}return null},mo=function(a){return a?a.__owner?a.__owner:a.parentNode&&11===a.parentNode.nodeType?a.parentNode.host:_.Lj(a):null},oo=function(a,b,c,d){for(c||(a=no(a,d));a;){if(b(a))return a;a=no(a,d)}return null},ica=function(a){var b;oo(a,function(c){return c.__owner?(b=c.__owner,!0):!1},!0);return b||a},po=function(a,
b){b.id||(b.id="ow"+_.va(b));a.setAttribute("jsowner",b.id);a.__owner=b;var c=Dn.get(b);c||Dn.set(b,c=[]);c.includes(a)||c.push(a);b.setAttribute("__IS_OWNER",!0)},jca=function(a){if(Dn.has(a)){var b=_.ej(a);aaa(Dn.get(a),function(c){return!_.Mj(b.body,c)});a.setAttribute("__IS_OWNER",0<Dn.get(a).length)}};
var kca={};
var uo,to;_.qo=function(a){_.O.call(this);this.uo=a.Id.key;this.Tc=a.Id&&a.Id.La;this.vx=[]};_.v(_.qo,_.O);_.qo.prototype.ma=function(){this.bD();this.Bx();_.O.prototype.ma.call(this)};_.qo.prototype.tO=function(){return this.uo};_.qo.prototype.toString=function(){return this.uo+"["+_.va(this)+"]"};_.ro=function(a,b){b=b instanceof _.cl?b:_.pl(b);a.vx.push(b)};_.qo.va=function(a){return{Id:{key:function(){return _.ol(a)},La:function(){return _.ol(this.Ze())}}}};_.so=function(a){a.va=a.va||function(){return{}}};
uo=function(a,b,c){c=to(b,c,a).Ja(function(d){return new b(d)});c.Ja(function(d){if(d.vx.length)return(new un(d.vx,void 0,!0)).Ja(function(){return d})});c.Ja(function(){});a instanceof _.Da&&c.Ja(function(d){var e=kca[a];if(e)for(var f=0;f<e.length;f++)e[f](d)});return c};to=function(a,b,c){if(a==_.O)return _.ol({});var d=a.va(c);d=_.An(b,d);var e;a.__proto__?e=a.__proto__:e=Object.getPrototypeOf(a.prototype).constructor;var f=to(e,b,c);return d.Ja(function(h){return f.Ja(function(k){h.Da=k;return h})})};
_.qo.prototype.Yc=function(){return this.Tc};_.qo.prototype.Ze=function(){return this.Tc||void 0};_.qo.prototype.Bx=_.Ec;_.qo.prototype.bD=_.Ec;var vo=function(a,b){this.key=a;this.Tc=b};_.g=vo.prototype;_.g.Yc=function(){return this.Tc};_.g.Ze=function(){return this.Tc};_.g.getContext=function(){throw Error("r");};_.g.getData=function(){throw Error("r");};_.g.toString=function(){return"context:"+String(this.key)};
var xo=function(a,b){if(a["__wizcontext:requests"]&&a["__wizcontext:requests"][b])return a["__wizcontext:requests"][b];var c=new _.cl,d=void 0;oo(a,function(f){f=f.__wizcontext;if(!f)return!1;d=f[b];return void 0!==d?!0:!1},!0);if(void 0!==d)c.callback(d);else{wo(a,b,c);var e=ica(a);e!=a&&wo(e,b,c)}return c},wo=function(a,b,c){var d=(d=a.getAttribute("jscontext"))?d.split(" "):[];d.push(String(b));0==d.length?a.removeAttribute("jscontext"):a.setAttribute("jscontext",d.join(" "));(d=a["__wizcontext:requests"])||
(d=a["__wizcontext:requests"]={});d[b]=c};
var yo=function(a,b,c){this.action=a;this.target=b||null;this.dc=c||null};yo.prototype.toString=function(){return"wiz.Action<name="+this.action+", jsname="+this.target+">"};
var zo=function(){this.B=[]},Bo=function(a){var b=Ao[a];if(b)return b;var c=a.startsWith("trigger."),d=new zo;a.split(",").forEach(function(e){e=(0,_.Kd)(e);e=e.match(c?lca:mca);var f=null,h=null;if(e[2])for(var k=e[2].split("|"),l=0;l<k.length;l++){var n=k[l].split("=");n[1]?(f||(f={}),f[n[0]]=n[1]):h||(h=n[0])}d.B.push(new yo(e[1],h,f))});return Ao[a]=d};zo.prototype.get=function(){return this.B};var mca=/^\.?(\w+)(?:\(([\w|=-]+)\))?$/,lca=/^(trigger.[\w\.]+)(?:\(([\w|=-]+)\))?$/,Ao={};
var Co=function(a,b){var c=a.__wiz;c||(c=a.__wiz={});return c[b.toString()]},Do=function(a,b){return oo(a,function(c){return _.Kj(c)&&c.hasAttribute("jscontroller")},b,!0)};
_.Eo=function(a,b,c){b=b.querySelectorAll('[jsname="'+c+'"]');c=[];for(var d=0;d<b.length;d++)Do(b[d],!1)==a&&c.push(b[d]);return c};
/*
Copyright 2013 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
var Fo={};
var Go,Io,nca,Oo,Ho;Go={};_.Jo=function(a,b,c,d){var e=(0,_.Kd)(a.getAttribute("jsaction")||"");c=(0,_.p)(c,d||null);var f;b instanceof Array?f=b:f=[b];b=_.u(f);for(d=b.next();!d.done;d=b.next()){d=d.value;Ho(e,d)||(e&&!/;$/.test(e)&&(e+=";"),e+=d+":.CLIENT",Io(a,e));var h=Co(a,d);h?h.push(c):a.__wiz[d]=[c]}return{EN:f,bs:c,el:a}};_.Lo=function(a,b,c,d){var e;return e=_.Jo(a,b,function(f){_.Ko(e);return c.call(d,f)},null)};
_.Ko=function(a){for(var b=!0,c=_.u(a.EN),d=c.next();!d.done;d=c.next()){var e=d.value,f=Co(a.el,e);if(f){d=_.na(f,a.bs);if(0==f.length){f=a.el;var h=(0,_.Kd)(f.getAttribute("jsaction")||"");e+=":.CLIENT";h=h.replace(e+";","");h=h.replace(e,"");Io(f,h)}b=b&&d}else b=!1}return b};Io=function(a,b){a.setAttribute("jsaction",b);"__jsaction"in a&&delete a.__jsaction};_.Mo=function(a,b,c,d,e){var f=_.ej(a).__wizdispatcher;a={type:b,target:a,bubbles:void 0!=d?d:!0};void 0!==c&&(a.data=c);e&&_.rd(a,e);f.Ba(a)};
_.No=function(a,b,c,d){a=nca(a,b);_.Sc(a,function(e){var f=void 0;d&&(f=f||{},f.__source=d);_.Mo(e,b,c,!1,f)})};nca=function(a,b){var c=[],d=function(e){var f=function(h){Dn.has(h)&&_.Sc(Dn.get(h),function(k){_.Mj(a,k)||d(k)});Oo(h,b)&&c.push(h)};_.Sc(e.querySelectorAll('[jsaction*="'+b+'"],[jscontroller][__IS_OWNER]'),f);_.Kj(e)&&f(e)};d(a);return c};Oo=function(a,b){var c=a.__jsaction;return c?!!c[b]:Ho(a.getAttribute("jsaction"),b)};
Ho=function(a,b){if(!a)return!1;var c=Fo[a];if(c)return!!c[b];c=Go[b];c||(c=new RegExp("(^\\s*"+b+"\\s*:|[\\s;]"+b+"\\s*:)"),Go[b]=c);return c.test(a)};
var Ro,sca,tca,uca,So,To,wca;_.oca=_.Am("ti6hGc");_.Po=_.Am("ZYIfFd");_.pca=_.Am("eQsQB");_.Qo=_.Am("O1htCb");_.qca=_.Am("g6cJHd");_.rca=_.Am("otb29e");Ro=_.Am("AHmuwe");sca=_.Am("O22p3e");_.gb=_.Am("JIbuQc");tca=_.Am("ih4XEb");uca=_.Am("sPvj8e");_.vca=_.Am("GvneHb");So=_.Am("rcuQ6b");To=_.Am("dyRcpb");wca=_.Am("u0pjoe");
var xca=[],yca=function(a,b,c,d){this.Bv=a;this.B=void 0===d?null:d;this.C=null;this.F=b;this.D=c;xca.push(this)},zca=function(a,b){if(a.F.has(b))return!0;a=_.u(a.D);for(var c=a.next();!c.done;c=a.next())if(zca(_.Gm(c.value),b))return!0;return!1},Uo=function(a,b){var c=a.Bv.pn();_.na(c,a.B);c.push(b);a.C=b};
var Yo,Bca,Aca,Cca,Dca,Eca,Fca,Vo,Zo;_.Wo=function(a,b){return Vo(a,new _.Da(a,a,b))};_.Xo=function(a,b,c){a=_.Wo(a,b?[b]:void 0);c&&Aca(c).add(a);Em.Ia().register(a,new yca(a,Bca(a),Aca(a),b));return a};Yo=function(a,b){Bca(b).add(a)};Bca=function(a){return Zo(Cca,a.toString(),function(){return new Set})};Aca=function(a){return Zo(Dca,a.toString(),function(){return new Set})};Cca=new Map;Dca=new Map;Eca=new Map;_.$o=function(a){var b=Eca.get(a);return b?b:(b=new _.Da(a,a,[]),Vo(a,b),b)};Fca=new Map;
Vo=function(a,b){b=Zo(Eca,a,function(){return b});Fca.set(a,String(b));return b};Zo=function(a,b,c){var d=a.get(b);d||(d=c(b),a.set(b,d));return d};
_.ap=function(a){_.O.call(this);this.I=a;this.F={}};_.x(_.ap,_.O);var Gca=[];_.ap.prototype.listen=function(a,b,c,d){Array.isArray(b)||(b&&(Gca[0]=b.toString()),b=Gca);for(var e=0;e<b.length;e++){var f=_.Wn(a,b[e],c||this.handleEvent,d||!1,this.I||this);if(!f)break;this.F[f.key]=f}return this};_.ap.prototype.hb=function(a,b,c,d){return _.bp(this,a,b,c,d)};
_.bp=function(a,b,c,d,e,f){if(Array.isArray(c))for(var h=0;h<c.length;h++)_.bp(a,b,c[h],d,e,f);else{b=_.Vn(b,c,d||a.handleEvent,e,f||a.I||a);if(!b)return a;a.F[b.key]=b}return a};_.ap.prototype.jb=function(a,b,c,d,e){if(Array.isArray(b))for(var f=0;f<b.length;f++)this.jb(a,b[f],c,d,e);else if(a=_.eo(a,b,c||this.handleEvent,_.ua(d)?!!d.capture:!!d,e||this.I||this))_.co(a),delete this.F[a.key];return this};
_.ap.prototype.removeAll=function(){_.gd(this.F,function(a,b){this.F.hasOwnProperty(b)&&_.co(a)},this);this.F={}};_.ap.prototype.ma=function(){_.ap.oa.ma.call(this);this.removeAll()};_.ap.prototype.handleEvent=function(){throw Error("T");};
var Hca=function(a){var b=this.getAttribute(a);Element.prototype.removeAttribute.apply(this,arguments);_.Mo(this,To,{name:a,Tu:null,jX:b},!1,void 0)},Ica=function(a){var b=this.getAttribute(a);Element.prototype.setAttribute.apply(this,arguments);var c=this.getAttribute(a);_.Mo(this,To,{name:a,Tu:c,jX:b},!1,void 0)},pb=function(a,b){_.O.call(this);var c=this;this.C=a;this.Tc=b||null;this.I=new Jca(function(){return Kca(c)});this.H=new _.R;this.B={};this.J=null;this.V=new Set;this.R=this.F=!1;this.L=
null;a.__wizmanager=this;this.X=(0,_.p)(function(){this.F=!1;this.R&&Kca(this)},this);this.S=new _.ap(this);this.S.listen(_.qj(a),"unload",this.aa);this.S.listen(_.qj(a),"scroll",this.ea)};_.v(pb,_.O);_.cp=function(a){return _.ej(a).__wizmanager};pb.prototype.dirty=function(){var a=this.I;a=a.B?!1:a.B=!0;a&&(a=this.I,a.F||_.yk(a.H),_.yk((0,_.p)(this.H.dispatchEvent,this.H,Lca)))};
pb.prototype.ea=function(){this.X&&(this.F||(this.F=!0),this.L&&window.clearTimeout(this.L),this.L=window.setTimeout(this.X,200))};
var Mca=function(a,b){if(!_.Zm(a.Tc)){var c=[];b.forEach(function(d){var e=d.getAttribute("jscontroller");e&&!d.getAttribute("jslazy")&&(d=_.$o(e))&&!a.V.has(d)&&(c.push(d),a.V.add(d))});0<c.length&&(b=_.rn(_.rb.Ia(),c))&&b.se(function(){})}},Oca=function(a,b){Nca&&a.isDisposed()||a.B[_.va(b)]||dp(a,[b])},Kca=function(a){if(!a.H.isDisposed())if(a.F)a.R=!0;else{a.R=!1;var b=Pca(a.I);if(b)dp(a,b.Nw.filter(function(k){return a.C.documentElement.contains(k)})),b.removed.forEach(function(k){a.D(k);_.Sc(k.querySelectorAll(Qca),
function(l){return a.D(l)})});else{b=a.C.querySelectorAll(Qca);for(var c=[],d={},e=0;e<b.length;e++){var f=b[e],h=_.va(f);a.B[h]?d[h]=f:c.push(f)}_.gd(a.B,function(k,l){d[l]||this.D(k)},a);dp(a,c)}}},dp=function(a,b){if(b.length){var c=!1,d=[];b.forEach(function(e){if(Oo(e,So)||Rca.some(function(f){return e.hasAttribute(f)})){if(a.B[_.va(e)])return;a.B[_.va(e)]=e}Oo(e,To)&&Sca(e);Oo(e,So)?d.push(e):c=!0});Mca(a,d);Tca(d);!c||0>Uca||(a.J&&window.clearTimeout(a.J),a.J=window.setTimeout(function(){return Mca(a,
Object.values(a.B))},Uca))}},Tca=function(a){if(a.length){var b=!!(window.performance&&window.performance.mark&&window.performance.measure&&window.performance.clearMeasures&&window.performance.clearMarks);b&&(window.performance.clearMeasures("kDcP9b"),window.performance.clearMarks("O7jPNb"),window.performance.mark("O7jPNb"));a.forEach(function(c){try{_.Mo(c,So,void 0,!1,void 0)}catch(d){window.setTimeout(Iaa(d),0)}});b&&window.performance.measure("kDcP9b","O7jPNb")}};
pb.prototype.D=function(a){var b=a.__component;b&&b.dispose();Vca(a.__jscontroller);a.__jscontroller=void 0;if(b=a.__jsmodel){for(var c in b)Vca(b[c]);a.__jsmodel=void 0}(c=a.__owner)&&Dn.has(c)&&_.na(Dn.get(c),a);delete this.B[_.va(a)]};pb.prototype.aa=function(){this.S.dispose();this.H.dispose();_.gd(this.B,this.D,this);this.C=null};var Vca=function(a){if(a)if(a.Gc()){var b=null;try{a.Ja(function(c){b=c})}catch(c){}b&&b.dispose()}else a.cancel()};pb.prototype.ma=function(){this.aa();_.O.prototype.ma.call(this)};
var Sca=function(a){a.setAttribute=Ica;a.removeAttribute=Hca},Jca=function(a){this.H=a;this.C=[];this.D=[];this.F=this.B=!1},Pca=function(a){a.F=!1;var b=a.B?null:{Nw:a.C,removed:a.D};a.C=[];a.D=[];a.B=!1;return b},Uca=0,Nca=!1,Lca=new _.lk("rlzIMe"),Rca=["jscontroller","jsmodel","jsowner"],Qca=Rca.map(function(a){return"["+a+"]"}).join(",")+(',[jsaction*="'+So+':trigger."]');
var Wca=/;\s*|\s+/,Xca=function(a){return a.trim().split(Wca).filter(function(b){return 0<b.length})};
var ep;
_.fp=function(a,b,c,d){var e=a,f=Tba(Em.Ia(),b),h=f?_.Gm(b):null,k=f?h.Bv:null,l=""+b;do{var n=e.getAttribute("jsmodel");if(n)for(var q=Xca(n),w=q.length-1;0<=w;w--){n=q[w];var y=b;if(f||n==l){if(f)if((y=_.$o(n))&&k&&y.toString()==k.toString())y=Fm(Em.Ia(),b);else if(!zca(h,y))continue;if(y!=d||e!=a){if(e.__jsmodel&&e.__jsmodel[n])return e.__jsmodel[n];a=sn(_.rb.Ia(),y);e.__jsmodel||(e.__jsmodel={});b=e.__jsmodel[n]=(new _.cl).Ja(_.$c(a));a.Ja(function(D){return D.create(y,e,c)});b.callback();Oca(_.cp(e),
e);return b}}}}while(e=no(e));return _.ql(new ep(b))};ep=function(a){_.Oc.call(this,"No valid model for "+a);this.key=a};_.v(ep,_.Oc);
_.gp=function(a,b){a=JSON.parse("["+a.substring(4));return new b(a)};
var Yca;Yca=function(a){return"string"==typeof a.className?a.className:a.getAttribute&&a.getAttribute("class")||""};_.hp=function(a){return a.classList?a.classList:Yca(a).match(/\S+/g)||[]};_.ip=function(a,b){"string"==typeof a.className?a.className=b:a.setAttribute&&a.setAttribute("class",b)};_.jp=function(a,b){return a.classList?a.classList.contains(b):_.ia(_.hp(a),b)};_.kp=function(a,b){if(a.classList)a.classList.add(b);else if(!_.jp(a,b)){var c=Yca(a);_.ip(a,c+(0<c.length?" "+b:b))}};
_.lp=function(a,b){if(a.classList)_.Sc(b,function(e){_.kp(a,e)});else{var c={};_.Sc(_.hp(a),function(e){c[e]=!0});_.Sc(b,function(e){c[e]=!0});b="";for(var d in c)b+=0<b.length?" "+d:d;_.ip(a,b)}};_.mp=function(a,b){a.classList?a.classList.remove(b):_.jp(a,b)&&_.ip(a,_.Tc(_.hp(a),function(c){return c!=b}).join(" "))};_.np=function(a,b){a.classList?_.Sc(b,function(c){_.mp(a,c)}):_.ip(a,_.Tc(_.hp(a),function(c){return!_.ia(b,c)}).join(" "))};_.op=function(a,b,c){c?_.kp(a,b):_.mp(a,b)};
_.pp=!_.r.product.Ka&&!se();_.qp=function(a,b){if(/-[a-z]/.test(b))return null;if(_.pp&&a.dataset){if(te()&&!(b in a.dataset))return null;a=a.dataset[b];return void 0===a?null:a}return a.getAttribute("data-"+_.$e(b))};_.rp=function(a,b){return/-[a-z]/.test(b)?!1:_.pp&&a.dataset?b in a.dataset:a.hasAttribute?a.hasAttribute("data-"+_.$e(b)):!!a.getAttribute("data-"+_.$e(b))};
var $b={GI:"button",HI:"checkbox",COLOR:"color",D_:"date",E_:"datetime",F_:"datetime-local",EMAIL:"email",FILE:"file",SI:"hidden",I0:"image",VI:"menu",jC:"month",NUMBER:"number",PASSWORD:"password",kJ:"radio",R2:"range",V2:"reset",SEARCH:"search",q3:"select-multiple",r3:"select-one",M3:"submit",TEL:"tel",TEXT:"text",d4:"textarea",i4:"time",URL:"url",oC:"week"};
_.sp=function(a,b){b||(b={});var c=window;var d=a instanceof _.Wd?a:_.be("undefined"!=typeof a.href?a.href:String(a))||_.ce;a=b.target||a.target;var e=[];for(f in b)switch(f){case "width":case "height":case "top":case "left":e.push(f+"="+b[f]);break;case "target":case "noopener":case "noreferrer":break;default:e.push(f+"="+(b[f]?1:0))}var f=e.join(",");if(df()&&c.navigator&&c.navigator.standalone&&a&&"_self"!=a)f=_.vj("A"),_.He(f,d),f.setAttribute("target",a),b.noreferrer&&f.setAttribute("rel","noreferrer"),
b=document.createEvent("MouseEvent"),b.initMouseEvent("click",!0,!0,c,1),f.dispatchEvent(b),c={};else if(b.noreferrer){if(c=_.Me("",c,a,f),b=_.Xd(d),c&&(_.r.Mr&&-1!=b.indexOf(";")&&(b="'"+b.replace(/'/g,"%27")+"'"),c.opener=null,b='<meta name="referrer" content="no-referrer"><meta http-equiv="refresh" content="0; url='+_.Pe(b)+'">',b=_.ye(b,null),d=c.document))d.write(_.we(b)),d.close()}else(c=_.Me(d,c,a,f))&&b.noopener&&(c.opener=null);return c};
var Zca=function(a){var b=a.type;if("string"===typeof b)switch(b.toLowerCase()){case "checkbox":case "radio":return a.checked?a.value:null;case "select-one":return b=a.selectedIndex,0<=b?a.options[b].value:null;case "select-multiple":b=[];for(var c,d=0;c=a.options[d];d++)c.selected&&b.push(c.value);return b.length?b:null}return null!=a.value?a.value:null};
var tp=function(){return _.r.Mc?"Webkit":_.r.uc?"Moz":_.r.Ka?"ms":_.r.Df?"O":null},$ca=function(){return _.r.Mc?"-webkit":_.r.uc?"-moz":_.r.Ka?"-ms":_.r.Df?"-o":null},ada=function(a,b){if(b&&a in b)return a;var c=tp();return c?(c=c.toLowerCase(),a=c+af(a),void 0===b||a in b?a:null):null};
_.up=function(a,b,c,d){this.top=a;this.right=b;this.bottom=c;this.left=d};_.g=_.up.prototype;_.g.clone=function(){return new _.up(this.top,this.right,this.bottom,this.left)};_.g.contains=function(a){return this&&a?a instanceof _.up?a.left>=this.left&&a.right<=this.right&&a.top>=this.top&&a.bottom<=this.bottom:a.x>=this.left&&a.x<=this.right&&a.y>=this.top&&a.y<=this.bottom:!1};
_.g.ceil=function(){this.top=Math.ceil(this.top);this.right=Math.ceil(this.right);this.bottom=Math.ceil(this.bottom);this.left=Math.ceil(this.left);return this};_.g.floor=function(){this.top=Math.floor(this.top);this.right=Math.floor(this.right);this.bottom=Math.floor(this.bottom);this.left=Math.floor(this.left);return this};_.g.round=function(){this.top=Math.round(this.top);this.right=Math.round(this.right);this.bottom=Math.round(this.bottom);this.left=Math.round(this.left);return this};
_.vp=function(a,b,c,d){this.left=a;this.top=b;this.width=c;this.height=d};_.vp.prototype.clone=function(){return new _.vp(this.left,this.top,this.width,this.height)};_.wp=function(a){return new _.vp(a.left,a.top,a.right-a.left,a.bottom-a.top)};_.vp.prototype.contains=function(a){return a instanceof _.$i?a.x>=this.left&&a.x<=this.left+this.width&&a.y>=this.top&&a.y<=this.top+this.height:this.left<=a.left&&this.left+this.width>=a.left+a.width&&this.top<=a.top&&this.top+this.height>=a.top+a.height};
_.xp=function(a){return new _.$i(a.left,a.top)};_.vp.prototype.ceil=function(){this.left=Math.ceil(this.left);this.top=Math.ceil(this.top);this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return this};_.vp.prototype.floor=function(){this.left=Math.floor(this.left);this.top=Math.floor(this.top);this.width=Math.floor(this.width);this.height=Math.floor(this.height);return this};
_.vp.prototype.round=function(){this.left=Math.round(this.left);this.top=Math.round(this.top);this.width=Math.round(this.width);this.height=Math.round(this.height);return this};_.yp=function(a,b,c){b instanceof _.$i?(a.left+=b.x,a.top+=b.y):(a.left+=b,"number"===typeof c&&(a.top+=c))};
var bda,zp,caa,Kp,Gp,cda,eda,Zp,fda,gda,bq;_.Ap=function(a,b,c){if("string"===typeof b)(b=zp(a,b))&&(a.style[b]=c);else for(var d in b){c=a;var e=b[d],f=zp(c,d);f&&(c.style[f]=e)}};bda={};zp=function(a,b){var c=bda[b];if(!c){var d=_.Ze(b);c=d;void 0===a.style[d]&&(d=tp()+af(d),void 0!==a.style[d]&&(c=d));bda[b]=c}return c};_.Bp=function(a,b){var c=a.style[_.Ze(b)];return"undefined"!==typeof c?c:a.style[zp(a,b)]||""};
_.Cp=function(a,b){var c=_.ej(a);return c.defaultView&&c.defaultView.getComputedStyle&&(a=c.defaultView.getComputedStyle(a,null))?a[b]||a.getPropertyValue(b)||"":""};_.Dp=function(a,b){return _.Cp(a,b)||(a.currentStyle?a.currentStyle[b]:null)||a.style&&a.style[b]};_.Ep=function(a){return _.Dp(a,"position")};_.Fp=function(a){return _.Dp(a,"overflowX")};
caa=function(a){a:{var b=_.Ze("transform");if(void 0===a.style[b]&&(b=tp()+af(b),void 0!==a.style[b])){b=$ca()+"-transform";break a}b="transform"}return _.Dp(a,b)||_.Dp(a,"transform")};_.Hp=function(a,b,c){if(b instanceof _.$i){var d=b.x;b=b.y}else d=b,b=c;a.style.left=Gp(d,!1);a.style.top=Gp(b,!1)};_.Ip=function(a){return new _.$i(a.offsetLeft,a.offsetTop)};_.Jp=function(a){a=a?_.ej(a):document;return!_.r.Ka||_.r.xf(9)||_.nj(_.fj(a).B)?a.documentElement:a.body};
Kp=function(a){try{return a.getBoundingClientRect()}catch(b){return{left:0,top:0,right:0,bottom:0}}};
_.Np=function(a,b,c){var d=b||_.oj(document),e=_.Lp(a),f=_.Lp(d),h=_.Mp(d);d==_.oj(document)?(b=e.x-d.scrollLeft,e=e.y-d.scrollTop,_.r.Ka&&!_.r.xf(10)&&(b+=h.left,e+=h.top)):(b=e.x-f.x-h.left,e=e.y-f.y-h.top);h=cda(a);a=d.clientWidth-h.width;h=d.clientHeight-h.height;f=d.scrollLeft;d=d.scrollTop;c?(f+=b-a/2,d+=e-h/2):(f+=Math.min(b,Math.max(b-a,0)),d+=Math.min(e,Math.max(e-h,0)));return new _.$i(f,d)};_.Op=function(a,b,c){b=b||_.oj(document);a=_.Np(a,b,c);b.scrollLeft=a.x;b.scrollTop=a.y};
_.Lp=function(a){var b=_.ej(a),c=new _.$i(0,0),d=_.Jp(b);if(a==d)return c;a=Kp(a);b=_.pj(_.fj(b).B);c.x=a.left+b.x;c.y=a.top+b.y;return c};_.Qp=function(a,b){a=_.Pp(a);b=_.Pp(b);return new _.$i(a.x-b.x,a.y-b.y)};_.dda=function(a){a=Kp(a);return new _.$i(a.left,a.top)};_.Pp=function(a){if(1==a.nodeType)return _.dda(a);a=a.changedTouches?a.changedTouches[0]:a;return new _.$i(a.clientX,a.clientY)};
_.Tp=function(a,b,c){if(b instanceof _.Mh)c=b.height,b=b.width;else if(void 0==c)throw Error("U");_.Rp(a,b);_.Sp(a,c)};Gp=function(a,b){"number"==typeof a&&(a=(b?Math.round(a):a)+"px");return a};_.Sp=function(a,b){a.style.height=Gp(b,!0)};_.Rp=function(a,b){a.style.width=Gp(b,!0)};
_.Up=function(a){var b=cda;if("none"!=_.Dp(a,"display"))return b(a);var c=a.style,d=c.display,e=c.visibility,f=c.position;c.visibility="hidden";c.position="absolute";c.display="inline";a=b(a);c.display=d;c.position=f;c.visibility=e;return a};cda=function(a){var b=a.offsetWidth,c=a.offsetHeight,d=_.r.Mc&&!b&&!c;return(void 0===b||d)&&a.getBoundingClientRect?(a=Kp(a),new _.Mh(a.right-a.left,a.bottom-a.top)):new _.Mh(b,c)};_.Vp=function(a){var b=_.Lp(a);a=_.Up(a);return new _.vp(b.x,b.y,a.width,a.height)};
_.T=function(a,b){a.style.display=b?"":"none"};_.Wp=function(a){return"none"!=a.style.display};_.Xp=function(a){return"rtl"==_.Dp(a,"direction")};_.Yp=_.r.uc?"MozUserSelect":_.r.Mc||_.r.Te?"WebkitUserSelect":null;eda=function(a,b){if(/^\d+px?$/.test(b))return parseInt(b,10);var c=a.style.left,d=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;a.style.left=b;b=a.style.pixelLeft;a.style.left=c;a.runtimeStyle.left=d;return+b};
Zp=function(a,b){return(b=a.currentStyle?a.currentStyle[b]:null)?eda(a,b):0};fda=function(a,b){if(_.r.Ka){var c=Zp(a,b+"Left"),d=Zp(a,b+"Right"),e=Zp(a,b+"Top");a=Zp(a,b+"Bottom");return new _.up(e,d,a,c)}c=_.Cp(a,b+"Left");d=_.Cp(a,b+"Right");e=_.Cp(a,b+"Top");a=_.Cp(a,b+"Bottom");return new _.up(parseFloat(e),parseFloat(d),parseFloat(a),parseFloat(c))};_.$p=function(a){return fda(a,"padding")};_.aq=function(a){return fda(a,"margin")};gda={thin:2,medium:4,thick:6};
bq=function(a,b){if("none"==(a.currentStyle?a.currentStyle[b+"Style"]:null))return 0;b=a.currentStyle?a.currentStyle[b+"Width"]:null;return b in gda?gda[b]:eda(a,b)};_.Mp=function(a){if(_.r.Ka&&!_.r.xf(9)){var b=bq(a,"borderLeft"),c=bq(a,"borderRight"),d=bq(a,"borderTop");a=bq(a,"borderBottom");return new _.up(d,c,a,b)}b=_.Cp(a,"borderLeftWidth");c=_.Cp(a,"borderRightWidth");d=_.Cp(a,"borderTopWidth");a=_.Cp(a,"borderBottomWidth");return new _.up(parseFloat(d),parseFloat(c),parseFloat(a),parseFloat(b))};
var oq,Bq,kda,iq,lda,Cq,mda,hda;_.cq=function(a){a instanceof _.cq?a=a.Nb:a[0]instanceof _.cq&&(a=_.Vc(a,function(b,c){return _.oa(b,c.Nb)},[]),_.wa(a));this.Nb=_.pa(a)};_.cq.prototype.Yb=function(a,b,c){((void 0===c?0:c)?_.ca:_.Sc)(this.Nb,a,b);return this};_.dq=function(a,b){for(var c=0;c<a.size();c++){var d=a.Na(c);b.call(void 0,d,c)}};_.g=_.cq.prototype;_.g.size=function(){return this.Nb.length};_.g.Dc=function(){return 0===this.Nb.length?!0:!1};_.g.get=function(a){return this.Nb[a]||null};
_.g.el=function(){return this.Nb[0]||null};_.g.vf=function(){return this.Nb.length?this.Nb[0]:null};_.g.Bb=function(){return this.Nb.slice()};_.g.map=function(a,b){return _.Uc(this.Nb,a,b)};_.g.Sb=function(a){return this===a||_.za(this.Nb,a.Nb)};_.g.Na=function(a){return new _.eq(this.Nb[0>a?this.Nb.length+a:a])};_.g.Nd=function(){return 0==this.Nb.length?null:new _.eq(this.Nb[0])};
_.g.find=function(a){var b=[];this.Yb(function(c){c=c.querySelectorAll(String(a));for(var d=0;d<c.length;d++)b.push(c[d])});return new _.cq(b)};_.fq=function(a,b){var c=[];a.Yb(function(d){(d=d.querySelector(b))&&c.push(d)});return new _.cq(c)};_.gq=function(a,b){return a.find('[jsname="'+b+'"]')};_.hq=function(a,b){return _.fq(a,'[jsname="'+b+'"]')};_.cq.prototype.parent=function(){var a=[];this.Yb(function(b){(b=_.Lj(b))&&!_.ia(a,b)&&a.push(b)});return new _.cq(a)};
_.cq.prototype.children=function(){var a=[];this.Yb(function(b){b=_.Ej(b);for(var c=0;c<b.length;c++)a.push(b[c])});return new _.cq(a)};_.cq.prototype.filter=function(a){a=_.Tc(this.Nb,iq(a));return new _.cq(a)};_.jq=function(a,b){var c=[],d=iq(b),e=function(f){return _.Kj(f)&&d(f)};a.Yb(function(f){(f=_.Rj(f,e,!0))&&!_.ia(c,f)&&c.push(f)});return new _.cq(c)};_.cq.prototype.next=function(a){return _.kq(this,_.Ij,a)};
_.kq=function(a,b,c){var d=[],e;c?e=iq(c):e=hda;a.Yb(function(f){(f=b(f))&&e(f)&&d.push(f)});return new _.cq(d)};_.lq=function(a,b){for(var c=0;c<a.Nb.length;c++)if(_.jp(a.Nb[c],b))return!0;return!1};_.mq=function(a,b){return a.Yb(function(c){_.kp(c,b)})};_.nq=function(a,b){return a.Yb(function(c){_.mp(c,b)})};_.La=function(a,b,c){return!0===c?_.mq(a,b):!1===c?_.nq(a,b):a.Yb(function(d){var e=!_.jp(d,b);_.op(d,b,e)})};
oq=function(a){if(0<a.Nb.length){a=a.Nb[0];if("textContent"in a)return(0,_.Kd)(a.textContent);if("innerText"in a)return(0,_.Kd)(a.innerText)}return""};_.cq.prototype.jf=function(a){this.Yb(function(b){_.Nj(b,a)})};_.pq=function(a){if(0<a.Nb.length)return Zca(a.Nb[0])};
_.qq=function(a,b){a.Yb(function(c){var d=c.type;switch("string"===typeof d&&d.toLowerCase()){case "checkbox":case "radio":c.checked=b;break;case "select-one":c.selectedIndex=-1;if("string"===typeof b)for(var e=0;d=c.options[e];e++)if(d.value==b){d.selected=!0;break}break;case "select-multiple":d=b;"string"===typeof d&&(d=[d]);for(var f=0;e=c.options[f];f++)if(e.selected=!1,d)for(var h,k=0;h=d[k];k++)e.value==h&&(e.selected=!0);break;default:c.value=null!=b?b:""}})};_.rq=function(a,b){if(0<a.Nb.length)return a.Nb[0].getAttribute(b)};
_.sq=function(a,b,c){return a.Yb(function(d){d.setAttribute(b,c)})};_.tq=function(a,b){return a.Yb(function(c){c.removeAttribute(b)})};_.cq.prototype.getStyle=function(a){if(0<this.Nb.length)return _.Bp(this.Nb[0],a)};_.cq.prototype.Oa=function(a,b){return this.Yb(function(c){_.Ap(c,a,b)})};_.cq.prototype.getData=function(a){if(0===this.Nb.length)return new _.uq(a,null);var b=_.qp(this.Nb[0],a);return new _.uq(a,b)};
_.vq=function(a,b,c){a.Yb(function(d){if(null==c)!/-[a-z]/.test(b)&&(_.pp&&d.dataset?_.rp(d,b)&&delete d.dataset[b]:d.removeAttribute("data-"+_.$e(b)));else if(_.pp&&d.dataset)d.dataset[b]=c;else{if(/-[a-z]/.test(b))throw Error("w");d.setAttribute("data-"+_.$e(b),c)}})};_.cq.prototype.focus=function(){try{this.el().focus()}catch(a){}return this};
_.cq.prototype.click=function(){var a=_.ej(this.el());if(a.createEvent){var b=a.createEvent("MouseEvents");b.initMouseEvent("click",!0,!0,a.defaultView,1,0,0,0,0,!1,!1,!1,!1,0,null);this.el().dispatchEvent(b)}else b=a.createEventObject(),b.clientX=0,b.clientY=0,b.screenX=0,b.screenY=0,b.altKey=!1,b.ctrlKey=!1,b.shiftKey=!1,b.button=0,this.el().fireEvent("onclick",b)};
_.wq=function(a,b,c,d){function e(k,l,n){var q=l;l&&l.parentNode&&(q=l.cloneNode(!0));k(q,n)}d=void 0===d?!1:d;if(1==a.Nb.length){var f=a.Nb[0],h=function(k){return b(k,f)};c instanceof _.cq?c.Yb(h,void 0,d):Array.isArray(c)?(d?_.ca:_.Sc)(c,h):h(c);return a}return a.Yb(function(k){c instanceof _.cq?c.Yb(function(l){e(b,l,k)}):Array.isArray(c)?_.Sc(c,function(l){e(b,l,k)}):e(b,c,k)})};_.xq=function(a,b){return _.wq(a,function(c,d){c&&d.appendChild(c)},b)};
_.cq.prototype.remove=function(){return _.wq(this,function(a,b){_.Cj(b)},null)};_.yq=function(a){return _.wq(a,function(b,c){_.yj(c)},null)};_.cq.prototype.after=function(a,b){return _.wq(this,function(c,d){c&&_.Aj(c,d)},a,!(void 0===b||b))};_.ida=function(a,b){_.wq(a,function(c,d){c&&_.zj(c,d)},b)};_.g=_.cq.prototype;_.g.Zl=function(){var a=!0;this.Yb(function(b){a=a&&_.Wp(b)});return a};_.g.toggle=function(a){return this.Yb(function(b){_.T(b,a)})};_.g.show=function(){return this.toggle(!0)};
_.g.hide=function(){return this.toggle(!1)};_.g.Ba=function(a,b,c){this.Yb(function(d){_.Mo(d,a,b,c,void 0)})};_.zq=function(a){return a instanceof _.cq?a.el():a};_.eq=function(a,b){a instanceof _.cq&&(b=a.Nb,a=null);_.cq.call(this,null!=a?[a]:b)};_.x(_.eq,_.cq);_.g=_.eq.prototype;_.g.children=function(){return new _.cq(Array.prototype.slice.call(_.Ej(this.Nb[0])))};_.g.Yb=function(a,b){a.call(b,this.Nb[0],0);return this};_.g.size=function(){return 1};_.g.el=function(){return this.Nb[0]};_.g.vf=function(){return this.Nb[0]};
_.g.Na=function(){return this};_.g.Nd=function(){return this};_.Aq=function(a){return a instanceof _.eq?a:new _.eq(_.zq(a))};_.uq=function(a,b){this.C=a;this.B=b};Bq=function(a){throw Error("V`"+a.C);};_.g=_.uq.prototype;_.g.string=function(a){if(null==this.B)return 0==arguments.length&&Bq(this),a;if("string"===typeof this.B)return this.B;throw new TypeError("W`"+this.C+"`"+this.B+"`"+typeof this.B);};
_.g.wb=function(a){if(null==this.B)return 0==arguments.length&&Bq(this),a;if("boolean"===typeof this.B)return this.B;if("string"===typeof this.B){var b=this.B.toLowerCase();if("true"===b||"1"===b)return!0;if("false"===b||"0"===b)return!1}throw new TypeError("X`"+this.C+"`"+this.B+"`"+typeof this.B);};
_.g.number=function(a){if(null==this.B)return 0==arguments.length&&Bq(this),a;if("number"===typeof this.B)return this.B;if("string"===typeof this.B){var b=Number(this.B);if(!isNaN(b)&&!_.Jd(this.B))return b}throw new TypeError("Y`"+this.C+"`"+this.B+"`"+typeof this.B);};_.g.Xg=function(){return null!=this.B};_.g.toString=function(){return this.string()};
_.g.EZ=function(a){if(null==this.B){if(0==arguments.length)throw Error("V`"+this.C);return a}var b=_.qa(this.B)?this.B:"string"!==typeof this.B?[this.B]:jda(this);return _.Uc(b,function(c,d){return new _.uq(this.C+"["+d+"]",c)},this)};var jda=function(a){a=a.string();return""==a.trim()?[]:a.split(",").map(function(b){return b.trim()})};
_.uq.prototype.D=function(a){if(null==this.B){if(0==arguments.length)throw Error("V`"+this.C);return a}if(!_.qa(this.B)&&_.ua(this.B))return _.id(this.B,function(b,c){return new _.uq(this.C+"."+c,b)},this);throw new TypeError("Z`"+this.C+"`"+this.B+"`"+typeof this.B);};kda=/^\[([a-z0-9-]+)(="([^\\"]*)")?]$/;iq=function(a){if("string"==typeof a){if("."==a.charAt(0))return lda(a.substr(1));if("["==a.charAt(0)){var b=kda.exec(a);return Cq(b[1],-1==a.indexOf("=")?void 0:b[3])}return mda(a)}return a};
lda=function(a){return function(b){return b.getAttribute&&_.jp(b,a)}};_.Dq=function(a){return Cq("jsname",a)};Cq=function(a,b){return function(c){return void 0!==b?c.getAttribute&&c.getAttribute(a)==b:c.hasAttribute&&c.hasAttribute(a)}};mda=function(a){a=a.toUpperCase();return function(b){return(b=b.tagName)&&b.toUpperCase()==a}};hda=function(){return!0};_.Eq=function(a){var b=a instanceof _.cq?a.el():a;return function(c){return c!=b}};
_.Fq=function(a){_.qo.call(this,a.Da);this.fa=a.Id.element;this.H=null;this.S=new Map};_.v(_.Fq,_.qo);_.Fq.va=function(){return{Id:{element:function(){return _.ol(this.Fy())}}}};_.g=_.Fq.prototype;_.g.toString=function(){return this.uo+"["+_.va(this.fa)+"]"};_.g.getContext=function(a){return xo(this.fa,a)};_.g.getData=function(a){this.H||(this.H=new _.eq(this.fa));return this.H.getData(a)};_.g.getId=function(){return this.toString()};_.g.notify=function(a,b){_.No(this.fa,a,b,this)};_.g.Fy=function(){return this.fa};
_.g.Rd=function(a){var b=this;return _.fp(this.fa,a,this.Ze(),this.uo).$b(function(c){c instanceof ep&&(c.message+=" requested by "+b);return c})};_.g.HH=function(a,b){this.S.set(a,b)};_.g.listen=function(a,b,c){return _.Jo(this.fa,a,b,c)};_.g.hb=function(a,b,c){return _.Lo(this.fa,a,b,c)};yn({model:function(a,b){b=b instanceof _.Da?b:qn(_.rb.Ia(),b);return a.Rd(b)},rN:function(a,b){a=a.getData(b.name);b=b.ue;null==a.B?b=null:(a=a.string(),b=_.gp(a,b));return _.ol(b)}});
_.Gq=function(a,b,c,d){this.C=a||{};this.Gb=b||null;this.B=c||null;this.Tc=d||b&&b.Ze()};_.Gq.prototype.getContext=function(a){var b=nda(this,a);return null==b&&this.Gb?this.Gb.getContext(a):_.ol(b)};_.Gq.prototype.Yc=function(){return this.Tc};_.Gq.prototype.Ze=function(){return this.Tc||void 0};_.Gq.prototype.getData=function(a){var b=nda(this,a);return null==b&&this.Gb?this.Gb.getData(a):new _.uq(a,b)};var nda=function(a,b){var c=a.C[b];return null==c&&a.B?a.B(b):c};
_.Hq=function(a,b,c){var d=a instanceof _.Da?a:qn(_.rb.Ia(),a);a=sn(_.rb.Ia(),d);a.Ja(function(e){return uo(d,e,b||new _.Gq(void 0,void 0,void 0,c||void 0))});return a};
var oda;oda={};_.Iq=function(a,b){if(a instanceof _.Da)var c=Fm(Em.Ia(),a);else if("function"===typeof a)c=qn(_.rb.Ia(),a);else return _.ql("Service key must be a ServiceId or Service constructor");a=oda[c];a||(a=sn(_.rb.Ia(),c),oda[c]=a);var d=new _.cl,e=function(f){f.xE(c,b||void 0).Qd(function(h){d.callback(h)},function(h){d.Tb(h)})};a.Ja(function(f){var h=Fm(Em.Ia(),c);if(h!=c)_.jl(_.Iq(h,b),d);else return Em.Ia(),e(f)});a.$b(function(f){d.Tb(f)});return d};
var pda,qda,rda;_.Jq=function(a,b){_.so(b);a&&_.rb.Ia().register(a,b);b.V6=pda;b.xE=function(c,d){c=Fm(Em.Ia(),c);var e=qda[c];if(e)return e;e=qda[c]=new _.cl;rda.call(b,c,d).Qd(e.callback,e.Tb,e);return e}};pda=function(){this.xE=rda;return this};qda={};rda=function(a,b){return uo(a,this,new vo(a,b,this))};zn({service:function(a,b){var c=_.ac(b).filter(function(d){return d instanceof _.Da});_.rn(_.rb.Ia(),c);return _.id(b,function(d){return _.Iq(d,a.Ze())})}});
var tda;_.Kq=function(a){_.qo.call(this,a.Da);this.Cg=a.Id.element.el();this.Xe=a.Id.WK;this.Pb=new sda;this.NB=null};_.v(_.Kq,_.qo);_.Kq.prototype.Bx=function(){this.Pb.B&&(this.Pb.B.dispose(),this.Pb.B=null);var a=this.Cg.__owner;a&&Dn.get(a)&&_.na(Dn.get(a),this.ca().el());_.qo.prototype.Bx.call(this)};_.Kq.va=function(){return{Id:{WK:function(){return _.ol(this.Xe)},element:function(){return _.ol(this.ca())}}}};_.g=_.Kq.prototype;_.g.toString=function(){return this.uo+"["+_.va(this.Cg)+"]"};
_.g.Yc=function(){return this.Xe.Yc()};_.g.Ze=function(){return this.Xe.Ze()};_.g.Jl=function(){return _.ej(this.Cg)};_.g.getWindow=function(){return _.qj(this.Jl())};_.g.Wb=function(a){return _.Lq(this.Cg,a)};_.Lq=function(a,b){a=_.zq(a);var c=[];c.push.apply(c,_.Eo(a,a,b));var d=Dn.get(a);if(d)for(var e=0;e<d.length;e++)d[e].getAttribute("jsname")==b&&c.push(d[e]),c.push.apply(c,_.Eo(a,d[e],b));return new _.cq(c)};_.g=_.Kq.prototype;
_.g.O=function(a){var b=this.Wb(a);if(1<=b.size())return b.Na(0);throw Error("$`"+a+"`"+this);};_.g.ca=function(){return this.Pb.C?this.Pb.C:this.Pb.C=new _.eq(this.Cg)};_.g.getData=function(a){return this.ca().getData(a)};_.g.getContext=function(a){return xo(this.Cg,a)};_.g.Rd=function(a){var b=this;return _.fp(this.Cg,a,this.Ze()).$b(function(c){c instanceof ep&&(c.message+=" requested by "+b);return c})};
_.g.Bd=function(a,b){if(a.tagName){var c=this.Xe.Bd(a);b&&c.Ja(b);return c}return this.Dl(a).Ja(function(d){if(0==d.length)throw Error("$`"+a+"`"+this);b&&b(d[0]);return d[0]},this)};
_.g.Dl=function(a,b){var c=[],d=this.Wb(a),e=this.ca().el();if(0==d.size()&&"loading"==e.ownerDocument.readyState){var f=new _.cl;_.Vn(e.ownerDocument,"readystatechange",function(){this.Dl(a,b).Qd(function(h){f.callback(h)},function(h){f.Tb(h)})},!1,this);return f}d.Yb((0,_.p)(function(h){c.push(this.Xe.Bd(h))},this));d=_.vn(c);b&&d.Ja(b);return d};_.g.Ba=function(a,b,c){var d=this.Cg,e=this.Cg.__owner||null;e&&!Oo(this.Cg,a)&&(d=e);d&&_.Mo(d,a,b,c,{_retarget:this.Cg,__source:this})};
_.g.notify=function(a,b){_.No(this.ca().el(),a,b,this)};tda=function(a){var b=a.Pb.D;b||(b=a.Pb.D=new Mq(a.Cg),a.ha(b));return b};_.Nq=function(a,b){a.ca().el();b=b instanceof _.eq?b.el():b;po(b,a.ca().el())};_.Oq=function(a){return a.Pb.B?a.Pb.B:a.Pb.B=new _.ap(a)};_.Kq.prototype.dirty=function(){this.Xe.D.dirty()};_.Kq.prototype.OB=_.Ec;var sda=function(){this.B=this.D=this.C=null},Mq=function(a){_.O.call(this);this.B=[];this.C=a.ownerDocument.body};_.v(Mq,_.O);
Mq.prototype.ma=function(){for(var a=this.B,b=0;b<a.length;b++)_.Ko(a[b]);this.B=[];_.O.prototype.ma.call(this)};Mq.prototype.listen=function(a,b,c){a=_.Jo(this.C,a,b,c);this.B.push(a);return a};Mq.prototype.hb=function(a,b,c){var d=this,e;return e=this.listen(a,function(){d.Ko(e);e=null;b.apply(this,arguments)},c)};Mq.prototype.Ko=function(a){var b=_.Ko(a);return b=_.na(this.B,a)&&b};
_.U=function(a,b,c){var d=Object.getPrototypeOf(a);d&&d.Th&&d.Th==a.Th?a.Th=Object.create(a.Th):a.Th||(a.Th={});a.Th[b]=c};yn({controller:function(a,b){return a.Bd(b)},controllers:function(a,b){return a.Dl(b)},JX:function(a,b){return _.Hq(b,a,a.Yc())}});
var vda=function(){var a={isError:!1,template:uda,B:void 0,C:!0,qC:void 0,callback:void 0,duration:void 0};return{t7:a,event:Bm,If:function(b){b?b.Ba(Bm,a):_.Mo(document.body,Bm,a,void 0,void 0)}}};
var wda=function(){var a=document.documentElement;_.kp(a,"L6cTce");var b=document.createElement("DUMMY");b.style.display="none";b.F=a.clientHeight;a.appendChild(b);_.mp(a,"L6cTce");_.S(function(){a.removeChild(b)},0)};
var xda,Qq,Rq,yda,Sq,zda,Ada,Bda,Cda,Dda,Eda,Uq,Fda,Ida,Hda;
(function(){for(var a=["ms","moz","webkit","o"],b=0;b<a.length&&!window.requestAnimationFrame;++b)window.requestAnimationFrame=window[a[b]+"RequestAnimationFrame"],window.cancelAnimationFrame=window[a[b]+"CancelAnimationFrame"]||window[a[b]+"CancelRequestAnimationFrame"];if(!window.requestAnimationFrame){var c=0;window.requestAnimationFrame=function(d){var e=(new Date).getTime(),f=Math.max(0,16-(e-c));c=e+f;return window.setTimeout(function(){d(e+f)},f)};window.cancelAnimationFrame||(window.cancelAnimationFrame=
function(d){clearTimeout(d)})}})();_.Pq=function(){};xda=[[],[]];Qq=0;Rq=!1;yda=null;Sq=0;zda=1;Ada=16;Bda=0;Cda=0;_.t._F_getAverageFps=function(){return 1E3/(Ada/zda)};_.Tq=0;Dda=0;Eda=[];_.Gda=function(a,b){a.yB||(a.yB=_.Pq);return Fda(a,b)};Uq=function(a){this.B=this.D=void 0;this.C=!1;this.H=a;this.F=_.Pq};Uq.prototype.measure=function(a){this.D=a;return this};Uq.prototype.Wa=function(a){this.B=a;return this};Uq.prototype.jc=function(){this.C=!0;return this};
_.Ha=function(a){return _.Gda({measure:a.D,Wa:a.B,yB:a.F,jc:a.C},a.H)};_.Ia=function(a){return new Uq(a)};
Fda=function(a,b){var c=Dda++,d={id:c,Oc:a.measure,context:b},e={id:c,Oc:a.Wa,context:b},f={Hq:d,hA:e,dc:void 0,uj:!1,jc:a.jc,QF:Math.max(d.Oc?d.Oc.length:0,e.Oc?e.Oc.length:0)};return function(){b||(d.context=this,e.context=this);f.dc&&(f.dc.length=0);if(0<arguments.length||0<f.QF)f.dc||(f.dc=[]),f.dc.push.apply(f.dc,arguments),f.QF>arguments.length&&f.dc.push(new a.yB);if(!f.uj){f.uj=!0;var h=Qq;f.jc&&0!=_.Tq&&(f.Hq.Oc&&1==_.Tq||!f.Hq.Oc)&&(h=(h+1)%2);xda[h].push(f)}return Hda()}};
Ida=function(a,b){Rq=!1;var c={};_.Tq=1;for(var d=0;d<a.length;++d){var e=a[d];e.dc&&e.dc[e.dc.length-1]&&(e.dc[e.dc.length-1].now=b);var f=e.Hq;e.uj=!1;if(f.Oc)try{f.Oc.apply(f.context,e.dc||Eda)}catch(h){c[d]=!0,_.xk(h)}}_.Tq=2;for(d=0;d<a.length;++d)if(e=a[d],e.dc&&e.dc[e.dc.length-1]&&(e.dc[e.dc.length-1].now=b),f=e.hA,e.uj=!1,!c[d]&&f.Oc)try{f.Oc.apply(f.context,e.dc||Eda)}catch(h){_.xk(h)}0<Sq&&1<b&&(a=b-Sq,500>a&&(Ada+=a,zda++,100<a&&Bda++,Cda<a&&(Cda=a)));Sq=Rq&&1<b?b:0};
Hda=function(){Rq||(Rq=!0,yda=new Promise(function(a){window.requestAnimationFrame(function(b){var c=xda[Qq];Qq=(Qq+1)%2;try{Ida(c,b)}finally{_.Tq=0,c.length=0}a()})}));return yda};_.Vq=function(a,b){var c=_.Tq;try{return _.Tq=2,a.apply(b)}finally{_.Tq=c}};
_.Wq=new _.Da("uslqB");_.Jda=new _.Da("aEhURd");
_.Kda=_.Am("d14Qwf");
var Xq=function(a,b){b=void 0===b?["edit","create","preview","convert"]:b;a=(new RegExp("(?:/sites)?(?:/(prod|corp|scary))?(?:/u/(\\d+))?(?:/(s|d)/([\\w_-]+))?(?:/p/([\\w_-]+))?/("+(b.join("|")+")"))).exec(a);return!a||4>a.length?null:{y6:a[1],I7:a[2],P5:a[3],tr:a[4],bh:a[5],operation:a[6]}};
var daa=/^(\/prod|\/corp|\/scary)?\//,Na=void 0;
var Yq=function(a){_.A(this,a,0,-1,null,null)};_.x(Yq,_.z);Yq.prototype.mi=function(){return _.F(this,4,"0")};
var Mda=function(a){_.A(this,a,0,-1,Lda,null)};_.x(Mda,_.z);var Lda=[5];
var Sa=function(a){_.A(this,a,0,-1,Nda,null)};_.x(Sa,_.z);var Nda=[175];Sa.prototype.Wp=function(){return _.E(this,212)};Sa.prototype.jy=function(){return _.E(this,230)};
var Oda,Pda;_.Zq=function(a){return a.Ub&&"function"==typeof a.Ub?a.Ub():_.qa(a)||"string"===typeof a?a.length:_.kd(a)};_.$q=function(a){if(a.Pc&&"function"==typeof a.Pc)return a.Pc();if("string"===typeof a)return a.split("");if(_.qa(a)){for(var b=[],c=a.length,d=0;d<c;d++)b.push(a[d]);return b}return _.ac(a)};_.ar=function(a){if(a.Fc&&"function"==typeof a.Fc)return a.Fc();if(!a.Pc||"function"!=typeof a.Pc){if(_.qa(a)||"string"===typeof a){var b=[];a=a.length;for(var c=0;c<a;c++)b.push(c);return b}return _.cb(a)}};
Oda=function(a,b,c){if(a.forEach&&"function"==typeof a.forEach)a.forEach(b,c);else if(_.qa(a)||"string"===typeof a)_.Sc(a,b,c);else for(var d=_.ar(a),e=_.$q(a),f=e.length,h=0;h<f;h++)b.call(c,e[h],d&&d[h],a)};Pda=function(a,b){if("function"==typeof a.every)return a.every(b,void 0);if(_.qa(a)||"string"===typeof a)return _.Yc(a,b,void 0);for(var c=_.ar(a),d=_.$q(a),e=d.length,f=0;f<e;f++)if(!b.call(void 0,d[f],c&&c[f],a))return!1;return!0};
var Qda,Rda,mr,nr,or,Sda;_.br=function(a,b,c,d,e,f,h){var k="";a&&(k+=a+":");c&&(k+="//",b&&(k+=b+"@"),k+=c,d&&(k+=":"+d));e&&(k+=e);f&&(k+="?"+f);h&&(k+="#"+h);return k};Qda=/^(?:([^:/?#.]+):)?(?:\/\/(?:([^\\/?#]*)@)?([^\\/?#]*?)(?::([0-9]+))?(?=[\\/?#]|$))?([^?#]+)?(?:\?([^#]*))?(?:#([\s\S]*))?$/;_.cr=function(a){return a.match(Qda)};_.dr=function(a,b){return a?b?decodeURI(a):decodeURIComponent(a):a};_.er=function(a,b){return _.cr(b)[a]||null};
Rda=function(a){a=_.er(1,a);!a&&_.t.self&&_.t.self.location&&(a=_.t.self.location.protocol,a=a.substr(0,a.length-1));return a?a.toLowerCase():""};_.fr=function(a){return _.dr(_.er(5,a),!0)};_.gr=function(a){var b=a.indexOf("#");return 0>b?null:a.substr(b+1)};_.hr=function(a){a=_.cr(a);return _.br(a[1],a[2],a[3],a[4])};_.ir=function(a){a=_.cr(a);return _.br(a[1],null,a[3],a[4])};_.jr=function(a){a=_.cr(a);return _.br(null,null,null,null,a[5],a[6],a[7])};
_.kr=function(a){var b=a.indexOf("#");return 0>b?a:a.substr(0,b)};_.lr=function(a,b){if(a){a=a.split("&");for(var c=0;c<a.length;c++){var d=a[c].indexOf("="),e=null;if(0<=d){var f=a[c].substring(0,d);e=a[c].substring(d+1)}else f=a[c];b(f,e?_.Oe(e):"")}}};mr=function(a,b){if(!b)return a;var c=a.indexOf("#");0>c&&(c=a.length);var d=a.indexOf("?");if(0>d||d>c){d=c;var e=""}else e=a.substring(d+1,c);a=[a.substr(0,d),e,a.substr(c)];c=a[1];a[1]=b?c?c+"&"+b:b:c;return a[0]+(a[1]?"?"+a[1]:"")+a[2]};
nr=function(a,b,c){if(Array.isArray(b))for(var d=0;d<b.length;d++)nr(a,String(b[d]),c);else null!=b&&c.push(a+(""===b?"":"="+_.Ne(b)))};or=function(a,b){var c=[];for(b=b||0;b<a.length;b+=2)nr(a[b],a[b+1],c);return c.join("&")};_.pr=function(a){var b=[],c;for(c in a)nr(c,a[c],b);return b.join("&")};_.qr=function(a,b){var c=2==arguments.length?or(arguments[1],0):or(arguments,1);return mr(a,c)};_.rr=function(a,b){b=_.pr(b);return mr(a,b)};_.sr=function(a,b,c){c=null!=c?"="+_.Ne(c):"";return mr(a,b+c)};
_.tr=function(a,b,c,d){for(var e=c.length;0<=(b=a.indexOf(c,b))&&b<d;){var f=a.charCodeAt(b-1);if(38==f||63==f)if(f=a.charCodeAt(b+e),!f||61==f||38==f||35==f)return b;b+=e+1}return-1};_.ur=/#|$/;_.vr=function(a,b){return 0<=_.tr(a,0,b,a.search(_.ur))};_.wr=function(a,b){var c=a.search(_.ur),d=_.tr(a,0,b,c);if(0>d)return null;var e=a.indexOf("&",d);if(0>e||e>c)e=c;d+=b.length+1;return _.Oe(a.substr(d,e-d))};Sda=/[?&]($|#)/;
_.Tda=function(a,b){for(var c=a.search(_.ur),d=0,e,f=[];0<=(e=_.tr(a,d,b,c));)f.push(a.substring(d,e)),d=Math.min(a.indexOf("&",e)+1||c,c);f.push(a.substr(d));return f.join("").replace(Sda,"$1")};
var Ar,Er,Gr,$da,Uda,Wda,Vda,Zda,Xda,Kr;_.xr=function(a,b){this.C=this.L=this.F="";this.H=null;this.I=this.B="";this.J=!1;var c;a instanceof _.xr?(this.J=void 0!==b?b:a.J,_.yr(this,a.F),this.L=a.L,_.zr(this,a.C),Ar(this,a.H),_.Br(this,a.B),_.Cr(this,a.D.clone()),_.Dr(this,a.I)):a&&(c=_.cr(String(a)))?(this.J=!!b,_.yr(this,c[1]||"",!0),this.L=Er(c[2]||""),_.zr(this,c[3]||"",!0),Ar(this,c[4]),_.Br(this,c[5]||"",!0),_.Cr(this,c[6]||"",!0),_.Dr(this,c[7]||"",!0)):(this.J=!!b,this.D=new _.Fr(null,this.J))};
_.xr.prototype.toString=function(){var a=[],b=this.F;b&&a.push(Gr(b,Uda,!0),":");var c=this.C;if(c||"file"==b)a.push("//"),(b=this.L)&&a.push(Gr(b,Uda,!0),"@"),a.push(_.Ne(c).replace(/%25([0-9a-fA-F]{2})/g,"%$1")),c=this.H,null!=c&&a.push(":",String(c));if(c=this.B)this.C&&"/"!=c.charAt(0)&&a.push("/"),a.push(Gr(c,"/"==c.charAt(0)?Vda:Wda,!0));(c=this.D.toString())&&a.push("?",c);(c=this.I)&&a.push("#",Gr(c,Xda));return a.join("")};
_.xr.prototype.resolve=function(a){var b=this.clone(),c=!!a.F;c?_.yr(b,a.F):c=!!a.L;c?b.L=a.L:c=!!a.C;c?_.zr(b,a.C):c=null!=a.H;var d=a.B;if(c)Ar(b,a.H);else if(c=!!a.B){if("/"!=d.charAt(0))if(this.C&&!this.B)d="/"+d;else{var e=b.B.lastIndexOf("/");-1!=e&&(d=b.B.substr(0,e+1)+d)}e=d;if(".."==e||"."==e)d="";else if(-1!=e.indexOf("./")||-1!=e.indexOf("/.")){d=_.Id(e,"/");e=e.split("/");for(var f=[],h=0;h<e.length;){var k=e[h++];"."==k?d&&h==e.length&&f.push(""):".."==k?((1<f.length||1==f.length&&""!=
f[0])&&f.pop(),d&&h==e.length&&f.push("")):(f.push(k),d=!0)}d=f.join("/")}else d=e}c?_.Br(b,d):c=""!==a.D.toString();c?_.Cr(b,a.D.clone()):c=!!a.I;c&&_.Dr(b,a.I);return b};_.xr.prototype.clone=function(){return new _.xr(this)};_.yr=function(a,b,c){a.F=c?Er(b,!0):b;a.F&&(a.F=a.F.replace(/:$/,""));return a};_.zr=function(a,b,c){a.C=c?Er(b,!0):b;return a};Ar=function(a,b){if(b){b=Number(b);if(isNaN(b)||0>b)throw Error("aa`"+b);a.H=b}else a.H=null};_.Br=function(a,b,c){a.B=c?Er(b,!0):b;return a};
_.Cr=function(a,b,c){b instanceof _.Fr?(a.D=b,Yda(a.D,a.J)):(c||(b=Gr(b,Zda)),a.D=new _.Fr(b,a.J));return a};_.Hr=function(a,b,c){a.D.set(b,c);return a};_.Ir=function(a,b){return a.D.get(b)};_.Dr=function(a,b,c){a.I=c?Er(b):b;return a};_.Jr=function(a,b){return a instanceof _.xr?a.clone():new _.xr(a,b)};Er=function(a,b){return a?b?decodeURI(a.replace(/%25/g,"%2525")):decodeURIComponent(a):""};
Gr=function(a,b,c){return"string"===typeof a?(a=encodeURI(a).replace(b,$da),c&&(a=a.replace(/%25([0-9a-fA-F]{2})/g,"%$1")),a):null};$da=function(a){a=a.charCodeAt(0);return"%"+(a>>4&15).toString(16)+(a&15).toString(16)};Uda=/[#\/\?@]/g;Wda=/[#\?:]/g;Vda=/[#\?]/g;Zda=/[#\?@]/g;Xda=/#/g;_.Fr=function(a,b){this.C=this.B=null;this.D=a||null;this.F=!!b};Kr=function(a){a.B||(a.B=new _.Tm,a.C=0,a.D&&_.lr(a.D,function(b,c){a.add(_.Oe(b),c)}))};_.g=_.Fr.prototype;_.g.Ub=function(){Kr(this);return this.C};
_.g.add=function(a,b){Kr(this);this.D=null;a=Lr(this,a);var c=this.B.get(a);c||this.B.set(a,c=[]);c.push(b);this.C+=1;return this};_.g.remove=function(a){Kr(this);a=Lr(this,a);return _.Wm(this.B,a)?(this.D=null,this.C-=this.B.get(a).length,this.B.remove(a)):!1};_.g.clear=function(){this.B=this.D=null;this.C=0};_.g.Dc=function(){Kr(this);return 0==this.C};_.Mr=function(a,b){Kr(a);b=Lr(a,b);return _.Wm(a.B,b)};_.g=_.Fr.prototype;_.g.dj=function(a){var b=this.Pc();return _.ia(b,a)};
_.g.forEach=function(a,b){Kr(this);this.B.forEach(function(c,d){_.Sc(c,function(e){a.call(b,e,d,this)},this)},this)};_.g.Fc=function(){Kr(this);for(var a=this.B.Pc(),b=this.B.Fc(),c=[],d=0;d<b.length;d++)for(var e=a[d],f=0;f<e.length;f++)c.push(b[d]);return c};_.g.Pc=function(a){Kr(this);var b=[];if("string"===typeof a)_.Mr(this,a)&&(b=_.oa(b,this.B.get(Lr(this,a))));else{a=this.B.Pc();for(var c=0;c<a.length;c++)b=_.oa(b,a[c])}return b};
_.g.set=function(a,b){Kr(this);this.D=null;a=Lr(this,a);_.Mr(this,a)&&(this.C-=this.B.get(a).length);this.B.set(a,[b]);this.C+=1;return this};_.g.get=function(a,b){if(!a)return b;a=this.Pc(a);return 0<a.length?String(a[0]):b};_.aea=function(a,b,c){a.remove(b);0<c.length&&(a.D=null,a.B.set(Lr(a,b),_.pa(c)),a.C+=c.length)};
_.Fr.prototype.toString=function(){if(this.D)return this.D;if(!this.B)return"";for(var a=[],b=this.B.Fc(),c=0;c<b.length;c++){var d=b[c],e=_.Ne(d);d=this.Pc(d);for(var f=0;f<d.length;f++){var h=e;""!==d[f]&&(h+="="+_.Ne(d[f]));a.push(h)}}return this.D=a.join("&")};_.Fr.prototype.clone=function(){var a=new _.Fr;a.D=this.D;this.B&&(a.B=this.B.clone(),a.C=this.C);return a};
var Lr=function(a,b){b=String(b);a.F&&(b=b.toLowerCase());return b},Yda=function(a,b){b&&!a.F&&(Kr(a),a.D=null,a.B.forEach(function(c,d){var e=d.toLowerCase();d!=e&&(this.remove(d),_.aea(this,e,c))},a));a.F=b};_.Fr.prototype.H=function(a){for(var b=0;b<arguments.length;b++)Oda(arguments[b],function(c,d){this.add(d,c)},this)};
var Nr;Nr=function(){var a=this;this.B=window._at_config?new Sa(_at_config):new Sa;_.Ta(this.B,30)&&_.Mc("getConfigJspb",function(){return a.B.ob()})};_.Or=function(a){return _.I(a.B,Yq,403)||new Yq};Nr.prototype.get=function(){return this.B};
var dea=function(a,b){b=void 0===b?!0:b;return bea(a)?"/u/"+_.Or(a).mi()+"/d/"+cea().tr:b?(b=Oa(),_.Ta(a.B,97)?b+"/u/"+_.Or(a).mi():b):"/u/"+_.Or(a).mi()},eea=function(a){if(_.sh(_.th(),"atari-rhpp"))return _.fk(_.th(),"atari-rhpp");var b="/u/"+_.Or(a).mi();return _.Ta(a.B,213)?"/_":bea(a)?b+"/d/"+cea().tr+"/_":Oa()+b+"/_"},bea=function(a){return!(!_.Ta(a.B,281)||!_.Ta(a.B,97))};
Nr.prototype.getTitle=function(){a:{var a=_.Jr(window.location);var b=a.D.get("title");if(null!=b)a=b;else{if(a=a.I)for(a=a.split("&"),b=0;b<a.length;b++)if(0==a[b].indexOf("title=")){a=decodeURIComponent(a[b].substr(6));break a}a=null}}return a};var cea=function(){var a=_.Jr(window.location);return Xq(a.B)};
var Pr=_.Wo("KdSWqe",[_.Wq]);
_.Qr=function(a){_.qo.call(this,a.Da);this.B()};_.v(_.Qr,_.qo);_.Qr.va=function(){return{La:{configuration:_.Wq}}};_.Qr.prototype.B=function(){var a=window.messages;a&&0<a.length?(this.C(a.shift()),_.S(this.B,0,this)):(window.messages=null,window.addEventListener("message",this.C.bind(this)))};
_.Qr.prototype.C=function(a){if("SHIC"==a.data.magic)switch(a.data.type){case "resize":var b=a.data.height;if("number"==typeof b&&_.Ul(fea,b))for(var c=_.hj(document,"iframe",void 0,void 0),d=0;d<c.length;++d){var e=c[d];e.contentWindow==a.source&&_.Mo(e,_.Kda,b,void 0,void 0)}}};_.Qr.prototype.Vx=function(a,b){a=a.data;b.Wb("WXxXjd").Na(0).Oa("padding-top",a+"px")};var fea=new _.Tl(10,5E3);_.Jq(Pr,_.Qr);
_.Rr=new _.Da("n73qwf");
_.tb=new _.Da("MpJwZc");
var Ua=new _.Da("UUJqVe","UUJqVe");
var gea=new _.Da("pVbxBc");
var hea=new _.Da("LEikZe");
_.Sr=new _.Da("a");
var Tr=function(a,b){return Vo(a,new _.Da(a,a,b))};
var iea=function(a){this.B=a};iea.prototype.toggle=function(a){Ma(this.B,"FWGjId",a)};
var Ur;_.Vr=function(a,b){_.so(b);b.prototype.Th||(b.prototype.Th={});b.prototype.OB=b.prototype.OB||_.Ec;_.U(b.prototype,"npT2md",function(){return this.OB});a&&(_.rb.Ia().register(a,b),b.create=function(c,d,e){return uo(c,b,new Ur(c,d,e,b))})};Ur=function(a,b,c,d){vo.call(this,a,void 0,d);this.fa=b;this.Xe=c;this.Pb=new sda};_.v(Ur,vo);_.g=Ur.prototype;_.g.Yc=function(){return this.Xe.Yc()};_.g.Ze=function(){return this.Xe.Ze()};_.g.getContext=function(a){return xo(this.fa,a)};
_.g.ca=function(){return this.Pb.C?this.Pb.C:this.Pb.C=new _.eq(this.fa)};_.g.getData=function(a){return this.ca().getData(a)};_.g.Rd=function(a){var b=this;return _.fp(this.fa,a,this.Ze()).$b(function(c){c instanceof ep&&(c.message+=" requested by "+b);return c})};_.g.Bd=function(a,b){if(a.tagName){var c=this.Xe.Bd(a);b&&c.Ja(b);return c}return this.Dl(a).Ja(function(d){if(0==d.length)throw Error("da`"+a+"`"+this);b&&b(d[0]);return d[0]},this)};
_.g.Dl=function(a,b){var c=[],d=this.Wb(a),e=this.ca().el();if(0==d.size()&&"loading"==e.ownerDocument.readyState){var f=new _.cl;_.Vn(e.ownerDocument,"readystatechange",function(){this.Dl(a,b).Qd(function(h){f.callback(h)},function(h){f.Tb(h)})},!1,this);return f}d.Yb((0,_.p)(function(h){c.push(this.Xe.Bd(h))},this));d=_.vn(c);b&&d.Ja(b);return d};_.g.Wb=function(a){return _.Lq(this.fa,a)};
var Wr=function(a){_.Vr(void 0,a)};
var jea=function(a,b){if(null===b)return!1;if("contains"in a&&1==b.nodeType)return a.contains(b);if("compareDocumentPosition"in a)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a};
var kea=function(a,b){return function(c){c||(c=window.event);return b.call(a,c)}},Xr=function(a){a.preventDefault?a.preventDefault():a.returnValue=!1},Yr=function(a){a=a.target||a.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);return a},lea="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),mea="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),nea="undefined"!=typeof navigator&&/WebKit/.test(navigator.userAgent)&&/Safari/.test(navigator.userAgent),
oea="undefined"!=typeof navigator&&(/MSIE/.test(navigator.userAgent)||/Trident/.test(navigator.userAgent)),pea="undefined"!=typeof navigator&&!/Opera|WebKit/.test(navigator.userAgent)&&/Gecko/.test(navigator.product),tea=function(a){a=Yr(a);var b=a.tagName.toUpperCase(),c=(a.getAttribute("role")||"").toUpperCase();return"BUTTON"===b||"BUTTON"===c?!0:!(a.tagName.toUpperCase()in qea)||"A"===b||"SELECT"===b||(a.getAttribute("type")||a.tagName).toUpperCase()in rea||(a.getAttribute("type")||a.tagName).toUpperCase()in
sea?!1:!0},vea=function(a){var b=a.which||a.keyCode;mea&&3==b&&(b=13);if(13!=b&&32!=b)return!1;var c=Yr(a);(a="keydown"!=a.type||!("getAttribute"in c)||(c.getAttribute("type")||c.tagName).toUpperCase()in sea||"BUTTON"==c.tagName.toUpperCase()||c.type&&"FILE"==c.type.toUpperCase()||c.isContentEditable||a.ctrlKey||a.shiftKey||a.altKey||a.metaKey||(c.getAttribute("type")||c.tagName).toUpperCase()in rea&&32==b)||((a=c.tagName in uea)||(a=c.getAttributeNode("tabindex"),a=null!=a&&a.specified),a=!a||c.disabled);
if(a)return!1;a=(c.getAttribute("role")||c.type||c.tagName).toUpperCase();var d=!(a in Zr)&&13==b;c="INPUT"!=c.tagName.toUpperCase()||!!c.type;return(0==Zr[a]%b||d)&&c},uea={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},wea=function(a){var b=Yr(a);b=(b.type||b.tagName).toUpperCase();return 32==(a.which||a.keyCode)&&"CHECKBOX"!=b},xea=function(a){return(a=a.changedTouches&&a.changedTouches[0]||a.touches&&a.touches[0])?{clientX:a.clientX,clientY:a.clientY,screenX:a.screenX,screenY:a.screenY}:null},Aea=
function(a){var b={};b.originalEventType=a.type;b.type="click";for(var c in a){var d=a[c];"type"!=c&&"srcElement"!=c&&"function"!==typeof d&&(b[c]=d)}b.timeStamp=(0,_.Kc)();b.defaultPrevented=!1;b.preventDefault=yea;b._propagationStopped=!1;b.stopPropagation=zea;if(a=xea(a))b.clientX=a.clientX,b.clientY=a.clientY,b.screenX=a.screenX,b.screenY=a.screenY;return b},Bea=function(){this._mouseEventsPrevented=!0},yea=function(){this.defaultPrevented=!0},zea=function(){this._propagationStopped=!0},$r=function(a){var b=
_.t.document;if(b&&!b.createEvent&&b.createEventObject)try{return b.createEventObject(a)}catch(c){return a}else return a},Zr={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,FILE:0,GRIDCELL:13,LINK:13,LISTBOX:13,MENU:0,MENUBAR:0,MENUITEM:0,MENUITEMCHECKBOX:0,MENUITEMRADIO:0,OPTION:0,RADIO:32,RADIOGROUP:32,RESET:0,SUBMIT:0,SWITCH:32,TAB:0,TREE:13,TREEITEM:13},rea={CHECKBOX:!0,FILE:!0,OPTION:!0,RADIO:!0},sea={COLOR:!0,DATE:!0,DATETIME:!0,"DATETIME-LOCAL":!0,EMAIL:!0,MONTH:!0,NUMBER:!0,PASSWORD:!0,RANGE:!0,SEARCH:!0,
TEL:!0,TEXT:!0,TEXTAREA:!0,TIME:!0,URL:!0,WEEK:!0},qea={A:!0,AREA:!0,BUTTON:!0,DIALOG:!0,IMG:!0,INPUT:!0,LINK:!0,MENU:!0,OPTGROUP:!0,OPTION:!0,PROGRESS:!0,SELECT:!0,TEXTAREA:!0};
/*
Copyright 2020 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
var Cea=function(a,b){if(document.createEvent){var c=document.createEvent("MouseEvent");c.initMouseEvent(b||a.type,!0,!0,window,a.detail||1,a.screenX||0,a.screenY||0,a.clientX||0,a.clientY||0,a.ctrlKey||!1,a.altKey||!1,a.shiftKey||!1,a.metaKey||!1,a.button||0,a.relatedTarget||null)}else c=document.createEventObject(),c.type=b||a.type,c.clientX=a.clientX,c.clientY=a.clientY,c.button=a.button,c.detail=a.detail,c.ctrlKey=a.ctrlKey,c.altKey=a.altKey,c.shiftKey=a.shiftKey,c.metaKey=a.metaKey;c.jm=a.timeStamp;
return c},Dea=function(a,b){if(document.createEvent){var c=document.createEvent("Event");c.initEvent(b||a.type,!0,!0)}else c=document.createEventObject(),c.type=b||a.type;c.jm=a.timeStamp;return c};
/*
Copyright 2005 Google LLC.
SPDX-License-Identifier: Apache-2.0
*/
var ib=function(){this.H=[];this.B=[];this.D=[];this.F={};this.Xe=null;this.C=[]},as,Eea,Fea="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),Gea=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^\s+/,"").replace(/\s+$/,"")},Hea=/\s*;\s*/,bs=null,Kea=function(a,b){return function f(d,e){e=void 0===e?!0:e;var h=b;"click"==h&&(lea&&d.metaKey||!lea&&d.ctrlKey||2==d.which||null==d.which&&4==d.button||d.shiftKey)?h="clickmod":vea(d)&&(h="clickkey");
var k=d.srcElement||d.target;var l=cs(h,d,k,"",null);for(var n,q,w=k;w&&w!=this;w=w.__owner||w.parentNode){q=w;b:{n=void 0;var y=q,D=h,H=d;var P=y.__jsaction;if(!P){var aa;P=null;"getAttribute"in y&&(P=y.getAttribute("jsaction"));if(aa=P){P=Fo[aa];if(!P){P={};for(var la=aa.split(Hea),Ba=la?la.length:0,lb=0;lb<Ba;lb++){var Wc=la[lb];if(Wc){var Lc=Wc.indexOf(":"),Te=-1!=Lc;P[Te?Gea(Wc.substr(0,Lc)):"click"]=Te?Gea(Wc.substr(Lc+1)):Wc}}Fo[aa]=P}y.__jsaction=P}else P=Iea,y.__jsaction=P}"maybe_click"==
D&&P.click?(n=D,D="click"):"clickkey"==D?D="click":"click"!=D||P.click||(D="clickonly");aa=null;if(P.click){y=Jea(y,H,P);if(!y){n={ki:D,action:"",event:null,Tn:!0};break b}y!=H&&(aa=y,D=y.type)}n={ki:n?n:D,action:P[D]||"",event:aa,Tn:!1}}if(n.Tn||n.action)break}n&&(l=cs(n.ki,n.event||d,k,n.action||"",q,l.timeStamp));l&&"touchend"==l.eventType&&(l.event._preventMouseEvents=Bea);if(n&&n.action){if("clickkey"==h&&(wea(d)||tea(d))&&Xr(d),"mouseenter"==h||"mouseleave"==h)if(k=d.relatedTarget,!("mouseover"==
d.type&&"mouseenter"==h||"mouseout"==d.type&&"mouseleave"==h)||k&&(k===q||jea(q,k)))l.action="",l.actionElement=null;else{h={};for(var Pf in d)"function"!==typeof d[Pf]&&"srcElement"!==Pf&&"target"!==Pf&&(h[Pf]=d[Pf]);h.type="mouseover"==d.type?"mouseenter":"mouseleave";h.target=h.srcElement=q;h.bubbles=!1;l.event=h;l.targetElement=q}}else l.action="",l.actionElement=null;a.Xe&&!l.event.a11ysgd&&(q=cs(l.eventType,l.event,l.targetElement,l.action,l.actionElement,l.timeStamp),"clickonly"==q.eventType&&
(q.eventType="click"),a.Xe(q,!0));if(l.actionElement){if(a.Xe){if(l.actionElement&&"A"==l.actionElement.tagName&&("click"==l.eventType||"clickmod"==l.eventType)&&Xr(d),(d=a.Xe(l))&&e){f.call(this,d,!1);return}}else e=$r(d),l.event=e,a.C.push(l);"touchend"==l.event.type&&l.event._mouseEventsPrevented&&(bs=Aea(l.event))}}},cs=function(a,b,c,d,e,f){return{eventType:a,event:b,targetElement:c,action:d,actionElement:e,timeStamp:f||(0,_.Kc)()}},Iea={},Jea=function(a,b,c){if("click"==b.type||b.targetTouches&&
1<b.targetTouches.length)return b;var d=as,e=b.target;if(e&&Lea(e))return b;e=xea(b);if("touchstart"!=b.type||c.touchstart||c.touchend)if("touchend"==b.type&&d&&d.node==a)if(b.defaultPrevented||e&&4<Math.abs(e.clientX-d.x)+Math.abs(e.clientY-d.y))as=null;else{bs=a=Aea(b);b.stopPropagation();b.preventDefault();b=Cea(a);b._fastclick=!0;a:{for(c=a.target;c&&c.getAttribute;){d=c.tagName||"";if("A"==d||"INPUT"==d||"TEXTAREA"==d||"SELECT"==d||"BUTTON"==d||c.getAttribute("tabIndex"))break a;c=c.parentNode}c=
null}c?c.focus():document.activeElement&&document.activeElement.blur();a.target.dispatchEvent(b);if(!b.defaultPrevented){if(document.activeElement&&document.activeElement!=b.target&&document.activeElement!=c&&Lea(document.activeElement))try{document.activeElement.blur()}catch(f){}try{window.getSelection().removeAllRanges()}catch(f){}}return null}else"touchmove"==b.type&&d&&e&&4<Math.abs(e.clientX-d.x)+Math.abs(e.clientY-d.y)&&(as=null);else return as={node:a,x:e?e.clientX:0,y:e?e.clientY:0},bs=null,
clearTimeout(Eea),Eea=setTimeout(Mea,400),null;return b},Lea=function(a){var b=a.tagName||"";return"TEXTAREA"==b||"INPUT"==b||"SELECT"==b||"OPTION"==b||a.isContentEditable},Mea=function(){as=null},ds=function(a){if(!a._fastclick){var b=bs;if(b)if(800<(0,_.Kc)()-b.timeStamp)bs=null;else{var c=4>=Math.abs(a.clientX-b.clientX)+Math.abs(a.clientY-b.clientY);b.target==a.target||c?(a.stopPropagation(),a.preventDefault(),"click"==a.type&&(bs=null)):bs=null}}},Nea=function(a,b){return function(c){var d=a,
e=b,f=!1;"mouseenter"==d?d="mouseover":"mouseleave"==d&&(d="mouseout");if(c.addEventListener){if("focus"==d||"blur"==d||"error"==d||"load"==d)f=!0;c.addEventListener(d,e,f)}else c.attachEvent&&("focus"==d?d="focusin":"blur"==d&&(d="focusout"),e=kea(c,e),c.attachEvent("on"+d,e));return{ki:d,Db:e,capture:f}}},jb=function(a,b,c){if(!a.F.hasOwnProperty(b)){var d=Kea(a,b);c=Nea(c||b,d);a.F[b]=d;a.H.push(c);for(d=0;d<a.B.length;++d){var e=a.B[d];e.C.push(c.call(null,e.B))}"click"==b&&jb(a,"keydown");"click"==
b&&(jb(a,"touchstart"),jb(a,"touchend"),jb(a,"touchmove"),document.addEventListener&&(document.addEventListener("click",ds,!0),document.addEventListener("mouseup",ds,!0),document.addEventListener("mousedown",ds,!0)))}};ib.prototype.Db=function(a){return this.F[a]};
var mb=function(a,b){var c=b.B;Fea&&(c.style.cursor="pointer");for(c=0;c<a.H.length;++c)b.C.push(a.H[c].call(null,b.B))},jaa=function(a){this.B=a;this.C=[]},nb=function(a,b){for(var c=0;c<b.length;++c)if(b[c].B!=a.B&&kb(b[c].B,a.B))return!0;return!1},kb=function(a,b){for(;a!=b&&b.parentNode;)b=b.parentNode;return a==b};
var es=_.Wo("yDXup",[_.tb]);
_.fs=_.Wo("pA3VNb",[es]);
var gs=function(a){_.qo.call(this,a.Da);var b=this;this.D=this.B=null;this.L=a.service.label;this.F=null;this.C=function(){null==this.F&&(this.F=window.setTimeout(this.hide.bind(this,!0),300))}.bind(this);this.H=function(c){b.B.contains(_.ej(b.B).elementFromPoint(c.clientX,c.clientY))||b.C()};this.J=function(c){c.target!==b.B&&b.C()};this.I=function(c){c.target===window?b.hide(!1):c.relatedTarget!==b.B&&b.C()}};_.v(gs,_.qo);gs.va=function(){return{service:{label:es}}};
gs.prototype.show=function(a,b,c,d,e){var f=!0;if(this.D){if(this.B==a)return Oea(this,this.D);this.hide(!1);f=!1}this.B=a;this.D=this.L.show(a,b,c,d,e,f);this.B.addEventListener("mouseleave",this.H,!0);this.B.addEventListener("blur",this.C,!0);this.B.addEventListener("touchend",this.C,!0);this.B.addEventListener("click",this.C,!0);window.addEventListener("touchmove",this.C,!0);window.addEventListener("focus",this.J,!0);window.addEventListener("blur",this.I,!0);return Oea(this,this.D)};
var Oea=function(a,b){return{isDisposed:function(){return b!==this.D}.bind(a),dispose:function(){b===this.D&&this.hide()}.bind(a)}};
gs.prototype.hide=function(a){this.D&&(this.B.removeEventListener("mouseleave",this.H,!0),this.B.removeEventListener("blur",this.C,!0),this.B.removeEventListener("touchend",this.C,!0),this.B.removeEventListener("click",this.C,!0),window.removeEventListener("touchmove",this.C,!0),window.removeEventListener("focus",this.J,!0),window.removeEventListener("blur",this.I,!0),this.L.hide(this.D,void 0!==a?a:!0),window.clearTimeout(this.F),this.B=this.D=this.F=null)};_.Jq(_.fs,gs);
_.hs=ed(function(){if(_.r.Ka)return _.r.Eb("10.0");var a=_.vj("DIV"),b=$ca(),c={transition:"opacity 1s linear"};b&&(c[b+"-transition"]="opacity 1s linear");b=_.Ce("div",{style:c});_.Ge(a,b);return""!=_.Bp(a.firstChild,"transition")});
var Pea=Tr("iwfZq",[_.Sr,_.fs]);
var is=function(a){_.Kq.call(this,a.Da);this.ii=a.La.ii;this.xa=a.service.Fe};_.v(is,_.Kq);is.va=function(){return{La:{ii:_.Sr},service:{Fe:_.fs}}};is.prototype.EB=function(a){this.C(a.B)};is.prototype.toggle=function(a){a=js(a);var b=_.lq(_.Aq(_.hq(a,"QXE97")),"jymhMd");this.C(a,!b);return!b};
is.prototype.C=function(a,b){var c=this,d=js(a),e=_.Aq(_.hq(d,"QXE97")),f=_.lq(e,"jymhMd");if(null!=b&&f==b)return!1;var h=!f,k=e.children();b=_.fq(k,".PsKE7e").el();var l=_.aq(b);Qea(a,h);this.S(d,h);if(_.lq(d,"VsJjtf"))return _.La(d.children(),"FWGjId",h),e.toggle(h),_.La(e,"jymhMd",h),h||ks(d),!0;(new iea(_.fq(d,".dvmRw"))).toggle(h);e.show();Ja(k,function(n){k.Oa("margin-top",-(n+l.top+l.bottom)+"px");_.La(e,"jymhMd");h?(k.Oa("transition","none"),_.Ha(_.Ia().Wa(function(){k.Oa({"margin-top":"0",
transition:""})}))()):ks(d);(0,_.hs)()||_.S(function(){c.AG(new _.Cm(Rea,e,e))},100)},function(){c.ii.log(Error("ea`"+_.lq(d,"VsJjtf")))});return!0};is.prototype.S=function(){};var Qea=function(a,b){_.sq(0<a.filter(_.Dq("ibnC6b")).size()?_.fq(a,".HlqNPb"):a.next().filter(_.Dq("QwLHlb")),"aria-expanded",b)};is.prototype.AG=function(a){_.Ha(_.Ia(this).measure(function(b){b.Ss=_.lq(a.B,"jymhMd")}).Wa(function(b){a.B.toggle(b.Ss)}))()};
var ls=function(a,b,c){if(0==_.fq(_.jq(b,_.Dq("ibnC6b")),".Mkt3Tc").size())return!1;b=a.gE(b);return a.C(_.Aq(b),c)};_.g=is.prototype;_.g.gE=function(a){return _.kq(a,_.Jj,void 0)};_.g.Yx=function(){};_.g.BB=function(){return!1};_.g.wo=function(a){a=a.event;null!==a&&(27==a.keyCode&&this.Yx(),38!=a.keyCode&&40!=a.keyCode||a.preventDefault())};
_.g.bW=function(a){var b=a.event;if(null!==b)if(9==b.keyCode)this.BB(b.shiftKey)&&b.preventDefault();else{var c=new _.eq(document.activeElement);if(0!=c.filter(_.Dq("QwLHlb")).size()){var d=null;switch(b.keyCode){case 27:this.Yx();break;case 38:case 40:case 37:case 39:d=this.aa(a,c),b.preventDefault()}if(d&&0<d.size())return ms(c,d),d.el().focus(),!1}}};
_.g.kx=function(a){return a?this.Wb("QwLHlb").filter(lda("dk90Ob")):this.Wb("QwLHlb").filter(function(b){b=_.jq(new _.eq(b),_.Dq("QXE97"));return 0==b.size()||_.lq(b,"jymhMd")})};
var ns=function(a,b,c,d){a=a.kx(d);for(d=0;d<a.size();d++)if(a.get(d)==b.el()){if(c&&d<a.size()-1)return new _.eq(a.get(d+1));if(!c&&0<d)return new _.eq(a.get(d-1));break}return null},js=function(a){return _.Aq(_.jq(a,_.Dq("ibnC6b")))},ks=function(a){var b=_.Aq(_.hq(a,"QXE97")).find('a[tabindex="0"]');0<b.size()&&(a=_.fq(a,".HlqNPb"),ms(b,a))},ms=function(a,b){_.sq(a,"tabindex",-1);_.sq(b,"tabindex",0)};
is.prototype.Kj=function(a){var b=a.C.getData("tooltip");b.Xg()&&this.xa.show(a.C.el(),b.string(),void 0,void 0,"top")};_.U(is.prototype,"eGiyHb",function(){return this.Kj});_.U(is.prototype,"mPuKz",function(){return this.bW});_.U(is.prototype,"Hq2uPe",function(){return this.wo});_.U(is.prototype,"SJBdh",function(){return this.AG});_.U(is.prototype,"Ptdedd",function(){return this.EB});var Rea=document.createEvent("Event");Wr(is);
_.os=!1;
var Sea;Sea=function(a){this.B=a?new _.eq(a):new _.cq([])};_.ps=function(a){a.B.size()&&a.B.el().ownerDocument&&a.B.el().ownerDocument.body.contains(a.B.el())&&a.B.focus()};Sea.prototype.O=function(){return this.B};
var qs=_.Wo("ws9Tlc");Yo(qs,"NpD4ec");
_.rs=_.Xo("NpD4ec",qs);
_.Gm(_.rs);
_.ss=_.Wo("L1AAkb",[_.rs]);
var ts=function(a){_.qo.call(this,a.Da);this.B=a.service.CZ;_.Wn(this.B.B.document.body,"keydown",this.C,!0,this)},Tea,Vea,Uea;_.v(ts,_.qo);ts.va=function(){return{service:{CZ:_.rs}}};_.us=function(a){return new Sea(_.Sj(a.B.B.document))};ts.prototype.C=function(a){9==a.keyCode&&(_.os=!0)};_.vs=function(a,b){Tea(a,b);b.el().contains(_.Sj(a.B.B.document))||Uea(a,b)};
Tea=function(a,b){var c=Vea(a),d=Vea(a);_.Jo(c.el(),"focus",function(){_.Wea(this,b)},a);_.Jo(d.el(),"focus",function(){_.ws(this,b)},a);_.ida(b.children().Nd(),c);_.xq(b,d)};Vea=function(a){a=new _.eq(a.B.B.document.createElement("div"));_.sq(a,"tabindex",0);_.sq(a,"aria-hidden","true");_.mq(a,"pw1uU");return a};
Uea=function(a,b){_.Ha(_.Ia(a).measure(function(c){var d=_.xs(this,b),e=d.filter(function(f){return f.hasAttribute("autofocus")});0<e.size()?c.Wf=e.Na(0):0<d.size()&&(c.Wf=d.Na(0))}).Wa(function(c){c.Wf&&c.Wf.focus()}))()};_.ws=function(a,b){_.Ha(_.Ia(a).measure(function(c){var d=_.xs(this,b);0<d.size()&&(c.Wf=d.Na(0))}).Wa(function(c){c.Wf&&c.Wf.focus()}))()};_.Wea=function(a,b){_.Ha(_.Ia(a).measure(function(c){var d=_.xs(this,b);0<d.size()&&(c.Wf=d.Na(-1))}).Wa(function(c){c.Wf&&c.Wf.focus()}))()};
_.xs=function(a,b){return b.find("[autofocus], [tabindex], a, input, textarea, select, button").filter(function(c){var d="true"==c.getAttribute("aria-disabled")||null!=c.getAttribute("disabled")||null!=c.getAttribute("hidden")||"true"==c.getAttribute("aria-hidden");d=0<=c.tabIndex&&0<c.getBoundingClientRect().width&&!_.jp(c,"pw1uU")&&!d;var e=!1;d&&(c=this.B.get().getComputedStyle(c),e="none"==c.display||"hidden"==c.visibility);return d&&!e}.bind(a))};_.Jq(_.ss,ts);
var Xea=Tr("eEDsnd",[Pea,_.ss]);
var ys=function(a){is.call(this,a.Da);this.ey=a.service.ey;this.R=_.Ha(_.Ia(this).measure(function(b){var c=this.O("ihoMLd");b.GA=_.lq(c,"oecJfe")}).Wa(function(b){b.GA||this.O("ihoMLd").hide()}))};_.v(ys,is);ys.va=function(){return{service:{ey:_.ss}}};ys.prototype.DG=function(a){a&&a.C&&a.C.el()!=this.O("ihoMLd").el()||this.R()};
ys.prototype.aa=function(a,b){switch(a.event.keyCode){case 38:return ns(this,b,!1,void 0);case 40:return ns(this,b,!0,void 0);case 37:return ls(this,b,!1)?null:ns(this,b,!1,void 0);case 39:return ls(this,b,!0)?null:ns(this,b,!0,void 0);default:return null}};_.U(ys.prototype,"UD2r5",function(){return this.DG});Wr(ys);
var zs=function(a,b,c,d,e){d=void 0===d?!1:d;e=void 0===e?!1:e;_.O.call(this);this.I=_.oa(a);this.Xc=b;this.xm=c;this.C=new _.ap(this);this.ha(this.C);this.F=d;this.B=!0;this.H=e;this.C.listen(document,"mousedown",this.J,!0);this.F&&this.C.listen(document,"mouseup",this.L,!0);this.D=_.Jo(window.document.body,Pba,this.Xc,this.xm)};_.v(zs,_.O);zs.prototype.ma=function(){_.Ko(this.D);_.O.prototype.ma.call(this)};zs.prototype.J=function(a){this.B=Yea(this,a);!this.F&&this.B&&this.Xc.call(this.xm);return!0};
zs.prototype.L=function(a){this.B&&Yea(this,a)&&this.Xc.call(this.xm);return this.B=!0};var Yea=function(a,b){var c=new _.eq(b.target);return 0<_.jq(c,".I7OXgf").size()||0<_.jq(c,".g3VIld").size()||a.H&&0<_.jq(c,".JPdR6b").size()?!1:0==b.button?!_.Xc(a.I,function(d){return _.Mj(d,b.target)}):!1};zs.prototype.uninstall=function(){this.C.removeAll();_.Ko(this.D)};
var As=function(a){a=a.split(/\s+/);for(var b=0;b<a.length;++b)if(a[b]){var c="theme_"+a[b];a[b]=Zea[c]||c}return a.join(" ")},Zea={theme_announcementBanner_BgColorThumbnail:"CMArNe",theme_announcementBanner_Default:"vYHBCe",theme_announcementBanner_Text:"Y4CpGd",theme_block_BulletedList:"UVNKR",theme_block_BulletedListItem:"eD0Rn",theme_block_CodeBlock:"s1gOZb",theme_block_CodeLine:"FVr0A",theme_block_Default:"zfr3Q",theme_block_Heading1:"duRjpb",theme_block_Heading1Spacer:"Ap4VC",theme_block_Heading2:"JYVBee",
theme_block_Heading2Spacer:"CobnVe",theme_block_Heading3:"OmQG5e",theme_block_Heading3Spacer:"GV3q8e",theme_block_Heading4:"XvmX8b",theme_block_IndentLeft1:"QcmuFb",theme_block_IndentLeft10:"rB8cye",theme_block_IndentLeft2:"vDPrib",theme_block_IndentLeft3:"TBDXjd",theme_block_IndentLeft4:"bYeK8e",theme_block_IndentLeft5:"CuqSDe",theme_block_IndentLeft6:"Havqpe",theme_block_IndentLeft7:"JvDrRe",theme_block_IndentLeft8:"o5lrIf",theme_block_IndentLeft9:"yOJW7c",theme_block_IndentRight1:"RuayVd",theme_block_IndentRight10:"GEdNnc",
theme_block_IndentRight2:"YzcKX",theme_block_IndentRight3:"reTV0b",theme_block_IndentRight4:"vSYeUc",theme_block_IndentRight5:"PxtZIe",theme_block_IndentRight6:"ahQMed",theme_block_IndentRight7:"rzhcXb",theme_block_IndentRight8:"PBhj0b",theme_block_IndentRight9:"TlN46c",theme_block_List:"n8H08c",theme_block_ListItem:"TYR86d",theme_block_NumberedList:"BKnRcf",theme_block_NumberedListItem:"lsiHE",theme_block_Small:"TMjjoe",theme_button_AnchorLink:"LRAOtb",theme_button_AnchorLinkIcon:"OUGEr",theme_button_Default:"QmpIrf",
theme_button_Outlined:"xkUom",theme_button_Text:"KjwKmc",theme_carousel_ActiveDot:"CbiMKe",theme_carousel_Default:"DgcvCf",theme_code_Default:"qM9fHf",theme_colorKitPreview_Aristotle_ArmyGreen:"fMiFRd",theme_colorKitPreview_Aristotle_ArmyGreen_Button:"CyjiKb",theme_colorKitPreview_Aristotle_BlueGrey:"fFbzwc",theme_colorKitPreview_Aristotle_BlueGrey_Button:"iNzk0b",theme_colorKitPreview_Aristotle_Custom:"Pm4C1d",theme_colorKitPreview_Aristotle_Custom_Button:"nHveWe",theme_colorKitPreview_Aristotle_Gold:"tfbKub",
theme_colorKitPreview_Aristotle_Gold_Button:"d4xFuc",theme_colorKitPreview_Aristotle_PurpleSmoke:"xJFrfe",theme_colorKitPreview_Aristotle_PurpleSmoke_Button:"a5nsEf",theme_colorKitPreview_Aristotle_Teal:"N8XIcf",theme_colorKitPreview_Aristotle_Teal_Button:"cHd19c",theme_colorKitPreview_Default:"pSCXz",theme_colorKitPreview_Enlightened_Blue:"NulQ6d",theme_colorKitPreview_Enlightened_Blue_Button:"ODx3Pc",theme_colorKitPreview_Enlightened_Custom:"DzjgQe",theme_colorKitPreview_Enlightened_Custom_Button:"vfnF1b",
theme_colorKitPreview_Enlightened_Lime:"bLKWP",theme_colorKitPreview_Enlightened_Lime_Button:"UdUOrf",theme_colorKitPreview_Enlightened_Pink:"rgOvtc",theme_colorKitPreview_Enlightened_Pink_Button:"wGrN5c",theme_colorKitPreview_Enlightened_Red:"PvxxMc",theme_colorKitPreview_Enlightened_Red_Button:"zoKek",theme_colorKitPreview_Enlightened_Yellow:"dMFmub",theme_colorKitPreview_Enlightened_Yellow_Button:"YHmRob",theme_colorKitPreview_Impression_Brown:"Y9JJNb",theme_colorKitPreview_Impression_Brown_Button:"e79R7c",
theme_colorKitPreview_Impression_Custom:"ZPoosf",theme_colorKitPreview_Impression_Custom_Button:"HFajOe",theme_colorKitPreview_Impression_GrayBlue:"dHth5e",theme_colorKitPreview_Impression_GrayBlue_Button:"DrzkVc",theme_colorKitPreview_Impression_PigmentGreen:"ljjehd",theme_colorKitPreview_Impression_PigmentGreen_Button:"e680ee",theme_colorKitPreview_Impression_SunsetOrange:"UNzz7e",theme_colorKitPreview_Impression_SunsetOrange_Button:"Yf4Acd",theme_colorKitPreview_Impression_Supernova:"xxfVsf",theme_colorKitPreview_Impression_Supernova_Button:"ORiXsd",
theme_colorKitPreview_LabelMaker_Burgundy:"DQFqLb",theme_colorKitPreview_LabelMaker_Burgundy_Button:"etQQ6e",theme_colorKitPreview_LabelMaker_Custom:"OCILTb",theme_colorKitPreview_LabelMaker_Custom_Button:"ps5x7d",theme_colorKitPreview_LabelMaker_DarkBlue:"qCEcsf",theme_colorKitPreview_LabelMaker_DarkBlue_Button:"eleMTb",theme_colorKitPreview_LabelMaker_DarkGrey:"kCmgm",theme_colorKitPreview_LabelMaker_DarkGrey_Button:"BycqZb",theme_colorKitPreview_LabelMaker_Night:"ONlJF",theme_colorKitPreview_LabelMaker_Night_Button:"k3Kuie",
theme_colorKitPreview_LabelMaker_PineGreen:"smpXHb",theme_colorKitPreview_LabelMaker_PineGreen_Button:"jWsjqf",theme_colorKitPreview_Level_Blue:"OjaWMc",theme_colorKitPreview_Level_Blue_Button:"fGq6Nd",theme_colorKitPreview_Level_Custom:"c1k5ub",theme_colorKitPreview_Level_Custom_Button:"lmrtHf",theme_colorKitPreview_Level_Green:"p71utf",theme_colorKitPreview_Level_Green_Button:"U19eYd",theme_colorKitPreview_Level_LightYellow:"l6rAtf",theme_colorKitPreview_Level_LightYellow_Button:"CWl49e",theme_colorKitPreview_Level_Orange:"g87xie",
theme_colorKitPreview_Level_Orange_Button:"ErUjee",theme_colorKitPreview_Level_Silver:"uK9N1c",theme_colorKitPreview_Level_Silver_Button:"Mtw03d",theme_colorKitPreview_QualityBasics_Blue:"iM9REf",theme_colorKitPreview_QualityBasics_Blue_Button:"lT1Xg",theme_colorKitPreview_QualityBasics_Custom:"dYzJH",theme_colorKitPreview_QualityBasics_Custom_Button:"AFCPbb",theme_colorKitPreview_QualityBasics_Dark:"xMROZe",theme_colorKitPreview_QualityBasics_Dark_Button:"XVfJie",theme_colorKitPreview_QualityBasics_Green:"s7erne",
theme_colorKitPreview_QualityBasics_Green_Button:"BBJtse",theme_colorKitPreview_QualityBasics_Magenta:"dHFk2b",theme_colorKitPreview_QualityBasics_Magenta_Button:"c5xXL",theme_colorKitPreview_QualityBasics_Purple:"HBXbWb",theme_colorKitPreview_QualityBasics_Purple_Button:"wtdpGc",theme_colorKitPreview_Testable_BlueKit:"gs8Iy",theme_colorKitPreview_Vision_Custom:"nPCr5c",theme_colorKitPreview_Vision_Custom_Button:"wvUOcc",theme_colorKitPreview_Vision_DodgerBlue:"Bbobfb",theme_colorKitPreview_Vision_DodgerBlue_Button:"Ham7zb",
theme_colorKitPreview_Vision_Gray:"Oa7lrf",theme_colorKitPreview_Vision_Gray_Button:"eEjQP",theme_colorKitPreview_Vision_Green:"inWgtb",theme_colorKitPreview_Vision_Green_Button:"xKHgKe",theme_colorKitPreview_Vision_MediumVioletRed:"Qcb9qd",theme_colorKitPreview_Vision_MediumVioletRed_Button:"Z5KKGe",theme_colorKitPreview_Vision_Purple:"b78yyb",theme_colorKitPreview_Vision_Purple_Button:"s3dcDf",theme_fontKitPreview_Aristotle_Classic:"rGRCdb",theme_fontKitPreview_Aristotle_Classic_Text:"JygC9c",theme_fontKitPreview_Aristotle_Modern:"pkxHnb",
theme_fontKitPreview_Aristotle_Modern_Text:"nOxxzc",theme_fontKitPreview_Aristotle_Strong:"My1zve",theme_fontKitPreview_Aristotle_Strong_Text:"vjJ0Qe",theme_fontKitPreview_Default:"ob4w9d",theme_fontKitPreview_Enlightened_Narrow:"nWwHrc",theme_fontKitPreview_Enlightened_Narrow_Text:"Hf1Ikc",theme_fontKitPreview_Enlightened_Sans:"vG6t8e",theme_fontKitPreview_Enlightened_Sans_Text:"z7xCfc",theme_fontKitPreview_Enlightened_Slab:"MwIBOe",theme_fontKitPreview_Enlightened_Slab_Text:"yyhhyb",theme_fontKitPreview_Impression_Capital:"sGuymd",
theme_fontKitPreview_Impression_Capital_Text:"JDHuA",theme_fontKitPreview_Impression_Frank:"HN7Lef",theme_fontKitPreview_Impression_Frank_Text:"jwrQ9",theme_fontKitPreview_Impression_Narrow:"lbeexb",theme_fontKitPreview_Impression_Narrow_Text:"pBOQZc",theme_fontKitPreview_LabelMaker_Classic:"Y5HbGf",theme_fontKitPreview_LabelMaker_Classic_Text:"PkTbad",theme_fontKitPreview_LabelMaker_Heavy:"sAEDs",theme_fontKitPreview_LabelMaker_Heavy_Text:"xDh0Pb",theme_fontKitPreview_LabelMaker_Thin:"lPQw5e",theme_fontKitPreview_LabelMaker_Thin_Text:"NjUV6b",
theme_fontKitPreview_Level_Narrow:"sl3DDc",theme_fontKitPreview_Level_Narrow_Text:"iMNMlb",theme_fontKitPreview_Level_Sans:"eCrVff",theme_fontKitPreview_Level_Sans_Text:"cCawue",theme_fontKitPreview_Level_Slab:"HLBw6d",theme_fontKitPreview_Level_Slab_Text:"NXFel",theme_fontKitPreview_QualityBasics_Classic:"jM23Ve",theme_fontKitPreview_QualityBasics_Classic_Text:"dTYkjf",theme_fontKitPreview_QualityBasics_Heavy:"MnOL1c",theme_fontKitPreview_QualityBasics_Heavy_Text:"tK0VWc",theme_fontKitPreview_QualityBasics_Light:"yeMeA",
theme_fontKitPreview_QualityBasics_Light_Text:"p0QaI",theme_fontKitPreview_Testable_CursiveKit:"LHvUzf",theme_fontKitPreview_Vision_Bold:"QVE8v",theme_fontKitPreview_Vision_Bold_Text:"YWbOv",theme_fontKitPreview_Vision_Classic:"FWAxJ",theme_fontKitPreview_Vision_Classic_Text:"mvM8A",theme_fontKitPreview_Vision_Modern:"BZ74wb",theme_fontKitPreview_Vision_Modern_Text:"M0ci9b",theme_group_Default:"SQVYQc",theme_link_:"mohMlc",theme_link_Default:"dhtgD",theme_navigation_:"rysYnb",theme_navigation_CanvasAtTop:"fOU46b",
theme_navigation_Content:"jYxBte",theme_navigation_Default:"FGoQMd",theme_navigation_DrawerPanel:"JzO0Vc",theme_navigation_ExpandButton:"j10yRb",theme_navigation_HeaderDarkImage:"XeSM4",theme_navigation_HeaderLightImage:"KuNac",theme_navigation_Item:"PsKE7e",theme_navigation_ItemLink:"aJHbb",theme_navigation_LogoImageSideContainer:"XMyrgf",theme_navigation_MenuLabel:"Hnbbrb",theme_navigation_NavigationButton:"YTv4We",theme_navigation_OpenButton:"Mz8gvb",theme_navigation_OpenSearchButton:"iWs3gf",
theme_navigation_OpenSearchTab:"wgxiMe",theme_navigation_SectionA:"aCIEDd",theme_navigation_SectionB:"a3ETed",theme_navigation_SectionDefault:"usN8rf",theme_navigation_SelectedItem:"lhZOrc",theme_navigation_SideForegroundColor:"oNsfjf",theme_navigation_SideItem:"IKA38e",theme_navigation_SideItemLessPadding:"baH5ib",theme_navigation_SideItemLink:"hDrhEe",theme_navigation_SiteBarDark:"GBy4H",theme_navigation_SiteBarLight:"LBrwzc",theme_navigation_SiteBarLightAtTop:"G8QRnc",theme_navigation_SiteBarOverlay:"zDUgLc",
theme_navigation_SiteBarTitle:"TlfmSc",theme_navigation_SiteBarTitleLink:"QTKDff",theme_navigation_SiteBarTitlePlaceholder:"ZXW7w",theme_navigation_SiteBarTitleScrolled:"qqONsb",theme_navigation_SiteBarTitleUnderline:"KJll8d",theme_navigation_SiteTitle:"Zjiec",theme_navigation_SuggestEditing:"eBSUbc",theme_navigation_SuggestEditingTextLink:"BFDQOb",theme_navigation_TopExpandButton:"u5fiyc",theme_navigation_TopForegroundColor:"YSH9J",theme_navigation_TopItem:"qV4dIc",theme_navigation_TopItemLink:"jgXgSe",
theme_navigation_TopNavItemSeparator:"rgLkl",theme_navigation_TopPanel:"oXBWEc",theme_navigation_TopPanelSubmenu:"eWDljc",theme_navigation_TopSelectedItem:"M9vuGd",theme_navigation_sideNavigation:"b2Iqye",theme_navigation_topNavigation:"G9Qloe",theme_pageHeader_Banner:"O13XJf",theme_pageHeader_Cover:"WVklg",theme_pageHeader_Default:"eIPcw",theme_pageHeader_LargeBanner:"SBrW1",theme_pageHeader_ScrollDownButton:"Wew9ke",theme_pageHeader_TextOnly:"gk8rDe",theme_page_Default:"UtePc",theme_page_largeHasOverlay:"yMcSQd",
theme_page_smallHasOverlay:"Ly6Unf",theme_row_Default:"ZZyype",theme_section_BgImage:"IFuOkc",theme_section_DarkImage:"nyKByd",theme_section_Default:"yaqOZd",theme_section_Image:"cJgDec",theme_section_LightImage:"tpmmCb",theme_section_PageHeader:"LB7kq",theme_section_SectionA:"qeLZfd",theme_section_SectionB:"lQAHbd",theme_section_SiteBackgroundOverlay:"M63kCb",theme_text_Accent1Color:"qLrapd",theme_text_Accent2Color:"aHM7ed",theme_text_Accent3Color:"NHD4Gf",theme_text_Default:"oWuoKb",theme_text_LinkColor:"aw5Odc",
theme_text_NormalColor:"qnVSj",theme_text_SmallColor:"Glwbz",theme_themeFonts_Aristotle:"t5HAFc",theme_themeFonts_Base:"g6aHN",theme_themeFonts_Enlightened:"el2lYc",theme_themeFonts_Impression:"soVfmd",theme_themeFonts_LabelMaker:"ZmHV6e",theme_themeFonts_Level:"f1NHBd",theme_themeFonts_QualityBasics:"lGswWd",theme_themeFonts_Testable:"w9xVWd",theme_themeFonts_Vision:"AcI47e",theme_themeFonts_fontKitPreview_Aristotle_Classic:"Wv6mj",theme_themeFonts_fontKitPreview_Aristotle_Modern:"EfmxP",theme_themeFonts_fontKitPreview_Aristotle_Strong:"pY2aUe",
theme_themeFonts_fontKitPreview_Enlightened_Narrow:"uEGoGc",theme_themeFonts_fontKitPreview_Enlightened_Sans:"gFbn",theme_themeFonts_fontKitPreview_Enlightened_Slab:"mxUxdc",theme_themeFonts_fontKitPreview_Impression_Capital:"xKS3bb",theme_themeFonts_fontKitPreview_Impression_Frank:"ien3Kc",theme_themeFonts_fontKitPreview_Impression_Narrow:"SEsGmd",theme_themeFonts_fontKitPreview_LabelMaker_Classic:"ut7iAf",theme_themeFonts_fontKitPreview_LabelMaker_Heavy:"dx5yMe",theme_themeFonts_fontKitPreview_LabelMaker_Thin:"ryJuVc",
theme_themeFonts_fontKitPreview_Level_Narrow:"n6lhdb",theme_themeFonts_fontKitPreview_Level_Sans:"yHELDd",theme_themeFonts_fontKitPreview_Level_Slab:"p6lw0b",theme_themeFonts_fontKitPreview_QualityBasics_Classic:"cMNEtf",theme_themeFonts_fontKitPreview_QualityBasics_Heavy:"p19sT",theme_themeFonts_fontKitPreview_QualityBasics_Light:"gtCvEc",theme_themeFonts_fontKitPreview_Testable_CursiveKit:"e6kay",theme_themeFonts_fontKitPreview_Vision_Bold:"saFUJ",theme_themeFonts_fontKitPreview_Vision_Classic:"VzfIae",
theme_themeFonts_fontKitPreview_Vision_Modern:"I1ecof",theme_themePreview_Aristotle_Label:"H1UJXd",theme_themePreview_Aristotle_Thumbnail:"dMdlw",theme_themePreview_Base_Label:"u8w3ee",theme_themePreview_Base_Thumbnail:"KUNlrd",theme_themePreview_Default:"QgP7Fd",theme_themePreview_Enlightened_Label:"mfx82",theme_themePreview_Enlightened_Thumbnail:"F8uIid",theme_themePreview_Impression_Label:"diGcjc",theme_themePreview_Impression_Thumbnail:"rJsEUc",theme_themePreview_LabelMaker_Label:"tMWYWb",theme_themePreview_LabelMaker_Thumbnail:"BTrmqf",
theme_themePreview_Level_Label:"XdDQq",theme_themePreview_Level_Thumbnail:"ipRgwf",theme_themePreview_QualityBasics_Label:"XCUtp",theme_themePreview_QualityBasics_Thumbnail:"ECjZAd",theme_themePreview_Vision_Label:"j39Y2c",theme_themePreview_Vision_Thumbnail:"GANzcd",theme_themeThumbnail_Aristotle:"VGT2C",theme_themeThumbnail_Base:"uJ3nFd",theme_themeThumbnail_Enlightened:"ONj9zb",theme_themeThumbnail_Impression:"bYXd1c",theme_themeThumbnail_LabelMaker:"yrDQab",theme_themeThumbnail_Level:"LrElH",
theme_themeThumbnail_QualityBasics:"y08Reb",theme_themeThumbnail_Testable:"kZxGcf",theme_themeThumbnail_Vision:"oSe1Gb",theme_thumbnail_Default:"gfHe6b",theme_thumbnail_SectionDefault:"ImnMyf",theme_thumbnail_SectionEmphasis1:"Vs12Bd",theme_thumbnail_SectionEmphasis2:"S5d9Rd",theme_thumbnail_Testable:"rLuUMd",theme_tile_ButtonTile:"N0neUc",theme_tile_Default:"baZpAe",theme_tile_DividerTile:"iwQgFb",theme_tile_EmbedTile:"OWlOyc",theme_tile_PageHeader:"lkHyyc",theme_tile_SearchTile:"ySLm4c"};
_.Bs=function(a,b,c){_.O.call(this);this.Hg=a;this.C=b||0;this.B=c;this.Xc=(0,_.p)(this.FE,this)};_.x(_.Bs,_.O);_.g=_.Bs.prototype;_.g.lb=0;_.g.ma=function(){_.Bs.oa.ma.call(this);this.stop();delete this.Hg;delete this.B};_.g.start=function(a){this.stop();this.lb=_.S(this.Xc,void 0!==a?a:this.C)};_.g.stop=function(){this.Mb()&&_.ko(this.lb);this.lb=0};_.g.If=function(){this.stop();this.FE()};_.g.Mb=function(){return 0!=this.lb};_.g.FE=function(){this.lb=0;this.Hg&&this.Hg.call(this.B)};
var Cs=function(a,b,c){_.O.call(this);this.Hg=null!=c?a.bind(c):a;this.H=b;this.F=null;this.C=!1;this.D=0;this.B=null};_.v(Cs,_.O);_.g=Cs.prototype;_.g.If=function(a){this.F=arguments;this.B||this.D?this.C=!0:Ds(this)};_.g.stop=function(){this.B&&(_.ko(this.B),this.B=null,this.C=!1,this.F=null)};_.g.pause=function(){this.D++};_.g.resume=function(){this.D--;this.D||!this.C||this.B||(this.C=!1,Ds(this))};_.g.ma=function(){_.O.prototype.ma.call(this);this.stop()};
var Ds=function(a){a.B=_.S(function(){a.B=null;a.C&&!a.D&&(a.C=!1,Ds(a))},a.H);var b=a.F;a.F=null;a.Hg.apply(null,b)};
var $ea=Tr("oDd24c",[Pea,_.Wq]);
var Hs=function(a){is.call(this,a.Da);var b=this;this.config=a.La.configuration;this.I=[];this.qa=0;this.D=1;this.Ha=new Cs(this.Wv,50,this);this.V=this.B=this.H=null;this.L=!0;this.F=null;this.Sa=_.Ha(_.Ia(this).measure(function(c){afa(this,c)}).Wa(function(c){if(void 0!==c.Fi&&c.Fi!=this.D&&this.I.length){if(this.D<c.Fi){var d=Es(Fs(this,!1),this.D,c.Fi);_.La(d,"ZmrVpf",!1);_.sq(d,"aria-hidden","false");d=Es(Fs(this,!0),this.D,c.Fi);_.La(d,"ZmrVpf",!0);_.sq(d,"aria-hidden","true");ks(Gs(this))}else this.D>
c.Fi&&(d=Es(Fs(this,!1),c.Fi,this.D),_.La(d,"ZmrVpf",!0),_.sq(d,"aria-hidden","true"),d=d.find('a[tabindex="0"]'),0<d.size()&&ms(d,_.Aq(_.fq(Gs(this),".HlqNPb"))),d=Es(Fs(this,!0),c.Fi,this.D),_.La(d,"ZmrVpf",!1),_.sq(d,"aria-hidden","false"));this.D=c.Fi;d=Gs(this);c=d.find('li[nav-level="2"]').size()<=this.D;_.La(d,"ZmrVpf",c).toggle(!c);_.sq(d,"aria-hidden",String(c));d=_.Aq(_.fq(Gs(this),".HlqNPb"));c&&"0"==_.rq(d,"tabindex")&&(c=_.fq(Fs(this,!1).Nd(),".HlqNPb"),ms(d,c))}this.ca().Oa("visibility",
"visible")}));tda(this).listen(Rba,function(){return bfa(b,!0)});tda(this).listen(Sba,function(){return bfa(b,!1)})};_.v(Hs,is);Hs.va=function(){return{La:{configuration:_.Wq}}};var bfa=function(a,b){a=a.Wb("QwLHlb");0<a.size()&&(b?_.sq(a.Nd(),"tabindex","-1"):_.sq(a.Nd(),"tabindex","0"))};
Hs.prototype.pW=function(a){var b=a.B.el()==this.H;1>=_.F(this.config.get(),222,1)?this.B&&(b?this.B.stop():(b=this.B,b.Mb()&&b.If())):(this.B&&this.B.stop(),!b&&this.H&&(b=new _.eq(this.H),this.C(b,!1)));this.B=null;this.C(a.B,!0)};
Hs.prototype.C=function(a,b){var c=js(a),d=_.Aq(_.hq(c,"QXE97")),e=_.lq(d,"RPRy1e");e&&d.Oa({transform:"","max-height":""});var f=_.lq(d,"jymhMd");b=is.prototype.C.call(this,c,b);e&&_.Wp(d.el())&&cfa(this,d);(d=!f)&&b&&e&&dfa(this,a);if(!b)return b;d&&e&&(this.H=c.el());if(e)return d||(this.L=!0),!0;var h=_.jq(a,'[jsname="ibnC6b"]');a=h.parent().children().filter(function(k){return k!=h.el()});c=h.children().Nd();_.La(c,"G95ACe",d);0<a.size()&&(e=_.aq(c.el()),c=_.Up(c.el()).height+e.top+e.bottom,
d?efa(this,a,c):ffa(this,a,c),_.sq(a.filter(function(k){return!k.classList.contains("ZmrVpf")}),"aria-hidden",d));this.L=!1;this.B&&(this.B.stop(),this.B=null);return!0};
var cfa=function(a,b){var c=_.Pp(b.el()),d=_.Ai();a=_.jq(a.ca(),_.Dq("rtFGi")).el();a=_.Vp(a);var e=c.x+b.el().offsetWidth,f={};c.x<16+a.left?f.transform="translateX("+(16+a.left-c.x)+"px)":e+16>a.width+a.left&&(f.transform="translateX("+(a.width+a.left-16-e)+"px)");f["max-height"]=d.height-c.y-32+"px";b.Oa(f)},dfa=function(a,b){a.V&&a.V.uninstall();a.V=new zs(b.el(),function(){a.C(b,!1)})},efa=function(a,b,c){null!=a.F&&_.ko(a.F);b.Oa("height",c+"px");_.S(function(){b.Oa("height","0");a.F=_.S(function(){_.mq(b,
"PMD4Hd");b.Oa("height","");a.F=null},300)},0)},ffa=function(a,b,c){null!=a.F&&_.ko(a.F);b.Oa("height","0");_.nq(b,"PMD4Hd");_.S(function(){b.Oa("height",c+"px");a.F=_.S(function(){b.Oa("height","");a.F=null},300)},0)};Hs.prototype.qW=function(a){var b=this;if(this.L){var c=a.B;null==this.B&&(this.B=new _.Bs(function(){b.C(c,!1);b.H=null},300));this.B.start()}};Hs.prototype.$Y=function(a){a=a.B;this.toggle(a)&&(a=js(a).find('[jsname="QwLHlb"]').filter(this.X).Nd())&&_.nq(a.focus(),"chg4Jd")};
var gfa=function(a){var b=Fs(a,!1);a.D=b.size()+1;a.I=_.Uc(_.sa(b.Bb(),0,25),function(c){return _.Up(c).width});a.qa=_.Vc(a.I,function(c,d){return c+d},0);a.Aa=_.Up(Gs(a).el()).width};Hs.prototype.mI=function(a){this.Ha.If(a)};Hs.prototype.Wv=function(){this.Sa()};
var afa=function(a,b){var c=hfa(a);if(a.qa<=c)b.Fi=a.I.length;else{var d=a.Aa,e=0;_.Sc(a.I,function(f){d+=f;d<=c&&e++});b.Fi=e}},Es=function(a,b,c){return new _.cq(a.Bb().slice(b,c))},Fs=function(a,b){return b?a.ca().find('li[nav-level="2"][in-more-item]:not([more-menu-item])'):a.ca().find('li[nav-level="1"]:not([more-menu-item])')};Hs.prototype.gE=function(a){return _.lq(a,ifa)?a.next():_.kq(a,_.Jj,void 0)};Hs.prototype.kx=function(a){return is.prototype.kx.call(this,a).filter(this.X)};
Hs.prototype.X=function(a){return 0==_.jq(new _.eq(a),".ZmrVpf").size()};var Is=function(a){return _.lq(_.jq(a,_.Dq("ibnC6b")),"VsJjtf")},Gs=function(a){return _.Aq(a.ca().find("li[more-menu-item]"))};Hs.prototype.gm=function(a){"true"!=_.rq(a.B,"aria-expanded")||Is(a.B)?this.iA(a):(a=js(a.B),this.C(a,!1))};
Hs.prototype.aa=function(a,b){a=a.event;var c=Is(b);switch(a.keyCode){case 38:return c?jfa(this,b):kfa(this,b);case 40:return c?lfa(this,b):mfa(this,b);case 37:var d;c?d=jfa(this,b):d=ls(this,b,!1)?null:kfa(this,b);return d;case 39:return c?(d=_.lq(b,"dk90Ob"),d=ns(this,b,!0,d),nfa(this,b,d),b=d):b=ls(this,b,!0)?null:mfa(this,b),b;default:return null}};
var jfa=function(a,b){var c=ns(a,b,!1,!0);nfa(a,b,c);return c},kfa=function(a,b){(b=ns(a,b,!1,void 0))&&Is(b)&&ls(a,b,!1);return b},lfa=function(a,b){ls(a,b,!0);var c=_.fq(_.jq(b,_.Dq("ibnC6b")),".Mkt3Tc").find(".HlqNPb").filter(function(d){return null==_.jq(_.Aq(d),".ZmrVpf")}).Nd();return c&&0<c.size()?c:ns(a,b,!0,void 0)},mfa=function(a,b){return(a=ns(a,b,!0,void 0))&&_.jq(a,".VsJjtf").el()!=_.jq(b,".VsJjtf").el()?null:a};
Hs.prototype.BB=function(a){if(this.H){var b=new _.eq(this.H);this.C(b,!1)}return is.prototype.BB.call(this,a)};var nfa=function(a,b,c){"true"==_.rq(b,"aria-expanded")&&null!=c&&(ls(a,b,!1),ls(a,c,!0))};_.U(Hs.prototype,"qxgbic",function(){return this.iA});_.U(Hs.prototype,"vHQTA",function(){return this.gm});_.U(Hs.prototype,"emYIXe",function(){return this.Wv});_.U(Hs.prototype,"EPfZc",function(){return this.mI});_.U(Hs.prototype,"oESVTe",function(){return this.$Y});_.U(Hs.prototype,"ysDRUd",function(){return this.qW});
_.U(Hs.prototype,"Vx8Jlb",function(){return this.pW});var ifa=As("navigation_TopItemLink");Wr(Hs);
var ofa=function(a){this.B=a};ofa.prototype.toggle=function(a){Ma(this.B,"o0iVae",a)};
var Js,Ks,pfa,rfa;Js={};Ks=null;_.qfa=function(a){var b=_.va(a);b in Js||(Js[b]=a);pfa()};_.Ls=function(a){a=_.va(a);delete Js[a];_.md(Js)&&Ks&&Ks.stop()};pfa=function(){Ks||(Ks=new _.Bs(function(){rfa()},20));var a=Ks;a.Mb()||a.start()};rfa=function(){var a=(0,_.Kc)();_.gd(Js,function(b){b.xG(a)});_.md(Js)||pfa()};
_.Ms=function(){_.R.call(this);this.Ca=0;this.endTime=this.startTime=null};_.x(_.Ms,_.R);_.Ns=function(a){return 1==a.Ca};_.Ms.prototype.wd=function(){return 0==this.Ca};_.Ms.prototype.Fj=function(){this.B("begin")};_.Ms.prototype.Bh=function(){this.B("end")};_.Os=function(a){a.B("finish")};_.Ms.prototype.onStop=function(){this.B("stop")};_.Ms.prototype.B=function(a){this.dispatchEvent(a)};
_.Ps=function(a,b,c,d){_.Ms.call(this);if(!Array.isArray(a)||!Array.isArray(b))throw Error("ia");if(a.length!=b.length)throw Error("ja");this.D=a;this.I=b;this.duration=c;this.H=d;this.coords=[];this.C=!1;this.progress=0};_.x(_.Ps,_.Ms);_.g=_.Ps.prototype;_.g.getDuration=function(){return this.duration};
_.g.play=function(a){if(a||this.wd())this.progress=0,this.coords=this.D;else if(_.Ns(this))return!1;_.Ls(this);this.startTime=a=(0,_.Kc)();-1==this.Ca&&(this.startTime-=this.duration*this.progress);this.endTime=this.startTime+this.duration;this.progress||this.Fj();this.B("play");-1==this.Ca&&this.B("resume");this.Ca=1;_.qfa(this);sfa(this,a);return!0};_.g.stop=function(a){_.Ls(this);this.Ca=0;a&&(this.progress=1);tfa(this,this.progress);this.onStop();this.Bh()};
_.g.pause=function(){_.Ns(this)&&(_.Ls(this),this.Ca=-1,this.B("pause"))};_.g.Ey=function(){return this.progress};_.g.ma=function(){this.wd()||this.stop(!1);this.B("destroy");_.Ps.oa.ma.call(this)};_.g.destroy=function(){this.dispose()};_.g.xG=function(a){sfa(this,a)};
var sfa=function(a,b){b<a.startTime&&(a.endTime=b+a.endTime-a.startTime,a.startTime=b);a.progress=(b-a.startTime)/(a.endTime-a.startTime);1<a.progress&&(a.progress=1);tfa(a,a.progress);1==a.progress?(a.Ca=0,_.Ls(a),_.Os(a),a.Bh()):_.Ns(a)&&a.pA()},tfa=function(a,b){_.Hc(a.H)&&(b=a.H(b));a.coords=Array(a.D.length);for(var c=0;c<a.D.length;c++)a.coords[c]=(a.I[c]-a.D[c])*b+a.D[c]};_.Ps.prototype.pA=function(){this.B("animate")};_.Ps.prototype.B=function(a){this.dispatchEvent(new ufa(a,this))};
var ufa=function(a,b){_.Q.call(this,a);this.coords=b.coords;this.x=b.coords[0];this.y=b.coords[1];this.z=b.coords[2];this.duration=b.duration;this.progress=b.Ey();this.state=b.Ca};_.x(ufa,_.Q);
_.r.platform={};_.r.platform.wp=function(){if(_.r.ug){var a=/Windows NT ([0-9.]+)/;return(a=a.exec(_.r.vi()))?a[1]:"0"}return _.r.MAC?(a=/10[_.][0-9_.]+/,(a=a.exec(_.r.vi()))?a[0].replace(/_/g,"."):"10"):_.r.ANDROID?(a=/Android\s+([^\);]+)(\)|;)/,(a=a.exec(_.r.vi()))?a[1]:""):_.r.Uk||_.r.Tk||_.r.UI?(a=/(?:iPhone|CPU)\s+OS\s+(\S+)/,(a=a.exec(_.r.vi()))?a[1].replace(/_/g,"."):""):""};_.r.platform.VERSION=_.r.platform.wp();_.r.platform.qk=function(a){return 0<=Ud(_.r.platform.VERSION,a)};
_.r.product.wp=function(){if(_.r.product.Rg)return _.r.product.rn(/Firefox\/([0-9.]+)/);if(_.r.product.Ka||_.r.product.Te||_.r.product.Df)return _.r.VERSION;if(_.r.product.Xf)return df()?_.r.product.rn(/CriOS\/([0-9.]+)/):_.r.product.rn(/Chrome\/([0-9.]+)/);if(_.r.product.Qj&&!df())return _.r.product.rn(/Version\/([0-9.]+)/);if(_.r.product.Uk||_.r.product.Tk){var a=_.r.product.MD(/Version\/(\S+).*Mobile\/(\S+)/);if(a)return a[1]+"."+a[2]}else if(_.r.product.ANDROID)return(a=_.r.product.rn(/Android\s+([0-9.]+)/))?
a:_.r.product.rn(/Version\/([0-9.]+)/);return""};_.r.product.rn=function(a){return(a=_.r.product.MD(a))?a[1]:""};_.r.product.MD=function(a){return a.exec(_.r.vi())};_.r.product.VERSION=_.r.product.wp();_.r.product.qk=function(a){return 0<=Ud(_.r.product.VERSION,a)};
var vfa;_.Qs=function(a){var b=_.Xp(a);return b&&vfa()?-a.scrollLeft:!b||_.r.Mr&&_.r.Eb("8")||"visible"==_.Fp(a)?a.scrollLeft:a.scrollWidth-a.clientWidth-a.scrollLeft};_.Rs=function(a){var b=a.offsetLeft,c=a.offsetParent;c||"fixed"!=_.Ep(a)||(c=_.ej(a).documentElement);if(!c)return b;if(_.r.uc&&!_.r.Eb(58)){var d=_.Mp(c);b+=d.left}else _.r.xf(8)&&!_.r.xf(9)&&(d=_.Mp(c),b-=d.left);return _.Xp(c)?c.clientWidth-(b+a.offsetWidth):b};
_.Ss=function(a,b){b=Math.max(b,0);_.Xp(a)?vfa()?a.scrollLeft=-b:a.scrollLeft=_.r.Mr&&_.r.Eb("8")?b:a.scrollWidth-b-a.clientWidth:a.scrollLeft=b};vfa=function(){var a=_.r.product.Qj&&_.r.product.qk(10),b=_.r.Or&&_.r.platform.qk(10);return _.r.uc||a||b};_.Ts=function(a,b,c,d){null!==c&&(a.style.top=c+"px");d?(a.style.right=b+"px",a.style.left=""):(a.style.left=b+"px",a.style.right="")};
_.Us=function(a,b,c,d,e){_.Ps.call(this,b,c,d,e);this.element=a};_.x(_.Us,_.Ps);_.g=_.Us.prototype;_.g.Qk=_.Ec;_.g.ne=function(){void 0===this.Li&&(this.Li=_.Xp(this.element));return this.Li};_.g.pA=function(){this.Qk();_.Us.oa.pA.call(this)};_.g.Bh=function(){this.Qk();_.Us.oa.Bh.call(this)};_.g.Fj=function(){this.Qk();_.Us.oa.Fj.call(this)};_.Vs=function(a,b,c,d,e){if(2!=b.length||2!=c.length)throw Error("ka");_.Us.call(this,a,b,c,d,e)};_.x(_.Vs,_.Us);
_.Vs.prototype.Qk=function(){this.C?_.Ss(this.element,Math.round(this.coords[0])):this.element.scrollLeft=Math.round(this.coords[0]);this.element.scrollTop=Math.round(this.coords[1])};_.wfa=1/1024;
_.Ws=function(a){return 1-Math.pow(1-a,3)};
var xfa=function(a,b){return a&&b&&0<b.length?a.findIndex(function(c){return od(b[0],c)}):null};
var Afa,Ys;_.Xs={};_.yfa={};_.zfa={};Afa={};_.Bfa={};Ys=function(){throw Error("ma");};Ys.prototype.pl=null;Ys.prototype.getContent=function(){return this.content};Ys.prototype.toString=function(){return this.content};_.Zs=function(a){if(a.Bg!==_.Xs)throw Error("na");return _.ye(a.toString(),a.pl||null)};_.$s=function(){Ys.call(this)};_.x(_.$s,Ys);_.$s.prototype.Bg=_.Xs;var at=function(){Ys.call(this)};_.x(at,Ys);at.prototype.Bg={};at.prototype.pl=1;var bt=function(){Ys.call(this)};_.x(bt,Ys);
bt.prototype.Bg=Afa;bt.prototype.pl=1;var ct=function(){Ys.call(this)};_.x(ct,Ys);ct.prototype.Bg=_.Bfa;ct.prototype.pl=1;
_.dt=function(a,b){return null!=a&&a.Bg===b};
_.Cfa={"":1,n:Math.pow(1024,-3),u:Math.pow(1024,-2),m:1/1024,k:1024,K:1024,M:Math.pow(1024,2),G:Math.pow(1024,3),T:Math.pow(1024,4),P:Math.pow(1024,5),E:Math.pow(1024,6),Z:Math.pow(1024,7),Y:Math.pow(1024,8)};
var Dfa,jt,Gfa,Kfa,Qfa,ot,Rfa,Sfa,Mfa,Lfa,Pfa,Ofa,Hfa,Ifa,Jfa;_.et=function(a){if(null!=a)switch(a.pl){case 1:return 1;case -1:return-1;case 0:return 0}return null};_.ft=function(a){return _.dt(a,_.Xs)?a:a instanceof _.ve?(0,_.V)(_.xe(a),a.B()):(0,_.V)(_.Pe(String(String(a))),_.et(a))};_.V=function(a){function b(c){this.content=c}b.prototype=a.prototype;return function(c,d){c=new b(String(c));void 0!==d&&(c.pl=d);return c}}(_.$s);
Dfa=function(a){function b(c){this.content=c}b.prototype=a.prototype;return function(c){return new b(String(c))}}(bt);_.gt=function(a,b){for(var c in b)c in a||(a[c]=b[c]);return a};_.ht=function(a,b){return a&&b&&a.$R&&b.$R?a.Bg!==b.Bg?!1:a.toString()===b.toString():a instanceof Ys&&b instanceof Ys?a.Bg!=b.Bg?!1:a.toString()==b.toString():a==b};_.it=function(a){return a instanceof Ys?!!a.getContent():!!a};
jt=function(a){function b(c){this.content=c}b.prototype=a.prototype;return function(c){return(c=String(c))?new b(c):""}};_.kt=function(a){function b(c){this.content=c}b.prototype=a.prototype;return function(c,d){c=String(c);if(!c)return"";c=new b(c);void 0!==d&&(c.pl=d);return c}}(_.$s);_.Efa=jt(at);_.lt=jt(bt);_.Ffa=jt(ct);Gfa=/^<(?:area|base|br|col|command|embed|hr|img|input|keygen|link|meta|param|source|track|wbr)\b/;
_.nt=function(a,b){if(!b)return String(a).replace(Hfa,"").replace(Ifa,"<");a=String(a).replace(/\[/g,"[");var c=[],d=[];a=a.replace(Hfa,function(f,h){if(h&&(h=h.toLowerCase(),b.hasOwnProperty(h)&&b[h])){var k=c.length,l="</",n="";if("/"!=f.charAt(1)){l="<";for(var q;q=Jfa.exec(f);)if(q[1]&&"dir"==q[1].toLowerCase()){if(f=q[2]){if("'"==f.charAt(0)||'"'==f.charAt(0))f=f.substr(1,f.length-2);f=f.toLowerCase();if("ltr"==f||"rtl"==f||"auto"==f)n=' dir="'+f+'"'}break}Jfa.lastIndex=0}c[k]=l+h+">";
d[k]=n;return"["+k+"]"}return""});a=_.mt(a);var e=Kfa(c);a=a.replace(/\[(\d+)\]/g,function(f,h){return d[h]&&c[h]?c[h].substr(0,c[h].length-1)+d[h]+">":c[h]});return a+e};Kfa=function(a){for(var b=[],c=0,d=a.length;c<d;++c){var e=a[c];"/"==e.charAt(1)?(e=_.Rc(b,e),0>e?a[c]="":(a[c]=b.slice(e).reverse().join(""),b.length=e)):"<li>"==e&&0>_.Rc(b,"</ol>")&&0>_.Rc(b,"</ul>")?a[c]="":Gfa.test(e)||b.push("</"+e.substring(1))}return b.reverse().join("")};
_.W=function(a){return _.dt(a,_.Xs)?_.mt(_.nt(a.getContent())):_.Pe(String(a))};_.Nfa=function(a){return _.dt(a,_.Xs)?String(_.nt(a.getContent())).replace(Lfa,ot):String(a).replace(Mfa,ot)};_.pt=function(a){_.dt(a,Afa)?a=a.getContent().replace(/([^"'\s])$/,"$1 "):(a=String(a),a=Ofa.test(a)?a:"zSoyz");return a};
_.tt=function(a){_.dt(a,_.yfa)||_.dt(a,_.zfa)?a=_.qt(a):a instanceof _.Wd?a=_.qt(_.Xd(a)):a instanceof _.Ed?a=_.qt(_.Gd(a)):(a=String(a),a=Pfa.test(a)?a.replace(_.rt,_.st):"about:invalid#zSoyz");return a};Qfa={"\x00":"�","\t":"	","\n":" ","\x0B":"","\f":"","\r":" "," ":" ",'"':""","&":"&","'":"'","-":"-","/":"/","<":"<","=":"=",">":">","`":"`","\u0085":"…","\u00a0":" ","\u2028":"
","\u2029":"
"};ot=function(a){return Qfa[a]};
Rfa={"\x00":"%00","\u0001":"%01","\u0002":"%02","\u0003":"%03","\u0004":"%04","\u0005":"%05","\u0006":"%06","\u0007":"%07","\b":"%08","\t":"%09","\n":"%0A","\x0B":"%0B","\f":"%0C","\r":"%0D","\u000e":"%0E","\u000f":"%0F","\u0010":"%10","\u0011":"%11","\u0012":"%12","\u0013":"%13","\u0014":"%14","\u0015":"%15","\u0016":"%16","\u0017":"%17","\u0018":"%18","\u0019":"%19","\u001a":"%1A","\u001b":"%1B","\u001c":"%1C","\u001d":"%1D","\u001e":"%1E","\u001f":"%1F"," ":"%20",'"':"%22","'":"%27","(":"%28",
")":"%29","<":"%3C",">":"%3E","\\":"%5C","{":"%7B","}":"%7D","\u007f":"%7F","\u0085":"%C2%85","\u00a0":"%C2%A0","\u2028":"%E2%80%A8","\u2029":"%E2%80%A9","\uff01":"%EF%BC%81","\uff03":"%EF%BC%83","\uff04":"%EF%BC%84","\uff06":"%EF%BC%86","\uff07":"%EF%BC%87","\uff08":"%EF%BC%88","\uff09":"%EF%BC%89","\uff0a":"%EF%BC%8A","\uff0b":"%EF%BC%8B","\uff0c":"%EF%BC%8C","\uff0f":"%EF%BC%8F","\uff1a":"%EF%BC%9A","\uff1b":"%EF%BC%9B","\uff1d":"%EF%BC%9D","\uff1f":"%EF%BC%9F","\uff20":"%EF%BC%A0","\uff3b":"%EF%BC%BB",
"\uff3d":"%EF%BC%BD"};_.st=function(a){return Rfa[a]};Sfa=/[\x00\x22\x27\x3c\x3e]/g;Mfa=/[\x00\x09-\x0d \x22\x26\x27\x2d\/\x3c-\x3e`\x85\xa0\u2028\u2029]/g;Lfa=/[\x00\x09-\x0d \x22\x27\x2d\/\x3c-\x3e`\x85\xa0\u2028\u2029]/g;_.rt=/[\x00- \x22\x27-\x29\x3c\x3e\\\x7b\x7d\x7f\x85\xa0\u2028\u2029\uff01\uff03\uff04\uff06-\uff0c\uff0f\uff1a\uff1b\uff1d\uff1f\uff20\uff3b\uff3d]/g;Pfa=/^(?![^#?]*\/(?:\.|%2E){2}(?:[\/?#]|$))(?:(?:https?|mailto):|[^&:\/?#]*(?:[\/?#]|$))/i;Ofa=/^(?!on|src|(?:action|archive|background|cite|classid|codebase|content|data|dsync|href|http-equiv|longdesc|style|usemap)\s*$)(?:[a-z0-9_$:-]*)$/i;
_.mt=function(a){return String(a).replace(Sfa,ot)};_.qt=function(a){return String(a).replace(_.rt,_.st)};Hfa=/<(?:!|\/?([a-zA-Z][a-zA-Z0-9:\-]*))(?:[^>'"]|"[^"]*"|'[^']*')*>/g;Ifa=/</g;Jfa=/([a-zA-Z][a-zA-Z0-9:\-]*)[\t\n\r\u0020]*=[\t\n\r\u0020]*("[^"]*"|'[^']*')/g;
var Tfa;_.vt=function(a,b,c,d){b=_.ut(b(c||Tfa,d));_.Ge(a,b)};_.wt=function(a,b,c,d){a=a(b||Tfa,c);d=_.Vj(d||_.fj(),"DIV");a=_.ut(a);_.Ge(d,a);1==d.childNodes.length&&(a=d.firstChild,1==a.nodeType&&(d=a));return d};_.ut=function(a){return _.ua(a)?a instanceof Ys?_.Zs(a):_.ze("zSoyz"):_.ze(String(a))};Tfa={};
_.Ufa=function(){var a={};var b=a.xY,c=a.viewBox,d=a.pb;a=a.attributes;return(0,_.V)('<svg width="'+_.W(null!=b?b:24)+'" height="'+_.W(null!=b?b:24)+'" viewBox="'+_.W(null!=c?c:"0 0 24 24")+'" focusable="false" class="'+_.W(null!=d?d:"")+" "+_.W("NMm5M")+'" '+_.pt(null!=a?a:"")+'><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg>')};
var Vfa=function(){return"Show sidebar"},Wfa=function(){return"Close sidebar"};
var Xfa=_.Am("zQF9Uc");
var Yfa,Zfa,$fa,aga,bga,cga,dga,ega;Yfa=_.Am("HKFH4b");Zfa=_.Am("K2hBSd");$fa=_.Am("FaOgy");aga=_.Am("VbOlFf");bga=_.Am("nj5sib");_.xt=_.Am("MxH79b");cga=_.Am("vbaUQc");dga=_.Am("YBArc");ega=_.Am("ENwXw");_.fga=_.Am("RjJzoc");
var yt=_.Wo("LLHPdb");
_.zt=function(a){_.qo.call(this,a.Da);var b=this;this.B=null;_.ro(this,_.Mk(document.querySelector("div.yiSNwd")||_.oj(document)).then(function(c){b.B=c}))};_.v(_.zt,_.qo);_.zt.va=function(){return{}};_.Jq(yt,_.zt);
var At;_.Bt=function(a,b){_.so(b);a&&(_.rb.Ia().register(a,b),b.create=function(c,d,e){var f=new At(c,d,e,b);return uo(c,b,f).Ja(function(h){for(var k=_.u(f.B.keys()),l=k.next();!l.done;l=k.next())l=l.value,h.HH(l,f.B.get(l));return h})})};At=function(a,b,c,d){vo.call(this,a,c,d);this.fa=b;this.C=null;this.B=new Map};_.v(At,vo);_.g=At.prototype;_.g.getContext=function(a){return xo(this.fa,a)};_.g.getData=function(a){this.C||(this.C=new _.eq(this.fa));return this.C.getData(a)};
_.g.HH=function(a,b){this.B.set(a,b)};_.g.Rd=function(a){var b=this;return _.fp(this.fa,a,this.Ze(),this.key).$b(function(c){c instanceof ep&&(c.message+=" requested by "+b);return c})};_.g.Fy=function(){return this.fa};_.g.getId=function(){return this.key+"["+_.va(this.fa)+"]"};
var Ct=_.Wo("iTeaXe",[yt]);
_.Dt=function(a){_.Fq.call(this,a.Da);this.L=a.service.jr;this.I=null;this.J=new Cs(this.R,25,this);this.D=null;this.C={};this.F=0;this.B=null};_.v(_.Dt,_.Fq);_.Dt.va=function(){return{service:{jr:_.zt}}};var gga=function(a,b,c){a.C.scrollTop=void 0;c?a.J.If():(Et(a,b),b=Ft(a),c="none",b>a.F?c="down":b<a.F&&(c="up"),a.F=b,null==a.D?a.notify(Yfa):a.D.cancel(),a.D=_.lo(1E3).then(function(){a.notify(Zfa);a.D=null}),a.notify($fa,c))};_.Dt.prototype.R=function(){this.notify(aga)};
_.Dt.prototype.im=function(a){this.C={};Et(this,a);this.notify(bga)};_.Dt.prototype.CA=function(a){this.C={};Et(this,a);this.notify(_.xt)};var Et=function(a,b){_.za(a.I,b,od)||(a.I=b,a.notify(ega,b))};_.Dt.prototype.scrollTo=function(a,b,c){this.notify(cga,{B:a,C:b||"totop",callback:c})};var hga=function(a,b){a.B=b;a.notify(dga)},Ft=function(a){void 0===a.C.scrollTop&&(a.C.scrollTop=a.L.B.scrollTop);return a.C.scrollTop||0};_.Bt(Ct,_.Dt);
var Gt=_.Wo("XVMNvd",[_.rs]);Yo(Gt,"doKs4c");
var iga=_.Xo("doKs4c",Gt);
_.Gm(iga);
var jga;_.Ht=function(a){_.R.call(this);this.C=a||window;this.D=_.Wn(this.C,"resize",this.F,!1,this);this.B=_.Ai(this.C)};_.x(_.Ht,_.R);_.It=function(a){a=a||window;var b=_.va(a);return jga[b]=jga[b]||new _.Ht(a)};jga={};_.Ht.prototype.ma=function(){_.Ht.oa.ma.call(this);this.D&&(_.co(this.D),this.D=null);this.B=this.C=null};_.Ht.prototype.F=function(){var a=_.Ai(this.C);_.zi(a,this.B)||(this.B=a,this.dispatchEvent("resize"))};
var kga;_.lga=function(){return!kga()&&(pe("iPod")||pe("iPhone")||pe("Android")||pe("IEMobile"))};kga=function(){return pe("iPad")||pe("Android")&&!pe("Mobile")||pe("Silk")};_.Jt=function(){return!_.lga()&&!kga()};
var Mt=function(a){_.qo.call(this,a.Da);this.window=a.service.window;this.D=new _.ap(this);this.ha(this.D);this.la=_.It(this.window.get());this.H=!1;this.S=mga();var b=_.Jt(),c=!!this.window.get().VisualViewport,d=df();this.J=d&&se()&&!navigator.userAgent.includes("GSA");this.ea=!b&&(d?!this.J:!c);this.F=this.B=Kt(this);this.R=new _.eq(this.window.B.document.body);this.C=_.Aq(a.Id.page);this.C.getData("hasHeader").wb(!1)?Lt("kO001e",this,!1):new _.Ik(function(e){e(new _.cq([]))});this.C.getData("hasFooter").wb(!1)?
Lt("ZCHFDb",this,!1):new _.Ik(function(e){e(new _.cq([]))});this.V="BODY"==this.C.el().tagName.toUpperCase();this.aa=_.Ha(_.Ia(this).Wa(this.pZ));this.I=_.Ha(_.Ia(this).measure(this.EK));this.D.listen(this.la,"resize",this.xA);this.D.listen(this.window.get(),"orientationchange",this.xA);this.D.listen(this.window.get(),"scroll",(0,_.p)(this.oK,this));this.L=!1;this.I();this.X=window.location!=window.parent.location};_.v(Mt,_.qo);
Mt.va=function(){return{service:{window:_.rs},Id:{page:function(){return Lt("yDmH0d",this,!0)}}}};var Lt=function(a,b,c){return _.An(b,{service:{window:_.rs}}).then(function(d){var e=d.service.window;return(d=e.B.document.getElementById(a))?_.Mk(new _.eq(d)):new _.Ik(function(f,h){var k=function(){var l=e.B.document.getElementById(a);l?f(new _.eq(l)):"complete"==e.B.document.readyState?c?h(Error("pa`"+a)):f(new _.cq([])):_.S(k,50)};_.S(k)})})};_.g=Mt.prototype;_.g.xA=function(){this.I()};
_.g.oK=function(a){this.B.height!=Kt(this).height&&this.xA(a)};
_.g.EK=function(){var a=Kt(this),b=a.width,c=a.height,d=b-this.B.width,e=c-this.B.height,f=this.H;this.S&&(1>Math.abs(d)&&0>e&&200<=Math.abs(e)&&500>=Math.abs(e)?(f=!0,c=Math.max(c,this.B.height)):1>Math.abs(e)&&0>d&&200<=Math.abs(d)&&500>=Math.abs(d)&&(f=!0,b=Math.max(b,this.B.width)),f&&(b>this.B.width&&this.B.width<this.B.height?c=Math.max(c,this.B.width):b<this.B.width&&this.B.width>this.B.height?c=Math.max(c,this.B.width):200>Math.abs(e)&&200>Math.abs(d)&&(f=!1)));b=new _.Mh(b,c);if(c=!_.zi(b,
this.B)||!_.zi(a,this.F))this.B=b,this.F=a.clone();this.H!=f&&(this.H=f);if(c||!this.L)this.L=!0,this.aa()};_.g.pZ=function(){if(!this.V&&!this.X){var a=this.B;this.C.Oa({width:(a.width||0)+"px",height:(a.height||0)+"px"})}_.mq(this.R,"EIlDfe");a=this.C;var b=this.B.clone(),c=this.F.clone(),d=this.B;this.notify(_.vca,{viewportElement:a,size:b,M7:c,u6:d.width>d.height})};_.g.notify=function(a,b,c){_.No(c||this.R.el(),a,b,this)};
var Kt=function(a){var b=a.window.get();return a.J?(a=_.Ai(b),new _.Mh(a.width,Math.round(a.width*b.innerHeight/b.innerWidth))):a.ea?_.Ai(b):new _.Mh(b.innerWidth,b.innerHeight)},mga=function(){var a=navigator.userAgent;return/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile/i.test(a)&&!/WebViewInline/i.test(a)};_.Jq(Gt,Mt);
var nga=_.Wo("pc62j",[Ct,yt,Gt,_.rs]);
var Nt=function(a){_.Kq.call(this,a.Da);var b=this;this.Zc=a.model.Jm;this.B=a.service.jr.B;this.H=a.service.window.get();this.R=a.service.window.B.document.body;this.J=!1;this.L=null;this.X=_.Ha(_.Ia(this).measure(function(c){c.scrollTop=Ft(b.Zc)}).Wa(function(c){b.L.Oa("transform","translate3d(0, "+c.scrollTop/2+"px, 0)")}));this.C=this.D=this.I=!1;this.F=_.fd(this.V,oga,this)};_.v(Nt,_.Kq);Nt.va=function(){return{model:{Jm:_.Dt},service:{jr:_.zt,viewport:Mt,window:_.rs}}};
Nt.prototype.ad=function(){var a=_.Oq(this);if(0<this.Wb("PyM19e").size())a.listen(this.O("ciYGJe").el(),"scroll",this.F);else{a.listen(this.H,"scroll",this.F);var b=_.gq(this.ca(),"LQX2Vd");0<b.size()&&(this.J=!0,this.L=b.Nd(),a.listen(this.H,"wheel",this.F))}pga(this);a.listen(document.body,"mousedown",this.pT,!0);a.listen(document.body,"mouseup",this.qT,!0);a.listen(document.body,"keydown",this.hm,!0);a.listen(document.body,"keyup",this.oT,!0);a.listen(document.body,"keypress",this.nT,!0);_.r.Ka?
(a.listen(document.body,"focusin",this.vo),a.listen(document.body,"focusout",this.yG)):(a.listen(document.body,"focus",this.vo,!0),a.listen(document.body,"blur",this.yG,!0));if(a=(new _.xr(this.H.location.href)).I)a.startsWith("h.")&&_.No(this.R,Xfa,{id:a}),this.Zc.scrollTo({Ns:a.replace("e=","")})};
var pga=function(a){var b=_.Oq(a),c=a.Wb("UzWXSb");if(0<c.size()){var d=_.sj("IFRAME",{style:"position:absolute; width:0; height:100%;top:0; margin:0; padding:0; border:0",tabIndex:"-1"});d.onload=function(){b.listen(d.contentWindow,"resize",a.S)};wj(c.Nd().el(),d)}};Nt.prototype.V=function(){this.J&&this.X();var a=this.C?null:Ot(this,this.Zc.B);gga(this.Zc,a,this.C)};Nt.prototype.JW=function(){this.Zc.CA(Ot(this,this.Zc.B))};Nt.prototype.S=function(){this.Zc.im(Ot(this,this.Zc.B))};
var qga=function(a,b){if(b.element)return b.element;if(b.Ns)return _.gj(document,b.Ns);a=a.ca().find('[data-id="'+b.v5+'"]');return 0<a.size()?a.el():null};
Nt.prototype.scrollTo=function(a){var b=this,c=a.data.B,d=a.data.callback,e=0;if(c){var f=qga(this,c);if(null==f)return;var h=_.Pp(f);f=_.Up(f);var k=_.Lp(this.B),l=_.Up(this.B);h=h.y;k=k.y;l=k+l.height;var n=h;"number"===typeof c.hX&&(n=h+c.hX*f.height);switch(a.data.C){case "totop":e=n-(k+80);break;case "minimal":n<k&&(e=n-(k+80)),n>l-20&&(e=n-(l-80))}}else e=-this.B.scrollTop;a=Math.min(this.B.scrollHeight-this.B.clientHeight,Math.max(0,this.B.scrollTop+e));c=Math.abs(a-this.B.scrollTop);30>c?
(this.B.scrollTop=a,d&&d()):(c=Math.min(1E3,c),c=Math.max(200,c),a=new _.Vs(this.B,[this.B.scrollLeft,this.B.scrollTop],[this.B.scrollLeft,a],c,_.Ws),_.Oq(this).hb(a,"finish",function(){d&&d();gga(b.Zc,Ot(b,b.Zc.B),!1);_.S(function(){b.C=!1},50)}),a.play(),this.C=!0)};Nt.prototype.zW=function(){Et(this.Zc,Ot(this,this.Zc.B))};
var Ot=function(a,b){var c=void 0===c?.2:c;if(!b||0==b.length)return b;var d,e;b=_.Tc(b,function(f){var h=qga(a,f);if(h){var k=_.Qp(h,a.B).y;h=k+h.clientHeight;a.B==_.oj(document)&&(k-=a.B.scrollTop,h-=a.B.scrollTop);var l=a.B.clientHeight;if(k<l&&0<h&&(h>l&&0>k||h<=l&&0<=k||0<=k&&(l-k)/l>=c||h<=l&&h/l>=c))return!0;k<l&&(!e||d<h)&&(e=f,d=h)}return!1});0==b.length&&e&&b.push(e);return b};_.g=Nt.prototype;_.g.pT=function(){this.I=!0};_.g.qT=function(){this.I=!1};_.g.hm=function(){this.D=!0};
_.g.nT=function(a){_.r.product.Rg&&88==a.charCode&&a.shiftKey&&(a.ctrlKey||a.metaKey)&&a.preventDefault()};_.g.oT=function(){this.D=!1};_.g.vo=function(a){a=a.target;this.I||!this.D||a instanceof SVGElement||_.kp(a,"chg4Jd")};_.g.yG=function(a){a=a.target;a instanceof SVGElement||_.mp(a,"chg4Jd")};_.U(Nt.prototype,"dj7Cne",function(){return this.zW});_.U(Nt.prototype,"uAM5ec",function(){return this.scrollTo});_.U(Nt.prototype,"og1FDd",function(){return this.JW});_.U(Nt.prototype,"WYd",function(){return this.ad});
var oga=1E3/60;_.Vr(nga,Nt);
var rga;_.Pt=function(a){return(new rga).ob(a)};rga=function(){};rga.prototype.ob=function(a){var b=[];Qt(this,a,b);return b.join("")};
var Qt=function(a,b,c){if(null==b)c.push("null");else{if("object"==typeof b){if(Array.isArray(b)){var d=b;b=d.length;c.push("[");for(var e="",f=0;f<b;f++)c.push(e),Qt(a,d[f],c),e=",";c.push("]");return}if(b instanceof String||b instanceof Number||b instanceof Boolean)b=b.valueOf();else{c.push("{");e="";for(d in b)Object.prototype.hasOwnProperty.call(b,d)&&(f=b[d],"function"!=typeof f&&(c.push(e),sga(d,c),c.push(":"),Qt(a,f,c),e=","));c.push("}");return}}switch(typeof b){case "string":sga(b,c);break;
case "number":c.push(isFinite(b)&&!isNaN(b)?String(b):"null");break;case "boolean":c.push(String(b));break;case "function":c.push("null");break;default:throw Error("ra`"+typeof b);}}},tga={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\u000b"},uga=/\uffff/.test("\uffff")?/[\\"\x00-\x1f\x7f-\uffff]/g:/[\\"\x00-\x1f\x7f-\xff]/g,sga=function(a,b){b.push('"',a.replace(uga,function(c){var d=tga[c];d||(d="\\u"+(c.charCodeAt(0)|65536).toString(16).substr(1),
tga[c]=d);return d}),'"')};
var Rt=function(a){_.O.call(this);this.C=a};_.x(Rt,_.O);Rt.prototype.B=function(a){return vga(this,a)};
var St=function(a,b){return(b?"__wrapper_":"__protected_")+_.va(a)+"__"},vga=function(a,b){var c=St(a,!0);b[c]||((b[c]=wga(a,b))[St(a,!1)]=b);return b[c]},wga=function(a,b){var c=function(){if(a.isDisposed())return b.apply(this,arguments);try{return b.apply(this,arguments)}catch(e){var d=e;if(!(d&&"object"===typeof d&&"string"===typeof d.message&&0==d.message.indexOf("Error in protected function: ")||"string"===typeof d&&0==d.indexOf("Error in protected function: ")))throw a.C(d),new xga(d);}finally{}};
c[St(a,!1)]=b;return c},Tt=function(a,b){var c=_.t.window,d=c[b];c[b]=function(e,f){"string"===typeof e&&(e=_.Jc(Gaa,e));arguments[0]=e=vga(a,e);if(d.apply)return d.apply(this,arguments);var h=e;if(2<arguments.length){var k=Array.prototype.slice.call(arguments,2);h=function(){e.apply(this,k)}}return d(h,f)};c[b][St(a,!1)]=d};Rt.prototype.ma=function(){var a=_.t.window;var b=a.setTimeout;b=b[St(this,!1)]||b;a.setTimeout=b;b=a.setInterval;b=b[St(this,!1)]||b;a.setInterval=b;Rt.oa.ma.call(this)};
var xga=function(a){_.Oc.call(this,"Error in protected function: "+(a&&a.message?String(a.message):String(a)));(a=(this.cause=a)&&a.stack)&&"string"===typeof a&&(this.stack=a)};_.x(xga,_.Oc);
var Ut=function(a){switch(a){case 200:case 201:case 202:case 204:case 206:case 304:case 1223:return!0;default:return!1}};
var Vt=function(){};Vt.prototype.B=null;Vt.prototype.getOptions=function(){var a;(a=this.B)||(a={},yga(this)&&(a[0]=!0,a[1]=!0),a=this.B=a);return a};
var Wt,zga=function(){};_.x(zga,Vt);var Xt=function(a){return(a=yga(a))?new ActiveXObject(a):new XMLHttpRequest},yga=function(a){if(!a.C&&"undefined"==typeof XMLHttpRequest&&"undefined"!=typeof ActiveXObject){for(var b=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],c=0;c<b.length;c++){var d=b[c];try{return new ActiveXObject(d),a.C=d}catch(e){}}throw Error("sa");}return a.C};Wt=new zga;
var Aga,Bga,Cga;_.Yt=function(a){_.R.call(this);this.headers=new _.Tm;this.V=a||null;this.tb=!1;this.S=this.B=null;this.L="";this.C=0;this.H="";this.F=this.ea=this.J=this.aa=!1;this.I=0;this.R=null;this.D="";this.qa=this.Bn=!1};_.x(_.Yt,_.R);Aga=/^https?$/i;Bga=["POST","PUT"];Cga=[];_.Zt=function(a,b,c,d,e,f,h){var k=new _.Yt;Cga.push(k);b&&k.listen("complete",b);k.hb("ready",k.za);f&&(k.I=Math.max(0,f));h&&(k.Bn=h);k.send(a,c,d,e)};_.Yt.prototype.za=function(){this.dispose();_.na(Cga,this)};
_.Yt.prototype.send=function(a,b,c,d){if(this.B)throw Error("ta`"+this.L+"`"+a);b=b?b.toUpperCase():"GET";this.L=a;this.H="";this.C=0;this.aa=!1;this.tb=!0;this.B=this.X();this.S=this.V?this.V.getOptions():Wt.getOptions();this.B.onreadystatechange=(0,_.p)(this.xa,this);try{this.ea=!0,this.B.open(b,String(a),!0),this.ea=!1}catch(f){Dga(this,f);return}a=c||"";var e=this.headers.clone();d&&Oda(d,function(f,h){e.set(h,f)});d=_.ea(e.Fc(),Ega);c=_.t.FormData&&a instanceof _.t.FormData;!_.ia(Bga,b)||d||
c||e.set("Content-Type","application/x-www-form-urlencoded;charset=utf-8");e.forEach(function(f,h){this.B.setRequestHeader(h,f)},this);this.D&&(this.B.responseType=this.D);"withCredentials"in this.B&&this.B.withCredentials!==this.Bn&&(this.B.withCredentials=this.Bn);try{Fga(this),0<this.I&&((this.qa=Gga(this.B))?(this.B.timeout=this.I,this.B.ontimeout=(0,_.p)(this.Zd,this)):this.R=_.S(this.Zd,this.I,this)),this.J=!0,this.B.send(a),this.J=!1}catch(f){Dga(this,f)}};
var Gga=function(a){return _.r.Ka&&_.r.Eb(9)&&"number"===typeof a.timeout&&void 0!==a.ontimeout},Ega=function(a){return"content-type"==a.toLowerCase()};_.Yt.prototype.X=function(){return this.V?Xt(this.V):Xt(Wt)};_.Yt.prototype.Zd=function(){"undefined"!=typeof zc&&this.B&&(this.H="Timed out after "+this.I+"ms, aborting",this.C=8,this.dispatchEvent("timeout"),this.abort(8))};
var Dga=function(a,b){a.tb=!1;a.B&&(a.F=!0,a.B.abort(),a.F=!1);a.H=b;a.C=5;Hga(a);$t(a)},Hga=function(a){a.aa||(a.aa=!0,a.dispatchEvent("complete"),a.dispatchEvent("error"))};_.Yt.prototype.abort=function(a){this.B&&this.tb&&(this.tb=!1,this.F=!0,this.B.abort(),this.F=!1,this.C=a||7,this.dispatchEvent("complete"),this.dispatchEvent("abort"),$t(this))};_.Yt.prototype.ma=function(){this.B&&(this.tb&&(this.tb=!1,this.F=!0,this.B.abort(),this.F=!1),$t(this,!0));_.Yt.oa.ma.call(this)};
_.Yt.prototype.xa=function(){this.isDisposed()||(this.ea||this.J||this.F?Iga(this):this.la())};_.Yt.prototype.la=function(){Iga(this)};
var Iga=function(a){if(a.tb&&"undefined"!=typeof zc&&(!a.S[1]||4!=au(a)||2!=a.qc()))if(a.J&&4==au(a))_.S(a.xa,0,a);else if(a.dispatchEvent("readystatechange"),4==au(a)){a.tb=!1;try{if(a.vj())a.dispatchEvent("complete"),a.dispatchEvent("success");else{a.C=6;try{var b=2<au(a)?a.B.statusText:""}catch(c){b=""}a.H=b+" ["+a.qc()+"]";Hga(a)}}finally{$t(a)}}},$t=function(a,b){if(a.B){Fga(a);var c=a.B,d=a.S[0]?_.Ec:null;a.B=null;a.S=null;b||a.dispatchEvent("ready");try{c.onreadystatechange=d}catch(e){}}},
Fga=function(a){a.B&&a.qa&&(a.B.ontimeout=null);a.R&&(_.ko(a.R),a.R=null)};_.Yt.prototype.Mb=function(){return!!this.B};_.Yt.prototype.vj=function(){var a=this.qc(),b;if(!(b=Ut(a))){if(a=0===a)a=Rda(String(this.L)),a=!Aga.test(a);b=a}return b};var au=function(a){return a.B?a.B.readyState:0};_.Yt.prototype.qc=function(){try{return 2<au(this)?this.B.status:-1}catch(a){return-1}};_.Yt.prototype.Sd=function(){try{return this.B?this.B.responseText:""}catch(a){return""}};
_.Jga=function(a){try{if(!a.B)return null;if("response"in a.B)return a.B.response;switch(a.D){case "":case "text":return a.B.responseText;case "arraybuffer":if("mozResponseArrayBuffer"in a.B)return a.B.mozResponseArrayBuffer}return null}catch(b){return null}};_.Kga=function(a,b){if(a.B&&4==au(a))return a=a.B.getResponseHeader(b),null===a?void 0:a};_.Yt.prototype.getAllResponseHeaders=function(){return this.B&&4==au(this)?this.B.getAllResponseHeaders()||"":""};wk(function(a){_.Yt.prototype.la=a(_.Yt.prototype.la)});
var bu=function(a,b,c){_.R.call(this);this.F=b||null;this.D={};this.H=Lga;this.J=a;if(!c)if(this.B=null,_.r.Ka&&!_.r.Eb("10"))Uba((0,_.p)(this.C,this));else{this.B=new Rt((0,_.p)(this.C,this));Tt(this.B,"setTimeout");Tt(this.B,"setInterval");a=this.B;b=_.t.window;c=["requestAnimationFrame","mozRequestAnimationFrame","webkitAnimationFrame","msRequestAnimationFrame"];for(var d=0;d<c.length;d++){var e=c[d];c[d]in b&&Tt(a,e)}a=this.B;vk=!0;b=(0,_.p)(a.B,a);for(c=0;c<tk.length;c++)tk[c](b);uk.push(a)}};
_.x(bu,_.R);var Mga=function(a,b){_.Q.call(this,"a");this.error=a;this.context=b};_.x(Mga,_.Q);var Nga=function(a,b){return new bu(a,b,void 0)},Lga=function(a,b,c,d){_.Zt(a,null,b,c,d)},Oga=function(a,b){a.H=b};
bu.prototype.C=function(a,b){a=a.error||a;b=b?_.pd(b):{};a instanceof Error&&_.rd(b,a.__closure__error__context__984382||{});a=Vba(a);if(this.F)try{this.F(a,b)}catch(k){}var c=a.message.substring(0,1900),d=a.stack;try{var e=_.qr(this.J,"script",a.fileName,"error",c,"line",a.lineNumber);_.md(this.D)||(e=_.rr(e,this.D));c={};c.trace=d;if(b)for(var f in b)c["context."+f]=b[f];var h=_.pr(c);this.H(e,"POST",h,this.I)}catch(k){}try{this.dispatchEvent(new Mga(a,b))}catch(k){}};
bu.prototype.ma=function(){_.Ym(this.B);bu.oa.ma.call(this)};
var Pga=function(){this.B=function(){var a=_.t.window;a.onbeforeunload=_.Ec;a.location.reload()}};Pga.prototype.notify=function(){window.confirm("This error has been reported to Google and we'll look into it as soon as possible. Please reload this page to continue.")&&this.B()};
var cu=function(a){_.Oc.call(this,a)};_.v(cu,_.Oc);
_.du={s:function(a,b,c){return isNaN(c)||""==c||a.length>=Number(c)?a:a=-1<b.indexOf("-",0)?a+(0,_.Se)(" ",Number(c)-a.length):(0,_.Se)(" ",Number(c)-a.length)+a},f:function(a,b,c,d,e){d=a.toString();isNaN(e)||""==e||(d=parseFloat(a).toFixed(e));var f=0>Number(a)?"-":0<=b.indexOf("+")?"+":0<=b.indexOf(" ")?" ":"";0<=Number(a)&&(d=f+d);if(isNaN(c)||d.length>=Number(c))return d;d=isNaN(e)?Math.abs(Number(a)).toString():Math.abs(Number(a)).toFixed(e);a=Number(c)-d.length-f.length;return d=0<=b.indexOf("-",
0)?f+d+(0,_.Se)(" ",a):f+(0,_.Se)(0<=b.indexOf("0",0)?"0":" ",a)+d},d:function(a,b,c,d,e,f,h,k){return _.du.f(parseInt(a,10),b,c,d,0,f,h,k)}};_.du.i=_.du.d;_.du.u=_.du.d;
var Qga=function(){this.C=0;this.B=[]};_.g=Qga.prototype;_.g.add=function(a){var b=this.B[this.C];this.B[this.C]=a;this.C=(this.C+1)%50;return b};_.g.get=function(a){a=Rga(this,a);return this.B[a]};_.g.set=function(a,b){a=Rga(this,a);this.B[a]=b};_.g.Ub=function(){return this.B.length};_.g.Dc=function(){return 0==this.B.length};_.g.clear=function(){this.C=this.B.length=0};_.g.Pc=function(){var a=this.Ub(),b=this.Ub(),c=[];for(a=this.Ub()-a;a<b;a++)c.push(this.get(a));return c};
_.g.Fc=function(){for(var a=[],b=this.Ub(),c=0;c<b;c++)a[c]=c;return a};_.g.dj=function(a){for(var b=this.Ub(),c=0;c<b;c++)if(this.get(c)==a)return!0;return!1};var Sga=function(a){return 0==a.Ub()?null:a.get(a.Ub()-1)},Rga=function(a,b){if(b>=a.B.length)throw Error("wa");return 50>a.B.length?b:(a.C+Number(b))%50};
var Tga=function(a){this.D=a;this.C=Math.floor(a/50);this.B=new Qga};Tga.prototype.get=function(a){return Uga(this,a,function(b,c){return b+c.count})};var Uga=function(a,b,c){b=b||(0,_.Kc)();Vga(a,b);var d=0;b=a.C*(Math.floor(b/a.C)+1)-a.D;for(var e=a.B.Ub()-1;0<=e;--e){var f=a.B.get(e);if(f.end<=b)break;d=c(d,f)}return d},Vga=function(a,b){var c=Sga(a.B);c&&b<c.end-a.C&&a.B.clear()},eu=function(a){this.end=a};eu.prototype.count=0;eu.prototype.min=Number.MAX_VALUE;eu.prototype.max=Number.MIN_VALUE;
var Wga=function(a,b,c){_.O.call(this);this.D=a;this.C=b;this.B=new Tga(1E3*c)};_.v(Wga,_.O);var fu=function(a,b){b=null!=b?b:1;return(a.B.get()+b)/(a.B.D/1E3)<=a.C},gu=function(a,b){b=null!=b?b:1;if(!fu(a,b))throw new cu(_.We("Query would cause ",a.D," to exceed ",a.C," qps."));a=a.B;var c=(0,_.Kc)();Vga(a,c);var d=Sga(a.B);if(!d||c>=d.end)d=new eu(a.C*(Math.floor(c/a.C)+1)),a.B.add(d);d.count+=b;d.min=Math.min(b,d.min);d.max=Math.max(b,d.max)};
var hu=function(a,b){_.O.call(this);this.B=a;this.D=new _.Bs(this.H,3E4,this);this.R=new Wga("errorsender",1,8);this.ha(this.R);this.L=!1;this.F=null;this.J=new Set;this.I=new _.ap(this);this.V=b||10;this.I.listen(this.B,"complete",this.S);this.I.listen(this.B,"ready",this.H)};_.v(hu,_.O);hu.prototype.send=function(a,b,c,d){var e=_.ol(this.C.length).Ja(function(f){if(!(f>=this.V))return f={},f.u=a,f.m=b,f.c=c,f.h=d,this.enqueue(f)},this).Ja(this.H,this);il(e,function(){this.J.delete(e)},this);this.J.add(e)};
hu.prototype.H=function(){return this.D.Mb()||this.B.Mb()||this.L?_.ol():Xga(this)};var Xga=function(a){return _.ol(void 0!==a.C[0]?a.C[0]:null).Ja(function(b){if(!(this.B.Mb()||this.D.Mb()||this.L)&&b){if(4E3<b.u.length)return Yga(this);try{return gu(this.R,1),this.F=new _.cl,this.B.send(b.u,b.m,b.c,b.h),this.F}catch(c){if(c instanceof cu)this.L=!0;else throw Mm(c,{"docs-origin-class":"docs.debug.ErrorSender"});}}},a)};
hu.prototype.S=function(){var a=this.B.qc(),b=this.F;this.B.vj()||400<=a&&500>=a?Yga(this).Ja(function(){b.callback()}):(this.D.start(),b.callback())};hu.prototype.ma=function(){_.$m(this.I,this.D,this.B);this.J.clear();_.O.prototype.ma.call(this)};
var iu=function(a,b){hu.call(this,a,b);this.C=[]};_.v(iu,hu);iu.prototype.enqueue=function(a){this.C.push(a);return _.ol()};var Yga=function(a){a.C.shift();return _.ol()};iu.prototype.ma=function(){delete this.C;hu.prototype.ma.call(this)};
var ku=function(a){a=void 0===a?new Zga:a;_.R.call(this);this.F={};this.B=null;this.V={};this.R=new _.ap(this);this.aa=a.C;this.X=a.F;this.I=new Pga;var b=new _.Yt;this.H=new iu(b,void 0);this.ha(this.H);b=a.B?a.B:_.fk(_.th(),"docs-sup")+_.fk(_.th(),"docs-jepp")+"/jserror";var c=_.fk(_.th(),"jobset");c&&(b=_.qr(b,"jobset",c));if(ju)throw Error("xa");ju=!0;this.B=Nga(b,(0,_.p)(this.mX,this));this.B.I={};Oga(this.B,(0,_.p)(this.bY,this));this.R.listen(this.B,"a",this.lP);bl=function(d){return $ga(d,
"promise rejection")};hl=function(d){$ga(d,"deferred error")};this.L=a.D;this.D=!1;this.J=!0;this.C=!1;this.S=_.fk(_.th(),"docs-jern")};_.v(ku,_.R);var lu=function(a,b,c){a.F[b]=c};ku.prototype.info=function(a,b,c){this.C=void 0===c?!1:c;this.B&&this.B.C(a,mu("incident",b))};ku.prototype.log=function(a,b,c){this.C=void 0===c?!1:c;this.B&&this.B.C(a,mu("incident",b))};
var $ga=function(a,b){if(null!=a){if(a instanceof ErrorEvent||a&&"object"===typeof a&&"error"===a.type){var c=a.error;a=JSON.stringify({error:c&&c.message?c.message:"Missing error cause.",stack:c&&c.stack?c.stack:"Missing error cause.",message:a.message,filename:a.filename,lineno:a.lineno,colno:a.colno,type:a.type});b=Error("ya`"+b+"`"+a)}else b="string"===typeof a?Error("za`"+b+"`"+a):null==a?Error("Aa`"+b):a;_.xk(b)}},mu=function(a,b){b=b?_.pd(b):{};b.severity=a;return b};_.g=ku.prototype;
_.g.lP=function(a){var b=a.context.severity;(b="fatal"==b||"postmortem"==b)&&!this.X&&(this.aa?this.I.notify(a):this.I.notify());this.dispatchEvent(new aha(b?"b":"c",a.error,a.context))};_.g.mX=function(a,b){var c=this.D;try{this.TG(a,b)}catch(d){throw c&&!this.L&&(this.J=!1),this.D=!0,b.provideLogDataError=d.message,b.severity||(b.severity="fatal"),Mm(d);}};
_.g.TG=function(a,b){for(var c in this.F)try{b[c]=this.F[c](a)}catch(e){}_.rd(b,this.V);c=b.severity||"fatal";this.S&&(b.reportName=this.S+"_"+c);b.isArrayPrototypeIntact=eaa().toString();var d=a.stack||"";if(0==d.trim().length||"Not available"==d)b["stacklessError-reportingStack"]=Lm(ku.prototype.TG),[a.message].concat(_.Ya(Object.keys(b)),_.Ya(Object.values(b))).some(function(e){return e.includes("<eye3")})||(b.eye3Hint="<eye3-stackless title='Stackless JS Error - "+a.name+"'/>");this.D&&!this.L?
(this.J=this.C,"fatal"==c?c="postmortem":"incident"==c&&(c="warningafterdeath")):"fatal"==c&&(this.D=!0);this.C=!1;b.severity=c};_.g.bY=function(a,b,c,d){this.J&&this.H.send(a,b,c,d)};_.g.ma=function(){ju=!1;_.$m(this.R,this.B,this.H);_.R.prototype.ma.call(this)};var ju=!1,aha=function(a,b,c){_.Q.call(this,a);this.error=b;this.context=c};_.v(aha,_.Q);var Zga=function(){this.F=this.C=!1;this.B=void 0;this.D=!1},bha=function(){var a=new Zga;a.C=!0;return a};
var nu=function(){_.O.call(this)};_.v(nu,_.O);nu.prototype.init=function(){this.B=[]};var eha=function(a){var b=cha;b.C=a;dha(b)},dha=function(a){a.B&&(_.Sc(a.B,function(b){this.C.B.log(Km(b[1],b[0]||""))},a),a.B=null)},cha=new nu;
var gha=function(a){var b=bha();if(!globals.disableErrorReporting){var c=_.fk(_.th(),"atari-jefp");b.B=c}var d=new ku(b);a.registerService(_.Sr,d);eha(new fha(d));window.addEventListener("unload",function(){return _.Ym(d)});return d},fha=function(a){this.B=a};
_.ou=function(a,b){this.D=a;this.B=b;this.constructor.uC||(this.constructor.uC={});this.constructor.uC[this.toString()]=this};_.ou.prototype.ob=function(){return this.toString()};_.ou.prototype.toString=function(){this.C||(this.C=this.D.B+":"+this.B);return this.C};_.ou.prototype.getType=function(){return this.B};
var hha=function(a,b){_.ou.call(this,a,b)};_.x(hha,_.ou);
var iha;iha=function(a){this.B=a};_.jha=new iha("lib");
var kha,ru,lha,pha,oha,tha,uha,sha,vha;_.qu=function(a){_.O.call(this);this.I={};this.V={};this.X={};this.H={};this.J={};this.qa={};this.S=a?a.S:new _.R;this.Aa=!a;this.R=null;a?(this.R=a,this.X=a.X,this.H=a.H,this.V=a.V,this.J=a.J):(0,_.Kc)();a=_.pu(this);this!=a&&(a.aa?a.aa.push(this):a.aa=[this])};_.x(_.qu,_.O);kha=.05>Math.random();_.pu=function(a){for(;a.R;)a=a.R;return a};ru=function(a,b){for(;a;){if(a==b)return!0;a=a.R}return!1};
_.qu.prototype.get=function(a){var b=_.sb(this,a);if(null==b)throw new su(a);return b};lha=function(a,b){return!(!a.I[b]&&!a.X[b])};_.sb=function(a,b){for(var c=a;c;c=c.R){if(c.isDisposed())throw Error("Ba`"+b);if(c.I[b])return c.I[b][0];if(c.qa[b])break}if(c=a.X[b]){c=c(a);if(null==c)throw Error("Ca`"+b);a.registerService(b,c);return c}return null};
_.Bn=function(a,b,c){var d=tu(a),e=!c;c={};var f=[],h=[],k={},l={},n=_.sb(a,gea),q={};b=_.u(b);for(var w=b.next();!w.done;q={Ge:q.Ge},w=b.next())if(q.Ge=w.value,w=_.sb(a,q.Ge)){var y=new _.cl;c[q.Ge]=y;w.$w&&(_.kl(y,w.$w()),y.Ja(_.Jc(function(D){return D},w)));y.callback(w)}else a.J[q.Ge]?(w=a.J[q.Ge].Zh(),w.Ja(function(D){return function(){return a.Iy(D.Ge)}}(q)),c[q.Ge]=w):(w=void 0,q.Ge instanceof _.Da?w=Dm([q.Ge]).KU:(y=a.V[q.Ge])&&(w=[y]),!e||w&&w.length?(w&&(n&&q.Ge instanceof _.Da&&n.p7()&&
(kha&&(y=n.u7(mha),l[q.Ge]=y),n.G6(q.Ge)),f.push.apply(f,_.Ya(w)),k[q.Ge]=_.ba(w)),h.push(q.Ge)):(w=new _.cl,c[q.Ge]=w,w.Tb(new su(q.Ge))));if(e){if(f.length){a.ea&&0<f.filter(function(D){return!d.ku(D)}).length&&a.ea.push(new nha);q=_.u(h);for(e=q.next();!e.done;e=q.next())a.S.dispatchEvent(new uu("d",e.value));f=tu(a).Cu(f);q={};h=_.u(h);for(e=h.next();!e.done;q={Sk:q.Sk},e=h.next())q.Sk=e.value,e=k[q.Sk],b=f[e],b=b instanceof _.cl?b.Zh():_.pl(b),c[q.Sk]=b,l[q.Sk]&&b.Ja(function(D){return function(){n.Z5(l[D.Sk])}}(q)),
oha(a,b,q.Sk,e)}}else for(f={},h=_.u(h),e=h.next();!e.done;f={Ui:f.Ui,Qo:f.Qo},e=h.next())f.Ui=e.value,f.Qo=k[f.Ui],e=new _.cl(function(D){return function(H){var P=D.Ui,aa=a.H&&a.H[P];if(aa){for(var la=0;la<aa.length;++la)if(aa[la].La==a&&aa[la].d==H){_.ma(aa,la);break}0==aa.length&&delete a.H[P]}}}(f)),c[f.Ui]=e,(q=a.H[f.Ui])||(a.H[f.Ui]=q=[]),f.Qo&&pha(a,e,f.Ui,f.Qo),e.Ja(function(D){return function(){return a.Jy(D.Ui,D.Qo)}}(f)),q.push({La:a,d:e});return c};
pha=function(a,b,c,d){b.Ja(function(){var e=tu(this);if(e.wi(d).Jc())return e.X;this.ea&&this.ea.push(new nha);return e.load(d)},a);b.$b((0,_.p)(a.oE,a,c,d))};oha=function(a,b,c,d){b.Ja(function(){this.S.dispatchEvent(new uu("e",c))},a);b.$b((0,_.p)(a.oE,a,c,d));b.Ja((0,_.p)(a.Jy,a,c,d))};_.g=_.qu.prototype;
_.g.Jy=function(a,b){var c=_.sb(this,a);if(null==c){if(this.J[a]){var d=this.J[a].Zh();d.Ja((0,_.p)(this.Jy,this,a,b));return d}if(!b)throw Error("Da`"+a);throw new qha(a,b,"Module loaded but service or factory not registered with app contexts.");}return c.$w?(d=new _.cl,_.kl(d,c.$w()),d.callback(c),d.Ja((0,_.p)(this.Iy,this,a)),d):this.Iy(a)};_.g.Iy=function(a){this.J[a]&&delete this.J[a];return this.get(a)};_.g.oE=function(a,b,c){return c instanceof _.dl?c:new rha(a,b,c)};
_.g.registerService=function(a,b,c){if(this.isDisposed())c||_.Ym(b);else{this.I[a]=[b,!c];c=sha(this,this,a);for(var d=0;d<c.length;d++)c[d].callback(null);delete this.V[a];a instanceof _.Da&&(c=b.constructor,c.displayName=a,c[Ca]=a);return b}};_.g.unregisterService=function(a){if(!this.I[a])throw Error("Ea`"+a);var b=this.I[a];delete this.I[a];b[1]&&_.Ym(b[0])};tha=function(a,b,c){b instanceof _.Da&&(b.Ou=c);a.V[b]=c};
_.vu=function(a,b,c){a.X[b]=c;if(c=a.H[b]){if(1<c.length){for(var d=0;d<c.length;++d)c[d].index=d;c.sort(uha)}for(;c.length;)c.shift().d.callback(null);delete a.H[b]}};uha=function(a,b){if(a.La!=b.La){if(ru(a.La,b.La))return 1;if(ru(b.La,a.La))return-1}return a.index<b.index?-1:a.index==b.index?0:1};sha=function(a,b,c){var d=[],e=a.H[c];e&&(_.ca(e,function(f){ru(f.La,b)&&(d.push(f.d),_.na(e,f))}),0==e.length&&delete a.H[c]);return d};
vha=function(a,b){a.H&&_.gd(a.H,function(c,d,e){_.ca(c,function(f){f.La==b&&_.na(c,f)});0==c.length&&delete e[d]})};_.qu.prototype.ma=function(){if(_.pu(this)==this){var a=this.aa;if(a)for(;a.length;)a[0].dispose()}else{a=_.pu(this).aa;for(var b=0;b<a.length;b++)if(a[b]==this){a.splice(b,1);break}}for(var c in this.I)a=this.I[c],a[1]&&a[0].dispose&&a[0].dispose();this.I=null;this.Aa&&this.S.dispose();vha(this,this);this.H=null;_.Ym(this.za);this.qa=this.za=null;_.qu.oa.ma.call(this)};
var tu=function(a){return a.la?a.la:a.R?tu(a.R):null},su=function(a){_.Oc.call(this);this.id=a;this.message='Service for "'+a+'" is not registered'};_.x(su,_.Oc);var rha=function(a,b,c){_.Oc.call(this);this.cause=c;this.message='Module "'+b+'" failed to load when requesting the service "'+a+'" [cause: '+c+"]";this.stack=c.stack+"\nWRAPPED BY:\n"+this.stack};_.x(rha,_.Oc);
var qha=function(a,b,c){_.Oc.call(this);this.message='Configuration error when loading the module "'+b+'" for the service "'+a+'": '+c};_.x(qha,_.Oc);var nha=function(){this.jI=Om()},uu=function(a){_.Q.call(this,a)};_.x(uu,_.Q);var mha=new hha(new iha("fva"),1);
var xu;_.wu=function(a){this.B=new _.Tm;a&&_.wha(this,a)};xu=function(a){var b=typeof a;return"object"==b&&a||"function"==b?"o"+_.va(a):b.charAt(0)+a};_.wu.prototype.Ub=function(){return this.B.Ub()};_.wu.prototype.add=function(a){this.B.set(xu(a),a)};_.wha=function(a,b){b=_.$q(b);for(var c=b.length,d=0;d<c;d++)a.add(b[d])};_.g=_.wu.prototype;_.g.removeAll=function(a){a=_.$q(a);for(var b=a.length,c=0;c<b;c++)this.remove(a[c])};_.g.remove=function(a){return this.B.remove(xu(a))};_.g.clear=function(){this.B.clear()};
_.g.Dc=function(){return this.B.Dc()};_.g.contains=function(a){return _.Wm(this.B,xu(a))};_.g.Pc=function(){return this.B.Pc()};_.g.clone=function(){return new _.wu(this)};_.g.Sb=function(a){return this.Ub()==_.Zq(a)&&xha(this,a)};
var xha=function(a,b){var c=_.Zq(b);if(a.Ub()>c)return!1;!(b instanceof _.wu)&&5<c&&(b=new _.wu(b));return Pda(a,function(d){var e=b;return e.contains&&"function"==typeof e.contains?e.contains(d):e.dj&&"function"==typeof e.dj?e.dj(d):_.qa(e)||"string"===typeof e?_.ia(e,d):_.ld(e,d)})};_.wu.prototype.Pm=function(){return this.B.Pm(!1)};
var yu=[],yha=[],zu=!1,Au=function(a){function b(d){d&&_.Vc(d,function(e,f){e[f.id]=!0;return e},c.nX)}if(zu)throw new zha(a);var c={nX:{},index:yu.length,wj:a};b(a.services);b(a.D);yu.push(c);a.services&&_.Sc(a.services,function(d){var e=d.id;e instanceof _.Da&&d.module&&(e.Ou=d.module)})},Aha=function(){function a(l){l.uZ||(l.uZ=!0,l.an&&_.Sc(l.an.Pc(),a),k.push(l))}var b={},c,d;for(c=yu.length-1;0<=c;--c){var e=yu[c];if(e.wj.services){var f=e.wj.services;for(d=f.length-1;0<=d;--d)b[f[d].id]=e}if(e.wj.D)for(f=
e.wj.D,d=f.length-1;0<=d;--d)b[f[d].id]=e}for(c=yu.length-1;0<=c;--c){e=yu[c];f=e.wj;if(f.B)for(e.an=new _.wu,d=f.B.length-1;0<=d;--d){var h=b[f.B[d]];h&&e.an.add(h)}if(f.C)for(e.an||(e.an=new _.wu),d=f.C.length-1;0<=d;--d)(h=b[f.C[d]])&&e.an.add(h)}var k=[];_.Sc(yu,a);yu=k},Cha=function(a){if(!zu){Aha();for(var b=0;b<yu.length;++b){var c=yu[b].wj;c.services&&Bha(a,c.services);c.F&&c.F(a)}for(b=0;b<yu.length;++b)c=yu[b],c.wj.initialize&&c.wj.initialize(a);for(b=0;b<yha.length;++b)yha[b](a);zu=!0}},
Bha=function(a,b){for(var c=0;c<b.length;++c){var d=b[c];if(!lha(a,d.id)&&!d.A6)if(d.module)tha(a,d.id,d.module);else if(d.multiple){var e=function(f){for(var h=[],k=0;k<arguments.length;++k)h[k]=arguments[k];return new (Function.prototype.bind.apply(d.ue,[null].concat(_.Ya(h))))};_.vu(a,d.id,d.callback||e)}else a.registerService(d.id,d.callback?d.callback(a):new d.ue(a))}},zha=function(a){_.Oc.call(this);this.wj=a;this.message="Extension registered after application initialization adding these services: "+
(a.services?_.Uc(a.services,function(b){return b.id}).join(", "):"none")};_.v(zha,_.Oc);
var Bu=function(){this.B={};this.C=""};
Bu.prototype.toString=function(){if("1"==Cu(this,"md"))return Dha(this);var a=[],b=(0,_.p)(function(d){void 0!==this.B[d]&&a.push(d+"="+this.B[d])},this);b("sdch");b("k");b("ck");b("am");b("rt");"d"in this.B||Du(this,"d","0");b("d");b("exm");b("excm");(this.B.excm||this.B.exm)&&a.push("ed=1");b("dg");"1"==Cu(this,"br")&&b("br");a:switch(Cu(this,"wt")){case "0":var c="0";break a;case "2":c="2";break a;default:c="1"}"1"!==c&&b("wt");b("sm");b("im");a:switch(Cu(this,"ct")){case "zgms":c="zgms";break a;
default:c="gms"}"zgms"==c&&b("ct");b("rs");b("ee");b("m");b("cb");return this.C+a.join("/")};var Dha=function(a){var b=[],c=(0,_.p)(function(d){void 0!==this.B[d]&&b.push(d+"="+this.B[d])},a);c("md");c("k");c("ck");c("ct");c("am");c("rs");return a.C+b.join("/")},Cu=function(a,b){return a.B[b]?a.B[b]:null},Du=function(a,b,c){c?a.B[b]=c:delete a.B[b]},Eha=function(a){return(a=Cu(a,"m"))?a.split(","):[]},Fha=function(a,b){Du(a,"ee",Object.keys(b).map(function(c){return c+":"+Object.keys(b[c]).join(",")}).join(";"))};
Bu.prototype.getMetadata=function(){return"1"==Cu(this,"md")};var Gha=function(a){delete a.B.m;delete a.B.exm;delete a.B.ed};Bu.prototype.clone=function(){return Eu(this.toString())};
var Eu=function(a){var b=new Bu,c=_.cr(a.startsWith("https://uberproxy-pen-redirect.corp.google.com/uberproxy/pen?url=")?a.substr(65):a)[5];_.gd(Hha,function(e){var f=c.match("/"+e+"=([^/]+)");f&&Du(b,e,f[1])});var d=-1!=a.indexOf("_/ss/")?"_/ss/":"_/js/";b.C=a.substr(0,a.indexOf(d)+d.length);return b},Pa=function(a){a=_.fr(a);return null!==a&&!!a.match("(/_/js/)|(/_/ss/)")&&!!a.match("/k=")},Hha={b3:"k",y_:"ck",z1:"m",e0:"exm",c0:"excm",MZ:"am",W2:"rt",L0:"d",d0:"ed",E3:"sv",L_:"deob",a_:"cb",w3:"rs",
m3:"sdch",N0:"im",M_:"dg",Z_:"br",P4:"wt",g0:"ee",D3:"sm",t1:"md",z_:"ct"};
var Iha=function(a){a=a.clone();Gha(a);Du(a,"dg",null);Du(a,"d","0");return a},Jha=function(a,b,c){var d=void 0===c?{}:c;c=void 0===d.ej?void 0:d.ej;var e=void 0===d.cj?void 0:d.cj;d=void 0===d.th?void 0:d.th;Du(a,"m",b.join(","));d&&Fha(a,d);c&&(Du(a,"ck",c),e&&Du(a,"rs",e));a=a.toString();_.Id(a,"/")&&(a=_.hr(document.location.href)+a);return _.Ra(a)};
var Lha=function(a){return Kha(a).then(function(b){return JSON.parse(b.responseText)})},Kha=function(a){var b={},c=b.GZ?Xt(b.GZ):Xt(Wt);return(new _.Ik(function(d,e){var f;try{c.open("GET",a,!0)}catch(l){e(new Fu("Error opening XHR: "+l.message,a,c))}c.onreadystatechange=function(){if(4==c.readyState){_.t.clearTimeout(f);var l;!(l=Ut(c.status))&&(l=0===c.status)&&(l=Rda(a),l=!("http"==l||"https"==l||""==l));l?d(c):e(new Gu(c.status,a,c))}};c.onerror=function(){e(new Fu("Network error",a,c))};if(b.headers)for(var h in b.headers){var k=
b.headers[h];null!=k&&c.setRequestHeader(h,k)}b.withCredentials&&(c.withCredentials=b.withCredentials);b.responseType&&(c.responseType=b.responseType);b.mimeType&&c.overrideMimeType(b.mimeType);0<b.UY&&(f=_.t.setTimeout(function(){c.onreadystatechange=_.Ec;c.abort();e(new Hu(a,c))},b.UY));try{c.send(null)}catch(l){c.onreadystatechange=_.Ec,_.t.clearTimeout(f),e(new Fu("Error sending XHR: "+l.message,a,c))}})).se(function(d){d instanceof _.Wk&&c.abort();throw d;})},Fu=function(a,b){_.Oc.call(this,
a+", url="+b);this.url=b};_.x(Fu,_.Oc);Fu.prototype.name="XhrError";var Gu=function(a,b,c){Fu.call(this,"Request Failed, status="+a,b,c);this.status=a};_.x(Gu,Fu);Gu.prototype.name="XhrHttpError";var Hu=function(a,b){Fu.call(this,"Request timed out",a,b)};_.x(Hu,Fu);Hu.prototype.name="XhrTimeoutError";
var Mha,Qha,Oha,Pha,Nha,Vha,Ku,Uha,Sha;_.Qa=function(a,b,c,d,e){d=void 0===d?!1:d;e=void 0===e?!1:e;this.I=Eu(_.Gd(a));this.la=b;this.ea=c;this.R=d;this.D={};this.J=[];this.X=!0;this.V=(a=Cu(this.I,"excm"))?a.split(","):[];this.Aa=e;this.Fr=4043;this.S=document.head||document.documentElement;this.L=this.H=null;_.Iu(this,Eha(this.I));this.aa()};
Mha=function(a,b){if(b.href||b.getAttribute("data-href"))if(b=b.href||b.getAttribute("data-href"),Pa(b)&&!Eu(b).C.endsWith("_/js/")){b=Eha(Eu(b));b=_.u(b);for(var c=b.next();!c.done;c=b.next())c=c.value,a.V.includes(c)||a.V.push(c)}};
_.Qa.prototype.za=function(a,b,c){var d=void 0===c?{}:c;b=d.th;c=d.Ig;d=d.vW;if(!a)throw Error("Fa");if(this.Aa){for(var e=_.u(document.getElementsByTagName("style")),f=e.next();!f.done;f=e.next())Mha(this,f.value);e=_.u(document.getElementsByTagName("link"));for(f=e.next();!f.done;f=e.next())Mha(this,f.value)}this.R&&(a=Nha(this,a));this.qa(a,b,c,d)};_.Qa.prototype.qa=function(a,b,c){var d=this;c=void 0===c?function(){}:c;_.Ju(this,a,function(e,f){d.load(e,f,c)},b)||c(-1)};_.Qa.prototype.aa=function(){};
Qha=function(a,b,c){if(a.R){c={ej:a.la,cj:a.ea,th:c,lH:Oha(a),gr:Pha(a)};var d=void 0===c?{}:c;c=void 0===d.lH?[]:d.lH;var e=void 0===d.gr?[]:d.gr,f=void 0===d.ej?void 0:d.ej,h=void 0===d.cj?void 0:d.cj;d=void 0===d.th?void 0:d.th;a=Iha(a.I);Du(a,"d","1");c.sort();Du(a,"exm",c.join(","));e.sort();Du(a,"excm",e.join(","));b=Jha(a,b,{ej:f,cj:h,th:d})}else c={ej:a.la,cj:a.ea,th:c,gr:Pha(a)},h=void 0===c?{}:c,c=void 0===h.gr?[]:h.gr,e=void 0===h.ej?void 0:h.ej,f=void 0===h.cj?void 0:h.cj,h=void 0===h.th?
void 0:h.th,a=Iha(a.I),c.sort(),Du(a,"excm",c.join(",")),b=Jha(a,b,{ej:e,cj:f,th:h});return b};_.Iu=function(a,b){for(var c=!1,d=0;d<b.length;++d){var e=b[d];a.D[e]||(a.D[e]=!0,a.J.push(e),c=!0)}c&&(a.X=!1)};_.Rha=function(a,b){for(var c=0;c<b.length;++c){var d=b[c];a.D[d]&&(delete a.D[d],_.na(a.J,d))}};
_.Qa.prototype.load=function(a,b,c){var d=this,e=Sha(a);_.Iu(this,b);this.H=e;this.S.insertBefore(e,this.S.firstChild);_.Tha(e,b,function(){e.parentElement.removeChild(e);d.H==e&&(d.H=null)},function(f){e.parentElement.removeChild(e);d.H==e&&(d.H=null);_.Rha(d,f);c(-1)})};
_.Tha=function(a,b,c,d){var e=b.length,f=function(){e=0;a.onload=null;a.onerror=null;h=function(){}},h=function(){f();var l=b.filter(function(n){return!_.m().wi(n).Jc()});0!==l.length?d(l,"Response was successful but was missing module(s) "+l+"."):c()},k=function(){e--;0==e&&h()};b.forEach(function(l){l=_.m().wi(l);l.Jc()?k():(l.B.push(new bn(k,void 0)),dn(l,k))});a.onload=function(){return h()};a.onerror=function(){f();d(b)}};Oha=function(a){a.X||(a.X=!0,a.J.sort());return a.J};
Pha=function(a){a=a.V;a.sort();return a};Nha=function(a,b){return b.filter(function(c){return!a.D[c]})};
_.Ju=function(a,b,c,d){if(a.L)return a.L.then(function(){var n=[],q=Object.assign({},a.D);Ku(a,b,function(w){n.push(w.getId())},function(w){return!w.Jc()},q);_.Ju(a,n,c,d)}),!0;for(var e=0;e<b.length;){for(var f=b.length-e,h=0==e?b:b.slice(e,b.length),k=Qha(a,h,d),l=_.Gd(k);l.length>a.Fr;)if(1<f)f-=Math.ceil((l.length-a.Fr)/6),f=Math.max(f,1),h=b.slice(e,e+f),k=Qha(a,h,d),l=_.Gd(k);else return a.R?(a.R=!1,a.L=Uha(a).then(function(n){Vha(a,n)}),_.Ju(a,b.slice(e),c,d)):!1;e+=f;c(k,h)}return!0};
Vha=function(a,b){_.m().Dv((b||{}).moduleGraph);Ku(a,Oha(a),function(c){_.Iu(a,[c.getId()])});a.L=null};Ku=function(a,b,c,d,e){e=void 0===e?{}:e;var f=_.m();b=_.u(b);for(var h=b.next();!h.done;h=b.next()){h=h.value;var k=f.wi(h);e[h]||d&&!d(k)||(e[h]=!0,Ku(a,k.pn()||[],c,d,e),c(k))}};Uha=function(a){a=a.I.clone();Gha(a);Du(a,"dg",null);Du(a,"md","1");return Lha(a.toString())};Sha=function(a){var b=_.vj("SCRIPT");_.Je(b,a);b.async=!1;return b};
var Lu=function(){_.O.call(this)};_.v(Lu,an);Lu.prototype.initialize=function(){_.Ir(new _.xr(_.t.location),"enable_console_logging");var a=new _.qu,b=gha(a),c=_.m();faa();c.GH(!0);c.gB(a);c.tt("error",function(d,e,f){return b.log(Error("Ja`"+f+"`"+e))});a.la=c;Cha(a)};
var gaa=function(a){this.B=a||null;this.D=!1;this.C={}};
Au({services:[{id:_.Wq,ue:Nr}]});
var Mu=function(a){_.R.call(this);this.B=a?a.getWindow():window;this.D=1.5<=this.B.devicePixelRatio?2:1;this.Hg=(0,_.p)(this.F,this);this.C=this.B.matchMedia?this.B.matchMedia("(min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5)"):null};_.x(Mu,_.R);Mu.prototype.start=function(){this.C&&this.C.addListener(this.Hg)};Mu.prototype.F=function(){var a=1.5<=this.B.devicePixelRatio?2:1;this.D!=a&&(this.D=a,this.dispatchEvent("f"))};
Mu.prototype.ma=function(){this.C&&this.C.removeListener(this.Hg);Mu.oa.ma.call(this)};
var Nu=function(a,b){_.O.call(this);this.Tc=a;if(b){if(this.C)throw Error("Ka");this.C=b;this.cb=_.fj(b);this.B=new _.Ht(_.qj(b));this.B.re(this.Tc.S);this.D=new Mu(this.cb);this.D.start()}};_.x(Nu,_.O);Nu.prototype.Jl=function(){return this.C};Nu.prototype.W=function(){return this.cb};Nu.prototype.ma=function(){this.cb=this.C=null;this.B&&(this.B.dispose(),this.B=null);_.Ym(this.D);this.D=null};
Au({services:[{id:_.Rr,callback:function(a){return new Nu(a,window.document)},multiple:!0}]});
var Wha=_.Am("zZDXhc");
var Ou=_.Wo("VZCf0c",[_.Wq,_.Sr]);Yo(Ou,"Vzcbec");
var Pu=function(a){_.qo.call(this,a.Da);var b=this;this.C=a.La.configuration;this.B=a.La.ii;lu(this.B,"atUniqueId",function(){return Math.floor(1E8*Math.random()).toString(16)});lu(this.B,"originalLoadTime",function(){return""+_.E(_.Or(b.C),1)});lu(this.B,"atBuildLabel",function(){return""+_.E(_.Or(b.C),2)});lu(this.B,"docType",function(){return _.Ta(b.C.get(),281)?_.Ta(b.C.get(),404)?"doplari-brixit":"doplari":"brix"});_.Ta(this.C.get(),281)&&_.An(this,{La:{ax:_.Jda}}).then(function(c){lu(b.B,"hasCollaborators",
function(){return""+c.La.ax.i6().p6()})});this.B.I=this};_.v(Pu,_.qo);Pu.va=function(){return{La:{configuration:_.Wq,ii:_.Sr}}};Pu.prototype.notify=function(a){_.Mo(document.body,Wha,a,void 0,void 0)};_.Jq(Ou,Pu);
_.Qu=_.Xo("kbkrpd");
var Ru=function(a){this.sb=a};
_.Su=function(a){this.lb=a};_.Su.prototype.getId=function(){return this.lb};
var Tu=function(a){_.A(this,a,0,-1,null,null)};_.x(Tu,_.z);var Uu=function(a){_.A(this,a,0,-1,null,null)};_.x(Uu,_.z);var Vu=function(a){_.A(this,a,0,-1,null,null)};_.x(Vu,_.z);
var Zu;_.Wu=function(){this.C=this.sb=null};_.Wu.prototype.initialize=function(a,b){this.sb=a;this.C=b;return this};_.Xu=function(a,b){b=a.C.B[b.getId()].Np();b.initialize(a.sb,a.C);return b};_.Yu=function(a){var b=_.I(a.sb,Nl,5);null==b&&(b=new Nl,_.J(a.sb,5,b));return b};Zu=function(a){var b=_.I(a.sb,Tu,8);_.E(b,3);b=_.I(a.sb,Nl,5);null!=b&&(b=_.Af(b),_.J(a.sb,5,b));return a.sb};_.Wu.prototype.Hh=_.ad;
var $u=function(){_.Wu.call(this);this.B=null};_.v($u,_.Wu);var av=function(a){if(!a.B){a.B=new El;var b=_.Yu(a);_.J(b,18,a.B)}return a.B},bv=function(a,b){a=av(a);_.G(a,9,b)};
_.cv=_.Xo("PQmzu",void 0,"OqIWSb");
_.dv=_.Xo("OqIWSb",void 0,"iRs0Qc");
_.Gm(_.dv);
var Xha=function(a){this.B=a};_.Gm(_.cv);
_.ev=_.Wo("vVEdxc",[_.cv]);
_.Yha=_.Wo("fuVYe",[_.Wq]);
_.Zha=_.Wo("TGYpv");
var $ha=function(a){_.A(this,a,0,-1,null,null)};_.x($ha,_.z);
_.fv=function(a){_.A(this,a,0,-1,null,null)};_.x(_.fv,_.z);var aia=function(a){_.A(this,a,0,-1,null,null)};_.x(aia,_.z);
var gv=function(a){_.A(this,a,0,-1,null,null)};_.x(gv,_.z);
var hv=function(a){_.A(this,a,0,-1,null,null)};_.x(hv,_.z);
var bia=function(a){_.A(this,a,0,-1,null,null)};_.x(bia,_.z);
var iv=function(a){_.A(this,a,0,-1,null,null)};_.x(iv,_.z);
var cia=function(a){_.A(this,a,0,-1,null,null)};_.x(cia,_.z);
var jv=function(a){_.A(this,a,0,-1,null,null)};_.x(jv,_.z);