-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle.htm
More file actions
1640 lines (1488 loc) · 208 KB
/
Copy pathgoogle.htm
File metadata and controls
1640 lines (1488 loc) · 208 KB
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 itemscope="" itemtype="http://schema.org/WebPage" lang="en-CA"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image"><link href="https://www.google.ca/images/branding/product/ico/googleg_lodp.ico" rel="shortcut icon"><meta content="origin" id="mref" name="referrer"><title>Google</title> <script src="Google_files/cbgapi.loaded_0" async=""></script><script>(function(){window.google={kEI:'nEHlWMi4JYaVmQHElIPYAg',kEXPI:'1351892,1352864,1352996,1353038,1353108,1353206,3700265,3700347,3700405,4028875,4029815,4031109,4032678,4036527,4038214,4038394,4039268,4040135,4041776,4043492,4045096,4045293,4045841,4046904,4047140,4047454,4048347,4048980,4050750,4051887,4056126,4056682,4058016,4061666,4061980,4062724,4064468,4064796,4065786,4066196,4068291,4069829,4071757,4072270,4072364,4072776,4073111,4075963,4076096,4076999,4078430,4078588,4078763,4080760,4081039,4081164,4082131,4082230,4082441,4083046,4083458,4089339,4090550,4090553,4090806,4091420,4092232,4092628,4092934,4093136,4093313,4093792,4093808,4093951,4094039,4094251,4094544,4094836,4095910,4095996,4096324,4096463,4097153,4097204,4097501,4097951,4098047,4098458,4098600,4098733,4098739,4098751,4099784,4099794,4100121,4100127,4100169,4100380,4100714,4101051,4101376,4102020,4102032,4102099,4102400,4102411,4102658,4102988,4103041,4103169,4103240,4103473,4103849,4103999,4104026,4104063,4104159,4104198,4104202,4104290,4104497,4104722,4104738,4104852,4105085,4105177,4105243,4105302,4105317,4105321,4106077,8300497,8300509,8503585,8505964,8507380,8508229,8508707,8508931,8509037,8509373,10200083,19001940,19001941,19001944,41027342',authuser:0,j:{en:1,bv:24,pm:'p',u:'2ebf6b14',qbp:0},kscs:'2ebf6b14_24'};google.kHL='en-CA';})();(function(){google.lc=[];google.li=0;google.getEI=function(a){for(var b;a&&(!a.getAttribute||!(b=a.getAttribute("eid")));)a=a.parentNode;return b||google.kEI};google.getLEI=function(a){for(var b=null;a&&(!a.getAttribute||!(b=a.getAttribute("leid")));)a=a.parentNode;return b};google.https=function(){return"https:"==window.location.protocol};google.ml=function(){return null};google.wl=function(a,b){try{google.ml(Error(a),!1,b)}catch(c){}};google.time=function(){return(new Date).getTime()};google.log=function(a,b,c,d,g){a=google.logUrl(a,b,c,d,g);if(""!=a){b=new Image;var e=google.lc,f=google.li;e[f]=b;b.onerror=b.onload=b.onabort=function(){delete e[f]};window.google&&window.google.vel&&window.google.vel.lu&&window.google.vel.lu(a);b.src=a;google.li=f+1}};google.logUrl=function(a,b,c,d,g){var e="",f=google.ls||"";c||-1!=b.search("&ei=")||(e="&ei="+google.getEI(d),-1==b.search("&lei=")&&(d=google.getLEI(d))&&(e+="&lei="+d));a=c||"/"+(g||"gen_204")+"?atyp=i&ct="+a+"&cad="+b+e+f+"&zx="+google.time();/^http:/i.test(a)&&google.https()&&(google.ml(Error("a"),!1,{src:a,glmm:1}),a="");return a};google.y={};google.x=function(a,b){google.y[a.id]=[a,b];return!1};google.lq=[];google.load=function(a,b,c){google.lq.push([[a],b,c])};google.loadAll=function(a,b){google.lq.push([a,b])};}).call(this);
google.j.b=(!!location.hash&&!!location.hash.match('[#&]((q|fp)=|tbs=rimg|tbs=simg|tbs=sbi)'))
||(google.j.qbp==1);(function(){google.hs={h:true,pa:true,q:false};})();(function(){google.c={c:{a:true,d:false,i:false,m:true,n:false}};google.sn='webhp';(function(){var e=function(a,b,c){a.addEventListener?a.removeEventListener(b,c,!1):a.attachEvent&&a.detachEvent("on"+b,c)},g=function(a,b,c){f.push({o:a,v:b,w:c});a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent&&a.attachEvent("on"+b,c)},f=[];google.timers={};google.startTick=function(a,b){var c=b&&google.timers[b].t?google.timers[b].t.start:google.time();google.timers[a]={t:{start:c},e:{},it:{},m:{}};(c=window.performance)&&c.now&&(google.timers[a].wsrt=Math.floor(c.now()))};google.tick=function(a,b,c){google.timers[a]||google.startTick(a);c=c||google.time();b instanceof Array||(b=[b]);for(var d=0;d<b.length;++d)google.timers[a].t[b[d]]=c};google.c.e=function(a,b,c){google.timers[a].e[b]=c};google.bit=function(a,b){google.timers[a]||google.startTick(a);var c=google.timers[a].it[b];c||(c=google.timers[a].it[b]=[]);var d=c.push({s:google.time()})-1;return function(){c[d]&&(c[d].e=google.time())}};google.c.b=function(a){var b=google.timers.load.m;b[a]&&google.wl("ch_mab",{m:a});b[a]=!0};google.c.u=function(a){var b=google.timers.load.m;if(b[a]){b[a]=!1;for(a in b)if(b[a])return;google.csiReport()}else google.wl("ch_mnb",{m:a})};google.rll=function(a,b,c){var d=function(b){c(b);e(a,"load",d);e(a,"error",d)};g(a,"load",d);b&&g(a,"error",d)};google.ull=function(){for(var a;a=f.shift();)e(a.o,a.v,a.w)};google.iTick=function(a){var b=google.time();google.tick("load","iml",b);a=a.id||a.src||a.name;google.tick("iml",a,b);google.c.c.a&&google.tick("aft",a,b)};google.afte=!0;google.aft=function(a){google.c.c.a&&google.afte&&google.tick("aft",a.id||a.src||a.name)};google.startTick("load");google.c.b("pr");google.c.b("xe");}).call(this);})();(function(){'use strict';var k=this,l=Date.now||function(){return+new Date};var u={};var w=function(a,d){if(null===d)return!1;if("contains"in a&&1==d.nodeType)return a.contains(d);if("compareDocumentPosition"in a)return a==d||!!(a.compareDocumentPosition(d)&16);for(;d&&a!=d;)d=d.parentNode;return d==a};var x=function(a,d){return function(b){b||(b=window.event);return d.call(a,b)}},B=function(a){a=a.target||a.srcElement;!a.getAttribute&&a.parentNode&&(a=a.parentNode);return a},C="undefined"!=typeof navigator&&/Macintosh/.test(navigator.userAgent),D="undefined"!=typeof navigator&&!/Opera/.test(navigator.userAgent)&&/WebKit/.test(navigator.userAgent),E={A:1,INPUT:1,TEXTAREA:1,SELECT:1,BUTTON:1},F=function(){this._mouseEventsPrevented=!0},G={A:13,BUTTON:0,CHECKBOX:32,COMBOBOX:13,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,TAB:0,TREE:13,TREEITEM:13},H=function(a){return(a.getAttribute("type")||a.tagName).toUpperCase()in aa},I=function(a){return(a.getAttribute("type")||a.tagName).toUpperCase()in ba},aa={CHECKBOX:!0,OPTION:!0,RADIO:!0},ba={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},ca={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};var J=function(){this.v=this.o=null},L=function(a,d){var b=K;b.o=a;b.v=d;return b};J.prototype.s=function(){var a=this.o;this.o&&this.o!=this.v?this.o=this.o.__owner||this.o.parentNode:this.o=null;return a};var M=function(){this.w=[];this.o=0;this.v=null;this.H=!1};M.prototype.s=function(){if(this.H)return K.s();if(this.o!=this.w.length){var a=this.w[this.o];this.o++;a!=this.v&&a&&a.__owner&&(this.H=!0,L(a.__owner,this.v));return a}return null};var K=new J,O=new M;var Q=function(){this.S=[];this.o=[];this.s=[];this.H={};this.v=null;this.w=[];P(this,"_custom")},da="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),R=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^\s+/,"").replace(/\s+$/,"")},ea=/\s*;\s*/,ia=function(a,d){return function(b){var c=d;if("_custom"==c){c=b.detail;if(!c||!c._type)return;c=c._type}var e;if("click"==c&&(C&&b.metaKey||!C&&b.ctrlKey||2==b.which||null==b.which&&4==b.button||b.shiftKey))c="clickmod";else{var f;f=b.which||b.keyCode||b.key;D&&3==f&&(f=13);if(13!=f&&32!=f)f=!1;else{var m=B(b),q=(m.getAttribute("role")||m.type||m.tagName).toUpperCase(),h;(h="keydown"!=b.type)||("getAttribute"in m?(h=(m.getAttribute("role")||m.tagName).toUpperCase(),h=!I(m)&&("COMBOBOX"!=h||"INPUT"!=h)&&!m.isContentEditable):h=!1,h=!h);(h=
h||b.ctrlKey||b.shiftKey||b.altKey||b.metaKey||H(m)&&32==f)||((h=m.tagName in E)||(h=m.getAttributeNode("tabindex"),h=null!=h&&h.specified),h=!(h&&!m.disabled));h?f=!1:(m="INPUT"!=m.tagName.toUpperCase()||m.type,h=!(q in G)&&13==f,f=(0==G[q]%f||h)&&!!m)}f&&(c="clickkey")}q=b.srcElement||b.target;f=S(c,b,q,"",null);var g;b.path?(O.w=b.path,O.o=0,O.v=this,O.H=!1,m=O):m=L(q,this);for(;h=m.s();){e=h;var t;g=e;h=c;var p=g.__jsaction;if(!p)if(t=null,"getAttribute"in g&&(t=g.getAttribute("jsaction")),t){p=
u[t];if(!p){for(var p={},y=t.split(ea),z=0,fa=y?y.length:0;z<fa;z++){var r=y[z];if(r){var A=r.indexOf(":"),N=-1!=A,ga=N?R(r.substr(0,A)):"click",r=N?R(r.substr(A+1)):r;p[ga]=r}}u[t]=p}g.__jsaction=p}else p=ha,g.__jsaction=p;"clickkey"==h?h="click":"click"!=h||p.click||(h="clickonly");g={R:h,action:p[h]||"",event:null,U:!1};f=S(g.R,g.event||b,q,g.action||"",e,f.timeStamp);if(g.U||g.action)break}f&&"touchend"==f.eventType&&(f.event._preventMouseEvents=F);if(g&&g.action){if(g="clickkey"==c)g=B(b),g=
(g.type||g.tagName).toUpperCase(),(g=32==(b.which||b.keyCode||b.key)&&"CHECKBOX"!=g)||(g=B(b),q=(g.getAttribute("role")||g.tagName).toUpperCase(),g=g.tagName.toUpperCase()in ca&&"A"!=q&&!H(g)&&!I(g)||"BUTTON"==q);g&&(b.preventDefault?b.preventDefault():b.returnValue=!1);if("mouseenter"==c||"mouseleave"==c)if(g=b.relatedTarget,!("mouseover"==b.type&&"mouseenter"==c||"mouseout"==b.type&&"mouseleave"==c)||g&&(g===e||w(e,g)))f.action="",f.actionElement=null;else{var c={},n;for(n in b)"function"!==typeof b[n]&&
"srcElement"!==n&&"target"!==n&&(c[n]=b[n]);c.type="mouseover"==b.type?"mouseenter":"mouseleave";c.target=c.srcElement=e;c.bubbles=!1;f.event=c;f.targetElement=e}}else f.action="",f.actionElement=null;e=f;a.v&&(n=S(e.eventType,e.event,e.targetElement,e.action,e.actionElement,e.timeStamp),"clickonly"==n.eventType&&(n.eventType="click"),a.v(n,!0));if(e.actionElement){"A"!=e.actionElement.tagName||"click"!=e.eventType&&"clickmod"!=e.eventType||(b.preventDefault?b.preventDefault():b.returnValue=!1);if(a.v)a.v(e);else{var v;if((n=k.document)&&!n.createEvent&&n.createEventObject)try{v=n.createEventObject(b)}catch(la){v=b}else v=b;e.event=v;a.w.push(e)}if("touchend"==e.event.type&&e.event._mouseEventsPrevented){b=e.event;for(var ma in b);l()}}}},S=function(a,d,b,c,e,f){return{eventType:a,event:d,targetElement:b,action:c,actionElement:e,timeStamp:f||l()}},ha={},ja=function(a,d){return function(b){var c=a,e=d,f=!1;"mouseenter"==c?c="mouseover":"mouseleave"==c&&(c="mouseout");if(b.addEventListener){if("focus"==c||"blur"==c||"error"==c||"load"==c)f=!0;b.addEventListener(c,e,f)}else b.attachEvent&&("focus"==c?c="focusin":"blur"==c&&(c="focusout"),e=x(b,e),b.attachEvent("on"+c,e));return{R:c,T:e,capture:f}}},P=function(a,d){if(!a.H.hasOwnProperty(d)){var b=ia(a,d),c=ja(d,b);a.H[d]=b;a.S.push(c);for(b=0;b<a.o.length;++b){var e=a.o[b];e.s.push(c.call(null,e.o))}"click"==d&&P(a,"keydown")}};Q.prototype.T=function(a){return this.H[a]};var W=function(a,d){var b=new ka(d);a:{for(var c=0;c<a.o.length;c++)if(T(a.o[c],d)){d=!0;break a}d=!1}if(d)return a.s.push(b),b;U(a,b);a.o.push(b);V(a);return b},V=function(a){for(var d=a.s.concat(a.o),b=[],c=[],e=0;e<a.o.length;++e){var f=a.o[e];X(f,d)?(b.push(f),Y(f)):c.push(f)}for(e=0;e<a.s.length;++e)f=a.s[e],X(f,d)?b.push(f):(c.push(f),U(a,f));a.o=c;a.s=b},U=function(a,d){var b=d.o;da&&(b.style.cursor="pointer");for(b=0;b<a.S.length;++b)d.s.push(a.S[b].call(null,d.o))},ka=function(a){this.o=a;this.s=[]},T=function(a,d){for(a=a.o;a!=d&&d.parentNode;)d=d.parentNode;return a==d},X=function(a,d){for(var b=0;b<d.length;++b)if(d[b].o!=a.o&&T(d[b],a.o))return!0;return!1},Y=function(a){for(var d=0;d<a.s.length;++d){var b=a.o,c=a.s[d];b.removeEventListener?b.removeEventListener(c.R,c.T,c.capture):b.detachEvent&&b.detachEvent("on"+c.R,c.T)}a.s=[]};var Z=new Q;W(Z,window.document.documentElement);P(Z,"click");P(Z,"focus");P(Z,"focusin");P(Z,"blur");P(Z,"focusout");P(Z,"error");P(Z,"load");P(Z,"change");P(Z,"dblclick");P(Z,"input");P(Z,"keyup");P(Z,"keydown");P(Z,"keypress");P(Z,"mousedown");P(Z,"mouseenter");P(Z,"mouseleave");P(Z,"mouseout");P(Z,"mouseover");P(Z,"mouseup");P(Z,"touchstart");P(Z,"touchend");P(Z,"touchcancel");P(Z,"speech");(function(a){window.google.jsad=function(d){a.v=d;a.w&&(0<a.w.length&&d(a.w),a.w=null)};window.google.jsaac=function(d){return W(a,d)};window.google.jsarc=function(d){Y(d);for(var b=!1,c=0;c<a.o.length;++c)if(a.o[c]===d){a.o.splice(c,1);b=!0;break}if(!b)for(c=0;c<a.s.length;++c)if(a.s[c]===d){a.s.splice(c,1);break}V(a)}})(Z);}).call(this);(function(){'use strict';var e=this,f=function(b,d){b=b.split(".");var a=e;b[0]in a||!a.execScript||a.execScript("var "+b[0]);for(var c;b.length&&(c=b.shift());)b.length||void 0===d?a[c]&&a[c]!==Object.prototype[c]?a=a[c]:a=a[c]={}:a[c]=d};var g=[];f("google.jsc.xx",g);f("google.jsc.x",function(b){g.push(b)});}).call(this);google.arwt=function(a){a.href=document.getElementById(a.id.substring(1)).href;return!0};</script><style>[dir='ltr'],[dir='rtl']{unicode-bidi:-moz-isolate;unicode-bidi:isolate}bdo[dir='ltr'],bdo[dir='rtl']{unicode-bidi:bidi-override;unicode-bidi:-moz-isolate-override;unicode-bidi:isolate-override}#logo{display:block;overflow:hidden;position:relative}#logo img{border:0;}#logo span{background:url(/images/nav_logo242.png) no-repeat;cursor:pointer;overflow:hidden}#logocont{z-index:1;padding-left:13px;padding-right:10px;margin-top:-2px;padding-top:7px}.big #logocont{padding-left:13px;padding-right:12px}.sbibod{background-color:#fff;height:44px;vertical-align:top;border-radius:2px;box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);transition:box-shadow 200ms cubic-bezier(0.4, 0.0, 0.2, 1);}.lst{border:0;margin-top:5px;margin-bottom:0}.lst:focus{outline:none}#lst-ib{color:#000}.gsfi,.lst{font:16px arial,sans-serif;line-height:34px;height:34px !important;}.lst-c{overflow:hidden}#gs_st0{line-height:44px;padding:0 8px;margin-top:-1px;position:static}.srp #gs_st0{padding:0 2px 0 8px}.gsfs{font:16px arial,sans-serif}.lsb{background:transparent;border:0;font-size:0;height:30px;outline:0;text-align:left;width:100%}.sbico{display:inline-block;height:24px;width:24px;cursor:pointer;vertical-align:middle;color:#4285f4}.sbico-c{background:transparent;border:0;float:right;height:44px;line-height:44px;margin-top:-1px;outline:0;padding-right:16px;position:relative;top:-1px}.hp .sbico-c{display:none}#sblsbb{text-align:center;border-bottom-left-radius:0;border-top-left-radius:0;height:44px;margin:0;padding:0;}#sbds{border:0;margin-left:0}.hp .nojsb,.srp .jsb{display:none}.kpbb,.kprb,.kpgb,.kpgrb{border-radius:2px;border-radius:2px;color:#fff}.kpbb:hover,.kprb:hover,.kpgb:hover,.kpgrb:hover{box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#fff}.kpbb:active,.kprb:active,.kpgb:active,.kpgrb:active{box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);box-shadow:inset 0 1px 2px rgba(0,0,0,0.3)}.kpbb{background-color:#4d90fe;background-image:-moz-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed}.kpbb:hover{background-color:#357ae8;background-image:-moz-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7}a.kpbb:link,a.kpbb:visited{color:#fff}.kprb{background-color:#dd4b39;background-image:-moz-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);border:1px solid #dd4b39}.kprb:hover{background-color:#c53727;background-image:-moz-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);border:1px solid #b0281a;border-bottom-color:#af301f}.kprb:active{background-color:#b0281a;background-image:-moz-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a)}.kpgb{background-color:#3d9400;background-image:-moz-linear-gradient(top,#3d9400,#398a00);background-image:linear-gradient(top,#3d9400,#398a00);border:1px solid #29691d}.kpgb:hover{background-color:#368200;background-image:-moz-linear-gradient(top,#3d9400,#368200);background-image:linear-gradient(top,#3d9400,#368200);border:1px solid #2d6200}.kpgrb{background-color:#f5f5f5;background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;color:#555}.kpgrb:hover{background-color:#f8f8f8;background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #dcdcdc;color:#333}a.kpgrb:link,a.kpgrb:visited{color:#555}#sfopt{display:inline-block;float:right;line-height:normal}.lsd{font-size:11px;position:absolute;top:3px;left:16px}.sbsb_g{margin:3px 0 4px}.jhp input[type="submit"],.sbdd_a input,.gbqfba{background-image:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);-moz-border-radius:2px;-moz-user-select:none;background-color:#f2f2f2;border:1px solid #f2f2f2;border-radius:2px;color:#757575;cursor:default;font-family:arial,sans-serif;font-size:13px;font-weight:bold;margin:11px 4px;min-width:54px;padding:0 16px;text-align:center}.gbqfba.gbqfba-hvr{font-size:13px}.jhp input[type="submit"],.gbqfba{height:36px;line-height:27px}.sbdd_a input{height:100%}.jhp input[type="submit"]:hover,.sbdd_a input:hover,.gbqfba:hover{background-image:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);-moz-box-shadow:0 1px 1px rgba(0,0,0,0.1);background-color:#f8f8f8;background-image:linear-gradient(top,#f8f8f8,#f1f1f1);background-image:-o-linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;box-shadow:0 1px 1px rgba(0,0,0,0.1);color:#222}.jhp input[type="submit"]:focus,.sbdd_a input:focus{border:1px solid #4d90fe;outline:none}.sbdd_a input{margin:6px;height:27px}span.lsbb,.lsb input{-moz-transition:all 0.18s}@media only screen and (max-height:650px){span.lsbb{height:17px}}.tsf{background:none}.tsf-p{position:relative;}.logocont{left:0;position:absolute;}.sfibbbc{padding-bottom:2px;padding-top:3px;margin-top:-2px;width:632px}.sbtc{position:relative}.sbibtd{line-height:0;overflow:visible;white-space:nowrap}.sbibps{padding:0 9px 0 16px;width:466px;}.big .sbibps{width:550px}.sfopt{height:28px;position:relative}#sform{height:65px}.hp .sfsbc{display:none}#searchform{width:100%}.hp #searchform{position:absolute;top:311px}.srp #searchform{position:absolute;top:19px}#sfdiv{max-width:484px}.hp .big #sfdiv{max-width:584px;margin:-1px 0px 1px}.srp #sfdiv{max-width:none;overflow:hidden}.srp #tsf{position:relative;}.hp .tsf-p{padding-top:8px}.sfsbc{display:inline-block;float:right;margin-right:1px;vertical-align:top;width:42px;margin-right:0}.sfbg{background:#fafafa;height:69px;left:0;position:absolute;width:100%}.sfbgg{background-color:#fafafa;height:65px}#pocs{background:#fff1a8;color:#000;font-size:10pt;margin:0;padding:5px 7px}#pocs.sft{background:transparent;color:#777}#pocs a{color:#11c}#pocs.sft a{color:#36c}#pocs>div{margin:0;padding:0}#cnt{padding-top:20px;}#subform_ctrl{min-height:0px}.gb_7a{display:none!important}.gb_8a{visibility:hidden}@-moz-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}#gbq2{display:block}#gbqf{display:block;margin:0;margin-right:60px;white-space:nowrap}.gbqff{border:none;display:inline-block;margin:0;padding:0;vertical-align:top;width:100%}.gbqfqw,#gbqfb,.gbqfwa{vertical-align:top}#gbqfaa,#gbqfab,#gbqfqwb{position:absolute}#gbqfaa{left:0}#gbqfab{right:0}.gbqfqwb,.gbqfqwc{right:0;left:0;height:100%}.gbqfqwb{padding:0 8px}#gbqfbw{display:inline-block;vertical-align:top}#gbqfb{border:1px solid transparent;border-bottom-left-radius:0;border-top-left-radius:0;height:30px;margin:0;outline:none;padding:0 0;width:60px;-moz-box-shadow:none;box-shadow:none;-moz-box-sizing:border-box;box-sizing:border-box;background:#4285f4;background:-moz-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)}#gbqfb:hover{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}#gbqfb:focus{-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}#gbqfb:hover:focus{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}#gbqfb:active:active{border:1px solid transparent;-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-moz-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)}.gbqfi{background-position:-428px 0;display:inline-block;margin:-1px;height:30px;width:30px}.gbqfqw{background:#fff;background-clip:padding-box;border:1px solid #cdcdcd;border-color:rgba(0,0,0,.15);border-right-width:0;height:30px;-moz-box-sizing:border-box;box-sizing:border-box}#gbfwc .gbqfqw{border-right-width:1px}#gbqfqw{position:relative}.gbqfqw.gbqfqw:hover{border-color:#a9a9a9;border-color:rgba(0,0,0,.3)}.gbqfwa{display:inline-block;width:100%}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw.gbqfqw:active,.gbqfqw.gbqfqwf.gbqfqwf{border-color:#4285f4}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:20px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{color:#222;font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif!important;vertical-align:top}.gb_ga .gbqfqw.gbqfqw,.gb_X .gbqfqw.gbqfqw{border-color:rgba(255,255,255,1);-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_ga #gbqfb,.gb_X #gbqfb{-moz-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_ga #gbqfb:hover,.gb_X #gbqfb:hover{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_ga #gbqfb:active,.gb_X #gbqfb:active{-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gbqfb,.gbqfba,.gbqfbb{cursor:default!important;display:inline-block;font-weight:bold;height:29px;line-height:29px;min-width:54px;padding:0 8px;text-align:center;text-decoration:none!important;-moz-border-radius:2px;border-radius:2px;-moz-user-select:-moz-none}.gbqfba:focus{border:1px solid #4d90fe;outline:none;-moz-box-shadow:inset 0 0 0 1px #fff;box-shadow:inset 0 0 0 1px #fff}.gbqfba:hover{border-color:#c6c6c6;color:#222!important;-moz-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15);background:#f8f8f8;background:-moz-linear-gradient(top,#f8f8f8,#f1f1f1);background:linear-gradient(top,#f8f8f8,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:hover:focus{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff;box-shadow:0 1px 0 rgba(0,0,0,.15),inset 0 0 0 1px #fff}.gbqfb::-moz-focus-inner{border:0}.gbqfba::-moz-focus-inner{border:0}.gbqfba{border:1px solid #dcdcdc;border-color:rgba(0,0,0,0.1);color:#444!important;font-size:11px;background:#f5f5f5;background:-moz-linear-gradient(top,#f5f5f5,#f1f1f1);background:linear-gradient(top,#f5f5f5,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:active{-moz-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}@-moz-keyframes gb__nb{0%{-moz-transform:scale(0,0);transform:scale(0,0)}20%{-moz-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-moz-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-moz-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-moz-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}@keyframes gb__nb{0%{-moz-transform:scale(0,0);transform:scale(0,0)}20%{-moz-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-moz-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-moz-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-moz-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}.gb_uc{background-position:-314px -38px;opacity:.55;height:100%;width:100%}.gb_b:hover .gb_uc,.gb_b:focus .gb_uc{opacity:.85}.gb_vc .gb_uc{background-position:-463px 0}.gb_wc{background-color:#cb4437;-moz-border-radius:8px;border-radius:8px;font:bold 11px Arial;color:#fff;line-height:16px;min-width:14px;padding:0 1px;position:absolute;right:0;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.1);top:0;visibility:hidden;z-index:990}.gb_xc .gb_wc,.gb_xc .gb_yc,.gb_xc .gb_yc.gb_zc{visibility:visible}.gb_yc{padding:0 2px;visibility:hidden}.gb_Ac:not(.gb_Bc) .gb_mb,.gb_Ac:not(.gb_Bc) .gb_lb{left:3px}.gb_wc.gb_Cc{-moz-animation:gb__nb .6s 1s both ease-in-out;animation:gb__nb .6s 1s both ease-in-out;-moz-perspective-origin:top right;perspective-origin:top right;-moz-transform:scale(1,1);transform:scale(1,1);-moz-transform-origin:top right;transform-origin:top right}.gb_Cc .gb_yc{visibility:visible}.gb_ga .gb_b .gb_uc{background-position:0 0;opacity:.7}.gb_ga .gb_vc .gb_uc{background-position:-279px -38px}.gb_ga .gb_b:hover .gb_uc,.gb_ga .gb_b:focus .gb_uc{opacity:.85}.gb_X .gb_b .gb_uc{background-position:-349px -38px;opacity:1}.gb_X .gb_vc .gb_uc{background-position:-393px 0}.gb_ga .gb_wc,.gb_X .gb_wc{border:none}.gb_Ac .gb_Dc{font-size:14px;font-weight:bold;top:0;right:0}.gb_Ac .gb_b{display:inline-block;vertical-align:middle;-moz-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px}.gb_Ac .gb_lb{border-bottom-color:#e5e5e5}.gb_Ec{background-color:rgba(0,0,0,.55);color:#fff;font-size:12px;font-weight:bold;line-height:20px;margin:5px;padding:0 2px;text-align:center;-moz-box-sizing:border-box;box-sizing:border-box;-moz-border-radius:50%;border-radius:50%;height:20px;width:20px}.gb_Ec.gb_Fc{background-position:-194px -21px}.gb_Ec.gb_Hc{background-position:-194px -46px}.gb_b:hover .gb_Ec,.gb_b:focus .gb_Ec{background-color:rgba(0,0,0,.85)}#gbsfw.gb_Ic{background:#e5e5e5;border-color:#ccc}.gb_ga .gb_Ec{background-color:rgba(0,0,0,.7)}.gb_X .gb_Ec.gb_Ec,.gb_X .gb_xc .gb_Ec.gb_Ec,.gb_X .gb_xc .gb_b:hover .gb_Ec,.gb_X .gb_xc .gb_b:focus .gb_Ec{background-color:#fff;color:#404040}.gb_X .gb_Ec.gb_Fc{background-position:-70px 0}.gb_X .gb_Ec.gb_Hc{background-position:-219px 0}.gb_xc .gb_Ec.gb_Ec{background-color:#db4437;color:#fff}.gb_xc .gb_b:hover .gb_Ec,.gb_xc .gb_b:focus .gb_Ec{background-color:#a52714}.gb_N .gbqfi::before{left:-428px;top:0}.gb_Hb .gbqfb:focus .gbqfi{outline:1px dotted #fff}.gb_fa .gb_b{background-position:-132px -38px;opacity:.55}.gb_ga .gb_fa .gb_b{background-position:-132px -38px}.gb_X .gb_fa .gb_b{background-position:-463px -35px;opacity:1}.gb_ha.gb_ia{min-height:196px;overflow-y:auto;width:320px}.gb_ja{-moz-transition:height .2s ease-in-out;transition:height .2s ease-in-out}.gb_ka{background:#fff;margin:0;min-height:100px;padding:28px;padding-right:27px;text-align:left;white-space:normal;width:265px}.gb_la{background:#f5f5f5;cursor:pointer;height:40px;overflow:hidden}.gb_ma{position:relative}.gb_la{display:block;line-height:40px;text-align:center;width:320px}.gb_ma{display:block;line-height:40px;text-align:center}.gb_ma.gb_na{line-height:0}.gb_la,.gb_la:visited,.gb_la:active,.gb_ma,.gb_ma:visited{color:#737373;text-decoration:none}.gb_ma:active{color:#737373}#gb a.gb_la,#gb a.gb_la:visited,#gb a.gb_la:active,#gb a.gb_ma,#gb a.gb_ma:visited{color:#737373;text-decoration:none}#gb a.gb_ma:active{color:#737373}.gb_ma,.gb_ka{display:none}.gb_da,.gb_da+.gb_ma,.gb_oa .gb_ma,.gb_oa .gb_ka{display:block}.gb_ma:hover,.gb_ma:active,#gb a.gb_ma:hover,#gb a.gb_ma:active{text-decoration:underline}.gb_ma{border-bottom:1px solid #ebebeb;left:28px;width:264px}.gb_oa .gb_la{display:none}.gb_ma:last-child{border-bottom-width:0}.gb_pa .gb_O{display:initial}.gb_pa.gb_qa{height:100px;text-align:center}.gb_pa.gb_qa img{padding:34px 0;height:32px;width:32px}.gb_pa .gb_3{background-image:url('//ssl.gstatic.com/gb/images/p1_a4541be8.png');background-size:64px 2065px;background-position:0 -690px}.gb_pa .gb_3+img{border:0;margin:8px;height:48px;width:48px}.gb_pa div.gb_ra{background:#ffa;-moz-border-radius:5px;border-radius:5px;padding:5px;text-align:center}.gb_pa.gb_sa,.gb_pa.gb_ta{padding-bottom:0}.gb_pa.gb_ua,.gb_pa.gb_ta{padding-top:0}.gb_pa.gb_ta a,.gb_pa.gb_ua a{top:0}.gb_va .gb_la{margin-top:0;position:static}.gb_wa{display:inline-block}.gb_xa{margin:-12px 28px 28px;position:relative;width:264px;-moz-border-radius:2px;border-radius:2px;-moz-box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1)}.gb_6{background-image:url('//ssl.gstatic.com/gb/images/p1_a4541be8.png');background-size:64px 2065px;display:inline-block;margin:8px;vertical-align:middle;height:64px;width:64px}.gb_ya{color:#262626;display:inline-block;font:13px/18px Arial,sans-serif;margin-right:80px;padding:10px 10px 10px 0;vertical-align:middle;white-space:normal}.gb_za{font:16px/24px Arial,sans-serif}.gb_Aa,#gb#gb .gb_Aa{color:#427fed;text-decoration:none}.gb_Aa:hover,#gb#gb .gb_Aa:hover{text-decoration:underline}.gb_Ba .gb_ka{position:relative}.gb_Ba .gb_O{position:absolute;top:28px;left:28px}.gb_la.gb_Ca{display:none;height:0}.gb_Ba .gb_5{position:absolute;width:86px;top:112px;left:28px;margin:8px 2px}.gb_9a{background-size:32px 32px;-moz-border-radius:50%;border-radius:50%;display:block;margin:-1px;overflow:hidden;position:relative;height:32px;width:32px;z-index:0}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_9a::before{display:inline-block;-moz-transform:scale(.5);transform:scale(.5);-moz-transform-origin:left 0;transform-origin:left 0}.gb_ub::before{display:inline-block;-moz-transform:scale(.5);transform:scale(.5);-moz-transform-origin:left 0;transform-origin:left 0}}.gb_9a:hover,.gb_9a:focus{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_9a:active{-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15)}.gb_9a:active::after{background:rgba(0,0,0,.1);-moz-border-radius:50%;border-radius:50%;content:'';display:block;height:100%}.gb_ab{cursor:pointer;line-height:30px;min-width:30px;opacity:.75;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}.gb_b.gb_ab{width:auto}.gb_ab:hover,.gb_ab:focus{opacity:.85}.gb_bb .gb_ab,.gb_bb .gb_cb{line-height:26px}#gb#gb.gb_bb a.gb_ab,.gb_bb .gb_cb{font-size:11px;height:auto}.gb_db{border-top:4px solid #000;border-left:4px dashed transparent;border-right:4px dashed transparent;display:inline-block;margin-left:6px;opacity:.75;vertical-align:middle}.gb_eb:hover .gb_db{opacity:.85}.gb_X .gb_ab,.gb_X .gb_db{opacity:1}#gb#gb.gb_X.gb_X a.gb_ab,#gb#gb .gb_X.gb_X a.gb_ab{color:#fff}.gb_X.gb_X .gb_db{border-top-color:#fff;opacity:1}.gb_ga .gb_9a:hover,.gb_X .gb_9a:hover,.gb_ga .gb_9a:focus,.gb_X .gb_9a:focus{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_fb .gb_gb,.gb_hb .gb_gb{position:absolute;right:1px}.gb_gb.gb_R,.gb_ib.gb_R,.gb_eb.gb_R{flex:0 1 auto;flex:0 1 main-size}.gb_jb.gb_W .gb_ab{width:30px!important}.gb_kb.gb_8a{display:none}.gb_ab~.gb_lb,.gb_ab~.gb_mb{left:auto;right:6.5px}.gb_nb{outline:none}.gb_ob,#gb a.gb_ob.gb_ob,.gb_pb a,#gb .gb_pb.gb_pb a{color:#36c;text-decoration:none}.gb_ob:active,#gb a.gb_ob:active,.gb_ob:hover,#gb a.gb_ob:hover,.gb_pb a:active,#gb .gb_pb a:active,.gb_pb a:hover,#gb .gb_pb a:hover{text-decoration:underline}.gb_qb{margin:20px}.gb_rb,.gb_sb{display:inline-block;vertical-align:top}.gb_rb{margin-right:20px;position:relative}.gb_tb{-moz-border-radius:50%;border-radius:50%;overflow:hidden}.gb_ub{background-size:96px 96px;border:none;vertical-align:top;height:96px;width:96px}.gb_kb{background:rgba(78,144,254,.7);bottom:0;color:#fff;font-size:9px;font-weight:bold;left:0;line-height:9px;position:absolute;padding:7px 0;text-align:center;width:96px}.gb_tb .gb_kb{background:rgba(0,0,0,.54)}.gb_vb{font-weight:bold;margin:-4px 0 1px 0}.gb_xb{color:#666}.gb_pb{color:#ccc;margin:6px 0}.gb_pb a{margin:0 10px}.gb_pb a:first-child{margin-left:0}.gb_pb a:last-child{margin-right:0}.gb_sb .gb_yb{background:#4d90fe;border-color:#3079ed;font-weight:bold;margin:10px 0 0 0;color:#fff}#gb .gb_sb a.gb_yb.gb_yb{color:#fff}.gb_sb .gb_yb:hover{background:#357ae8;border-color:#2f5bb7}.gb_zb{background:#f5f5f5;border-top:1px solid #ccc;border-color:rgba(0,0,0,.2);padding:10px 0;width:100%;display:table}.gb_zb .gb_yb{margin:0 20px}.gb_zb>div{display:table-cell;text-align:right}.gb_zb>div:first-child{text-align:left}.gb_zb .gb_Ab{display:block;text-align:center}.gb_Bb .gb_lb{border-bottom-color:#fef9db}.gb_Cb{background:#fef9db;font-size:11px;padding:10px 20px;white-space:normal}.gb_Cb b,.gb_ob{white-space:nowrap}.gb_Eb{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);max-height:230px;overflow:auto}.gb_Fb{border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px;position:relative;white-space:nowrap}.gb_Hb .gb_Fb:focus .gb_Ib{outline:1px dotted #fff}.gb_Fb:hover{background:#eee}.gb_Fb[selected="true"]{overflow:hidden}.gb_Fb[selected="true"]>.gb_Jb{background-color:rgba(117,117,117,.9)}.gb_Fb[selected="true"]>.gb_Kb{display:block;position:absolute;z-index:2}.gb_Kb{background-color:transparent;border:none;color:#fff;display:none;font-family:Roboto,Arial,sans-serif;font-weight:400;font-size:14px;height:36px;min-width:86px;text-align:center;top:16px;width:auto}.gb_Kb:focus{outline:0}.gb_Fb[selected="true"]>.gb_Kb:hover{-moz-border-radius:2px;border-radius:2px;background-color:#565656}.gb_Fb[selected="true"]>.gb_Kb:active{-moz-border-radius:2px;border-radius:2px;background-color:#212121}.gb_Lb{left:0;margin-left:5%}.gb_Mb{margin-right:5%;right:0}.gb_Fb:first-child,.gb_Nb:first-child+.gb_Fb{border-top:0}.gb_Nb{display:none}.gb_Ob{cursor:default}.gb_Ob:hover{background:transparent}.gb_Pb{border:none;vertical-align:top;height:48px;width:48px}.gb_Ib{display:inline-block;margin:6px 0 0 10px}.gb_Ob .gb_Pb,.gb_Ob .gb_Ib{opacity:.4}.gb_Qb{color:#000}.gb_Ob .gb_Qb{color:#666}.gb_Rb{color:#666}.gb_Sb{color:#666;font-style:italic}.gb_Jb{background-color:transparent;height:100%;left:0;position:absolute;text-align:center;top:0;width:100%;z-index:1}.gb_Kb:hover{background-color:rgba(100,100,100,0.4)}.gb_Tb{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px}.gb_Ub{background-position:-244px 0;display:inline-block;margin:1px 0;vertical-align:middle;height:25px;width:25px}.gb_N .gb_Ub::before{left:-244px;top:0}.gb_Vb{color:#427fed;display:inline-block;padding:0 25px 0 10px;vertical-align:middle;white-space:normal}.gb_Tb:hover .gb_Vb{text-decoration:underline}#gb#gb a.gb_O{color:#404040;text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{color:#000}.gb_P{opacity:.75}#gb#gb a.gb_P:hover,#gb#gb a.gb_P:focus{opacity:.85;text-decoration:underline}.gb_Q.gb_R{display:none;padding-left:15px;vertical-align:middle}.gb_Q.gb_R:first-child{padding-left:0}.gb_S.gb_R{display:inline-block}.gb_Q span{opacity:.55;-moz-user-select:text}.gb_T .gb_S.gb_R{flex:0 1 auto;flex:0 1 main-size;display:-webkit-flex;display:flex}.gb_U .gb_S.gb_R{display:none}.gb_Q .gb_P{display:inline-block;line-height:24px;outline:none;vertical-align:middle}.gb_S .gb_P{display:none}.gb_V .gb_S .gb_P{min-width:0}.gb_W .gb_S .gb_P{width:0!important}#gb#gb.gb_X a.gb_P,#gb#gb.gb_X span.gb_P,#gb#gb .gb_X a.gb_P,#gb#gb .gb_X span.gb_P{color:#fff}#gb#gb.gb_X span.gb_P,#gb#gb .gb_X span.gb_P{opacity:.7}.gb_Wc{display:inline-block;padding:0 0 0 15px;vertical-align:middle}.gb_Wc:first-child,#gbsfw:first-child+.gb_Wc{padding-left:0}.gb_Dc{position:relative}.gb_b{display:inline-block;outline:none;vertical-align:middle;-moz-border-radius:2px;border-radius:2px;-moz-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px;color:#000;cursor:pointer;text-decoration:none}#gb#gb a.gb_b{color:#000;cursor:pointer;text-decoration:none}.gb_lb{border-color:transparent;border-bottom-color:#fff;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:6.5px;top:37px;z-index:1;height:0;width:0;-moz-animation:gb__a .2s;animation:gb__a .2s}.gb_mb{border-color:transparent;border-style:dashed dashed solid;border-width:0 8.5px 8.5px;display:none;position:absolute;left:6.5px;z-index:1;height:0;width:0;-moz-animation:gb__a .2s;animation:gb__a .2s;border-bottom-color:#ccc;border-bottom-color:rgba(0,0,0,.2);top:36px}x:-o-prefocus,div.gb_mb{border-bottom-color:#ccc}.gb_ha{background:#fff;border:1px solid #ccc;border-color:rgba(0,0,0,.2);color:#000;-moz-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2);display:none;outline:none;overflow:hidden;position:absolute;right:0;top:44px;-moz-animation:gb__a .2s;animation:gb__a .2s;-moz-border-radius:2px;border-radius:2px;-moz-user-select:text}.gb_Wc.gb_g .gb_lb,.gb_Wc.gb_g .gb_mb,.gb_Wc.gb_g .gb_ha,.gb_g.gb_ha{display:block}.gb_Wc.gb_g.gb_Le .gb_lb,.gb_Wc.gb_g.gb_Le .gb_mb{display:none}.gb_Me{position:absolute;right:0;top:44px;z-index:-1}.gb_bb .gb_lb,.gb_bb .gb_mb,.gb_bb .gb_ha{margin-top:-10px}#gbsfw{min-width:400px;overflow:visible}.gb_Wb,#gbsfw.gb_g{display:block;outline:none}#gbsfw.gb_ra iframe{display:none}.gb_Xb{padding:118px 0;text-align:center}.gb_Zb{background:no-repeat center 0;color:#aaa;font-size:13px;line-height:20px;padding-top:76px;background-image:url('//ssl.gstatic.com/gb/images/a/f5cdd88b65.png')}.gb_Zb a{color:#4285f4;text-decoration:none}a.gb_Da{border:none;color:#4285f4;cursor:default;font-weight:bold;outline:none;position:relative;text-align:center;text-decoration:none;text-transform:uppercase;white-space:nowrap;-moz-user-select:none}a.gb_Da:hover:after,a.gb_Da:focus:after{background-color:rgba(0,0,0,.12);content:'';height:100%;left:0;position:absolute;top:0;width:100%}a.gb_Da:hover,a.gb_Da:focus{text-decoration:none}a.gb_Da:active{background-color:rgba(153,153,153,.4);text-decoration:none}a.gb_Ea{background-color:#4285f4;color:#fff}a.gb_Ea:active{background-color:#0043b2}.gb_Fa{-moz-box-shadow:0 1px 1px rgba(0,0,0,.16);box-shadow:0 1px 1px rgba(0,0,0,.16)}.gb_Da,.gb_Ea,.gb_Ha,.gb_Ia{display:inline-block;line-height:28px;padding:0 12px;-moz-border-radius:2px;border-radius:2px}.gb_Ha{background:#f8f8f8;border:1px solid #c6c6c6}.gb_Ia{background:#f8f8f8}.gb_Ha,#gb a.gb_Ha.gb_Ha,.gb_Ia{color:#666;cursor:default;text-decoration:none}#gb a.gb_Ia.gb_Ia{cursor:default;text-decoration:none}.gb_Ia{border:1px solid #4285f4;font-weight:bold;outline:none;background:#4285f4;background:-moz-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)}#gb a.gb_Ia.gb_Ia{color:#fff}.gb_Ia:hover{-moz-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_Ia:active{-moz-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-moz-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)}.gb_0b{min-width:127px;overflow:hidden;position:relative;z-index:987}.gb_1b{position:absolute;padding:0 20px 0 15px}.gb_2b .gb_1b{right:100%;margin-right:-127px}.gb_3b{display:inline-block;outline:none;vertical-align:middle}.gb_4b .gb_3b{position:relative;top:2px}.gb_3b .gb_5b,.gb_Za{display:block}.gb_6b{border:none;display:block;visibility:hidden}.gb_3b .gb_5b{background-position:0 -35px;height:33px;width:92px}.gb_Za{background-repeat:no-repeat}.gb_X .gb_3b .gb_5b{background-position:-296px 0}.gb_ga .gb_3b .gb_5b{background-position:-97px 0;opacity:.54}.gb_Ne{display:inline-block;line-height:normal;position:relative;z-index:987}.gb_Se .gb_b{background-position:-498px -35px;opacity:.55;height:30px;width:30px}.gb_Se .gb_b:hover,.gb_Se .gb_b:focus{opacity:.85}.gb_Se .gb_lb{border-bottom-color:#f5f5f5}#gbsfw.gb_Te{background:#f5f5f5;border-color:#ccc}.gb_X .gb_Se .gb_b{background-position:-428px -35px;opacity:1}.gb_ga .gb_Se .gb_b{background-position:-498px 0;opacity:.7}.gb_ga .gb_Se .gb_b:hover,.gb_ga .gb_Se .gb_b:focus{opacity:.85}.gb_Qf{color:#000;font:13px/27px Arial,sans-serif;left:0;min-width:1092px;position:absolute;top:0;-moz-user-select:-moz-none;width:100%}.gb_Ve{font:13px/27px Arial,sans-serif;position:relative;height:60px;width:100%}.gb_bb .gb_Ve{height:28px}#gba{height:60px}#gba.gb_bb{height:28px}#gba.gb_Rf{height:90px}#gba.gb_Sf{height:132px}#gba.gb_Rf.gb_bb{height:58px}.gb_Ve>.gb_R{height:60px;line-height:58px;vertical-align:middle}.gb_bb .gb_Ve>.gb_R{height:28px;line-height:26px}.gb_Ve::before{background:#e5e5e5;bottom:0;content:'';display:none;height:1px;left:0;position:absolute;right:0}.gb_Ve{background:#f1f1f1}.gb_Tf .gb_Ve{background:#fff}.gb_Tf .gb_Ve::before,.gb_bb .gb_Ve::before{display:none}.gb_ga .gb_Ve,.gb_X .gb_Ve,.gb_bb .gb_Ve{background:transparent}.gb_ga .gb_Ve::before{background:#e1e1e1;background:rgba(0,0,0,.12)}.gb_X .gb_Ve::before{background:#333;background:rgba(255,255,255,.2)}.gb_R{display:inline-block;flex:0 0 auto;flex:0 0 main-size}.gb_R.gb_Uf{float:right;order:1}.gb_Vf{white-space:nowrap}.gb_T .gb_Vf{display:-webkit-flex;display:flex}.gb_Vf,.gb_R{margin-left:0!important;margin-right:0!important}.gb_5b{background-image:url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png');background-size:528px 68px}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_5b{background-image:url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')}}.gb_jb{min-width:255px;padding-left:30px;padding-right:30px;position:relative;text-align:right;z-index:986;align-items:center;justify-content:flex-end;-moz-user-select:-moz-none}.gb_bb .gb_jb{min-width:0}.gb_jb.gb_R{flex:1 1 auto;flex:1 1 main-size}.gb_sc{line-height:normal;position:relative;text-align:left}.gb_sc.gb_R,.gb_Ff.gb_R,.gb_cb.gb_R{flex:0 1 auto;flex:0 1 main-size}.gb_Hf,.gb_If{display:inline-block;padding:0 0 0 15px;position:relative;vertical-align:middle}.gb_Ff{line-height:normal;padding-right:15px}.gb_jb .gb_Ff.gb_U{padding-right:0}.gb_cb{color:#404040;line-height:30px;min-width:30px;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}#gb.gb_bb.gb_bb .gb_cf,#gb.gb_bb.gb_bb .gb_sc>.gb_If .gb_df{background:none;border:none;color:#36c;cursor:pointer;filter:none;font-size:11px;line-height:26px;padding:0;-moz-box-shadow:none;box-shadow:none}#gb.gb_bb.gb_X .gb_cf,#gb.gb_bb.gb_X .gb_sc>.gb_If .gb_df{color:#fff}.gb_bb .gb_cf{text-transform:uppercase}.gb_jb.gb_V{padding-left:0;padding-right:29px}.gb_jb.gb_Jf{max-width:400px}.gb_Kf{background-clip:content-box;background-origin:content-box;opacity:.27;padding:22px;height:16px;width:16px}.gb_Kf.gb_R{display:none}.gb_Kf:hover,.gb_Kf:focus{opacity:.55}.gb_Lf{background-position:-219px -25px}.gb_Mf{background-position:-194px 0;padding-left:30px;padding-right:14px;position:absolute;right:0;top:0;z-index:990}.gb_fb:not(.gb_hb) .gb_Mf,.gb_V .gb_Lf{display:inline-block}.gb_fb .gb_Lf{padding-left:30px;padding-right:0;width:0}.gb_fb:not(.gb_hb) .gb_Nf{display:none}.gb_jb.gb_R.gb_V,.gb_V:not(.gb_hb) .gb_sc{flex:0 0 auto;flex:0 0 main-size}.gb_Kf,.gb_V .gb_Ff,.gb_hb .gb_sc{overflow:hidden}.gb_fb .gb_Ff{padding-right:0}.gb_V .gb_sc{padding:1px 1px 1px 0}.gb_fb .gb_sc{width:75px}.gb_jb.gb_Of,.gb_jb.gb_Of .gb_Lf,.gb_jb.gb_Of .gb_Lf::before,.gb_jb.gb_Of .gb_Ff,.gb_jb.gb_Of .gb_sc{-moz-transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out;transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out}.gb_T .gb_jb{min-width:0}.gb_jb.gb_W,.gb_jb.gb_W .gb_sc,.gb_jb.gb_Pf,.gb_jb.gb_Pf .gb_sc{min-width:0!important}.gb_jb.gb_W,.gb_jb.gb_W .gb_R{-moz-box-flex:0 0 auto!important;flex:0 0 auto!important}.gb_jb.gb_W .gb_cb{width:30px!important}.gb_Ve ::-webkit-scrollbar{height:15px;width:15px}.gb_Ve ::-webkit-scrollbar-button{height:0;width:0}.gb_Ve ::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:rgba(0,0,0,.3);border:5px solid transparent;-moz-border-radius:10px;border-radius:10px;min-height:20px;min-width:20px;height:5px;width:5px}.gb_Ve ::-webkit-scrollbar-thumb:hover,.gb_Ve ::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.4)}#gb.gb_Zf{min-width:980px}#gb.gb_Zf .gb_Re{min-width:0;position:static;width:0}.gb_Lc{display:none}.gb_Zf .gb_Ve{background:transparent;border-bottom-color:transparent}.gb_Zf .gb_Ve::before{display:none}.gb_Zf.gb_Zf .gb_Q{display:inline-block}.gb_Zf.gb_jb .gb_Ff.gb_U{padding-right:15px}.gb_T.gb_Zf .gb_S.gb_R{display:-webkit-flex;display:flex}.gb_Zf.gb_T #gbqf{display:block}.gb_Zf #gbq{height:0;position:absolute}.gb_Zf.gb_jb{z-index:987}sentinel{}#gbq .gbgt-hvr,#gbq .gbgt:focus{background-color:transparent;background-image:none}.gbqfh#gbq1{display:none}.gbxx{display:none !important}#gbq{line-height:normal;position:relative;top:0px;white-space:nowrap}#gbq{left:0;width:100%}#gbq2{top:0px;z-index:986}#gbq4{display:inline-block;max-height:29px;overflow:hidden;position:relative}.gbqfh#gbq2{z-index:985}.gbqfh#gbq2{margin:0;margin-left:0 !important;padding-top:0;position:relative;top:310px}.gbqfh #gbqf{margin:auto;min-width:534px;padding:0 !important}.gbqfh #gbqfbw{display:none}.gbqfh #gbqfbwa{display:block}.gbqfh #gbqf{max-width:572px;min-width:572px}.gbqfh .gbqfqw{border-right-width:1px}
.gbii::before{content:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s32-c-mo/photo.jpg)}.gbip::before{content:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s96-c-mo/photo.jpg)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii::before{content:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s64-c-mo/photo.jpg)}.gbip::before{content:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s192-c-mo/photo.jpg)}}
.gbii{background-image:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s32-c-mo/photo.jpg)}.gbip{background-image:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s96-c-mo/photo.jpg)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii{background-image:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s64-c-mo/photo.jpg)}.gbip{background-image:url(https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s192-c-mo/photo.jpg)}}
</style><style data-jiis="cc" id="gstyle">html,body{height:100%;margin:0}#viewport{min-height:100%;position:relative;width:100%}.content{padding-bottom:35px}#footer{bottom:0;font-size:10pt;height:35px;position:absolute;width:100%}#gog{padding:3px 8px 0}.gac_m td{line-height:17px}body,td,a,p,.h{font-family:arial,sans-serif}.h{color:#1a0dab;font-size:20px}.q{color:#00c}.ts td{padding:0}.ts{border-collapse:collapse}em{font-weight:bold;font-style:normal}.ds{display:inline-block;}span.ds{margin:3px 0 4px;margin-left:4px}.ctr-p{margin:0 auto;min-width:980px}a.gb1,a.gb2,a.gb3,a.gb4{color:#11c !important}body{background:#fff;color:#222}a{color:#1a0dab;text-decoration:none}a:hover,a:active{text-decoration:underline}.fl a{color:#1a0dab}a:visited{color:#609}a.gb1,a.gb4{text-decoration:underline}a.gb3:hover{text-decoration:none}#ghead a.gb2:hover{color:#fff !important}.sblc{padding-top:5px}.sblc a{display:block;margin:2px 0;margin-left:13px;font-size:11px}.lsbb{height:30px;display:block}.ftl,#footer a{color:#666;margin:2px 10px 0}#footer a:active{color:#dd4b39}.lsb{border:none;color:#000;cursor:pointer;height:30px;margin:0;outline:0;vertical-align:top}.lst:focus{outline:none}body,html{font-size:small}h1,ol,ul,li{margin:0;padding:0}.nojsv{visibility:hidden}.hp #logocont.nojsv{display:none}#body,#footer{display:block}.igehp{display:none}#flci{float:left;margin-left:0;text-align:left;width:0}#fll{float:right;text-align:right;width:100%}#ftby{padding-left:0}#ftby>div,#fll>div,#footer a{display:inline-block}@media only screen and (min-width:1222px){#ftby{margin:0 44px}}.logo-subtext{color:#4285f4;font:16px/16px roboto-regular, arial, sans-serif;left:215px;position:relative;top:76px;white-space:nowrap}</style><style>#ss-box{background:#fff;border:1px solid;border-color:#c9d7f1 #36c #36c #a2bae7;left:0;margin-top:.1em;position:absolute;visibility:hidden;z-index:103}#ss-box a{display:block;padding:.2em .31em;text-decoration:none}#ss-box a:hover{background:#4d90fe;color:#fff !important}a.ss-selected{color:#222 !important;font-weight:bold}a.ss-unselected{color:#1a0dab !important}.ss-selected .mark{display:inline}.ss-unselected .mark{visibility:hidden}#ss-barframe{background:#fff;left:0;position:absolute;visibility:hidden;z-index:100}.gl{white-space:nowrap}.big .tsf-p{padding-left:150px;padding-right:352px}.hp .tsf-p{padding-left:173px;padding-right:173px}.hp #tsf{margin:0 auto;width:833px}#tsf{width:833px}.big #tsf,.hp .big #tsf{width:1139px}.tsf-p{padding-left:150px;padding-right:46px}.hp .big .tsf-p{padding-left:284px;padding-right:284px}</style><script>(function(){var b=[function(){google.c&&google.tick("load","dcl")}];google.dcl=!1;google.dclc=function(a){google.dcl?a():b.push(a)};function c(){if(!google.dcl){google.dcl=!0;for(var a;a=b.shift();)a()}}window.addEventListener?(document.addEventListener("DOMContentLoaded",c,!1),window.addEventListener("load",c,!1)):window.attachEvent&&window.attachEvent("onload",c);}).call(this);window.rwt=function(a,l,m,n,i,f,b,j,g,d){return true};
(window['gbar']=window['gbar']||{})._CONFIG=[[[0,"www.gstatic.com","og.og2.en_US._GwvzHadFFk.O","ca","en","1",0,[3,2,".40.","","1300102,3700265,3700347,3700405","1490323953","0"],"40400","nEHlWMmFJ4WKmQGuhpGABw",0,0,"og.og2.z7hrda9ys8sm.L.F4.O","AA2YrTsWAhrdMPdwoiW-go2q05eaziEWdA","AA2YrTuputtwaiNWEi6WP7CXsavQ4HGKSw","",2,0,200,"CAN"],["","https","notifications.google.com","","/u/0/widget","sourceid=1","pid=1","en",5,"https://accounts.google.com/ServiceLogin?hl=en\u0026passive=true\u0026continue=https://www.google.ca/%3Fgfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE",1,30000,null,"%1$s Reload the page %2$s and try again.","112350306173219779943"],0,["m;/_/scs/abc-static/_/js/k=gapi.gapi.en.DTPeBB_SvOA.O/m=__features__/rt=j/d=1/rs=AHpOoo-J3J0yqNDMPVrmQT6j-SBFfGx8oA","https://apis.google.com","","","1","",null,1,"es_plusone_gc_20170309.0_p0","en"],["1","gci_91f30755d6a6b787dcc2a4062e6e9824.js","googleapis.client:plusone:gapi.iframes","0","en"],null,[100,"Notifications",1,"https","notifications.google.com","",0,"","POST","/u/0/_/notifications/count",3000,"%1$s Google notifications",1,"There was an error loading notifications.","ogs.google.com"],null,[0.009999999776482582,"ca","1",[["19000317","5061821","7",25,5,2592000,"AN2NJM6ZfXlG9SSge8k0BRZ9JscPbx04nQ:1491419548646","",0,1],"n","w",["","",""],1,5184000,1,1,"https://www.google.com/url?q=https://www.google.com/homepage/hp-firefox.html%3Futm_source%3Dgoogle.com%26utm_medium%3Dcallout%26utm_campaign%3DFFDHP\u0026source=hpp\u0026id=19000317\u0026ct=7\u0026usg=AFQjCNGpJYJLVlrP4aS5wSlNy1fQs3_xmg\u0026cot=2",0,0,"",0],null,[["","","0",0,0,-1]],null,0,null,null,["5061451","google\\.(com|ru|ca|by|kz|com\\.mx|com\\.tr)$",1]],["%1$s (default)","Brand Account",0,"%1$s (delegated)",1,null,96,"https://www.google.ca/webhp?authuser=$authuser",null,null,null,1,"https://accounts.google.com/ListAccounts?listPages=0\u0026pid=1\u0026mo=1\u0026mn=1\u0026hl=en",0,"dashboard",null,null,null,null,"Profile","",0,1,"Signed out","https://accounts.google.com/AccountChooser?continue=$continue\u0026Email=$email","https://accounts.google.com/RemoveLocalAccount?Email=$email","REMOVE","SIGN IN",0,0],[1,0,0,null,"0","rdpitts95@gmail.com","","AM0td5mVaKL19LkqfFsYGfg8NPoY5an8FNHeaBz9TMxhI-VMbxpLEx5MB1WHYKnpbenk7cczWUxdFBEFLJDY2CuB33RtvbptwA"],[1,0.001000000047497451,1],[1,0.1000000014901161,2,1],[0,"",null,"",0,"There was an error loading your Marketplace apps.","You have no Marketplace apps.",1,[1,"https://www.google.ca/webhp?tab=ww","Search","","0 -276px",null,0],null,null,1,0,[[1,"%1$s of %2$s","%1$s of %2$s in the more section"]]],[1],[0,1,["lg"],1,["lat"]],[["","","","","","","","","","","","","","","","","","","drt","def","","","","","","",""],[""]],null,null,[1,null,null,"[[]]",["https","ogs.google.com",0,"/u/0","rt=j\u0026sourceid=1",["/u/0/_/og/customization/get",""],["/u/0/_/og/customization/set",""],["/u/0/_/og/customization/remove",""]],"AM0td5mVaKL19LkqfFsYGfg8NPoY5an8FNHeaBz9TMxhI-VMbxpLEx5MB1WHYKnpbenk7cczWUxdFBEFLJDY2CuB33RtvbptwA"],[30,127,1,0,60],null,null,null,["https","clients5.google.com","","pagead/drt/dn/"],null,[1,1],null,[0,0.001000000047497451,1,40400,1,"CAN","en","1490323953.0",1]]];(window['gbar']=window['gbar']||{})._LDD=["in","fot"];/* _GlobalPrefix_ */
this.gbar_=this.gbar_||{};(function(_){var window=this;
/* _Module_:_r */
try{
var aa,ba,ca,da,qa,sa;for(_.k,aa="function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,d){if(d.get||d.set)throw new TypeError("ES3 does not support getters and setters.");a!=Array.prototype&&a!=Object.prototype&&(a[c]=d.value)},ba="undefined"!=typeof window&&window===this?this:"undefined"!=typeof window.global&&null!=window.global?window.global:this,ca=["String","prototype","startsWith"],da=0;da<ca.length-1;da++){var ea=ca[da];ea in ba||(ba[ea]={});ba=ba[ea]}
var fa=ca[ca.length-1],ha=ba[fa],ia=ha?ha:function(a,c){var d;if(null==this)throw new TypeError("The 'this' value for String.prototype.startsWith must not be null or undefined");if(a instanceof RegExp)throw new TypeError("First argument to String.prototype.startsWith must not be a regular expression");d=this+"";a+="";var e=d.length,f=a.length;c=Math.max(0,Math.min(c|0,d.length));for(var g=0;g<f&&c<e;)if(d[c++]!=a[g++])return!1;return g>=f};ia!=ha&&null!=ia&&aa(ba,fa,{configurable:!0,writable:!0,value:ia});
_.ja=_.ja||{};_.m=this;_.n=function(a){return void 0!==a};_.p=function(a,c){a=a.split(".");c=c||_.m;for(var d;d=a.shift();)if(null!=c[d])c=c[d];else return null;return c};_.ka=function(){};_.la=function(a){a.xd=void 0;a.V=function(){return a.xd?a.xd:a.xd=new a}};
_.ma=function(a){var c=typeof a;if("object"==c)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return c;var d=Object.prototype.toString.call(a);if("[object Window]"==d)return"object";if("[object Array]"==d||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==d||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
else if("function"==c&&"undefined"==typeof a.call)return"object";return c};_.na=function(a){return"array"==_.ma(a)};_.t=function(a){return"string"==typeof a};_.oa=function(a){return"number"==typeof a};_.pa="closure_uid_"+(1E9*Math.random()>>>0);qa=function(a,c,d){return a.call.apply(a.bind,arguments)};
sa=function(a,c,d){if(!a)throw Error();if(2<arguments.length){var e=Array.prototype.slice.call(arguments,2);return function(){var d=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(d,e);return a.apply(c,d)}}return function(){return a.apply(c,arguments)}};_.u=function(a,c,d){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?_.u=qa:_.u=sa;return _.u.apply(null,arguments)};_.v=Date.now||function(){return+new Date};
_.x=function(a,c){a=a.split(".");var d=_.m;a[0]in d||!d.execScript||d.execScript("var "+a[0]);for(var e;a.length&&(e=a.shift());)!a.length&&_.n(c)?d[e]=c:d[e]&&d[e]!==Object.prototype[e]?d=d[e]:d=d[e]={}};_.y=function(a,c){function d(){}d.prototype=c.prototype;a.J=c.prototype;a.prototype=new d;a.prototype.constructor=a;a.aj=function(a,d,g){for(var e=Array(arguments.length-2),f=2;f<arguments.length;f++)e[f-2]=arguments[f];return c.prototype[d].apply(a,e)}};
var ta=function(a,c,d){this.A=a;this.o=!1;this.b=c;this.w=d};ta.prototype.Sa=function(a){if(this.o)throw Error("a`"+this.b);try{a.apply(this.A,this.w),this.o=!0}catch(c){}};_.z=function(){this.ea=this.ea;this.Ra=this.Ra};_.z.prototype.ea=!1;_.z.prototype.fa=function(){this.ea||(this.ea=!0,this.O())};_.z.prototype.O=function(){if(this.Ra)for(;this.Ra.length;)this.Ra.shift()()};var ua=function(a){_.z.call(this);this.w=a;this.b=[];this.o={}};_.y(ua,_.z);ua.prototype.A=function(a){var c=(0,_.u)(function(){this.b.push(new ta(this.w,a,Array.prototype.slice.call(arguments)))},this);return this.o[a]=c};
ua.prototype.Sa=function(){for(var a=this.b.length,c=this.b,d=[],e=0;e<a;++e){var f=c[e].b,g;a:{g=this.w;for(var h=f.split("."),l=h.length,q=0;q<l;++q)if(g[h[q]])g=g[h[q]];else{g=null;break a}g=g instanceof Function?g:null}if(g&&g!=this.o[f])try{c[e].Sa(g)}catch(r){}else d.push(c[e])}this.b=d.concat(c.slice(a))};
_.va=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,_.va);else{var c=Error().stack;c&&(this.stack=c)}a&&(this.message=String(a))};_.y(_.va,Error);_.va.prototype.name="CustomError";var xa;_.wa=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")};
_.ya=function(a,c){var d=0;a=(0,_.wa)(String(a)).split(".");c=(0,_.wa)(String(c)).split(".");for(var e=Math.max(a.length,c.length),f=0;0==d&&f<e;f++){var g=a[f]||"",h=c[f]||"";do{g=/(\d*)(\D*)(.*)/.exec(g)||["","","",""];h=/(\d*)(\D*)(.*)/.exec(h)||["","","",""];if(0==g[0].length&&0==h[0].length)break;d=xa(0==g[1].length?0:(0,window.parseInt)(g[1],10),0==h[1].length?0:(0,window.parseInt)(h[1],10))||xa(0==g[2].length,0==h[2].length)||xa(g[2],h[2]);g=g[3];h=h[3]}while(0==d)}return d}; xa=function(a,c){return a<c?-1:a>c?1:0};
_.za=Array.prototype.indexOf?function(a,c,d){return Array.prototype.indexOf.call(a,c,d)}:function(a,c,d){d=null==d?0:0>d?Math.max(0,a.length+d):d;if(_.t(a))return _.t(c)&&1==c.length?a.indexOf(c,d):-1;for(;d<a.length;d++)if(d in a&&a[d]===c)return d;return-1};_.Ba=Array.prototype.forEach?function(a,c,d){Array.prototype.forEach.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=_.t(a)?a.split(""):a,g=0;g<e;g++)g in f&&c.call(d,f[g],g,a)};
_.Ca=Array.prototype.filter?function(a,c,d){return Array.prototype.filter.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=[],g=0,h=_.t(a)?a.split(""):a,l=0;l<e;l++)if(l in h){var q=h[l];c.call(d,q,l,a)&&(f[g++]=q)}return f};_.Da=Array.prototype.map?function(a,c,d){return Array.prototype.map.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=Array(e),g=_.t(a)?a.split(""):a,h=0;h<e;h++)h in g&&(f[h]=c.call(d,g[h],h,a));return f};
_.Ea=Array.prototype.reduce?function(a,c,d,e){e&&(c=(0,_.u)(c,e));return Array.prototype.reduce.call(a,c,d)}:function(a,c,d,e){var f=d;(0,_.Ba)(a,function(d,h){f=c.call(e,f,d,h,a)});return f};_.Fa=Array.prototype.some?function(a,c,d){return Array.prototype.some.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=_.t(a)?a.split(""):a,g=0;g<e;g++)if(g in f&&c.call(d,f[g],g,a))return!0;return!1};
var Na;_.Ga=function(){this.b={};this.o={}};_.la(_.Ga);_.Ia=function(a,c){a.V=function(){return _.Ha(_.Ga.V(),c)};a.fi=function(){return _.Ga.V().b[c]||null}};_.La=function(a,c){var d=_.Ga.V();if(a in d.b){if(d.b[a]!=c)throw new Ja(a);}else{d.b[a]=c;if(c=d.o[a])for(var e=0,f=c.length;e<f;e++)c[e].b(d.b,a);delete d.o[a]}};_.Ha=function(a,c){if(c in a.b)return a.b[c];throw new Ma(c);};Na=function(a){_.va.call(this);this.ja=a};_.y(Na,_.va);var Ja=function(a){Na.call(this,a)};_.y(Ja,Na); var Ma=function(a){Na.call(this,a)};_.y(Ma,Na);
var Qa;_.Oa="bbh bbr bbs has prm sngw so".split(" ");Qa=new ua(_.m);_.La("api",Qa);
for(var Ra="addExtraLink addLink aomc asmc close cp.c cp.l cp.me cp.ml cp.rc cp.rel ela elc elh gpca gpcr lGC lPWF ldb mls noam paa pc pca pcm pw.clk pw.hvr qfaae qfaas qfaau qfae qfas qfau qfhi qm qs qsi rtl sa setContinueCb snaw sncw som sp spd spn spp sps tsl tst up.aeh up.aop up.dpc up.iic up.nap up.r up.sl up.spd up.tp upel upes upet".split(" ").concat(_.Oa),Sa=(0,_.u)(Qa.A,Qa),Ta=0;Ta<Ra.length;Ta++){var Ua="gbar."+Ra[Ta];null==_.p(Ua,window)&&_.x(Ua,Sa(Ua))}_.x("gbar.up.gpd",function(){return""});
a:{var Wa=_.m.navigator;if(Wa){var Xa=Wa.userAgent;if(Xa){_.Va=Xa;break a}}_.Va=""}_.A=function(a){return-1!=_.Va.indexOf(a)};var Ya=function(){return(_.A("Chrome")||_.A("CriOS"))&&!_.A("Edge")};_.Za=function(){return _.A("iPhone")&&!_.A("iPod")&&!_.A("iPad")};_.$a=function(){return _.Za()||_.A("iPad")||_.A("iPod")};_.ab=function(a){_.ab[" "](a);return a};_.ab[" "]=_.ka;var cb=function(a,c){var d=bb;return Object.prototype.hasOwnProperty.call(d,a)?d[a]:d[a]=c(a)};var ib,mb,nb,bb,ub;_.db=_.A("Opera");_.B=_.A("Trident")||_.A("MSIE");_.eb=_.A("Edge");_.fb=_.eb||_.B;_.gb=_.A("Gecko")&&!(-1!=_.Va.toLowerCase().indexOf("webkit")&&!_.A("Edge"))&&!(_.A("Trident")||_.A("MSIE"))&&!_.A("Edge");_.hb=-1!=_.Va.toLowerCase().indexOf("webkit")&&!_.A("Edge");ib=_.m.navigator||null;_.jb=ib&&ib.platform||"";_.kb=_.A("Macintosh");_.lb=_.A("Linux")||_.A("CrOS");mb=function(){var a=_.m.document;return a?a.documentMode:void 0};
a:{var ob="",pb=function(){var a=_.Va;if(_.gb)return/rv\:([^\);]+)(\)|;)/.exec(a);if(_.eb)return/Edge\/([\d\.]+)/.exec(a);if(_.B)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(_.hb)return/WebKit\/(\S+)/.exec(a);if(_.db)return/(?:Version)[ \/]?(\S+)/.exec(a)}();pb&&(ob=pb?pb[1]:"");if(_.B){var qb=mb();if(null!=qb&&qb>(0,window.parseFloat)(ob)){nb=String(qb);break a}}nb=ob}_.rb=nb;bb={};_.C=function(a){return cb(a,function(){return 0<=_.ya(_.rb,a)})};_.tb=function(a){return Number(sb)>=a}; var vb=_.m.document;ub=vb&&_.B?mb()||("CSS1Compat"==vb.compatMode?(0,window.parseInt)(_.rb,10):5):void 0;var sb=ub;
_.wb=_.A("Firefox");_.xb=_.Za()||_.A("iPod");_.yb=_.A("iPad");_.zb=_.A("Android")&&!(Ya()||_.A("Firefox")||_.A("Opera")||_.A("Silk"));_.Ab=Ya();_.Bb=_.A("Safari")&&!(Ya()||_.A("Coast")||_.A("Opera")||_.A("Edge")||_.A("Silk")||_.A("Android"))&&!_.$a();var Cb=null;var Db;_.Eb=function(a,c){return(new Db(c)).o(a)};Db=function(a){this.b=a};Db.prototype.o=function(a){var c=[];Fb(this,a,c);return c.join("")};
var Fb=function(a,c,d){if(null==c)d.push("null");else{if("object"==typeof c){if(_.na(c)){var e=c;c=e.length;d.push("[");for(var f="",g=0;g<c;g++)d.push(f),f=e[g],Fb(a,a.b?a.b.call(e,String(g),f):f,d),f=",";d.push("]");return}if(c instanceof String||c instanceof Number||c instanceof Boolean)c=c.valueOf();else{d.push("{");g="";for(e in c)Object.prototype.hasOwnProperty.call(c,e)&&(f=c[e],"function"!=typeof f&&(d.push(g),Gb(e,d),d.push(":"),Fb(a,a.b?a.b.call(c,e,f):f,d),g=","));d.push("}");return}}switch(typeof c){case "string":Gb(c,
d);break;case "number":d.push((0,window.isFinite)(c)&&!(0,window.isNaN)(c)?String(c):"null");break;case "boolean":d.push(String(c));break;case "function":d.push("null");break;default:throw Error("e`"+typeof c);}}},Hb={'"':'\\"',"\\":"\\\\","/":"\\/","\b":"\\b","\f":"\\f","\n":"\\n","\r":"\\r","\t":"\\t","\x0B":"\\u000b"},Ib=/\uffff/.test("\uffff")?/[\\\"\x00-\x1f\x7f-\uffff]/g:/[\\\"\x00-\x1f\x7f-\xff]/g,Gb=function(a,c){c.push('"',a.replace(Ib,function(a){var c=Hb[a];c||(c="\\u"+(a.charCodeAt(0)| 65536).toString(16).substr(1),Hb[a]=c);return c}),'"')};
var Jb,Lb,Pb;_.D=function(){};Jb="function"==typeof window.Uint8Array;_.E=function(a,c,d,e,f){a.b=null;c||(c=d?[d]:[]);a.ea=d?String(d):void 0;a.D=0===d?-1:0;a.w=c;a:{if(a.w.length&&(c=a.w.length-1,(d=a.w[c])&&"object"==typeof d&&!_.na(d)&&!(Jb&&d instanceof window.Uint8Array))){a.C=c-a.D;a.A=d;break a}-1<e?(a.C=e,a.A=null):a.C=Number.MAX_VALUE}a.G={};if(f)for(e=0;e<f.length;e++)c=f[e],c<a.C?(c+=a.D,a.w[c]=a.w[c]||_.Kb):a.A[c]=a.A[c]||_.Kb};_.Kb=[];
_.F=function(a,c){if(c<a.C){c+=a.D;var d=a.w[c];return d===_.Kb?a.w[c]=[]:d}d=a.A[c];return d===_.Kb?a.A[c]=[]:d};_.G=function(a,c,d){a=_.F(a,c);return null==a?d:a};_.H=function(a,c,d){a.b||(a.b={});if(!a.b[d]){var e=_.F(a,d);e&&(a.b[d]=new c(e))}return a.b[d]};Lb=function(a){if(a.b)for(var c in a.b){var d=a.b[c];if(_.na(d))for(var e=0;e<d.length;e++)d[e]&&d[e].Qa();else d&&d.Qa()}};_.D.prototype.Qa=function(){Lb(this);return this.w};var Mb=_.m.JSON&&_.m.JSON.stringify||"object"===typeof JSON&&JSON.stringify;
_.D.prototype.o=Jb?function(){var a=window.Uint8Array.prototype.toJSON;window.Uint8Array.prototype.toJSON=function(){if(!Cb){Cb={};for(var a=0;65>a;a++)Cb[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(a)}for(var a=Cb,c=[],f=0;f<this.length;f+=3){var g=this[f],h=f+1<this.length,l=h?this[f+1]:0,q=f+2<this.length,r=q?this[f+2]:0,w=g>>2,g=(g&3)<<4|l>>4,l=(l&15)<<2|r>>6,r=r&63;q||(r=64,h||(l=64));c.push(a[w],a[g],a[l],a[r])}return c.join("")};try{var c=Mb.call(null,this.Qa(),
Nb)}finally{window.Uint8Array.prototype.toJSON=a}return c}:Mb?function(){return Mb.call(null,this.Qa(),Nb)}:function(){return _.Eb(this.Qa(),Nb)};var Nb=function(a,c){if(_.oa(c)){if((0,window.isNaN)(c))return"NaN";if(window.Infinity===c)return"Infinity";if(-window.Infinity===c)return"-Infinity"}return c};_.D.prototype.toString=function(){Lb(this);return this.w.toString()};_.D.prototype.clone=function(){return _.Ob(this)};_.Ob=function(a){return new a.constructor(Pb(a.Qa()))};
Pb=function(a){var c;if(_.na(a)){for(var d=Array(a.length),e=0;e<a.length;e++)null!=(c=a[e])&&(d[e]="object"==typeof c?Pb(c):c);return d}if(Jb&&a instanceof window.Uint8Array)return new window.Uint8Array(a);d={};for(e in a)null!=(c=a[e])&&(d[e]="object"==typeof c?Pb(c):c);return d};
_.Qb=function(a){_.E(this,a,0,-1,null)};_.y(_.Qb,_.D);_.I=function(a,c){return null!=a?!!a:!!c};_.J=function(a,c){void 0==c&&(c="");return null!=a?a:c};_.K=function(a,c){void 0==c&&(c=0);return null!=a?a:c};var Rb=function(a){_.E(this,a,0,-1,null)};_.y(Rb,_.D);_.Sb=function(a){_.E(this,a,0,-1,null)};_.y(_.Sb,_.D);var Tb=function(a){_.E(this,a,0,-1,null)};_.y(Tb,_.D);Tb.prototype.jd=function(){return _.H(this,_.Sb,14)};var Ub=new Tb(window.gbar&&window.gbar._CONFIG?window.gbar._CONFIG[0]:[[,,,,,,,[]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]]),Vb;Vb=_.F(Ub,3);_.Wb=_.I(Vb);_.Xb=function(){};_.x("gbar_._DumpException",function(a){if(_.Wb)throw a;_.Xb(a)});var Yb=function(){_.z.call(this);this.xh=Ub};_.y(Yb,_.z);_.Ia(Yb,"cs");_.M=function(){return Yb.V().xh};_.Zb=function(){return _.H(_.M(),Rb,1)||new Rb};_.La("cs",new Yb);var $b=new function(){this.b=_.H(_.Zb(),_.Qb,8)||new _.Qb};_.x("gbar.bv",{n:_.K(_.F($b.b,2)),r:_.J(_.F($b.b,4)),f:_.J(_.F($b.b,3)),e:_.J(_.F($b.b,5)),m:_.K(_.G($b.b,1,1),1)});_.x("gbar.kn",function(){return!0});_.x("gbar.sb",function(){return!1});_.bc=function(){this.b="";this.o=_.ac};_.bc.prototype.ub=!0;_.bc.prototype.bb=function(){return this.b};_.bc.prototype.toString=function(){return"Const{"+this.b+"}"};_.ac={};_.cc=function(a){var c=new _.bc;c.b=a;return c};_.cc("");_.ec=function(){this.b="";this.o=_.dc};_.ec.prototype.ub=!0;_.dc={};_.ec.prototype.bb=function(){return this.b};_.fc=function(a){var c=new _.ec;c.b=a;return c};_.gc=_.fc("");_.ic=function(){this.b="";this.o=_.hc};_.ic.prototype.ub=!0;_.ic.prototype.bb=function(){return this.b};_.ic.prototype.vd=!0;_.ic.prototype.Kb=function(){return 1};_.hc={};_.jc=function(a){var c=new _.ic;c.b=a;return c};_.jc("about:blank");_.kc=!_.B||_.tb(9);_.lc=!_.gb&&!_.B||_.B&&_.tb(9)||_.gb&&_.C("1.9.1");_.mc=_.B&&!_.C("9");_.nc=_.B||_.db||_.hb;_.pc=function(){this.b="";this.w=_.oc;this.o=null};_.pc.prototype.vd=!0;_.pc.prototype.Kb=function(){return this.o};_.pc.prototype.ub=!0;_.pc.prototype.bb=function(){return this.b};_.oc={};_.qc=function(a,c){var d=new _.pc;d.b=a;d.o=c;return d};_.qc("<!DOCTYPE html>",0);_.rc=_.qc("",0);_.sc=_.qc("<br>",0);
}catch(e){_._DumpException(e)}
/* _Module_:in */
try{
_.x("gbar.elr",function(){return{es:{f:152,h:60,m:30},mo:"md",vh:window.innerHeight||0,vw:window.innerWidth||0}});
}catch(e){_._DumpException(e)}
/* _GlobalSuffix_ */
})(this.gbar_);
// Google Inc.
</script><link href="https://www.google.ca/?ei=nEHlWLCtHK3OXv_KpvAE" rel="canonical"><style type="text/css">.gsok_a{background:url(data:image/gif;base64,R0lGODlhEwALAKECAAAAABISEv///////yH5BAEKAAIALAAAAAATAAsAAAIdDI6pZ+suQJyy0ocV3bbm33EcCArmiUYk1qxAUAAAOw==) no-repeat center;display:inline-block;height:11px;line-height:0;width:19px}.gsok_a img{border:none;visibility:hidden}.gsst_a{display:inline-block}.gsst_a{cursor:pointer;padding:0 4px}.gsst_a:hover{text-decoration:none!important}.gsst_b{font-size:16px;padding:0 2px;position:relative;user-select:none;-moz-user-select:none;white-space:nowrap}.gsst_e{vertical-align:middle;opacity:0.6;}.gsst_a:hover .gsst_e,.gsst_a:focus .gsst_e{opacity:0.8;}.gsst_a:active .gsst_e{opacity:1;}.sbib_a{background:#fff;box-sizing:border-box;-moz-box-sizing:border-box;}.sbib_b{box-sizing:border-box;-moz-box-sizing:border-box;height:100%;overflow:hidden;padding:5px 9px 0}.sbib_c[dir=ltr]{float:right}.sbib_c[dir=rtl]{float:left}.sbib_d{box-sizing:border-box;-moz-box-sizing:border-box;height:100%;unicode-bidi:embed;white-space:nowrap}.sbib_d[dir=ltr]{float:left}.sbib_d[dir=rtl]{float:right}.sbib_a,.sbib_c{vertical-align:top}.sbdd_a{z-index:989}.sbdd_a[dir=ltr] .fl, .sbdd_a[dir=rtl] .fr{float:left}.sbdd_a[dir=ltr] .fr, .sbdd_a[dir=rtl] .fl{float:right}.sbdd_b{background:#fff;border:1px solid #ccc;border-top-color:#d9d9d9;box-shadow:0 2px 4px rgba(0,0,0,0.2);-moz-box-shadow:0 2px 4px rgba(0,0,0,0.2);cursor:default}.sbdd_c{border:0;display:block;position:absolute;top:0;z-index:988}.sbpqs_a{color:#52188c}.sbdd_a[dir=ltr] .sbpqs_a{padding-right:8px}.sbdd_a[dir=rtl] .sbpqs_a{padding-left:8px}.sbdd_a[dir=ltr] .sbpqs_b{padding-right:3px}.sbdd_a[dir=rtl] .sbpqs_b{padding-left:3px}.sbpqs_c{color:#666;line-height:22px}.sben_a{color:#333}.gspr_a{padding-right:1px}.sbsb_c[dir=ltr] .sbqs_a{float:right}.sbsb_c[dir=rtl] .sbqs_a{float:left}.sbqs_b{visibility:hidden}.sbsb_d .sbqs_b{visibility:visible}.sbsb_c[dir=ltr] .sbqs_b{padding-left:5px;}.sbsb_c[dir=rtl] .sbqs_b{padding-right:5px;}.sbqs_c{word-wrap:break-word}.sbsb_a{background:#fff}.sbsb_b{list-style-type:none;margin:0;padding:0}.sbsb_c{line-height:22px;overflow:hidden;padding:0 10px}.sbsb_d{background:#eee}.sbsb_e{height:1px;background-color:#e5e5e5}#sbsb_f{font-size:11px;color:#36c;text-decoration:none}#sbsb_f:hover{font-size:11px;color:#36c;text-decoration:underline}.sbsb_g{text-align:center;padding:8px 0 7px;position:relative}.sbsb_h{font-size:15px;height:28px;margin:0.2em}.sbsb_i{font-size:13px;color:#36c;text-decoration:none;line-height:100%}.sbsb_i:hover{text-decoration:underline}.sbsb_j{padding-top:1px 0 2px 0;font-size:11px}.sbdd_a[dir=ltr] .sbsb_j{padding-right:4px;text-align:right}.sbdd_a[dir=rtl] .sbsb_j{padding-left:4px;text-align:left}.gscp_a,.gscp_c,.gscp_d,.gscp_e,.gscp_f{display:inline-block;vertical-align:bottom}.gscp_f{border:none}.gscp_a{background:#d9e7fe;border:1px solid #9cb0d8;cursor:default;outline:none;text-decoration:none!important;user-select:none;-moz-user-select:none;}.gscp_a:hover{border-color:#869ec9}.gscp_a.gscp_b{background:#4787ec;border-color:#3967bf}.gscp_c{color:#444;font-size:13px;font-weight:bold}.gscp_d{color:#aeb8cb;cursor:pointer;font:21px arial,sans-serif;line-height:inherit;padding:0 7px}.gscp_a:hover .gscp_d{color:#575b66}.gscp_c:hover,.gscp_a .gscp_d:hover{color:#222}.gscp_a.gscp_b .gscp_c,.gscp_a.gscp_b .gscp_d{color:#fff}.gscp_e{height:100%;padding:0 4px}.gsc_b{background:url(data:image/gif;base64,R0lGODlhCgAEAMIEAP9BGP6pl//Wy/7//P///////////////yH5BAEKAAQALAAAAAAKAAQAAAMROCOhK0oA0MIUMmTAZhsWBCYAOw==) repeat-x scroll 0 100% transparent;display:inline-block;padding-bottom:1px}.vasq .sbdd_a{z-index:1001}.sbhcn{box-shadow:0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);}.sbfcn{box-shadow:0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);}.sbib_b{padding-left:16px}.sbsb_c{padding-left:16px}.sbsb_c{padding-right:16px}.sbdd_b{box-shadow:0 3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px rgba(0,0,0,0.08);}.gsst_a{padding: 0 8px}.gsst_a{width: 24px}.gsst_a{text-align: center}.gsri_a{width: 18px}</style><script async="" type="text/javascript" charset="UTF-8" src="Google_files/rsAA2YrTsWAhrdMPdwoiW-go2q05eaziEWdA_002"></script><link rel="stylesheet" type="text/css" href="Google_files/rsAA2YrTuputtwaiNWEi6WP7CXsavQ4HGKSw.css"><script async="" type="text/javascript" charset="UTF-8" src="Google_files/rsAA2YrTsWAhrdMPdwoiW-go2q05eaziEWdA"></script><style type="text/css">#gb192 .gb_3::before{left:0px;top:-1449px}</style></head><body class="hp vasq" onload="try{if(!google.j.b){document.f&&document.f.q.focus();document.gbqf&&document.gbqf.q.focus();}}catch(e){}if(document.images)new Image().src='/images/nav_logo242.png'" id="gsr"><div class="ctr-p" id="viewport"><div data-jiis="cc" id="doc-info"></div><div data-jiis="cc" id="cst"><style>.fade #center_col,.fade #rhs,.fade #leftnav,.fade #brs,.fade #footcnt{filter:alpha(opacity=33.3);opacity:0.333}.fade-hidden #center_col,.fade-hidden #rhs,.fade-hidden #leftnav{visibility:hidden}.flyr-o,.flyr-w{position:absolute;background-color:#fff;z-index:3;display:block;}.flyr-o{filter:alpha(opacity=66.6);opacity:0.666}.flyr-w{filter:alpha(opacity=20.0);opacity:0.2}.flyr-h{filter:alpha(opacity=0);opacity:0}.flyr-c{display:none}.flt,.flt u,a.fl{text-decoration:none}.flt:hover,.flt:hover u,a.fl:hover{text-decoration:underline}#knavm{color:#4273db;display:inline;font:11px arial,sans-serif !important;left:-13px;position:absolute;top:2px;z-index:2}#pnprev #knavm{bottom:1px;top:auto}#pnnext #knavm{bottom:1px;left:40px;top:auto}a.noline{outline:0}.y.yp{display:none}.y.yf,.y.ys{display:block}.yi{}._wtf{display:inline-block;fill:currentColor;height:24px;line-height:24px;position:relative;width:24px}._wtf svg{display:block;height:100%;width:100%}</style></div> <a href="https://www.google.ca/setprefs?suggon=2&prev=https://www.google.ca/?gfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE&sig=0_zUanEnjL4a0VkVHXXYHKuo9rXiM%3D" style="left:-1000em;position:absolute">Screen-reader users, click here to turn off Google Instant.</a> <textarea id="csi" style="display:none">1</textarea><script>if(google.j.b)document.body.style.visibility='hidden';</script><style>@media only screen and (max-width:580px){#gb div{display:none}}</style><div class="jhp big" id="searchform"><script>(function(){var _j=1280;try{var s=document.getElementById('searchform');var w=document['body']&&document.body['offsetWidth'];if(s&&w&&w>=_j){s.className+=' big';}
}catch(e){}
})();</script> <style>#gb{font-size:13px}#gb{position:relative;top:8px}div#searchform{min-width:980px;z-index:103}div.sfbg,div.sfbgg{height:65px}.sfbgx{background-color:#fafafa;border-bottom:1px solid #ebebeb;height:85px;position:absolute;width:100%}.hp .sfbgx{display:none}.big form#tsf,form#tsf{width:auto;max-width:784px;overflow:hidden}#searchform.big>#tsf{max-width:784px}.big div.tsf-p,form>div.tsf-p{margin:-1px 0 0;padding-right:0}div#viewport{position:absolute;top:0;width:100%}div#searchform.jhp{margin-top:0}#searchform.big.jhp>#tsf{max-width:none}.jhp>#gb{position:absolute;top:-295px;right:0;width:100%}.jhp>#tsf{max-width:none}</style> <div id="gb" class="gb_T"> <div id="gbw"> <div style="top:0;left:0;right:0;width:100%"> <div class="gb_jb gb_Vf gb_R gb_Uf gb_Zf gb_T" style="min-width: 242px;" activated="1"><div class="gb_Ff gb_R gb_Vf gb_Nf"><div class="gb_Q gb_R gb_S gb_Vf"><span class="gb_P gb_R">Ryan</span></div><div class="gb_Q gb_R"><a class="gb_P" data-pid="23" href="https://mail.google.com/mail/?tab=wm" data-ved="0EMIuCBUoAA">Gmail</a></div><div class="gb_Q gb_R"><a class="gb_P" data-pid="2" href="https://www.google.ca/imghp?hl=en&tab=wi&ei=nEHlWMmFJ4WKmQGuhpGABw&ved=0EKouCBYoAQ">Images</a></div></div><div class="gb_sc gb_Vf gb_R" style="min-width: 120px;"><div class="gb_ha" id="gbsfw" style="background-color:#eee;min-width:376px"><iframe ng-non-bindable="" hspace="0" marginheight="0" marginwidth="0" scrolling="no" style="" tabindex="0" vspace="0" class="gb_Wb" allowtransparency="true" aria-hidden="true" id="I0_1491419582958" name="I0_1491419582958" src="https://notifications.google.com/u/0/widget?sourceid=1&hl=en&origin=https%3A%2F%2Fwww.google.ca&uc=1&usegapi=1&jsh=m%3B%2F_%2Fscs%2Fabc-static%2F_%2Fjs%2Fk%3Dgapi.gapi.en.DTPeBB_SvOA.O%2Fm%3D__features__%2Frt%3Dj%2Fd%3D1%2Frs%3DAHpOoo-J3J0yqNDMPVrmQT6j-SBFfGx8oA#pid=1&_methods=onError%2ConInfo%2ChideNotificationWidget%2CpostSharedMessage%2Creauth%2CsetNotificationWidgetHeight%2CsetNotificationWidgetSize%2CswitchTo%2CnavigateTo%2CsetNotificationText%2CsetNotificationAnimation%2CgetNotificationText%2CvalidateUser%2C_ready&id=I0_1491419582958&parent=https%3A%2F%2Fwww.google.ca&pfname=&rpctoken=23509537" frameborder="0" width="100%"></iframe></div><div class="gb_fa gb_Wc gb_R" id="gbwa"><div class="gb_Dc"><a class="gb_b gb_5b" href="https://www.google.ca/intl/en/options/" title="Google apps" aria-expanded="false" role="button" tabindex="0" data-ved="0EL0nCBc"></a><div class="gb_mb"></div><div class="gb_lb"></div></div><div class="gb_ia gb_ha gb_va gb_Ba" aria-label="Google apps" aria-hidden="true" role="region"><ul class="gb_ka gb_da" aria-dropeffect="move"><li class="gb_Z" aria-grabbed="false" id="ogbkddg:0"><a class="gb_O" data-pid="192" href="https://myaccount.google.com/?utm_source=OGB" id="gb192" data-ved="0EMEuCAEoAA"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1449px"></span><span class="gb_4">My Account</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:1"><a class="gb_O" data-pid="1" href="https://www.google.ca/webhp?tab=ww&ei=nEHlWMmFJ4WKmQGuhpGABw&ved=0EKkuCAIoAQ" id="gb1"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -276px"></span><span class="gb_4">Search</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:2"><a class="gb_O" data-pid="8" href="https://maps.google.ca/maps?hl=en&tab=wl" id="gb8" data-ved="0EMEuCAMoAg"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -69px"></span><span class="gb_4">Maps</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:3"><a class="gb_O" data-pid="36" href="https://www.youtube.com/?gl=CA" id="gb36" data-ved="0EMEuCAQoAw"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -138px"></span><span class="gb_4">YouTube</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:4"><a class="gb_O" data-pid="78" href="https://play.google.com/?hl=en&tab=w8" id="gb78" data-ved="0EMEuCAUoBA"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1380px"></span><span class="gb_4">Play</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:5"><a class="gb_O" data-pid="5" href="https://news.google.ca/nwshp?hl=en&tab=wn&ei=nEHlWMmFJ4WKmQGuhpGABw&ved=0EKkuCAYoBQ" id="gb5"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1311px"></span><span class="gb_4">News</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:6"><a class="gb_O" data-pid="23" href="https://mail.google.com/mail/?tab=wm" id="gb23" data-ved="0EMEuCAcoBg"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -621px"></span><span class="gb_4">Gmail</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:7"><a class="gb_O" data-pid="49" href="https://drive.google.com/?tab=wo&authuser=0" id="gb49" data-ved="0EMEuCAgoBw"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1518px"></span><span class="gb_4">Drive</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:8"><a class="gb_O" data-pid="24" href="https://www.google.com/calendar?tab=wc" id="gb24" data-ved="0EMEuCAkoCA"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1794px"></span><span class="gb_4">Calendar</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:9"><a class="gb_O" data-pid="119" href="https://plus.google.com/u/0/?gpsrc=ogpy0&tab=wX" id="gb119" data-ved="0EMEuCAooCQ"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -897px"></span><span class="gb_4">Google+</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:a"><a class="gb_O" data-pid="51" href="https://translate.google.ca/?hl=en&tab=wT" id="gb51" data-ved="0EMEuCAsoCg"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1587px"></span><span class="gb_4">Translate</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:b"><a class="gb_O" data-pid="31" href="https://photos.google.com/?tab=wq&pageId=none" id="gb31" data-ved="0EMEuCAwoCw"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -345px"></span><span class="gb_4">Photos</span></a></li></ul><div class="gb_xa gb_7a"><div class="gb_6 gb_3" style="background-position:0 -276px"></div><div class="gb_ya"><div class="gb_za">Search</div><a class="gb_Aa gb_8e" href="#">Add a shortcut</a></div></div><a class="gb_la gb_8e" aria-label="More Google apps" href="https://www.google.ca/intl/en/options/" aria-expanded="false" aria-hidden="true">More</a><span class="gb_ma"></span><ul class="gb_ka gb_ea" aria-dropeffect="move" aria-hidden="true"><li class="gb_Z" aria-grabbed="false" id="ogbkddg:c"><a class="gb_O" data-pid="27" href="https://www.google.ca/finance?tab=we" id="gb27" data-ved="0EMEuCA0oDA"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1725px"></span><span class="gb_4">Finance</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:d"><a class="gb_O" data-pid="25" href="https://docs.google.com/document/?usp=docs_alc&authuser=0" id="gb25" data-ved="0EMEuCA4oDQ"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -552px"></span><span class="gb_4">Docs</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:e"><a class="gb_O" data-pid="10" href="https://books.google.ca/bkshp?hl=en&tab=wp&ei=nEHlWMmFJ4WKmQGuhpGABw&ved=0EKkuCA8oDg" id="gb10"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -1242px"></span><span class="gb_4">Books</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:f"><a class="gb_O" data-pid="30" href="https://www.blogger.com/?tab=wj" id="gb30" data-ved="0EMEuCBAoDw"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -2001px"></span><span class="gb_4">Blogger</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:g"><a class="gb_O" data-pid="53" href="https://www.google.com/contacts/?hl=en&tab=wC" id="gb53" data-ved="0EMEuCBEoEA"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -483px"></span><span class="gb_4">Contacts</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:h"><a class="gb_O" data-pid="300" href="https://hangouts.google.com/" id="gb300" data-ved="0EMEuCBIoEQ"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_3" style="background-position:0 -759px"></span><span class="gb_4">Hangouts</span></a></li><li class="gb_Z" aria-grabbed="false" id="ogbkddg:i"><a class="gb_O" data-pid="136" href="https://keep.google.com/u/0" id="gb136" data-ved="0EMEuCBMoEg"><div class="gb_9"></div><div class="gb_aa"></div><div class="gb_ba"></div><div class="gb_ca"></div><span class="gb_M"></span><span class="gb_4">Keep</span></a></li></ul><a class="gb_ma gb_3e" href="https://www.google.ca/intl/en/options/" aria-hidden="true">Even more from Google</a></div></div><div class="gb_Ac gb_Wc gb_R gb_Bc"><div class="gb_Dc"><a class="gb_b" aria-haspopup="true" role="button" tabindex="0" aria-expanded="false" aria-label="0 Google notifications" title="0 Google notifications"><div class="gb_Ec gb_Fc gb_5b"></div></a><div class="gb_mb"></div><div class="gb_lb" style="border-bottom-color:#eee"></div></div><div class="gb_ha" aria-hidden="true" aria-live="assertive"></div></div><div class="gb_gb gb_Wc gb_Vf gb_R"><div class="gb_Dc gb_ib gb_Vf gb_R"><a class="gb_b gb_eb gb_R" href="https://accounts.google.com/SignOutOptions?hl=en&continue=https://www.google.ca/%3Fgfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE" title="Google Account: Ryan .
(rdpitts95@gmail.com)" role="button" tabindex="0" aria-expanded="false"><span class="gb_9a gbii"></span></a><div class="gb_mb"></div><div class="gb_lb"></div></div><div class="gb_nb gb_ha" aria-label="Account Information" aria-hidden="true"><div class="gb_qb"><a class="gb_rb gb_8e gb_tb" aria-label="Change profile picture." href="https://profiles.google.com/?hl=en&tab=wX"><div class="gb_ub gbip" title="Profile"></div><span class="gb_kb">Change</span></a><div class="gb_sb"><div class="gb_vb gb_wb">Ryan .</div><div class="gb_xb">rdpitts95@gmail.com</div><div class="gb_pb"><a href="http://www.google.ca/intl/en/policies/privacy/">Privacy</a></div><a class="gb_Ha gb_5e gbp1 gb_yb" href="https://myaccount.google.com/?utm_source=OGB">My Account</a></div></div><div class="gb_Db"><div class="gb_Eb gb_7a" aria-hidden="true"><a class="gb_Fb gb_Nb" href="https://www.google.ca/webhp?authuser=0"><img class="gb_Pb gb_tb" src="data:image/gif;base64,R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" alt="Profile" data-src="https://lh3.googleusercontent.com/-LzKrweBhqVc/AAAAAAAAAAI/AAAAAAAAAAA/AMcAYi-h-7kk1p-w08kiWLox7bXDzpPMaA/s48-c-mo/photo.jpg"><div class="gb_Ib"><div class="gb_Qb">Ryan .</div><div class="gb_Rb">rdpitts95@gmail.com (default)</div></div></a></div><a class="gb_Tb gb_7a" href="https://myaccount.google.com/brandaccounts?authuser=0&continue=https://www.google.ca/%3Fgfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE&service=https://www.google.ca/webhp%3Fauthuser%3D%24authuser" aria-hidden="true"><span class="gb_Ub gb_5b"></span><div class="gb_Vb">All your Brand Accounts »</div></a></div><div class="gb_zb"><div><a class="gb_Ha gb_4e gb_yb" href="https://accounts.google.com/AddSession?hl=en&continue=https://www.google.ca/%3Fgfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE">Add account</a></div><div><a class="gb_Ha gb_6e gb_df gb_yb" id="gb_71" href="https://accounts.google.com/Logout?hl=en&continue=https://www.google.ca/%3Fgfe_rd%3Dcr%26ei%3DnEHlWLCtHK3OXv_KpvAE&timeStmp=1491419548&secTok=.AG5fkS-XJu3iOFnrsosqcnbl17d3-qV_Pw" target="_top">Sign out</a></div></div></div></div><div class="gb_Wc gb_Xc gb_Lc gb_g" aria-label="promo" role="region" data-ved="0EPNDCBo" style="behavior:url(#default#userData)"><div class="gb_ha"><a class="gb_0c gb_ld" href="javascript:void(0)" title="No thanks" data-ved="0EPVDCBs">×</a><div class="gb_1c"><div class="gb_ed"><img src="Google_files/ic_wahlberg_product_core_48.png" width="32" height="32"></div><div class="gb_8c"><p class="gb_Vc"><span class="primaryText">Come here often? Make Google your homepage.</span></p><a class="gb_yb gb_Ia gb_7c gb_6c" href="https://www.google.com/url?q=https://www.google.com/homepage/hp-firefox.html%3Futm_source%3Dgoogle.com%26utm_medium%3Dcallout%26utm_campaign%3DFFDHP&source=hpp&id=19000317&ct=7&usg=AFQjCNGpJYJLVlrP4aS5wSlNy1fQs3_xmg&cot=2" target="_blank" data-ved="0EPRDCBw"><span>Yes, show me</span></a></div></div><iframe tabindex="-1" class="gb_bd" src="javascript:''" style="width: 299px; height: 134px; visibility: visible; top: -1px; left: -1px;" frameborder="0"></iframe></div></div></div></div> </div> </div> </div> <div class="sfbg nojsv" style="margin-top:-20px"><div class="sfbgg"></div></div><form class="tsf" action="/search" style="overflow:visible" id="tsf" method="GET" name="f" onsubmit="return q.value!=''" role="search"><input value="psy-ab" name="sclient" type="hidden"><div data-jibp="" data-jiis="uc" id="tophf"><input name="site" value="" type="hidden"><input name="source" value="hp" type="hidden"></div><div class="tsf-p"><div class="nojsv logocont" id="logocont"><h1><a href="https://www.google.ca/webhp?hl=en&sa=X&ved=0ahUKEwjI9p_jgo7TAhWGSiYKHUTKACsQPAgD" title="Go to Google Home" id="logo" data-hveid="3"><img src="Google_files/googlelogo_color_120x44dp.png" alt="Google" onload="google.aft&&google.aft(this)" width="120" height="44"></a></h1></div><div class="sfibbbc"><div class="sbtc" id="sbtc"><div class="sbibtd"><div class="nojsv sfopt" id="sfopt"><div class="lsd"><div id="ss-bar" style="white-space:nowrap;z-index:98" data-jiis="uc"></div></div></div><div class="sfsbc"><div class="nojsb"> </div></div><div class="sbibod " id="sfdiv"><button class="sbico-c" value="Search" aria-label="Google Search" id="_fZl" name="btnG" type="submit"><span class="sbico _wtf _Qtf"><svg focusable="false" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"></path></svg></span></button><div class="lst-c"><div class="gstl_0 sbib_a" style="height: 44px;"><div class="sbib_d" id="sb_chc0" dir="ltr"></div><div class="gsst_b sbib_c" id="gs_st0" style="line-height: 44px; display: none;" dir="ltr"></div><div class="sbib_b" id="sb_ifc0" dir="ltr"><div id="gs_lc0" style="position: relative;"><input class="gsfi" id="lst-ib" maxlength="2048" name="q" autocomplete="off" title="Search" aria-label="Search" aria-haspopup="false" role="combobox" aria-autocomplete="both" style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; background: transparent url("data:image/gif;base64,R0lGODlhAQABAID/AMDAwAAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D") repeat scroll 0% 0%; position: absolute; z-index: 6; left: 0px; outline: medium none;" dir="ltr" spellcheck="false" type="text"><div class="gsfi" style="background: transparent none repeat scroll 0% 0%; color: transparent; padding: 0px; position: absolute; z-index: 2; white-space: pre; visibility: hidden;" id="gs_sc0"></div><input class="gsfi" disabled="disabled" autocomplete="off" aria-hidden="true" style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; position: absolute; z-index: 1; background-color: transparent; color: silver; left: 0px;" id="gs_taif0" dir="ltr"><input class="gsfi" disabled="disabled" autocomplete="off" aria-hidden="true" style="border: medium none; padding: 0px; margin: 0px; height: auto; width: 100%; position: absolute; z-index: 1; background-color: transparent; color: silver; transition: all 0.218s ease 0s; opacity: 0; text-align: left; left: 0px;" id="gs_htif0" dir="ltr"></div></div></div></div></div></div><div class="gstl_0 sbdd_a" style="min-width: 585px; top: 44px; position: absolute; left: 0px;"><div class="fl"></div><div><div class="sbdd_b" style="display: none;"></div><div><div id="pocs" style="display:none;left:0px;white-space:nowrap;position:absolute"><div id="pocs0"><span><span>Google</span> Instant is unavailable. Press Enter to search.</span> <a href="https://support.google.com/websearch/answer/186645?hl=en-CA">Learn more</a></div><div id="pocs1"><span>Google</span> Instant is off due to connection speed. Press Enter to search.</div><div id="pocs2">Press Enter to search.</div></div></div></div></div></div><div></div></div><div class="jsb" style="padding-top:18px"><center><input value="Google Search" aria-label="Google Search" name="btnK" jsaction="sf.chk" type="submit"><input value="I'm Feeling Lucky" aria-label="I'm Feeling Lucky" name="btnI" jsaction="sf.lck" type="submit"></center></div></div><input name="oq" value="" type="hidden"><input name="gs_l" value="" type="hidden"><input name="pbx" value="1" type="hidden"></form></div><div class="sfbgx"></div><div id="gac_scont"></div><div class="content" data-jiis="cc" id="main"><span class="ctr-p" id="body"><center><div style="height:233px;margin-top:89px" id="lga"><div style="padding-top:109px"><style>#hplogo{background:url(/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png)
no-repeat}@media
(-moz-max-device-pixel-ratio:1),(max-resolution:96dpi){#hplogo{background:url(/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png)
no-repeat}}</style><div style="background-size:272px 92px;height:92px;width:272px" title="Google" id="hplogo" onload="window.lol&&lol()" align="left"><div class="logo-subtext">Canada</div></div></div></div><div style="height:118px"></div><div data-jibp="h" data-jiis="uc" id="prm-pt" style="margin-top:12px"><style>#als{font-size:small;margin-bottom:24px}#_eEe{display:inline-block;line-height:28px;}#_eEe
a{padding:0 3px;}._lEe{display:inline-block;margin:0
2px;white-space:nowrap}._PEe{display:inline-block;margin:0 2px}</style><script>window.gbar&&gbar.up&&gbar.up.tp&&gbar.up.tp();</script><div id="als"><div id="_eEe">Google.ca offered in: <a href="https://www.google.ca/setprefs?sig=0_zUanEnjL4a0VkVHXXYHKuo9rXiM%3D&hl=fr&source=homepage" onmousedown="return rwt(this,'','','','','AFQjCNFqULn1BIs2QXjbMBh34zBSobwstQ','xgvmYoQNP8-5WXse2YRR8g','0ahUKEwjI9p_jgo7TAhWGSiYKHUTKACsQ2ZgBCAY','','',event)">Français</a> </div></div><div id="swml"></div></div></center></span><div class="ctr-p" id="footer"><div data-jibp="h" data-jiis="uc" id="fbarcnt" style="height: auto; visibility: visible;"><style>.fmulti{}._dQc{bottom:0;left:0;position:absolute;right:0}._GR{background:#f2f2f2;left:0;right:0;-webkit-text-size-adjust:none}.fbar
p{display:inline}.fbar
a,#fsettl{text-decoration:none;white-space:nowrap}.fbar{margin-left:-27px}._Gs{padding-left:27px;margin:0
!important}._eA{padding:0 !important;margin:0
!important}#fbarcnt{display:block}._E2
a:hover{text-decoration:underline}._HR img{margin-right:4px}._HR a,._GR
#swml a{text-decoration:none}.fmulti{text-align:center}.fmulti
#fsr{display:block;float:none}.fmulti
#fuser{display:block;float:none}#fuserm{line-height:25px}#fsr{float:right;white-space:nowrap}#fsl{white-space:nowrap}#fsett{background:#fff;border:1px
solid #999;bottom:30px;padding:10px 0;position:absolute;box-shadow:0
2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px
rgba(0,0,0,0.2);text-align:left;z-index:104}#fsett
a{display:block;line-height:44px;padding:0
20px;text-decoration:none;white-space:nowrap}._E2
#fsettl:hover{text-decoration:underline}._E2 #fsett
a:hover{text-decoration:underline}._mk{color:#777}._Nh{color:#222;font-size:14px;font-weight:normal;-moz-tap-highlight-color:rgba(0,0,0,0)}._Mo{display:inline-block;opacity:0.55;vertical-align:top}a._Nh:hover
._Mo,a._Nh:active ._Mo{opacity:1.0}._Nh{padding:8px
16px;margin-right:10px}._mk{margin:40px
0}._dD{margin-right:10px}._nW{margin-left:166px}#fbar{background:#f2f2f2;border-top:1px
solid
#e4e4e4;line-height:40px;min-width:980px}._xac{margin-left:166px}.fbar
p,.fbar a,#fsettl,#fsett a{color:#777}.fbar a:hover,#fsett
a:hover{color:#333}.fbar{font-size:small}#fuser{float:right}._HR{margin-left:166px;line-height:15px;}#fsl{margin-left:30px}#fsr{margin-right:30px}.fmulti
#fsl{margin-left:0}.fmulti #fsr{margin-right:0}</style> <div id="footcnt"> <div class="_dQc _E2" id="fbar"> <div class="fbar"> <span id="fsr"> <a class="_Gs" href="https://www.google.ca/intl/en/policies/privacy/?fg=1">Privacy</a> <a class="_Gs" href="https://www.google.ca/intl/en/policies/terms/?fg=1">Terms</a> <span style="display:inline-block;position:relative"> <a class="_Gs" href="https://www.google.ca/preferences?hl=en" id="fsettl" aria-controls="fsett" aria-expanded="false" role="button" jsaction="foot.cst">Settings</a> <span id="fsett" style="display:none"> <a href="https://www.google.ca/preferences?hl=en-CA&fg=1">Search settings</a> <span data-jibp="h" data-jiis="uc" id="advsl"> <a href="https://www.google.ca/advanced_search?hl=en-CA&fg=1">Advanced search</a> </span> <a href="https://www.google.ca/history?hl=en-CA&fg=1"> History </a> <a href="https://support.google.com/websearch/?p=ws_results_help&hl=en-CA&fg=1">Search Help</a> <a href="javascript:void(0)" data-bucket="websearch" id="_Yvd" target="_blank" jsaction="gf.sf" data-ved="0ahUKEwjI9p_jgo7TAhWGSiYKHUTKACsQLggJ"> Send feedback </a> </span> </span> <a class="_Gs" href="https://www.google.com/?gfe_rd=cr&ei=nEHlWLCtHK3OXv_KpvAE&gws_rd=cr&fg=1">Use Google.com</a> </span> <span id="fsl"> <a class="_Gs" href="https://www.google.ca/intl/en/ads/?fg=1">Advertising</a> <a class="_Gs" href="https://www.google.ca/services/?fg=1">Business</a> <a class="_Gs" href="https://www.google.ca/intl/en/about.html?fg=1">About</a> </span> </div> </div> </div> </div></div><div data-jibp="h" data-jiis="uc" id="footc"><script>(function(){google.j.rfp='1';})();</script><div id="xfoot"><div id="xjsd"><script src="Google_files/rsACT90oGXSVM_dWdlWR1u5O75me6esUJsZg"></script></div><div id="xjsi"><script>(function(){function
c(b){window.setTimeout(function(){var
a=document.createElement("script");a.src=b;document.getElementById("xjsd").appendChild(a)},0)}google.dljp=function(b,a){google.xjsu=b;c(a)};google.dlj=c;}).call(this);(function(){window.google.xjsrm=[];})();if(google.y)google.y.first=[];if(!google.xjs){window._=window._||{};window._DumpException=window._._DumpException=function(e){throw
e};if(google.timers&&google.timers.load.t){google.timers.load.t.xjsls=new
Date().getTime();}google.dljp('/xjs/_/js/k\x3dxjs.s.en.f6GqJBRVWnE.O/m\x3dsx,c,sb,cdos,cr,elog,hsm,jsa,r,qsm,j,p,d,csi/am\x3dgCMoyuMFDQD5P0IoCDcJC6QKjDCAAQ/rt\x3dj/d\x3d1/t\x3dzcms/rs\x3dACT90oGXSVM_dWdlWR1u5O75me6esUJsZg','/xjs/_/js/k\x3dxjs.s.en.f6GqJBRVWnE.O/m\x3dsx,c,sb,cdos,cr,elog,hsm,jsa,r,qsm,j,p,d,csi/am\x3dgCMoyuMFDQD5P0IoCDcJC6QKjDCAAQ/rt\x3dj/d\x3d1/t\x3dzcms/rs\x3dACT90oGXSVM_dWdlWR1u5O75me6esUJsZg');google.xjs=1;}google.pmc={"sx":{},"c":{"mcr":5},"sb":{"agen":false,"cgen":true,"client":"hp","dh":true,"dhqt":true,"ds":"","fl":true,"fpol":true,"host":"google.ca","isbh":44,"jam":1,"mara":true,"msgs":{"cibl":"Clear
Search","dym":"Did you mean:","lcky":"I\u0026#39;m Feeling
Lucky","lml":"Learn more","oskt":"Input tools","psrc":"This search was
removed from your \u003Ca href=\"/history\"\u003EWeb
History\u003C/a\u003E","psrl":"Remove","sbit":"Search by
image","srch":"Google
Search"},"nds":true,"ovr":{},"pfof":true,"pq":"","psy":"p","refpd":true,"rfs":[],"sbas":"0
3px 8px 0 rgba(0,0,0,0.2),0 0 0 1px
rgba(0,0,0,0.08)","sbpl":16,"sbpr":16,"scd":10,"sce":4,"stok":"hdRpMopGRaTEX384RU7PmJdDDOo","token":"dqZ7njzORT1OTqnx6q6xKA","ueh":"28f69341_9682dc51_86315186_5de6c35e_28b503d4"},"aa":{},"abd":{"abd":false,"deb":false,"det":false},"async":{"slm":false},"cdos":{"bih":681,"biw":490,"cdobsel":false,"dpr":"1"},"cr":{"eup":false,"qir":false,"rctj":true,"ref":false,"uff":false},"ddls":{},"dvl":{"cookie_timeout":86400,"jsc":"[null,null,null,30000,null,null,null,2]\n","msg_err":"Location
unavailable","msg_gps":"Using
GPS","msg_unk":"Unknown","msg_upd":"Update location","msg_use":"Use
precise
location"},"elog":{},"erh":{},"foot":{"pf":true,"po":false,"qe":false},"fpe":{"js":true},"gf":{"pid":196,"si":true},"hsm":{},"ipv6":{},"jsa":{},"jsaleg":{},"llc":{},"lu":{},"m":{"ab":{"on":true},"msgs":{"hPers":"Hide
private results","hPersD":"Currently hiding private
results","sPers":"Show all results","sPersD":"Currently showing private
results"}},"r":{},"sf":{},"vm":{"bv":151426398,"d":"eWE","tc":true,"te":true,"tk":true,"ts":true},"qsm":{},"j":{"ajrp":true,"cmt":true,"icmt":false,"lbtfdr":10000,"mcr":5,"tct":"
\\u3000?","tlh":true,"witu":false},"p":{"ae":true,"avgTtfc":1500,"brba":false,"csui":false,"dlen":24,"dper":3,"eae":true,"fbdc":500,"fbdu":-1,"fbh":true,"fd":1000000,"focus":true,"gpsj":true,"hiue":true,"hpt":311,"knrt":true,"mds":"lcl,sp,mbl_he,mbl_hs,mbl_re,mbl_rs,mbl_sv","msg":{"dym":"Did
you mean:","gs":"Google Search","kntt":"Use the up and down arrow keys
to select each result. Press Enter to go to the selection.","pcnt":"New
Tab","sif":"Search instead for","srf":"Showing results
for"},"nprr":1,"ophe":true,"pmt":250,"pq":true,"rpt":19,"sc":"psy-ab","tdur":50,"ufl":true},"d":{},"csi":{"acsi":true,"jsmf":true},"TG8rFw":{"sd":"1"},"Iz7bbg":{},"q7pS8A":{},"q1cupA":{},"GDHetg":{},"71W8GA":{},"7Fjppg":{},"I7Pl5g":{},"RLN7pw":{},"BmJv2w":{},"aQRXjA":{},"w5TOlw":{},"JC6ZFg":{},"bnhGTQ":{},"4RZUyg":{},"flRZRg":{},"/nNC3A":{},"ov7Bgw":{},"v52Mdg":{},"x5vR5A":{},"DDSUHw":{},"CjL7kw":{},"ITl3wQ":{},"v0BWCA":{},"4csGKQ":{},"PUB9yA":{},"2kDaKA":{},"k9pyPA":{},"c+PT4g":{},"/1S6iw":{},"GqeGtQ":{},"+idT0Q":{},"NpA8BQ":{},"4RblDA":{},"C+zmgA":{},"/K7T0g":{},"YFCs/g":{},"zIpemg":{},"A/Ucpg":{},"cm4D8w":{},"4syiOQ":{}};google.y.first.push(function(){google.loadAll(['aa','abd','async','dvl','erh','foot','fpe','ipv6','lu','m','sf','vm'].concat(google.xjsrm||[]));if(google.med){google.med('init');google.initHistory();google.med('history');}});if(google.j&&google.j.en&&google.j.xi){window.setTimeout(google.j.xi,0);}
</script></div></div></div><div data-jibp="h" data-jiis="uc" id="lb"></div></div><script>/*
_GlobalPrefix_ */
this.gbar_=this.gbar_||{};(function(_){var window=this;
/* _Module_:sy4 */
try{
var
Ac,Bc,Cc,Dc,Ec,Fc,Gc,Kc,Lc,Mc,Sc,Xc,fd;_.wc=function(a){a&&"function"==typeof
a.fa&&a.fa()};_.xc=function(a,c){var
d=Array.prototype.slice.call(arguments,1);return function(){var
c=d.slice();c.push.apply(c,arguments);return
a.apply(this,c)}};_.zc=function(a,c){c=_.xc(_.wc,c);a.ea?_.n(void
0)?c.call(void 0):c():(a.Ra||(a.Ra=[]),a.Ra.push(_.n(void
0)?(0,_.u)(c,void
0):c))};Ac=/[\x00&<>"']/;Bc=/\x00/g;Cc=/'/g;Dc=/"/g;Ec=/>/g;Fc=/</g;Gc=/&/g;
_.Hc=function(a){if(!Ac.test(a))return
a;-1!=a.indexOf("&")&&(a=a.replace(Gc,"&"));-1!=a.indexOf("<")&&(a=a.replace(Fc,"<"));-1!=a.indexOf(">")&&(a=a.replace(Ec,">"));-1!=a.indexOf('"')&&(a=a.replace(Dc,"""));-1!=a.indexOf("'")&&(a=a.replace(Cc,"'"));-1!=a.indexOf("\x00")&&(a=a.replace(Bc,"�"));return
a};_.Ic=function(a){var c=typeof
a;return"object"==c&&null!=a||"function"==c};_.Jc=function(a){return"function"==_.ma(a)};
Kc=function(a){if(a&&"number"==typeof
a.length){if(_.Ic(a))return"function"==typeof a.item||"string"==typeof
a.item;if(_.Jc(a))return"function"==typeof
a.item}return!1};Lc={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"};Mc="constructor
hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString
toString valueOf".split(" ");
_.Nc=function(a,c,d){for(var e in
a)c.call(d,a[e],e,a)};_.Oc=function(a){var c=a.length;if(0<c){for(var
d=Array(c),e=0;e<c;e++)d[e]=a[e];return
d}return[]};_.Pc=function(a,c){return
0<=(0,_.za)(a,c)};_.Qc=function(a,c){return
0==a.lastIndexOf(c,0)};_.Rc=function(a){var
c=_.ma(a);return"array"==c||"object"==c&&"number"==typeof a.length};
Sc=function(a,c,d){function
e(d){d&&c.appendChild(_.t(d)?a.createTextNode(d):d)}for(var
f=2;f<d.length;f++){var
g=d[f];!_.Rc(g)||_.Ic(g)&&0<g.nodeType?e(g):(0,_.Ba)(Kc(g)?_.Oc(g):g,e)}};_.Tc=function(a){return
a.parentWindow||a.defaultView};_.Uc=function(a,c){_.Nc(c,function(c,e){"style"==e?a.style.cssText=c:"class"==e?a.className=c:"for"==e?a.htmlFor=c:Lc.hasOwnProperty(e)?a.setAttribute(Lc[e],c):_.Qc(e,"aria-")||_.Qc(e,"data-")?a.setAttribute(e,c):a[e]=c})};
_.Vc=function(a,c){for(var
d,e,f=1;f<arguments.length;f++){e=arguments[f];for(d in
e)a[d]=e[d];for(var
g=0;g<Mc.length;g++)d=Mc[g],Object.prototype.hasOwnProperty.call(e,d)&&(a[d]=e[d])}};
_.Wc=function(a,c){var
d=String(c[0]),e=c[1];if(!_.kc&&e&&(e.name||e.type)){d=["<",d];e.name&&d.push('
name="',_.Hc(e.name),'"');if(e.type){d.push('
type="',_.Hc(e.type),'"');var f={};_.Vc(f,e);delete
f.type;e=f}d.push(">");d=d.join("")}d=a.createElement(d);e&&(_.t(e)?d.className=e:_.na(e)?d.className=e.join("
"):_.Uc(d,e));2<c.length&&Sc(a,d,c);return d};
Xc=function(a){return/^\s*$/.test(a)?!1:/^[\],:{}\s\u2028\u2029]*$/.test(a.replace(/\\["\\\/bfnrtu]/g,"@").replace(/(?:"[^"\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)[\s\u2028\u2029]*(?=:|,|]|}|$)/g,"]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g,""))};_.Yc=function(a){return/^[\s\xa0]*$/.test(a)};_.Zc=function(a){a=String(a);if(Xc(a))try{return
eval("("+a+")")}catch(c){}throw
Error("d`"+a);};_.ad=function(a,c){try{return
_.ab(a[c]),!0}catch(d){}return!1};
_.bd=function(a){var c=[],d=0,e;for(e in a)c[d++]=e;return
c};_.cd=function(a){var c=[],d=0,e;for(e in a)c[d++]=a[e];return
c};_.dd=function(a,c){c=(0,_.za)(a,c);var
d;(d=0<=c)&&Array.prototype.splice.call(a,c,1);return
d};fd=function(a){var c;a:{c=ed;for(var
d=a.length,e=_.t(a)?a.split(""):a,f=0;f<d;f++)if(f in e&&c.call(void
0,e[f],f,a)){c=f;break a}c=-1}return
0>c?null:_.t(a)?a.charAt(c):a[c]};_.gd=function(a){var
c=Number(a);return
0==c&&_.Yc(a)?window.NaN:c};_.hd=function(a){return(0,window.encodeURIComponent)(String(a))};
var
kd;_.id="closure_listenable_"+(1E6*Math.random()|0);_.jd=function(a){return!(!a||!a[_.id])};kd=0;_.ld=function(a,c){this.type=a;this.o=this.target=c;this.A=!1;this.df=!0};_.ld.prototype.stopPropagation=function(){this.A=!0};_.ld.prototype.preventDefault=function(){this.df=!1};var
md=function(a,c,d,e,f){this.listener=a;this.b=null;this.src=c;this.type=d;this.capture=!!e;this.Jc=f;this.key=++kd;this.Qb=this.vc=!1},nd=function(a){a.Qb=!0;a.listener=null;a.b=null;a.src=null;a.Jc=null};var
od=function(a){this.src=a;this.b={};this.o=0};od.prototype.add=function(a,c,d,e,f){var
g=a.toString();a=this.b[g];a||(a=this.b[g]=[],this.o++);var
h=pd(a,c,e,f);-1<h?(c=a[h],d||(c.vc=!1)):(c=new
md(c,this.src,g,!!e,f),c.vc=d,a.push(c));return
c};od.prototype.remove=function(a,c,d,e){a=a.toString();if(!(a in
this.b))return!1;var
f=this.b[a];c=pd(f,c,d,e);return-1<c?(nd(f[c]),Array.prototype.splice.call(f,c,1),0==f.length&&(delete
this.b[a],this.o--),!0):!1};
var qd=function(a,c){var d=c.type;if(!(d in a.b))return!1;var
e=_.dd(a.b[d],c);e&&(nd(c),0==a.b[d].length&&(delete
a.b[d],a.o--));return
e};od.prototype.Lb=function(a,c){a=this.b[a.toString()];var
d=[];if(a)for(var e=0;e<a.length;++e){var
f=a[e];f.capture==c&&d.push(f)}return
d};od.prototype.lb=function(a,c,d,e){a=this.b[a.toString()];var
f=-1;a&&(f=pd(a,c,d,e));return-1<f?a[f]:null};var
pd=function(a,c,d,e){for(var f=0;f<a.length;++f){var
g=a[f];if(!g.Qb&&g.listener==c&&g.capture==!!d&&g.Jc==e)return
f}return-1};
var
sd,td;_.rd=!_.B||_.tb(9);sd=!_.B||_.tb(9);td=_.B&&!_.C("9");!_.hb||_.C("528");_.gb&&_.C("1.9b")||_.B&&_.C("8")||_.db&&_.C("9.5")||_.hb&&_.C("528");_.gb&&!_.C("8")||_.B&&_.C("9");_.ud=_.B?"focusin":"DOMFocusIn";_.vd=_.hb?"webkitTransitionEnd":_.db?"otransitionend":"transitionend";_.wd=function(a,c){_.ld.call(this,a?a.type:"");this.relatedTarget=this.o=this.target=null;this.button=this.screenY=this.screenX=this.clientY=this.clientX=0;this.key="";this.w=this.keyCode=0;this.metaKey=this.shiftKey=this.altKey=this.ctrlKey=!1;this.b=this.state=null;a&&this.init(a,c)};_.y(_.wd,_.ld);
_.wd.prototype.init=function(a,c){var
d=this.type=a.type,e=a.changedTouches?a.changedTouches[0]:null;this.target=a.target||a.srcElement;this.o=c;(c=a.relatedTarget)?_.gb&&(_.ad(c,"nodeName")||(c=null)):"mouseover"==d?c=a.fromElement:"mouseout"==d&&(c=a.toElement);this.relatedTarget=c;null===e?(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.clientX=void
0!==e.clientX?e.clientX:e.pageX,this.clientY=
void
0!==e.clientY?e.clientY:e.pageY,this.screenX=e.screenX||0,this.screenY=e.screenY||0);this.button=a.button;this.keyCode=a.keyCode||0;this.key=a.key||"";this.w=a.charCode||("keypress"==d?a.keyCode:0);this.ctrlKey=a.ctrlKey;this.altKey=a.altKey;this.shiftKey=a.shiftKey;this.metaKey=a.metaKey;this.state=a.state;this.b=a;a.defaultPrevented&&this.preventDefault()};
_.wd.prototype.stopPropagation=function(){_.wd.J.stopPropagation.call(this);this.b.stopPropagation?this.b.stopPropagation():this.b.cancelBubble=!0};_.wd.prototype.preventDefault=function(){_.wd.J.preventDefault.call(this);var
a=this.b;if(a.preventDefault)a.preventDefault();else
if(a.returnValue=!1,td)try{if(a.ctrlKey||112<=a.keyCode&&123>=a.keyCode)a.keyCode=-1}catch(c){}};
var
xd,yd,zd,Bd,Dd,Ed,Kd,Jd,Fd,Ld;xd="closure_lm_"+(1E6*Math.random()|0);yd={};zd=0;_.N=function(a,c,d,e,f){if(_.na(c)){for(var
g=0;g<c.length;g++)_.N(a,c[g],d,e,f);return null}d=_.Ad(d);return
_.jd(a)?a.L(c,d,e,f):Bd(a,c,d,!1,e,f)};
Bd=function(a,c,d,e,f,g){if(!c)throw Error("q");var
h=!!f,l=_.Cd(a);l||(a[xd]=l=new od(a));d=l.add(c,d,e,f,g);if(d.b)return
d;e=Dd();d.b=e;e.src=a;e.listener=d;if(a.addEventListener)a.addEventListener(c.toString(),e,h);else
if(a.attachEvent)a.attachEvent(Ed(c.toString()),e);else throw
Error("r");zd++;return d};Dd=function(){var a=Fd,c=sd?function(d){return
a.call(c.src,c.listener,d)}:function(d){d=a.call(c.src,c.listener,d);if(!d)return
d};return c};
_.Gd=function(a,c,d,e,f){if(_.na(c)){for(var
g=0;g<c.length;g++)_.Gd(a,c[g],d,e,f);return null}d=_.Ad(d);return
_.jd(a)?a.Ma(c,d,e,f):Bd(a,c,d,!0,e,f)};_.Hd=function(a,c,d,e,f){if(_.na(c))for(var
g=0;g<c.length;g++)_.Hd(a,c[g],d,e,f);else
d=_.Ad(d),_.jd(a)?a.ua(c,d,e,f):a&&(a=_.Cd(a))&&(c=a.lb(c,d,!!e,f))&&_.Id(c)};
_.Id=function(a){if(_.oa(a)||!a||a.Qb)return!1;var
c=a.src;if(_.jd(c))return c.oc(a);var
d=a.type,e=a.b;c.removeEventListener?c.removeEventListener(d,e,a.capture):c.detachEvent&&c.detachEvent(Ed(d),e);zd--;(d=_.Cd(c))?(qd(d,a),0==d.o&&(d.src=null,c[xd]=null)):nd(a);return!0};Ed=function(a){return
a in yd?yd[a]:yd[a]="on"+a};Kd=function(a,c,d,e){var
f=!0;if(a=_.Cd(a))if(c=a.b[c.toString()])for(c=c.concat(),a=0;a<c.length;a++){var
g=c[a];g&&g.capture==d&&!g.Qb&&(g=Jd(g,e),f=f&&!1!==g)}return f};
Jd=function(a,c){var d=a.listener,e=a.Jc||a.src;a.vc&&_.Id(a);return
d.call(e,c)};
Fd=function(a,c){if(a.Qb)return!0;if(!sd){var
d=c||_.p("window.event");c=new _.wd(d,this);var
e=!0;if(!(0>d.keyCode||void 0!=d.returnValue)){a:{var
f=!1;if(0==d.keyCode)try{d.keyCode=-1;break a}catch(h){f=!0}if(f||void
0==d.returnValue)d.returnValue=!0}d=[];for(f=c.o;f;f=f.parentNode)d.push(f);a=a.type;for(f=d.length-1;!c.A&&0<=f;f--){c.o=d[f];var
g=Kd(d[f],a,!0,c),e=e&&g}for(f=0;!c.A&&f<d.length;f++)c.o=d[f],g=Kd(d[f],a,!1,c),e=e&&g}return
e}return Jd(a,new _.wd(c,this))}; _.Cd=function(a){a=a[xd];return a
instanceof
od?a:null};Ld="__closure_events_fn_"+(1E9*Math.random()>>>0);_.Ad=function(a){if(_.Jc(a))return
a;a[Ld]||(a[Ld]=function(c){return a.handleEvent(c)});return a[Ld]};
_.Md=function(a){_.z.call(this);this.Z=a;this.T={}};_.y(_.Md,_.z);var
Nd=[];_.Md.prototype.L=function(a,c,d,e){return
Od(this,a,c,d,e)};_.Md.prototype.A=function(a,c,d,e,f){return
Od(this,a,c,d,e,f)};var
Od=function(a,c,d,e,f,g){_.na(d)||(d&&(Nd[0]=d.toString()),d=Nd);for(var
h=0;h<d.length;h++){var
l=_.N(c,d[h],e||a.handleEvent,f||!1,g||a.Z||a);if(!l)break;a.T[l.key]=l}return
a};_.Md.prototype.Ma=function(a,c,d,e){return Pd(this,a,c,d,e)};
var Pd=function(a,c,d,e,f,g){if(_.na(d))for(var
h=0;h<d.length;h++)Pd(a,c,d[h],e,f,g);else{c=_.Gd(c,d,e||a.handleEvent,f,g||a.Z||a);if(!c)return
a;a.T[c.key]=c}return
a};_.Md.prototype.ua=function(a,c,d,e,f){if(_.na(c))for(var
g=0;g<c.length;g++)this.ua(a,c[g],d,e,f);else
d=d||this.handleEvent,f=f||this.Z||this,d=_.Ad(d),e=!!e,c=_.jd(a)?a.lb(c,d,e,f):a?(a=_.Cd(a))?a.lb(c,d,e,f):null:null,c&&(_.Id(c),delete
this.T[c.key]);return this};
_.Qd=function(a){_.Nc(a.T,function(a,d){this.T.hasOwnProperty(d)&&_.Id(a)},a);a.T={}};_.Md.prototype.O=function(){_.Md.J.O.call(this);_.Qd(this)};_.Md.prototype.handleEvent=function(){throw
Error("s");};
_.Rd=function(a){if(a.Ja&&"function"==typeof a.Ja)return
a.Ja();if(_.t(a))return a.split("");if(_.Rc(a)){for(var
c=[],d=a.length,e=0;e<d;e++)c.push(a[e]);return c}return
_.cd(a)};_.Sd=function(a){if(a.Oa&&"function"==typeof a.Oa)return
a.Oa();if(!a.Ja||"function"!=typeof a.Ja){if(_.Rc(a)||_.t(a)){var
c=[];a=a.length;for(var d=0;d<a;d++)c.push(d);return c}return _.bd(a)}};
_.Td=function(a,c){if(a.forEach&&"function"==typeof
a.forEach)a.forEach(c,void 0);else if(_.Rc(a)||_.t(a))(0,_.Ba)(a,c,void
0);else for(var d=_.Sd(a),e=_.Rd(a),f=e.length,g=0;g<f;g++)c.call(void
0,e[g],d&&d[g],a)};
_.Ud="StopIteration"in
_.m?_.m.StopIteration:{message:"StopIteration",stack:""};_.Vd=function(){};_.Vd.prototype.next=function(){throw
_.Ud;};_.Vd.prototype.Ub=function(){return
this};_.Wd=function(a,c){this.o={};this.b=[];this.A=this.w=0;var
d=arguments.length;if(1<d){if(d%2)throw Error("c");for(var
e=0;e<d;e+=2)this.set(arguments[e],arguments[e+1])}else if(a){a
instanceof _.Wd?(d=a.Oa(),e=a.Ja()):(d=_.bd(a),e=_.cd(a));for(var
f=0;f<d.length;f++)this.set(d[f],e[f])}};_.k=_.Wd.prototype;_.k.Ja=function(){Xd(this);for(var
a=[],c=0;c<this.b.length;c++)a.push(this.o[this.b[c]]);return
a};_.k.Oa=function(){Xd(this);return
this.b.concat()};_.k.gc=function(){return 0==this.w};
_.k.clear=function(){this.o={};this.A=this.w=this.b.length=0};_.k.remove=function(a){return
_.Yd(this.o,a)?(delete
this.o[a],this.w--,this.A++,this.b.length>2*this.w&&Xd(this),!0):!1};var
Xd=function(a){if(a.w!=a.b.length){for(var c=0,d=0;c<a.b.length;){var
e=a.b[c];_.Yd(a.o,e)&&(a.b[d++]=e);c++}a.b.length=d}if(a.w!=a.b.length){for(var
f={},d=c=0;c<a.b.length;)e=a.b[c],_.Yd(f,e)||(a.b[d++]=e,f[e]=1),c++;a.b.length=d}};_.k=_.Wd.prototype;_.k.get=function(a,c){return
_.Yd(this.o,a)?this.o[a]:c};
_.k.set=function(a,c){_.Yd(this.o,a)||(this.w++,this.b.push(a),this.A++);this.o[a]=c};_.k.forEach=function(a,c){for(var
d=this.Oa(),e=0;e<d.length;e++){var
f=d[e],g=this.get(f);a.call(c,g,f,this)}};_.k.clone=function(){return
new _.Wd(this)};_.k.Ub=function(a){Xd(this);var
c=0,d=this.A,e=this,f=new _.Vd;f.next=function(){if(d!=e.A)throw
Error("u");if(c>=e.b.length)throw _.Ud;var f=e.b[c++];return
a?f:e.o[f]};return f};_.Yd=function(a,c){return
Object.prototype.hasOwnProperty.call(a,c)};
var
Zd=function(a,c,d){this.A=d;this.w=a;this.B=c;this.o=0;this.b=null};Zd.prototype.get=function(){var
a;0<this.o?(this.o--,a=this.b,this.b=a.next,a.next=null):a=this.w();return
a};var
$d=function(a,c){a.B(c);a.o<a.A&&(a.o++,c.next=a.b,a.b=c)};_.ae=function(a){switch(a){case
200:case 201:case 202:case 204:case 206:case 304:case
1223:return!0;default:return!1}};_.be=function(a){a.prototype.then=a.prototype.then;a.prototype.$goog_Thenable=!0};_.ce=function(a){if(!a)return!1;try{return!!a.$goog_Thenable}catch(c){return!1}};_.de=function(){};_.de.prototype.o=null;var
ee=function(a){return a.o||(a.o=a.A())};var
fe=function(){this.o=this.b=null},he=new Zd(function(){return new
ge},function(a){a.reset()},100);fe.prototype.add=function(a,c){var
d=he.get();d.set(a,c);this.o?this.o.next=d:this.b=d;this.o=d};fe.prototype.remove=function(){var
a=null;this.b&&(a=this.b,this.b=this.b.next,this.b||(this.o=null),a.next=null);return
a};var
ge=function(){this.next=this.scope=this.b=null};ge.prototype.set=function(a,c){this.b=a;this.scope=c;this.next=null};
ge.prototype.reset=function(){this.next=this.scope=this.b=null};
_.ie=/^(?:([^:/?#.]+):)?(?:\/\/(?:([^/?#]*)@)?([^/#?]*?)(?::([0-9]+))?(?=[/#?]|$))?([^?#]+)?(?:\?([^#]*))?(?:#([\s\S]*))?$/;_.je=function(a){a=a.match(_.ie)[1]||null;!a&&_.m.self&&_.m.self.location&&(a=_.m.self.location.protocol,a=a.substr(0,a.length-1));return
a?a.toLowerCase():""};
var le;le=function(){};_.y(le,_.de);le.prototype.b=function(){var
a=me(this);return a?new window.ActiveXObject(a):new
window.XMLHttpRequest};le.prototype.A=function(){var
a={};me(this)&&(a[0]=!0,a[1]=!0);return a};
var me=function(a){if(!a.w&&"undefined"==typeof
window.XMLHttpRequest&&"undefined"!=typeof window.ActiveXObject){for(var
c=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],d=0;d<c.length;d++){var
e=c[d];try{return new window.ActiveXObject(e),a.w=e}catch(f){}}throw
Error("v");}return a.w};_.ke=new le;
var ne=function(a){_.m.setTimeout(function(){throw
a;},0)},oe,pe=function(){var a=_.m.MessageChannel;"undefined"===typeof
a&&"undefined"!==typeof
window&&window.postMessage&&window.addEventListener&&!_.A("Presto")&&(a=function(){var
a=window.document.createElement("IFRAME");a.style.display="none";a.src="";window.document.documentElement.appendChild(a);var
c=a.contentWindow,a=c.document;a.open();a.write("");a.close();var
d="callImmediate"+Math.random(),e="file:"==c.location.protocol?"*":c.location.protocol+
"//"+c.location.host,a=(0,_.u)(function(a){if(("*"==e||a.origin==e)&&a.data==d)this.port1.onmessage()},this);c.addEventListener("message",a,!1);this.port1={};this.port2={postMessage:function(){c.postMessage(d,e)}}});if("undefined"!==typeof
a&&!_.A("Trident")&&!_.A("MSIE")){var c=new
a,d={},e=d;c.port1.onmessage=function(){if(_.n(d.next)){d=d.next;var
a=d.ge;d.ge=null;a()}};return
function(a){e.next={ge:a};e=e.next;c.port2.postMessage(0)}}return"undefined"!==typeof
window.document&&"onreadystatechange"in
window.document.createElement("SCRIPT")?function(a){var
c=window.document.createElement("SCRIPT");c.onreadystatechange=function(){c.onreadystatechange=null;c.parentNode.removeChild(c);c=null;a();a=null};window.document.documentElement.appendChild(c)}:function(a){_.m.setTimeout(a,0)}};
var
ue=function(a,c){qe||re();se||(qe(),se=!0);te.add(a,c)},qe,re=function(){if(-1!=String(_.m.Promise).indexOf("[native
code]")){var a=_.m.Promise.resolve(void
0);qe=function(){a.then(ve)}}else qe=function(){var
a=ve;!_.Jc(_.m.setImmediate)||_.m.Window&&_.m.Window.prototype&&!_.A("Edge")&&_.m.Window.prototype.setImmediate==_.m.setImmediate?(oe||(oe=pe()),oe(a)):_.m.setImmediate(a)}},se=!1,te=new
fe,ve=function(){for(var
a;a=te.remove();){try{a.b.call(a.scope)}catch(c){ne(c)}$d(he,a)}se=!1};
var ye;_.xe=function(a,c){this.b=0;this.D=void
0;this.A=this.o=this.w=null;this.B=this.C=!1;if(a!=_.ka)try{var
d=this;a.call(c,function(a){we(d,2,a)},function(a){we(d,3,a)})}catch(e){we(this,3,e)}};ye=function(){this.next=this.context=this.o=this.w=this.b=null;this.A=!1};ye.prototype.reset=function(){this.context=this.o=this.w=this.b=null;this.A=!1};var
ze=new Zd(function(){return new
ye},function(a){a.reset()},100),Ae=function(a,c,d){var
e=ze.get();e.w=a;e.o=c;e.context=d;return e};
_.xe.prototype.then=function(a,c,d){return
Be(this,_.Jc(a)?a:null,_.Jc(c)?c:null,d)};_.be(_.xe);_.xe.prototype.cancel=function(a){0==this.b&&ue(function(){var
c=new Ce(a);De(this,c)},this)};
var De=function(a,c){if(0==a.b)if(a.w){var d=a.w;if(d.o){for(var
e=0,f=null,g=null,h=d.o;h&&(h.A||(e++,h.b==a&&(f=h),!(f&&1<e)));h=h.next)f||(g=h);f&&(0==d.b&&1==e?De(d,c):(g?(e=g,e.next==d.A&&(d.A=e),e.next=e.next.next):Ee(d),Fe(d,f,3,c)))}a.w=null}else
we(a,3,c)},He=function(a,c){a.o||2!=a.b&&3!=a.b||Ge(a);a.A?a.A.next=c:a.o=c;a.A=c},Be=function(a,c,d,e){var
f=Ae(null,null,null);f.b=new
_.xe(function(a,h){f.w=c?function(d){try{var
f=c.call(e,d);a(f)}catch(r){h(r)}}:a;f.o=d?function(c){try{var f=
d.call(e,c);!_.n(f)&&c instanceof
Ce?h(c):a(f)}catch(r){h(r)}}:h});f.b.w=a;He(a,f);return
f.b};_.xe.prototype.G=function(a){this.b=0;we(this,2,a)};_.xe.prototype.ea=function(a){this.b=0;we(this,3,a)};
var
we=function(a,c,d){if(0==a.b){a===d&&(c=3,d=new TypeError("Promise
cannot resolve to itself"));a.b=1;var e;a:{var f=d,g=a.G,h=a.ea;if(f
instanceof _.xe)He(f,Ae(g||_.ka,h||null,a)),e=!0;else
if(_.ce(f))f.then(g,h,a),e=!0;else{if(_.Ic(f))try{var
l=f.then;if(_.Jc(l)){Ie(f,l,g,h,a);e=!0;break
a}}catch(q){h.call(a,q);e=!0;break
a}e=!1}}e||(a.D=d,a.b=c,a.w=null,Ge(a),3!=c||d instanceof
Ce||Je(a,d))}},Ie=function(a,c,d,e,f){var
g=!1,h=function(a){g||(g=!0,d.call(f,a))},l=function(a){g||(g=!0,e.call(f,
a))};try{c.call(a,h,l)}catch(q){l(q)}},Ge=function(a){a.C||(a.C=!0,ue(a.F,a))},Ee=function(a){var
c=null;a.o&&(c=a.o,a.o=c.next,c.next=null);a.o||(a.A=null);return
c};_.xe.prototype.F=function(){for(var
a;a=Ee(this);)Fe(this,a,this.b,this.D);this.C=!1};
var
Fe=function(a,c,d,e){if(3==d&&c.o&&!c.A)for(;a&&a.B;a=a.w)a.B=!1;if(c.b)c.b.w=null,Ke(c,d,e);else
try{c.A?c.w.call(c.context):Ke(c,d,e)}catch(f){Le.call(null,f)}$d(ze,c)},Ke=function(a,c,d){2==c?a.w.call(a.context,d):a.o&&a.o.call(a.context,d)},Je=function(a,c){a.B=!0;ue(function(){a.B&&Le.call(null,c)})},Le=ne,Ce=function(a){_.va.call(this,a)};_.y(Ce,_.va);Ce.prototype.name="cancel";
_.O=function(){_.z.call(this);this.Za=new
od(this);this.yf=this;this.Id=null};_.y(_.O,_.z);_.O.prototype[_.id]=!0;_.k=_.O.prototype;_.k.Ec=function(){return
this.Id};_.k.Qd=function(a){this.Id=a};_.k.addEventListener=function(a,c,d,e){_.N(this,a,c,d,e)};_.k.removeEventListener=function(a,c,d,e){_.Hd(this,a,c,d,e)};
_.k.dispatchEvent=function(a){var
c,d=this.Ec();if(d)for(c=[];d;d=d.Ec())c.push(d);var
d=this.yf,e=a.type||a;if(_.t(a))a=new _.ld(a,d);else if(a instanceof
_.ld)a.target=a.target||d;else{var f=a;a=new _.ld(e,d);_.Vc(a,f)}var
f=!0,g;if(c)for(var
h=c.length-1;!a.A&&0<=h;h--)g=a.o=c[h],f=g.Hb(e,!0,a)&&f;a.A||(g=a.o=d,f=g.Hb(e,!0,a)&&f,a.A||(f=g.Hb(e,!1,a)&&f));if(c)for(h=0;!a.A&&h<c.length;h++)g=a.o=c[h],f=g.Hb(e,!1,a)&&f;return
f};_.k.O=function(){_.O.J.O.call(this);this.Rc();this.Id=null};
_.k.L=function(a,c,d,e){return
this.Za.add(String(a),c,!1,d,e)};_.k.Ma=function(a,c,d,e){return
this.Za.add(String(a),c,!0,d,e)};_.k.ua=function(a,c,d,e){return
this.Za.remove(String(a),c,d,e)};_.k.oc=function(a){return
qd(this.Za,a)};_.k.Rc=function(a){var
c;if(this.Za){c=this.Za;a=a&&a.toString();var d=0,e;for(e in
c.b)if(!a||e==a){for(var f=c.b[e],g=0;g<f.length;g++)++d,nd(f[g]);delete
c.b[e];c.o--}c=d}else c=0;return c};
_.k.Hb=function(a,c,d){a=this.Za.b[String(a)];if(!a)return!0;a=a.concat();for(var
e=!0,f=0;f<a.length;++f){var g=a[f];if(g&&!g.Qb&&g.capture==c){var
h=g.listener,l=g.Jc||g.src;g.vc&&this.oc(g);e=!1!==h.call(l,d)&&e}}return
e&&0!=d.df};_.k.Lb=function(a,c){return
this.Za.Lb(String(a),c)};_.k.lb=function(a,c,d,e){return
this.Za.lb(String(a),c,d,e)};
_.Me=function(a,c){_.O.call(this);this.w=a||1;this.o=c||_.m;this.A=(0,_.u)(this.C,this);this.B=(0,_.v)()};_.y(_.Me,_.O);_.Me.prototype.enabled=!1;_.Me.prototype.b=null;_.Ne=function(a,c){a.w=c;a.b&&a.enabled?(a.stop(),a.start()):a.b&&a.stop()};
_.Me.prototype.C=function(){if(this.enabled){var
a=(0,_.v)()-this.B;0<a&&a<.8*this.w?this.b=this.o.setTimeout(this.A,this.w-a):(this.b&&(this.o.clearTimeout(this.b),this.b=null),this.dispatchEvent("tick"),this.enabled&&(this.b=this.o.setTimeout(this.A,this.w),this.B=(0,_.v)()))}};_.Me.prototype.start=function(){this.enabled=!0;this.b||(this.b=this.o.setTimeout(this.A,this.w),this.B=(0,_.v)())};_.Me.prototype.stop=function(){this.enabled=!1;this.b&&(this.o.clearTimeout(this.b),this.b=null)};
_.Me.prototype.O=function(){_.Me.J.O.call(this);this.stop();delete
this.o};_.Oe=function(a,c,d){if(_.Jc(a))d&&(a=(0,_.u)(a,d));else
if(a&&"function"==typeof a.handleEvent)a=(0,_.u)(a.handleEvent,a);else
throw Error("w");return 2147483647<Number(c)?-1:_.m.setTimeout(a,c||0)};
var Qe,Re;_.Pe=function(a){_.O.call(this);this.headers=new
_.Wd;this.F=a||null;this.o=!1;this.D=this.b=null;this.H="";this.w=this.M=this.B=this.G=!1;this.C=0;this.A=null;this.P="";this.N=this.K=!1};_.y(_.Pe,_.O);Qe=/^https?$/i;Re=["POST","PUT"];_.Se=[];_.Pe.prototype.U=function(){this.fa();_.dd(_.Se,this)};
_.Pe.prototype.send=function(a,c,d,e){if(this.b)throw
Error("x`"+this.H+"`"+a);c=c?c.toUpperCase():"GET";this.H=a;this.G=!1;this.o=!0;this.b=this.F?this.F.b():_.ke.b();this.D=this.F?ee(this.F):ee(_.ke);this.b.onreadystatechange=(0,_.u)(this.T,this);try{this.M=!0,this.b.open(c,String(a),!0),this.M=!1}catch(g){Te(this);return}a=d||"";var
f=this.headers.clone();e&&_.Td(e,function(a,c){f.set(c,a)});e=fd(f.Oa());d=_.m.FormData&&a
instanceof
_.m.FormData;!_.Pc(Re,c)||e||d||f.set("Content-Type","application/x-www-form-urlencoded;charset=utf-8");
f.forEach(function(a,c){this.b.setRequestHeader(c,a)},this);this.P&&(this.b.responseType=this.P);"withCredentials"in
this.b&&this.b.withCredentials!==this.K&&(this.b.withCredentials=this.K);try{Ue(this),0<this.C&&((this.N=Ve(this.b))?(this.b.timeout=this.C,this.b.ontimeout=(0,_.u)(this.Z,this)):this.A=_.Oe(this.Z,this.C,this)),this.B=!0,this.b.send(a),this.B=!1}catch(g){Te(this)}};var
Ve=function(a){return
_.B&&_.C(9)&&_.oa(a.timeout)&&_.n(a.ontimeout)},ed=function(a){return"content-type"==a.toLowerCase()};
_.Pe.prototype.Z=function(){"undefined"!=typeof
_.ja&&this.b&&(this.dispatchEvent("timeout"),this.abort(8))};var
Te=function(a){a.o=!1;a.b&&(a.w=!0,a.b.abort(),a.w=!1);We(a);Xe(a)},We=function(a){a.G||(a.G=!0,a.dispatchEvent("complete"),a.dispatchEvent("error"))};_.Pe.prototype.abort=function(){this.b&&this.o&&(this.o=!1,this.w=!0,this.b.abort(),this.w=!1,this.dispatchEvent("complete"),this.dispatchEvent("abort"),Xe(this))};
_.Pe.prototype.O=function(){this.b&&(this.o&&(this.o=!1,this.w=!0,this.b.abort(),this.w=!1),Xe(this,!0));_.Pe.J.O.call(this)};_.Pe.prototype.T=function(){this.ea||(this.M||this.B||this.w?Ye(this):this.X())};_.Pe.prototype.X=function(){Ye(this)};
var
Ye=function(a){if(a.o&&"undefined"!=typeof
_.ja&&(!a.D[1]||4!=(a.b?a.b.readyState:0)||2!=a.$a()))if(a.B&&4==(a.b?a.b.readyState:0))_.Oe(a.T,0,a);else
if(a.dispatchEvent("readystatechange"),4==(a.b?a.b.readyState:0)){a.o=!1;try{a.hc()?(a.dispatchEvent("complete"),a.dispatchEvent("success")):We(a)}finally{Xe(a)}}},Xe=function(a,c){if(a.b){Ue(a);var
d=a.b,e=a.D[0]?_.ka:null;a.b=null;a.D=null;c||a.dispatchEvent("ready");try{d.onreadystatechange=e}catch(f){}}},Ue=function(a){a.b&&a.N&&(a.b.ontimeout=
null);_.oa(a.A)&&(_.m.clearTimeout(a.A),a.A=null)};_.Pe.prototype.hc=function(){var
a=this.$a(),c;if(!(c=_.ae(a))){if(a=0===a)a=_.je(String(this.H)),a=!Qe.test(a);c=a}return
c};_.Pe.prototype.$a=function(){try{return
2<(this.b?this.b.readyState:0)?this.b.status:-1}catch(a){return-1}};_.Pe.prototype.Fc=function(a){if(this.b){var
c=this.b.responseText;a&&0==c.indexOf(a)&&(c=c.substring(a.length));return
_.Zc(c)}};
var
$e;_.Ze=function(a){this.b=a||{cookie:""}};_.k=_.Ze.prototype;_.k.set=function(a,c,d,e,f,g){if(/[;=\s]/.test(a))throw
Error("z`"+a);if(/[;\r\n]/.test(c))throw
Error("A`"+c);_.n(d)||(d=-1);f=f?";domain="+f:"";e=e?";path="+e:"";g=g?";secure":"";d=0>d?"":0==d?";expires="+(new
Date(1970,1,1)).toUTCString():";expires="+(new
Date((0,_.v)()+1E3*d)).toUTCString();this.b.cookie=a+"="+c+f+e+d+g};
_.k.get=function(a,c){for(var
d=a+"=",e=(this.b.cookie||"").split(";"),f=0,g;f<e.length;f++){g=(0,_.wa)(e[f]);if(0==g.lastIndexOf(d,0))return
g.substr(d.length);if(g==a)return""}return
c};_.k.remove=function(a,c,d){var
e=_.n(this.get(a));this.set(a,"",0,c,d);return
e};_.k.Oa=function(){return $e(this).keys};_.k.Ja=function(){return
$e(this).values};_.k.gc=function(){return!this.b.cookie};_.k.clear=function(){for(var
a=$e(this).keys,c=a.length-1;0<=c;c--)this.remove(a[c])};
$e=function(a){a=(a.b.cookie||"").split(";");for(var
c=[],d=[],e,f,g=0;g<a.length;g++)f=(0,_.wa)(a[g]),e=f.indexOf("="),-1==e?(c.push(""),d.push(f)):(c.push(f.substring(0,e)),d.push(f.substring(e+1)));return{keys:c,values:d}};_.af=new
_.Ze("undefined"==typeof
window.document?null:window.document);_.af.o=3950;
var
bf=!1,cf="",df=function(a){a=a.match(/[\d]+/g);if(!a)return"";a.length=3;return
a.join(".")};
(function(){if(window.navigator.plugins&&window.navigator.plugins.length){var
a=window.navigator.plugins["Shockwave
Flash"];if(a&&(bf=!0,a.description)){cf=df(a.description);return}if(window.navigator.plugins["Shockwave
Flash
2.0"]){bf=!0;cf="2.0.0.11";return}}if(window.navigator.mimeTypes&&window.navigator.mimeTypes.length&&(a=window.navigator.mimeTypes["application/x-shockwave-flash"],bf=!(!a||!a.enabledPlugin))){cf=df(a.enabledPlugin.description);return}try{var
c=new window.ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
bf=!0;cf=df(c.GetVariable("$version"));return}catch(d){}try{c=new
window.ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");bf=!0;cf="6.0.21";return}catch(d){}try{c=new
window.ActiveXObject("ShockwaveFlash.ShockwaveFlash"),bf=!0,cf=df(c.GetVariable("$version"))}catch(d){}})();_.ef=bf;_.ff=cf;
var
gf;gf=function(a){return(a=a.exec(_.Va))?a[1]:""};_.hf=function(){if(_.wb)return
gf(/Firefox\/([0-9.]+)/);if(_.B||_.eb||_.db)return _.rb;if(_.Ab)return
_.$a()?gf(/CriOS\/([0-9.]+)/):gf(/Chrome\/([0-9.]+)/);if(_.Bb&&!_.$a())return
gf(/Version\/([0-9.]+)/);if(_.xb||_.yb){var
a=/Version\/(\S+).*Mobile\/(\S+)/.exec(_.Va);if(a)return
a[1]+"."+a[2]}else
if(_.zb)return(a=gf(/Android\s+([0-9.]+)/))?a:gf(/Version\/([0-9.]+)/);return""}();
_.jf=_.db?"opera":_.eb?"edge":_.B?"ie":_.wb?"firefox":_.xb?"iphone":_.yb?"ipad":_.zb?"android":_.Ab?"chrome":_.Bb?"safari":"unknown";
}catch(e){_._DumpException(e)}
/*
_Module_:sy7 */
try{
var Df,Kf,Mf,Vf,Nf,Pf,Of,Sf,Qf,Lf,Wf;_.Cf=function(a){return
Array.prototype.concat.apply([],arguments)};Df=function(a,c){if(a){a=a.split("&");for(var
d=0;d<a.length;d++){var
e=a[d].indexOf("="),f,g=null;0<=e?(f=a[d].substring(0,e),g=a[d].substring(e+1)):f=a[d];c(f,g?(0,window.decodeURIComponent)(g.replace(/\+/g,"
")):"")}}};
_.Ef=function(a,c){this.o=this.D=this.A="";this.F=null;this.B=this.w="";this.C=!1;var
d;a instanceof
_.Ef?(this.C=_.n(c)?c:a.C,_.Ff(this,a.A),this.D=a.D,_.Gf(this,a.o),_.Hf(this,a.F),_.If(this,a.w),_.Jf(this,a.b.clone()),this.B=a.B):a&&(d=String(a).match(_.ie))?(this.C=!!c,_.Ff(this,d[1]||"",!0),this.D=Kf(d[2]||""),_.Gf(this,d[3]||"",!0),_.Hf(this,d[4]),_.If(this,d[5]||"",!0),_.Jf(this,d[6]||"",!0),this.B=Kf(d[7]||"")):(this.C=!!c,this.b=new
Lf(null,0,this.C))};
_.Ef.prototype.toString=function(){var
a=[],c=this.A;c&&a.push(Mf(c,Nf,!0),":");var
d=this.o;if(d||"file"==c)a.push("//"),(c=this.D)&&a.push(Mf(c,Nf,!0),"@"),a.push(_.hd(d).replace(/%25([0-9a-fA-F]{2})/g,"%$1")),d=this.F,null!=d&&a.push(":",String(d));if(d=this.w)this.o&&"/"!=d.charAt(0)&&a.push("/"),a.push(Mf(d,"/"==d.charAt(0)?Of:Pf,!0));(d=this.b.toString())&&a.push("?",d);(d=this.B)&&a.push("#",Mf(d,Qf));return
a.join("")};_.Ef.prototype.clone=function(){return new _.Ef(this)};
_.Ff=function(a,c,d){a.A=d?Kf(c,!0):c;a.A&&(a.A=a.A.replace(/:$/,""));return
a};_.Gf=function(a,c,d){a.o=d?Kf(c,!0):c;return
a};_.Hf=function(a,c){if(c){c=Number(c);if((0,window.isNaN)(c)||0>c)throw
Error("D`"+c);a.F=c}else a.F=null;return
a};_.If=function(a,c,d){a.w=d?Kf(c,!0):c;return
a};_.Jf=function(a,c,d){c instanceof
Lf?(a.b=c,Rf(a.b,a.C)):(d||(c=Mf(c,Sf)),a.b=new Lf(c,0,a.C));return
a};_.Tf=function(a,c,d){a.b.set(c,d);return a};
_.Uf=function(a){return a instanceof _.Ef?a.clone():new _.Ef(a,void
0)};Kf=function(a,c){return
a?c?(0,window.decodeURI)(a.replace(/%25/g,"%2525")):(0,window.decodeURIComponent)(a):""};Mf=function(a,c,d){return
_.t(a)?(a=(0,window.encodeURI)(a).replace(c,Vf),d&&(a=a.replace(/%25([0-9a-fA-F]{2})/g,"%$1")),a):null};Vf=function(a){a=a.charCodeAt(0);return"%"+(a>>4&15).toString(16)+(a&15).toString(16)};Nf=/[#\/\?@]/g;Pf=/[\#\?:]/g;Of=/[\#\?]/g;Sf=/[\#\?@]/g;Qf=/#/g;
Lf=function(a,c,d){this.o=this.b=null;this.w=a||null;this.A=!!d};Wf=function(a){a.b||(a.b=new
_.Wd,a.o=0,a.w&&Df(a.w,function(c,d){a.add((0,window.decodeURIComponent)(c.replace(/\+/g,"
")),d)}))};Lf.prototype.add=function(a,c){Wf(this);this.w=null;a=Xf(this,a);var
d=this.b.get(a);d||this.b.set(a,d=[]);d.push(c);this.o+=1;return
this};Lf.prototype.remove=function(a){Wf(this);a=Xf(this,a);return
_.Yd(this.b.o,a)?(this.w=null,this.o-=this.b.get(a).length,this.b.remove(a)):!1};
Lf.prototype.clear=function(){this.b=this.w=null;this.o=0};Lf.prototype.gc=function(){Wf(this);return
0==this.o};var Yf=function(a,c){Wf(a);c=Xf(a,c);return
_.Yd(a.b.o,c)};_.k=Lf.prototype;_.k.Oa=function(){Wf(this);for(var
a=this.b.Ja(),c=this.b.Oa(),d=[],e=0;e<c.length;e++)for(var
f=a[e],g=0;g<f.length;g++)d.push(c[e]);return
d};_.k.Ja=function(a){Wf(this);var
c=[];if(_.t(a))Yf(this,a)&&(c=_.Cf(c,this.b.get(Xf(this,a))));else{a=this.b.Ja();for(var
d=0;d<a.length;d++)c=_.Cf(c,a[d])}return c};
_.k.set=function(a,c){Wf(this);this.w=null;a=Xf(this,a);Yf(this,a)&&(this.o-=this.b.get(a).length);this.b.set(a,[c]);this.o+=1;return
this};_.k.get=function(a,c){a=a?this.Ja(a):[];return
0<a.length?String(a[0]):c};_.k.toString=function(){if(this.w)return
this.w;if(!this.b)return"";for(var
a=[],c=this.b.Oa(),d=0;d<c.length;d++)for(var
e=c[d],f=_.hd(e),e=this.Ja(e),g=0;g<e.length;g++){var
h=f;""!==e[g]&&(h+="="+_.hd(e[g]));a.push(h)}return this.w=a.join("&")};
_.k.clone=function(){var a=new
Lf;a.w=this.w;this.b&&(a.b=this.b.clone(),a.o=this.o);return a};var
Xf=function(a,c){c=String(c);a.A&&(c=c.toLowerCase());return
c},Rf=function(a,c){c&&!a.A&&(Wf(a),a.w=null,a.b.forEach(function(a,c){var
d=c.toLowerCase();c!=d&&(this.remove(c),this.remove(d),0<a.length&&(this.w=null,this.b.set(Xf(this,d),_.Oc(a)),this.o+=a.length))},a));a.A=c};
}catch(e){_._DumpException(e)}
/*
_Module_:sy8 */
try{
var ag,cg,eg,fg,gg,ig,kg,lg,mg,sg,Ag,Bg,Cg;_.Zf=function(a){return
a?_.Tc(a):window};_.$f=function(a,c,d){a.b||(a.b={});if(!a.b[d]){for(var
e=_.F(a,d),f=[],g=0;g<e.length;g++)f[g]=new
c(e[g]);a.b[d]=f}c=a.b[d];c==_.Kb&&(c=a.b[d]=[]);return
c};_.P=function(a,c,d){return
_.Wc(window.document,arguments)};ag=function(a){_.E(this,a,0,-1,null)};_.y(ag,_.D);var
bg=function(a){_.E(this,a,0,-1,null)};_.y(bg,_.D);_.Q=function(a,c,d){c<a.C?a.w[c+a.D]=d:a.A[c]=d};
cg=function(){function
a(){f[0]=1732584193;f[1]=4023233417;f[2]=2562383102;f[3]=271733878;f[4]=3285377520;w=r=0}function
c(a){for(var
c=h,d=0;64>d;d+=4)c[d/4]=a[d]<<24|a[d+1]<<16|a[d+2]<<8|a[d+3];for(d=16;80>d;d++)a=c[d-3]^c[d-8]^c[d-14]^c[d-16],c[d]=(a<<1|a>>>31)&4294967295;a=f[0];for(var
e=f[1],g=f[2],l=f[3],q=f[4],r,w,d=0;80>d;d++)40>d?20>d?(r=l^e&(g^l),w=1518500249):(r=e^g^l,w=1859775393):60>d?(r=e&g|l&(e|g),w=2400959708):(r=e^g^l,w=3395469782),r=((a<<5|a>>>27)&4294967295)+r+q+w+c[d]&4294967295,
q=l,l=g,g=(e<<30|e>>>2)&4294967295,e=a,a=r;f[0]=f[0]+a&4294967295;f[1]=f[1]+e&4294967295;f[2]=f[2]+g&4294967295;f[3]=f[3]+l&4294967295;f[4]=f[4]+q&4294967295}function
d(a,d){if("string"===typeof
a){a=(0,window.unescape)((0,window.encodeURIComponent)(a));for(var
e=[],f=0,h=a.length;f<h;++f)e.push(a.charCodeAt(f));a=e}d||(d=a.length);e=0;if(0==r)for(;e+64<d;)c(a.slice(e,e+64)),e+=64,w+=64;for(;e<d;)if(g[r++]=a[e++],w++,64==r)for(r=0,c(g);e+64<d;)c(a.slice(e,e+64)),e+=64,w+=64}function
e(){var a=[],
e=8*w;56>r?d(l,56-r):d(l,64-(r-56));for(var
h=63;56<=h;h--)g[h]=e&255,e>>>=8;c(g);for(h=e=0;5>h;h++)for(var
q=24;0<=q;q-=8)a[e++]=f[h]>>q&255;return a}for(var
f=[],g=[],h=[],l=[128],q=1;64>q;++q)l[q]=0;var
r,w;a();return{reset:a,update:d,digest:e,Tf:function(){for(var
a=e(),c="",d=0;d<a.length;d++)c+="0123456789ABCDEF".charAt(Math.floor(a[d]/16))+"0123456789ABCDEF".charAt(a[d]%16);return
c}}};_.dg=function(a){return
_.Ha(_.Ga.V(),a)};eg=[3,20];fg=function(a){var c=cg();c.update(a);return
c.Tf().toLowerCase()};
gg=function(){return
_.A("iPad")||_.A("Android")&&!_.A("Mobile")||_.A("Silk")};_.hg=function(a,c,d){a.b||(a.b={});var
e=d?d.Qa():d;a.b[c]=d;_.Q(a,c,e)};ig=[3,5];_.jg=function(a){_.E(this,a,0,25,eg)};_.y(_.jg,_.D);
kg=function(a,c,d){var
e=[],f=[];if(1==(_.na(d)?2:1))return
f=[c,a],(0,_.Ba)(e,function(a){f.push(a)}),fg(f.join(" "));var
g=[],h=[];(0,_.Ba)(d,function(a){h.push(a.key);g.push(a.value)});d=Math.floor((new
Date).getTime()/1E3);f=0==g.length?[d,c,a]:[g.join(":"),d,c,a];(0,_.Ba)(e,function(a){f.push(a)});a=fg(f.join("
"));a=[d,a];0==h.length||a.push(h.join(""));return
a.join("_")};lg=function(){return!gg()&&(_.A("iPod")||_.A("iPhone")||_.A("Android")||_.A("IEMobile"))};
mg=function(a){if(!a)return"";a=a.split("#")[0].split("?")[0];a=a.toLowerCase();0==a.indexOf("//")&&(a=window.location.protocol+a);/^[\w\-]*:\/\//.test(a)||(a=window.location.href);var
c=a.substring(a.indexOf("://")+3),d=c.indexOf("/");-1!=d&&(c=c.substring(0,d));a=a.substring(0,a.indexOf("://"));if("http"!==a&&"https"!==a&&"chrome-extension"!==a&&"file"!==a&&"android-app"!==a&&"chrome-search"!==a)throw
Error("y");var d="",e=c.indexOf(":");if(-1!=e){var
f=c.substring(e+1),c=c.substring(0,e);if("http"===
a&&"80"!==f||"https"===a&&"443"!==f)d=":"+f}return
a+"://"+c+d};_.ng=function(a,c,d,e,f,g,h){var l=new
_.Pe;_.Se.push(l);c&&l.L("complete",c);l.Ma("ready",l.U);g&&(l.C=Math.max(0,g));h&&(l.K=h);l.send(a,d,e,f)};_.og=/#|$/;_.pg=function(a,c,d,e){for(var
f=d.length;0<=(c=a.indexOf(d,c))&&c<e;){var
g=a.charCodeAt(c-1);if(38==g||63==g)if(g=a.charCodeAt(c+f),!g||61==g||38==g||35==g)return
c;c+=f+1}return-1};
_.qg=function(a){if(a[1]){var
c=a[0],d=c.indexOf("#");0<=d&&(a.push(c.substr(d)),a[0]=c=c.substr(0,d));d=c.indexOf("?");0>d?a[1]="?":d==c.length-1&&(a[1]=void
0)}return
a.join("")};_.rg=function(a,c,d){a.b||(a.b={});d=d||[];for(var
e=[],f=0;f<d.length;f++)e[f]=d[f].Qa();a.b[c]=d;_.Q(a,c,e)};sg=function(){this.type="event-logged"};_.y(sg,_.ld);var
tg=function(a,c,d){_.ng(a.url,function(a){a=a.target;a.hc()?c():d(a.$a())},a.o,a.body,a.b,0,a.withCredentials)},ug=function(a){_.E(this,a,0,15,ig)};
_.y(ug,_.D);var
vg=function(a){var
c=(0,_.v)().toString();_.Q(a,4,c)},wg=function(a){_.E(this,a,0,-1,null)};_.y(wg,_.D);var
xg=function(a){_.E(this,a,0,-1,null)};_.y(xg,_.D);var
yg=function(a){_.E(this,a,0,-1,null)};_.y(yg,_.D);_.zg=function(a,c,d){a=[a,"&",c];null!=d&&a.push("=",_.hd(d));return
_.qg(a)};Ag=function(a){var c;c=c||0;return function(){return
a.apply(this,Array.prototype.slice.call(arguments,0,c))}};
Bg=function(a,c,d,e,f,g,h,l,q){_.O.call(this);this.N=a;this.M=c||_.ka;this.A=new
ug;this.T=l||tg;this.b=[];this.H="";this.K=e||"https://play.google.com/log?format=json";this.F=d||null;this.D=q||null;this.B=!1;this.P=!h;this.C=0;a=new
wg;_.Q(a,1,1);c=new xg;d=new
yg;_.Q(c,6,_.A("Android")?3:_.A("CrOS")?5:_.A("Windows")?2:_.A("iPad")?6:_.Za()?7:_.A("iPod")?8:_.A("Linux")?4:_.A("Macintosh")?1:0);e=_.Va;h="";_.A("Windows")?(h=/Windows
(?:NT|Phone)
([0-9.]+)/,h=(e=h.exec(e))?e[1]:"0.0"):_.$a()?(h=/(?:iPhone|iPod|iPad|CPU)\s+OS\s+(\S+)/,
h=(e=h.exec(e))&&e[1].replace(/_/g,".")):_.A("Macintosh")?(h=/Mac
OS X
([0-9_.]+)/,h=(e=h.exec(e))?e[1].replace(/_/g,"."):"10"):_.A("Android")?(h=/Android\s+([^\);]+)(\)|;)/,h=(e=h.exec(e))&&e[1]):_.A("CrOS")&&(h=/(?:CrOS\s+(?:i686|x86_64)\s+([0-9.]+))/,h=(e=h.exec(e))&&e[1]);_.Q(c,2,h||"");_.Q(c,3,lg()||gg()?gg()?2:lg()?1:0:3);if(!f){e=_.Zf();h=window.document.documentElement.getAttribute("lang");_.Q(c,5,h);h=e.location.href;l=h.search(_.og);q=_.pg(h,0,"hl",l);if(0>q)h=null;else{var
r=h.indexOf("&",
q);if(0>r||r>l)r=l;q+=3;h=(0,window.decodeURIComponent)(h.substr(q,r-q).replace(/\+/g,"
"))}_.Q(d,1,h||e.navigator.language||e.navigator.browserLanguage)}_.Q(d,2,_.jf);_.Q(d,3,_.hf);_.ef&&_.Q(d,4,_.ff);_.hg(a,11,c);_.hg(a,9,d);_.hg(this.A,1,a);_.Q(this.A,2,this.N);this.w=new
_.Me(6E4);_.zc(this,this.w);_.N(this.w,"tick",Ag(this.G),!1,this);g||this.w.start();f||(_.N(_.Zf(),"beforeunload",this.o,!1,this),_.N(_.Zf(),"unload",this.o,!1,this),_.N(window.document,"pagehide",this.o,!1,this))};_.y(Bg,_.O);
Bg.prototype.O=function(){this.o();Bg.J.O.call(this)};Bg.prototype.log=function(a){a=_.Ob(a);if(!_.F(a,1)){var
c=a,d=(0,_.v)().toString();_.Q(c,1,d)}for(;1E3<=this.b.length;)this.b.shift(),++this.C;this.b.push(a);this.dispatchEvent(new
sg)};
Bg.prototype.G=function(a,c){if(0==this.b.length)a&&a();else{var
d=_.Ob(this.A);vg(d);_.rg(d,3,this.b);_.Q(d,14,this.C);var
e={},f=this.M();f&&(e.Authorization=f);var
g=this.K;this.F&&(e["X-Goog-AuthUser"]=this.F,g=_.zg(g,"authuser",this.F));this.D&&(e["X-Goog-PageId"]=this.D,g=_.zg(g,"pageId",this.D));if(f&&this.H==f)c&&c();else
if(this.b=[],this.C=0,this.B)a&&a();else{var
h=d.o(),e={url:g,body:h,w:1,b:e,o:"POST",withCredentials:this.P},g=(0,_.u)(function(a){var
e=_.$f(d,_.jg,3);401==a&&f&&(this.H=
f);if(401==a||500<=a&&600>a)this.b=e.concat(this.b);c&&c()},this);this.T(e,function(){a&&a()},g)}}};Bg.prototype.o=function(){this.B||this.G()};
Cg=function(a){var
c=mg(String(_.m.location.href)),d=_.m.__OVERRIDE_SID;null==d&&(d=(new
_.Ze(window.document)).get("SID"));if(d&&(c=(d=0==c.indexOf("https:")||0==c.indexOf("chrome-extension:"))?_.m.__SAPISID:_.m.__APISID,null==c&&(c=(new
_.Ze(window.document)).get(d?"SAPISID":"APISID")),c)){var
d=d?"SAPISIDHASH":"APISIDHASH",e=String(_.m.location.href);return
e&&c&&d?[d,kg(mg(e),c,a||null)].join(" "):null}return
null};_.Dg=function(a,c,d,e,f,g){Bg.call(this,a,Cg,c,d,e,f,void 0,void
0,g)};
_.y(_.Dg,Bg);var Eg=function(a){_.E(this,a,0,-1,null)};_.y(Eg,_.D);var
Fg=function(a,c,d){_.z.call(this);this.D=d;this.w=_.K(+_.G(a,2,1E-4),.001);this.H=_.K(_.F(a,4),0);this.G=_.K(_.F(a,5),-1);this.F=_.J(_.F(a,7),"");this.C=_.J(_.F(a,6),"");this.B=_.J(_.F(a,8),"");this.A=_.F(a,9);if(this.b=_.I(_.F(a,1))&&Math.random()<this.w)a=_.F(a,3)?"https://jmt17.google.com/log":void
0,this.o=new
_.Dg(373,_.J(_.F(c,5)),a),_.Ne(this.o.w,1E3),_.zc(this,this.o)};_.y(Fg,_.z);
Fg.prototype.log=function(a,c){if(this.b){var
d=c||new
Eg;_.Q(d,1,a);_.Q(d,2,this.H);_.Q(d,4,this.w);_.Q(d,3,this.G);_.Q(d,11,this.C);_.Q(d,10,this.F);_.Q(d,5,this.B);window.performance&&window.performance.timing&&_.Q(d,14,(new
Date).getTime()-window.performance.timing.navigationStart);_.Q(d,13,this.A);c=new
_.jg;d=d.o();_.Q(c,8,d);this.o.log(c)}this.D&&window.console.log("Clearcut
log called with event = ",a,"("+(this.b?"":"NOT ")+"sent to
server)")};_.Gg=function(){return _.H(_.M(),bg,11)||new bg};
var Hg;Hg=null;_.Ig=function(){var a=_.H(_.M(),ag,29)||new
ag,c=_.Gg();return Hg?Hg:Hg=new Fg(a,c,_.Wb)};var
Jg;Jg=function(){this.o=!1;this.b=[]};_.Lg=function(a){var
c=_.Kg;c.o?a():c.b.push(a)};Jg.prototype.w=function(a){if(!this.o){this.o=!0;_.Ig().log(1);for(var
c=0;c<this.b.length;c++)try{this.b[c]()}catch(d){a(d)}this.b=null;try{_.dg("api").Sa()}catch(d){}}};_.Kg=new
Jg;
}catch(e){_._DumpException(e)}
/* _Module_:sy9 */
try{
var
$g,dh,eh,fh;_.Vg=function(a,c){if(!a||!c)return!1;if(a.contains&&1==c.nodeType)return
a==c||a.contains(c);if("undefined"!=typeof
a.compareDocumentPosition)return
a==c||!!(a.compareDocumentPosition(c)&16);for(;c&&a!=c;)c=c.parentNode;return
c==a};_.Wg=function(a){return
a&&a.parentNode?a.parentNode.removeChild(a):null};_.Xg=function(a){for(var
c;c=a.firstChild;)a.removeChild(c)};_.Yg=function(a){this.b=a||_.m.document||window.document};_.k=_.Yg.prototype;
_.k.R=function(a){return
_.t(a)?this.b.getElementById(a):a};_.k.Ga=function(a,c,d){return
_.Wc(this.b,arguments)};_.k.createElement=function(a){return
this.b.createElement(String(a))};_.k.$b=function(a,c){a.appendChild(c)};_.k.ue=_.Xg;_.k.od=_.Wg;_.k.contains=_.Vg;_.Zg=function(a){return
9==a.nodeType?a:a.ownerDocument||a.document};_.ah=function(a){return
a?new _.Yg(_.Zg(a)):$g||($g=new _.Yg)};
_.bh=function(a,c,d){return
2>=arguments.length?Array.prototype.slice.call(a,c):Array.prototype.slice.call(a,c,d)};_.ch=function(a){return
_.Ic(a)&&1==a.nodeType};dh=function(a,c,d,e){Array.prototype.splice.apply(a,_.bh(arguments,1))};eh=function(a){var
c=arguments.length;if(1==c&&_.na(arguments[0]))return
eh.apply(null,arguments[0]);for(var
d={},e=0;e<c;e++)d[arguments[e]]=!0;return d};fh=function(a,c){return
null!==a&&c in a?a[c]:void 0};
_.gh=function(){};_.la(_.gh);_.gh.prototype.b=0;_.hh=function(a){return":"+(a.b++).toString(36)};eh("A
AREA BUTTON HEAD INPUT LINK MENU META OPTGROUP OPTION PROGRESS STYLE
SELECT SOURCE TEXTAREA TITLE TRACK".split("
"));_.ih=_.gb?"MozUserSelect":_.hb||_.eb?"WebkitUserSelect":null;_.R=function(a){_.O.call(this);this.w=a||_.ah();this.ha=jh;this.ja=null;this.oa=!1;this.b=null;this.K=void
0;this.G=this.B=this.o=this.C=null;this.qa=!1};_.y(_.R,_.O);_.R.prototype.Ba=_.gh.V();var
jh=null;_.R.prototype.getId=function(){return
this.ja||(this.ja=_.hh(this.Ba))};_.R.prototype.R=function(){return
this.b};var kh=function(a,c){if(a==c)throw Error("G");var
d;if(d=c&&a.o&&a.ja){d=a.o;var
e=a.ja;d=d.G&&e?fh(d.G,e)||null:null}if(d&&a.o!=c)throw
Error("G");a.o=c;_.R.J.Qd.call(a,c)};
_.R.prototype.Qd=function(a){if(this.o&&this.o!=a)throw
Error("H");_.R.J.Qd.call(this,a)};_.R.prototype.nb=function(){this.b=this.w.createElement("DIV")};_.R.prototype.Bb=function(a){lh(this,a)};var
lh=function(a,c,d){if(a.oa)throw
Error("I");a.b||a.nb();c?c.insertBefore(a.b,d||null):a.w.b.body.appendChild(a.b);a.o&&!a.o.oa||a.pa()};_.k=_.R.prototype;_.k.Eb=function(a){this.b=a};_.k.pa=function(){this.oa=!0;_.mh(this,function(a){!a.oa&&a.R()&&a.pa()})};
_.k.ya=function(){_.mh(this,function(a){a.oa&&a.ya()});this.K&&_.Qd(this.K);this.oa=!1};_.k.O=function(){this.oa&&this.ya();this.K&&(this.K.fa(),delete
this.K);_.mh(this,function(a){a.fa()});!this.qa&&this.b&&_.Wg(this.b);this.o=this.C=this.b=this.G=this.B=null;_.R.J.O.call(this)};
_.k.gb=function(a,c,d){if(a.oa&&(d||!this.oa))throw
Error("I");if(0>c||c>_.nh(this))throw
Error("K");this.G&&this.B||(this.G={},this.B=[]);if(a.o==this){var
e=a.getId();this.G[e]=a;_.dd(this.B,a)}else{var
e=this.G,f=a.getId();if(null!==e&&f in e)throw
Error("b`"+f);e[f]=a}kh(a,this);dh(this.B,c,0,a);a.oa&&this.oa&&a.o==this?(d=this.b,c=d.childNodes[c]||null,c!=a.R()&&d.insertBefore(a.R(),c)):d?(this.b||this.nb(),c=_.oh(this,c+1),lh(a,this.b,c?c.b:null)):this.oa&&!a.oa&&a.b&&a.b.parentNode&&1==a.b.parentNode.nodeType&&
a.pa()};_.nh=function(a){return
a.B?a.B.length:0};_.oh=function(a,c){return
a.B?a.B[c]||null:null};_.mh=function(a,c,d){a.B&&(0,_.Ba)(a.B,c,d)};_.R.prototype.removeChild=function(a,c){if(a){var
d=_.t(a)?a:a.getId();a=this.G&&d?fh(this.G,d)||null:null;if(d&&a){var
e=this.G;d in e&&delete
e[d];_.dd(this.B,a);c&&(a.ya(),a.b&&_.Wg(a.b));kh(a,null)}}if(!a)throw
Error("L");return a};
}catch(e){_._DumpException(e)}
/* _Module_:sya */
try{
var Fh,Gh,Kh,Lh,Mh,Nh,Yh,hi;_.ph=function(a,c){var d=_.Zg(a);return
d.defaultView&&d.defaultView.getComputedStyle&&(a=d.defaultView.getComputedStyle(a,null))?a[c]||a.getPropertyValue(c)||"":""};_.qh=function(a,c){return
_.ph(a,c)||(a.currentStyle?a.currentStyle[c]:null)||a.style&&a.style[c]};_.rh=function(a){return"CSS1Compat"==a.compatMode};_.sh=function(a){return"rtl"==_.qh(a,"direction")};_.th=function(a,c){this.b=_.n(a)?a:0;this.S=_.n(c)?c:0};
_.th.prototype.clone=function(){return
new
_.th(this.b,this.S)};_.th.prototype.ceil=function(){this.b=Math.ceil(this.b);this.S=Math.ceil(this.S);return
this};_.th.prototype.floor=function(){this.b=Math.floor(this.b);this.S=Math.floor(this.S);return
this};_.th.prototype.round=function(){this.b=Math.round(this.b);this.S=Math.round(this.S);return
this};_.uh=function(a){return
a.scrollingElement?a.scrollingElement:!_.hb&&_.rh(a)?a.documentElement:a.body||a.documentElement};
_.vh=function(a,c){this.width=a;this.height=c};_.k=_.vh.prototype;_.k.clone=function(){return
new _.vh(this.width,this.height)};_.k.Cf=function(){return
this.width*this.height};_.k.gc=function(){return!this.Cf()};_.k.ceil=function(){this.width=Math.ceil(this.width);this.height=Math.ceil(this.height);return
this};_.k.floor=function(){this.width=Math.floor(this.width);this.height=Math.floor(this.height);return
this};
_.k.round=function(){this.width=Math.round(this.width);this.height=Math.round(this.height);return
this};_.wh=function(a){if(a instanceof
_.pc&&a.constructor===_.pc&&a.w===_.oc)return
a.b;_.ma(a);return"type_error:SafeHtml"};_.xh=function(a){if(a
instanceof _.pc)return a;var
c=null;a.vd&&(c=a.Kb());a=_.Hc(a.ub?a.bb():String(a));return
_.qc(a,c)};_.yh=function(a,c){if(a.oa)throw Error("I");if(c){a.qa=!0;var
d=_.Zg(c);a.w&&a.w.b==d||(a.w=_.ah(c));a.Eb(c);a.pa()}else throw
Error("J");};
_.zh=function(a){a.K||(a.K=new _.Md(a));return
a.K};_.Ah=function(a){a=(a||window).document;a=_.rh(a)?a.documentElement:a.body;return
new _.vh(a.clientWidth,a.clientHeight)};_.Bh=function(a){var
c=_.uh(a);a=_.Tc(a);return
_.B&&_.C("10")&&a.pageYOffset!=c.scrollTop?new
_.th(c.scrollLeft,c.scrollTop):new
_.th(a.pageXOffset||c.scrollLeft,a.pageYOffset||c.scrollTop)};_.Ch=function(a){try{return
a&&a.activeElement}catch(c){}return
null};_.Dh=function(a,c){a.innerHTML=_.wh(c)};
_.Eh=function(a,c){"number"==typeof
a&&(a=(c?Math.round(a):a)+"px");return a};Fh=function(a){var
c;try{c=a.getBoundingClientRect()}catch(d){return{left:0,top:0,right:0,bottom:0}}_.B&&a.ownerDocument.body&&(a=a.ownerDocument,c.left-=a.documentElement.clientLeft+a.body.clientLeft,c.top-=a.documentElement.clientTop+a.body.clientTop);return
c};Gh={};_.Hh=function(a){return a instanceof
_.bc&&a.constructor===_.bc&&a.o===_.ac?a.b:"type_error:Const"};
_.Ih=function(a){var
c=a.offsetWidth,d=a.offsetHeight,e=_.hb&&!c&&!d;return
_.n(c)&&!e||!a.getBoundingClientRect?new _.vh(c,d):(a=Fh(a),new
_.vh(a.right-a.left,a.bottom-a.top))};_.Jh=function(a){if("none"!=_.qh(a,"display"))return
_.Ih(a);var
c=a.style,d=c.display,e=c.visibility,f=c.position;c.visibility="hidden";c.position="absolute";c.display="inline";a=_.Ih(a);c.display=d;c.position=f;c.visibility=e;return
a};
Kh=function(a){switch(a){case 61:return 187;case 59:return 186;case
173:return 189;case 224:return 91;case 0:return 224;default:return
a}};Lh=function(a){if(a.classList)return
a.classList;a=a.className;return
_.t(a)&&a.match(/\S+/g)||[]};Nh=/^(?:(?:https?|mailto|ftp):|[^&:/?#]*(?:[/?#]|$))/i;_.Oh=function(){this.b="";this.o=Gh};_.Oh.prototype.ub=!0;_.Oh.prototype.bb=function(){return
this.b};_.Oh.prototype.vd=!0;_.Oh.prototype.Kb=function(){return 1};
_.Ph=function(a,c){if(/^\d+px?$/.test(c))return(0,window.parseInt)(c,10);var
d=a.style.left,e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;a.style.left=c;c=a.style.pixelLeft;a.style.left=d;a.runtimeStyle.left=e;return+c};_.Qh=function(a,c){a.style.display=c?"":"none"};_.Rh=function(a,c,d){var
e;c instanceof
_.th?(e=c.b,c=c.S):(e=c,c=d);a.style.left=_.Eh(e,!1);a.style.top=_.Eh(c,!1)};_.Sh=function(a){if(_.gb)a=Kh(a);else
if(_.kb&&_.hb)switch(a){case 93:a=91}return a};
_.Th=function(a){if(48<=a&&57>=a||96<=a&&106>=a||65<=a&&90>=a||(_.hb||_.eb)&&0==a)return!0;switch(a){case
32:case 43:case 63:case 64:case 107:case 109:case 110:case 111:case
186:case 59:case 189:case 187:case 61:case 188:case 190:case 191:case
192:case 222:case 219:case 220:case
221:return!0;default:return!1}};_.Uh=function(a,c){return
a.classList?a.classList.contains(c):_.Pc(Lh(a),c)};
_.Vh=function(a){if(a instanceof _.ic)return
a;a=a.ub?a.bb():String(a);Nh.test(a)||(a="about:invalid#zClosurez");return
_.jc(a)};_.Wh=function(a){if(a instanceof
_.ic&&a.constructor===_.ic&&a.o===_.hc)return
a.b;_.ma(a);return"type_error:SafeUrl"};_.Xh=function(a){if(a instanceof
_.Oh&&a.constructor===_.Oh&&a.o===Gh)return
a.b;_.ma(a);return"type_error:TrustedResourceUrl"};Yh=function(a,c){return(c=a.currentStyle?a.currentStyle[c]:null)?_.Ph(a,c):0};
_.Zh=function(a,c,d){_.na(d)&&(d=d.join("
"));var e="aria-"+c;""===d||void
0==d?(Mh||(Mh={atomic:!1,autocomplete:"none",dropeffect:"none",haspopup:!1,live:"off",multiline:!1,multiselectable:!1,orientation:"vertical",readonly:!1,relevant:"additions
text",required:!1,sort:"none",busy:!1,disabled:!1,hidden:!1,invalid:"false"}),d=Mh,c
in
d?a.setAttribute(e,d[c]):a.removeAttribute(e)):a.setAttribute(e,d)};_.$h=function(a,c,d,e){this.top=a;this.right=c;this.bottom=d;this.left=e};_.k=_.$h.prototype;
_.k.getHeight=function(){return
this.bottom-this.top};_.k.clone=function(){return new
_.$h(this.top,this.right,this.bottom,this.left)};_.k.contains=function(a){return
this&&a?"undefined"!=typeof _.$h&&a instanceof
_.$h?a.left>=this.left&&a.right<=this.right&&a.top>=this.top&&a.bottom<=this.bottom:a.b>=this.left&&a.b<=this.right&&a.S>=this.top&&a.S<=this.bottom:!1};
_.k.expand=function(a,c,d,e){_.Ic(a)?(this.top-=a.top,this.right+=a.right,this.bottom+=a.bottom,this.left-=a.left):(this.top-=a,this.right+=Number(c),this.bottom+=Number(d),this.left-=Number(e));return
this};_.k.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};
_.k.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};_.k.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};
_.ai=function(a,c,d,e,f,g){if(!(_.B||_.eb||_.hb&&_.C("525")))return!0;if(_.kb&&f)return
_.Th(a);if(f&&!e)return!1;_.oa(c)&&(c=_.Sh(c));f=17==c||18==c||_.kb&&91==c;if((!d||_.kb)&&f||_.kb&&16==c&&(e||g))return!1;if((_.hb||_.eb)&&e&&d)switch(a){case
220:case 219:case 221:case 192:case 186:case 189:case 187:case 188:case
190:case 191:case 192:case
222:return!1}if(_.B&&e&&c==a)return!1;switch(a){case 13:return!0;case
27:return!(_.hb||_.eb)}return _.Th(a)};
_.S=function(a,c){a.classList?a.classList.remove(c):_.Uh(a,c)&&(a.className=(0,_.Ca)(Lh(a),function(a){return
a!=c}).join("
"))};_.T=function(a,c){a.classList?a.classList.add(c):_.Uh(a,c)||(a.className+=0<a.className.length?"
"+c:c)};_.bi=function(a,c,d){_.z.call(this);this.ic=a;this.w=c||0;this.o=d;this.b=(0,_.u)(this.Yf,this)};_.y(_.bi,_.z);_.k=_.bi.prototype;_.k.ja=0;_.k.O=function(){_.bi.J.O.call(this);this.stop();delete
this.ic;delete this.o};
_.k.start=function(a){this.stop();this.ja=_.Oe(this.b,_.n(a)?a:this.w)};_.k.stop=function(){0!=this.ja&&_.m.clearTimeout(this.ja);this.ja=0};_.k.Yf=function(){this.ja=0;this.ic&&this.ic.call(this.o)};_.ci=function(a,c){if(_.B){var
d=Yh(a,c+"Left"),e=Yh(a,c+"Right"),f=Yh(a,c+"Top");a=Yh(a,c+"Bottom");return
new
_.$h(f,e,a,d)}d=_.ph(a,c+"Left");e=_.ph(a,c+"Right");f=_.ph(a,c+"Top");a=_.ph(a,c+"Bottom");return
new
_.$h((0,window.parseFloat)(f),(0,window.parseFloat)(e),(0,window.parseFloat)(a),(0,window.parseFloat)(d))};
_.di=function(a){a=Fh(a);return
new _.th(a.left,a.top)};_.ei=function(a){var c=_.Zg(a),d=new
_.th(0,0),e;e=c?_.Zg(c):window.document;e=!_.B||_.tb(9)||_.rh(_.ah(e).b)?e.documentElement:e.body;if(a==e)return
d;a=Fh(a);c=_.Bh(_.ah(c).b);d.b=a.left+c.b;d.S=a.top+c.S;return
d};_.fi=function(a,c,d,e){this.left=a;this.top=c;this.width=d;this.height=e};_.k=_.fi.prototype;_.k.clone=function(){return
new _.fi(this.left,this.top,this.width,this.height)};
_.k.contains=function(a){return a instanceof
_.th?a.b>=this.left&&a.b<=this.left+this.width&&a.S>=this.top&&a.S<=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};_.k.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};
_.k.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};_.k.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};
_.gi=function(a,c){if("textContent"in a)a.textContent=c;else
if(3==a.nodeType)a.data=c;else
if(a.firstChild&&3==a.firstChild.nodeType){for(;a.lastChild!=a.firstChild;)a.removeChild(a.lastChild);a.firstChild.data=c}else
_.Xg(a),a.appendChild(_.Zg(a).createTextNode(String(c)))};hi=0;_.ii=function(a,c){a.classList?(0,_.Ba)(c,function(c){_.S(a,c)}):a.className=(0,_.Ca)(Lh(a),function(a){return!_.Pc(c,a)}).join("
")};
_.ji=function(a,c){if(a.classList)(0,_.Ba)(c,function(c){_.T(a,c)});else{var
d={};(0,_.Ba)(Lh(a),function(a){d[a]=!0});(0,_.Ba)(c,function(a){d[a]=!0});a.className="";for(var
e in d)a.className+=0<a.className.length?"
"+e:e}};_.ki=function(a,c){return
a==c?!0:a&&c?a.width==c.width&&a.height==c.height:!1};_.li=function(a){for(var
c in a)return!1;return!0};_.mi=function(a){return
a[_.pa]||(a[_.pa]=++hi)};
_.ni=function(a){_.O.call(this);this.b=a;a=_.B?"focusout":"blur";this.o=_.N(this.b,_.B?"focusin":"focus",this,!_.B);this.w=_.N(this.b,a,this,!_.B)};_.y(_.ni,_.O);_.ni.prototype.handleEvent=function(a){var
c=new
_.wd(a.b);c.type="focusin"==a.type||"focus"==a.type?"focusin":"focusout";this.dispatchEvent(c)};_.ni.prototype.O=function(){_.ni.J.O.call(this);_.Id(this.o);_.Id(this.w);delete
this.b};
var pi,ri;_.oi={};pi=null;_.qi=function(a){a=_.mi(a);delete
_.oi[a];_.li(_.oi)&&pi&&pi.stop()};_.si=function(){pi||(pi=new
_.bi(function(){ri()},20));var
a=pi;0!=a.ja||a.start()};ri=function(){var
a=(0,_.v)();_.Nc(_.oi,function(c){_.ti(c,a)});_.li(_.oi)||_.si()};
_.ti=function(a,c){c<a.w&&(a.C=c+a.C-a.w,a.w=c);a.b=(c-a.w)/(a.C-a.w);1<a.b&&(a.b=1);_.ui(a,a.b);1==a.b?(a.o=0,_.qi(a),a.Xa("finish"),a.D()):1==a.o&&a.Gd()};_.ui=function(a,c){_.Jc(a.H)&&(c=a.H(c));a.A=Array(a.B.length);for(var
d=0;d<a.B.length;d++)a.A[d]=(a.N[d]-a.B[d])*c+a.B[d]};
}catch(e){_._DumpException(e)}
/* _Module_:syc */
try{
var
Zk;Zk=[1,4,2];_.$k=function(a){return(_.rd?0==a.b.button:"click"==a.type?!0:!!(a.b.button&Zk[0]))&&!(_.hb&&_.kb&&a.ctrlKey)};var
al=function(){_.z.call(this);this.b=new _.Md},cl;_.y(al,_.z);_.bl=new
al;cl=["click",_.gb?"keypress":"keydown","mousedown","touchstart"];al.prototype.L=function(a,c,d,e,f){(f||this.b).A(a,cl,c,d,e)};al.prototype.ua=function(a,c,d,e,f){(f||this.b).ua(a,cl,c,d,e)};al.prototype.O=function(){this.b.fa();al.J.O.call(this)};
_.dl=_.B?'javascript:""':"about:blank";var
el,gl;el=function(){};_.fl=new
el;gl=["click",_.gb?"keypress":"keydown","keyup"];el.prototype.L=function(a,c,d,e,f){var
g=function(a){var
d=_.Ad(c),f=_.ch(a.target)?a.target.getAttribute("role")||null:null;"click"==a.type&&_.$k(a)?d.call(e,a):13!=a.keyCode&&3!=a.keyCode||"keyup"==a.type?32!=a.keyCode||"keyup"!=a.type||"button"!=f&&"tab"!=f||(d.call(e,a),a.preventDefault()):(a.type="keypress",d.call(e,a))};g.ic=c;g.Th=e;f?f.L(a,gl,g,d):_.N(a,gl,g,d)};
el.prototype.ua=function(a,c,d,e,f){for(var
g,h=0;g=gl[h];h++){var l;var q=a;l=g;var
r=!!d;l=_.jd(q)?q.Lb(l,r):q?(q=_.Cd(q))?q.Lb(l,r):[]:[];for(q=0;r=l[q];q++){var
w=r.listener;if(w.ic==c&&w.Th==e){f?f.ua(a,g,r.listener,d,e):_.Hd(a,g,r.listener,d,e);break}}}};
}catch(e){_._DumpException(e)}
/*
_Module_:syf */
try{
var
ll,ml,nl,ul,Al;_.hl=function(a){_.E(this,a,0,-1,null)};_.y(_.hl,_.D);var
il=function(a){_.E(this,a,0,-1,null)};_.y(il,_.D);_.kl=function(){var
a=_.jl();return
_.F(a,9)};ll=function(a){_.E(this,a,0,-1,null)};_.y(ll,_.D);ml=0;nl=[];_.ol=function(){this.data={}};_.ol.prototype.b=function(){window.console&&window.console.log&&window.console.log("Log
data: ",this.data)};
_.ol.prototype.o=function(a){var c=[],d;for(d in
this.data)c.push((0,window.encodeURIComponent)(d)+"="+(0,window.encodeURIComponent)(String(this.data[d])));return("atyp=i&zx="+(new
Date).getTime()+"&"+c.join("&")).substr(0,a)};
var pl=function(a){var c=new
window.Image,d=ml;c.onerror=c.onload=c.onabort=function(){d in
nl&&delete
nl[d]};nl[ml++]=c;c.src=a},ql=[1,2,3,4,5,6,9,10,11,13,14,28,29,30,34,35,37,38,39,40,41,42,43,48,49,50,51,52,53,55,56,57,58,59,500],rl=null,sl=function(a,c){this.data={};var
d=_.H(a,_.Qb,8)||new
_.Qb;this.data.ei=_.J(_.F(a,10));this.data.ogf=_.J(_.F(d,3));var
e;e=window.google&&window.google.sn?/.*hp$/.test(window.google.sn)?!1:!0:_.I(_.F(a,7));this.data.ogrp=e?"1":"";this.data.ogv=_.J(_.F(d,6))+
"."+_.J(_.F(d,7));this.data.ogd=_.J(_.F(a,21));this.data.ogc=_.J(_.F(a,20));this.data.ogl=_.J(_.F(a,5));c&&(this.data.oggv=c)};_.y(sl,_.ol);_.tl=function(a){var
c="https://www.google.com/gen_204?",c=c+a.o(2040-c.length);pl(c)};ul=function(a){if(!rl){rl={};for(var
c=0;c<ql.length;c++)rl[ql[c]]=!0}return!!rl[a]};
_.vl=function(a,c,d,e,f){sl.call(this,a,c);_.Vc(this.data,{jexpid:_.J(_.F(a,9)),srcpg:"prop="+_.J(_.F(a,6)),jsr:Math.round(1/e),emsg:d.name+":"+d.message});if(f){f._sn&&(f._sn="og."+f._sn);for(var
g in f)this.data[(0,window.encodeURIComponent)(g)]=f[g]}};_.y(_.vl,sl);
var
wl=function(a,c,d,e,f,g){sl.call(this,a,c);_.Vc(this.data,{oge:e,ogex:_.J(_.F(a,9)),ogp:_.J(_.F(a,6)),ogsr:Math.round(1/(ul(e)?_.K(+_.G(d,3,1)):_.K(+_.G(d,2,1E-4)))),ogus:f});if(g){"ogw"in
g&&(this.data.ogw=g.ogw,delete g.ogw);"ved"in
g&&(this.data.ved=g.ved,delete g.ved);a=[];for(var h in
g)0!=a.length&&a.push(","),a.push((h+"").replace(".","%2E").replace(",","%2C")),a.push("."),a.push((g[h]+"").replace(".","%2E").replace(",","%2C"));g=a.join("");""!=g&&(this.data.ogad=g)}};_.y(wl,sl);
var
xl=function(a){this.b=a};xl.prototype.log=function(a,c){try{if(this.C(a)){var
d=this.w(a,c);this.o(d)}}catch(e){}};xl.prototype.o=function(a){this.b?a.b():_.tl(a)};var
yl=function(a,c,d,e,f){this.b=f;this.ea=a;this.G=c;this.H=e;this.F=_.K(+_.G(a,2,1E-4),1E-4);this.B=_.K(+_.G(a,3,1),1);c=Math.random();this.D=_.I(_.F(a,1))&&c<this.F;this.A=_.I(_.F(a,1))&&c<this.B;a=0;_.I(_.F(d,1))&&(a|=1);_.I(_.F(d,2))&&(a|=2);_.I(_.F(d,3))&&(a|=4);this.K=a};_.y(yl,xl);
yl.prototype.C=function(a){return
this.b||(ul(a)?this.A:this.D)};yl.prototype.w=function(a,c){return new
wl(this.G,this.H,this.ea,a,this.K,c)};var
zl=function(a,c,d,e){this.b=e;this.ea=c;this.H=d;this.B=_.K(+_.G(a,2,.001),.001);this.G=_.I(_.F(a,1))&&Math.random()<this.B;this.D=_.K(_.G(a,3,1),1);this.A=0;this.F=_.I(_.G(a,4,!0),!0)};_.y(zl,xl);zl.prototype.log=function(a,c){zl.J.log.call(this,a,c);if(this.b&&this.F)throw
a;};zl.prototype.C=function(){return this.b||this.G&&this.A<this.D};
zl.prototype.w=function(a,c){try{return
_.Ha(_.Ga.V(),"lm").b(a,c)}catch(d){return new
_.vl(this.ea,this.H,a,this.B,c)}};zl.prototype.o=function(a){zl.J.o.call(this,a);this.A++};_.jl=function(){return
_.H(_.M(),ll,4)||new ll};Al=null;_.Bl=function(){if(!Al){var
a=_.H(_.M(),_.hl,13)||new _.hl,c=_.Zb(),d=_.kl();Al=new
zl(a,c,d,_.Wb)}return Al};_.Xb=function(a,c){_.Bl().log(a,c)};
var Cl;Cl=null;_.Dl=function(){if(!Cl){var a=_.H(_.M(),il,12)||new
il,c=_.Zb(),d=_.Gg(),e=_.kl();Cl=new yl(a,c,d,e,_.Wb)}return
Cl};_.El=function(a,c){_.Dl().log(a,c)};_.El(8,{m:"BackCompat"==window.document.compatMode?"q":"s"});/*
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.
*/
_.Fl=function(a,c){this.B=[];this.K=a;this.H=c||null;this.A=this.b=!1;this.w=void
0;this.G=this.M=this.D=!1;this.C=0;this.o=null;this.F=0};_.Fl.prototype.cancel=function(a){if(this.b)this.w
instanceof _.Fl&&this.w.cancel();else{if(this.o){var c=this.o;delete
this.o;a?c.cancel(a):(c.F--,0>=c.F&&c.cancel())}this.K?this.K.call(this.H,this):this.G=!0;this.b||(a=new
Gl,Hl(this),Il(this,!1,a))}};_.Fl.prototype.ea=function(a,c){this.D=!1;Il(this,a,c)};
var
Il=function(a,c,d){a.b=!0;a.w=d;a.A=!c;Jl(a)},Hl=function(a){if(a.b){if(!a.G)throw
new
Kl;a.G=!1}};_.Fl.prototype.hb=function(a){Hl(this);Il(this,!0,a)};_.Fl.prototype.addCallback=function(a,c){return
Ll(this,a,null,c)};var
Ll=function(a,c,d,e){a.B.push([c,d,e]);a.b&&Jl(a);return
a};_.Fl.prototype.then=function(a,c,d){var e,f,g=new
_.xe(function(a,c){e=a;f=c});Ll(this,e,function(a){a instanceof
Gl?g.cancel():f(a)});return g.then(a,c,d)};_.be(_.Fl);
var Ml=function(a){return(0,_.Fa)(a.B,function(a){return
_.Jc(a[1])})},Jl=function(a){if(a.C&&a.b&&Ml(a)){var
c=a.C,d=Nl[c];d&&(_.m.clearTimeout(d.ja),delete
Nl[c]);a.C=0}a.o&&(a.o.F--,delete a.o);for(var