-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgoogleresults.html
More file actions
2300 lines (2292 loc) · 328 KB
/
googleresults.html
File metadata and controls
2300 lines (2292 loc) · 328 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 doctype html>
<html itemscope="" itemtype="http://schema.org/SearchResultsPage" lang="en-SG">
<head>
<meta content="/images/branding/googleg/1x/googleg_standard_color_128dp.png" itemprop="image"/>
<link href="/images/branding/product/ico/googleg_lodp.ico" rel="shortcut icon"/>
<meta content="origin" id="mref" name="referrer"/>
<title>
xianxia wuxia novels - Google Search
</title>
<script>
(function(){window.google={kEI:'IrW7WbXLOsXB0gTG4a7oDg',kEXPI:'18168,20782,1352823,1353382,1353746,1354276,1354296,1354401,1354626,1354749,1354875,1355080,1355218,1355528,1355535,3700311,3700476,4029815,4031109,4038214,4038394,4041776,4043492,4045096,4045293,4045841,4047140,4047454,4048347,4048980,4050750,4051887,4056126,4056682,4058016,4061666,4061980,4062724,4063220,4064468,4064728,4064796,4069829,4072270,4072777,4076999,4078430,4078588,4080760,4081038,4081165,4082230,4086737,4093524,4096463,4097153,4097470,4097922,4097929,4097951,4098733,4098740,4098752,4102090,4102238,4103475,4103861,4104037,4104202,4104258,4105113,4105116,4106647,4108824,4109293,4109316,4109490,4110086,4110115,4110656,4110931,4111016,4111691,4113216,4113223,4114600,4115287,4115697,4116232,4116724,4116731,4116926,4116935,4117328,4117980,4118103,4118227,4118798,4119032,4119034,4119036,4119121,4119272,4119740,4120416,4120660,4120911,4120916,4121035,4121203,4121806,4122706,4123475,4123594,4123645,4124174,4124220,4124411,4124850,4125478,4125836,4125961,4126169,4126203,4126768,4126965,4127095,4127319,4127411,4127428,4127473,4127744,4127786,4127890,4128378,4128379,4128553,4128558,4128586,4128959,4129486,4129690,4129723,4130133,4130465,4130572,4130648,4130665,4130773,4131073,4131180,4131370,4131631,4132255,10200083',authuser:0,kscs:'c9c918f0_41',u:'c9c918f0'};google.kHL='en-SG';})();(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){if(a=google.logUrl(a,b,c,d,g)){b=new Image;var e=google.lc,f=google.li;e[f]=b;b.onerror=b.onload=b.onabort=function(){delete e[f]};google.vel&&google.vel.lu&&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));d="";!c&&google.cshid&&-1==b.search("&cshid=")&&(d="&cshid="+google.cshid);a=c||"/"+(g||"gen_204")+"?atyp=i&ct="+a+"&cad="+b+e+f+"&zx="+google.time()+d;/^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){if(a)var c=a.id;else{do c=Math.random();while(google.y[c])}google.y[c]=[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.f={};(function(){google.hs={h:true,pa:true};})();google.arwt=function(a){a.href=document.getElementById(a.id.substring(1)).href;return!0};(function(){function e(a){return a?(a=a.getAttribute("data-ved"))?"&ved="+a:"":""}
google.ausb=function(a){if(!a)return google.ml(Error("b"),!1),!0;if(a.getAttribute("data-sbv2")){var b=a.href,d=/[?&]adurl=([^&]+)/.exec(b);if(d&&/[?&]ae=1(&|$)/.test(b))try{var c={o:b+"&act=1",s:decodeURIComponent(d[1])}}catch(f){google.ml(Error("a`"+b),!1),c=null}else c=null;c&&(navigator.sendBeacon&&navigator.sendBeacon(c.o+"&ri=1","")?(a.getAttribute("data-amp-ad")&&(b=a?(b=/[?&]ved=([^&]+)/.exec(a.href))?b[1]:"":"",a.setAttribute("data-ved",b)),a.href=c.s):a.href+="&ri=2")}else c="",a.getAttribute("data-arwt")?a.id&&(c=e(document.getElementById(a.id.substring(1)))):c=e(a),b=a.getAttribute("data-sbt"),d=a.getAttribute("data-sbf"),b&&d&&navigator.sendBeacon&&navigator.sendBeacon(b+c+"&bt=1","")?a.href=d:a.href+="&bt=2";return!0};}).call(this);(function(){var k=this,l=Date.now||function(){return+new Date};var t={};var v=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 w=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},aa=function(){this._mouseEventsPrevented=!0},F={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},G=function(a){return(a.getAttribute("type")||a.tagName).toUpperCase()in ba},H=function(a){return(a.getAttribute("type")||a.tagName).toUpperCase()in ca},ba={CHECKBOX:!0,OPTION:!0,RADIO:!0},ca={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},da={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 I=function(){this.v=this.o=null},K=function(a,d){var b=J;b.o=a;b.v=d;return b};I.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 L=function(){this.w=[];this.o=0;this.v=null;this.H=!1};L.prototype.s=function(){if(this.H)return J.s();if(this.o!=this.w.length){var a=this.w[this.o];this.o++;a!=this.v&&a&&a.__owner&&(this.H=!0,K(a.__owner,this.v));return a}return null};var J=new I,M=new L;var P=function(){this.T=[];this.o=[];this.s=[];this.H={};this.v=null;this.w=[];O(this,"_custom")},ea="undefined"!=typeof navigator&&/iPhone|iPad|iPod/.test(navigator.userAgent),Q=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^\s+/,"").replace(/\s+$/,"")},fa=/\s*;\s*/,ka=function(a,d){return function(b){var c=d;if("_custom"==c){c=b.detail;if(!c||!c._type)return;c=c._type}if("click"==c&&(C&&b.metaKey||!C&&b.ctrlKey||2==b.which||null==b.which&&4==b.button||b.shiftKey))c=
"clickmod";else{var e=b.which||b.keyCode||b.key;D&&3==e&&(e=13);if(13!=e&&32!=e)e=!1;else{var f=B(b),q=(f.getAttribute("role")||f.type||f.tagName).toUpperCase(),h;(h="keydown"!=b.type)||("getAttribute"in f?(h=(f.getAttribute("role")||f.tagName).toUpperCase(),h=!H(f)&&("COMBOBOX"!=h||"INPUT"!=h)&&!f.isContentEditable):h=!1,h=!h);(h=h||b.ctrlKey||b.shiftKey||b.altKey||b.metaKey||G(f)&&32==e)||((h=f.tagName in E)||(h=f.getAttributeNode("tabindex"),h=null!=h&&h.specified),h=!(h&&!f.disabled));h?e=!1:(f="INPUT"!=f.tagName.toUpperCase()||f.type,h=!(q in F)&&13==e,e=(0==F[q]%e||h)&&!!f)}e&&(c="clickkey")}q=b.srcElement||b.target;e=R(c,b,q,"",null);b.path?(M.w=b.path,M.o=0,M.v=this,M.H=!1,f=M):f=K(q,this);for(;h=f.s();){var m=h;var g=m;h=c;var p=g.__jsaction;if(!p){var u=null;"getAttribute"in g&&(u=g.getAttribute("jsaction"));if(u){p=t[u];if(!p){p={};for(var x=u.split(fa),y=0,ha=x?x.length:0;y<ha;y++){var r=x[y];if(r){var z=r.indexOf(":"),N=-1!=z,ia=N?Q(r.substr(0,z)):"click";r=N?Q(r.substr(z+1)):r;p[ia]=r}}t[u]=p}g.__jsaction=p}else p=ja,g.__jsaction=p}"clickkey"==h?h="click":"click"!=h||p.click||(h="clickonly");g={S:h,action:p[h]||"",event:null,U:!1};e=R(g.S,g.event||b,q,g.action||"",m,e.timeStamp);if(g.U||g.action)break}e&&"touchend"==e.eventType&&(e.event._preventMouseEvents=aa);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
da&&"A"!=q&&!G(g)&&!H(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===m||v(m,g)))e.action="",e.actionElement=null;else{c={};for(var 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=m;c.bubbles=!1;e.event=c;e.targetElement=m}}else e.action=
"",e.actionElement=null;m=e;a.v&&(n=R(m.eventType,m.event,m.targetElement,m.action,m.actionElement,m.timeStamp),"clickonly"==n.eventType&&(n.eventType="click"),a.v(n,!0));if(m.actionElement){"A"!=m.actionElement.tagName||"click"!=m.eventType&&"clickmod"!=m.eventType||(b.preventDefault?b.preventDefault():b.returnValue=!1);if(a.v)a.v(m);else{if((n=k.document)&&!n.createEvent&&n.createEventObject)try{var A=n.createEventObject(b)}catch(na){A=b}else A=b;m.event=A;a.w.push(m)}if("touchend"==m.event.type&&
m.event._mouseEventsPrevented){b=m.event;for(var oa in b);l()}}}},R=function(a,d,b,c,e,f){return{eventType:a,event:d,targetElement:b,action:c,actionElement:e,timeStamp:f||l()}},ja={},la=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=w(b,e),b.attachEvent("on"+c,e));return{S:c,R:e,capture:f}}},O=function(a,d){if(!a.H.hasOwnProperty(d)){var b=ka(a,d),c=la(d,b);a.H[d]=b;a.T.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&&O(a,"keydown")}};P.prototype.R=function(a){return this.H[a]};var V=function(a,d){var b=new ma(d),c;a:{for(c=0;c<a.o.length;c++)if(S(a.o[c],d)){c=!0;break a}c=!1}if(c)return a.s.push(b),b;T(a,b);a.o.push(b);U(a);return b},U=function(a){for(var d=a.s.concat(a.o),b=[],c=[],e=0;e<a.o.length;++e){var f=a.o[e];W(f,d)?(b.push(f),X(f)):c.push(f)}for(e=0;e<a.s.length;++e)f=a.s[e],W(f,d)?b.push(f):(c.push(f),T(a,f));a.o=c;a.s=b},T=function(a,d){var b=d.o;ea&&(b.style.cursor="pointer");for(b=0;b<a.T.length;++b)d.s.push(a.T[b].call(null,d.o))},Y=function(a,d){a.v=d;a.w&&
(0<a.w.length&&d(a.w),a.w=null)},ma=function(a){this.o=a;this.s=[]},S=function(a,d){for(var b=a.o,c=d;b!=c&&c.parentNode;)c=c.parentNode;return b==c},W=function(a,d){for(var b=0;b<d.length;++b)if(d[b].o!=a.o&&S(d[b],a.o))return!0;return!1},X=function(a){for(var d=0;d<a.s.length;++d){var b=a.o,c=a.s[d];b.removeEventListener?b.removeEventListener(c.S,c.R,c.capture):b.detachEvent&&b.detachEvent("on"+c.S,c.R)}a.s=[]};var Z=new P;V(Z,window.document.documentElement);O(Z,"click");O(Z,"focus");O(Z,"focusin");O(Z,"blur");O(Z,"focusout");O(Z,"error");O(Z,"load");O(Z,"change");O(Z,"dblclick");O(Z,"input");O(Z,"keyup");O(Z,"keydown");O(Z,"keypress");O(Z,"mousedown");O(Z,"mouseenter");O(Z,"mouseleave");O(Z,"mouseout");O(Z,"mouseover");O(Z,"mouseup");O(Z,"touchstart");O(Z,"touchend");O(Z,"touchcancel");O(Z,"speech");(function(a){google.jsad=function(d){Y(a,d)};google.jsaac=function(d){return V(a,d)};google.jsarc=function(d){X(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}U(a)}})(Z);window.gws_wizbind=function(a){return{trigger:function(d){var b=a.R(d.type);b||(O(a,d.type),b=a.R(d.type));var c=d.target||d.srcElement;b&&b.call(c.ownerDocument.documentElement,d)},bind:function(d){Y(a,d)}}}(Z);}).call(this);(function(){var a=[];google.jsc={xx:a,x:function(b){a.push(b)}};}).call(this);(function(){google.c={c:{a:true,d:true,e:false,i:false,m:true,n:false}};google.sn='web';(function(){var e={gen204:"iml",clearcut:8};var f=function(a,b,c){a.addEventListener?a.removeEventListener(b,c,!1):a.attachEvent&&a.detachEvent("on"+b,c)},h=function(a,b,c){g.push({o:a,s:b,v:c});a.addEventListener?a.addEventListener(b,c,!1):a.attachEvent&&a.attachEvent("on"+b,c)},g=[];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:{},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=void 0!==c?c:google.time();b instanceof Array||(b=[b]);for(var d=0;d<b.length;++d)google.timers[a].t[b[d].clearcut]={key:b[d],ts:c}};google.c.e=function(a,b,c){google.timers[a].e[b]=c};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);f(a,"load",d);f(a,"error",d)};h(a,"load",d);b&&h(a,"error",d)};google.ull=function(){for(var a;a=g.shift();)f(a.o,a.s,a.v)};google.iTick=function(a){var b=google.time();google.tick("load",e,b);a=a.id||a.src||a.name;google.timers.iml||google.startTick("iml");google.timers.iml.t[a]=b;google.c.c.a&&(google.timers.aft||google.startTick("aft"),google.timers.aft.t[a]=b)};google.afte=!0;google.aft=function(a){google.c.c.a&&google.afte&&(google.timers.aft||google.startTick("aft"),google.timers.aft.t[a.id||a.src||a.name]=google.time())};google.c.c.e&&google.startTick("webaft");google.startTick("load");google.c.b("pr");google.c.b("xe");}).call(this);})();var a=window.location,b=a.href.indexOf("#");if(0<=b){var c=a.href.substring(b+1);/(^|&)q=/.test(c)&&-1==c.indexOf("#")&&a.replace("/search?"+c.replace(/(^|&)fp=[^&]*/g,"")+"&cad=h")};
</script>
<style>
[dir='ltr'],[dir='rtl']{unicode-bidi:-webkit-isolate;unicode-bidi:isolate}bdo[dir='ltr'],bdo[dir='rtl']{unicode-bidi:bidi-override;unicode-bidi:-webkit-isolate-override;unicode-bidi:isolate-override}#logo{display:block;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;padding-top:7px}#logocont.ddl{padding-top:3px}.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:6px;margin-bottom:0}.lst:focus{outline:none}.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-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#4787ed));background-color:#4d90fe;background-image:-webkit-linear-gradient(top,#4d90fe,#4787ed);background-image:linear-gradient(top,#4d90fe,#4787ed);border:1px solid #3079ed}.kpbb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#4d90fe),to(#357ae8));background-color:#357ae8;background-image:-webkit-linear-gradient(top,#4d90fe,#357ae8);background-image:linear-gradient(top,#4d90fe,#357ae8);border:1px solid #2f5bb7}a.kpbb:link,a.kpbb:visited{color:#fff}.kprb{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#d14836));background-color:#dd4b39;background-image:-webkit-linear-gradient(top,#dd4b39,#d14836);background-image:linear-gradient(top,#dd4b39,#d14836);border:1px solid #dd4b39}.kprb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#c53727));background-color:#c53727;background-image:-webkit-linear-gradient(top,#dd4b39,#c53727);background-image:linear-gradient(top,#dd4b39,#c53727);border:1px solid #b0281a;border-bottom-color:#af301f}.kprb:active{background-image:-webkit-gradient(linear,left top,left bottom,from(#dd4b39),to(#b0281a));background-color:#b0281a;background-image:-webkit-linear-gradient(top,#dd4b39,#b0281a);background-image:linear-gradient(top,#dd4b39,#b0281a)}.kpgb{background-image:-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#398a00));background-color:#3d9400;background-image:-webkit-linear-gradient(top,#3d9400,#398a00);background-image:linear-gradient(top,#3d9400,#398a00);border:1px solid #29691d}.kpgb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#3d9400),to(#368200));background-color:#368200;background-image:-webkit-linear-gradient(top,#3d9400,#368200);background-image:linear-gradient(top,#3d9400,#368200);border:1px solid #2d6200}.kpgrb{background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-color:#f5f5f5;background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;color:#555}.kpgrb:hover{background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-color:#f8f8f8;background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #dcdcdc;color:#333}a.kpgrb:link,a.kpgrb:visited{color:#555}#sfopt{display:inline-block;float:right;line-height:normal}.lsd{font-size:11px;position:absolute;top:3px;left:16px}.tsf{background:none}.tsf-p{position:relative;}.logocont{left:0;position:absolute;}.sfibbbc{padding-bottom:2px;padding-top:3px;margin-top:-3px;width:632px}.sbtc{position:relative}.sbibtd{line-height:0;overflow:visible;white-space:nowrap}.sbibps{padding:0 9px 0 16px;padding-top:0 !important;width:586px}.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:20px}#sfdiv{max-width:484px}.hp .big #sfdiv{max-width:568px;}.srp #sfdiv{max-width:none;overflow:hidden}.srp #tsf{position:relative;}.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}
</style>
<style id="ostyle">
.gb_5a{display:none!important}.gb_6a{visibility:hidden}@-webkit-keyframes gb__a{0%{opacity:0}50%{opacity:1}}@keyframes gb__a{0%{opacity:0}50%{opacity:1}}#gbq2{display:block}#gbqf{display:block;margin:0;margin-right:60px;white-space:nowrap}.gbqff{border:none;display:inline-block;margin:0;padding:0;vertical-align:top;width:100%}.gbqfqw,#gbqfb,.gbqfwa{vertical-align:top}#gbqfaa,#gbqfab,#gbqfqwb{position:absolute}#gbqfaa{left:0}#gbqfab{right:0}.gbqfqwb,.gbqfqwc{right:0;left:0;height:100%}.gbqfqwb{padding:0 8px}#gbqfbw{display:inline-block;vertical-align:top}#gbqfb{border:1px solid transparent;border-bottom-left-radius:0;border-top-left-radius:0;height:30px;margin:0;outline:none;padding:0 0;width:60px;-webkit-box-shadow:none;box-shadow:none;-webkit-box-sizing:border-box;box-sizing:border-box;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=1)}#gbqfb:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1)}#gbqfb:focus{-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5);box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5)}#gbqfb:hover:focus{-webkit-box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,0.1);box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,0.1)}#gbqfb:active:active{border:1px solid transparent;-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=1)}.gbqfi{background-position:-428px 0;display:inline-block;margin:-1px;height:30px;width:30px}.gbqfqw{background:#fff;background-clip:padding-box;border:1px solid #cdcdcd;border-color:rgba(0,0,0,.15);border-right-width:0;height:30px;-webkit-box-sizing:border-box;box-sizing:border-box}#gbfwc .gbqfqw{border-right-width:1px}#gbqfqw{position:relative}.gbqfqw.gbqfqw:hover{border-color:#a9a9a9;border-color:rgba(0,0,0,.3)}.gbqfwa{display:inline-block;width:100%}.gbqfwb{width:40%}.gbqfwc{width:60%}.gbqfwb .gbqfqw{margin-left:10px}.gbqfqw.gbqfqw:active,.gbqfqw.gbqfqwf.gbqfqwf{border-color:#4285f4}#gbqfq,#gbqfqb,#gbqfqc{background:transparent;border:none;height:20px;margin-top:4px;padding:0;vertical-align:top;width:100%}#gbqfq:focus,#gbqfqb:focus,#gbqfqc:focus{outline:none}.gbqfif,.gbqfsf{color:#222;font:16px arial,sans-serif}#gbqfbwa{display:none;text-align:center;height:0}#gbqfbwa .gbqfba{margin:16px 8px}#gbqfsa,#gbqfsb{font:bold 11px/27px Arial,sans-serif!important;vertical-align:top}.gb_ea .gbqfqw.gbqfqw,.gb_X .gbqfqw.gbqfqw{border-color:rgba(255,255,255,1);-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_ea #gbqfb,.gb_X #gbqfb{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 2px rgba(0,0,0,.2)}.gb_ea #gbqfb:hover,.gb_X #gbqfb:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 1px rgba(0,0,0,0.1),0 1px 2px rgba(0,0,0,.2)}.gb_ea #gbqfb:active,.gb_X #gbqfb:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:inset 0 2px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gbqfb,.gbqfba,.gbqfbb{cursor:default!important;display:inline-block;font-weight:bold;height:29px;line-height:29px;min-width:54px;padding:0 8px;text-align:center;text-decoration:none!important;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:none}.gbqfba:focus{border:1px solid #4d90fe;outline:none;-webkit-box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5);box-shadow:inset 0 0 0 1px rgba(255,255,255,0.5)}.gbqfba:hover{border-color:#c6c6c6;color:#222!important;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);background:#f8f8f8;background:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background:linear-gradient(top,#f8f8f8,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f8f8f8,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:hover:focus{-webkit-box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,0.1);box-shadow:inset 0 0 0 1px #fff,0 1px 1px rgba(0,0,0,0.1)}.gbqfb::-moz-focus-inner{border:0}.gbqfba::-moz-focus-inner{border:0}.gbqfba{border:1px solid #dcdcdc;border-color:rgba(0,0,0,0.1);color:#444!important;font-size:11px;background:#f5f5f5;background:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background:linear-gradient(top,#f5f5f5,#f1f1f1);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#f1f1f1,GradientType=1)}.gbqfba:active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}@-webkit-keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}@keyframes gb__nb{0%{-webkit-transform:scale(0,0);transform:scale(0,0)}20%{-webkit-transform:scale(1.4,1.4);transform:scale(1.4,1.4)}50%{-webkit-transform:scale(.8,.8);transform:scale(.8,.8)}85%{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}to{-webkit-transform:scale(1.0,1.0);transform:scale(1.0,1.0)}}.gb_wc{background-position:-314px -38px;opacity:.55;height:100%;width:100%}.gb_b:hover .gb_wc,.gb_b:focus .gb_wc{opacity:.85}.gb_xc .gb_wc{background-position:-463px 0}.gb_yc{background-color:#cb4437;-webkit-border-radius:8px;border-radius:8px;font:bold 11px Arial;color:#fff;line-height:16px;min-width:14px;padding:0 1px;position:absolute;right:0;text-align:center;text-shadow:0 1px 0 rgba(0,0,0,0.1);top:0;visibility:hidden;z-index:990}.gb_zc .gb_yc,.gb_zc .gb_Ac,.gb_zc .gb_Ac.gb_Bc{visibility:visible}.gb_Ac{padding:0 2px;visibility:hidden}.gb_Cc:not(.gb_Dc) .gb_mb,.gb_Cc:not(.gb_Dc) .gb_lb{left:3px}.gb_yc.gb_Ec{-webkit-animation:gb__nb .6s 1s both ease-in-out;animation:gb__nb .6s 1s both ease-in-out;-webkit-perspective-origin:top right;perspective-origin:top right;-webkit-transform:scale(1,1);transform:scale(1,1);-webkit-transform-origin:top right;transform-origin:top right}.gb_Ec .gb_Ac{visibility:visible}.gb_ea .gb_b .gb_wc{background-position:0 0;opacity:.7}.gb_ea .gb_xc .gb_wc{background-position:-279px -38px}.gb_ea .gb_b:hover .gb_wc,.gb_ea .gb_b:focus .gb_wc{opacity:.85}.gb_X .gb_b .gb_wc{background-position:-349px -38px;opacity:1}.gb_X .gb_xc .gb_wc{background-position:-393px 0}.gb_ea .gb_yc,.gb_X .gb_yc{border:none}.gb_Cc .gb_Fc{font-size:14px;font-weight:bold;top:0;right:0}.gb_Cc .gb_b{display:inline-block;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px}.gb_Cc .gb_lb{border-bottom-color:#e5e5e5}.gb_Hc{background-color:rgba(0,0,0,.55);color:#fff;font-size:12px;font-weight:bold;line-height:20px;margin:5px;padding:0 2px;text-align:center;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-border-radius:50%;border-radius:50%;height:20px;width:20px}.gb_Hc.gb_Ic{background-position:-194px -21px}.gb_Hc.gb_Jc{background-position:-194px -46px}.gb_b:hover .gb_Hc,.gb_b:focus .gb_Hc{background-color:rgba(0,0,0,.85)}#gbsfw.gb_Kc{background:#e5e5e5;border-color:#ccc}.gb_ea .gb_Hc{background-color:rgba(0,0,0,.7)}.gb_X .gb_Hc.gb_Hc,.gb_X .gb_zc .gb_Hc.gb_Hc,.gb_X .gb_zc .gb_b:hover .gb_Hc,.gb_X .gb_zc .gb_b:focus .gb_Hc{background-color:#fff;color:#404040}.gb_X .gb_Hc.gb_Ic{background-position:-70px 0}.gb_X .gb_Hc.gb_Jc{background-position:-219px 0}.gb_zc .gb_Hc.gb_Hc{background-color:#db4437;color:#fff}.gb_zc .gb_b:hover .gb_Hc,.gb_zc .gb_b:focus .gb_Hc{background-color:#a52714}.gb_N .gbqfi::before{left:-428px;top:0}.gb_Ib .gbqfb:focus .gbqfi{outline:1px dotted #fff}.gb_da .gb_b{background-position:-132px -38px;opacity:.55}.gb_ea .gb_da .gb_b{background-position:-132px -38px}.gb_X .gb_da .gb_b{background-position:-463px -35px;opacity:1}.gb_fa.gb_ga{min-height:196px;overflow-y:auto;width:320px}.gb_ha{-webkit-transition:height .2s ease-in-out;transition:height .2s ease-in-out}.gb_ia{background:#fff;margin:0;min-height:100px;padding:28px;padding-right:27px;text-align:left;white-space:normal;width:265px}.gb_ja{background:#f5f5f5;cursor:pointer;height:40px;overflow:hidden}.gb_ka{position:relative}.gb_ja{display:block;line-height:40px;text-align:center;width:320px}.gb_ka{display:block;line-height:40px;text-align:center}.gb_ka.gb_la{line-height:0}.gb_ja,.gb_ja:visited,.gb_ja:active,.gb_ka,.gb_ka:visited{color:#737373;text-decoration:none}.gb_ka:active{color:#737373}#gb a.gb_ja,#gb a.gb_ja:visited,#gb a.gb_ja:active,#gb a.gb_ka,#gb a.gb_ka:visited{color:#737373;text-decoration:none}#gb a.gb_ka:active{color:#737373}.gb_ka,.gb_ia{display:none}.gb_ba,.gb_ba+.gb_ka,.gb_ma .gb_ka,.gb_ma .gb_ia{display:block}.gb_ka:hover,.gb_ka:active,#gb a.gb_ka:hover,#gb a.gb_ka:active{text-decoration:underline}.gb_ka{border-bottom:1px solid #ebebeb;left:28px;width:264px}.gb_ma .gb_ja{display:none}.gb_ka:last-child{border-bottom-width:0}.gb_na .gb_O{display:initial}.gb_na.gb_oa{height:100px;text-align:center}.gb_na.gb_oa img{padding:34px 0;height:32px;width:32px}.gb_na .gb_2{background-image:url('//ssl.gstatic.com/gb/images/p1_8347dfa4.png');-webkit-background-size:64px 2272px;background-size:64px 2272px;background-position:0 -1725px}.gb_na .gb_2+img{border:0;margin:8px;height:48px;width:48px}.gb_na div.gb_pa{background:#ffa;-webkit-border-radius:5px;border-radius:5px;padding:5px;text-align:center}.gb_na.gb_qa,.gb_na.gb_ra{padding-bottom:0}.gb_na.gb_sa,.gb_na.gb_ra{padding-top:0}.gb_na.gb_ra a,.gb_na.gb_sa a{top:0}.gb_ta .gb_ja{margin-top:0;position:static}.gb_ua{display:inline-block}.gb_va{margin:-12px 28px 28px;position:relative;width:264px;-webkit-border-radius:2px;border-radius:2px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1);box-shadow:0 1px 2px rgba(0,0,0,0.1),0 0 1px rgba(0,0,0,0.1)}.gb_4{background-image:url('//ssl.gstatic.com/gb/images/p1_8347dfa4.png');-webkit-background-size:64px 2272px;background-size:64px 2272px;display:inline-block;margin:8px;vertical-align:middle;height:64px;width:64px}.gb_wa{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_xa{font:16px/24px Arial,sans-serif}.gb_ya,#gb#gb .gb_ya{color:#427fed;text-decoration:none}.gb_ya:hover,#gb#gb .gb_ya:hover{text-decoration:underline}.gb_za .gb_ia{position:relative}.gb_za .gb_O{position:absolute;top:28px;left:28px}.gb_ja.gb_Aa{display:none;height:0}.gb_7a{-webkit-background-size:32px 32px;background-size:32px 32px;-webkit-border-radius:50%;border-radius:50%;display:block;margin:-1px;overflow:hidden;position:relative;height:32px;width:32px;z-index:0}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_7a::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}.gb_ub::before{display:inline-block;-webkit-transform:scale(.5);transform:scale(.5);-webkit-transform-origin:left 0;transform-origin:left 0}}.gb_7a:hover,.gb_7a:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_7a:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15)}.gb_7a:active::after{background:rgba(0,0,0,.1);-webkit-border-radius:50%;border-radius:50%;content:'';display:block;height:100%}.gb_8a{cursor:pointer;line-height:30px;min-width:30px;opacity:.75;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}.gb_b.gb_8a{width:auto}.gb_8a:hover,.gb_8a:focus{opacity:.85}.gb_9a .gb_8a,.gb_9a .gb_ab{line-height:26px}#gb#gb.gb_9a a.gb_8a,.gb_9a .gb_ab{font-size:11px;height:auto}.gb_bb{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_cb:hover .gb_bb{opacity:.85}.gb_X .gb_8a,.gb_X .gb_bb{opacity:1}#gb#gb.gb_X.gb_X a.gb_8a,#gb#gb .gb_X.gb_X a.gb_8a{color:#fff}.gb_X.gb_X .gb_bb{border-top-color:#fff;opacity:1}.gb_ea .gb_7a:hover,.gb_X .gb_7a:hover,.gb_ea .gb_7a:focus,.gb_X .gb_7a:focus{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2);box-shadow:0 1px 0 rgba(0,0,0,.15),0 1px 2px rgba(0,0,0,.2)}.gb_db .gb_eb,.gb_fb .gb_eb{position:absolute;right:1px}.gb_eb.gb_R,.gb_gb.gb_R,.gb_cb.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_hb.gb_W .gb_8a{width:30px!important}.gb_ib.gb_6a{display:none}@-webkit-keyframes bar{0%{margin-left:-100%}to{margin-left:100%}}@keyframes progressmove{0%{margin-left:-100%}to{margin-left:100%}}.gb_jb.gb_5a{display:none}.gb_jb{background-color:#ccc;height:3px;overflow:hidden}.gb_kb{background-color:#f4b400;height:100%;width:50%;-webkit-animation:progressmove 1s linear 0s infinite;animation:progressmove 1s linear 0s infinite}.gb_8a~.gb_lb,.gb_8a~.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{-webkit-border-radius:50%;border-radius:50%;overflow:hidden;-webkit-transform:translateZ(0)}.gb_ub{-webkit-background-size:96px 96px;background-size:96px 96px;border:none;vertical-align:top;height:96px;width:96px}.gb_ib{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_ib{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_Fb{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);max-height:230px;overflow:auto}.gb_Hb{border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px;position:relative;white-space:nowrap}.gb_Ib .gb_Hb:focus .gb_Jb{outline:1px dotted #fff}.gb_Hb:hover{background:#eee}.gb_Hb[selected="true"]{overflow:hidden}.gb_Hb[selected="true"]>.gb_Kb{background-color:rgba(117,117,117,.9)}.gb_Hb[selected="true"]>.gb_Lb{display:block;position:absolute;z-index:2}.gb_Lb::-moz-focus-inner{border:0}.gb_Lb{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_Hb[selected="true"]>.gb_Lb:focus{background-color:rgba(0,0,0,.24);-webkit-border-radius:2px;border-radius:2px;outline:0}.gb_Hb[selected="true"]>.gb_Lb:hover,.gb_Hb[selected="true"]>.gb_Lb:focus:hover{background-color:#565656;-webkit-border-radius:2px;border-radius:2px}.gb_Hb[selected="true"]>.gb_Lb:active{-webkit-border-radius:2px;border-radius:2px;background-color:#212121}.gb_Mb{left:0;margin-left:5%}.gb_Nb{margin-right:5%;right:0}.gb_Hb:first-child,.gb_Ob:first-child+.gb_Hb{border-top:0}.gb_Ob{display:none}.gb_Pb{cursor:default}.gb_Pb:hover{background:transparent}.gb_Qb{border:none;vertical-align:top;height:48px;width:48px}.gb_Jb{display:inline-block;margin:6px 0 0 10px}.gb_Pb .gb_Qb,.gb_Pb .gb_Jb{opacity:.4}.gb_Rb{color:#000}.gb_Pb .gb_Rb{color:#666}.gb_Sb{color:#666}.gb_Tb{color:#666;font-style:italic}.gb_Kb{background-color:transparent;height:100%;left:0;position:absolute;text-align:center;top:0;width:100%;z-index:1}.gb_Lb:hover{background-color:rgba(100,100,100,0.4)}.gb_Ub{background:#f5f5f5;border-top:1px solid #ccc;border-top-color:rgba(0,0,0,.2);display:block;padding:10px 20px}.gb_Vb{background-position:-244px 0;display:inline-block;margin:1px 0;vertical-align:middle;height:25px;width:25px}.gb_N .gb_Vb::before{left:-244px;top:0}.gb_Wb{color:#427fed;display:inline-block;padding:0 25px 0 10px;vertical-align:middle;white-space:normal}.gb_Ub:hover .gb_Wb{text-decoration:underline}.gb_zb .gb_yb:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);border-color:#c6c6c6;color:#222;background-color:#fff;background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:-webkit-linear-gradient(top,#fff,#f8f8f8);background-image:-webkit-linear-gradient(top,#fff,#f8f8f8);background-image:linear-gradient(top,#fff,#f8f8f8);filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff',EndColorStr='#f8f8f8')}#gb#gb a.gb_O{color:#404040;text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{text-decoration:none}#gb#gb a.gb_P,#gb#gb span.gb_P{color:#000}.gb_P{opacity:.75}#gb#gb a.gb_P:hover,#gb#gb a.gb_P:focus{opacity:.85;text-decoration:underline}.gb_Q.gb_R{display:none;padding-left:15px;vertical-align:middle}.gb_Q.gb_R:first-child{padding-left:0}.gb_S.gb_R{display:inline-block}.gb_Q span{opacity:.55;-webkit-user-select:text}.gb_T .gb_S.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size;display:-webkit-flex;display:flex}.gb_U .gb_S.gb_R{display:none}.gb_Q .gb_P{display:inline-block;line-height:24px;outline:none;vertical-align:middle}.gb_S .gb_P{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_Zc{display:inline-block;padding:0 0 0 15px;vertical-align:middle}.gb_Zc:first-child,#gbsfw:first-child+.gb_Zc{padding-left:0}.gb_Fc{position:relative}.gb_b{display:inline-block;outline:none;vertical-align:middle;-webkit-border-radius:2px;border-radius:2px;-webkit-box-sizing:border-box;box-sizing:border-box;height:30px;width:30px;color:#000;cursor: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;-webkit-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;-webkit-animation:gb__a .2s;animation:gb__a .2s;border-bottom-color:#ccc;border-bottom-color:rgba(0,0,0,.2);top:36px}x:-o-prefocus,div.gb_mb{border-bottom-color:#ccc}.gb_fa{background:#fff;border:1px solid #ccc;border-color:rgba(0,0,0,.2);color:#000;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.2);box-shadow:0 2px 10px rgba(0,0,0,.2);display:none;outline:none;overflow:hidden;position:absolute;right:0;top:44px;-webkit-animation:gb__a .2s;animation:gb__a .2s;-webkit-border-radius:2px;border-radius:2px;-webkit-user-select:text}.gb_Zc.gb_g .gb_lb,.gb_Zc.gb_g .gb_mb,.gb_Zc.gb_g .gb_fa,.gb_g.gb_fa{display:block}.gb_Zc.gb_g.gb_kf .gb_lb,.gb_Zc.gb_g.gb_kf .gb_mb{display:none}.gb_lf{position:absolute;right:0;top:44px;z-index:-1}.gb_9a .gb_lb,.gb_9a .gb_mb,.gb_9a .gb_fa{margin-top:-10px}#gbsfw{min-width:400px;overflow:visible}.gb_Xb,#gbsfw.gb_g{display:block;outline:none}#gbsfw.gb_pa iframe{display:none}.gb_Zb{padding:118px 0;text-align:center}.gb_0b{background:no-repeat center 0;color:#aaa;font-size:13px;line-height:20px;padding-top:76px;background-image:-webkit-image-set(url('//ssl.gstatic.com/gb/images/a/f5cdd88b65.png') 1x,url('//ssl.gstatic.com/gb/images/a/133fc21e88.png') 2x)}.gb_0b a{color:#4285f4;text-decoration:none}a.gb_Ba{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;-webkit-user-select:none}a.gb_Ba:hover:after,a.gb_Ba:focus:after{background-color:rgba(0,0,0,.12);content:'';height:100%;left:0;position:absolute;top:0;width:100%}a.gb_Ba:hover,a.gb_Ba:focus{text-decoration:none}a.gb_Ba:active{background-color:rgba(153,153,153,.4);text-decoration:none}a.gb_Ca{background-color:#4285f4;color:#fff}a.gb_Ca:active{background-color:#0043b2}.gb_Da{-webkit-box-shadow:0 1px 1px rgba(0,0,0,.16);box-shadow:0 1px 1px rgba(0,0,0,.16)}.gb_Ba,.gb_Ca,.gb_Ea,.gb_Fa{display:inline-block;line-height:28px;padding:0 12px;-webkit-border-radius:2px;border-radius:2px}.gb_Ea{background:#f8f8f8;border:1px solid #c6c6c6}.gb_Fa{background:#f8f8f8}.gb_Ea,#gb a.gb_Ea.gb_Ea,.gb_Fa{color:#666;cursor:default;text-decoration:none}#gb a.gb_Fa.gb_Fa{cursor:default;text-decoration:none}.gb_Fa{border:1px solid #4285f4;font-weight:bold;outline:none;background:#4285f4;background:-webkit-linear-gradient(top,#4387fd,#4683ea);background:linear-gradient(top,#4387fd,#4683ea);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4387fd,endColorstr=#4683ea,GradientType=0)}#gb a.gb_Fa.gb_Fa{color:#fff}.gb_Fa:hover{-webkit-box-shadow:0 1px 0 rgba(0,0,0,.15);box-shadow:0 1px 0 rgba(0,0,0,.15)}.gb_Fa:active{-webkit-box-shadow:inset 0 2px 0 rgba(0,0,0,.15);box-shadow:inset 0 2px 0 rgba(0,0,0,.15);background:#3c78dc;background:-webkit-linear-gradient(top,#3c7ae4,#3f76d3);background:linear-gradient(top,#3c7ae4,#3f76d3);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#3c7ae4,endColorstr=#3f76d3,GradientType=0)}.gb_1b{min-width:127px;overflow:hidden;position:relative;z-index:987}.gb_2b{position:absolute;padding:0 20px 0 15px}.gb_3b .gb_2b{right:100%;margin-right:-127px}.gb_4b{display:inline-block;outline:none;vertical-align:middle}.gb_5b .gb_4b{position:relative;top:2px}.gb_4b .gb_6b,.gb_Wa{display:block}.gb_7b{border:none;display:block;visibility:hidden}.gb_4b .gb_6b{background-position:0 -35px;height:33px;width:92px}.gb_Wa{background-repeat:no-repeat}.gb_X .gb_4b .gb_6b{background-position:-296px 0}.gb_ea .gb_4b .gb_6b{background-position:-97px 0;opacity:.54}.gb_mf{display:inline-block;line-height:normal;position:relative;z-index:987}.gb_rf .gb_b{background-position:-498px -35px;opacity:.55;height:30px;width:30px}.gb_rf .gb_b:hover,.gb_rf .gb_b:focus{opacity:.85}.gb_rf .gb_lb{border-bottom-color:#f5f5f5}#gbsfw.gb_sf{background:#f5f5f5;border-color:#ccc}.gb_X .gb_rf .gb_b{background-position:-428px -35px;opacity:1}.gb_ea .gb_rf .gb_b{background-position:-498px 0;opacity:.7}.gb_ea .gb_rf .gb_b:hover,.gb_ea .gb_rf .gb_b:focus{opacity:.85}.gb_og{color:#000;font:13px/27px Arial,sans-serif;left:0;min-width:1092px;position:absolute;top:0;-webkit-user-select:none;width:100%}.gb_uf{font:13px/27px Arial,sans-serif;position:relative;height:60px;width:100%}.gb_9a .gb_uf{height:28px}#gba{height:60px}#gba.gb_9a{height:28px}#gba.gb_pg{height:90px}#gba.gb_qg{height:132px}#gba.gb_pg.gb_9a{height:58px}.gb_uf>.gb_R{height:60px;line-height:58px;vertical-align:middle}.gb_9a .gb_uf>.gb_R{height:28px;line-height:26px}.gb_uf::before{background:#e5e5e5;bottom:0;content:'';display:none;height:1px;left:0;position:absolute;right:0}.gb_uf{background:#f1f1f1}.gb_rg .gb_uf{background:#fff}.gb_rg .gb_uf::before,.gb_9a .gb_uf::before{display:none}.gb_ea .gb_uf,.gb_X .gb_uf,.gb_9a .gb_uf{background:transparent}.gb_ea .gb_uf::before{background:#e1e1e1;background:rgba(0,0,0,.12)}.gb_X .gb_uf::before{background:#333;background:rgba(255,255,255,.2)}.gb_R{display:inline-block;-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-flex:0 0 main-size;flex:0 0 main-size}.gb_R.gb_sg{float:right;-webkit-order:1;order:1}.gb_tg{white-space:nowrap}.gb_T .gb_tg{display:-webkit-flex;display:flex}.gb_tg,.gb_R{margin-left:0!important;margin-right:0!important}.gb_6b{background-image:url('//ssl.gstatic.com/gb/images/i1_1967ca6a.png');-webkit-background-size:528px 68px;background-size:528px 68px}@media (min-resolution:1.25dppx),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gb_6b{background-image:url('//ssl.gstatic.com/gb/images/i2_2ec824b0.png')}}.gb_hb{min-width:255px;padding-left:30px;padding-right:30px;position:relative;text-align:right;z-index:986;-webkit-align-items:center;align-items:center;-webkit-justify-content:flex-end;justify-content:flex-end;-webkit-user-select:none}.gb_9a .gb_hb{min-width:0}.gb_hb.gb_R{-webkit-flex:1 1 auto;flex:1 1 auto;-webkit-flex:1 1 main-size;flex:1 1 main-size}.gb_uc{line-height:normal;position:relative;text-align:left}.gb_uc.gb_R,.gb_ce.gb_R,.gb_ab.gb_R{-webkit-flex:0 1 auto;flex:0 1 auto;-webkit-flex:0 1 main-size;flex:0 1 main-size}.gb_eg,.gb_fg{display:inline-block;padding:0 0 0 15px;position:relative;vertical-align:middle}.gb_ce{line-height:normal;padding-right:15px}.gb_hb .gb_ce.gb_U{padding-right:0}.gb_ab{color:#404040;line-height:30px;min-width:30px;overflow:hidden;vertical-align:middle;text-overflow:ellipsis}#gb.gb_9a.gb_9a .gb_Lf,#gb.gb_9a.gb_9a .gb_uc>.gb_fg .gb_Mf{background:none;border:none;color:#36c;cursor:pointer;filter:none;font-size:11px;line-height:26px;padding:0;-webkit-box-shadow:none;box-shadow:none}#gb.gb_9a.gb_X .gb_Lf,#gb.gb_9a.gb_X .gb_uc>.gb_fg .gb_Mf{color:#fff}.gb_9a .gb_Lf{text-transform:uppercase}.gb_hb.gb_V{padding-left:0;padding-right:29px}.gb_hb.gb_gg{max-width:400px}.gb_hg{background-clip:content-box;background-origin:content-box;opacity:.27;padding:22px;height:16px;width:16px}.gb_hg.gb_R{display:none}.gb_hg:hover,.gb_hg:focus{opacity:.55}.gb_ig{background-position:-219px -25px}.gb_jg{background-position:-194px 0;padding-left:30px;padding-right:14px;position:absolute;right:0;top:0;z-index:990}.gb_db:not(.gb_fb) .gb_jg,.gb_V .gb_ig{display:inline-block}.gb_db .gb_ig{padding-left:30px;padding-right:0;width:0}.gb_db:not(.gb_fb) .gb_kg{display:none}.gb_hb.gb_R.gb_V,.gb_V:not(.gb_fb) .gb_uc{-webkit-flex:0 0 auto;flex:0 0 auto;-webkit-flex:0 0 main-size;flex:0 0 main-size}.gb_hg,.gb_V .gb_ce,.gb_fb .gb_uc{overflow:hidden}.gb_db .gb_ce{padding-right:0}.gb_V .gb_uc{padding:1px 1px 1px 0}.gb_db .gb_uc{width:75px}.gb_hb.gb_lg,.gb_hb.gb_lg .gb_ig,.gb_hb.gb_lg .gb_ig::before,.gb_hb.gb_lg .gb_ce,.gb_hb.gb_lg .gb_uc{-webkit-transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out;transition:width .5s ease-in-out,min-width .5s ease-in-out,max-width .5s ease-in-out,padding .5s ease-in-out,left .5s ease-in-out}.gb_T .gb_hb{min-width:0}.gb_hb.gb_W,.gb_hb.gb_W .gb_uc,.gb_hb.gb_mg,.gb_hb.gb_mg .gb_uc{min-width:0!important}.gb_hb.gb_W,.gb_hb.gb_W .gb_R{-webkit-flex:0 0 auto!important;-webkit-box-flex:0 0 auto!important;-webkit-flex:0 0 auto!important;flex:0 0 auto!important}.gb_hb.gb_W .gb_ab{width:30px!important}.gb_ng{margin-right:32px}.gb_6a{display:none}.gb_uf ::-webkit-scrollbar{height:15px;width:15px}.gb_uf ::-webkit-scrollbar-button{height:0;width:0}.gb_uf ::-webkit-scrollbar-thumb{background-clip:padding-box;background-color:rgba(0,0,0,.3);border:5px solid transparent;-webkit-border-radius:10px;border-radius:10px;min-height:20px;min-width:20px;height:5px;width:5px}.gb_uf ::-webkit-scrollbar-thumb:hover,.gb_uf ::-webkit-scrollbar-thumb:active{background-color:rgba(0,0,0,.4)}#gb.gb_wg{min-width:980px}#gb.gb_wg .gb_qf{min-width:0;position:static;width:0}.gb_Nc{display:none}.gb_wg .gb_uf{background:transparent;border-bottom-color:transparent}.gb_wg .gb_uf::before{display:none}.gb_wg.gb_wg .gb_Q{display:inline-block}.gb_wg.gb_hb .gb_ce.gb_U{padding-right:15px}.gb_T.gb_wg .gb_S.gb_R{display:-webkit-flex;display:flex}.gb_wg.gb_T #gbqf{display:block}.gb_wg #gbq{height:0;position:absolute}.gb_wg.gb_hb{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://ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip::before{content:url(https://ssl.gstatic.com/gb/images/silhouette_96.png)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii::before{content:url(https://ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip::before{content:url(https://ssl.gstatic.com/gb/images/silhouette_96.png)}}
.gbii{background-image:url(https://ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip{background-image:url(https://ssl.gstatic.com/gb/images/silhouette_96.png)}@media (min-resolution:1.25dppx),(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-device-pixel-ratio:1.25){.gbii{background-image:url(https://ssl.gstatic.com/gb/images/silhouette_27.png)}.gbip{background-image:url(https://ssl.gstatic.com/gb/images/silhouette_96.png)}}
</style>
<style data-jiis="cc" id="gstyle">
body{color:#000;margin:0}body{background:#fff}a.gb1,a.gb2,a.gb3,.link{color:#1a0dab !important}.ts{border-collapse:collapse}.ts td{padding:0}.g{line-height:1.2;text-align:left}.ti,.bl{display:inline}.ti{display:inline-table}#rhs_block{padding-bottom:15px}a:link,.w,#prs a:visited,#prs a:active,.q:active,.q:visited,.kl:active,.tbotu{color:#1a0dab}.mblink:visited,a:visited{color:#609}.cur,.b{font-weight:bold}.j{width:42em;font-size:82%}.s{max-width:48em}.sl{font-size:82%}.hd{position:absolute;width:1px;height:1px;top:-1000em;overflow:hidden}.f,.f a:link,.m{color:#666}.c h2{color:#666}.mslg cite{display:none}.ng{color:#dd4b39}h1,ol,ul,li{margin:0;padding:0}.g,body,html,input,.std,h1{font-size:small;font-family:arial,sans-serif}.c h2,h1{font-weight:normal}.blk a{color:#000}#nav a{display:block}#nav .i{color:#a90a08;font-weight:bold}.csb,.ss,.micon,.close_btn,.mbi{background:url(/images/nav_logo242.png) no-repeat;overflow:hidden}.csb,.ss{background-position:0 0;height:40px;display:block}.mbi{background-position:-153px -70px;display:inline-block;float:left;height:13px;margin-right:3px;margin-top:4px;width:13px}#nav td{padding:0;text-align:center}.ch{cursor:pointer}h3,.med{font-size:medium;font-weight:normal;margin:0;padding:0}#res h3{font-size:18px}.e{margin:2px 0 .75em}.slk div{padding-left:12px;text-indent:-10px}.blk{border-top:1px solid #6b90da;background:#f0f7f9}#cnt{clear:both}#res{padding-right:1em;margin:0 16px}.xsm{font-size:x-small}ol li{list-style:none}.sm li{margin:0}.gl,#foot a,.nobr{white-space:nowrap}#foot #navcnt a{color:#4285f4;font-weight:normal}#foot #navcnt .cur{color:rgba(0,0,0,0.87);font-weight:normal}.sl,.r{display:inline;font-weight:normal;margin:0}.r{font-size:medium}h4.r{font-size:small}.vshid{display:none}.gic{position:relative;overflow:hidden;z-index:0}.nwd{font-size:10px;padding:0 16px 30px 16px;text-align:center}#rhs{display:block;margin-left:712px;padding-bottom:10px;min-width:268px}#nyc{bottom:0;display:none;left:0;margin-left:663px;min-width:317px;overflow:hidden;position:fixed;right:0;visibility:visible}.mdm #nyc{margin-left:683px}.mdm #rhs{margin-left:732px}.big #nyc{margin-left:743px}.big #rhs{margin-left:792px;}body .big #subform_ctrl{margin-left:229px}.rhslink{width:68px}.rhsdw .rhslink{width:156px}.rhsimg{width:70px}.rhsimg.rhsdw{width:158px}.rhsimg.rhsn1st{margin-left:16px}#nyc .rhsvw,#rhs .scrt.rhsvw,#rhs table.rhsvw{border:0}#nyc .rhsvw{padding-left:0;padding-right:0}#rhs .rhsvw{border:1px solid #ebebeb;padding-left:15px;padding-right:15px;position:relative;width:424px;}#nyc .rhsvw{width:424px}#center_col .rhsl4,#center_col .rhsl5,#center_col .rhsn5{display:none}#rhs .rhstc4 .rhsvw,#nyc.rhstc4 .rhsvw{width:336px}#rhs .rhstc3 .rhsvw,#nyc.rhstc3 .rhsvw{width:248px}.rhstc4 .rhsg4,.rhstc3 .rhsg4,.rhstc3 .rhsg3{background:none !important;display:none !important}.rhstc5 .rhsl5,.rhstc5 .rhsl4,.rhstc4 .rhsl4{background:none !important;display:none !important}.rhstc4 .rhsn4{background:none !important;display:none !important}.nrgt{margin-left:22px}.mslg .vsc{border:1px solid transparent;border-radius:2px;border-radius:2px;-webkit-transition:opacity .2s ease;margin-top:2px;padding:3px 0 3px 5px;transition:opacity .2s ease;width:294px}.mslg>td{padding-right:6px;padding-top:4px}button.vspib{display:none}div.vspib{background:transparent;bottom:0;cursor:default;height:auto;margin:0;min-height:40px;padding-left:9px;padding-right:4px;position:absolute;right:-37px;top:-2px;width:28px;z-index:3}.nyc_open div.vspib{z-index:103}div.vspib:focus{outline:none}.vspii .vspiic{background:url(/images/nav_logo242.png);background-position:-3px -260px;width:15px;height:13px;margin-left:6px;margin-top:-7px;opacity:.3;position:absolute;top:50%;visibility:hidden}.vsh .vsc:hover .vspii .vspiic{visibility:visible}.vsh .vspib .vspii:hover .vspiic{opacity:1;visibility:visible;-webkit-transition:opacity .25s ease}.vsh .vsdth .vspiic{opacity:1;visibility:visible;-webkit-transition:opacity 1.5s ease}.nyc_open.vsh .vsdth .vspiic,.nyc_open.vsh .vspib .vspii:hover .vspiic{-webkit-transition:0}.vspib:focus .vspiic{opacity:1;visibility:visible}.vsh .vspib:focus .vspiic{opacity:.3;visibility:hidden}.vso .vspiic,.vso .vspib:focus .vspiic{opacity:1;visibility:visible}.vspii{border:1px solid transparent;border-radius:2px;border-right:none;cursor:default;user-select:none;-webkit-user-select:none}.vsh.nyc_opening .vsc:hover .vspii,.vsh.nyc_open .vsc:hover .vspii,.vso .vspii{background-color:#fafafa;border-color:#e6e6e6;height:100%}.vsh.nyc_open .mslg .vsc:hover,.vsh.nyc_opening .mslg .vsc:hover{border-right-color:#ebebeb}.vso .vspib{padding-right:0}.nyc_open #nycx{background:url(/images/nav_logo242.png) no-repeat;background-position:-140px -230px;height:11px;width:11px}.vsc{display:inline-block;position:relative;width:100%}#res h3.r{display:block;overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis;white-space:nowrap}#res h3.inl{display:inline;white-space:normal}em{font-weight:bold;font-style:normal}ol,ul,li{border:0;margin:0;padding:0}.g{margin-top:0;margin-bottom:26px}.ibk{display:inline-block;vertical-align:top}.tsw{width:595px}#cnt{min-width:833px;margin-left:0}.mw{max-width:1197px}.big .mw{max-width:1280px}#cnt #center_col,#cnt #foot{width:632px}.gbh{top:24px}#gbar{margin-left:8px;height:20px}#guser{margin-right:8px;padding-bottom:5px !important}.tsf-p{padding-left:150px;margin-right:46px;max-width:739px}.big .tsf-p{margin-right:322px;padding-left:150px}.mbi{margin-bottom:-1px}.uc{padding-left:8px;position:relative;margin-left:128px;}.ucm{padding-bottom:5px;padding-top:5px;margin-bottom:8px}.col{float:left}#leftnavc,#center_col,#rhs{position:relative}#center_col{margin-left:138px;margin-right:264px;}.mdm #center_col{margin-left:138px;}.big #center_col{margin-left:138px;}#subform_ctrl{font-size:11px;margin-right:480px;position:relative;z-index:99}#subform_ctrl a.gl{color:#1a0dab}#center_col{clear:both}#res{border:0;margin:0;padding:0 16px;}#extrares{padding:0 16px}#ires{margin-top:6px}.micon,.close_btn{border:0}.close_btn{background-position:-138px -84px;float:right;height:14px;width:14px}.mitem{border-bottom:1px solid transparent;line-height:29px;opacity:1.0;}.mitem .kl{padding-left:16px}.mitem .kl:hover,.msel .kls:hover{color:#222;display:block}.mitem>.kl{color:#222;display:block}.msel{color:#dd4b39;cursor:pointer}.msel .kls{border-left:5px solid #dd4b39;padding-left:11px}.mitem>.kl,.msel{font-size:13px}#tbd{display:block;min-height:1px}.tbt{font-size:13px;line-height:1.2}.tbnow{white-space:nowrap}.tbos,.tbots{font-weight:bold}.tbst{margin-top:8px}#iszlt_sel.tbcontrol_vis{margin-left:0}.tbpc,.tbpo{font-size:13px}.tbpc,.tbo .tbpo{display:inline}.tbo .tbpc,.tbpo,#set_location_section{display:none}.lco #set_location_section{display:block}#cdr_opt{padding-left:8px;text-indent:0}.tbou #cdr_frm{display:none}#cdr_frm,#cdr_min,#cdr_max{color:rgb(102,102,102)}#cdr_min,#cdr_max{font-family:arial,sans-serif;width:100%}#cdr_opt label{display:block;font-weight:normal;margin-right:2px;white-space:nowrap}a:link,.w,.q:active,.q:visited{cursor:pointer}.osl a,.gl a,#tsf a,a.mblink,a.gl,a.fl,.slk a,.bc a,.flt,a.flt u,.blg a,#appbar a{text-decoration:none}.osl a:hover,.gl a:hover,#tsf a:hover,a.mblink:hover,a.gl:hover,a.fl:hover,.slk a:hover,.bc a:hover,.flt:hover,a.flt:hover u,.tbotu:hover,.blg a:hover{text-decoration:underline}#tads a,#tadsb a,#res a,#rhs a,#taw a{text-decoration:none}#brs a,.nsa,.tbt a,.tbotu:hover,#tbpi,#nycntg a:hover,.fl,.navend span,#botstuff a,.flt:hover u,.mlocsel span,#rhs .gl a,#nav a.pn{text-decoration:none}#ss-box a:hover{text-decoration:none}.osl{color:#777}#gbi,#gbg{border-color:#a2bff0 #558be3 #558be3 #a2bff0}#gbi a.gb2:hover,#gbg a.gb2:hover,.mi:hover{background-color:#558be3}#guser a.gb2:hover,.mi:hover,.mi:hover *{color:#fff !important}#guser{color:#000}#imagebox_bigimages .th{border:0}.vsc:hover .lupin,.intrlu:hover .lupin,.lupin.luhovm,#ires:hover .vsc:hover .lupin.luhovm{background-image:url(/images/mappins_red.png) !important;}#ires:hover .lupin.luhovm{background-image:url(/images/mappins_grey.png) !important;}.vsc:hover .lucir,.intrlu:hover .lucir,.lucir.luhovm,#ires:hover .vsc:hover .lucir.luhovm{background-image:url(/images/mapcircles_red.png) !important;}#ires:hover .lucir.luhovm{background-image:url(/images/mapcircles_grey.png) !important;}#foot .ftl{margin-right:12px}#foot{visibility:hidden}#fll a,#bfl a{color:#1a0dab;margin:0 12px;text-decoration:none}.stp{margin:7px 0 17px}body{color:#222}.s{color:#545454}.s .st em,.st.s.std em{color:#6a6a6a}.s a:visited em{color:#609}.s a:active em{color:#dd4b39}.sfcc{width:833px;}#tsf{width:833px;}.big .sfcc{max-width:1129px}.big #tsf{width:1109px}#topstuff .obp{padding-top:6px}.slk{margin-top:6px !important}.st{line-height:1.4;word-wrap:break-word}.kt{border-spacing:2px 0;margin-top:1px}.esw{vertical-align:text-bottom;}.cpbb,.kpbb,.kprb,.kpgb,.kpgrb,.ksb{-webkit-border-radius:2px;border-radius:2px;cursor:default;font-family:arial,sans-serif;font-size:11px;font-weight:bold;height:27px;line-height:27px;margin:2px 0;min-width:54px;padding:0 8px;text-align:center;-webkit-transition:all 0.218s,visibility 0s;transition:all 0.218s,visibility 0s;-webkit-user-select:none}.ab_button{-webkit-border-radius:2px;border-radius:2px;cursor:default;font-family:arial,sans-serif;font-size:11px;font-weight:bold;height:27px;line-height:27px;margin:2px 0;min-width:54px;padding:0 8px;text-align:center;-webkit-transition:all 0.218s,visibility 0s;transition:all 0.218s,visibility 0s;-webkit-user-select:none}#top_nav .ab_button{background:none;border:none;font:inherit;height:auto;margin:0;min-width:0;padding:0;width:auto}#top_nav .ab_button:hover{-webkit-box-shadow:none;box-shadow:none;-webkit-transition:none;transition:none}.ab_button.left{-webkit-border-radius:2px 0 0 2px;border-radius:2px 0 0 2px;border-right-color:transparent;margin-right:0}.ab_button.right{-webkit-border-radius:0 2px 2px 0;border-radius:0 2px 2px 0;margin-left:-1px}.kbtn-small{min-width:26px;width:26px}.ksb{background-color:#f5f5f5;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;}.ab_button{background-color:#f5f5f5;background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f5f5f5,#f1f1f1);background-image:linear-gradient(top,#f5f5f5,#f1f1f1);border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.1);color:#444;}a.ksb,.div.ksb{color:#444;text-decoration:none;cursor:default}a.ab_button{color:#444;text-decoration:none;cursor:default}.cpbb:hover,.kpbb:hover,.kprb:hover,.kpgb:hover,.kpgrb:hover,.ksb:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-transition:all 0.0s;transition:all 0.0s}.ab_button:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-transition:all 0.0s;transition:all 0.0s}#hdtb-tls:hover{-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.1);box-shadow:0 1px 1px rgba(0,0,0,0.1);-webkit-transition:all 0.0s;transition:all 0.0s}.ksb:hover{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#222;}.ab_button:hover{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#222;}#hdtb-tls:hover{background-color:#f8f8f8;background-image:-webkit-gradient(linear,left top,left bottom,from(#f8f8f8),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f8f8f8,#f1f1f1);background-image:linear-gradient(top,#f8f8f8,#f1f1f1);border:1px solid #c6c6c6;color:#222;}.ksb:active{background-color:#f6f6f6;background-image:-webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f6f6f6,#f1f1f1);background-image:linear-gradient(top,#f6f6f6,#f1f1f1);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);}#hdtb-tls:active{background-color:#f6f6f6;background-image:-webkit-gradient(linear,left top,left bottom,from(#f6f6f6),to(#f1f1f1));background-image:-webkit-linear-gradient(top,#f6f6f6,#f1f1f1);background-image:linear-gradient(top,#f6f6f6,#f1f1f1);-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);}.ksb.ksbs,.ksb.ksbs:hover{background-color:#eee;background-image:-webkit-gradient(linear,left top,left bottom,from(#eee),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#eee,#e0e0e0);background-image:linear-gradient(top,#eee,#e0e0e0);border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:#222;margin:0}.ksb.sbm{height:20px;line-height:18px;min-width:35px}.ksb.sbf{height:21px;line-height:21px;min-width:35px}.ksb.mini{-webkit-box-sizing:content-box;box-sizing:content-box;height:17px;line-height:17px;min-width:0}.ksb.left{-webkit-border-radius:2px 0 0 2px}.ksb.mid{-webkit-border-radius:0;margin-left:-1px}.ksb.right{-webkit-border-radius:0 2px 2px 0;margin-left:-1px}.ktf{-webkit-border-radius:1px;-webkit-box-sizing:content-box;background-color:#fff;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;box-sizing:content-box;color:#333;display:inline-block;height:29px;line-height:27px;padding-left:8px;vertical-align:top}.ktf:hover{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.ktf:focus{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);border:1px solid #4d90fe;box-shadow:inset 0 1px 2px rgba(0,0,0,0.3);outline:none}.ktf.mini{font-size:11px;height:17px;line-height:17px;padding:0 2px}#sbfrm_l{visibility:inherit !important}#rcnt{margin-top:3px;}#appbar,#rhscol{min-width:1100px}#top_nav{min-width:1100px}#appbar{background:white;-webkit-box-sizing:border-box;width:100%}.ab_wrp{height:57px;border-bottom:1px solid #ebebeb}#main{width:100%}#ab_name,#ab_shopping{color:#dd4b39;font:20px "Arial";margin-left:15px;position:absolute;top:17px}#ab_name a{color:#999}#ab_shopping a{color:#dd4b39}#ab_ctls{float:right;position:relative;right:29px;z-index:3;line-height:1;padding-top:28px}#sslock{background:url(images/srpr/safesearchlock_transparent.png) right top no-repeat;height:40px;position:absolute;right:0;top:0;width:260px;-webkit-user-select:none}.ab_ctl{display:inline-block;position:relative;margin-left:16px;}.ab_ctl.action-menu{margin-top:1px;vertical-align:middle}#hdtbSum .ab_ctl{vertical-align:baseline}a.ab_button,a.ab_button:visited{display:inline-block;color:#444;margin-top:1px}a.ab_button:hover{color:#222}#appbar a.ab_button:active,a.ab_button.selected,a.ab_button.selected:hover{color:#333}.ab_button:focus{outline:none}.ab_button.selected:focus{border-color:#ccc}.ab_icon{background:url(/images/nav_logo242.png) no-repeat;display:inline-block;opacity:0.667;vertical-align:middle}.ab_button:hover>span.ab_icon{opacity:0.9}#ab_opt_icon{background-position:-42px -259px;margin-top:-2px;border-radius:50%;display:inline-block;padding:4px;vertical-align:middle}#ab_opt_icon:hover{color:#777}.selected #ab_opt_icon,#ab_opt_icon:active{background:rgba(0,0,0,0.1)}.ab_dropdown{background:#fff;border:1px solid #dcdcdc;border:1px solid rgba(0,0,0,0.2);font-size:13px;padding:6px 0;position:absolute;right:0;top:32px;white-space:nowrap;z-index:3;-webkit-transition:opacity 0.218s;transition:opacity 0.218s;-webkit-box-shadow:0 2px 4px rgba(0,0,0,0.2);box-shadow:0 2px 4px rgba(0,0,0,0.2)}.ab_dropdown:focus,.ab_dropdownitem:focus,.ab_dropdownitem a:focus{outline:none}.ab_dropdownitem{margin:0;padding:0;-webkit-user-select:none}.ab_dropdownitem.selected{background-color:#eee}.ab_dropdownitem.checked{background-image:url(//ssl.gstatic.com/ui/v1/menu/checkmark.png);background-position:left center;background-repeat:no-repeat}.ab_dropdownitem.disabled{cursor:default;border:1px solid #f3f3f3;border:1px solid rgba(0,0,0,0.05);pointer-events:none}a.ab_dropdownitem.disabled{color:#b8b8b8}.ab_dropdownitem.active{-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.ab_arrow{background:url(//ssl.gstatic.com/ui/v1/zippy/arrow_down.png);background-position:right center;background-repeat:no-repeat;display:inline-block;height:4px;margin-left:3px;margin-top:-3px;vertical-align:middle;width:7px}.ab_dropdownlnk,.ab_dropdownlnkinfo{display:block;padding:8px 20px 8px 16px}a.ab_dropdownlnk,a.ab_dropdownlnk:visited,a.ab_dropdownlnk:hover,#appbar a.ab_dropdownlnk:active{color:#333}a.ab_dropdownlnkinfo,a.ab_dropdownlnkinfo:visited,a.ab_dropdownlnkinfo:hover,#appbar a.ab_dropdownlnkinfo:active{color:#15c}.ab_dropdownchecklist{padding-left:30px}.ab_dropdownrule{border-top:1px solid #ebebeb;margin-bottom:10px;margin-top:9px}#top_nav{-webkit-user-select:none}.ksb.mini{margin-top:0px;}.ab_tnav_wrp{height:33px}#hdtb-msb>.hdtb-mitem:first-child,.ab_tnav_wrp,#cnt #center_col,.mw #center_col{margin-left:150px}.mw #rhs{margin-left:820px}.mw #nyc{margin-left:651px}.klnav.klleft{margin-left:14px !important}.tbt{margin-left:8px;margin-bottom:28px}#tbpi.pt.pi{margin-top:-20px}#tbpi.pi{margin-top:0}.tbo #tbpi.pt,.tbo #tbpi{margin-top:-20px}#tbpi.pt{margin-top:8px}#tbpi{margin-top:0}#tbrt{margin-top:-20px}.lnsep{border-bottom:1px solid #ebebeb;margin-bottom:14px;margin-left:10px;margin-right:4px;margin-top:14px}.tbos,.tbots,.tbotu{color:#dd4b39}.tbou>a.q,#tbpi,#tbtro,.tbt label,#set_location_section a{color:#222}.th{border:1px solid #ebebeb}#resultStats{line-height:33px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#resultStats{padding-left:16px;padding-top:0;padding-bottom:0;padding-right:8px}#subform_ctrl{margin-left:149px}.big #subform_ctrl{padding-right:2px;margin-left:229px}.mdm .mitem .kl{padding-left:28px}.big .mitem .kl{padding-left:44px}.mdm .msel .kls{padding-left:23px}.big .msel .kls{padding-left:39px}.obsmo .dp0,.dp1{display:none}.obsmo .dp1{display:inline}#obsmtc a,.rscontainer a{text-decoration:none}#obsmtc a:hover .ul,.rscontainer a:hover .ul{text-decoration:underline}.authorship_attr{white-space:nowrap}.currency input[type=text]{background-color:white;border:1px solid #d9d9d9;border-top:1px solid #c0c0c0;box-sizing:border-box;color:#333;display:inline-block;height:29px;line-height:27px;padding-left:8px;vertical-align:top;-webkit-border-radius:1px;-webkit-box-sizing:border-box}.currency input[type=text]:hover{border:1px solid #b9b9b9;border-top:1px solid #a0a0a0;box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1);-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.1)}.currency input[type=text]:focus{border:1px solid #4d90fe;box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3);outline:none;-webkit-box-shadow:inset 0px 1px 2px rgba(0,0,0,0.3)}body.vasq #hdtbSum{height:58px}body.vasq #hdtb-msb .hdtb-mitem.hdtb-msel,body.vasq #hdtb-msb .hdtb-mitem.hdtb-msel-pre{height:15px;line-height:15px;padding:28px 16px 12px}#hdtb-msb .hdtb-mitem.hdtb-imb{height:15px;line-height:15px;padding-top:28px}body.vasq .ab_tnav_wrp{height:43px}body.vasq #topabar.vasqHeight{margin-top:-44px !important}body.vasq #resultStats{line-height:43px}body.vasq .hdtb-mn-o,body.vasq .hdtb-mn-c{top:38px}.ellip{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}._Clt{color:#006621;white-space:nowrap}hr{border:0;border-bottom:1px solid #ebebeb;margin:0;}._ran{margin-left:16px}._H1m{padding-top:1px;margin-bottom:-1px}._ees{font-size:16px;line-height:20px;padding-top:1px;margin-bottom:-1px}._g3m{color:rgba(0,0,0,.54)}._J5m{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}._Z1m{background-color:#fff;border-radius:2px;margin-bottom:26px;font-size:13px;line-height:20px;word-wrap:break-word;box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);margin-left:-16px;margin-right:-16px;font-family:'Roboto',arial,sans-serif}._Z1m>*:first-child{border-top-left-radius:2px;border-top-right-radius:2px}._Z1m>*:last-child{border-bottom-left-radius:2px;border-bottom-right-radius:2px}._lYn,._bCp{padding-top:16px;padding-bottom:16px}._kYn,._bCp{padding-left:16px;padding-right:16px;}
</style>
<style>
.lst{padding-top:6px}
</style>
<script>
(function(){var b={gen204:"dcl",clearcut:4};var c=[function(){google.c&&google.tick("load",b)}];google.dcl=!1;google.dclc=function(a){google.dcl?a():c.push(a)};function d(){if(!google.dcl){google.dcl=!0;for(var a;a=c.shift();)a()}}window.addEventListener?(document.addEventListener("DOMContentLoaded",d,!1),window.addEventListener("load",d,!1)):window.attachEvent&&window.attachEvent("onload",d);}).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.VWq8E3d1ql8.O","com.sg","en","1",1,[3,2,".40.","","1300102,3700311,3700476","1505096895","0"],"40400","IrW7Wa-8PI_t0AT3jLKgCg",0,0,"og.og2.-ai85w0t1k6lz.L.W.O","AA2YrTuBn0VeGtQlrG5FyCdoWDQyOKkx0A","AA2YrTsaEgRgnB56skWBgr7CmyPxaLJWtg","",2,0,200,"SGP"],null,0,["m;/_/scs/abc-static/_/js/k=gapi.gapi.en.ZPSwvoEq44A.O/m=__features__/am=AAg/rt=j/d=1/rs=AHpOoo8-JL5R4cxPdwFdZ0Yu3_ek27rKCQ","https://apis.google.com","","","","",null,1,"es_plusone_gc_20170907.3_p0","en"],["1","gci_91f30755d6a6b787dcc2a4062e6e9824.js","googleapis.client:plusone:gapi.iframes","","en"],null,null,null,[0.009999999776482582,"com.sg","1",[null,"","w",null,1,5184000,1,0,"",0,1,"",0,0],null,[["","","0",0,0,-1]],null,0,null,null,["5061451","google\\.(com|ru|ca|by|kz|com\\.mx|com\\.tr)$",1]],null,[0,0,0,null,"","","",""],[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.",0,[1,"https://www.google.com.sg/webhp?tab=ww","Search","","0 -69px",null,0],null,null,null,0],[1],[0,1,["lg"],1,["lat"]],[["","","","","","","","","","","","","","","","","","","","def","","","","","","","",""],[""]],null,null,null,[30,127,1,0,60],null,null,null,null,null,[1,0],null,[1,0.001000000047497451,0,40400,1,"SGP","en","1505096895.0",1],null,[""]]];(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,ra;for(_.k,aa="function"==typeof Object.defineProperties?Object.defineProperty:function(a,c,d){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],ja=ha?ha:function(a,c){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");var 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};ja!=ha&&null!=ja&&aa(ba,fa,{configurable:!0,writable:!0,value:ja});
_.ka=_.ka||{};_.m=this;_.n=function(a){return void 0!==a};_.p=function(a){return"string"==typeof a};_.la=function(a){return"number"==typeof a};_.t=function(a,c){a=a.split(".");c=c||_.m;for(var d=0;d<a.length;d++)if(c=c[a[d]],null==c)return null;return c};_.ma=function(){};_.na=function(a){a.Gd=void 0;a.V=function(){return a.Gd?a.Gd:a.Gd=new a}};
_.oa=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};_.u=function(a){return"array"==_.oa(a)};_.pa="closure_uid_"+(1E9*Math.random()>>>0);qa=function(a,c,d){return a.call.apply(a.bind,arguments)};ra=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)}};
_.v=function(a,c,d){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?_.v=qa:_.v=ra;return _.v.apply(null,arguments)};_.w=Date.now||function(){return+new Date};_.y=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]={}};
_.z=function(a,c){function d(){}d.prototype=c.prototype;a.J=c.prototype;a.prototype=new d;a.prototype.constructor=a;a.Xi=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 sa=function(a,c,d){this.A=a;this.o=!1;this.b=c;this.w=d};sa.prototype.Pa=function(a){if(this.o)throw Error("a`"+this.b);try{a.apply(this.A,this.w),this.o=!0}catch(c){}};_.A=function(){this.fa=this.fa;this.Sa=this.Sa};_.A.prototype.fa=!1;_.A.prototype.ga=function(){this.fa||(this.fa=!0,this.O())};_.A.prototype.O=function(){if(this.Sa)for(;this.Sa.length;)this.Sa.shift()()};var ta=function(a){_.A.call(this);this.w=a;this.b=[];this.o={}};_.z(ta,_.A);ta.prototype.A=function(a){var c=(0,_.v)(function(){this.b.push(new sa(this.w,a,Array.prototype.slice.call(arguments)))},this);return this.o[a]=c};
ta.prototype.Pa=function(){for(var a=this.b.length,c=this.b,d=[],e=0;e<a;++e){var f=c[e].b;a:{var 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].Pa(g)}catch(r){}else d.push(c[e])}this.b=d.concat(c.slice(a))};
_.ua=function(a){if(Error.captureStackTrace)Error.captureStackTrace(this,_.ua);else{var c=Error().stack;c&&(this.stack=c)}a&&(this.message=String(a))};_.z(_.ua,Error);_.ua.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(_.p(a))return _.p(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};_.Aa=Array.prototype.forEach?function(a,c,d){Array.prototype.forEach.call(a,c,d)}:function(a,c,d){for(var e=a.length,f=_.p(a)?a.split(""):a,g=0;g<e;g++)g in f&&c.call(d,f[g],g,a)};
_.Ba=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=_.p(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=_.p(a)?a.split(""):a,h=0;h<e;h++)h in g&&(f[h]=c.call(d,g[h],h,a));return f};
_.Fa=Array.prototype.reduce?function(a,c,d,e){e&&(c=(0,_.v)(c,e));return Array.prototype.reduce.call(a,c,d)}:function(a,c,d,e){var f=d;(0,_.Aa)(a,function(d,h){f=c.call(e,f,d,h,a)});return f};_.Ga=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=_.p(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;_.Ha=function(){this.b={};this.o={}};_.na(_.Ha);_.Ja=function(a,c){a.V=function(){return _.Ia(_.Ha.V(),c)};a.ai=function(){return _.Ha.V().b[c]||null}};_.La=function(a,c){var d=_.Ha.V();if(a in d.b){if(d.b[a]!=c)throw new Ka(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]}};_.Ia=function(a,c){if(c in a.b)return a.b[c];throw new Ma(c);};Na=function(a){_.ua.call(this);this.ja=a};_.z(Na,_.ua);var Ka=function(a){Na.call(this,a)};_.z(Ka,Na); var Ma=function(a){Na.call(this,a)};_.z(Ma,Na);
var Pa;_.Oa="bbh bbr bbs has prm sngw so".split(" ");Pa=new ta(_.m);_.La("api",Pa);
for(var Qa="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),Ra=(0,_.v)(Pa.A,Pa),Sa=0;Sa<Qa.length;Sa++){var Ta="gbar."+Qa[Sa];null==_.t(Ta,window)&&_.y(Ta,Ra(Ta))}_.y("gbar.up.gpd",function(){return""});
a:{var Va=_.m.navigator;if(Va){var Wa=Va.userAgent;if(Wa){_.Ua=Wa;break a}}_.Ua=""}_.B=function(a){return-1!=_.Ua.indexOf(a)};var Xa=function(){return(_.B("Chrome")||_.B("CriOS"))&&!_.B("Edge")};_.Ya=function(){return _.B("iPhone")&&!_.B("iPod")&&!_.B("iPad")};_.Za=function(){return _.Ya()||_.B("iPad")||_.B("iPod")};_.$a=function(a){_.$a[" "](a);return a};_.$a[" "]=_.ma;var bb=function(a,c){var d=ab;return Object.prototype.hasOwnProperty.call(d,a)?d[a]:d[a]=c(a)};var gb,qb,rb,ab,yb;_.cb=_.B("Opera");_.C=_.B("Trident")||_.B("MSIE");_.db=_.B("Edge");_.eb=_.db||_.C;_.fb=_.B("Gecko")&&!(-1!=_.Ua.toLowerCase().indexOf("webkit")&&!_.B("Edge"))&&!(_.B("Trident")||_.B("MSIE"))&&!_.B("Edge");_.D=-1!=_.Ua.toLowerCase().indexOf("webkit")&&!_.B("Edge");gb=_.m.navigator||null;_.hb=gb&&gb.platform||"";_.ib=_.B("Macintosh");_.jb=_.B("Windows");_.kb=_.B("Linux")||_.B("CrOS");_.lb=_.B("Android");_.mb=_.Ya();_.nb=_.B("iPad");_.ob=_.B("iPod");_.pb=_.Za();
qb=function(){var a=_.m.document;return a?a.documentMode:void 0};a:{var sb="",tb=function(){var a=_.Ua;if(_.fb)return/rv\:([^\);]+)(\)|;)/.exec(a);if(_.db)return/Edge\/([\d\.]+)/.exec(a);if(_.C)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(_.D)return/WebKit\/(\S+)/.exec(a);if(_.cb)return/(?:Version)[ \/]?(\S+)/.exec(a)}();tb&&(sb=tb?tb[1]:"");if(_.C){var ub=qb();if(null!=ub&&ub>(0,window.parseFloat)(sb)){rb=String(ub);break a}}rb=sb}_.vb=rb;ab={}; _.E=function(a){return bb(a,function(){return 0<=_.ya(_.vb,a)})};_.xb=function(a){return Number(wb)>=a};var zb=_.m.document;yb=zb&&_.C?qb()||("CSS1Compat"==zb.compatMode?(0,window.parseInt)(_.vb,10):5):void 0;var wb=yb;
_.Ab=_.B("Firefox");_.Bb=_.Ya()||_.B("iPod");_.Cb=_.B("iPad");_.Db=_.B("Android")&&!(Xa()||_.B("Firefox")||_.B("Opera")||_.B("Silk"));_.Eb=Xa();_.Fb=_.B("Safari")&&!(Xa()||_.B("Coast")||_.B("Opera")||_.B("Edge")||_.B("Silk")||_.B("Android"))&&!_.Za();var Gb=null;var Hb,Kb,Ob;_.F=function(){};Hb="function"==typeof window.Uint8Array;_.G=function(a,c,d,e,f){a.b=null;c||(c=d?[d]:[]);a.fa=d?String(d):void 0;a.C=0===d?-1:0;a.w=c;a:{if(a.w.length&&(c=a.w.length-1,(d=a.w[c])&&"object"==typeof d&&!_.u(d)&&!(Hb&&d instanceof window.Uint8Array))){a.B=c-a.C;a.A=d;break a}-1<e?(a.B=e,a.A=null):a.B=Number.MAX_VALUE}a.G={};if(f)for(e=0;e<f.length;e++)c=f[e],c<a.B?(c+=a.C,a.w[c]=a.w[c]||_.Ib):(_.Jb(a),a.A[c]=a.A[c]||_.Ib)};_.Ib=[];
_.Jb=function(a){var c=a.B+a.C;a.w[c]||(a.A=a.w[c]={})};_.H=function(a,c){if(c<a.B){c+=a.C;var d=a.w[c];return d===_.Ib?a.w[c]=[]:d}if(a.A)return d=a.A[c],d===_.Ib?a.A[c]=[]:d};_.I=function(a,c,d){a=_.H(a,c);return null==a?d:a};_.J=function(a,c,d){a.b||(a.b={});if(!a.b[d]){var e=_.H(a,d);e&&(a.b[d]=new c(e))}return a.b[d]};Kb=function(a){if(a.b)for(var c in a.b){var d=a.b[c];if(_.u(d))for(var e=0;e<d.length;e++)d[e]&&d[e].Ya();else d&&d.Ya()}};_.F.prototype.Ya=function(){Kb(this);return this.w};
_.F.prototype.o=Hb?function(){var a=window.Uint8Array.prototype.toJSON;window.Uint8Array.prototype.toJSON=function(){if(!Gb){Gb={};for(var a=0;65>a;a++)Gb[a]="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=".charAt(a)}a=Gb;for(var 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,x=g>>2;g=(g&3)<<4|l>>4;l=(l&15)<<2|r>>6;r&=63;q||(r=64,h||(l=64));c.push(a[x],a[g],a[l],a[r])}return c.join("")};try{var c=JSON.stringify(this.Ya(),
Lb)}finally{window.Uint8Array.prototype.toJSON=a}return c}:function(){return JSON.stringify(this.Ya(),Lb)};var Lb=function(a,c){if(_.la(c)){if((0,window.isNaN)(c))return"NaN";if(window.Infinity===c)return"Infinity";if(-window.Infinity===c)return"-Infinity"}return c};_.F.prototype.toString=function(){Kb(this);return this.w.toString()};_.F.prototype.clone=function(){return _.Nb(this)};_.Nb=function(a){return new a.constructor(Ob(a.Ya()))};
Ob=function(a){var c;if(_.u(a)){for(var d=Array(a.length),e=0;e<a.length;e++)null!=(c=a[e])&&(d[e]="object"==typeof c?Ob(c):c);return d}if(Hb&&a instanceof window.Uint8Array)return new window.Uint8Array(a);d={};for(e in a)null!=(c=a[e])&&(d[e]="object"==typeof c?Ob(c):c);return d};
_.Pb=function(a){_.G(this,a,0,-1,null)};_.z(_.Pb,_.F);_.K=function(a,c){return null!=a?!!a:!!c};_.L=function(a,c){void 0==c&&(c="");return null!=a?a:c};_.M=function(a,c){void 0==c&&(c=0);return null!=a?a:c};var Qb=function(a){_.G(this,a,0,-1,null)};_.z(Qb,_.F);_.Rb=function(a){_.G(this,a,0,-1,null)};_.z(_.Rb,_.F);var Sb=function(a){_.G(this,a,0,-1,null)};_.z(Sb,_.F);Sb.prototype.sd=function(){return _.J(this,_.Rb,14)};var Tb=new Sb(window.gbar&&window.gbar._CONFIG?window.gbar._CONFIG[0]:[[,,,,,,,[]],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]]),Ub;Ub=_.H(Tb,3);_.Vb=_.K(Ub);_.Wb=function(){};_.y("gbar_._DumpException",function(a){if(_.Vb)throw a;_.Wb(a)});var Xb=function(){_.A.call(this);this.rh=Tb};_.z(Xb,_.A);_.Ja(Xb,"cs");_.O=function(){return Xb.V().rh};_.Yb=function(){return _.J(_.O(),Qb,1)||new Qb};_.La("cs",new Xb);var Zb=new function(){this.b=_.J(_.Yb(),_.Pb,8)||new _.Pb};_.y("gbar.bv",{n:_.M(_.H(Zb.b,2)),r:_.L(_.H(Zb.b,4)),f:_.L(_.H(Zb.b,3)),e:_.L(_.H(Zb.b,5)),m:_.M(_.I(Zb.b,1,1),1)});_.y("gbar.kn",function(){return!0});_.y("gbar.sb",function(){return!1});_.$b=!_.C||_.xb(9);_.ac=!_.fb&&!_.C||_.C&&_.xb(9)||_.fb&&_.E("1.9.1");_.bc=_.C&&!_.E("9");_.cc=_.C||_.cb||_.D;_.ec=function(){this.b="";this.o=_.dc};_.ec.prototype.eb=!0;_.ec.prototype.Ta=function(){return this.b};_.ec.prototype.toString=function(){return"Const{"+this.b+"}"};_.dc={};_.fc=function(a){var c=new _.ec;c.b=a;return c};_.fc("");_.hc=function(){this.b="";this.o=_.gc};_.hc.prototype.eb=!0;_.hc.prototype.Ta=function(){return this.b};_.hc.prototype.Ed=!0;_.hc.prototype.Ob=function(){return 1};_.gc={};_.ic=function(a){var c=new _.hc;c.b=a;return c};_.ic("about:blank");_.kc=function(){this.b="";this.o=_.jc};_.kc.prototype.eb=!0;_.jc={};_.kc.prototype.Ta=function(){return this.b};_.lc=function(a){var c=new _.kc;c.b=a;return c};_.mc=_.lc("");_.oc=function(){this.b="";this.w=_.nc;this.o=null};_.oc.prototype.Ed=!0;_.oc.prototype.Ob=function(){return this.o};_.oc.prototype.eb=!0;_.oc.prototype.Ta=function(){return this.b};_.nc={};_.pc=function(a,c){var d=new _.oc;d.b=a;d.o=c;return d};_.pc("<!DOCTYPE html>",0);_.qc=_.pc("",0);_.rc=_.pc("<br>",0);
}catch(e){_._DumpException(e)}
/* _Module_:in */
try{
_.y("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>
</head>
<body class="srp tbo vasq" id="gsr" marginheight="3" topmargin="3">
<div data-jiis="cc" id="doc-info">
</div>
<div data-jiis="cc" id="cst">
<style>
.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%}.s2er{}.s2fp{}.s2fp-h{}.s2ml{}.s2ra{}.s2tb{}.s2tb-h{}.spch{}.spchc{}.spch{background:#fff;height:100%;left:0;opacity:0;overflow:hidden;position:fixed;text-align:left;top:0;visibility:hidden;width:100%;z-index:10000;transition:visibility 0s linear 0.218s,opacity 0.218s,background-color 0.218s}.s2fp.spch{opacity:1;visibility:visible;transition-delay:0s}.s2tb-h.spch{background:rgba(255,255,255,0);opacity:0;visibility:hidden}.s2tb.spch{background:rgba(255,255,255,0);opacity:1;visibility:visible;transition-delay:0s}.close-button{color:#777;cursor:pointer;font-size:26px;right:0;height:11px;line-height:15px;margin:15px;opacity:.6;padding:0;position:absolute;top:0;width:15px}.close-button:hover{opacity:.8}.close-button:active{opacity:1}.google-logo{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALwAAABACAQAAAAKENVCAAAI/ElEQVR4Ae3ae3BU5RnH8e/ZTbIhhIRbRIJyCZcEk4ZyE4RBAiRBxRahEZBLQYUZAjIgoLUWB6wjKIK2MtAqOLVUKSqWQW0ZaOQq0IFAIZVrgFQhXAOShITEbHY7407mnPfc8u6ya2f0fN6/9rzvc87Z39nbed/l/8OhIKMDQ+hHKp1JJB6FKq5QQhH72MZ1IsDRhvkU4bds9WxlLNE4wqg9q6jBL9G+4knc/HB9qXmuG4goD89TjT+IVkimE/zt6sYh/EG3WmaiOMGHbgQ38YfY3ibKCV6GMabHWY0bo+Ps5jjnuYlCczrSk8Hcgd5U1rONoDnG48Ova2W8RGeMXAxiHfWakT4mOx81oRiG1/C5vYh47KSx5fZid4JvxxVd7MdIp3EK06kNNXYneIWtutgLaIasQUwkJE7wE3SxbycWR8SD93BOiL2YRBwRDN5FwOPchaqecZQTQQ4XAApz0FrFQSLPwQD8mlZNEt8L5841D62/cJVIi2cgPelEAlBOCYfYSxXymjKAXqSQAFRwloPspRp5dzOMHiTThEqK2c1OvGHIsg/30YUWKHzDKfZwEB+2xBn3gUSSwmA+MpluruYDySMPYD23TOrX0V/q+CPZYai+yHw8wKscbmhMD+IVfyevcMlkuvxXxGOphTD4Gi4iJ40C/DZtM12wk8Lfbes/oSN27mGPZW0RnVmvebxIMng3z1Bluddz5Mh9wm8icqZIzPHfZDxW8qhotL6cUVh5zP74XOBg0MEnsgW/bfMxzyIOYdgSIuV5/JJtPmZmSlb7mI6ZGTLVQQafSKHUvp7BxFxhSD6N8UsH4An5aT+J3mNB1T+K3hj8YQ/ezRbpvY3CYKEwYFLYgvfTkQZ9qTN8nS3lIdJJZwTLDdNztfwUrTTDp+hllmnqrxo+sLqi1dWwuFPKYnK5h0we5c/UhhT8fF1FHWsZTis8dGAyB4S+67RF5wVhwC/DGHxvAqI4Imyv50Vi0YpjsW4l4AAuGii63yE+lhCHVlOW6o79TxRN/ee64y/SHb8TO4MOvq3uYh6iO1oufiP0r0VnjtA9K4zBDzSdgKtjJGbyqBfG5dFguC62sZiZoLt0Qy3qvYzCKIZNQQYvXupdxGO0Rni5dLebl1wexuD7A4DuC+gprMwTxu2hwT+E7c9iZYEw7lMaiBPeczAXT3EQwcdwTbP1Eq3RiyaPvcIe/4igj9C5NYzBpwOQKmzbh4IVF4dMviOShHfCEdxYieKY8M5qCUCy8E4oxIWVnwcRfK4wdhqitiyk1JBHJc3UU4UT+HDRYADR1GEnB2s9WYrqssn41/BjxcdrrEOVzRogS4hqOfVY8fI6qzWXYTAbgRwUVMvwYeUzzpKCnMGobvIeDRTuZyajiMLoMG2oRONfwnV5kNDNFH5ZKAD8SbPtFrHYaSr8+nkLgCXC53sCdloJz+RlAFYJv5bisPOG9Cv+U+F+O6AZM4Sx2iz+QKZxWrgArSmEbiAIpwvQGdV/qMFOFUdRdTbUn6QCO9c4bajvJhy/GjuFyOqEqhhIZyUXWEk6esd4imTyKTIG/1e08kghNNEMR7WfgERUpTTmPKrmIdSXGupbiHu3dQFZCagy2MGXzCAekZcPySKDlVSYTwsf5QB9aeBiCWMJxcO0RPU5AW5UPuyJI9xhr/diz4ssF6ohGJXyFmu42Fj5MrTGMILgKTyHqpoCAipR3YE9cURFWOorUCVhrzWyKrFWwGg68hIXG79uGziG1rt0IFhPcC+qj6gioARVJm7sRPMTVCWG+u54sBNHqm19Ji7sZCDrv5gp53ekkcNGvHJvGB+zdVd+M60JRi/eREt9VIQqgfuxM5Q4VEcM9R5ysfMAUaA78iFUzRmIfb2sw+j9m6m042lOEqS1hv+R3Y2svpSJCxJCn9hjR5ztywSgg7BtGwpWFHYLY+8CIB2/5Jppj5BvoE7Qz/a8bCVSrIv+quQrYCLVQl0NXVEpnBF6f4aVX+guvELAPmH7GMk/ZX1BgKJb2szBnEJBEMFHUyY841SsjGcr7bGVabLC8z6dsJPC3ww1sxE9LfTeoAdmeumOPkNzYcUb776Y6aebOh5Hg6m6l1MaZhYGOUn2sjD6MAmYyeIWfiqYhoKNLJNlaC/ryCUGvRhyWUedYfx7KIiack4XfZ5ujMI4XewlxIpzMEL04w31k3STtEW4NWd6Uugr4yFEHt4Ielo4iRvC+P20R6QwTZPnFtpjI4dKi5veAlbwLPnM4NesZDs3Tcd9RgxGIw3jdjCeO1FQSGYiuw39D6A1CJ+u/wsm0pZA/STDEnY9A9DKMtRvZjStAIVOzOJMSAsh+YaMltGXGEChHVPYr+s/igsbPTmHP8T2IR7MvW46voZa0+2voLfAor7GdPtz6C0yHVfNt4S+9KewwXTJ8xtumWyv5T6w14pNIYTu40VcWHHzvvSe3sWFnsIq6foVKCb1qyOw2N2EnZJ7+5aRSFAYS2lQp3maLOy5WS61pyW4MKOwCJ/E5X8BBTMuXsW+tpITQQYPcXws8Zyuk420eOZyQSqqy8zDg4yH+cp2T2cYjp1sim3rTzEEO4/YPKNL9AvpD00K+ZTbnZXwc1KSh9FspNrmDbSZicQirwmzLMI7Qb7EnjxM57hp/TGmEUNjEljAZUNtHW/TGvhA+J6QCx4gicVcNT2r7TyIgoEiGf+99CeVLiTSDKimjK85QSH7qCJ4Cr0YRi9SaI6fG5zlIAUcwS9d34Nsen9Xz3f1hRRQJF0fzVCyyaQdcZRzil18zCUAPtHc3s3mTYIRzWCGkEEH4vFSxmn2s5kSJDgOGP/l4Ii8aOHetzeOsIhiNAX0wVq28O3lwXHbklnIeQJ/PHJhQbh72YXjts3Eq4n0t5h7BL+mzcVx29Kpxy9E70IvV5h7qiEJRxiswC+0feTgJkAhg3d098S/J8IUfhziOUAaouscoYJmpNIO0WXSuYYjLLpxFb9U85KNI4wyKJWKfQKOMEtmm33sXCCbCHC4mMxZIWpx/aglEeNwM4J3KNb8jvmaDTxBIt8jhR8vD22IpYYr1PBD5HA4HP8DxVcxdwELEFUAAAAASUVORK5CYII=) no-repeat center;background-size:94px 32px;height:32px;width:94px;top:8px;opacity:0;float:right;left:255px;pointer-events:none;position:relative;transition:opacity .5s ease-in,left .5s ease-in}.s2tb .google-logo{opacity:0.54;left:270px;transition:opacity .5s ease-out,left .5s ease-out}.spchc{display:block;height:42px;position:absolute;pointer-events:none}.s2fp .spchc,.s2fp-h .spchc{margin:auto;margin-top:312px;max-width:572px;min-width:534px;padding:0 223px;position:relative;top:0}.s2tb .spchc,.s2tb-h .spchc{background:#fff;box-shadow:0 2px 6px rgba(0,0,0,0.2);margin:0;min-width:100%;overflow:hidden;padding:51px 0 50px 126px;position:absolute}._o3{height:100%;opacity:.1;pointer-events:none;width:100%;transition:opacity .318s ease-in}.s2tb-h ._o3,.s2tb ._o3{height:100%;width:572px;transition:opacity .318s ease-in}.s2ml ._o3,.s2ra ._o3,.s2er ._o3{opacity:1;transition:opacity 0s}.button{background-color:#fff;border:1px solid #eee;border-radius:100%;bottom:0;box-shadow:0 2px 5px rgba(0,0,0,.1);cursor:pointer;display:inline-block;left:0;opacity:0;pointer-events:none;position:absolute;right:0;top:0;transition:background-color 0.218s,border 0.218s,box-shadow 0.218s}.s2tb-h .button{left:-83px;opacity:0;pointer-events:none;position:absolute;top:-83px;transition-delay:0}.s2fp-h .button{opacity:0;pointer-events:none;position:absolute;transition-delay:0}.s2fp .button,.s2tb .button{opacity:1;pointer-events:auto;position:absolute;transform:scale(1);transition-delay:0}.s2ra .button{background-color:#ff4444;border:0;box-shadow:none}._CMb{background-color:#dbdbdb;border-radius:100%;display:inline-block;height:301px;left:-69px;opacity:1;pointer-events:none;position:absolute;top:-69px;width:301px;transform:scale(.01);transition:opacity 0.218s}.s2tb-h ._CMb,.s2tb ._CMb{height:151px;left:-28px;top:-28px;width:151px}._AM{float:right;pointer-events:none;position:relative;transition:transform 0.218s,opacity 0.218s ease-in}.s2fp-h ._AM,.s2fp ._AM{height:165px;right:-70px;top:-70px;width:165px}.s2fp-h ._AM,.s2tb-h ._AM{transform:scale(.1)}.s2fp ._AM,.s2tb ._AM{transform:scale(1)}.s2tb-h ._AM,.s2tb ._AM{height:95px;right:-31px;top:-27px;width:95px}.s2ra .button:active{background-color:#cd0000}.button:active{background-color:#eee}._wPb{height:87px;left:43px;pointer-events:none;position:absolute;top:47px;width:42px;transform:scale(1)}.s2tb-h ._wPb,.s2tb ._wPb{left:17px;top:7px;transform:scale(.53)}._AUb{background-color:#999;border-radius:30px;height:46px;left:25px;pointer-events:none;position:absolute;width:24px}._Fjd{bottom:0;height:53px;left:11px;overflow:hidden;pointer-events:none;position:absolute;width:52px}._oXb{background-color:#999;bottom:14px;height:14px;left:22px;pointer-events:none;position:absolute;width:9px;z-index:1}._dWb{border:7px solid #999;border-radius:28px;bottom:27px;height:57px;pointer-events:none;position:absolute;width:38px;z-index:0}.s2ml ._AUb,.s2ml ._oXb{background-color:#f44}.s2ml ._dWb{border-color:#f44}.s2ra ._AUb,.s2ra ._oXb{background-color:#fff}.s2ra ._dWb{border-color:#fff}.spcht{}.spchta{}.spch-2l{}.spch-3l{}.spch-4l{}.spch-5l{}._gjb{pointer-events:none}.s2fp-h ._gjb,.s2fp ._gjb{position:absolute}.s2tb-h ._gjb,.s2tb ._gjb{position:relative}.spcht{font-weight:normal;line-height:1.2;opacity:0;pointer-events:none;position:absolute;text-align:left;-webkit-font-smoothing:antialiased;transition:opacity .1s ease-in,margin-left .5s ease-in,top 0s linear 0.218s}.s2fp-h .spcht{margin-left:44px}.s2tb-h .spcht{margin-left:32px}.s2fp-h .spcht,.s2fp .spcht{font-size:32px;left:-44px;top:-.2em;width:460px}.s2tb-h .spcht,.s2tb .spcht{font-size:27px;left:7px;top:.2em;width:490px}.s2fp .spcht,.s2tb .spcht{margin-left:0;opacity:1;transition:opacity .5s ease-out,margin-left .5s ease-out}.spchta{color:#1155cc;cursor:pointer;font-size:18px;font-weight:500;pointer-events:auto;text-decoration:underline}.spch-2l.spcht,.spch-3l.spcht,.spch-4l.spcht{transition:top 0.218s ease-out}.spch-2l.spcht{top:-.6em}.spch-3l.spcht{top:-1.3em}.spch-4l.spcht{top:-1.7em}.s2fp .spch-5l.spcht{top:-2.5em}.s2tb .spch-5l.spcht{font-size:24px;top:-1.7em;transition:font-size 0.218s ease-out}.s2wfp{}._ypc{margin-top:-100px;opacity:0;pointer-events:none;position:absolute;width:500px;transition:opacity 0.218s ease-in,margin-top .4s ease-in}.s2wfp ._ypc{margin-top:-300px;opacity:1;transition:opacity .5s ease-out 0.218s,margin-top 0.218s ease-out 0.218s}._zpc{box-shadow:0 1px 0px #4285F4;height:80px;left:0;margin:0;opacity:0;pointer-events:none;position:fixed;right:0;top:-80px;transition:opacity 0.218s,box-shadow 0.218s}.s2wfp ._zpc{box-shadow:0 1px 80px #4285F4;opacity:1;pointer-events:none;animation:allow-alert .75s 0 infinite;-webkit-animation-direction:alternate;-webkit-animation-timing-function:ease-out;transition:opacity 0.218s,box-shadow 0.218s}@-webkit-keyframes allow-alert {from{opacity:1}to{opacity:.35}}._Rm{font-size:14px;}.kv,.slp{display:block;}.f,.f a:link{color:#808080}.a,cite,cite a:link,cite a:visited,.cite,.cite:link,#_bGc>i,.bc a:link{color:#006621;font-style:normal}a.fl:link,.fl a,.flt,a.flt,.gl a:link,a.mblink,.mblink b{color:#1a0dab}#resultStats{color:#808080}.osl{margin-top:0px}#ires .kv{height:18px;line-height:16px}#rcnt a:hover,#brs a:hover,#nycp a:hover,#nav a.pn:hover{text-decoration:underline}#rcnt .ab_dropdownitem a:hover,#rcnt [role=button]:hover,#rcnt .kno-fb-ctx>a:hover,#nycp a.ab_button:hover,#rcnt a.kpbb:hover{text-decoration:none}._wI,._wI a{font-size:18px;line-height:18px}#lb{z-index:1001;position:absolute;top:-1000px}.rc{position:relative;}.gl:visited{color:#666}.rc .s{line-height:18px}.srg .g:last-of-type{margin-bottom:28px}._OXf{border-bottom:1px solid #ebebeb;display:block;line-height:22px;margin:0px -16px 9px -16px;padding:0 16px 11px 16px}._OXf .f.kv{margin-top:0px;}._OXf._myh{border-bottom:none;margin-bottom:0;padding-bottom:0}._OXf._cDr{border-bottom:none;margin-bottom:0}._hyo{clear:both;padding-top:6px}._sBm{margin-left:-10px;margin-right:-10px}._cAm{margin-left:-10px;margin-right:-10px;padding:12px 0 5px}._Rit{padding-top:9px}._dAm{border-radius:4px;border:1px solid rgba(0,0,0,0.12);line-height:16px;margin-left:10px;padding:7px 8px;display:inline-block;font-size:14px;text-align:center;}._dAm:last-child{margin-right:24px}#hdtb{background:#fafafa;color:#666;font-size:13px;border-bottom:1px solid #ebebeb;margin-top:-21px;outline-width:0;outline:none;position:relative;z-index:102}#hdtb.hdtba{border-bottom:none}.hdtb-mitem a,#hdtb-more-mn a{padding:0 16px;color:#777;text-decoration:none;display:block}.hdtb-mitem a{margin:0 8px;padding:0 8px}.hdtbItm label:hover,.hdtbItm a:hover,#hdtb-more-mn a:hover,#hdtb .hdtb-mitem a:hover,.hdtb-mn-hd:hover,#hdtb-more:hover,#hdtb-tls:hover{color:#222}#hdtb.notl a,#hdtb.notl div,#hdtb.notl li{outline-width:0;outline:none}#hdtb .hdtb-mitem a:active,#hdtb-more:active,.hdtb-mn-hd:active{color:#4285f4}.hdtb-dd-mn a,.hdtb-dd-mn a:visited,.hdtb-dd-mn a:active{color:inherit;display:block;text-decoration:none}.hdtb-mitem a.hdtb-dd-b{padding-bottom:8px;padding-top:8px}#hdtb-more-mn a:hover,.hdtbItm.hdtbSel:hover,.hdtbItm a:hover,#cdrlnk:hover{background-color:#f1f1f1}.hdtbItm.hdtbSel,#hdtb .hdtbItm a,#hdtb-more-mn a,#cdrlnk{color:#777;text-decoration:none;padding:6px 44px 6px 30px;line-height:17px;display:block}.hdtb-mitem a{display:inline-block}#hdtb-more-mn a{display:block;padding:6px 16px;margin:0}#hdtb-more-mn{min-width:120px}#hdtbMenus{background-color:transparent;top:0;width:100%;height:22px;position:absolute;transition:top 220ms ease-in-out;-webkit-transition:top 220ms ease-in-out;}.hdtb-td-h{display:none}#hdtbMenus.hdtb-td-o{top:58px;padding-top:3px;padding-bottom:7px;top:0}body.vasq #hdtbMenus.hdtb-td-o{top:68px}#hdtb.hdtba #hdtbMenus{top:21px}body.vasq #hdtb.hdtba #hdtbMenus.hdtb-td-o{top:58px}#hdtb.hdtba #hdtbMenus{background-color:#fafafa;border-bottom:1px solid #ebebeb;padding:7px 0px}#botabar{-webkit-transition:margin-top 220ms ease-in-out;transition:margin-top 220ms ease-in-out}#hdtbMenus.hdtb-td-c{}#hdtbSum{background:#fafafa;height:58px;padding:0;position:relative;z-index:102}.hdtb-mn-o,.hdtb-mn-c{background:#fff;border:1px solid #d6d6d6;box-shadow:0 2px 4px rgba(0,0,0,.16);box-shadow:0 2px 4px rgba(0,0,0,.16);color:#333;position:absolute;z-index:103;line-height:17px;padding-top:5px;padding-bottom:5px;top:36px}.hdtb-mn-c{display:none}#hdtb-msb{float:left;position:relative;white-space:nowrap;align-items:baseline;display:flex;-ms-flex-pack:justify;justify-content:space-between;min-width:782px}#hdtb-msb-vis{display:inline}#hdtb-msb .hdtb-mitem{display:inline-block}#hdtb-more-mn .hdtb-mitem{display:block}#hdtb-msb .hdtb-mitem:first-child.hdtb-imb{margin-left:150px}#hdtb-msb .hdtb-mitem:first-child.hdtb-msel,#hdtb-msb .hdtb-mitem:first-child.hdtb-msel-pre{margin-left:150px}#hdtb-msb .hdtb-mitem.hdtb-msel,#hdtb-msb .hdtb-mitem.hdtb-msel-pre{border-bottom:3px solid #4285f4;color:#4285f4;font-weight:bold;}#hdtb.hdtba #hdtb-msb .hdtb-mitem.hdtb-msel,#hdtb.hdtba #hdtb-msb .hdtb-mitem.hdtb-msel-pre{border-bottom:none}#hdtb-msb .hdtb-mitem.hdtb-msel:hover{cursor:pointer}#hdtb-msb .hdtb-mitem.hdtb-msel:active{background:none}#hdtb .hdtb-mitem a{color:#777}#hdtb-msb #hdtb-more,#hdtb-msb #hdtb-tls{color:#777}#hdtb-tls{text-decoration:none}#hdtb-more{display:inline-block;padding:0 16px;position:relative;-webkit-tap-highlight-color:rgba(255,255,255,0)}#hdtb-more:hover{cursor:pointer}.hdtb-mitem .micon,#hdtbMenus .lnsep{display:none}.hdtb-mitem .mcolor{display:inline-block;width:40px;height:10px;margin-left:-13px;margin-right:-13px}#hdtb-msb .hdtb-mitem.hdtb-imb.mlinesep{width:0px;margin-left:8px;margin-right:8px;padding:0px;border-left:1px solid rgba(0,0,0,.12)}.mn-hd-txt{display:inline-block;padding-right:6px;white-space:nowrap}.mn-dwn-arw{border-color:#909090 transparent;border-style:solid;border-width:5px 4px 0 4px;width:0;height:0;margin-left:-2px;top:50%;margin-top:-2px;position:absolute}.hdtb-mn-hd:hover .mn-dwn-arw,#hdtb-more:hover .mn-dwn-arw{border-color:#222 transparent}.hdtb-mn-hd:active .mn-dwn-arw,#hdtb-more:active .mn-dwn-arw{border-color:#4285f4 transparent}.hdtb-tl{border:1px solid transparent;display:inline-block;text-align:center;border-radius:2px;line-height:19px;cursor:pointer;margin-left:-1px;padding:4px 15px}#hdtb-msb .hdtb-tl-sel,#hdtb-msb .hdtb-tl-sel:hover{background:-webkit-linear-gradient(top,#eee,#e0e0e0);-webkit-box-shadow:inset 0 1px 2px 0 rgba(0,0,0,0.1);border:1px solid #d7d7d7;box-shadow:inset 0 1px 2px 0 rgba(0,0,0,0.1);}#hdtb #hdtb-tls:active{color:#000}.mn-hd-txt>.simg_thmb{display:none}.tmlo #hdtbSum,.tmlo #hdtbMenus,.tmhi #hdtbSum,.tmhi #hdtbMenus{padding-left:0}.mn-hd-txt .mn-col{width:14px;height:14px;border:1px solid #ccc;display:inline-block;margin-top:7px}#isz_lt.hdtbSel{padding-right:0;padding-left:30px}.action-menu,.action-menu-button,.action-menu-item,.action-menu-panel,.action-menu-toggled-item,.selected{}._Fmb,._Fmb:hover,._Fmb.selected,._Fmb.selected:hover{background-color:white;background-image:none;border:0;border-radius:0;box-shadow:0 0 0 0;cursor:pointer;filter:none;height:12px;min-width:0;padding:0;transition:none;-webkit-user-select:none;width:13px}.action-menu .mn-dwn-arw{border-color:#006621 transparent;margin-top:-4px;margin-left:3px;left:0;}.action-menu:hover .mn-dwn-arw{border-color:#00591E transparent}.action-menu{display:inline;margin:0 3px;position:relative;-webkit-user-select:none}.action-menu-panel{left:0;padding:0;right:auto;top:12px;visibility:hidden}.action-menu-item,.action-menu-toggled-item{cursor:pointer;-webkit-user-select:none}.action-menu-item:hover{background-color:#eee}.action-menu-button,.action-menu-item a.fl,.action-menu-toggled-item div{color:#333;display:block;padding:7px 18px;text-decoration:none;outline:0}._tgd{display:block;line-height:20px;position:relative;white-space:nowrap}._XQd{padding-right:0;white-space:normal}._vgd{left:0;position:absolute;top:0}._wgd{display:inline-block}._xgd{color:#222;overflow:hidden;text-overflow:ellipsis}._cwc{color:#666;display:table;margin:5px 0}._pgd{display:table-cell;padding-left:15px;vertical-align:baseline}._qgd{display:table-cell}._sgd{display:table-row;vertical-align:top}._rgd{color:#999}._Tib,._Tib a.fl{color:#808080}._ygd{position:absolute}._lyb{background-color:#fff;float:left;overflow:hidden;margin-top:4px;position:relative}._p0n._lyb{float:right;margin:7px 0 5px 12px}._Mhk{margin-top:0px}._YQd{background-color:#000}._LZq{background:#F2F2F2}._dwc{border-top-left-radius:2px;bottom:0;font-size:11px;font-weight:bold;padding:1px 3px;position:absolute;right:0;text-align:right;text-decoration:none;background-color:rgba(0,0,0,.7);color:#fff}.bc{}._SWb a.fl{font-size:14px}._SWb._fof{overflow:hidden;text-overflow:ellipsis}.st sup{line-height:0.9}.rgsep{background-color:rgba(0,0,0,0.07);border-width:0;color:rgba(0,0,0,0.07);height:1px}.rgsep{margin:28px -8px 28px -8px}._c8g{border-width:0;height:1px;margin:0 -8px 5px -8px}._l4.rgsep,.ct-lgsep.rgsep{margin-top:34px}.vk_h{}.vk_c a{text-decoration:none}.vk_gn{color:#3d9400 !important}.vk_rd{color:#dd4b39 !important}.vk_dgy{color:#545454 !important}.vk_gy{color:#878787 !important}.vk_lgy{color:#bababa !important}.vk_blgy{border-color:#bababa}.vk_bk{color:#212121 !important}.vk_fl a{color:#878787}.vk_fl a:hover{color:#1a0dab}.vk_ans{font-weight:lighter !important;margin-bottom:5px}.vk_ans{font-size:xx-large !important}.vk_ans.vk_long{font-size:20px !important}.vk_h{font-weight:lighter !important}.vk_h{font-size:x-large !important}.vk_sh,.vk_hs,.vk_med{font-weight:lighter !important}.vk_sh{font-size:medium !important}.vk_txt{font-weight:lighter !important}.vk_txt{font-size:small !important}._yz{font-weight:lighter !important}.vk_cdns{font-size:13px !important}._ks{font-weight:bold !important}.vk_c,.vk_cxp,#rhs ._CC{box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08)}#rhs ._CC{border:none;margin-left:2px}.vk_c,.vk_cxp{background-color:#fff;position:relative}.vkc_np{margin-left:-16px;margin-right:-16px}.vk_pl,.ts .vk_pl{padding-left:16px}._Wi,.ts ._Wi{padding-right:16px}.vk_pt,.ts .vk_pt{padding-top:20px}._Kid{padding-bottom:20px}.vk_c,.vk_cxp{margin-left:-8px;margin-right:-35px}.vk_c,.vk_cxp{margin-left:-16px;margin-right:-16px}.vk_c,.vk_cxp,.vk_ic{padding:20px 16px 24px 16px}.vk_c .vk_c,.vk_c .vk_cxp{border-radius:0;box-shadow:none;background-color:transparent;border:0;box-shadow:none;margin:0;padding:0;position:static}.vk_cxp{padding-top:30px;padding-bottom:34px}.vk_c_cxp{margin-top:10px;margin-bottom:10px}.vk_gbb{border-bottom:1px solid #eee}.vk_gbr{border-right:1px solid #eee}.vk_gbt{border-top:1px solid #eee}.vk_cf{margin:0 -16px 0 -16px;padding:16px 16px 16px 16px}.vk_cf a,.vk_cf a:link,a.vk_cf,a.vk_cf:link{color:#878787}.vk_cf a:hover,a.vk_cf:hover{color:#1a0dab}.vk_slic{display:inline-block;margin-top:-3px;margin-right:16px;position:relative;height:24px;width:24px;vertical-align:middle}.vk_sli,.vk_slih{border:none;position:absolute;top:0;left:0;height:24px;width:24px}a:hover .vk_sli,.vk_slih{display:none}a:hover .vk_slih,.vk_sli{display:inline-block}.vk_spc{height:16px;width:100%}.vk_ra{transform:rotate(90deg)}.vk_arc{border-top:1px solid #ebebeb;cursor:pointer;height:0px;margin-bottom:-19px;overflow:hidden;padding:20px 0;text-align:center}.vk_ard{top:-11px}.vk_aru{bottom:-6px}.vk_ard,.vk_aru{background-color:#e5e5e5;margin-left:auto;margin-right:auto;position:relative}.vk_ard,.vk_aru{height:6px;width:64px}.vk_ard:after,.vk_ard:before,.vk_aru:after,.vk_aru:before{content:' ';height:0;left:0;position:absolute;width:0}.vk_ard:after,.vk_ard:before,.vk_aru:after,.vk_aru:before{border-left:32px solid rgba(229,229,229,0);border-right:32px solid rgba(229,229,229,0)}.vk_ard:before{border-top:16px solid #e5e5e5;top:6px}.vk_aru:before{border-bottom:16px solid #e5e5e5;bottom:6px}.vk_ard:after{top:0}.vk_ard:after{border-top:16px solid #fff}.vk_aru:after{bottom:0}.vk_aru:after{border-bottom:16px solid #fff}.vk_bk.vk_ard,.vk_bk.vk_aru{background-color:#212121}.vk_bk.vk_ard:before{border-top-color:#212121}.vk_bk.vk_aru:before{border-bottom-color:#212121}._vm{font-size:11px !important;padding:6px 8px}#center_col ._vm{margin:0 -35px 0 -8px;padding:6px 20px 0}#rhs ._vm{margin-left:2px;padding-bottom:5px;padding-top:5px}._vm,._vm a{color:#878787 !important;text-decoration:none}._vm a:hover{text-decoration:underline}._srb.vk_c{padding-top:24px;padding-bottom:20px}._srb .vk_ans{margin-bottom:0;word-wrap:break-word}._srb .vk_gy{margin-bottom:5px}._xk{background-color:#ebebeb;height:1px}.vk_tbl{border-collapse:collapse}.vk_tbl td{padding:0}.xpdclps,.xpdxpnd{overflow:hidden}.xpdclps,.xpdxpnd{-webkit-transition:max-height 0.3s}.xpdxpnd,.xpdopen .xpdclps,.xpdopen .xpdxpnd.xpdnoxpnd{max-height:0}.xpdopen .xpdxpnd{max-height:none}.xpdopen .xpdbox .xpdxpnd,.xpdopen .xpdbox.xpdopen .xpdclps{max-height:0}.xpdopen .xpdbox.xpdopen .xpdxpnd,.xpdopen .xpdbox .xpdclps{max-height:none}.xpdclose ._o0,.xpdopen ._BU{display:none}.kno-ecr-pt{}.kno-ecr-pt{color:rgba(0,0,0,.87);line-height:1.2;margin-bottom:-3px;overflow:hidden;font-family:arial,sans-serif-light,sans-serif;display:inline;font-size:30px;font-weight:normal;position:relative;transform-origin:left top;transform-origin:left top;word-wrap:break-word}._gn .kno-ecr-pt{color:#fff}.shop__a{text-decoration:none}.shop__a{color:#1a0dab}.shop__a:active{color:#1a0dab}.shop__clear{clear:both}.shop__secondary,.shop__secondary:link,.shop__secondary:visited{color:#666}a.shop__secondary,.shop__a.shop__secondary{text-decoration:none}.shop__a:hover{cursor:pointer;text-decoration:underline}a.shop__secondary:hover,.shop__a.shop__secondary:hover{text-decoration:underline}
</style>
</div>
<noscript>
<style>
.nojsv{visibility:visible}
</style>
</noscript>
<textarea id="csi" name="csi" style="display:none"></textarea>
<noscript>
<meta content="0;url=/search?q=xianxia+wuxia+novels&gbv=1&sei=IrW7WbXLOsXB0gTG4a7oDg" http-equiv="refresh"/>
<style>
table,div,span,p{display:none}
</style>
<div style="display:block">
Please click
<a href="/search?q=xianxia+wuxia+novels&gbv=1&sei=IrW7WbXLOsXB0gTG4a7oDg">
here
</a>
if you are not redirected within a few seconds.
</div>
</noscript>
<div class="jsrp" id="searchform">
<style>
#gb{font-size:13px}#gb{position:relative;top:8px}div#searchform{min-width:1100px;z-index:103}div.sfbg,div.sfbgg{min-width:1100px;height:64px}.sfbgx{background-color:#fafafa;border-bottom:1px solid #ebebeb;height:85px;position:absolute;width:100%;min-width:1100px}.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}
</style>
<div id="gb">
<div id="gbw">
<div style="top:0;left:0;right:0;width:100%">
<div class="gb_hb gb_tg gb_R gb_sg">
<div class="gb_ce gb_R gb_tg gb_kg">
</div>
<div class="gb_uc gb_tg gb_R">
<div class="gb_fa" id="gbsfw" style="background-color:#eee;min-width:376px">
</div>
<div class="gb_da gb_Zc gb_R" id="gbwa">
<div class="gb_Fc">
<a aria-expanded="false" class="gb_b gb_6b" href="https://www.google.com.sg/intl/en/options/" role="button" tabindex="0" title="Google apps">
</a>
<div class="gb_mb">
</div>
<div class="gb_lb">
</div>
</div>
</div>
<div class="gb_eg gb_R">
<div class="gb_Fc">
<a class="gb_Lf gb_Fa gb_yb" href="https://accounts.google.com/ServiceLogin?hl=en&passive=true&continue=https://www.google.com.sg/search%3Fq%3Dxianxia%2Bwuxia%2Bnovels" id="gb_70" target="_top">
Sign in
</a>
<div class="gb_mb">
</div>
<div class="gb_lb">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="sfbg nojsv" style="margin-top:-20px">
<div class="sfbgg">
</div>
</div>
<form action="/search" class="tsf" id="tsf" method="GET" name="f" onsubmit="return q.value!=''" role="search" style="overflow:visible">
<div data-jibp="" data-jiis="uc" id="tophf">
</div>
<div class="tsf-p">
<div class="nojsv logocont" id="logocont">
<h1>
<a data-hveid="3" href="https://www.google.com.sg/webhp?hl=en&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QPAgD" id="logo" title="Go to Google Home">
<img alt="Google" height="44" onload="typeof google==='object'&&google.aft&&google.aft(this)" src="/images/branding/googlelogo/2x/googlelogo_color_120x44dp.png" width="120"/>
</a>
</h1>
</div>
<div class="sfibbbc">
<div class="sbtc" id="sbtc">
<div class="sbibtd">
<div class="sfsbc">
<div class="nojsb">
</div>
</div>
<div class="sbibod" id="sfdiv">
<button aria-label="Google Search" class="sbico-c" id="_fZl" name="btnG" type="submit" value="Search">
<span class="sbico _wtf _Qtf">
<svg focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<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">
<input aria-label="Search" autocomplete="off" class="lst lst-tbb sbibps" id="lst-ib" maxlength="2048" name="q" title="Search" type="text" value="xianxia wuxia novels"/>
</div>
</div>
</div>
</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="//support.google.com/websearch/answer/186645?hl=en-SG">
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 class="jsb" style="padding-top:2px">
<center>
<input aria-label="Google Search" jsaction="sf.chk" name="btnK" type="submit" value="Google Search"/>
<input aria-label="I'm Feeling Lucky" jsaction="sf.lck" name="btnI" type="submit" value="I'm Feeling Lucky"/>
</center>
</div>
</div>
<div data-async-context="async_id:duf3-46;authority:0;card_id:;entry_point:0;feature_id:;header:0;open:0;suggestions:;suggestions_subtypes:;suggestions_types:;surface:0;type:46" id="sbfbl" style="display:none">
<style>
a.duf3{color:#777;float:right;font-style:italic;-webkit-tap-highlight-color:rgba(0,0,0,0);tap-highlight-color:rgba(0,0,0,0)}a._G8q{color:rgba(0,0,0,.54);float:none;font-style:normal}a._sWr{padding:0 5px;background:rgba(255,255,255,.9)}._v1h{color:#9e9e9e;cursor:pointer;padding-right:8px}._rWr{color:#9e9e9e;float:right;font-size:12px;padding-bottom:4px}
</style>
<div class="r-iaC9UZKrXg18" jsl="$t t-aTz9-_sUcEc;$x 0;" style="display:none">
</div>
<div class="y yp" data-async-context-required="type,open,feature_id,async_id,entry_point,authority,card_id,header,suggestions,surface,suggestions_types,suggestions_subtypes" data-async-type="duffy3" data-jiis="up" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q-0EIBA" id="duf3-46">
</div>
<a class="duf3 _sWr" data-async-trigger="duf3-46" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qtw8IBQ" href="#" id="sbfblt" jsaction="async.u">
Report inappropriate predictions
</a>
</div>
</form>
</div>
<div class="sfbgx">
</div>
<div id="gac_scont">
</div>
<div class="spch s2fp-h" id="spch" style="display:none">
<div class="spchc" id="spchc">
<div class="_o3">
<div class="_AM">
<span class="_CMb" id="spchl">
</span>
<span class="button" id="spchb">
<div class="_wPb">
<span class="_AUb">
</span>
<div class="_Fjd">
<span class="_oXb">
</span>
<span class="_dWb">
</span>
</div>
</div>
</span>
</div>
<div class="_gjb">
<span class="spcht" id="spchi" style="color:#777">
</span>
<span class="spcht" id="spchf" style="color:#000">
</span>
</div>
<div class="google-logo">
</div>
</div>
<div class="_ypc">
<div class="_zpc">
</div>
</div>
</div>
<div class="close-button" id="spchx">
×
</div>
</div>
<div data-jiis="cc" id="main">
<div data-jibp="h" data-jiis="uc" id="lb">
</div>
<div data-jibp="h" data-jiis="uc" id="ilrpc">
</div>
<div data-jibp="" data-jiis="uc" id="easter-egg">
</div>
<div id="cnt">
<script>
(function(){var j=1280;try{var c=document.getElementById('cnt');var s=document.getElementById('searchform');var n='';if(window.gbar&&gbar.elr){var m=gbar.elr().mo;n=(m=='md'?' mdm':(m=='lg'?' big':''));}else{var w=document.body&&document.body.offsetWidth;if(w&&w>=j){n=' big';}
}
c&&(c.className+=n);s&&(s.className+=n);}catch(e){}
})();
</script>
<div id="sfcnt">
<div id="sform">
</div>
</div>
<div data-jibp="h" data-jiis="uc" id="dc">
</div>
<div id="subform_ctrl">
</div>
<div data-jibp="h" data-jiis="uc" id="bst" style="display:none">
</div>
<div data-jibp="h" data-jiis="uc" id="top_nav">
<style>
.t6psHzYPBsD__highlighted{}.t6psHzYPBsD__separator{}._eMq{display:inline-block}._bMq{cursor:pointer}._dMq{background:white;box-shadow:0 2px 10px 0 rgba(0,0,0,0.2);outline:none;padding:5px 0;position:absolute}a._VJq,a._VJq:visited{color:inherit;cursor:pointer;display:block;line-height:23px;outline:0;padding:3px 16px;text-decoration:inherit;white-space:nowrap}._VJq.t6psHzYPBsD__highlighted{background:rgba(0,0,0,0.1)}.t6psHzYPBsD__separator{border-top:1px solid #ddd;cursor:default;height:0;margin:5px 0;overflow:hidden;padding:0}#ab_ctls a{text-decoration:none}#ab_ctls a.ab_button:active,#ab_ctls a.ab_dropdownlnk:active{color:#333}.hdtb-mn-cont{height:22px;white-space:nowrap}.hdtb-mn-hd{color:#777;display:inline-block;position:relative;padding-top:0;padding-bottom:0;padding-right:22px;padding-left:16px;line-height:22px;cursor:pointer}#hdtb-mn-gp{display:inline-block;width:150px}
</style>
<div class="r-iHHtAu7A2Slk" jsl="$t t-js5htJpaNsk;$x 0;">
<div class="hdtbna notl" id="hdtb" role="navigation" tabindex="0">
<div id="hdtbSum">
<div id="hdtb-s" style="white-space:nowrap">
<div>
<div id="hdtb-msb">
<div>
<div id="hdtb-msb-vis">
<div class="hdtb-mitem hdtb-msel hdtb-imb">
All
</div>
<div class="hdtb-mitem hdtb-imb">
<a class="q qs" href="/search?q=xianxia+wuxia+novels&source=lnms&tbm=isch&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUICigB">
Images
</a>
</div>
<div class="hdtb-mitem hdtb-imb">
<a class="q qs" href="/search?q=xianxia+wuxia+novels&source=lnms&tbm=vid&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUICygC">
Videos
</a>
</div>
<div class="hdtb-mitem hdtb-imb">
<a class="q qs" href="/search?q=xianxia+wuxia+novels&source=lnms&tbm=nws&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUIDCgD">
News
</a>
</div>
<div class="hdtb-mitem hdtb-imb">
<a class="q qs" href="https://maps.google.com.sg/maps?q=xianxia+wuxia+novels&um=1&ie=UTF-8&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUIDSgE">
Maps
</a>
</div>
</div>
<g-header-menu class="hdtb-mitem _eMq r-iO4UwgsMAF1Q" jsl="$t t-Nfexb0d83t0;$x 0;">
<a aria-haspopup="true" class="_bMq iO4UwgsMAF1Q-_UwgkgYBDrI hdtb-dd-b" data-rtid="iO4UwgsMAF1Q" jsaction="r.mSRaIWm1OeU" jsl="$x 1;" role="button" tabindex="0">
More
</a>
<div class="_dMq iO4UwgsMAF1Q-4ixgWLBslXg" data-rtid="iO4UwgsMAF1Q" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q2h8IDigF" jsaction="keydown:r.1rILPBv56Z8;focus:r.GB-JqtwpQI4;blur:r.fmpHtAq2VGM" jsl="$x 2;" role="menu" style="display:none" tabindex="-1">
<a class="_VJq q qs" data-rtid="iO4UwgsMAF1Q" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUIDygA" href="/search?q=xianxia+wuxia+novels&source=lnms&tbm=shop" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
Shopping
</a>
<a class="_VJq q qs" data-rtid="iO4UwgsMAF1Q" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q_AUIECgB" href="/search?q=xianxia+wuxia+novels&source=lnms&tbm=bks" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
Books
</a>
</div>
</g-header-menu>
</div>
<div>
<g-header-menu class="hdtb-mitem _eMq r-i3WXREVeA_2A" id="ab_options" jsl="$t t-Nfexb0d83t0;$x 0;">
<a aria-haspopup="true" class="_bMq i3WXREVeA_2A-_UwgkgYBDrI hdtb-dd-b" data-rtid="i3WXREVeA_2A" href="/preferences" id="abar_button_opt" jsaction="r.mSRaIWm1OeU" jsl="$x 1;" role="button" tabindex="0">
Settings
</a>
<div class="_dMq i3WXREVeA_2A-4ixgWLBslXg" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qn_YBCBEoAA" jsaction="keydown:r.1rILPBv56Z8;focus:r.GB-JqtwpQI4;blur:r.fmpHtAq2VGM" jsl="$x 2;" role="menu" style="display:none" tabindex="-1">
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBI" href="/preferences?hl=en&prev=https://www.google.com.sg/search?q%3Dxianxia%2Bwuxia%2Bnovels" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
Search settings
</a>
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBM" href="/preferences?hl=en&prev=https://www.google.com.sg/search?q%3Dxianxia%2Bwuxia%2Bnovels#languages" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
<span>
Languages
</span>
</a>
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBQ" href="/setprefs?safeui=on&sig=0_XHd44js2Mz5KxCXO1QrHickkKvo%3D&prev=https://www.google.com.sg/search?q%3Dxianxia%2Bwuxia%2Bnovels" id="safesearch" jsaction="mouseover:r.1-l5Y2Ws2-4;m.cbbl" jsl="$x 3;" role="menuitem" tabindex="-1">
<div>
Turn on SafeSearch
</div>
</a>
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBU" href="/advanced_search?q=xianxia+wuxia+novels&hl=en" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
Advanced search
</a>
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBY" href="/history/optout?hl=en" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
History
</a>
<a class="_VJq" data-rtid="i3WXREVeA_2A" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qo_oBCBc" href="//support.google.com/websearch/?source=g&hl=en-SG" jsaction="mouseover:r.1-l5Y2Ws2-4" jsl="$x 3;" role="menuitem" tabindex="-1">
Search help
</a>
</div>
</g-header-menu>
<a class="hdtb-tl" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q2x8IGCgB" id="hdtb-tls" role="button" tabindex="0">
Tools
</a>
</div>
</div>
</div>
<ol id="ab_ctls">
</ol>
</div>
</div>
<div aria-expanded="false" class="hdtb-td-c hdtb-td-h" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q3B8IGQ" id="hdtbMenus" tabindex="0">
</div>
</div>
</div>
</div>
<div data-jibp="h" data-jiis="uc" id="before-appbar">
</div>
<div class="appbar" data-jibp="h" data-jiis="uc" id="appbar">
<style>
#resultStats{position:absolute;top:0;-webkit-transition:all 220ms ease-in-out;}.hdtb-ab-o #resultStats{opacity:0;top:13px}
</style>
<div id="extabar">
<div id="topabar" style="position:relative">
<div class="ab_tnav_wrp" id="slim_appbar">
<div id="sbfrm_l">
<div id="resultStats">
About 112,000 results
<nobr>
(0.51 seconds)
</nobr>
</div>
</div>
</div>
</div>
<div id="botabar" style="display:none">
</div>
</div>
<div>
</div>
</div>
<div class="mw" data-jibp="h" data-jiis="uc" id="ucs">
</div>
<div data-jibp="h" data-jiis="uc" id="ataw">
<div id="atvcap">
</div>
</div>
<div class="mw">
<div id="rcnt" style="clear:both;position:relative;zoom:1">
<div data-jibp="h" data-jiis="uc" id="bcenter">
<div class="col" style="width:0">
</div>
</div>
<div class="col" style="width:0">
<div id="center_col">
<div data-jibp="h" data-jiis="uc" id="taw">
<style>
.spell{font-size:18px}.spell_orig{font-size:15px}#mss p{margin:0;padding-top:5px}
</style>
<div>
</div>
<div style="padding:0 16px">
<div class="med">
<div class="_cy" id="msg_box" style="display:none">
<p class="card-section _fbd">
<span>
<span class="spell" id="srfm">
</span>
<a class="spell" id="srfl">
</a>
<br/>
</span>
<span id="sif">
<span class="spell_orig" id="sifm">
</span>
<a class="spell_orig" id="sifl">
</a>
<br/>
</span>
</p>
</div>
</div>
</div>
<div id="tvcap">
</div>
</div>
<div class="med" id="res" role="main">
<div data-jibp="h" data-jiis="uc" id="topstuff">
</div>
<div data-jibp="h" data-jiis="uc" id="search">
<style>
.g-blk{position:relative;}.kp-blk a{text-decoration:none}.kp-blk .mod:first-child{padding-top:16px;border-radius:2px}.kp-blk ._axe .mod:first-child{padding-top:0;border-top:0}.kp-blk .match-mod-horizontal-padding,.kp-blk .mod:not(._tN){padding-left:16px;padding-right:16px;}.qs-ic .kp-blk .mod:not(._tN){padding-left:26px;padding-right:26px}.kp-blk{box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);box-shadow:0 2px 2px 0 rgba(0,0,0,0.16),0 0 0 1px rgba(0,0,0,0.08);border-radius:2px;}#center_col .kp-blk{margin-left:-16px;margin-right:-16px;position:relative}#rhs .kp-blk{line-height:1.24;margin:6px -32px 0 2px}#rhs .kp-blk .mod:not(._tN){padding-left:15px;padding-right:15px}#rhs .g-blk.rhsvw{border:0;padding:0}.rfli .kp-blk{background:#fff;box-shadow:0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)}.kp-blk .g:not(.g-blk){margin:0}hr._Xfc{background-color:rgba(0,0,0,0.1);border:0;height:1px;margin:0}.kp-blk>.vk_arc,.kp-blk>div>.vk_arc{margin:0}.kp-blk._CCd .vk_arc{margin-top:0}.kp-blk .g{margin-bottom:0}._zCd{padding-bottom:7px}._tX{color:#1a0dab !important}._Jw{font-size:13px}._Jw.kp-blk{padding-bottom:1px}._Jw.kp-blk .mod,._kTi .mod{line-height:1.24}.g-blk.mnr-c .kp-blk .mnr-c{box-shadow:none}._thf .mod:first-child{padding-top:10px;padding-bottom:10px}._thf ._pk{color:#808080;font-size:20px}._Z7 .g,._Z7 .rc,._sZb .rc{clear:both;padding-bottom:0}._sZb .g{clear:both;padding-bottom:10px}._Fif .g{padding-bottom:11px}._Z7 .mod,._sZb .mod{clear:none}._Z7 .g,._sZb .g,._rod .g,._thf .g,._Fif .g{padding-left:16px;padding-right:16px}._Z7 .g:last-child,._rod .g:last-child,._thf .g:last-child{padding-bottom:16px}._Hi .mod:not(._tN){border-top:1px solid #e5e5e5;margin-top:16px;padding-left:0;padding-right:0;padding-top:15px}._Hi .mod:first-child{border-top:0;padding-top:0;}.mod{clear:both}html .kp-blk .xpdclose ._HWg,html .kp-blk .xpdopen ._IWg{padding-top:0}._pk{color:#222;font-size:18px;position:relative}._pk a{color:#222}.xpdopen ._qqi{overflow:inherit}.xpdclose ._T1i:not(:empty),.xpdopen ._U1i:not(:empty){border-top:solid 1px #EBEBEB;border-radius:0}._E3j{padding-top:0.1px}.xpdclose ._VCh,.xpdopen ._WCh{padding-bottom:16px}.xpdclose .kp-header ._VCh,.xpdopen .kp-header ._WCh{padding-bottom:0}._Rqb .xpdopen ._Wtj,._RJe .xpdclose ._Gtj{padding-bottom:16px}._Rqb .xpdclose .mod._dXg,._Rqb .xpdopen .mod._eXg{padding-bottom:0}._RJe .xpdclose .mod._Gtj{padding-bottom:16px}#rhs .kp-blk .xpdclose ._HWg,#rhs .kp-blk .xpdopen ._IWg{padding-top:0}#rhs ._Rqb .xpdopen ._Wtj,#rhs ._RJe .xpdclose ._Gtj{padding-bottom:15px}#rhs ._Rqb .xpdclose .mod._dXg,#rhs ._Rqb .xpdopen .mod._eXg{padding-bottom:0}._Ceo{box-shadow:none !important}._Tgc{font-size:16px}._rod ._y9e,._Z7 ._Tgc._nMo,._Z7 ._y9e._BBn{font-size:13px;line-height:18px}._D8e{color:#777;font-size:14px;margin-left:8px;white-space:nowrap}._oDd{overflow:hidden;padding-bottom:20px}div._AZr{float:right}._zZr{color:#9e9e9e;cursor:pointer;padding-right:8px}._BZr{color:#9e9e9e;float:right;font-size:12px}.kno-ftr{clear:both;color:#777;font-size:11px;line-height:normal;overflow:hidden}.kno-ftr a{color:#777;text-decoration:none}._OPd{float:right;margin-left:2em}._Cnk{font-style:italic;margin-right:-2em}.kno-ftr a:hover{text-decoration:underline}div._hWr{padding:4px 16px 0px 8px;margin-bottom:-4px}.kno-ftr{margin-left:-16px;margin-right:-16px;padding:4px 16px 0;}.kno-ftr.rhsvw{margin-left:2px;padding-top:4px}#rhs .kno-ftr.rhsvw{border:none}._F2g{outline:0}._F2g:hover{cursor:pointer;text-decoration:underline}a.duf3{color:#777;float:right;font-style:italic;-webkit-tap-highlight-color:rgba(0,0,0,0);tap-highlight-color:rgba(0,0,0,0)}a._G8q{color:rgba(0,0,0,.54);float:none;font-style:normal}a._sWr{padding:0 5px;background:rgba(255,255,255,.9)}._v1h{color:#9e9e9e;cursor:pointer;padding-right:8px}._rWr{color:#9e9e9e;float:right;font-size:12px;padding-bottom:4px}._qgo ._qhf{border:none}._lfn{display:none;height:0;transition-property:height}._lfn g-loading-icon{display:block;margin:0 auto;opacity:0;padding:10px 0;transform:scale(0);transition-property:transform,opacity}._fdf{padding-left:16px;padding-right:16px;margin-top:0}._Vyp{position:relative}#rhs ._fdf{padding-left:15px;padding-right:15px}._fdf._rdf{margin-bottom:4px;}._sdf{font-size:19px}._ndf{vertical-align:baseline}.rhstl3,.rhstl4,.rhstl5{}.rhstc3 .rhstl3{font-size:24px}.rhstc3 .rhstl4,.rhstc4 .rhstl4{font-size:24px}.rhstc3 .rhstl3 ._eph{font-size:16px}.rhstc3 .rhstl4 ._eph,.rhstc4 .rhstl4 ._eph{font-size:16px}.rhstl5{font-size:24px}.rhstl5 ._eph{font-size:16px}._eph{font-family:sans-serif;font-size:20px;position:relative}._fph{left:0;margin-left:-2px;position:absolute;top:50%;margin-left:-2px;height:20px;margin-top:-14px;width:20px;}._tdf{padding-left:16px;padding-right:16px;padding-top:15px}#rhs ._tdf{padding-left:15px;padding-right:15px}._tdf ._kk{margin-top:2px;padding:0 0 18px}._gdf{color:#777;font-family:arial,sans-serif;margin:4px 0;overflow:hidden;}._kdf{color:#000}._jdf{color:#dd4b39}._gn ._gdf{color:rgba(255,255,255,.7)}._gn ._kdf{color:rgba(255,255,255,.7)}._gn ._LAf{color:#fff}._gn ._jdf{color:rgba(255,255,255,.7);font-weight:bold}._odf{position:relative}.rhstc4 ._idf,.rhstc5 ._idf,.rhstc5 ._udf{position:absolute;right:-10px;top:0}._ykh{float:right;position:relative;right:-10px;top:0}._czk{float:right;position:relative;color:#000;opacity:0.54}._gn ._czk{color:#fff;opacity:1.0}._gn ._czk .kno-shr-ld{opacity:0.54}._axe ._elu{}._dzk{}._pUm{margin-left:65px}._Fis{float:right;line-height:1em}._Das{display:block;position:relative;left:-8px}._mdf{padding-top:4px;}._ldf{display:inline-block;margin-right:10px;margin-top:2px}._chp{padding-left:12px;padding-right:12px}._K2h{height:48px;top:0;bottom:0;right:3px}._L2h{height:40px;top:0;right:12px}._C7h{height:48px;top:0;right:1px}._qUm{height:60px;top:0;bottom:0;right:55px}._rUm{margin:auto;position:absolute}._xvp{opacity:.001;pointer-events:none;position:absolute}._sUm{bottom:0;height:100%}._tUm{bottom:0;height:55px;top:0;right:56px}.kno-fb-d3 .kno-ecr-pt.kno-fb-ctx{display:block;margin-top:4px;padding-right:12px}._qgo{background-color:white;transition-property:transform,opacity;border-top:1px solid #e5e5e5}._qhf{cursor:pointer;font-size:16px;border:0 solid #e5e5e5;border-top-width:1px;padding:5px 0;}.related-question-pair #knavm{left:3px}._rhf{font-size:18px}.nmcw{height:0;visibility:hidden;overflow:hidden;-webkit-transition:height 300ms ease-out,visibility 300ms step-end}.nmca{-webkit-transition:height 300ms ease-out,visibility 300ms step-start;visibility:inherit}._Zgf{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAJCAYAAAAGuM1UAAAARElEQVR4AZXLoQ3AMBAEwXFP7ielpcvHIQdPLwUs24HzMw8Gd5kuJq8Xs6DMJq9TUZ9PQEF1DmiozwELyryBoDp3sPcBE+gdTR3BcJAAAAAASUVORK5CYII=);background-size:100% 100%;float:right;height:9px;margin:5px;width:12px;opacity:0.38;transform:translateZ(0);-webkit-transition:opacity 300ms ease-out}.nmtbia ._Zgf{opacity:0.54;transform:rotateX(180deg)}._U7g{font-size:16px;padding-bottom:10px;padding-top:20px}.related-question-pair .kno-ftr{margin:0;padding-bottom:5px}
</style>
<div data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QGggi">
<!--a-->
<h2 class="hd">
Search Results
</h2>
<div data-async-context="query:xianxia%20wuxia%20novels" id="ires">
<div eid="IrW7WbXLOsXB0gTG4a7oDg" id="rso">
<div class="_NId">
<div class="g mnr-c g-blk" data-hveid="35" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QjDYIIygA">
<div class="kp-blk _Z7 _Rqb _RJe">
<div class="xpdopen">
<div class="_OKe">
<div>
<div>
</div>
</div>
<div>
<div class="mod" data-md="61" style="clear:none">
<!--m-->
<div class="_oDd" data-hveid="36">
<span class="_Tgc">
<b>
Xianxia novel
</b>
.
<b>
Xianxia
</b>
(Simplified Chinese: 仙侠小说; Traditional Chinese: 仙俠小說), is a type of Chinese Martial Arts
<b>
novel
</b>
genre developed from the
<b>
Wuxia
</b>
genre that is heavily influenced by Taoism and Buddhism. It was first introduced in the Republic of China and became popular worldwide in the 21st century.
</span>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div data-hveid="38" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFQgmKAAwAQ">
<div class="rc">
<h3 class="r">
<a href="https://en.wikipedia.org/wiki/Xianxia_novel" onmousedown="return rwt(this,'','','','2','AFQjCNEnpoTCYCkq_4WslnKyQH-ETy37jA','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFggnMAE','','',event)">
Xianxia novel - Wikipedia
</a>
</h3>
<div class="s">
<div>
<div class="f kv _SWb" style="white-space:nowrap">
<cite class="_Rm">
https://en.wikipedia.org/wiki/Xianxia_novel
</cite>
</div>
</div>
</div>
</div>
</div>
<!--n-->
</div>
</div>
</div>
<div style="clear:both">
</div>
</div>
</div>
<div class="_V1j _hWr kno-ftr">
<div class="_OPd kno-fb">
<div data-async-context="async_id:duf3-1-0;authority:0;card_id:;entry_point:0;feature_id:;header:0;open:0;suggestions:;suggestions_subtypes:;suggestions_types:;surface:0;type:1">
<div class="r-i9D9qlvhhOzc" jsl="$t t-aTz9-_sUcEc;$x 0;" style="display:none">
</div>
<div class="y yp" data-async-context-required="type,open,feature_id,async_id,entry_point,authority,card_id,header,suggestions,surface,suggestions_types,suggestions_subtypes" data-async-type="duffy3" data-jiis="up" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q-0EIKA" id="duf3-1-0">
</div>
<span>
<span class="_v1h _wtf _KLh" data-async-trigger="duf3-1-0" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qtw8IKQ" jsaction="async.u" role="link" style="height:14px;line-height:14px;width:14px" tabindex="-1">
<svg focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-7 9h-2V5h2v6zm0 4h-2v-2h2v2z">
</path>
</svg>
</span>
<a class="_rWr" data-async-trigger="duf3-1-0" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qtw8IKg" href="#" jsaction="async.u">
Feedback
</a>
</span>
</div>
</div>
<div>
<div class="_AZr">
<a href="/url?url=https://support.google.com/webmasters/answer/6229325?hl%3Den-SG&rct=j&q=&esrc=s&usg=AFQjCNH-phTNqHP0pqexcFngM_JWucq5Qg&hl=en-SG&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrpwBCCs" tabindex="-1">
<span class="_zZr _wtf _YEh" style="height:16px;line-height:16px;width:16px">
<svg focusable="false" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 17h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 12.9 13 13.5 13 15h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z">
</path>
</svg>
</span>
</a>
<span class="_BZr">
<a href="/url?url=https://support.google.com/webmasters/answer/6229325?hl%3Den-SG&rct=j&q=&esrc=s&usg=AFQjCNH-phTNqHP0pqexcFngM_JWucq5Qg&hl=en-SG&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrpwBCCw">
About this result
</a>
</span>
</div>
</div>
</div>
</div>
</div>
<div class="_NId">
<div class="g kno-kp mnr-c g-blk" data-hveid="45" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QuU4ILSgB">
<div class="kp-blk _thf _Rqb _RJe">
<div class="xpdopen">
<div class="_OKe">
<div>
<div>
</div>
</div>
<div class="_Sen r-ifX_evs6zQ_M" data-rtid="ifX_evs6zQ_M" jsaction="cards_insert:r.8yJK7pRYWac" jsl="$t t-IlZ-GzA02d0;$x 0;">
<div class="_tN _IWg _HWg mod" data-hveid="46" data-md="16" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QhygILigAMAI" style="clear:none">
<!--m-->
<div class="_tdf">
<div aria-level="3" class="_Q1n" role="heading">
<div class="_pk" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q3B0ILygAMAI">
<span>
People also ask
</span>
</div>
</div>
</div>
<!--n-->
</div>
<div class="_lfn ifX_evs6zQ_M-rviw6i-qB2Y">
<g-loading-icon style="height:24px;width:24px">
<img alt="Loading..." height="24" onload="typeof google==='object'&&google.aft&&google.aft(this)" role="progressbar" src="//www.gstatic.com/ui/v1/activityindicator/loading_24.gif" width="24"/>
</g-loading-icon>
</div>
<section class="_Ten ifX_evs6zQ_M-GuhIIQrz4_o y yi" data-async-context-required="q,state,max" data-async-rclass="search" data-async-type="irq" data-jiis="up" data-rtid="ifX_evs6zQ_M" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqrkBCDAoAQ" id="irq" jsaction="card_click:r.BrbQjym-Apk" jsl="$x 1;">
<div class="_sgo r-i4oYx9w29OBM" jsl="$t t-tOh6-P4sdZo;$x 0;">
<div class="i4oYx9w29OBM-q0_7ulvsJF4 _qgo related-question-pair r-iFiDPjp8_jj0" data-irqb="0" data-rtid="iFiDPjp8_jj0" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qq7kBCDE" decode-data-ved="1" eid="IrW7WbXLOsXB0gTG4a7oDg" jsaction="dummy:r.J9jIHVdh6Uw" jsl="$t t-q3HL14F6HpU;$x 0;">
<div aria-expanded="false" class="_qhf match-mod-horizontal-padding nmiw nmtbi nmt iFiDPjp8_jj0-Dxg0p2iqJnc" data-hveid="50" data-rtid="iFiDPjp8_jj0" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Quk4IMigA" jsaction="r.J9jIHVdh6Uw" jsl="$x 0;" role="button" tabindex="0">
<div class="_Zgf">
</div>
<div class="_eHi">
<div class="_rhf">
What is a wuxia novel?
</div>
</div>
</div>
<div class="nmcw nmbl iFiDPjp8_jj0-GQSfLE1fUrA" data-hveid="51" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qu04IMygB">
<div id="irq3">
</div>
</div>
</div>
<div class="i4oYx9w29OBM-q0_7ulvsJF4 _qgo related-question-pair r-iKswbWvfjatk" data-irqb="0" data-rtid="iKswbWvfjatk" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qq7kBCDk" decode-data-ved="1" eid="IrW7WbXLOsXB0gTG4a7oDg" jsaction="dummy:r.J9jIHVdh6Uw" jsl="$t t-q3HL14F6HpU;$x 0;">
<div aria-expanded="false" class="_qhf match-mod-horizontal-padding nmiw nmtbi nmt iKswbWvfjatk-Dxg0p2iqJnc" data-hveid="58" data-rtid="iKswbWvfjatk" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Quk4IOigA" jsaction="r.J9jIHVdh6Uw" jsl="$x 0;" role="button" tabindex="0">
<div class="_Zgf">
</div>
<div class="_eHi">
<div class="_rhf">
What is Xuanhuan genre?
</div>
</div>
</div>
<div class="nmcw nmbl iKswbWvfjatk-GQSfLE1fUrA" data-hveid="59" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qu04IOygB">
<div id="irq5">
</div>
</div>
</div>
</div>
</section>
</div>
</div>
<div style="clear:both">
</div>
</div>
</div>
<div class="kno-ftr">
<div class="_OPd kno-fb">
<div data-async-context="async_id:duf3-44-2;authority:0;card_id:;entry_point:0;feature_id:;header:0;open:0;suggestions:;suggestions_subtypes:;suggestions_types:;surface:0;type:44">
<div class="r-ilMgR9dSCRiU" jsl="$t t-aTz9-_sUcEc;$x 0;" style="display:none">
</div>
<div class="y yp" data-async-context-required="type,open,feature_id,async_id,entry_point,authority,card_id,header,suggestions,surface,suggestions_types,suggestions_subtypes" data-async-type="duffy3" data-jiis="up" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q-0EIQQ" id="duf3-44-2">
</div>
<a class="duf3" data-async-trigger="duf3-44-2" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Qtw8IQg" href="#" jsaction="async.u">
Feedback
</a>
</div>
</div>
</div>
</div>
</div>
<div class="_NId">
<div class="srg">
<div class="g">
<!--m-->
<div data-hveid="68" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFQhEKAAwBw">
<div class="rc">
<h3 class="r">
<a href="http://forum.wuxiaworld.com/discussion/7616/difference-between-xianxia-wuxia-novels" onmousedown="return rwt(this,'','','','8','AFQjCNHcg-AH9EtKxzLI11vRRZZiCmpzGQ','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFghFMAc','','',event)">
Difference between Xianxia/Wuxia novels? - Wuxiaworld
</a>
</h3>
<div class="s">
<div>
<div class="f kv _SWb" style="white-space:nowrap">
<cite class="_Rm bc">
forum.wuxiaworld.com › General Novel Discussions
</cite>
<div class="action-menu ab_ctl">
<a aria-expanded="false" aria-haspopup="true" aria-label="Result details" class="_Fmb ab_button" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q7B0IRzAH" href="#" id="am-b7" jsaction="m.tdd;keydown:m.hbke;keypress:m.mskpe" role="button">
<span class="mn-dwn-arw">
</span>
</a>
<div class="action-menu-panel ab_dropdown" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqR8ISDAH" jsaction="keydown:m.hdke;mouseover:m.hdhne;mouseout:m.hdhue" role="menu" tabindex="-1">
<ol>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="http://webcache.googleusercontent.com/search?q=cache:hNNIhT5o4lQJ:forum.wuxiaworld.com/discussion/7616/difference-between-xianxia-wuxia-novels+&cd=8&hl=en&ct=clnk&gl=sg" onmousedown="return rwt(this,'','','','8','AFQjCNGKZ_NWyLkfeY0GF5muKdbm07EyHw','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QIAhJMAc','','',event)">
Cached
</a>
</li>
</ol>
</div>
</div>
</div>
<span class="st">
<span class="f">
Mar 22, 2017 -
</span>
So I hear these two different or possibly the same terms a lot. My question is even though I think I can "Feel" the difference between the "Writing ...
</span>
<div class="_cwc" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqwIISzAH">
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.wuxiaworld.com/discussion/7604/why-are-wuxia-and-xianxia-so-popular" onmousedown="return rwt(this,'','','','8','AFQjCNHwKgPbRXPFhNS5Kd_OfjoFJ7Qr7w','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIITCgAMAc','','',event)">
Why are
<b>
wuxia
</b>
and
<b>
xianxia
</b>
so popular? -
<b>
Wuxiaworld
</b>
</a>
</div>
<div class="_pgd">
21 Mar 2017
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.wuxiaworld.com/discussion/1274/xianxia-novel-with-really-smart-geniusss-mc" onmousedown="return rwt(this,'','','','8','AFQjCNFC-04nzWfLg0_bzvKWTB7qGFa2BA','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIITSgBMAc','','',event)">
<b>
Xianxia novel
</b>
with really smart geniusss MC -
<b>
Wuxiaworld
</b>
</a>
</div>
<div class="_pgd">
9 Dec 2015
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.wuxiaworld.com/discussion/768/wuxia-or-xianxia-with-female-mc" onmousedown="return rwt(this,'','','','8','AFQjCNFm8YWrAZTS11K13RypVBLl_JH2Tg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIITigCMAc','','',event)">
<b>
Wuxia
</b>
or
<b>
Xianxia
</b>
with female MC -
<b>
Wuxiaworld
</b>
</a>
</div>
<div class="_pgd">
13 Oct 2015
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.wuxiaworld.com/discussion/41/looking-for-a-completed-series-to-read" onmousedown="return rwt(this,'','','','8','AFQjCNEZi4nQRF0slicL-oI44-hAnsG7eg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIITygDMAc','','',event)">
Looking for a completed series to read -
<b>
Wuxiaworld
</b>
</a>
</div>
<div class="_pgd">
19 Jul 2015
</div>
</div>
<div class="_WQd">
<div class="_qgd">
<a class="fl" href="/search?q=xianxia+wuxia+novels+site:forum.wuxiaworld.com&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrQIIUCgEMAc">
More results from forum.wuxiaworld.com
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div data-hveid="81" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFQhRKAEwCA">
<div class="rc">
<h3 class="r">
<a href="http://www.novelupdates.com/genre/xianxia/" onmousedown="return rwt(this,'','','','9','AFQjCNEJ20S-Tz2rfebpzyisnZ-qte7KOg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFghSMAg','','',event)">
Genre Xianxia - Novel Updates
</a>
</h3>
<div class="s">
<div>
<div class="f kv _SWb" style="white-space:nowrap">
<cite class="_Rm">
www.novelupdates.com/genre/xianxia/
</cite>
<div class="action-menu ab_ctl">
<a aria-expanded="false" aria-haspopup="true" aria-label="Result details" class="_Fmb ab_button" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q7B0IUzAI" href="#" id="am-b8" jsaction="m.tdd;keydown:m.hbke;keypress:m.mskpe" role="button">
<span class="mn-dwn-arw">
</span>
</a>
<div class="action-menu-panel ab_dropdown" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqR8IVDAI" jsaction="keydown:m.hdke;mouseover:m.hdhne;mouseout:m.hdhue" role="menu" tabindex="-1">
<ol>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="http://webcache.googleusercontent.com/search?q=cache:YCYslLuA-RkJ:www.novelupdates.com/genre/xianxia/+&cd=9&hl=en&ct=clnk&gl=sg" onmousedown="return rwt(this,'','','','9','AFQjCNF_q2lz_xxvnbSuX6AM20sda4fUdg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QIAhVMAg','','',event)">
Cached
</a>
</li>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="/search?q=related:www.novelupdates.com/genre/xianxia/+xianxia+wuxia+novels&tbo=1&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QHwhWMAg">
Similar
</a>
</li>
</ol>
</div>
</div>
</div>
<span class="st">
<span class="f">
Sep 19, 2015 -
</span>
A poor and ordinary boy from a village joins a minor sect in Jiang Hu and becomes an Unofficial Disciple by chance. How will Han Li, ...
</span>
</div>
</div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div data-hveid="88" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFQhYKAIwCQ">
<div class="rc">
<h3 class="r">
<a href="http://www.novelupdates.com/series-ranking/" onmousedown="return rwt(this,'','','','10','AFQjCNEvvAOHzvH0f0pAm7BhIKGV_dEKfA','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFghZMAk','','',event)">
Series Ranking - Novel Updates
</a>
</h3>
<div class="s">
<div>
<div class="f kv _SWb" style="white-space:nowrap">
<cite class="_Rm">
www.novelupdates.com/series-ranking/
</cite>
<div class="action-menu ab_ctl">
<a aria-expanded="false" aria-haspopup="true" aria-label="Result details" class="_Fmb ab_button" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q7B0IWjAJ" href="#" id="am-b9" jsaction="m.tdd;keydown:m.hbke;keypress:m.mskpe" role="button">
<span class="mn-dwn-arw">
</span>
</a>
<div class="action-menu-panel ab_dropdown" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqR8IWzAJ" jsaction="keydown:m.hdke;mouseover:m.hdhne;mouseout:m.hdhue" role="menu" tabindex="-1">
<ol>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="http://webcache.googleusercontent.com/search?q=cache:Fn0deaMV7PYJ:www.novelupdates.com/series-ranking/+&cd=10&hl=en&ct=clnk&gl=sg" onmousedown="return rwt(this,'','','','10','AFQjCNHWaekai-OyhjmiOaz_-vQh9Tew-Q','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QIAhcMAk','','',event)">
Cached
</a>
</li>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="/search?q=related:www.novelupdates.com/series-ranking/+xianxia+wuxia+novels&tbo=1&sa=X&ved=0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QHwhdMAk">
Similar
</a>
</li>
</ol>
</div>
</div>
</div>
<span class="st">
Action Adventure Drama Fantasy Martial Arts Romance Seinen Tragedy
<em>
Xianxia
</em>
. Fate had never been kind to Ji Ning. Wracked by illnesses and infirm his entire ...
</span>
</div>
</div>
</div>
</div>
<!--n-->
</div>
<div class="g">
<!--m-->
<div data-hveid="94" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFQheKAMwCg">
<div class="rc">
<h3 class="r">
<a href="http://forum.novelupdates.com/threads/difference-between-xianxia-xuanhuan-and-wuxia.39018/" onmousedown="return rwt(this,'','','','11','AFQjCNEJWaTvpNMnLust3GQ0dUvB5VPZ2Q','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QFghfMAo','','',event)">
Difference between Xianxia,Xuanhuan, and Wuxia | Novel Updates Forum
</a>
</h3>
<div class="s">
<div>
<div class="f kv _SWb" style="white-space:nowrap">
<cite class="_Rm bc">
forum.novelupdates.com › Novels › Novel General
</cite>
<div class="action-menu ab_ctl">
<a aria-expanded="false" aria-haspopup="true" aria-label="Result details" class="_Fmb ab_button" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0Q7B0IYTAK" href="#" id="am-b10" jsaction="m.tdd;keydown:m.hbke;keypress:m.mskpe" role="button">
<span class="mn-dwn-arw">
</span>
</a>
<div class="action-menu-panel ab_dropdown" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqR8IYjAK" jsaction="keydown:m.hdke;mouseover:m.hdhne;mouseout:m.hdhue" role="menu" tabindex="-1">
<ol>
<li class="action-menu-item ab_dropdownitem" role="menuitem">
<a class="fl" href="http://webcache.googleusercontent.com/search?q=cache:8uOpyAw7eu4J:forum.novelupdates.com/threads/difference-between-xianxia-xuanhuan-and-wuxia.39018/+&cd=11&hl=en&ct=clnk&gl=sg" onmousedown="return rwt(this,'','','','11','AFQjCNETjK37F5U1_Vb75wc7UHKKTupAiA','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QIAhjMAo','','',event)">
Cached
</a>
</li>
</ol>
</div>
</div>
</div>
<div class="slp f">
Jun 6, 2017 - 19 posts - 16 authors
</div>
<span class="st">
It always confused me what the diffrence between these are. I know that
<em>
Wuxia
</em>
stands for Chinese fantasy but is that in a specific genre or ...
</span>
<div class="_cwc" data-ved="0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QqwIIZTAK">
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.novelupdates.com/threads/looking-for-modern-xianxia-wuxia-novel.24732/" onmousedown="return rwt(this,'','','','11','AFQjCNHG4g9tZ8HXijiZaLHrqJJUGad6Yg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIIZigAMAo','','',event)">
Recommendations - Looking for modern
<b>
Xianxia
</b>
/
<b>
Wuxia
</b>
...
</a>
</div>
<div class="_pgd">
19 posts
</div>
<div class="_pgd">
29 Dec 2016
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.novelupdates.com/threads/xianxia-wuxia-teacher.21115/" onmousedown="return rwt(this,'','','','11','AFQjCNFobxxt1P91_qC-1Ba9sFNSFC8xyA','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIIZygBMAo','','',event)">
Recommendations -
<b>
Xianxia
</b>
,
<b>
Wuxia
</b>
....Teacher?
</a>
</div>
<div class="_pgd">
14 posts
</div>
<div class="_pgd">
11 Nov 2016
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.novelupdates.com/threads/a-xianxia-wuxia-with-good-comedy.16188/" onmousedown="return rwt(this,'','','','11','AFQjCNHWTquIzPLU1--Sa85f5A2QCATcOg','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIIaCgCMAo','','',event)">
Recommendations - A
<b>
xianxia
</b>
/
<b>
wuxia
</b>
with good comedy
</a>
</div>
<div class="_pgd">
20 posts
</div>
<div class="_pgd">
31 Aug 2016
</div>
</div>
<div class="_sgd">
<div class="_qgd">
<a class="fl" href="http://forum.novelupdates.com/threads/wuxia-xianxia-where-romance-actually-started.8902/" onmousedown="return rwt(this,'','','','11','AFQjCNEooNrM7kF1s2OpA5e82gwDxLUkQw','','0ahUKEwi15LKFh6fWAhXFoJQKHcawC-0QrAIIaSgDMAo','','',event)">
Recommendations -
<b>
wuxia
</b>
/
<b>
xianxia
</b>
where romance ...
</a>
</div>
<div class="_pgd">
20 posts
</div>
<div class="_pgd">
21 May 2016
</div>
</div>
<div class="_WQd">