-
Notifications
You must be signed in to change notification settings - Fork 125
/
Jobzeek Premium.xml
3533 lines (3477 loc) · 420 KB
/
Jobzeek Premium.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<html b:css='false' b:defaultwidgetversion='2' b:js='true' b:layoutsVersion='3' b:responsive='true' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<b:comment> Follow It </b:comment>
<meta content='TARUH_KODE_FOLLOW_IT_DISINI' name='follow.it-verification-code'/>
<b:comment> Theme Color </b:comment>
<meta content='yes' name='apple-mobile-web-app-capable'/>
<meta content='#ffffff' name='theme-color'/>
<meta content='#ffffff' name='msapplication-navbutton-color'/>
<meta content='#ffffff' name='apple-mobile-web-app-status-bar-style'/>
<b:comment> Favicon </b:comment>
<meta content='LOGO_GAMBAR_DISINI'/>
<link href='LOGO_GAMBAR_DISINI'/>
<link href='LOGO_GAMBAR_DISINI' rel='icon' sizes='200x200'/>
<link href='/favicon.ico' rel='icon' type='image/x-icon'/>
<b:comment> Title </b:comment>
<b:if cond='data:view.isHomepage or (data:view.isSearch and !data:view.isLabelSearch and !data:blog.searchQuery)'>
<title><data:view.title.escaped/></title>
<meta expr:content='data:view.title' property='og:title'/>
<meta expr:content='data:view.title' property='og:image:alt'/>
<meta expr:content='data:view.title' name='twitter:title'/>
<meta expr:content='data:view.title' name='twitter:image:alt'/>
<b:elseif cond='data:view.isSingleItem or data:view.isSearch or data:view.isArchive'/>
<title><data:blog.pageName/> - <data:blog.title/></title>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' property='og:title'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' property='og:image:alt'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' name='twitter:title'/>
<meta expr:content='data:blog.pageName + " - " + data:blog.title' name='twitter:image:alt'/>
<b:elseif cond='data:view.isError'/>
<title><b:switch var='data:blog.locale'><b:case value='id'/>Halaman Tidak Ditemukan<b:default/>Page Not Found</b:switch> - <data:blog.title/></title>
<meta expr:content='"Page Not Found - " + data:blog.title' property='og:title'/>
<meta expr:content='"Page Not Found - " + data:blog.title' property='og:image:alt'/>
<meta expr:content='"Page Not Found - " + data:blog.title' name='twitter:title'/>
<meta expr:content='"Page Not Found - " + data:blog.title' name='twitter:image:alt'/>
<b:else/>
<title><data:view.title/></title>
<meta expr:content='data:view.title' property='og:title'/>
<meta expr:content='data:view.title' property='og:image:alt'/>
<meta expr:content='data:view.title' name='twitter:title'/>
<meta expr:content='data:view.title' name='twitter:image:alt'/>
</b:if>
<meta expr:content='data:blog.title' property='og:site_name'/>
<b:comment> Meta keywords automatically homepage, static page, and post </b:comment>
<b:if cond='data:view.isHomepage'>
<meta expr:content='data:blog.title' name='keywords'/>
<b:elseif cond='data:view.isSingleItem'/>
<meta expr:content='data:blog.pageName' name='keywords'/>
</b:if>
<b:comment> Meta Description </b:comment>
<b:if cond='data:blog.metaDescription'>
<meta expr:content='data:blog.metaDescription' name='description'/>
<meta expr:content='data:blog.metaDescription' property='og:description'/>
<meta expr:content='data:blog.metaDescription' name='twitter:description'/>
<b:else/>
<meta expr:content='data:view.title' name='description'/>
<meta expr:content='data:view.title' property='og:description'/>
<meta expr:content='data:view.title' name='twitter:description'/>
</b:if>
<b:comment>Meta Description Product</b:comment>
<b:if cond='data:view.isSearch and data:view.search.label in ["Produk"]'>
<meta expr:content='data:blog.pageTitle' name='description'/>
</b:if>
<b:comment>Meta Tag Open Graph</b:comment>
<b:if cond='data:view.featuredImage'>
<meta expr:content='data:view.featuredImage' property='og:image'/>
<meta expr:content='data:view.featuredImage' name='twitter:image'/>
<b:elseif cond='data:blog.postImageUrl'/>
<meta expr:content='data:blog.postImageUrl' property='og:image'/>
<meta expr:content='data:blog.postImageUrl' name='twitter:image'/>
<b:else/>
<meta content='TARUH_LOGO_GAMBAR_DISINI' property='og:image'/>
<meta content='TARUH_LOGO_GAMBAR_DISINI' name='twitter:image'/>
</b:if>
<b:comment>Other Meta Tag</b:comment>
<meta content='width=device-width, initial-scale=1.0, user-scalable=1.0, minimum-scale=1.0, maximum-scale=5.0' name='viewport'/>
<meta expr:content='"text/html; charset=" + data:blog.encoding' http-equiv='Content-Type'/>
<meta content='all-language' http-equiv='Content-Language'/>
<meta content='IE=Edge' http-equiv='X-UA-Compatible'/>
<b:if cond='data:view.isArchive or data:view.isSearch or data:view.isError'>
<meta content='noindex,nofollow' name='robots'/>
</b:if>
<b:comment>Other Social Media Tag</b:comment>
<b:comment>Facebook</b:comment>
<meta content='article' property='og:type'/>
<meta content='id_ID' property='og:locale'/>
<meta content='en_US' property='og:locale:alternate'/>
<meta content='en_GB' property='og:locale:alternate'/>
<b:comment>Blog Feed</b:comment>
<b:if cond='data:blog.adultContent'>
<meta content='adult' name='rating'/>
</b:if>
<meta content='blogger' name='generator'/>
<link href='https://www.blogger.com/openid-server.g' rel='openid.server'/>
<link expr:href='data:blog.homepageUrl.canonical' rel='openid.delegate'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default"' expr:title='data:blog.title + " - Atom"' rel='alternate' type='application/atom+xml'/>
<link expr:href='data:blog.homepageUrl.canonical + "feeds/posts/default?alt=rss"' expr:title='data:blog.title + " - RSS"' rel='alternate' type='application/rss+xml'/>
<b:comment>Canonical</b:comment>
<link expr:href='data:blog.url.canonical' rel='canonical'/>
<link expr:href='data:blog.url.canonical' hreflang='x-default' rel='alternate'/>
<meta expr:content='data:blog.url.canonical' property='og:url'/>
<b:comment>Author</b:comment>
<meta content='TULIS_NAMA_ANDA_DISINI' name='author'/>
<meta content='TULIS_NAMA_ANDA_DISINI' property='article:author'/>
<link href='TARUH_URL_FACEBOOK_DISINI' rel='me'/>
<link href='TARUH_URL_FACEBOOK_DISINI' rel='author'/>
<link href='TARUH_URL_FACEBOOK_DISINI' rel='publisher'/>
<meta content='TARUH_KODE_FACEBOOK_ADMIN_DISINI' property='fb:admins'/>
<meta content='TARUH_KODE_FACEBOOK_PAGES_DISIINI' property='fb:pages'/>
<meta content='TARUH_KODE_FACEBOOK_APP_ID_DISINI' property='fb:app_id'/>
<meta content='https://www.facebook.com/TARUH_USERNAME_HALAMAN_FACEBOOK_DISINI' property='article:author'/>
<meta content='https://www.facebook.com/TARUH_USERNAME_HALAMAN_FACEBOOK_DISINI' property='article:publisher'/>
<meta content='@TARUH_USERNAME_TWITTER_DISINI' name='twitter:site'/>
<meta content='@TARUH_USERNAME_TWITTER_DISINI' name='twitter:creator'/>
<b:comment> DNS Prefetch </b:comment>
<link href='//fonts.googleapis.com' rel='dns-prefetch'/>
<link href='//fonts.gstatic.com' rel='dns-prefetch'/>
<link href='//dnjs.cloudflare.com' rel='dns-prefetch'/>
<link href='//1.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//2.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//3.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//4.bp.blogspot.com' rel='dns-prefetch'/>
<link href='//lh3.googleusercontent.com' rel='dns-prefetch'/>
<link href='//blogger.googleusercontent.com' rel='dns-prefetch'/>
<link href='//www.blogger.com' rel='dns-prefetch'/>
<b:if cond='!data:view.isLayoutMode'>
<b:skin><![CDATA[/*
/* ======================================
Jobzeek: Best Premium Blogger Template for Job Posting - Download From Komputermu (www.komputermu.my.id)
=========================================
Name : Jobzeek
Version : 1.1
Date : 9 January 2023
Demo : jobzeek.gilatemax.com
Type : Premium (Paid)
Designer : Gila Temax
Country : Indonesia
Website : www.gilatemax.com
***************************************
This template is premium (paid).
You can get it only by purchasing officially.
If you got it for free through any method, it means you got it illegally.
*************************************** */
/* Variable definitions start
=============================
<Group description="Accent Color Options">
<Variable name="accent.color" description="Accent Color" type="color" default="#0e8136" value="#0e8136"/>
</Group>
<Group description="Post Options">
<Variable name="optionFeatureLayout" description="Layout (Grid/List)" type="length" default="1px" min="1px" max="2px" value="1px"/>
<Variable name="optionFeaturePostThumbnails" description="Post Thumbnails (Disable/Enable)" type="length" default="1px" min="1px" max="2px" value="2px"/>
<Variable name="optionFeatureTimeFormat" description="Time a go (Disable/Enable)" type="length" default="1px" min="1px" max="2px" value="1px"/>
<Variable name="optionFeatureCommentMessage" description="Comment Message (Disable/Enable)" type="length" default="1px" min="1px" max="2px" value="1px"/>
</Group>
<Group description="Baca Juga Options">
<Variable name="optionFeatureBacaJuga" description="Baca Juga (Disable/Enable)" type="length" default="1px" min="1px" max="2px" value="1px"/>
<Variable name="optionFeatureBacaJugaNumbPosts" description="Number of Posts" type="length" default="6px" min="1px" max="10px" value="5px"/>
</Group>
<Group description="Related Posts Options">
<Variable name="optionFeatureRelatedPosts" description="Related Posts (Disable/Enable)" type="length" default="1px" min="1px" max="2px" value="2px"/>
<Variable name="optionFeatureNumbPosts" description="Number of Posts" type="length" default="6px" min="1px" max="10px" value="6px"/>
</Group>
<Group description="Komentar Baru Blogger (Contempo, Soho, Emporio, Notable)">
<Variable name="body.background" description="Body Background" type="background" color="#dddfe2" default="#dddfe2 none repeat scroll top left" value="#dddfe2 none repeat scroll top left"/>
<Variable name="body.font" description="Font" type="font" default="normal 400 14px Roboto, Arial, sans-serif" value="normal 400 14px Arial,sans-serif"/>
<Variable name="body.text.color" description="Text Color" type="color" default="#5f6368" value="#5f6368"/>
<Variable name="body.text.font" description="1" type="font" default="$(body.font)" value="normal 400 14px Roboto,Arial,sans-serif"/>
<Variable name="posts.background.color" description="2" type="color" default="#fff" value="transparent"/>
<Variable name="body.link.color" description="3" type="color" default="#1a73e8" value="#1a73e8"/>
<Variable name="body.link.visited.color" description="4" type="color" default="#1a73e8" value="#1a73e8"/>
<Variable name="body.link.hover.color" description="5" type="color" default="#1d2129" value="#1d2129"/>
<Variable name="blog.title.font" description="6" type="font" default="$(body.text.font)" value="normal 400 14px Roboto, Arial, sans-serif"/>
<Variable name="blog.title.color" description="7" type="color" default="#fff" value="#ffffff"/>
<Variable name="header.icons.color" description="8" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.font" description="9" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="tabs.color" description="10" type="color" default="#ccc" value="#cccccc"/>
<Variable name="tabs.selected.color" description="11" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.background.color" description="12" type="color" default="#fff" value="#ffffff"/>
<Variable name="tabs.overflow.color" description="13" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="tabs.overflow.selected.color" description="14" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.color" description="15" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.title.font" description="16" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="posts.text.font" description="17" type="font" default="$(body.text.font)" value="normal 400 14px Arial,sans-serif"/>
<Variable name="posts.text.color" description="18" type="color" default="$(body.text.color)" value="#1d2129"/>
<Variable name="posts.icons.color" description="19" type="color" default="$(body.text.color)" value="#6c6f74"/>
<Variable name="labels.background.color" description="20" type="color" default="#1a73e8" value="#1a73e8"/>
</Group>
Variable definitions end
========================*/
/* --- normalize.css v3.0.1 | MIT License | git.io/normalize --- */
html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;overflow-x:hidden;}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent;color:var(--color-accent);text-decoration:none;}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}dfn{font-style:italic}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{height:auto;max-width:100%;border:0}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em;}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible;border:0px;outline:0px;margin:0px;box-shadow:none;}button,select{text-transform:none;outline:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;outline:none;}input{line-height:normal;border:0px;outline:0px}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}focus{outline:none}h1{font-size:1.75em}iframe{width:100%;max-width:100%;}svg{width:24px;height:24px;}*{box-sizing:border-box}hr{border:none;height:auto;margin:24px 0}hr:before{content:'\2027 \2027 \2027 \2027';display:block;text-align:center;letter-spacing:.1em;font-size:24px;opacity:.6}mark{padding:0 5px;border-radius:7px}h1, h2, h3, h4, h5, h6{font-weight:700;margin:0 0 15px}.hidden{display:none;}::selection{background-color:var(--color-accent);color:var(--color-text-white);}kbd{display:inline-block;background-color:#424242;color:var(--color-text-white);border-radius:7px;padding:3px 5px;}
/* --- Font Roboto --- */
@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2) format('woff2');unicode-range: U 0460-052F, U 1C80-1C88, U 20B4, U 2DE0-2DFF, U A640-A69F, U FE2E-FE2F}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2) format('woff2');unicode-range: U 0400-045F, U 0490-0491, U 04B0-04B1, U 2116}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2) format('woff2');unicode-range: U 1F00-1FFF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2) format('woff2');unicode-range: U 0370-03FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2) format('woff2');unicode-range: U 0102-0103, U 0110-0111, U 0128-0129, U 0168-0169, U 01A0-01A1, U 01AF-01B0, U 1EA0-1EF9, U 20AB}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2) format('woff2');unicode-range: U 0100-024F, U 0259, U 1E00-1EFF, U 2020, U 20A0-20AB, U 20AD-20CF, U 2113, U 2C60-2C7F, U A720-A7FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 300;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmSU5fBBc4.woff2) format('woff2');unicode-range: U 0000-00FF, U 0131, U 0152-0153, U 02BB-02BC, U 02C6, U 02DA, U 02DC, U 2000-206F, U 2074, U 20AC, U 2122, U 2191, U 2193, U 2212, U 2215, U FEFF, U FFFD}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu72xKOzY.woff2) format('woff2');unicode-range: U 0460-052F, U 1C80-1C88, U 20B4, U 2DE0-2DFF, U A640-A69F, U FE2E-FE2F}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');unicode-range: U 0400-045F, U 0490-0491, U 04B0-04B1, U 2116}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7mxKOzY.woff2) format('woff2');unicode-range: U 1F00-1FFF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4WxKOzY.woff2) format('woff2');unicode-range: U 0370-03FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7WxKOzY.woff2) format('woff2');unicode-range: U 0102-0103, U 0110-0111, U 0128-0129, U 0168-0169, U 01A0-01A1, U 01AF-01B0, U 1EA0-1EF9, U 20AB}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu7GxKOzY.woff2) format('woff2');unicode-range: U 0100-024F, U 0259, U 1E00-1EFF, U 2020, U 20A0-20AB, U 20AD-20CF, U 2113, U 2C60-2C7F, U A720-A7FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 400;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOmCnqEu92Fr1Mu4mxK.woff2) format('woff2');unicode-range: U 0000-00FF, U 0131, U 0152-0153, U 02BB-02BC, U 02C6, U 02DA, U 02DC, U 2000-206F, U 2074, U 20AC, U 2122, U 2191, U 2193, U 2212, U 2215, U FEFF, U FFFD}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fCRc4EsA.woff2) format('woff2');unicode-range: U 0460-052F, U 1C80-1C88, U 20B4, U 2DE0-2DFF, U A640-A69F, U FE2E-FE2F}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fABc4EsA.woff2) format('woff2');unicode-range: U 0400-045F, U 0490-0491, U 04B0-04B1, U 2116}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fCBc4EsA.woff2) format('woff2');unicode-range: U 1F00-1FFF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fBxc4EsA.woff2) format('woff2');unicode-range: U 0370-03FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fCxc4EsA.woff2) format('woff2');unicode-range: U 0102-0103, U 0110-0111, U 0128-0129, U 0168-0169, U 01A0-01A1, U 01AF-01B0, U 1EA0-1EF9, U 20AB}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fChc4EsA.woff2) format('woff2');unicode-range: U 0100-024F, U 0259, U 1E00-1EFF, U 2020, U 20A0-20AB, U 20AD-20CF, U 2113, U 2C60-2C7F, U A720-A7FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 500;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmEU9fBBc4.woff2) format('woff2');unicode-range: U 0000-00FF, U 0131, U 0152-0153, U 02BB-02BC, U 02C6, U 02DA, U 02DC, U 2000-206F, U 2074, U 20AC, U 2122, U 2191, U 2193, U 2212, U 2215, U FEFF, U FFFD}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2) format('woff2');unicode-range: U 0460-052F, U 1C80-1C88, U 20B4, U 2DE0-2DFF, U A640-A69F, U FE2E-FE2F}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');unicode-range: U 0400-045F, U 0490-0491, U 04B0-04B1, U 2116}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2) format('woff2');unicode-range: U 1F00-1FFF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2) format('woff2');unicode-range: U 0370-03FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2) format('woff2');unicode-range: U 0102-0103, U 0110-0111, U 0128-0129, U 0168-0169, U 01A0-01A1, U 01AF-01B0, U 1EA0-1EF9, U 20AB}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2) format('woff2');unicode-range: U 0100-024F, U 0259, U 1E00-1EFF, U 2020, U 20A0-20AB, U 20AD-20CF, U 2113, U 2C60-2C7F, U A720-A7FF}@font-face{font-family: 'Roboto';font-style: normal;font-weight: 700;font-display: swap;src: url(https://fonts.gstatic.com/s/roboto/v29/KFOlCnqEu92Fr1MmWUlfBBc4.woff2) format('woff2');unicode-range: U 0000-00FF, U 0131, U 0152-0153, U 02BB-02BC, U 02C6, U 02DA, U 02DC, U 2000-206F, U 2074, U 20AC, U 2122, U 2191, U 2193, U 2212, U 2215, U FEFF, U FFFD}
:root {
--color-accent:$(accent.color);
--color-accent-hover:#fafafa;
--color-body-bg:#ffffff;
--color-header-bg:#ffffff;
--color-text-primary:#000000;
--color-text-secondary:#5f6368;
--color-text-white:#ffffff;
--color-border-default:#e2e2e2;
--color-search-box-bg:#fafafa;
--color-search-box-input-bg:#ffffff;
--color-search-box-border:#a4a4a4;
--color-content-tabs-bg:#ffffff;
--color-label-count-bg:#eee;
--color-title-featured-post-bg:#0f62c7;
--color-text-title-featured-post:#ffffff;
--color-comment-bio-bg:#ffffff;
--color-comment-avatar-check-bg:#ffffff;
--color-indicator:#cd3313;
--color-circle-dot-bg:#8a8a8a;
--color-snackbar-bg:rgb(194, 226, 218);
--color-snackbar-text:#444444;
--color-highlighter-bg:#f6f6f6;
--color-higlighter-border:#000;
--color-alert-default-bg:#f8f8f8;
--color-alert-info-bg:rgba(59,125,221,.15);
--color-alert-warning-bg:rgba(252,185,44,.15);
--color-alert-success-bg:rgba(28,187,140,.15);
--color-alert-error-bg:rgba(220,53,69,.15);
--color-alert-text-info:#3e69a8;
--color-alert-text-warning:#8f6919;
--color-alert-text-success:#127a5b;
--color-alert-text-error:#be2e3c;
--color-table-header-sticky:#ffffff;
--color-table-primary-bg:#3e69a8;
--color-table-warning-bg:#8f6919;
--color-table-success-bg:#127a5b;
--color-table-error-bg:#be2e3c;
--color-table-hover-bg:rgba(208,215,222,0.32);
--color-table-text-primary:#ffffff;
--color-table-text-warning:#ffffff;
--color-table-text-success:#ffffff;
--color-table-text-error:#ffffff;
--color-collapsible-bg:#f8f8f8;
--color-footer-bg:#f0f0f0;
--color-step-section-bg:#ffffff;
--color-notification-bg:#ffffff;
--color-share-bg:#ffffff;
}
body {font-size:14px;font-weight:400;font-family:'Roboto', sans-serif;line-height:1.5;background-color:var(--color-body-bg);color:var(--color-text-primary);-webkit-tap-highlight-color:transparent;margin:0;padding:0!important;}.jobzeek_header_container {position:fixed;top:0;right:0;left:0;background-color:var(--color-header-bg);border-bottom:1px solid;border-color:var(--color-border-default);height:60px;z-index:1001;}.jobzeek_header_wrapper {display:flex;align-items:center;justify-content:space-between;max-width:1200px;height:60px;margin:0 auto;padding:0 15px;}.header_left {display:flex;align-items:center;}.header_left .menu_button {display:none;}.header_left .menu_button svg:last-child {display:none;}.nav_active .header_left .menu_button svg:first-child {display:none;}.nav_active .header_left .menu_button svg:last-child {display:block;}.header {margin-right:15px;}.header h1, .header h2 {font-size:24px;white-space:nowrap;margin:0;}.header a:not(.header .header_image_wrapper) {color:var(--color-text-primary);}.header a:not(.header .header_image_wrapper):hover {color:var(--color-accent);}.header p {display:none;}.header .header_image_wrapper {display:block;line-height:0;}.header .header_image_wrapper img {max-height:52px;padding:10px 0;}.jobzeek_navigation ul {display:flex;align-items:center;margin:0;padding:0;}.jobzeek_navigation ul li {list-style:none;margin:0;padding:0;position:relative;}.jobzeek_navigation ul li a {display:flex;align-items:center;color:var(--color-text-primary);line-height:60px;white-space:nowrap;padding:0 15px;}.jobzeek_navigation ul li a:hover {color:var(--color-accent);}.jobzeek_navigation ul li svg:not(.arrow_icon svg) {margin-right:15px;}.jobzeek_navigation ul li .arrow_icon {display:block;line-height:0;margin-left:6px;}.jobzeek_navigation ul li .arrow_icon svg {width:15px;height:15px;}.jobzeek_navigation ul li.active .arrow_icon svg, .jobzeek_navigation ul > li > .active .arrow_icon svg {transform:rotate(180deg);}.jobzeek_navigation li ul {display:block;position:absolute;top:52px;left:0;background-color:#ffffff;box-shadow:0px 10px 50px rgb(0 0 0 / 10%);border:1px solid;border-color:var(--color-border-default);border-radius:7px;opacity:0;visibility:hidden;transform:translateY(-5px);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, max-height .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;margin:0;padding:5px 0;}.jobzeek_navigation li.active ul, .jobzeek_navigation li ul.show {opacity:1;visibility:visible;transform:translateY(0);}.jobzeek_navigation li ul li a {line-height:44px;}.header_right {display:flex;align-items:center;position:relative;}.notification_button:before {content:'';position:absolute;top:12px;right:12px;width:10px;height:10px;background-color:var(--color-indicator);border-radius:50%;animation: indicator 1s ease infinite;}.notification_wrapper {display:none;position:fixed;top:50%;left:50%;width:100%;max-width:480px;z-index:1001;transform:translate(-50%, -50%);}.ntfcn_active .notification_wrapper {display:block;}.notification_wrapper .Image {background-color:var(--color-notification-bg);box-shadow:0 20px 50px rgb(0 0 0 / 20%);border-radius:7px;margin:0 15px;}.notification_wrapper .widget_title {display:flex;align-items:center;justify-content:space-between;margin:0;padding:5px 5px 5px 15px;}.notification_wrapper .image_link {display:block;line-height:0;}.notification_wrapper .image_link img {width:100%;}.notification_wrapper .caption {padding:15px;}.notification_wrapper .caption a:hover {text-decoration:underline;}.top_height {height:60px;margin-bottom:30px;}.error_wrapper {display:flex;align-items:center;flex-direction:column;text-align:center;max-width:1200px;margin:40px auto;padding:0 15px;}.error_wrapper .error_illustration {margin-bottom:30px;}.error_wrapper .error_illustration svg {width:100%;height:100%;max-width:500px;}.error_wrapper h3 {font-size:22px;}.error_wrapper p {margin:0 0 30px;}.jobzeek_content_wrapper {display:flex;justify-content:space-between;max-width:1200px;margin:0 auto 50px;padding:0 15px;}.isPage .jobzeek_content_wrapper {display:block;}.jobzeek_index_post {width:calc(100% - (300px + 30px));}.isPage .jobzeek_index_post {width:100%;}.widget_under_header .widget {margin:0 0 15px;}.search_box_container {background-color:var(--color-search-box-bg);box-shadow:0 4px 8px #dedede;margin-bottom:30px;padding:30px 0;}.search_box_wrapper {max-width:1200px;margin:0 auto;padding:0 15px;}.search_form {display:flex;gap:15px;position:relative;}.search_icon {position:absolute;top:10px;left:12px;line-height:0;}.search_icon svg {stroke:var(--color-accent);}.search_form .search_input {background-color:var(--color-search-box-input-bg);color:var(--color-text-primary);border:1px solid;border-color:var(--color-search-box-border);border-radius:7px;outline:none;text-overflow:ellipsis;width:-webkit-fill-available;height:44px;padding:0 48px;}.search_form .search_input::placeholder {color:var(--color-text-secondary);}.search_form .search_input:focus {border-color:var(--color-accent);}.search_form .search_input:focus::placeholder {opacity:.5;}.search_form .search_input::-webkit-search-cancel-button {position:absolute;top:10px;right:10px;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7,12l6.6,6.6l-0.7,0.7L12,12.7l-6.6,6.6l-0.7-0.7l6.6-6.6L4.6,5.4l0.7-0.7l6.6,6.6l6.6-6.6l0.7,0.7L12.7,12z' fill='%23000000'/%3E%3C/svg%3E");-webkit-appearance: none;height: 24px;width: 24px;cursor:pointer;}.content_tabs {position:sticky;top:60px;background-color:var(--color-content-tabs-bg);z-index:2;}.content_tabs .widget {margin-bottom:15px;}.content_tabs .widget .cloud {display:flex;align-items:center;border-bottom:1px solid;border-color:var(--color-border-default);white-space:nowrap;overflow:hidden;scroll-behavior:smooth;}.content_tabs .widget .cloud a {display:flex;align-items:center;color:var(--color-text-secondary);user-select:none;padding:15px;position:relative;}.content_tabs .widget .cloud a:hover, .content_tabs .widget .cloud a.selected {color:var(--color-accent);}.content_tabs .widget .cloud a.selected {font-weight:500;}.content_tabs .widget .cloud a.selected:before {content:'';position:absolute;bottom:0;left:0;width:100%;height:1px;background-color:var(--color-accent);}.content_tabs .widget .cloud .label_count {background-color:var(--color-label-count-bg);border-radius:4px;font-size:12px;margin-left:7px;padding:0 6px;}.content_tabs .widget .cloud a:hover .label_count, .content_tabs .widget .cloud a.selected .label_count {background-color:var(--color-accent);color:var(--color-text-white);}.content_tabs .left_arrow, .content_tabs .right_arrow {display:none;position:absolute;top:0;line-height:0;cursor:pointer;z-index:1;padding:13px;}.content_tabs .left_arrow {left:0;background:linear-gradient(270deg, rgba(255, 255, 255, 0) 0px, rgb(255, 255, 255) 50%);padding-right:42px;padding-left:5px;}.content_tabs .right_arrow {right:0;background:linear-gradient(90deg, rgba(255, 255, 255, 0) 0px, rgb(255, 255, 255) 50%);padding-right:5px;padding-left:42px;}.content_tabs .left_arrow.active, .content_tabs .right_arrow.active {display:flex;}.content_tabs .left_arrow:hover svg, .content_tabs .right_arrow:hover svg {color:var(--color-accent);}.FeaturedPost {margin-bottom:15px;position:relative;}.FeaturedPost .widget_title {display:flex;align-items:center;justify-content:space-between;position:absolute;top:0;right:0;left:0;border-bottom:1px solid;border-color:var(--color-border-default);color:var(--color-accent);user-select:none;margin:0;padding:10px 15px;}.FeaturedPost:hover .widget_title {border-color:var(--color-accent);}.FeaturedPost .widget_title svg {width:18px;height:18px;}.FeaturedPost .post_outer {padding-top:59px;overflow:hidden;position:unset;}.FeaturedPost .post_header_end {display:flex;align-items:flex-end;flex-direction:column;gap:5px;}.query_empty .no_results_image {line-height:0;text-align:center;margin-bottom:20px;}.no_results_illustration {margin:30px 0;}.no_results_illustration svg {width:100%;height:100%;max-width:160px;}.query_empty h3 {font-size:16px;}.query_empty p {margin:0 0 15px;}.query_empty ul {margin:0;padding:0 0 0 25px;}.query_empty span {display:block;text-align:center;margin-top:30px;}.isMultipleItems .blog_posts {display:grid;grid-template-columns:1fr 1fr;grid-gap:15px;}.layout_list.isMultipleItems .blog_posts {grid-template-columns:1fr;}.post_outer {border:1px solid;border-color:var(--color-border-default);border-radius:7px;padding:15px;position:relative;}.isSingleItem .blog_posts .post_outer {border:none;border-radius:0;margin:0;padding:0;}.post_outer:not(.isSingleItem .blog_posts .post_outer):hover, .FeaturedPost:hover .post_outer {background-color:var(--color-accent-hover);border-color:var(--color-accent);}.post_detail {display:flex;flex-direction:column;justify-content:space-between;height:100%;}.post_header {display:flex;align-items:center;gap:15px;}.post_top {display:flex;align-items:center;}.post_thumbnail {line-height:0;flex:0 0 auto;margin-right:15px;}.post_thumbnail img {width:60px;height:60px;object-fit:cover;border-radius:7px;}h2.post_title {font-size:16px;margin:0;}h2.post_title a {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;color:var(--color-text-primary);}h2.post_title a:before {content:'';position:absolute;top:0;right:0;bottom:0;left:0;}.post_bottom {margin-top:15px;}.post_snippet {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;color:var(--color-text-secondary);}.post_header_end {place-self:flex-start;margin-left:auto;}.post_labels a {display:block;border:1px solid;border-color:var(--color-border-default);border-radius:30px;font-size:13px;color:var(--color-text-secondary);white-space:nowrap;padding:5px 12px;position:relative;}.post_labels a:hover {background-color:var(--color-accent-hover);color:var(--color-accent);border-color:var(--color-accent);}.post_labels a:nth-child(n+2) {display:none;}.post_footer {display:flex;align-items:center;gap:10px;margin-top:15px;}.post_date .publishing_time, .post_date .update_time {display:flex;align-items:center;gap:3px;font-size:13px;color:var(--color-text-secondary);}.isPost .post_date .publishing_time {white-space:nowrap;}.post_date .publishing_time .published {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;overflow:hidden;}.post_date .update_time {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;overflow:hidden;color:var(--color-accent);}.post_date .update_time .circle {display:inline-block;width:3px;height:3px;background-color:var(--color-circle-dot-bg);border-radius:50%;vertical-align:middle;margin-right:7px;}.post_date svg {width:18px;height:18px;margin-right:2px;}.share_this_post {position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);width:100%;max-width:600px;z-index:1002;opacity:0;visibility:hidden;transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;}.share_this_post.active, .isPost.share_active .share_this_post {opacity:1;visibility:visible;}.share_inside {background-color:var(--color-share-bg);box-shadow:0 20px 50px rgb(0 0 0 / 20%);border-radius:7px;opacity:0;visibility:hidden;transform:translateY(50px);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;margin:0 15px;}.share_this_post.active .share_inside, .isPost.share_active .share_this_post .share_inside {opacity:1;visibility:visible;transform:translateY(0);}.share_inside .share_title {display:flex;align-items:center;justify-content:space-between;font-size:18px;font-weight:500;padding:10px 5px 10px 15px;}.share_illustration {text-align:center;padding:15px 0;}.share_illustration svg {width:100%;height:100%;max-width:320px;}.share_content {display:flex;align-items:center;flex-wrap:wrap;gap:15px;padding:15px;}.share_content a {display:flex;align-items:center;flex-direction:column;flex:1 0 auto;gap:4px;color:var(--color-text-secondary);border-radius:7px;font-size:12px;}.share_content .whatsapp:hover {color:#128c7e;}.share_content .twitter:hover {color:#1da1f2;}.share_content .twitter:hover {color:#1da1f2;}.share_content .facebook:hover {color:#4267b2;}.share_content .linkedIn:hover {color:#0077b5;}.share_content .telegram:hover {color:#0088cc;}.share_content .pinterest:hover {color:#E60023;}.share_content .copy_link_button:hover {color:var(--color-accent);}.get_url {position:absolute;margin:0;padding:0;outline:0;border:0;width:1px;height:0;opacity:0;}.breadcrumbs {color:var(--color-text-secondary);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;margin-bottom:20px;}.breadcrumbs > *:not(:last-child):after {content:'/';margin:0 3px;}.breadcrumbs a {display:inline-block;}.breadcrumbs a:hover {text-decoration:underline;}h1.entry_post_title {font-size:26px;margin:0;}.isPage h1.entry_post_title {margin-bottom:24px;}.entry_post_date_ap {margin:15px 0 24px;}.entry_post_date_ap .post_date {display:flex;align-items:center;gap:10px;}.entry_post_bookmark {display:none;}.bookmark_empty {display:none;margin-top:45px;}.bookmark_empty.empty {display:block;}.entry_post_share {display:none;}.entry_post_share_ap {display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-top:24px;}.entry_post_share_ap .facebook {background-color:#4267b2!important;}.entry_post_share_ap .whatsapp {background-color:#128c7e!important;}.entry_post_share_ap .telegram {background-color:#0088cc!important;}.isPost .post_body {border-bottom:1px solid;border-color:var(--color-border-default);margin-bottom:30px;padding-bottom:30px;}#post_middle {text-align:left;word-break:break-word;}#post_middle h1, #post_middle h2, #post_middle h3, #post_middle h4, #post_middle h5, #post_middle h6 {margin:28px 0 15px;}#post_middle h1:target::before, #post_middle h2:target::before, #post_middle h3:target::before, #post_middle h4:target::before, #post_middle h5:target::before, #post_middle h6:target::before {content:'';display:block;height:80px;margin:-80px 0 0;}#post_middle a:not(h3.post_title a, .jobzeek_button, .share_content a, .bookmark_page ul li a):hover {text-decoration:underline;}#post_middle img:not(.job_posting_thumbnail img, .post_thumbnail img) {border-radius:7px;max-width:100%;}#post_middle a[style="margin-left: 1em;margin-right: 1em;text-align: center;"], #post_middle a[style="display: block;padding: 1em 0;text-align: center;"], #post_middle a[style="display: block;padding: 1em 0px;text-align: center;"], #post_middle a[style="margin-left: 1em;margin-right: 1em;"], #post_middle a[style="margin-left: 1em;margin-right: 1em;text-align: center;"], #post_middle a[style="display: block; padding: 1em 0; text-align: center; clear: right; float: right;"] {display:inline-block!important;line-height:0!important;margin:0!important;padding:0!important;float:none!important;}.post_middle_ap {margin-top:24px;}.job_posting_container {margin-bottom:30px;}.isMultipleItems .job_posting_container {margin:0;}.job_posting_start {border-bottom:1px solid;border-color:var(--color-border-default);margin-bottom:30px;padding-bottom:30px;}.isMultipleItems .job_posting_start {border:none;margin:0;padding:0;}.job_posting_header_start {display:flex;align-items:center;margin-bottom:15px;}.job_posting_thumbnail {flex:0 0 auto;line-height:0;}.isMultipleItems .job_posting_thumbnail, .isMultipleItems .job_posting_header_start, .isMultipleItems .job_posting_post_date, .isMultipleItems .job_posting_button, .isMultipleItems .job_posting_end {display:none;}.job_posting_thumbnail img {width:85px;border-radius:7px;}.job_posting_title {font-size:20px;font-weight:700;margin-left:15px;}.job_info {display:flex;align-items:center;gap:7px;margin-bottom:8px;}.job_info svg {width:20px;height:20px;flex:0 0 auto;}.job_posting_post_date {margin-top:25px;}.job_posting_post_date .post_date {display:flex;align-items:center;gap:10px;margin:0;}.job_posting_button {display:flex;align-items:center;flex-wrap:wrap;gap:10px;margin-top:20px;}.job_posting_bookmark_button .bookmark span:last-child {display:none;}.job_posting_bookmark_button .bookmark.bookmarked span:first-child {display:none;}.job_posting_bookmark_button .bookmark.bookmarked span:last-child {display:block;}.bookmark_page {max-width:838px;}.bookmark_page ul {margin:0;padding:0;}.bookmark_page ul li {border:1px solid;border-color:var(--color-border-default);border-radius:7px;list-style:none;margin:0;padding:15px;position:relative;}.bookmark_page ul li:not(:last-child) {margin-bottom:15px;}.bookmark_page ul li:hover {background-color:var(--color-accent-hover);border-color:var(--color-accent);}.bookmark_page ul li .post_title {font-size:16px;font-weight:700;}.bookmark_page ul li .post_title a {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;color:var(--color-text-primary);}.bookmark_page ul li .post_title a:before {content:'';position:absolute;top:0;right:0;bottom:0;left:0;}.bookmark_empty_illustration {margin-bottom:30px;}.bookmark_empty_illustration svg {width:100%;height:100%;max-width:300px;}.bookmark_empty h2 {font-size:16px;}.bookmark_empty p {margin:0;}.bottom_bar_menu {display:none;}.scam_warning {margin-bottom:0!important;}.author_box {display:flex;align-items:flex-start;border:1px solid;border-color:var(--color-border-default);border-radius:7px;margin-top:30px;padding:15px;}.author_box .author_photo {flex:0 0 auto;line-height:0;margin-right:15px;position:relative;}.author_box .author_photo:after {content:'';background:var(--color-accent) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%23fff' stroke-width='3px' /%3E%3C/svg%3E") center / .7rem no-repeat;background-size:.5rem;width:.75rem;height:.75rem;border:1px solid;border-color:var(--color-comment-avatar-check-bg);border-radius:50%;position:absolute;right:-3px;bottom:0;}.author_box .author_photo img {width:40px;height:40px;border-radius:50%;}.author_box .author_meta .author_name {font-size:16px;font-weight:700;margin-bottom:5px;}.author_box .author_bio a:hover {text-decoration:underline;}#baca_juga {display:inline-block;border:1px solid;border-color:var(--color-border-default);border-radius:7px;margin:24px 0;padding:15px;}.baca_juga_wrap strong {display:block;font-size:16px;margin-bottom:15px;}.baca_juga_wrap ul {margin:0;padding:0 0 0 30px;}.baca_juga_wrap ul li:not(:last-child) {margin-bottom:10px;}.related_posts {margin-top:30px;}.related_posts ul {display:grid;grid-template-columns:1fr 1fr;grid-gap:15px;margin:0;padding:0;}.related_posts ul li {border:1px solid;border-color:var(--color-border-default);border-radius:7px;list-style:none;margin:0;padding:15px;position:relative;}.related_posts ul li:hover {background-color:var(--color-accent-hover);border-color:var(--color-accent);}.related_posts_detail {display:flex;align-items:center;}.related_posts_top {flex:0 0 auto;margin-right:10px;}.related_posts.no_thumbnail .related_posts_top {display:none;}.related_posts_thumbnail {line-height:0;}.related_posts_thumbnail img {width:60px;height:60px;object-fit:cover;border-radius:7px;}.related_posts_title {font-size:16px;font-weight:700;}.related_posts_title a {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;color:var(--color-text-primary);}.related_posts_title a:before {content:'';position:absolute;top:0;right:0;bottom:0;left:0;}.comments {margin-top:30px;}.comments .hidden {display:none;}.comments .jtc_button.large {display:flex;border-color:var(--color-text-primary);color:var(--color-text-primary);background-color:transparent!important;}.comments .jtc_button.large:hover {border-color:var(--color-accent);color:var(--color-accent);}.comment_content_wrapper {display:none;}.comment_header_wrapper {display:flex;align-items:center;justify-content:space-between;margin-bottom:15px;}.comment_header_title {font-size:16px;font-weight:700;}.comment_header_sort {display:flex;align-items:center;font-size:13px;color:var(--color-text-secondary);cursor:pointer;}.comment_header_sort:hover {color:var(--color-accent);}.comment_header_sort:before {content:'Terbaru';}.comment_header_sort.active:before {content:'Terlama';}.comment_header_sort svg {width:21px;height:21px;margin-left:7px;}.comment_header_sort svg:last-child {display:none;}.comment_header_sort.active svg:first-child {display:none;}.comment_header_sort.active svg:last-child {display:block;}.comment_text.has_deleted {margin:0!important;}.comment_add {text-align:center;}.comment_add a {margin:15px 0 30px;}.comment_message {display:flex;margin-bottom:15px;}.comment_message svg {flex:0 0 auto;margin-right:7px;}.comment_form #threaded_comment_form {border:1px solid;border-color:var(--color-border-default);border-radius:7px;margin:0 0 15px;padding:15px;}#threaded_comment_form {margin-top:24px;}#comment_editor {background-color:transparent;border:none;}.comments ol, .comments ul {margin:0;padding:0;}.comments ol {display:flex;flex-direction:column;}.comments ol.active {flex-direction:column-reverse;}.comments ol li, .comments ul li {list-style:none;margin:0;padding:0;}.comments ol > li {border:1px solid;border-color:var(--color-border-default);border-radius:7px;margin-bottom:15px;padding:15px;}.comment_block {display:flex;align-items:flex-start;}.comment_avatar, .comment_bio_avatar {flex:0 0 auto;line-height:0;position:relative;}.comment_avatar.admin:after, .comment_bio_avatar.admin:after {content:'';background:var(--color-accent) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12' fill='none' stroke='%23fff' stroke-width='3px' /%3E%3C/svg%3E") center / .7rem no-repeat;background-size:.5rem;border:1px solid;border-color:var(--color-comment-avatar-check-bg);border-radius:50%;width:.75rem;height:.75rem;position:absolute;right:-2px;bottom:-2px;}.comment_avatar .avatar_img {width:37px;height:37px;border-radius:50%;}.comment_content {width:100%;margin-left:12px;}.comment_header {display:flex;align-items:center;justify-content:space-between;margin-bottom:15px;}.comment_header_end {position:relative;}.option_menu_wrapper {position:absolute;top:43px;right:0;border:1px solid;border-color:var(--color-border-default);box-shadow:0 10px 25px -3px rgb(0 0 0 / 10%);border:1px solid;border-color:var(--color-border-default);border-radius:7px;z-index:1;opacity:0;visibility:hidden;transform:translateY(5px);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, max-height .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;}.option_menu_wrapper.active {opacity:1;visibility:visible;transform:translateY(0);}.option_menu_wrapper a {display:block;color:var(--color-text-primary);white-space:nowrap;padding:10px 15px;}.option_menu_wrapper a:hover {color:var(--color-accent);}.comment_user {font-weight:700;color:var(--color-text-primary);}.comment_user:hover {color:var(--color-accent);}.comment_date {font-size:13px;color:var(--color-text-secondary);}.comment_actions {margin:24px 0 0 50px;}.comment_replies {margin-left:50px;}.thread_toggle {display:inline-flex;align-items:center;color:var(--color-accent);user-select:none;cursor:pointer;margin:24px 0;}.thread_toggle svg {margin-right:7px;}.thread_show:checked + .comment_replies .thread_toggle svg {transform:rotate(180deg);}.show_all {display:none;}.thread_show:checked + .comment_replies .show_all {display:block;}.thread_show:checked + .comment_replies .show_less {display:none;}.thread_show:checked + .comment_replies ul {display:none;}.comment_replies ~ .comment_actions {display:none;}.comment_reply:not(.comment_add .comment_reply, .comment_actions .comment_reply) {margin-top:24px;}.thread_show:checked + .comment_replies .comment_reply {margin:0;}.comment_reply svg {transform:rotate(180deg);}.comment_replies ul li:not(:last-child) {margin-bottom:24px;}.comment_replies .comment_avatar .avatar_img {width:30px;height:30px;}.comment_bio {position:fixed;top:50%;left:50%;transform:translate(-50%, -50%);z-index:1002;opacity:0;visibility:hidden;}.comment_bio.active {opacity:1;visibility:visible;}.comment_bio_content {background-color:var(--color-comment-bio-bg);border:1px solid;border-color:var(--color-border-default);border-radius:7px;width:380px;max-width:calc(100vw - 30px);opacity:0;visibility:hidden;transform:scale(.95);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, max-height .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;}.comment_bio.active .comment_bio_content {opacity:1;visibility:visible;transform:scale(1);}.comment_bio_header {display:flex;align-items:center;border-bottom:1px solid;border-color:var(--color-border-default);padding:5px 15px 5px 5px;}.comment_bio_info {padding:15px;}.comment_bio_info_top {display:flex;align-items:center;}.comment_bio_title {font-size:16px;font-weight:700;margin-left:15px;}.comment_bio_avatar {margin-right:12px;}.comment_bio_avatar img {width:37px;border-radius:50%;}.comment_bio_user {font-size:16px;font-weight:700;}.comment_bio_info_middle {margin:15px 0 24px;}.comment_bio_info_middle .comment_text {display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden;}.comment_bio_info_middle .comment_text span {display:block;color:var(--color-text-secondary);}.comment_bio_info_bottom a {width:100%;}.blog_pager {display:flex;align-items:center;justify-content:center;}.blog_pager .loading, .blog_pager .no_results {display:none;}.blog_pager .loading {cursor:wait;}.blog_pager .no_results.show {display:flex;}.blog_pager button {margin-top:30px;}.jobzeek_sidebar {max-width:300px;width:100%;}.jobzeek_sidebar .widget {margin-bottom:30px;}.sidebar_sticky {position:sticky;top:80px;}.widget_title {font-size:16px;font-weight:700;margin:0 0 15px;}.PopularPosts ul {margin:0;padding:0;}.PopularPosts ul li {list-style:none;margin:0;}.PopularPosts ul li:not(:last-child) {margin-bottom:15px;}.Label .widget_content {max-height:300px;overflow-y:auto;}.Label .widget_content:not(.content_tabs .Label .widget_content) {border:1px solid;border-color:var(--color-border-default);border-radius:7px;}.Label .list {padding:5px 15px;}.Label .widget_content ul {margin:0;padding:0;}.Label .widget_content ul li {list-style:none;margin:0;padding:0;}.Label .widget_content ul li:not(:last-child) {border-bottom:1px solid;border-color:var(--color-border-default);}.Label .widget_content ul li .label_name {display:flex;align-items:center;justify-content:space-between;color:var(--color-text-secondary);padding:10px 0;}.Label .widget_content ul li .label_name:hover {color:var(--color-accent);}.Label .cloud:not(.content_tabs .Label .cloud) {display:grid;grid-template-columns:1fr 1fr;grid-gap:10px;padding:15px;}.Label .cloud:not(.content_tabs .Label .cloud) .label_name {display:flex;align-items:center;justify-content:space-between;border-radius:7px;color:var(--color-text-secondary);box-shadow:0 1px 2px rgb(0 0 0 / 25%), 0 0 1px rgb(0 0 0 / 35%);padding:5px 12px;overflow:hidden;}.Label .cloud:not(.content_tabs .Label .cloud) .label_name:hover {background-color:var(--color-accent-hover);color:var(--color-accent);border-color:var(--color-accent);}.BlogArchive .widget_content {border:1px solid;border-color:var(--color-border-default);border-radius:7px;padding:15px;}.BlogArchive .widget_content.FLAT ul {display:grid;grid-template-columns:1fr 1fr;grid-gap:15px 30px;margin:0;padding:0;}.BlogArchive .widget_content.FLAT ul li {list-style:none;margin:0;padding:0;}.BlogArchive .widget_content.FLAT ul li a {display:flex;align-items:center;justify-content:space-between;color:var(--color-text-secondary);}.BlogArchive .widget_content.FLAT ul li a:hover {color:var(--color-accent);}.BlogArchive .widget_content.HIERARCHY {padding:3px 15px;}.BlogArchive .widget_content.HIERARCHY ul {margin:0;padding:0;}.BlogArchive .widget_content.HIERARCHY ul li {list-style:none;margin:12px 0;padding:0;}.BlogArchive .widget_content.HIERARCHY ul li a {color:var(--color-text-primary);}.BlogArchive .widget_content.HIERARCHY ul li a:hover {color:var(--color-accent);}.BlogArchive .widget_content.HIERARCHY ul li .count {color:var(--color-text-secondary);}.BlogArchive .widget_content.HIERARCHY ul li a:hover .count {color:var(--color-accent);}.BlogArchive .widget_content.HIERARCHY ul li ul {padding-left:15px;}.BlogArchive .widget_content.MENU select {display:flex;align-items:center;background-color:transparent;color:var(--color-text-secondary);border:none;width:100%;}.BlogArchive .widget_content.MENU select option {border:1px solid;border-color:var(--color-border-default);}.Profile .widget_content {border:1px solid;border-color:var(--color-border-default);border-radius:7px;text-align:center;padding:15px;}.Profile .profile_photo {display:inline-block;line-height:0;margin-bottom:15px;position:relative;}.Profile .profile_photo .profile_img {width:75px;height:75px;border-radius:50%;}.Profile .profile_name {margin-bottom:5px;}.Profile .profile_name .profile_link, .Profile .team_member .profile_link .profile_name {font-size:16px;font-weight:500;color:var(--color-text-primary);}.Profile .profile_name .profile_link:hover, .Profile .team_member .profile_link .profile_name:hover {color:var(--color-accent);}.Profile .profile_location {display:flex;align-items:center;justify-content:center;gap:5px;font-size:13px;color:var(--color-text-secondary);margin-bottom:10px;}.Profile .profile_location svg {width:14px;height:14px;fill:currentcolor;}.Profile .profile_bio {margin-bottom:15px;}.Profile .profile_bio a {color:var(--color-accent);}.Profile .profile_bio a:hover {text-decoration:underline;}.Profile .team ul {margin:0;padding:0;}.Profile .team ul li {list-style:none;margin:0;padding:0;}.Profile .team ul li:not(:last-child) {margin-bottom:12px;}.Profile .team_member .profile_link {display:flex;align-items:center;}.Profile .team_member .profile_link .profile_image {display:block;line-height:0;margin-right:12px;}.Profile .team_member .profile_link .profile_image .profile_img {width:50px;height:50px;border-radius:50%;}.subscribe_box {border:1px solid;border-color:var(--color-border-default);border-radius:7px;padding:15px;}.subscribe_box .title {display:flex;align-items:center;gap:10px;}.subscribe_box .title svg {stroke:var(--color-accent);flex:0 0 auto;}.subscribe_box .title path {stroke:var(--color-accent);}.subscribe_box span {display:block;color:var(--color-text-secondary);margin-bottom:15px;}.subscribe_box form {display:flex;flex-direction:column;gap:15px;}.subscribe_box form input {background-color:transparent;color:var(--color-text-primary);border:1px solid;border-color:var(--color-search-box-border);border-radius:7px;outline:none;width:100%;height:46px;padding:0 15px;}.subscribe_box form input:focus {border-color:var(--color-accent);}.subscribe_box form input:focus::placeholder {opacity:.5;}.jobzeek_footer_wrap {background-color:var(--color-footer-bg);color:var(--color-text-primary);}.footer_content {max-width:1200px;margin:0 auto;padding:35px 15px;}.footer_widget {display:flex;align-items:center;justify-content:space-between;gap:25px;}.footer_widget ul {display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:15px;margin:0;padding:0;}.footer_widget ul li {list-style:none;margin:0;padding:0;}.footer_widget ul li a {display:block;color:var(--color-text-primary);}.footer_widget ul li a:hover {color:var(--color-accent);}.footer_widget .LinkList ul li a {line-height:0;}.footer_copyright {background-color:#000000;color:#ffffff;text-align:center;padding:15px;}.footer_copyright a {color:#eed68c;}.footer_copyright a:hover {text-decoration:underline;}.back_to_top {position:fixed;right:15px;bottom:15px;z-index:1;transform:translateY(85px);transition:transform .3s ease;}.back_to_top.show {transform:translateY(0);}.back_to_top .back_to_top_button {background-color:#ffffff;border:1px solid;border-color:var(--color-border-default);}.back_to_top .back_to_top_button:hover {background-color:var(--color-accent-hover);border-color:var(--color-accent);}.jobzeek_alert {border-radius:7px;margin:15px 0;padding:15px;overflow:hidden;position:relative;}.jobzeek_alert:not(.alert_outline) {background-color:var(--color-alert-default-bg);}.jobzeek_alert.alert_outline {border:1px solid;border-color:var(--color-border-default);}.jobzeek_alert.alert_info, .jobzeek_alert.alert_warning, .jobzeek_alert.alert_success, .jobzeek_alert.alert_error {background-repeat:no-repeat;background-size:24px;background-position:15px 15px;padding:15px 15px 15px 50px;}.jobzeek_alert.alert_info {background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z' fill='%2300a7e6'/%3E%3C/svg%3E");}.jobzeek_alert.alert_info:not(.alert_outline) {background-color:var(--color-alert-info-bg);}.jobzeek_alert.alert_warning {background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13,13H11V7H13M13,17H11V15H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z' fill='%23ecb621'/%3E%3C/svg%3E");}.jobzeek_alert.alert_warning:not(.alert_outline) {background-color:var(--color-alert-warning-bg);}.jobzeek_alert.alert_success {background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z' fill='%2341ba79'/%3E%3C/svg%3E");}.jobzeek_alert.alert_success:not(.alert_outline) {background-color:var(--color-alert-success-bg);}.jobzeek_alert.alert_error {background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.2,16.06L3.88,12L2.2,7.94L6.26,6.26L7.94,2.2L12,3.88L16.06,2.2L17.74,6.26L21.8,7.94L20.12,12L21.8,16.06L17.74,17.74L16.06,21.8L12,20.12L7.94,21.8L6.26,17.74L2.2,16.06M13,17V15H11V17H13M13,13V7H11V13H13Z' fill='%23c00827'/%3E%3C/svg%3E");}.jobzeek_alert.alert_error:not(.alert_outline) {background-color:var(--color-alert-error-bg);}.jobzeek_alert.alert_info:before, .jobzeek_alert.alert_warning:before, .jobzeek_alert.alert_success:before, .jobzeek_alert.alert_error:before {content:'';position:absolute;top:45px;left:27px;height:calc(100% - 60px);border-left:1px solid;}.jobzeek_alert.alert_info:before {border-color:var(--color-alert-text-info);}.jobzeek_alert.alert_warning:before {border-color:var(--color-alert-text-warning);}.jobzeek_alert.alert_success:before {border-color:var(--color-alert-text-success);}.jobzeek_alert.alert_error:before {border-color:var(--color-alert-text-error);}.jobzeek_alert.alert_info.alert_outline {border-color:var(--color-alert-text-info);}.jobzeek_alert.alert_warning.alert_outline {border-color:var(--color-alert-text-warning);}.jobzeek_alert.alert_success.alert_outline {border-color:var(--color-alert-text-success);}.jobzeek_alert.alert_error.alert_outline {border-color:var(--color-alert-text-error);}.jobzeek_alert .alert_message strong {display:block;margin-bottom:10px;}.jobzeek_alert.alert_info .alert_message strong {color:var(--color-alert-text-info);}.jobzeek_alert.alert_warning .alert_message strong {color:var(--color-alert-text-warning);}.jobzeek_alert.alert_success .alert_message strong {color:var(--color-alert-text-success);}.jobzeek_alert.alert_error .alert_message strong {color:var(--color-alert-text-error);}.jobzeek_alert .alert_message a:not(.jobzeek_button) {display:inline-block;color:var(--color-text-primary);text-decoration:underline;}.jobzeek_button {display:inline-flex;align-items:center;justify-content:center;font-size:14px;font-weight:500;color:var(--color-text-white);background-color:transparent;outline:none;border:none;border-radius:7px;padding:0 15px;cursor:pointer;user-select:none;white-space:nowrap;position:relative;}.jobzeek_button:not(.unelevated, .raised) {color:var(--color-accent);}.jobzeek_button:not(.disabled, .unelevated, .raised):hover {background-color:var(--color-accent-hover);}.jobzeek_button.outline {border:1px solid;border-color:var(--color-accent);}.jobzeek_button.unelevated:not(.disabled), .jobzeek_button.raised:not(.disabled) {background-color:var(--color-accent);}.jobzeek_button.unelevated:not(.disabled):hover, .jobzeek_button.raised:not(.disabled):hover {box-shadow:inset 0 0 0 99999px rgb(0 0 0 / 15%);}.jobzeek_button.rounded {border-radius:30px;}.jobzeek_button.raised {box-shadow:0 1px 2px 0 rgb(0 0 0 / 30%), 0 1px 3px 1px rgb(0 0 0 / 15%);}.jobzeek_button.disabled {color:var(--color-text-secondary);cursor:not-allowed;}.jobzeek_button.outline.disabled {border-color:rgba(0, 0, 0, 0.12);}.jobzeek_button.unelevated.disabled, .jobzeek_button.raised.disabled {background-color:rgb(0 0 0 / 5%);}.jobzeek_button svg {margin-right:7px;}.jobzeek_button.small {height:32px;padding:0 12px;}.jobzeek_button.small svg {width:16px;height:16px;}.jobzeek_button.medium {height:46px;}.jobzeek_button.large {height:56px;}.button_wrap {display:flex;align-items:center;flex-wrap:wrap;gap:8px;}.jobzeek_button_icon {display:inline-flex;align-items:center;background:none;border:none;outline:none;cursor:pointer;user-select:none;color:#ffffff;border-radius:7px;padding:10px;position:relative;}.jobzeek_button_icon.rounded {border-radius:50%;}.jobzeek_button_icon:not(.unelevated) {color:var(--color-text-primary);}.jobzeek_button_icon:not(.unelevated):hover {color:var(--color-accent);}.jobzeek_button_icon.unelevated {background-color:var(--color-accent);}.jobzeek_button_icon.unelevated:hover {box-shadow:inset 0 0 0 99999px rgb(0 0 0 / 15%);}blockquote {background-color:#eed68c;color:#000000;border-radius:7px;margin:25px 10px 35px 0;padding:15px;position:relative;}blockquote:after {content:'';position:absolute;top:0;right:-10px;bottom:-10px;left:0;background-color:#000000;border-radius:7px;z-index:-1;margin-top:10px;margin-left:10px;}blockquote a {color:var(--color-text-primary);text-decoration:underline;}blockquote span, blockquote small, blockquote footer {display:block;opacity:.5;margin-top:10px;}.jobzeek_table {border:1px solid;border-color:var(--color-border-default);border-radius:7px;overflow-x:auto;}.jobzeek_table table {font-size:14px;border:0;border-collapse:collapse;min-width:100%;white-space:nowrap;margin:0;}.jobzeek_table .table_primary thead {background-color:var(--color-table-primary-bg);color:var(--color-table-text-primary);}.jobzeek_table .table_warning thead {background-color:var(--color-table-warning-bg);color:var(--color-table-text-warning);}.jobzeek_table .table_success thead {background-color:var(--color-table-success-bg);color:var(--color-table-text-success);}.jobzeek_table .table_error thead {background-color:var(--color-table-error-bg);color:var(--color-table-text-error);}.jobzeek_table table thead th {font-weight:700;border-bottom:1px solid;border-color:var(--color-border-default);text-align:center;}.jobzeek_table table th, .jobzeek_table table td {padding:15px;}.jobzeek_table table th {font-weight:400;}.jobzeek_table table tbody tr:not(:first-child) {border-top:1px solid;border-color:var(--color-border-default);}.jobzeek_table .table_stripped tbody tr:nth-of-type(2n+1), .jobzeek_table .table_hovered tbody tr:hover {background-color:var(--color-table-hover-bg);}.jobzeek_table.table_sticky {max-height:400px;overflow:auto;}.jobzeek_table.table_sticky table {border-collapse:separate;border-spacing:0;}.jobzeek_table.table_sticky table thead {position:sticky;top:0;}.jobzeek_table.table_sticky table thead:not(.jobzeek_table .table_primary thead, .jobzeek_table .table_warning thead, .jobzeek_table .table_success thead, .jobzeek_table .table_error thead) {background-color:var(--color-table-header-sticky);}.jobzeek_table.table_sticky table tbody tr:not(:last-child) th, .jobzeek_table.table_sticky table tbody tr:not(:last-child) td {border-bottom:1px solid;border-color:var(--color-border-default);}.jobzeek_collapse {display:block;margin:15px 0;}.jobzeek_collapse .collapse_panel {background-color:var(--color-collapsible-bg);border-radius:7px;}.jobzeek_collapse .collapse_panel:not(:last-child) {margin-bottom:15px;}.jobzeek_collapse .collapse_panel .collapse_header {display:flex;align-items:center;justify-content:space-between;font-size:14px;font-weight:700;padding:15px;cursor:pointer;}.jobzeek_collapse .collapse_panel .collapse_header:after {content:'';background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z' fill='%232447f9'/%3E%3C/svg%3E") no-repeat center;flex:0 0 auto;width:24px;height:24px;margin-left:15px;}.jobzeek_collapse .collapse_panel .collapse_header.active:after {background:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19,13H5V11H19V13Z' fill='%235f6368'/%3E%3C/svg%3E") no-repeat center;}.jobzeek_collapse .collapse_panel .collapse_content {display:none;font-size:14px;padding:0 15px 15px;}.jobzeek_collapse .collapse_panel .collapse_content.open {display:block;}.jobzeek_highlight {position:relative;}pre {background-color:var(--color-highlighter-bg);color:var(--color-text-secondary);border:1px solid;border-color:var(--color-higlighter-border);border-radius:7px;font-size:14px;line-height:1.4;overflow-x:auto;margin:15px 0;padding:45px 15px 15px;}pre[data-lang] {padding-top:67px;}pre[data-lang]:before {content:attr(data-lang);position:absolute;top:0;right:0;left:0;border-bottom:1px solid;border-color:var(--color-higlighter-border);padding:15px;}code:not(pre code) {font-size:14px;word-break:break-word;background-color:var(--color-body-bg);color:var(--color-text-secondary);border:1px solid;border-color:var(--color-border-default);border-radius:7px;padding:0 4px;}.pre_copy_button {position:absolute;top:15px;right:15px;cursor:pointer;}.pre_copy_button:hover {color:var(--color-accent);}.manual_related_post {background-color:var(--color-highlighter-bg);border-left:3px solid;border-color:var(--color-accent);padding:15px;}.media_player {height:0;margin:15px 0;padding-bottom:56.25%;position:relative;overflow:hidden;}.media_player embed, .media_player iframe, .media_player object, .media_player .yt_thumb {width:100%;height:100%;object-fit:cover;border-radius:7px;position:absolute;top:0;left:0;cursor:pointer;}.media_player .yt_thumb {filter:brightness(.6);}.media_player .play_button {position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);line-height:0;z-index:1;cursor:pointer;}.media_player .play_button svg {fill:#ffffff;width:50px;height:50px;opacity:.6;}.media_player:hover .play_button svg {opacity:1;}.post_reference {font-size:13px;line-height:1.5em;opacity:.7;}#toc_wrap {display:inline-block;border:1px solid;border-color:var(--color-border-default);border-radius:7px;word-break:normal;margin:15px 0;padding:15px 15px 5px;}.toc_header {display:flex;align-items:center;justify-content:space-between;gap:7px;margin-bottom:10px;}.toc_title {font-size:16px;font-weight:700;}.show_hide_toc_button {cursor:pointer;padding:0;}.show_hide_toc_button svg:first-child {display:none;}.show_hide_toc_button.hide svg:last-child {display:none;}.show_hide_toc_button.hide svg:first-child {display:block;}#toc_content.hide {display:none;}#toc_content ol {margin:0;padding:0;counter-reset:toc-count;}#toc_content ol li {list-style:none;margin:0;padding:0;position:relative;}#toc_content li > a:before {content:counters(toc-count,'.')'. ';counter-increment:toc-count;color:var(--color-text-secondary);display:inline-block;margin-right:7px;}#toc_content ol li a {display:inline-block;font-size:14px;margin-bottom:10px;}#toc_content ol li a:hover {text-decoration:underline;}#toc_content li ol {padding:0 0 0 18px;}.steps_section {position:relative;}.steps_section:not(.steps_section.done):before {content:'';width:1px;background-color:var(--color-accent);position:absolute;top:0;bottom:0;left:19.5px;}.steps_section .left {margin-right:15px;position:absolute;}.steps_section.done .left:after {display:none;}.steps_section .left .icon {display:flex;background-color:var(--color-step-section-bg);color:var(--color-text-secondary);border:1px solid;border-color:var(--color-accent);border-radius:50%;padding:10px;}.steps_section .left .icon svg {width:18px;height:18px;}.steps_section .right {margin-left:55px;padding:8px 0 25px;}.steps_section .right:before {content:attr(data-step);font-weight:700;color:var(--color-accent);}.jobzeek_product_post_tool {max-width:838px;}.jobzeek_product_post_tool .section:nth-child(1) {border-bottom:1px solid;border-color:var(--color-border-default);margin-bottom:2px;padding-bottom:28px;}.jobzeek_product_post_tool .section:nth-child(11) {border-top:1px solid;border-bottom:1px solid;border-color:var(--color-border-default);margin:2px 0;padding:28px 0;}.jobzeek_product_post_tool .section label:not(.br_text label) {display:block;font-weight:700;margin-bottom:8px;}.jobzeek_product_post_tool .section input:not(#tagbr) {background-color:transparent;color:var(--color-text-primary);border:1px solid;border-color:var(--color-search-box-border);border-radius:7px;outline:none;text-overflow:ellipsis;width:-webkit-fill-available;height:46px;padding:0 15px;}.jobzeek_product_post_tool .section input::placeholder, .jobzeek_product_post_tool .section textarea::placeholder {color:var(--color-text-secondary);}.jobzeek_product_post_tool .section input:not(#tagbr):focus, .jobzeek_product_post_tool .section textarea:focus {border-color:var(--color-accent);}.jobzeek_product_post_tool .section input:not(#tagbr):focus::placeholder, .jobzeek_product_post_tool .section textarea:focus::placeholder {opacity:.5;}.jobzeek_product_post_tool .section textarea {background-color:transparent;color:var(--color-text-primary);border:1px solid;border-color:var(--color-search-box-border);border-radius:7px;outline:none;text-overflow:ellipsis;width:-webkit-fill-available;height:200px;max-width:838px;padding:15px;}.jobzeek_product_post_tool .section .br_text {display:inline-flex;align-items:center;gap:7px;}.snackbar {display:flex;align-items:center;gap:8px;position:fixed;bottom:24px;left:0;right:0;background-color:var(--color-snackbar-bg);box-shadow:rgb(0 0 0 / 10%) 0px 12px 24px 0px;color:var(--color-snackbar-text);border-radius:7px;max-width:fit-content;margin:0 auto;padding:12px 15px;z-index:1002;opacity:0;visibility:hidden;transform:translateY(50px);transition:opacity .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, visibility .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, transform .3s cubic-bezier(0.23, 1, 0.32, 1) 0s, max-height .3s cubic-bezier(0.23, 1, 0.32, 1) 0s;}.snackbar.active {opacity:1;visibility:visible;transform:translateY(0);}.snackbar svg {width:20px;height:20px;fill:var(--color-accent);}.backdrop, .backdrop_notification, .backdrop_secondary {position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;visibility:hidden;z-index:1000;transition:all .3s ease;}.backdrop_secondary {z-index:1001;}.nav_active .backdrop, .share_active .backdrop_secondary, .ntfcn_active .backdrop_notification, .cb_active .backdrop_secondary {background-color:rgb(0 0 0 / 55%);opacity:1;visibility:visible;}.ad_widget {display:none;}.ad_under_header {max-width:1200px;margin:0 auto;padding:0 15px;}.ad_under_header .widget {margin:0 0 30px;}.infeed_ads {grid-column:1 / span 2;background-color:transparent!important;border:none;border-radius:0;padding:0;}.layout_list .infeed_ads {grid-column:1;}#ms_matched_content {margin-top:30px;}#top_ad_content, #middle_ad1_content, #middle_ad2_content, #parallax_ad_content, #bottom_ad_content {margin:24px 0;}#parallax_ad_content {display:none;}.ad_box {display:flex;align-items:center;justify-content:center;border:1px solid;border-color:var(--color-accent);border-radius:7px;color:var(--color-accent);width:100%;height:200px;}.lazyload {background-color:#fafafa;}.next_post {animation-name: fadeInUp;animation-duration: 0.5s;}@keyframes fadeInUp {from {opacity: 0;transform: translate3d(0, 5px, 0);}to {opacity: 1;transform: translate3d(0, 0, 0);}}@keyframes indicator {0% {opacity: 0;}50% {opacity: 1;}100% {opacity: 0;}}.circle_animate {animation:circle 1.5s linear infinite;}@keyframes circle{0%{transform:rotate(0deg);}100%{transform:rotate(360deg) }}@media screen and (max-width:1024px) {.content_tabs .widget .cloud {overflow-x:auto;}.content_tabs .widget .cloud::-webkit-scrollbar {width:0;height:0;}}@media screen and (max-width:768px) {.jobzeek_header_wrapper {padding:0 5px;}.header_left {gap:5px;}.header_left .menu_button {display:inline-flex;}.jobzeek_navigation {position:fixed;top:60px;right:0;left:0;background-color:#ffffff;border-radius:0 0 24px 24px;max-height:0;overflow-y:auto;transition:max-height .5s ease;}.nav_active .jobzeek_navigation {max-height:80vh;}.jobzeek_navigation .navigation_widget {padding:8px 0;}.jobzeek_navigation ul {display:block;}.jobzeek_navigation ul li a {line-height:44px;}.jobzeek_navigation ul li .arrow_icon {margin-left:auto;}.jobzeek_navigation li ul {position:unset;box-shadow:none;border:none;max-height:0;overflow:hidden;padding:0;}.jobzeek_navigation li ul.show {max-height:100vh;}.jobzeek_navigation li ul li a {padding-left:54px;}.jobzeek_content_wrapper {flex-direction:column;}.jobzeek_index_post {width:100%;}.jobzeek_sidebar {max-width:100%;margin-top:30px;}.sidebar_sticky {position:unset;}.footer_widget {flex-direction:column;}}@media screen and (max-width:480px) {.search_form {flex-direction:column;}.isMultipleItems .blog_posts {grid-template-columns:1fr;}.infeed_ads {grid-column:1;}.job_posting_start {flex-direction:column;}.job_posting_button {display:none;}.bottom_bar_menu {position:fixed;bottom:0;right:0;left:0;display:flex;align-items:center;background-color:#ffffff;border-top:1px solid;border-color:var(--color-border-default);z-index:2;padding:10px 15px;}.bottom_bar_menu .apply_button {flex:1;margin-right:5px;}.bottom_bar_menu .apply_button .jobzeek_button {display:flex;}.bottom_bar_menu .bookmark.bookmarked svg {fill:var(--color-accent);stroke:var(--color-accent);}h1.entry_post_title {font-size:22px;}.entry_post_share_ap .whatsapp svg, .entry_post_share_ap .telegram svg {margin:0;}.entry_post_share_ap .whatsapp span, .entry_post_share_ap .telegram span {display:none;}.share_content {justify-content:center;}.share_content a {flex:unset;}.isPost .back_to_top {bottom:80px;}.isArticlePage .back_to_top {bottom:15px;}.isPost .jobzeek_footer_wrap {padding-bottom:67px;}.isArticlePage .jobzeek_footer_wrap {padding:0;}#parallax_ad {display:block;}#parallax_ad_content {display:block;position:relative;overflow:visible;height:700px;}#parallax_ad_content > div {width: 100%;height: 100%;position: absolute;top: 0;left: 0;clip: rect(auto auto auto auto);overflow: hidden;}#parallax_ad_content > div > div {width:100%;height:100%;position:fixed;top:80px;left:0;padding:0 15px;}.related_posts ul {grid-template-columns:1fr;}}
.Label:not(.content_tabs .Label) {border:1px solid;border-color:var(--color-border-default);border-radius:7px;}
.Label:not(.content_tabs .Label) .widget_title {border-bottom:1px solid;border-color:var(--color-border-default);text-align:center;margin:0;padding:15px;}
.Label .cloud .label_title {white-space:nowrap;text-overflow:ellipsis;overflow:hidden;margin-right:7px;}
.Label .cloud .label_count {display:inline-flex;align-items:center;gap:3px;}
.Label .cloud .label_count svg {width:16px;height:16px;fill:none;stroke:currentcolor;}
.Label .cloud:not(.content_tabs .Label .cloud){border:none;}
.bottom_bar_menus {
display:none;
position:fixed;
right:0;
bottom:0;
left:0;
background-color:#ffffff;
}
.bottom_bar_menu_widget ul {
display:flex;
align-items:center;
justify-content:space-around;
border-top:1px solid;
border-color:var(--color-border-default);
margin:0;
padding:5px 15px;
}
.bottom_bar_menu_widget ul li {
list-style:none;
margin:0;
padding:0;
}
.bottom_bar_menu_widget ul li a {
display:flex;
align-items:center;
flex-direction:column;
color:var(--color-text-secondary);
}
.bottom_bar_menu_widget ul li svg {
width:21px;
height:21px;
}
.bottom_bar_menu_widget ul li span {
font-size:11px;
margin-top:3px;
}
.sb_popup {
display:none;
position:fixed;
top:25px;
right:0;
left:0;
background-color:#ffffff;
border-radius:7px;
z-index:9999;
margin:0 15px;
padding:15px;
opacity:0;
visibility:hidden;
transform:translateY(-10px);
transition:all .2s ease;
}
.search_active .sb_popup {
opacity:1;
visibility:visible;
transform:translateY(0);
}
.sb_popup .sb_form {
display:flex;
}
.sb_popup .sb_form .icon {
line-height:0;
margin-right:10px;
}
.sb_popup .sb_form .icon svg {
width:21px;
height:21px;
}
.search_active .backdrop {
opacity:1;
visibility:visible;
background-color:rgb(0 0 0 / 55%);
z-index:9998;
}
@media screen and (max-width:768px) {
.bottom_bar_menus, .sb_popup {
display:block;
}
.back_to_top {
display:none;
}
.jobzeek_footer_wrap {
padding-bottom:50px;
}
}
#float-ads{margin:auto;text-align:center;position:fixed;bottom:0;z-index:1;width:100%;max-width:1100px;transform:translate(-50%,0%);left:50%;line-height:1}#close-float-ads{position:absolute;background:#113585;color:#fff;font-size:12px;padding:4px 8px;line-height:1;width:60px;z-index:1;transform:translate(-50%,-50%);left:50%}#close-float-ads span{font-size:12px!important}#bottom-ads h2{display:none}
]]></b:skin>
</b:if>
<b:template-skin>
<![CDATA[
body#layout, body#layout div.section {
font-family:Arial,sans-serifsans-serif;
}
body#layout {
background-color:transparent;
border:none;
text-align:left;
max-width:768px;
margin:0 auto;
padding:15px;
}
body#layout:before {
content:'Jobzeek v1.1 (9 Januari 2023)';
display:inline-block;
background-color:#000000;
color:#ffffff;
font-size:24px;
font-weight:700;
border-radius:7px;
margin-bottom:30px;
padding:10px 15px;
}
body#layout div.section {
background-color:transparent;
border:1px solid;
border-color:#e2e2e2;
border-radius:7px;
width:-webkit-fill-available;
max-width:100%;
max-height:100%;
margin:0 0 15px;
padding:15px;
}
body#layout div.section > div {
border-radius:7px;
}
body#layout .add_widget a {
color:#0e8136;
}
body#layout #header {
width:50%;
margin-right:15px;
}
body#layout .jobzeek_navigation {
width:50%;
}
body#layout .header_left {
display:flex;
}
body#layout .section h4 {
font-size:14px;
text-transform:uppercase;
margin:0 0 5px;
}
body#layout .locked-widget .widget-content {
border-radius:7px;
}
body#layout .widget-content {
border-radius:0 7px 7px 0;
}
body#layout .visibility .editlink.icon {
border:1px solid;
border-color:#e2e2e2;
border-radius:50%;
padding:6px;
}
body#layout .visibility .editlink.icon:hover {
background-color:#e2e2e2;
}
body#layout .jobzeek_content_wrapper {
display:flex;
}
body#layout .jobzeek_index_post {
margin-right:15px;
width:50%;
}
body#layout .jobzeek_sidebar {
width:50%;
}
body#layout #sidebar_sticky {
position:sticky;
top:15px;
}
body#layout .Blog .widget-content {
height:unset;
}
body#layout .add_widget {
margin-top:15px!important;
}
body#layout .draggable-widget .widget-wrap2 {
background-color:#0e8136;
border-radius:7px 0 0 7px;
}
body#layout .visibility .layout-widget-state.not-visible {
background-image:url('https://4.bp.blogspot.com/-tqL3-mrEM7A/XR_H_P3mFZI/AAAAAAAABSs/4PO1g3CDQbse_mJYzwn-60OQoYMFcq1FQCK4BGAYYCw/s1600/visibility_off_c3_600_24dp.png');
opacity:1;
}
body#layout .ad_under_header .widget-content, body#layout .infeed_ad .widget-content, body#layout .top_ad .widget-content, body#layout .middle_ad1 .widget-content, body#layout .parallax_ad .widget-content, body#layout .middle_ad2 .widget-content, body#layout .bottom_ad .widget-content, body#layout .matched_content .widget-content {
background-color:#f1e0b4;
}
body#layout .ad_under_header .widget-content .editlink.icon, body#layout .infeed_ad .widget-content .editlink.icon, body#layout .top_ad .widget-content .editlink.icon, body#layout .middle_ad1 .widget-content .editlink.icon, body#layout .parallax_ad .widget-content .editlink.icon, body#layout .middle_ad2 .widget-content .editlink.icon, body#layout .bottom_ad .widget-content .editlink.icon, body#layout .matched_content .widget-content .editlink.icon {
border-color:#9d9d9d;
}
body#layout .ad_under_header .widget-content .editlink.icon:hover, body#layout .infeed_ad .widget-content .editlink.icon:hover, body#layout .top_ad .widget-content .editlink.icon:hover, body#layout .middle_ad1 .widget-content .editlink.icon:hover, body#layout .parallax_ad .widget-content .editlink.icon:hover, body#layout .middle_ad2 .widget-content .editlink.icon:hover, body#layout .bottom_ad .widget-content .editlink.icon:hover, body#layout .matched_content .widget-content .editlink.icon:hover {
background-color:#ffffff;
}
]]></b:template-skin>
<b:include name='jqueryScript'/>
<b:defaultmarkups>
<b:defaultmarkup type='Common'>
<b:includable id='bacaJuga'>
<div id='baca_juga'/>
<script>
var obj = {
jumlahBacaJuga: <b:if cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "1px"'>1<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "2px"'/>2<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "3px"'/>3<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "4px"'/>4<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "5px"'/>5<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "6px"'/>6<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "7px"'/>7<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "8px"'/>8<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "9px"'/>9<b:elseif cond='data:skin.vars.optionFeatureBacaJugaNumbPosts == "10px"'/>10</b:if>,
};
var judulBacaJuga = "<b:switch var='data:blog.locale'><b:case value='id'/>Baca Juga<b:default/>Read Also</b:switch>";
</script>
<script>
//<![CDATA[
var bacaJugaJudul=[],bacaJugaNum=0,bacaJugaUrl=[];function bacaJuga(a){for(var u=0;u<a.feed.entry.length;u++){var e=a.feed.entry[u];bacaJugaJudul[bacaJugaNum]=e.title.$t;for(var l=0;l<e.link.length;l++)if("alternate"==e.link[l].rel){bacaJugaUrl[bacaJugaNum]=e.link[l].href,bacaJugaNum++;break}}}function showBacaJuga(a){var u=document.querySelector("#baca_juga"),e=document.createElement("div"),l=document.querySelector("#post_middle").querySelectorAll("div > br, span > br, div > p, span > p"),t=Math.ceil(.5*l.length),n=document.getElementById("related");e.setAttribute("class","baca_juga_wrap");if(void 0!==l[t]){!function(a,u){u.parentNode.insertBefore(a,u.nextSibling)}(u,null!==n?n:l[t]);for(var r=0;r<bacaJugaUrl.length;r++)bacaJugaUrl[r]==a&&(bacaJugaUrl.splice(r,1),bacaJugaJudul.splice(r,1));var c=Math.floor((bacaJugaJudul.length-1)*Math.random());r=0;if(0<bacaJugaJudul.length&&0<obj.jumlahBacaJuga){u.appendChild(e),function(a){null!=(a=a.previousElementSibling)&&"BR"===a.tagName&&(a.style.display="none")}(u);for(var g="<strong>"+judulBacaJuga+"</strong><ul>";r<bacaJugaJudul.length&&r<obj.jumlahBacaJuga;r++)g+='<li><a href="'+bacaJugaUrl[c]+'">'+bacaJugaJudul[c]+"</a></li>",c<bacaJugaJudul.length-1?c++:c=0;e.innerHTML=g+="</ul>"}}}
//]]>
</script>
<b:loop values='data:post.labels' var='label'>
<script expr:src='"/feeds/posts/summary/-/" + data:label.name + "?alt=json-in-script&callback=bacaJuga&max-results=10"'/>
</b:loop>
<script>
showBacaJuga("<data:post.url/>");
</script>
</b:includable>
<b:includable id='backdrop'>
<div class='backdrop'/>
<div class='backdrop_secondary'/>
</b:includable>
<b:includable id='backToTop'>
<div class='back_to_top'>
<button aria-label='Back To Top' class='back_to_top_button jobzeek_button_icon rounded' type='button'>
<b:include name='iconUp'/>
</button>
</div>
</b:includable>
<b:includable id='classConditionalBody'>
<b:class cond='data:view.isHomepage' name='isHomepage'/>
<b:class cond='data:view.isMultipleItems' name='isMultipleItems'/>
<b:class cond='data:view.isSingleItem' name='isSingleItem'/>
<b:class cond='data:view.isPage' name='isPage'/>
<b:class cond='data:view.isPost' name='isPost'/>
<b:class cond='data:view.isError' name='isError'/>
</b:includable>
<b:includable id='iconBookmarkSave'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M5 22V3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v19l-7-6.111L5 22Z'/></svg>
</b:includable>
<b:includable id='iconBookmarkSaved'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M17 5V2H4v17l3-1.5'/><path d='M7 22V5h13v17l-6.5-3.136L7 22Z'/></svg>
</b:includable>
<b:includable id='iconChevronLeft'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m15 18-6-6 6-6'/></svg>
</b:includable>
<b:includable id='iconChevronRight'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m9 18 6-6-6-6'/></svg>
</b:includable>
<b:includable id='iconChevronUp'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m18 15-6-6-6 6'/></svg>
</b:includable>
<b:includable id='iconClock'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 8v4l3 3'/><path d='M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z'/></svg>
</b:includable>
<b:includable id='iconClose'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m6 6 12 12M6 18 18 6 6 18Z'/></svg>
</b:includable>
<b:includable id='iconDotsHorizontal'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M5 12h.01M12 12h.01M19 12h.01M6 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm7 0a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z'/></svg>
</b:includable>
<b:includable id='iconLocation'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 2.25c-3.727 0-6.75 2.878-6.75 6.422 0 4.078 4.5 10.54 6.152 12.773a.739.739 0 0 0 1.196 0c1.652-2.231 6.152-8.692 6.152-12.773 0-3.544-3.023-6.422-6.75-6.422Z'/><path d='M12 11.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z'/></svg>
</b:includable>
<b:includable id='iconMail'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M19 5H5a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2Z'/><path d='m3 7 9 6 9-6'/></svg>
</b:includable>
<b:includable id='iconMenu'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M3 12h18'/><path d='M3 6h18'/><path d='M3 18h18'/></svg>
</b:includable>
<b:includable id='iconNotification'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M20.047 16.473c-1.204-1.473-2.053-2.223-2.053-6.285 0-3.72-1.9-5.044-3.463-5.688a.835.835 0 0 1-.466-.495C13.79 3.072 13.022 2.25 12 2.25s-1.791.823-2.063 1.756a.827.827 0 0 1-.466.494c-1.565.645-3.463 1.965-3.463 5.688-.002 4.062-.852 4.812-2.056 6.285-.499.61-.062 1.527.81 1.527h14.48c.867 0 1.301-.92.805-1.527Z'/><path d='M15 18v.75a3 3 0 0 1-6 0V18'/></svg>
</b:includable>
<b:includable id='iconPlus'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M12 5v14'/><path d='M5 12h14'/></svg>
</b:includable>
<b:includable id='iconReply'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M2.25 10.5H13.5c6 0 9 3 9 9'/><path d='m7.5 4.5-5.25 6 5.25 6'/></svg>
</b:includable>
<b:includable id='iconSearch'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M11 3a8 8 0 1 0 0 16 8 8 0 1 0 0-16z'/><path d='m21 21-4.35-4.35'/></svg>
</b:includable>
<b:includable id='iconShare'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M6 14.25a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z'/><path d='M18 7.5A2.25 2.25 0 1 0 18 3a2.25 2.25 0 0 0 0 4.5Z'/><path d='M18 21a2.25 2.25 0 1 0 0-4.5 2.25 2.25 0 0 0 0 4.5Z'/><path d='m7.96 13.102 8.08 4.544'/><path d='m16.04 6.352-8.08 4.544'/></svg>
</b:includable>
<b:includable id='iconSocmedWhatsApp'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m3 20.999 1.65-3.8a9 9 0 1 1 3.4 2.9l-5.05.9'/><path d='M9 10a.5.5 0 0 0 1 0V9a.5.5 0 1 0-1 0v1Zm0 0a5 5 0 0 0 5 5h1a.5.5 0 0 0 0-1h-1a.5.5 0 0 0 0 1'/></svg>
</b:includable>
<b:includable id='iconSocmedTwitter'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M22 4.009c-1 .49-1.98.689-3 .99-1.121-1.265-2.783-1.335-4.38-.737S11.977 6.322 12 7.999v1c-3.245.083-6.135-1.395-8-4 0 0-4.182 7.433 4 11-1.872 1.247-3.739 2.088-6 2 3.308 1.803 6.913 2.423 10.034 1.517 3.58-1.04 6.522-3.723 7.651-7.742a13.84 13.84 0 0 0 .497-3.753c-.002-.249 1.51-2.772 1.818-4.013v.001Z'/></svg>
</b:includable>
<b:includable id='iconSocmedFacebook'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10v4h3v7h4v-7h3l1-4h-4V8a1 1 0 0 1 1-1h3V3h-3a5 5 0 0 0-5 5v2H7Z'/></svg>
</b:includable>
<b:includable id='iconSocmedLinkedIn'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M18 4H6a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Z'/><path d='M8 11v5'/><path d='M8 8v.01'/><path d='M12 16v-5'/><path d='M16 16v-3a2 2 0 0 0-4 0'/></svg>
</b:includable>
<b:includable id='iconSocmedTelegram'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m15 10-4 4 6 6 4-16-18 7 4 2 2 6 3-4'/></svg>
</b:includable>
<b:includable id='iconSocmedPinterest'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='m8 20 4-9'/><path d='M10.7 13.998c.437 1.263 1.43 2 2.55 2 2.071 0 3.75-1.554 3.75-4a4.999 4.999 0 0 0-7.864-4.104A5 5 0 0 0 7.3 13.698'/><path d='M12 21a9 9 0 1 0 0-18 9 9 0 0 0 0 18Z'/></svg>
</b:includable>
<b:includable id='iconSocmedYouTube'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z'/><path d='m9.75 15.02 5.75-3.27-5.75-3.27v6.54z'/></svg>
</b:includable>
<b:includable id='iconSocmedTikTok'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M9 12a4 4 0 1 0 4 4V4a5 5 0 0 0 5 5'/></svg>
</b:includable>
<b:includable id='iconSocmedInstagram'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M16 4H8a4 4 0 0 0-4 4v8a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4V8a4 4 0 0 0-4-4Z'/><path d='M12 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/><path d='M16.5 7.5v.001'/></svg>
</b:includable>
<b:includable id='iconSocmedCopy'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M18 8h-8a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Z'/><path d='M16 8V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2'/></svg>
</b:includable>
<b:includable id='iconSortDown'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M4 6h7'/><path d='M4 12h7'/><path d='M4 18h9'/><path d='m15 9 3-3 3 3'/><path d='M18 6v12'/></svg>
</b:includable>
<b:includable id='iconSortUp'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M4 6h9'/><path d='M4 12h7'/><path d='M4 18h7'/><path d='m15 15 3 3 3-3'/><path d='M18 6v12'/></svg>
</b:includable>
<b:includable id='iconStarFilled'>
<svg fill='currentColor' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M23.25 9.53h-8.608L12 1.5 9.358 9.53H.75l7.041 4.94L5.05 22.5 12 17.524l6.951 4.976-2.747-8.03 7.046-4.94Z'/></svg>
</b:includable>
<b:includable id='iconUp'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M5.25 11.438 12 4.688l6.75 6.75'/><path d='M12 5.625v13.688'/></svg>
</b:includable>
<b:includable id='iconWarning'>
<svg fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M4.011 20.914H19.99a1.5 1.5 0 0 0 1.32-2.211L13.322 3.867c-.566-1.052-2.075-1.052-2.642 0L2.691 18.703a1.5 1.5 0 0 0 1.32 2.211v0Z'/><path d='M11.73 9.162 12 14.88l.268-5.716a.269.269 0 0 0-.271-.281v0a.27.27 0 0 0-.266.279v0Z'/><path d='M12 18.625a.937.937 0 1 1 0-1.875.937.937 0 0 1 0 1.875Z'/></svg>
</b:includable>
<b:includable id='isArticlePage'>
<script>
$('body').addClass('isArticlePage');
</script>
</b:includable>
<b:includable id='jqueryScript'>
<script>//<![CDATA[
/*! jQuery v3.6.0 | (c) OpenJS Foundation and other contributors | jquery.org/license */
!function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return t(e)}:t(e)}("undefined"!=typeof window?window:this,function(C,e){"use strict";var t=[],r=Object.getPrototypeOf,s=t.slice,g=t.flat?function(e){return t.flat.call(e)}:function(e){return t.concat.apply([],e)},u=t.push,i=t.indexOf,n={},o=n.toString,v=n.hasOwnProperty,a=v.toString,l=a.call(Object),y={},m=function(e){return"function"==typeof e&&"number"!=typeof e.nodeType&&"function"!=typeof e.item},x=function(e){return null!=e&&e===e.window},E=C.document,c={type:!0,src:!0,nonce:!0,noModule:!0};function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e,t)for(r in c)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?n[o.call(e)]||"object":typeof e}var f="3.6.0",S=function(e,t){return new S.fn.init(e,t)};function p(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e)&&("array"===n||0===t||"number"==typeof t&&0<t&&t-1 in e)}S.fn=S.prototype={jquery:f,constructor:S,length:0,toArray:function(){return s.call(this)},get:function(e){return null==e?s.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=S.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return S.each(this,e)},map:function(n){return this.pushStack(S.map(this,function(e,t){return n.call(e,t,e)}))},slice:function(){return this.pushStack(s.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(S.grep(this,function(e,t){return(t+1)%2}))},odd:function(){return this.pushStack(S.grep(this,function(e,t){return t%2}))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(0<=n&&n<t?[this[n]]:[])},end:function(){return this.prevObject||this.constructor()},push:u,sort:t.sort,splice:t.splice},S.extend=S.fn.extend=function(){var e,t,n,r,i,o,a=arguments[0]||{},s=1,u=arguments.length,l=!1;for("boolean"==typeof a&&(l=a,a=arguments[s]||{},s++),"object"==typeof a||m(a)||(a={}),s===u&&(a=this,s--);s<u;s++)if(null!=(e=arguments[s]))for(t in e)r=e[t],"__proto__"!==t&&a!==r&&(l&&r&&(S.isPlainObject(r)||(i=Array.isArray(r)))?(n=a[t],o=i&&!Array.isArray(n)?[]:i||S.isPlainObject(n)?n:{},i=!1,a[t]=S.extend(l,o,r)):void 0!==r&&(a[t]=r));return a},S.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),isReady:!0,error:function(e){throw new Error(e)},noop:function(){},isPlainObject:function(e){var t,n;return!(!e||"[object Object]"!==o.call(e))&&(!(t=r(e))||"function"==typeof(n=v.call(t,"constructor")&&t.constructor)&&a.call(n)===l)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},globalEval:function(e,t,n){b(e,{nonce:t&&t.nonce},n)},each:function(e,t){var n,r=0;if(p(e)){for(n=e.length;r<n;r++)if(!1===t.call(e[r],r,e[r]))break}else for(r in e)if(!1===t.call(e[r],r,e[r]))break;return e},makeArray:function(e,t){var n=t||[];return null!=e&&(p(Object(e))?S.merge(n,"string"==typeof e?[e]:e):u.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:i.call(t,e,n)},merge:function(e,t){for(var n=+t.length,r=0,i=e.length;r<n;r++)e[i++]=t[r];return e.length=i,e},grep:function(e,t,n){for(var r=[],i=0,o=e.length,a=!n;i<o;i++)!t(e[i],i)!==a&&r.push(e[i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:y}),"function"==typeof Symbol&&(S.fn[Symbol.iterator]=t[Symbol.iterator]),S.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,E,v,s,c,y,S="sizzle"+1*new Date,p=n.document,k=0,r=0,m=ue(),x=ue(),A=ue(),N=ue(),j=function(e,t){return e===t&&(l=!0),0},D={}.hasOwnProperty,t=[],q=t.pop,L=t.push,H=t.push,O=t.slice,P=function(e,t){for(var n=0,r=e.length;n<r;n++)if(e[n]===t)return n;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",I="(?:\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+",W="\\["+M+"*("+I+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+I+"))|)"+M+"*\\]",F=":("+I+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+W+")*)|.*)\\)|)",B=new RegExp(M+"+","g"),$=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=new RegExp("^"+M+"*,"+M+"*"),z=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp(M+"|>"),X=new RegExp(F),V=new RegExp("^"+I+"$"),G={ID:new RegExp("^#("+I+")"),CLASS:new RegExp("^\\.("+I+")"),TAG:new RegExp("^("+I+"|[*])"),ATTR:new RegExp("^"+W),PSEUDO:new RegExp("^"+F),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+R+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/HTML$/i,Q=/^(?:input|select|textarea|button)$/i,J=/^h\d$/i,K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+M+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){T()},ae=be(function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()},{dir:"parentNode",next:"legend"});try{H.apply(t=O.call(p.childNodes),p.childNodes),t[p.childNodes.length].nodeType}catch(e){H={apply:t.length?function(e,t){L.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeType:9;if(n=n||[],"string"!=typeof t||!t||1!==p&&9!==p&&11!==p)return n;if(!r&&(T(e),e=e||C,E)){if(11!==p&&(u=Z.exec(t)))if(i=u[1]){if(9===p){if(!(a=e.getElementById(i)))return n;if(a.id===i)return n.push(a),n}else if(f&&(a=f.getElementById(i))&&y(e,a)&&a.id===i)return n.push(a),n}else{if(u[2])return H.apply(n,e.getElementsByTagName(t)),n;if((i=u[3])&&d.getElementsByClassName&&e.getElementsByClassName)return H.apply(n,e.getElementsByClassName(i)),n}if(d.qsa&&!N[t+" "]&&(!v||!v.test(t))&&(1!==p||"object"!==e.nodeName.toLowerCase())){if(c=t,f=e,1===p&&(U.test(t)||z.test(t))){(f=ee.test(t)&&ye(e.parentNode)||e)===e&&d.scope||((s=e.getAttribute("id"))?s=s.replace(re,ie):e.setAttribute("id",s=S)),o=(l=h(t)).length;while(o--)l[o]=(s?"#"+s:":scope")+" "+xe(l[o]);c=l.join(",")}try{return H.apply(n,f.querySelectorAll(c)),n}catch(e){N(t,!0)}finally{s===S&&e.removeAttribute("id")}}}return g(t.replace($,"$1"),e,n,r)}function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cacheLength&&delete e[r.shift()],e[t+" "]=n}}function le(e){return e[S]=!0,e}function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(e){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){var n=e.split("|"),r=n.length;while(r--)b.attrHandle[n[r]]=t}function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function de(t){return function(e){return"input"===e.nodeName.toLowerCase()&&e.type===t}}function he(n){return function(e){var t=e.nodeName.toLowerCase();return("input"===t||"button"===t)&&e.type===n}}function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e.disabled?"label"in e?"label"in e.parentNode?e.parentNode.disabled===t:e.disabled===t:e.isDisabled===t||e.isDisabled!==!t&&ae(e)===t:e.disabled===t:"label"in e&&e.disabled===t}}function ve(a){return le(function(o){return o=+o,le(function(e,t){var n,r=a([],e.length,o),i=r.length;while(i--)e[n=r[i]]&&(e[n]=!(t[n]=e[n]))})})}function ye(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e}for(e in d=se.support={},i=se.isXML=function(e){var t=e&&e.namespaceURI,n=e&&(e.ownerDocument||e).documentElement;return!Y.test(t||n&&n.nodeName||"HTML")},T=se.setDocument=function(e){var t,n,r=e?e.ownerDocument||e:p;return r!=C&&9===r.nodeType&&r.documentElement&&(a=(C=r).documentElement,E=!i(C),p!=C&&(n=C.defaultView)&&n.top!==n&&(n.addEventListener?n.addEventListener("unload",oe,!1):n.attachEvent&&n.attachEvent("onunload",oe)),d.scope=ce(function(e){return a.appendChild(e).appendChild(C.createElement("div")),"undefined"!=typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e).id=S,!C.getElementsByName||!C.getElementsByName(S).length}),d.getById?(b.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n=t.getElementById(e);return n?[n]:[]}}):(b.filter.ID=function(e){var n=e.replace(te,ne);return function(e){var t="undefined"!=typeof e.getAttributeNode&&e.getAttributeNode("id");return t&&t.value===n}},b.find.ID=function(e,t){if("undefined"!=typeof t.getElementById&&E){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];i=t.getElementsByName(e),r=0;while(o=i[r++])if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),b.find.TAG=d.getElementsByTagName?function(e,t){return"undefined"!=typeof t.getElementsByTagName?t.getElementsByTagName(e):d.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},b.find.CLASS=d.getElementsByClassName&&function(e,t){if("undefined"!=typeof t.getElementsByClassName&&E)return t.getElementsByClassName(e)},s=[],v=[],(d.qsa=K.test(C.querySelectorAll))&&(ce(function(e){var t;a.appendChild(e).innerHTML="<a id='"+S+"'></a><select id='"+S+"-\r\\' msallowcapture=''><option selected=''></option></select>",e.querySelectorAll("[msallowcapture^='']").length&&v.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||v.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll("[id~="+S+"-]").length||v.push("~="),(t=C.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||v.push("\\["+M+"*name"+M+"*="+M+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||v.push(":checked"),e.querySelectorAll("a#"+S+"+*").length||v.push(".#.+[+~]"),e.querySelectorAll("\\\f"),v.push("[\\r\\n\\f]")}),ce(function(e){e.innerHTML="<a href='' disabled='disabled'></a><select disabled='disabled'><option/></select>";var t=C.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&v.push("name"+M+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&v.push(":enabled",":disabled"),a.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&v.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),v.push(",.*:")})),(d.matchesSelector=K.test(c=a.matches||a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.msMatchesSelector))&&ce(function(e){d.disconnectedMatch=c.call(e,"*"),c.call(e,"[s!='']:x"),s.push("!=",F)}),v=v.length&&new RegExp(v.join("|")),s=s.length&&new RegExp(s.join("|")),t=K.test(a.compareDocumentPosition),y=t||K.test(a.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},j=t?function(e,t){if(e===t)return l=!0,0;var n=!e.compareDocumentPosition-!t.compareDocumentPosition;return n||(1&(n=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!d.sortDetached&&t.compareDocumentPosition(e)===n?e==C||e.ownerDocument==p&&y(p,e)?-1:t==C||t.ownerDocument==p&&y(p,t)?1:u?P(u,e)-P(u,t):0:4&n?-1:1)}:function(e,t){if(e===t)return l=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],s=[t];if(!i||!o)return e==C?-1:t==C?1:i?-1:o?1:u?P(u,e)-P(u,t):0;if(i===o)return pe(e,t);n=e;while(n=n.parentNode)a.unshift(n);n=t;while(n=n.parentNode)s.unshift(n);while(a[r]===s[r])r++;return r?pe(a[r],s[r]):a[r]==p?-1:s[r]==p?1:0}),C},se.matches=function(e,t){return se(e,null,null,t)},se.matchesSelector=function(e,t){if(T(e),d.matchesSelector&&E&&!N[t+" "]&&(!s||!s.test(t))&&(!v||!v.test(t)))try{var n=c.call(e,t);if(n||d.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){N(t,!0)}return 0<se(t,C,null,[e]).length},se.contains=function(e,t){return(e.ownerDocument||e)!=C&&T(e),y(e,t)},se.attr=function(e,t){(e.ownerDocument||e)!=C&&T(e);var n=b.attrHandle[t.toLowerCase()],r=n&&D.call(b.attrHandle,t.toLowerCase())?n(e,t,!E):void 0;return void 0!==r?r:d.attributes||!E?e.getAttribute(t):(r=e.getAttributeNode(t))&&r.specified?r.value:null},se.escape=function(e){return(e+"").replace(re,ie)},se.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},se.uniqueSort=function(e){var t,n=[],r=0,i=0;if(l=!d.detectDuplicates,u=!d.sortStable&&e.slice(0),e.sort(j),l){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return u=null,e},o=se.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else while(t=e[r++])n+=o(t);return n},(b=se.selectors={cacheLength:50,createPseudo:le,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||se.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&se.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return G.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&X.test(n)&&(t=h(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=m[e+" "];return t||(t=new RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&m(e,function(e){return t.test("string"==typeof e.className&&e.className||"undefined"!=typeof e.getAttribute&&e.getAttribute("class")||"")})},ATTR:function(n,r,i){return function(e){var t=se.attr(e,n);return null==t?"!="===r:!r||(t+="","="===r?t===i:"!="===r?t!==i:"^="===r?i&&0===t.indexOf(i):"*="===r?i&&-1<t.indexOf(i):"$="===r?i&&t.slice(-i.length)===i:"~="===r?-1<(" "+t.replace(B," ")+" ").indexOf(i):"|="===r&&(t===i||t.slice(0,i.length+1)===i+"-"))}},CHILD:function(h,e,t,g,v){var y="nth"!==h.slice(0,3),m="last"!==h.slice(-4),x="of-type"===e;return 1===g&&0===v?function(e){return!!e.parentNode}:function(e,t,n){var r,i,o,a,s,u,l=y!==m?"nextSibling":"previousSibling",c=e.parentNode,f=x&&e.nodeName.toLowerCase(),p=!n&&!x,d=!1;if(c){if(y){while(l){a=e;while(a=a[l])if(x?a.nodeName.toLowerCase()===f:1===a.nodeType)return!1;u=l="only"===h&&!u&&"nextSibling"}return!0}if(u=[m?c.firstChild:c.lastChild],m&&p){d=(s=(r=(i=(o=(a=c)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1])&&r[2],a=s&&c.childNodes[s];while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if(1===a.nodeType&&++d&&a===e){i[h]=[k,s,d];break}}else if(p&&(d=s=(r=(i=(o=(a=e)[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]||[])[0]===k&&r[1]),!1===d)while(a=++s&&a&&a[l]||(d=s=0)||u.pop())if((x?a.nodeName.toLowerCase()===f:1===a.nodeType)&&++d&&(p&&((i=(o=a[S]||(a[S]={}))[a.uniqueID]||(o[a.uniqueID]={}))[h]=[k,d]),a===e))break;return(d-=v)===g||d%g==0&&0<=d/g}}},PSEUDO:function(e,o){var t,a=b.pseudos[e]||b.setFilters[e.toLowerCase()]||se.error("unsupported pseudo: "+e);return a[S]?a(o):1<a.length?(t=[e,e,"",o],b.setFilters.hasOwnProperty(e.toLowerCase())?le(function(e,t){var n,r=a(e,o),i=r.length;while(i--)e[n=P(e,r[i])]=!(t[n]=r[i])}):function(e){return a(e,0,t)}):a}},pseudos:{not:le(function(e){var r=[],i=[],s=f(e.replace($,"$1"));return s[S]?le(function(e,t,n,r){var i,o=s(e,null,r,[]),a=e.length;while(a--)(i=o[a])&&(e[a]=!(t[a]=i))}):function(e,t,n){return r[0]=e,s(r,null,n,i),r[0]=null,!i.pop()}}),has:le(function(t){return function(e){return 0<se(t,e).length}}),contains:le(function(t){return t=t.replace(te,ne),function(e){return-1<(e.textContent||o(e)).indexOf(t)}}),lang:le(function(n){return V.test(n||"")||se.error("unsupported lang: "+n),n=n.replace(te,ne).toLowerCase(),function(e){var t;do{if(t=E?e.lang:e.getAttribute("xml:lang")||e.getAttribute("lang"))return(t=t.toLowerCase())===n||0===t.indexOf(n+"-")}while((e=e.parentNode)&&1===e.nodeType);return!1}}),target:function(e){var t=n.location&&n.location.hash;return t&&t.slice(1)===e.id},root:function(e){return e===a},focus:function(e){return e===C.activeElement&&(!C.hasFocus||C.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:ge(!1),disabled:ge(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!b.pseudos.empty(e)},header:function(e){return J.test(e.nodeName)},input:function(e){return Q.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ve(function(){return[0]}),last:ve(function(e,t){return[t-1]}),eq:ve(function(e,t,n){return[n<0?n+t:n]}),even:ve(function(e,t){for(var n=0;n<t;n+=2)e.push(n);return e}),odd:ve(function(e,t){for(var n=1;n<t;n+=2)e.push(n);return e}),lt:ve(function(e,t,n){for(var r=n<0?n+t:t<n?t:n;0<=--r;)e.push(r);return e}),gt:ve(function(e,t,n){for(var r=n<0?n+t:n;++r<t;)e.push(r);return e})}}).pseudos.nth=b.pseudos.eq,{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})b.pseudos[e]=de(e);for(e in{submit:!0,reset:!0})b.pseudos[e]=he(e);function me(){}function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r++;return e.first?function(e,t,n){while(e=e[u])if(1===e.nodeType||f)return s(e,t,n);return!1}:function(e,t,n){var r,i,o,a=[k,p];if(n){while(e=e[u])if((1===e.nodeType||f)&&s(e,t,n))return!0}else while(e=e[u])if(1===e.nodeType||f)if(i=(o=e[S]||(e[S]={}))[e.uniqueID]||(o[e.uniqueID]={}),l&&l===e.nodeName.toLowerCase())e=e[u]||e;else{if((r=i[c])&&r[0]===k&&r[1]===p)return a[2]=r[2];if((i[c]=a)[2]=s(e,t,n))return!0}return!1}}function we(i){return 1<i.length?function(e,t,n){var r=i.length;while(r--)if(!i[r](e,t,n))return!1;return!0}:i[0]}function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(o=e[s])&&(n&&!n(o,r,i)||(a.push(o),l&&t.push(s)));return a}function Ce(d,h,g,v,y,e){return v&&!v[S]&&(v=Ce(v)),y&&!y[S]&&(y=Ce(y,e)),le(function(e,t,n,r){var i,o,a,s=[],u=[],l=t.length,c=e||function(e,t,n){for(var r=0,i=t.length;r<i;r++)se(e,t[r],n);return n}(h||"*",n.nodeType?[n]:n,[]),f=!d||!e&&h?c:Te(c,s,d,n,r),p=g?y||(e?d:l||v)?[]:t:f;if(g&&g(f,p,n,r),v){i=Te(p,u),v(i,[],n,r),o=i.length;while(o--)(a=i[o])&&(p[u[o]]=!(f[u[o]]=a))}if(e){if(y||d){if(y){i=[],o=p.length;while(o--)(a=p[o])&&i.push(f[o]=a);y(null,p=[],i,r)}o=p.length;while(o--)(a=p[o])&&-1<(i=y?P(e,a):s[o])&&(e[i]=!(t[i]=a))}}else p=Te(p===t?p.splice(l,p.length):p),y?y(null,t,p,r):H.apply(t,p)})}function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.relative[" "],s=o?1:0,u=be(function(e){return e===i},a,!0),l=be(function(e){return-1<P(i,e)},a,!0),c=[function(e,t,n){var r=!o&&(n||t!==w)||((i=t).nodeType?u(e,t,n):l(e,t,n));return i=null,r}];s<r;s++)if(t=b.relative[e[s].type])c=[be(we(c),t)];else{if((t=b.filter[e[s].type].apply(null,e[s].matches))[S]){for(n=++s;n<r;n++)if(b.relative[e[n].type])break;return Ce(1<s&&we(c),1<s&&xe(e.slice(0,s-1).concat({value:" "===e[s-2].type?"*":""})).replace($,"$1"),t,s<n&&Ee(e.slice(s,n)),n<r&&Ee(e=e.slice(n)),n<r&&xe(e))}c.push(t)}return we(c)}return me.prototype=b.filters=b.pseudos,b.setFilters=new me,h=se.tokenize=function(e,t){var n,r,i,o,a,s,u,l=x[e+" "];if(l)return t?0:l.slice(0);a=e,s=[],u=b.preFilter;while(a){for(o in n&&!(r=_.exec(a))||(r&&(a=a.slice(r[0].length)||a),s.push(i=[])),n=!1,(r=z.exec(a))&&(n=r.shift(),i.push({value:n,type:r[0].replace($," ")}),a=a.slice(n.length)),b.filter)!(r=G[o].exec(a))||u[o]&&!(r=u[o](r))||(n=r.shift(),i.push({value:n,type:o,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?se.error(e):x(e,s).slice(0)},f=se.compile=function(e,t){var n,v,y,m,x,r,i=[],o=[],a=A[e+" "];if(!a){t||(t=h(e)),n=t.length;while(n--)(a=Ee(t[n]))[S]?i.push(a):o.push(a);(a=A(e,(v=o,m=0<(y=i).length,x=0<v.length,r=function(e,t,n,r,i){var o,a,s,u=0,l="0",c=e&&[],f=[],p=w,d=e||x&&b.find.TAG("*",i),h=k+=null==p?1:Math.random()||.1,g=d.length;for(i&&(w=t==C||t||i);l!==g&&null!=(o=d[l]);l++){if(x&&o){a=0,t||o.ownerDocument==C||(T(o),n=!E);while(s=v[a++])if(s(o,t||C,n)){r.push(o);break}i&&(k=h)}m&&((o=!s&&o)&&u--,e&&c.push(o))}if(u+=l,m&&l!==u){a=0;while(s=y[a++])s(c,f,t,n);if(e){if(0<u)while(l--)c[l]||f[l]||(f[l]=q.call(r));f=Te(f)}H.apply(r,f),i&&!e&&0<f.length&&1<u+y.length&&se.uniqueSort(r)}return i&&(k=h,w=p),c},m?le(r):r))).selector=e}return a},g=se.select=function(e,t,n,r){var i,o,a,s,u,l="function"==typeof e&&e,c=!r&&h(e=l.selector||e);if(n=n||[],1===c.length){if(2<(o=c[0]=c[0].slice(0)).length&&"ID"===(a=o[0]).type&&9===t.nodeType&&E&&b.relative[o[1].type]){if(!(t=(b.find.ID(a.matches[0].replace(te,ne),t)||[])[0]))return n;l&&(t=t.parentNode),e=e.slice(o.shift().value.length)}i=G.needsContext.test(e)?0:o.length;while(i--){if(a=o[i],b.relative[s=a.type])break;if((u=b.find[s])&&(r=u(a.matches[0].replace(te,ne),ee.test(o[0].type)&&ye(t.parentNode)||t))){if(o.splice(i,1),!(e=r.length&&xe(o)))return H.apply(n,r),n;break}}}return(l||f(e,c))(r,t,!E,n,!t||ee.test(e)&&ye(t.parentNode)||t),n},d.sortStable=S.split("").sort(j).join("")===S,d.detectDuplicates=!!l,T(),d.sortDetached=ce(function(e){return 1&e.compareDocumentPosition(C.createElement("fieldset"))}),ce(function(e){return e.innerHTML="<a href='#'></a>","#"===e.firstChild.getAttribute("href")})||fe("type|href|height|width",function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),d.attributes&&ce(function(e){return e.innerHTML="<input/>",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||fe("value",function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue}),ce(function(e){return null==e.getAttribute("disabled")})||fe(R,function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null}),se}(C);S.find=d,S.expr=d.selectors,S.expr[":"]=S.expr.pseudos,S.uniqueSort=S.unique=d.uniqueSort,S.text=d.getText,S.isXMLDoc=d.isXML,S.contains=d.contains,S.escapeSelector=d.escape;var h=function(e,t,n){var r=[],i=void 0!==n;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&S(e).is(n))break;r.push(e)}return r},T=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},k=S.expr.match.needsContext;function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var N=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function j(e,n,r){return m(n)?S.grep(e,function(e,t){return!!n.call(e,t,e)!==r}):n.nodeType?S.grep(e,function(e){return e===n!==r}):"string"!=typeof n?S.grep(e,function(e){return-1<i.call(n,e)!==r}):S.filter(n,e,r)}S.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?S.find.matchesSelector(r,e)?[r]:[]:S.find.matches(e,S.grep(t,function(e){return 1===e.nodeType}))},S.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!=typeof e)return this.pushStack(S(e).filter(function(){for(t=0;t<r;t++)if(S.contains(i[t],this))return!0}));for(n=this.pushStack([]),t=0;t<r;t++)S.find(e,i[t],n);return 1<r?S.uniqueSort(n):n},filter:function(e){return this.pushStack(j(this,e||[],!1))},not:function(e){return this.pushStack(j(this,e||[],!0))},is:function(e){return!!j(this,"string"==typeof e&&k.test(e)?S(e):e||[],!1).length}});var D,q=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(S.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||D,"string"==typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&3<=e.length?[null,e,null]:q.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof S?t[0]:t,S.merge(this,S.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:E,!0)),N.test(r[1])&&S.isPlainObject(t))for(r in t)m(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=E.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):m(e)?void 0!==n.ready?n.ready(e):e(S):S.makeArray(e,this)}).prototype=S.fn,D=S(E);var L=/^(?:parents|prev(?:Until|All))/,H={children:!0,contents:!0,next:!0,prev:!0};function O(e,t){while((e=e[t])&&1!==e.nodeType);return e}S.fn.extend({has:function(e){var t=S(e,this),n=t.length;return this.filter(function(){for(var e=0;e<n;e++)if(S.contains(this,t[e]))return!0})},closest:function(e,t){var n,r=0,i=this.length,o=[],a="string"!=typeof e&&S(e);if(!k.test(e))for(;r<i;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(n.nodeType<11&&(a?-1<a.index(n):1===n.nodeType&&S.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(1<o.length?S.uniqueSort(o):o)},index:function(e){return e?"string"==typeof e?i.call(S(e),this[0]):i.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(S.uniqueSort(S.merge(this.get(),S(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),S.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return h(e,"parentNode")},parentsUntil:function(e,t,n){return h(e,"parentNode",n)},next:function(e){return O(e,"nextSibling")},prev:function(e){return O(e,"previousSibling")},nextAll:function(e){return h(e,"nextSibling")},prevAll:function(e){return h(e,"previousSibling")},nextUntil:function(e,t,n){return h(e,"nextSibling",n)},prevUntil:function(e,t,n){return h(e,"previousSibling",n)},siblings:function(e){return T((e.parentNode||{}).firstChild,e)},children:function(e){return T(e.firstChild)},contents:function(e){return null!=e.contentDocument&&r(e.contentDocument)?e.contentDocument:(A(e,"template")&&(e=e.content||e),S.merge([],e.childNodes))}},function(r,i){S.fn[r]=function(e,t){var n=S.map(this,i,e);return"Until"!==r.slice(-5)&&(t=e),t&&"string"==typeof t&&(n=S.filter(t,n)),1<this.length&&(H[r]||S.uniqueSort(n),L.test(r)&&n.reverse()),this.pushStack(n)}});var P=/[^\x20\t\r\n\f]+/g;function R(e){return e}function M(e){throw e}function I(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n):e&&m(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}S.Callbacks=function(r){var e,n;r="string"==typeof r?(e=r,n={},S.each(e.match(P)||[],function(e,t){n[t]=!0}),n):S.extend({},r);var i,t,o,a,s=[],u=[],l=-1,c=function(){for(a=a||r.once,o=i=!0;u.length;l=-1){t=u.shift();while(++l<s.length)!1===s[l].apply(t[0],t[1])&&r.stopOnFalse&&(l=s.length,t=!1)}r.memory||(t=!1),i=!1,a&&(s=t?[]:"")},f={add:function(){return s&&(t&&!i&&(l=s.length-1,u.push(t)),function n(e){S.each(e,function(e,t){m(t)?r.unique&&f.has(t)||s.push(t):t&&t.length&&"string"!==w(t)&&n(t)})}(arguments),t&&!i&&c()),this},remove:function(){return S.each(arguments,function(e,t){var n;while(-1<(n=S.inArray(t,s,n)))s.splice(n,1),n<=l&&l--}),this},has:function(e){return e?-1<S.inArray(e,s):0<s.length},empty:function(){return s&&(s=[]),this},disable:function(){return a=u=[],s=t="",this},disabled:function(){return!s},lock:function(){return a=u=[],t||i||(s=t=""),this},locked:function(){return!!a},fireWith:function(e,t){return a||(t=[e,(t=t||[]).slice?t.slice():t],u.push(t),i||c()),this},fire:function(){return f.fireWith(this,arguments),this},fired:function(){return!!o}};return f},S.extend({Deferred:function(e){var o=[["notify","progress",S.Callbacks("memory"),S.Callbacks("memory"),2],["resolve","done",S.Callbacks("once memory"),S.Callbacks("once memory"),0,"resolved"],["reject","fail",S.Callbacks("once memory"),S.Callbacks("once memory"),1,"rejected"]],i="pending",a={state:function(){return i},always:function(){return s.done(arguments).fail(arguments),this},"catch":function(e){return a.then(null,e)},pipe:function(){var i=arguments;return S.Deferred(function(r){S.each(o,function(e,t){var n=m(i[t[4]])&&i[t[4]];s[t[1]](function(){var e=n&&n.apply(this,arguments);e&&m(e.promise)?e.promise().progress(r.notify).done(r.resolve).fail(r.reject):r[t[0]+"With"](this,n?[e]:arguments)})}),i=null}).promise()},then:function(t,n,r){var u=0;function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(){var e,t;if(!(i<u)){if((e=a.apply(n,r))===o.promise())throw new TypeError("Thenable self-resolution");t=e&&("object"==typeof e||"function"==typeof e)&&e.then,m(t)?s?t.call(e,l(u,o,R,s),l(u,o,M,s)):(u++,t.call(e,l(u,o,R,s),l(u,o,M,s),l(u,o,R,o.notifyWith))):(a!==R&&(n=void 0,r=[e]),(s||o.resolveWith)(n,r))}},t=s?e:function(){try{e()}catch(e){S.Deferred.exceptionHook&&S.Deferred.exceptionHook(e,t.stackTrace),u<=i+1&&(a!==M&&(n=void 0,r=[e]),o.rejectWith(n,r))}};i?t():(S.Deferred.getStackHook&&(t.stackTrace=S.Deferred.getStackHook()),C.setTimeout(t))}}return S.Deferred(function(e){o[0][3].add(l(0,e,m(r)?r:R,e.notifyWith)),o[1][3].add(l(0,e,m(t)?t:R)),o[2][3].add(l(0,e,m(n)?n:M))}).promise()},promise:function(e){return null!=e?S.extend(e,a):a}},s={};return S.each(o,function(e,t){var n=t[2],r=t[5];a[t[1]]=n.add,r&&n.add(function(){i=r},o[3-e][2].disable,o[3-e][3].disable,o[0][2].lock,o[0][3].lock),n.add(t[3].fire),s[t[0]]=function(){return s[t[0]+"With"](this===s?void 0:this,arguments),this},s[t[0]+"With"]=n.fireWith}),a.promise(s),e&&e.call(s,s),s},when:function(e){var n=arguments.length,t=n,r=Array(t),i=s.call(arguments),o=S.Deferred(),a=function(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.call(arguments):e,--n||o.resolveWith(r,i)}};if(n<=1&&(I(e,o.done(a(t)).resolve,o.reject,!n),"pending"===o.state()||m(i[t]&&i[t].then)))return o.then();while(t--)I(i[t],a(t),o.reject);return o.promise()}});var W=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;S.Deferred.exceptionHook=function(e,t){C.console&&C.console.warn&&e&&W.test(e.name)&&C.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},S.readyException=function(e){C.setTimeout(function(){throw e})};var F=S.Deferred();function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventListener("load",B),S.ready()}S.fn.ready=function(e){return F.then(e)["catch"](function(e){S.readyException(e)}),this},S.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--S.readyWait:S.isReady)||(S.isReady=!0)!==e&&0<--S.readyWait||F.resolveWith(E,[S])}}),S.ready.then=F.then,"complete"===E.readyState||"loading"!==E.readyState&&!E.documentElement.doScroll?C.setTimeout(S.ready):(E.addEventListener("DOMContentLoaded",B),C.addEventListener("load",B));var $=function(e,t,n,r,i,o,a){var s=0,u=e.length,l=null==n;if("object"===w(n))for(s in i=!0,n)$(e,t,s,n[s],!0,o,a);else if(void 0!==r&&(i=!0,m(r)||(a=!0),l&&(a?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(S(e),n)})),t))for(;s<u;s++)t(e[s],n,a?r:r.call(e[s],s,t(e[s],n)));return i?e:l?t.call(e):u?t(e[0],n):o},_=/^-ms-/,z=/-([a-z])/g;function U(e,t){return t.toUpperCase()}function X(e){return e.replace(_,"ms-").replace(z,U)}var V=function(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType};function G(){this.expando=S.expando+G.uid++}G.uid=1,G.prototype={cache:function(e){var t=e[this.expando];return t||(t={},V(e)&&(e.nodeType?e[this.expando]=t:Object.defineProperty(e,this.expando,{value:t,configurable:!0}))),t},set:function(e,t,n){var r,i=this.cache(e);if("string"==typeof t)i[X(t)]=n;else for(r in t)i[X(r)]=t[r];return i},get:function(e,t){return void 0===t?this.cache(e):e[this.expando]&&e[this.expando][X(t)]},access:function(e,t,n){return void 0===t||t&&"string"==typeof t&&void 0===n?this.get(e,t):(this.set(e,t,n),void 0!==n?n:t)},remove:function(e,t){var n,r=e[this.expando];if(void 0!==r){if(void 0!==t){n=(t=Array.isArray(t)?t.map(X):(t=X(t))in r?[t]:t.match(P)||[]).length;while(n--)delete r[t[n]]}(void 0===t||S.isEmptyObject(r))&&(e.nodeType?e[this.expando]=void 0:delete e[this.expando])}},hasData:function(e){var t=e[this.expando];return void 0!==t&&!S.isEmptyObject(t)}};var Y=new G,Q=new G,J=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,K=/[A-Z]/g;function Z(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t.replace(K,"-$&").toLowerCase(),"string"==typeof(n=e.getAttribute(r))){try{n="true"===(i=n)||"false"!==i&&("null"===i?null:i===+i+""?+i:J.test(i)?JSON.parse(i):i)}catch(e){}Q.set(e,t,n)}else n=void 0;return n}S.extend({hasData:function(e){return Q.hasData(e)||Y.hasData(e)},data:function(e,t,n){return Q.access(e,t,n)},removeData:function(e,t){Q.remove(e,t)},_data:function(e,t,n){return Y.access(e,t,n)},_removeData:function(e,t){Y.remove(e,t)}}),S.fn.extend({data:function(n,e){var t,r,i,o=this[0],a=o&&o.attributes;if(void 0===n){if(this.length&&(i=Q.get(o),1===o.nodeType&&!Y.get(o,"hasDataAttrs"))){t=a.length;while(t--)a[t]&&0===(r=a[t].name).indexOf("data-")&&(r=X(r.slice(5)),Z(o,r,i[r]));Y.set(o,"hasDataAttrs",!0)}return i}return"object"==typeof n?this.each(function(){Q.set(this,n)}):$(this,function(e){var t;if(o&&void 0===e)return void 0!==(t=Q.get(o,n))?t:void 0!==(t=Z(o,n))?t:void 0;this.each(function(){Q.set(this,n,e)})},null,e,1<arguments.length,null,!0)},removeData:function(e){return this.each(function(){Q.remove(this,e)})}}),S.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=Y.get(e,t),n&&(!r||Array.isArray(n)?r=Y.access(e,t,S.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){t=t||"fx";var n=S.queue(e,t),r=n.length,i=n.shift(),o=S._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,function(){S.dequeue(e,t)},o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return Y.get(e,n)||Y.access(e,n,{empty:S.Callbacks("once memory").add(function(){Y.remove(e,[t+"queue",n])})})}}),S.fn.extend({queue:function(t,n){var e=2;return"string"!=typeof t&&(n=t,t="fx",e--),arguments.length<e?S.queue(this[0],t):void 0===n?this:this.each(function(){var e=S.queue(this,t,n);S._queueHooks(this,t),"fx"===t&&"inprogress"!==e[0]&&S.dequeue(this,t)})},dequeue:function(e){return this.each(function(){S.dequeue(this,e)})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=S.Deferred(),o=this,a=this.length,s=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=void 0),e=e||"fx";while(a--)(n=Y.get(o[a],e+"queueHooks"))&&n.empty&&(r++,n.empty.add(s));return s(),i.promise(t)}});var ee=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,te=new RegExp("^(?:([+-])=|)("+ee+")([a-z%]*)$","i"),ne=["Top","Right","Bottom","Left"],re=E.documentElement,ie=function(e){return S.contains(e.ownerDocument,e)},oe={composed:!0};re.getRootNode&&(ie=function(e){return S.contains(e.ownerDocument,e)||e.getRootNode(oe)===e.ownerDocument});var ae=function(e,t){return"none"===(e=t||e).style.display||""===e.style.display&&ie(e)&&"none"===S.css(e,"display")};function se(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:function(){return S.css(e,t,"")},u=s(),l=n&&n[3]||(S.cssNumber[t]?"":"px"),c=e.nodeType&&(S.cssNumber[t]||"px"!==l&&+u)&&te.exec(S.css(e,t));if(c&&c[3]!==l){u/=2,l=l||c[3],c=+u||1;while(a--)S.style(e,t,c+l),(1-o)*(1-(o=s()/u||.5))<=0&&(a=0),c/=o;c*=2,S.style(e,t,c+l),n=n||[]}return n&&(c=+c||+u||0,i=n[1]?c+(n[1]+1)*n[2]:+n[2],r&&(r.unit=l,r.start=c,r.end=i)),i}var ue={};function le(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[c]).style&&(n=r.style.display,t?("none"===n&&(l[c]=Y.get(r,"display")||null,l[c]||(r.style.display="")),""===r.style.display&&ae(r)&&(l[c]=(u=a=o=void 0,a=(i=r).ownerDocument,s=i.nodeName,(u=ue[s])||(o=a.body.appendChild(a.createElement(s)),u=S.css(o,"display"),o.parentNode.removeChild(o),"none"===u&&(u="block"),ue[s]=u)))):"none"!==n&&(l[c]="none",Y.set(r,"display",n)));for(c=0;c<f;c++)null!=l[c]&&(e[c].style.display=l[c]);return e}S.fn.extend({show:function(){return le(this,!0)},hide:function(){return le(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){ae(this)?S(this).show():S(this).hide()})}});var ce,fe,pe=/^(?:checkbox|radio)$/i,de=/<([a-z][^\/\0>\x20\t\r\n\f]*)/i,he=/^$|^module$|\/(?:java|ecma)script/i;ce=E.createDocumentFragment().appendChild(E.createElement("div")),(fe=E.createElement("input")).setAttribute("type","radio"),fe.setAttribute("checked","checked"),fe.setAttribute("name","t"),ce.appendChild(fe),y.checkClone=ce.cloneNode(!0).cloneNode(!0).lastChild.checked,ce.innerHTML="<textarea>x</textarea>",y.noCloneChecked=!!ce.cloneNode(!0).lastChild.defaultValue,ce.innerHTML="<option></option>",y.option=!!ce.lastChild;var ge={thead:[1,"<table>","</table>"],col:[2,"<table><colgroup>","</colgroup></table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!=typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!=typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&A(e,t)?S.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n<r;n++)Y.set(e[n],"globalEval",!t||Y.get(t[n],"globalEval"))}ge.tbody=ge.tfoot=ge.colgroup=ge.caption=ge.thead,ge.th=ge.td,y.option||(ge.optgroup=ge.option=[1,"<select multiple='multiple'>","</select>"]);var me=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),p=[],d=0,h=e.length;d<h;d++)if((o=e[d])||0===o)if("object"===w(o))S.merge(p,o.nodeType?[o]:o);else if(me.test(o)){a=a||f.appendChild(t.createElement("div")),s=(de.exec(o)||["",""])[1].toLowerCase(),u=ge[s]||ge._default,a.innerHTML=u[1]+S.htmlPrefilter(o)+u[2],c=u[0];while(c--)a=a.lastChild;S.merge(p,a.childNodes),(a=f.firstChild).textContent=""}else p.push(t.createTextNode(o));f.textContent="",d=0;while(o=p[d++])if(r&&-1<S.inArray(o,r))i&&i.push(o);else if(l=ie(o),a=ve(f.appendChild(o),"script"),l&&ye(a),n){c=0;while(o=a[c++])he.test(o.type||"")&&n.push(o)}return f}var be=/^([^.]*)(?:\.(.+)|)/;function we(){return!0}function Te(){return!1}function Ce(e,t){return e===function(){try{return E.activeElement}catch(e){}}()==("focus"===t)}function Ee(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"!=typeof n&&(r=r||n,n=void 0),t)Ee(e,s,n,r,t[s],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"==typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Te;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return S().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=S.guid++)),e.each(function(){S.event.add(this,t,i,r,n)})}function Se(e,i,o){o?(Y.set(e,i,!1),S.event.add(e,i,{namespace:!1,handler:function(e){var t,n,r=Y.get(this,i);if(1&e.isTrigger&&this[i]){if(r.length)(S.event.special[i]||{}).delegateType&&e.stopPropagation();else if(r=s.call(arguments),Y.set(this,i,r),t=o(this,i),this[i](),r!==(n=Y.get(this,i))||t?Y.set(this,i,!1):n={},r!==n)return e.stopImmediatePropagation(),e.preventDefault(),n&&n.value}else r.length&&(Y.set(this,i,{value:S.event.trigger(S.extend(r[0],S.Event.prototype),r.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===Y.get(e,i)&&S.event.add(e,i,we)}S.event={global:{},add:function(t,e,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.get(t);if(V(t)){n.handler&&(n=(o=n).handler,i=o.selector),i&&S.find.matchesSelector(re,i),n.guid||(n.guid=S.guid++),(u=v.events)||(u=v.events=Object.create(null)),(a=v.handle)||(a=v.handle=function(e){return"undefined"!=typeof S&&S.event.triggered!==e.type?S.event.dispatch.apply(t,arguments):void 0}),l=(e=(e||"").match(P)||[""]).length;while(l--)d=g=(s=be.exec(e[l])||[])[1],h=(s[2]||"").split(".").sort(),d&&(f=S.event.special[d]||{},d=(i?f.delegateType:f.bindType)||d,f=S.event.special[d]||{},c=S.extend({type:d,origType:g,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&S.expr.match.needsContext.test(i),namespace:h.join(".")},o),(p=u[d])||((p=u[d]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(t,r,h,a)||t.addEventListener&&t.addEventListener(d,a)),f.add&&(f.add.call(t,c),c.handler.guid||(c.handler.guid=n.guid)),i?p.splice(p.delegateCount++,0,c):p.push(c),S.event.global[d]=!0)}},remove:function(e,t,n,r,i){var o,a,s,u,l,c,f,p,d,h,g,v=Y.hasData(e)&&Y.get(e);if(v&&(u=v.events)){l=(t=(t||"").match(P)||[""]).length;while(l--)if(d=g=(s=be.exec(t[l])||[])[1],h=(s[2]||"").split(".").sort(),d){f=S.event.special[d]||{},p=u[d=(r?f.delegateType:f.bindType)||d]||[],s=s[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||s&&!s.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));a&&!p.length&&(f.teardown&&!1!==f.teardown.call(e,h,v.handle)||S.removeEvent(e,d,v.handle),delete u[d])}else for(d in u)S.event.remove(e,d+t[l],n,r,!0);S.isEmptyObject(u)&&Y.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,s=new Array(arguments.length),u=S.event.fix(e),l=(Y.get(this,"events")||Object.create(null))[u.type]||[],c=S.event.special[u.type]||{};for(s[0]=u,t=1;t<arguments.length;t++)s[t]=arguments[t];if(u.delegateTarget=this,!c.preDispatch||!1!==c.preDispatch.call(this,u)){a=S.event.handlers.call(this,u,l),t=0;while((i=a[t++])&&!u.isPropagationStopped()){u.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!u.isImmediatePropagationStopped())u.rnamespace&&!1!==o.namespace&&!u.rnamespace.test(o.namespace)||(u.handleObj=o,u.data=o.data,void 0!==(r=((S.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,s))&&!1===(u.result=r)&&(u.preventDefault(),u.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,u),u.result}},handlers:function(e,t){var n,r,i,o,a,s=[],u=t.delegateCount,l=e.target;if(u&&l.nodeType&&!("click"===e.type&&1<=e.button))for(;l!==this;l=l.parentNode||this)if(1===l.nodeType&&("click"!==e.type||!0!==l.disabled)){for(o=[],a={},n=0;n<u;n++)void 0===a[i=(r=t[n]).selector+" "]&&(a[i]=r.needsContext?-1<S(i,this).index(l):S.find(i,this,null,[l]).length),a[i]&&o.push(r);o.length&&s.push({elem:l,handlers:o})}return l=this,u<t.length&&s.push({elem:l,handlers:t.slice(u)}),s},addProp:function(t,e){Object.defineProperty(S.Event.prototype,t,{enumerable:!0,configurable:!0,get:m(e)?function(){if(this.originalEvent)return e(this.originalEvent)}:function(){if(this.originalEvent)return this.originalEvent[t]},set:function(e){Object.defineProperty(this,t,{enumerable:!0,configurable:!0,writable:!0,value:e})}})},fix:function(e){return e[S.expando]?e:new S.Event(e)},special:{load:{noBubble:!0},click:{setup:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click",we),!1},trigger:function(e){var t=this||e;return pe.test(t.type)&&t.click&&A(t,"input")&&Se(t,"click"),!0},_default:function(e){var t=e.target;return pe.test(t.type)&&t.click&&A(t,"input")&&Y.get(t,"click")||A(t,"a")}},beforeunload:{postDispatch:function(e){void 0!==e.result&&e.originalEvent&&(e.originalEvent.returnValue=e.result)}}}},S.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n)},S.Event=function(e,t){if(!(this instanceof S.Event))return new S.Event(e,t);e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||void 0===e.defaultPrevented&&!1===e.returnValue?we:Te,this.target=e.target&&3===e.target.nodeType?e.target.parentNode:e.target,this.currentTarget=e.currentTarget,this.relatedTarget=e.relatedTarget):this.type=e,t&&S.extend(this,t),this.timeStamp=e&&e.timeStamp||Date.now(),this[S.expando]=!0},S.Event.prototype={constructor:S.Event,isDefaultPrevented:Te,isPropagationStopped:Te,isImmediatePropagationStopped:Te,isSimulated:!1,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=we,e&&!this.isSimulated&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=we,e&&!this.isSimulated&&e.stopPropagation()},stopImmediatePropagation:function(){var e=this.originalEvent;this.isImmediatePropagationStopped=we,e&&!this.isSimulated&&e.stopImmediatePropagation(),this.stopPropagation()}},S.each({altKey:!0,bubbles:!0,cancelable:!0,changedTouches:!0,ctrlKey:!0,detail:!0,eventPhase:!0,metaKey:!0,pageX:!0,pageY:!0,shiftKey:!0,view:!0,"char":!0,code:!0,charCode:!0,key:!0,keyCode:!0,button:!0,buttons:!0,clientX:!0,clientY:!0,offsetX:!0,offsetY:!0,pointerId:!0,pointerType:!0,screenX:!0,screenY:!0,targetTouches:!0,toElement:!0,touches:!0,which:!0},S.event.addProp),S.each({focus:"focusin",blur:"focusout"},function(e,t){S.event.special[e]={setup:function(){return Se(this,e,Ce),!1},trigger:function(){return Se(this,e),!0},_default:function(){return!0},delegateType:t}}),S.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(e,i){S.event.special[e]={delegateType:i,bindType:i,handle:function(e){var t,n=e.relatedTarget,r=e.handleObj;return n&&(n===this||S.contains(this,n))||(e.type=r.origType,t=r.handler.apply(this,arguments),e.type=i),t}}}),S.fn.extend({on:function(e,t,n,r){return Ee(this,e,t,n,r)},one:function(e,t,n,r){return Ee(this,e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,S(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return!1!==t&&"function"!=typeof t||(n=t,t=void 0),!1===n&&(n=Te),this.each(function(){S.event.remove(this,e,n,t)})}});var ke=/<script|<style|<link/i,Ae=/checked\s*(?:[^=]|=\s*.checked.)/i,Ne=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g;function je(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"tr")&&S(e).children("tbody")[0]||e}function De(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function qe(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Le(e,t){var n,r,i,o,a,s;if(1===t.nodeType){if(Y.hasData(e)&&(s=Y.get(e).events))for(i in Y.remove(t,"handle events"),s)for(n=0,r=s[i].length;n<r;n++)S.event.add(t,i,s[i][n]);Q.hasData(e)&&(o=Q.access(e),a=S.extend({},o),Q.set(t,a))}}function He(n,r,i,o){r=g(r);var e,t,a,s,u,l,c=0,f=n.length,p=f-1,d=r[0],h=m(d);if(h||1<f&&"string"==typeof d&&!y.checkClone&&Ae.test(d))return n.each(function(e){var t=n.eq(e);h&&(r[0]=d.call(this,e,t.html())),He(t,r,i,o)});if(f&&(t=(e=xe(r,n[0].ownerDocument,!1,n,o)).firstChild,1===e.childNodes.length&&(e=t),t||o)){for(s=(a=S.map(ve(e,"script"),De)).length;c<f;c++)u=e,c!==p&&(u=S.clone(u,!0,!0),s&&S.merge(a,ve(u,"script"))),i.call(n[c],u,c);if(s)for(l=a[a.length-1].ownerDocument,S.map(a,qe),c=0;c<s;c++)u=a[c],he.test(u.type||"")&&!Y.access(u,"globalEval")&&S.contains(l,u)&&(u.src&&"module"!==(u.type||"").toLowerCase()?S._evalUrl&&!u.noModule&&S._evalUrl(u.src,{nonce:u.nonce||u.getAttribute("nonce")},l):b(u.textContent.replace(Ne,""),u,l))}return n}function Oe(e,t,n){for(var r,i=t?S.filter(t,e):e,o=0;null!=(r=i[o]);o++)n||1!==r.nodeType||S.cleanData(ve(r)),r.parentNode&&(n&&ie(r)&&ye(ve(r,"script")),r.parentNode.removeChild(r));return e}S.extend({htmlPrefilter:function(e){return e},clone:function(e,t,n){var r,i,o,a,s,u,l,c=e.cloneNode(!0),f=ie(e);if(!(y.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||S.isXMLDoc(e)))for(a=ve(c),r=0,i=(o=ve(e)).length;r<i;r++)s=o[r],u=a[r],void 0,"input"===(l=u.nodeName.toLowerCase())&&pe.test(s.type)?u.checked=s.checked:"input"!==l&&"textarea"!==l||(u.defaultValue=s.defaultValue);if(t)if(n)for(o=o||ve(e),a=a||ve(c),r=0,i=o.length;r<i;r++)Le(o[r],a[r]);else Le(e,c);return 0<(a=ve(c,"script")).length&&ye(a,!f&&ve(e,"script")),c},cleanData:function(e){for(var t,n,r,i=S.event.special,o=0;void 0!==(n=e[o]);o++)if(V(n)){if(t=n[Y.expando]){if(t.events)for(r in t.events)i[r]?S.event.remove(n,r):S.removeEvent(n,r,t.handle);n[Y.expando]=void 0}n[Q.expando]&&(n[Q.expando]=void 0)}}}),S.fn.extend({detach:function(e){return Oe(this,e,!0)},remove:function(e){return Oe(this,e)},text:function(e){return $(this,function(e){return void 0===e?S.text(this):this.empty().each(function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)})},null,e,arguments.length)},append:function(){return He(this,arguments,function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||je(this,e).appendChild(e)})},prepend:function(){return He(this,arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=je(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return He(this,arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(S.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map(function(){return S.clone(this,e,t)})},html:function(e){return $(this,function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!ke.test(e)&&!ge[(de.exec(e)||["",""])[1].toLowerCase()]){e=S.htmlPrefilter(e);try{for(;n<r;n++)1===(t=this[n]||{}).nodeType&&(S.cleanData(ve(t,!1)),t.innerHTML=e);t=0}catch(e){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var n=[];return He(this,arguments,function(e){var t=this.parentNode;S.inArray(this,n)<0&&(S.cleanData(ve(this)),t&&t.replaceChild(e,this))},n)}}),S.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,a){S.fn[e]=function(e){for(var t,n=[],r=S(e),i=r.length-1,o=0;o<=i;o++)t=o===i?this:this.clone(!0),S(r[o])[a](t),u.apply(n,t.get());return this.pushStack(n)}});var Pe=new RegExp("^("+ee+")(?!px)[a-z%]+$","i"),Re=function(e){var t=e.ownerDocument.defaultView;return t&&t.opener||(t=C),t.getComputedStyle(e)},Me=function(e,t,n){var r,i,o={};for(i in t)o[i]=e.style[i],e.style[i]=t[i];for(i in r=n.call(e),t)e.style[i]=o[i];return r},Ie=new RegExp(ne.join("|"),"i");function We(e,t,n){var r,i,o,a,s=e.style;return(n=n||Re(e))&&(""!==(a=n.getPropertyValue(t)||n[t])||ie(e)||(a=S.style(e,t)),!y.pixelBoxStyles()&&Pe.test(a)&&Ie.test(t)&&(r=s.width,i=s.minWidth,o=s.maxWidth,s.minWidth=s.maxWidth=s.width=a,a=n.width,s.width=r,s.minWidth=i,s.maxWidth=o)),void 0!==a?a+"":a}function Fe(e,t){return{get:function(){if(!e())return(this.get=t).apply(this,arguments);delete this.get}}}!function(){function e(){if(l){u.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0",l.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%",re.appendChild(u).appendChild(l);var e=C.getComputedStyle(l);n="1%"!==e.top,s=12===t(e.marginLeft),l.style.right="60%",o=36===t(e.right),r=36===t(e.width),l.style.position="absolute",i=12===t(l.offsetWidth/3),re.removeChild(u),l=null}}function t(e){return Math.round(parseFloat(e))}var n,r,i,o,a,s,u=E.createElement("div"),l=E.createElement("div");l.style&&(l.style.backgroundClip="content-box",l.cloneNode(!0).style.backgroundClip="",y.clearCloneStyle="content-box"===l.style.backgroundClip,S.extend(y,{boxSizingReliable:function(){return e(),r},pixelBoxStyles:function(){return e(),o},pixelPosition:function(){return e(),n},reliableMarginLeft:function(){return e(),s},scrollboxSize:function(){return e(),i},reliableTrDimensions:function(){var e,t,n,r;return null==a&&(e=E.createElement("table"),t=E.createElement("tr"),n=E.createElement("div"),e.style.cssText="position:absolute;left:-11111px;border-collapse:separate",t.style.cssText="border:1px solid",t.style.height="1px",n.style.height="9px",n.style.display="block",re.appendChild(e).appendChild(t).appendChild(n),r=C.getComputedStyle(t),a=parseInt(r.height,10)+parseInt(r.borderTopWidth,10)+parseInt(r.borderBottomWidth,10)===t.offsetHeight,re.removeChild(e)),a}}))}();var Be=["Webkit","Moz","ms"],$e=E.createElement("div").style,_e={};function ze(e){var t=S.cssProps[e]||_e[e];return t||(e in $e?e:_e[e]=function(e){var t=e[0].toUpperCase()+e.slice(1),n=Be.length;while(n--)if((e=Be[n]+t)in $e)return e}(e)||e)}var Ue=/^(none|table(?!-c[ea]).+)/,Xe=/^--/,Ve={position:"absolute",visibility:"hidden",display:"block"},Ge={letterSpacing:"0",fontWeight:"400"};function Ye(e,t,n){var r=te.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function Qe(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=S.css(e,n+ne[a],!0,i)),r?("content"===n&&(u-=S.css(e,"padding"+ne[a],!0,i)),"margin"!==n&&(u-=S.css(e,"border"+ne[a]+"Width",!0,i))):(u+=S.css(e,"padding"+ne[a],!0,i),"padding"!==n?u+=S.css(e,"border"+ne[a]+"Width",!0,i):s+=S.css(e,"border"+ne[a]+"Width",!0,i));return!r&&0<=o&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-s-.5))||0),u}function Je(e,t,n){var r=Re(e),i=(!y.boxSizingReliable()||n)&&"border-box"===S.css(e,"boxSizing",!1,r),o=i,a=We(e,t,r),s="offset"+t[0].toUpperCase()+t.slice(1);if(Pe.test(a)){if(!n)return a;a="auto"}return(!y.boxSizingReliable()&&i||!y.reliableTrDimensions()&&A(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===S.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===S.css(e,"boxSizing",!1,r),(o=s in e)&&(a=e[s])),(a=parseFloat(a)||0)+Qe(e,t,n||(i?"border":"content"),o,r,a)+"px"}function Ke(e,t,n,r,i){return new Ke.prototype.init(e,t,n,r,i)}S.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=We(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,s=X(t),u=Xe.test(t),l=e.style;if(u||(t=ze(s)),a=S.cssHooks[t]||S.cssHooks[s],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:l[t];"string"===(o=typeof n)&&(i=te.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n==n&&("number"!==o||u||(n+=i&&i[3]||(S.cssNumber[s]?"":"px")),y.clearCloneStyle||""!==n||0!==t.indexOf("background")||(l[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?l.setProperty(t,n):l[t]=n))}},css:function(e,t,n,r){var i,o,a,s=X(t);return Xe.test(t)||(t=ze(s)),(a=S.cssHooks[t]||S.cssHooks[s])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=We(e,t,r)),"normal"===i&&t in Ge&&(i=Ge[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),S.each(["height","width"],function(e,u){S.cssHooks[u]={get:function(e,t,n){if(t)return!Ue.test(S.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?Je(e,u,n):Me(e,Ve,function(){return Je(e,u,n)})},set:function(e,t,n){var r,i=Re(e),o=!y.scrollboxSize()&&"absolute"===i.position,a=(o||n)&&"border-box"===S.css(e,"boxSizing",!1,i),s=n?Qe(e,u,n,a,i):0;return a&&o&&(s-=Math.ceil(e["offset"+u[0].toUpperCase()+u.slice(1)]-parseFloat(i[u])-Qe(e,u,"border",!1,i)-.5)),s&&(r=te.exec(t))&&"px"!==(r[3]||"px")&&(e.style[u]=t,t=S.css(e,u)),Ye(0,t,s)}}}),S.cssHooks.marginLeft=Fe(y.reliableMarginLeft,function(e,t){if(t)return(parseFloat(We(e,"marginLeft"))||e.getBoundingClientRect().left-Me(e,{marginLeft:0},function(){return e.getBoundingClientRect().left}))+"px"}),S.each({margin:"",padding:"",border:"Width"},function(i,o){S.cssHooks[i+o]={expand:function(e){for(var t=0,n={},r="string"==typeof e?e.split(" "):[e];t<4;t++)n[i+ne[t]+o]=r[t]||r[t-2]||r[0];return n}},"margin"!==i&&(S.cssHooks[i+o].set=Ye)}),S.fn.extend({css:function(e,t){return $(this,function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=Re(e),i=t.length;a<i;a++)o[t[a]]=S.css(e,t[a],!1,r);return o}return void 0!==n?S.style(e,t,n):S.css(e,t)},e,t,1<arguments.length)}}),((S.Tween=Ke).prototype={constructor:Ke,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||S.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(S.cssNumber[n]?"":"px")},cur:function(){var e=Ke.propHooks[this.prop];return e&&e.get?e.get(this):Ke.propHooks._default.get(this)},run:function(e){var t,n=Ke.propHooks[this.prop];return this.options.duration?this.pos=t=S.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):Ke.propHooks._default.set(this),this}}).init.prototype=Ke.prototype,(Ke.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=S.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){S.fx.step[e.prop]?S.fx.step[e.prop](e):1!==e.elem.nodeType||!S.cssHooks[e.prop]&&null==e.elem.style[ze(e.prop)]?e.elem[e.prop]=e.now:S.style(e.elem,e.prop,e.now+e.unit)}}}).scrollTop=Ke.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},S.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},S.fx=Ke.prototype.init,S.fx.step={};var Ze,et,tt,nt,rt=/^(?:toggle|show|hide)$/,it=/queueHooks$/;function ot(){et&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnimationFrame(ot):C.setTimeout(ot,S.fx.interval),S.fx.tick())}function at(){return C.setTimeout(function(){Ze=void 0}),Ze=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ne[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ut(e,t,n){for(var r,i=(lt.tweeners[t]||[]).concat(lt.tweeners["*"]),o=0,a=i.length;o<a;o++)if(r=i[o].call(n,t,e))return r}function lt(o,e,t){var n,a,r=0,i=lt.prefilters.length,s=S.Deferred().always(function(){delete u.elem}),u=function(){if(a)return!1;for(var e=Ze||at(),t=Math.max(0,l.startTime+l.duration-e),n=1-(t/l.duration||0),r=0,i=l.tweens.length;r<i;r++)l.tweens[r].run(n);return s.notifyWith(o,[l,n,t]),n<1&&i?t:(i||s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l]),!1)},l=s.promise({elem:o,props:S.extend({},e),opts:S.extend(!0,{specialEasing:{},easing:S.easing._default},t),originalProperties:e,originalOptions:t,startTime:Ze||at(),duration:t.duration,tweens:[],createTween:function(e,t){var n=S.Tween(o,l.opts,e,t,l.opts.specialEasing[e]||l.opts.easing);return l.tweens.push(n),n},stop:function(e){var t=0,n=e?l.tweens.length:0;if(a)return this;for(a=!0;t<n;t++)l.tweens[t].run(1);return e?(s.notifyWith(o,[l,1,0]),s.resolveWith(o,[l,e])):s.rejectWith(o,[l,e]),this}}),c=l.props;for(!function(e,t){var n,r,i,o,a;for(n in e)if(i=t[r=X(n)],o=e[n],Array.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),(a=S.cssHooks[r])&&"expand"in a)for(n in o=a.expand(o),delete e[r],o)n in e||(e[n]=o[n],t[n]=i);else t[r]=i}(c,l.opts.specialEasing);r<i;r++)if(n=lt.prefilters[r].call(l,o,c,l.opts))return m(n.stop)&&(S._queueHooks(l.elem,l.opts.queue).stop=n.stop.bind(n)),n;return S.map(c,ut,l),m(l.opts.start)&&l.opts.start.call(o,l),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always),S.fx.timer(S.extend(u,{elem:o,anim:l,queue:l.opts.queue})),l}S.Animation=S.extend(lt,{tweeners:{"*":[function(e,t){var n=this.createTween(e,t);return se(n.elem,e,te.exec(t),n),n}]},tweener:function(e,t){m(e)?(t=e,e=["*"]):e=e.match(P);for(var n,r=0,i=e.length;r<i;r++)n=e[r],lt.tweeners[n]=lt.tweeners[n]||[],lt.tweeners[n].unshift(t)},prefilters:[function(e,t,n){var r,i,o,a,s,u,l,c,f="width"in t||"height"in t,p=this,d={},h=e.style,g=e.nodeType&&ae(e),v=Y.get(e,"fxshow");for(r in n.queue||(null==(a=S._queueHooks(e,"fx")).unqueued&&(a.unqueued=0,s=a.empty.fire,a.empty.fire=function(){a.unqueued||s()}),a.unqueued++,p.always(function(){p.always(function(){a.unqueued--,S.queue(e,"fx").length||a.empty.fire()})})),t)if(i=t[r],rt.test(i)){if(delete t[r],o=o||"toggle"===i,i===(g?"hide":"show")){if("show"!==i||!v||void 0===v[r])continue;g=!0}d[r]=v&&v[r]||S.style(e,r)}if((u=!S.isEmptyObject(t))||!S.isEmptyObject(d))for(r in f&&1===e.nodeType&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],null==(l=v&&v.display)&&(l=Y.get(e,"display")),"none"===(c=S.css(e,"display"))&&(l?c=l:(le([e],!0),l=e.style.display||l,c=S.css(e,"display"),le([e]))),("inline"===c||"inline-block"===c&&null!=l)&&"none"===S.css(e,"float")&&(u||(p.done(function(){h.display=l}),null==l&&(c=h.display,l="none"===c?"":c)),h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),u=!1,d)u||(v?"hidden"in v&&(g=v.hidden):v=Y.access(e,"fxshow",{display:l}),o&&(v.hidden=!g),g&&le([e],!0),p.done(function(){for(r in g||le([e]),Y.remove(e,"fxshow"),d)S.style(e,r,d[r])})),u=ut(g?v[r]:0,r,p),r in v||(v[r]=u.start,g&&(u.end=u.start,u.start=0))}],prefilter:function(e,t){t?lt.prefilters.unshift(e):lt.prefilters.push(e)}}),S.speed=function(e,t,n){var r=e&&"object"==typeof e?S.extend({},e):{complete:n||!n&&t||m(e)&&e,duration:e,easing:n&&t||t&&!m(t)&&t};return S.fx.off?r.duration=0:"number"!=typeof r.duration&&(r.duration in S.fx.speeds?r.duration=S.fx.speeds[r.duration]:r.duration=S.fx.speeds._default),null!=r.queue&&!0!==r.queue||(r.queue="fx"),r.old=r.complete,r.complete=function(){m(r.old)&&r.old.call(this),r.queue&&S.dequeue(this,r.queue)},r},S.fn.extend({fadeTo:function(e,t,n,r){return this.filter(ae).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(t,e,n,r){var i=S.isEmptyObject(t),o=S.speed(e,n,r),a=function(){var e=lt(this,S.extend({},t),o);(i||Y.get(this,"finish"))&&e.stop(!0)};return a.finish=a,i||!1===o.queue?this.each(a):this.queue(o.queue,a)},stop:function(i,e,o){var a=function(e){var t=e.stop;delete e.stop,t(o)};return"string"!=typeof i&&(o=e,e=i,i=void 0),e&&this.queue(i||"fx",[]),this.each(function(){var e=!0,t=null!=i&&i+"queueHooks",n=S.timers,r=Y.get(this);if(t)r[t]&&r[t].stop&&a(r[t]);else for(t in r)r[t]&&r[t].stop&&it.test(t)&&a(r[t]);for(t=n.length;t--;)n[t].elem!==this||null!=i&&n[t].queue!==i||(n[t].anim.stop(o),e=!1,n.splice(t,1));!e&&o||S.dequeue(this,i)})},finish:function(a){return!1!==a&&(a=a||"fx"),this.each(function(){var e,t=Y.get(this),n=t[a+"queue"],r=t[a+"queueHooks"],i=S.timers,o=n?n.length:0;for(t.finish=!0,S.queue(this,a,[]),r&&r.stop&&r.stop.call(this,!0),e=i.length;e--;)i[e].elem===this&&i[e].queue===a&&(i[e].anim.stop(!0),i.splice(e,1));for(e=0;e<o;e++)n[e]&&n[e].finish&&n[e].finish.call(this);delete t.finish})}}),S.each(["toggle","show","hide"],function(e,r){var i=S.fn[r];S.fn[r]=function(e,t,n){return null==e||"boolean"==typeof e?i.apply(this,arguments):this.animate(st(r,!0),e,t,n)}}),S.each({slideDown:st("show"),slideUp:st("hide"),slideToggle:st("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,r){S.fn[e]=function(e,t,n){return this.animate(r,e,t,n)}}),S.timers=[],S.fx.tick=function(){var e,t=0,n=S.timers;for(Ze=Date.now();t<n.length;t++)(e=n[t])()||n[t]!==e||n.splice(t--,1);n.length||S.fx.stop(),Ze=void 0},S.fx.timer=function(e){S.timers.push(e),S.fx.start()},S.fx.interval=13,S.fx.start=function(){et||(et=!0,ot())},S.fx.stop=function(){et=null},S.fx.speeds={slow:600,fast:200,_default:400},S.fn.delay=function(r,e){return r=S.fx&&S.fx.speeds[r]||r,e=e||"fx",this.queue(e,function(e,t){var n=C.setTimeout(e,r);t.stop=function(){C.clearTimeout(n)}})},tt=E.createElement("input"),nt=E.createElement("select").appendChild(E.createElement("option")),tt.type="checkbox",y.checkOn=""!==tt.value,y.optSelected=nt.selected,(tt=E.createElement("input")).value="t",tt.type="radio",y.radioValue="t"===tt.value;var ct,ft=S.expr.attrHandle;S.fn.extend({attr:function(e,t){return $(this,S.attr,e,t,1<arguments.length)},removeAttr:function(e){return this.each(function(){S.removeAttr(this,e)})}}),S.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"==typeof e.getAttribute?S.prop(e,t,n):(1===o&&S.isXMLDoc(e)||(i=S.attrHooks[t.toLowerCase()]||(S.expr.match.bool.test(t)?ct:void 0)),void 0!==n?null===n?void S.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=S.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!y.radioValue&&"radio"===t&&A(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(P);if(i&&1===e.nodeType)while(n=i[r++])e.removeAttribute(n)}}),ct={set:function(e,t,n){return!1===t?S.removeAttr(e,n):e.setAttribute(n,n),n}},S.each(S.expr.match.bool.source.match(/\w+/g),function(e,t){var a=ft[t]||S.find.attr;ft[t]=function(e,t,n){var r,i,o=t.toLowerCase();return n||(i=ft[o],ft[o]=r,r=null!=a(e,t,n)?o:null,ft[o]=i),r}});var pt=/^(?:input|select|textarea|button)$/i,dt=/^(?:a|area)$/i;function ht(e){return(e.match(P)||[]).join(" ")}function gt(e){return e.getAttribute&&e.getAttribute("class")||""}function vt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(P)||[]}S.fn.extend({prop:function(e,t){return $(this,S.prop,e,t,1<arguments.length)},removeProp:function(e){return this.each(function(){delete this[S.propFix[e]||e]})}}),S.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&S.isXMLDoc(e)||(t=S.propFix[t]||t,i=S.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=S.find.attr(e,"tabindex");return t?parseInt(t,10):pt.test(e.nodeName)||dt.test(e.nodeName)&&e.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),y.optSelected||(S.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),S.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){S.propFix[this.toLowerCase()]=this}),S.fn.extend({addClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).addClass(t.call(this,e,gt(this)))});if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},removeClass:function(t){var e,n,r,i,o,a,s,u=0;if(m(t))return this.each(function(e){S(this).removeClass(t.call(this,e,gt(this)))});if(!arguments.length)return this.attr("class","");if((e=vt(t)).length)while(n=this[u++])if(i=gt(n),r=1===n.nodeType&&" "+ht(i)+" "){a=0;while(o=e[a++])while(-1<r.indexOf(" "+o+" "))r=r.replace(" "+o+" "," ");i!==(s=ht(r))&&n.setAttribute("class",s)}return this},toggleClass:function(i,t){var o=typeof i,a="string"===o||Array.isArray(i);return"boolean"==typeof t&&a?t?this.addClass(i):this.removeClass(i):m(i)?this.each(function(e){S(this).toggleClass(i.call(this,e,gt(this),t),t)}):this.each(function(){var e,t,n,r;if(a){t=0,n=S(this),r=vt(i);while(e=r[t++])n.hasClass(e)?n.removeClass(e):n.addClass(e)}else void 0!==i&&"boolean"!==o||((e=gt(this))&&Y.set(this,"__className__",e),this.setAttribute&&this.setAttribute("class",e||!1===i?"":Y.get(this,"__className__")||""))})},hasClass:function(e){var t,n,r=0;t=" "+e+" ";while(n=this[r++])if(1===n.nodeType&&-1<(" "+ht(gt(n))+" ").indexOf(t))return!0;return!1}});var yt=/\r/g;S.fn.extend({val:function(n){var r,e,i,t=this[0];return arguments.length?(i=m(n),this.each(function(e){var t;1===this.nodeType&&(null==(t=i?n.call(this,e,S(this).val()):n)?t="":"number"==typeof t?t+="":Array.isArray(t)&&(t=S.map(t,function(e){return null==e?"":e+""})),(r=S.valHooks[this.type]||S.valHooks[this.nodeName.toLowerCase()])&&"set"in r&&void 0!==r.set(this,t,"value")||(this.value=t))})):t?(r=S.valHooks[t.type]||S.valHooks[t.nodeName.toLowerCase()])&&"get"in r&&void 0!==(e=r.get(t,"value"))?e:"string"==typeof(e=t.value)?e.replace(yt,""):null==e?"":e:void 0}}),S.extend({valHooks:{option:{get:function(e){var t=S.find.attr(e,"value");return null!=t?t:ht(S.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,s=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r<u;r++)if(((n=i[r]).selected||r===o)&&!n.disabled&&(!n.parentNode.disabled||!A(n.parentNode,"optgroup"))){if(t=S(n).val(),a)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=S.makeArray(t),a=i.length;while(a--)((r=i[a]).selected=-1<S.inArray(S.valHooks.option.get(r),o))&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),S.each(["radio","checkbox"],function(){S.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=-1<S.inArray(S(e).val(),t)}},y.checkOn||(S.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})}),y.focusin="onfocusin"in C;var mt=/^(?:focusinfocus|focusoutblur)$/,xt=function(e){e.stopPropagation()};S.extend(S.event,{trigger:function(e,t,n,r){var i,o,a,s,u,l,c,f,p=[n||E],d=v.call(e,"type")?e.type:e,h=v.call(e,"namespace")?e.namespace.split("."):[];if(o=f=a=n=n||E,3!==n.nodeType&&8!==n.nodeType&&!mt.test(d+S.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[S.expando]?e:new S.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:S.makeArray(t,[e]),c=S.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!x(n)){for(s=c.delegateType||d,mt.test(s+d)||(o=o.parentNode);o;o=o.parentNode)p.push(o),a=o;a===(n.ownerDocument||E)&&p.push(a.defaultView||a.parentWindow||C)}i=0;while((o=p[i++])&&!e.isPropagationStopped())f=o,e.type=1<i?s:c.bindType||d,(l=(Y.get(o,"events")||Object.create(null))[e.type]&&Y.get(o,"handle"))&&l.apply(o,t),(l=u&&o[u])&&l.apply&&V(o)&&(e.result=l.apply(o,t),!1===e.result&&e.preventDefault());return e.type=d,r||e.isDefaultPrevented()||c._default&&!1!==c._default.apply(p.pop(),t)||!V(n)||u&&m(n[d])&&!x(n)&&((a=n[u])&&(n[u]=null),S.event.triggered=d,e.isPropagationStopped()&&f.addEventListener(d,xt),n[d](),e.isPropagationStopped()&&f.removeEventListener(d,xt),S.event.triggered=void 0,a&&(n[u]=a)),e.result}},simulate:function(e,t,n){var r=S.extend(new S.Event,n,{type:e,isSimulated:!0});S.event.trigger(r,null,t)}}),S.fn.extend({trigger:function(e,t){return this.each(function(){S.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];if(n)return S.event.trigger(e,t,n,!0)}}),y.focusin||S.each({focus:"focusin",blur:"focusout"},function(n,r){var i=function(e){S.event.simulate(r,e.target,S.event.fix(e))};S.event.special[r]={setup:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r);t||e.addEventListener(n,i,!0),Y.access(e,r,(t||0)+1)},teardown:function(){var e=this.ownerDocument||this.document||this,t=Y.access(e,r)-1;t?Y.access(e,r,t):(e.removeEventListener(n,i,!0),Y.remove(e,r))}}});var bt=C.location,wt={guid:Date.now()},Tt=/\?/;S.parseXML=function(e){var t,n;if(!e||"string"!=typeof e)return null;try{t=(new C.DOMParser).parseFromString(e,"text/xml")}catch(e){}return n=t&&t.getElementsByTagName("parsererror")[0],t&&!n||S.error("Invalid XML: "+(n?S.map(n.childNodes,function(e){return e.textContent}).join("\n"):e)),t};var Ct=/\[\]$/,Et=/\r?\n/g,St=/^(?:submit|button|image|reset|file)$/i,kt=/^(?:input|select|textarea|keygen)/i;function At(n,e,r,i){var t;if(Array.isArray(e))S.each(e,function(e,t){r||Ct.test(n)?i(n,t):At(n+"["+("object"==typeof t&&null!=t?e:"")+"]",t,r,i)});else if(r||"object"!==w(e))i(n,e);else for(t in e)At(n+"["+t+"]",e[t],r,i)}S.param=function(e,t){var n,r=[],i=function(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!S.isPlainObject(e))S.each(e,function(){i(this.name,this.value)});else for(n in e)At(n,e[n],t,i);return r.join("&")},S.fn.extend({serialize:function(){return S.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=S.prop(this,"elements");return e?S.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!S(this).is(":disabled")&&kt.test(this.nodeName)&&!St.test(e)&&(this.checked||!pe.test(e))}).map(function(e,t){var n=S(this).val();return null==n?null:Array.isArray(n)?S.map(n,function(e){return{name:t.name,value:e.replace(Et,"\r\n")}}):{name:t.name,value:n.replace(Et,"\r\n")}}).get()}});var Nt=/%20/g,jt=/#.*$/,Dt=/([?&])_=[^&]*/,qt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Lt=/^(?:GET|HEAD)$/,Ht=/^\/\//,Ot={},Pt={},Rt="*/".concat("*"),Mt=E.createElement("a");function It(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var n,r=0,i=e.toLowerCase().match(P)||[];if(m(t))while(n=i[r++])"+"===n[0]?(n=n.slice(1)||"*",(o[n]=o[n]||[]).unshift(t)):(o[n]=o[n]||[]).push(t)}}function Wt(t,i,o,a){var s={},u=t===Pt;function l(e){var r;return s[e]=!0,S.each(t[e]||[],function(e,t){var n=t(i,o,a);return"string"!=typeof n||u||s[n]?u?!(r=n):void 0:(i.dataTypes.unshift(n),l(n),!1)}),r}return l(i.dataTypes[0])||!s["*"]&&l("*")}function Ft(e,t){var n,r,i=S.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&S.extend(!0,e,r),e}Mt.href=bt.href,S.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:bt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(bt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Rt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":S.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Ft(Ft(e,S.ajaxSettings),t):Ft(S.ajaxSettings,e)},ajaxPrefilter:It(Ot),ajaxTransport:It(Pt),ajax:function(e,t){"object"==typeof e&&(t=e,e=void 0),t=t||{};var c,f,p,n,d,r,h,g,i,o,v=S.ajaxSetup({},t),y=v.context||v,m=v.context&&(y.nodeType||y.jquery)?S(y):S.event,x=S.Deferred(),b=S.Callbacks("once memory"),w=v.statusCode||{},a={},s={},u="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(h){if(!n){n={};while(t=qt.exec(p))n[t[1].toLowerCase()+" "]=(n[t[1].toLowerCase()+" "]||[]).concat(t[2])}t=n[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return h?p:null},setRequestHeader:function(e,t){return null==h&&(e=s[e.toLowerCase()]=s[e.toLowerCase()]||e,a[e]=t),this},overrideMimeType:function(e){return null==h&&(v.mimeType=e),this},statusCode:function(e){var t;if(e)if(h)T.always(e[T.status]);else for(t in e)w[t]=[w[t],e[t]];return this},abort:function(e){var t=e||u;return c&&c.abort(t),l(0,t),this}};if(x.promise(T),v.url=((e||v.url||bt.href)+"").replace(Ht,bt.protocol+"//"),v.type=t.method||t.type||v.method||v.type,v.dataTypes=(v.dataType||"*").toLowerCase().match(P)||[""],null==v.crossDomain){r=E.createElement("a");try{r.href=v.url,r.href=r.href,v.crossDomain=Mt.protocol+"//"+Mt.host!=r.protocol+"//"+r.host}catch(e){v.crossDomain=!0}}if(v.data&&v.processData&&"string"!=typeof v.data&&(v.data=S.param(v.data,v.traditional)),Wt(Ot,v,t,T),h)return T;for(i in(g=S.event&&v.global)&&0==S.active++&&S.event.trigger("ajaxStart"),v.type=v.type.toUpperCase(),v.hasContent=!Lt.test(v.type),f=v.url.replace(jt,""),v.hasContent?v.data&&v.processData&&0===(v.contentType||"").indexOf("application/x-www-form-urlencoded")&&(v.data=v.data.replace(Nt,"+")):(o=v.url.slice(f.length),v.data&&(v.processData||"string"==typeof v.data)&&(f+=(Tt.test(f)?"&":"?")+v.data,delete v.data),!1===v.cache&&(f=f.replace(Dt,"$1"),o=(Tt.test(f)?"&":"?")+"_="+wt.guid+++o),v.url=f+o),v.ifModified&&(S.lastModified[f]&&T.setRequestHeader("If-Modified-Since",S.lastModified[f]),S.etag[f]&&T.setRequestHeader("If-None-Match",S.etag[f])),(v.data&&v.hasContent&&!1!==v.contentType||t.contentType)&&T.setRequestHeader("Content-Type",v.contentType),T.setRequestHeader("Accept",v.dataTypes[0]&&v.accepts[v.dataTypes[0]]?v.accepts[v.dataTypes[0]]+("*"!==v.dataTypes[0]?", "+Rt+"; q=0.01":""):v.accepts["*"]),v.headers)T.setRequestHeader(i,v.headers[i]);if(v.beforeSend&&(!1===v.beforeSend.call(y,T,v)||h))return T.abort();if(u="abort",b.add(v.complete),T.done(v.success),T.fail(v.error),c=Wt(Pt,v,t,T)){if(T.readyState=1,g&&m.trigger("ajaxSend",[T,v]),h)return T;v.async&&0<v.timeout&&(d=C.setTimeout(function(){T.abort("timeout")},v.timeout));try{h=!1,c.send(a,l)}catch(e){if(h)throw e;l(-1,e)}}else l(-1,"No Transport");function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=void 0,p=r||"",T.readyState=0<e?4:0,i=200<=e&&e<300||304===e,n&&(s=function(e,t,n){var r,i,o,a,s=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in s)if(s[i]&&s[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(v,T,n)),!i&&-1<S.inArray("script",v.dataTypes)&&S.inArray("json",v.dataTypes)<0&&(v.converters["text script"]=function(){}),s=function(e,t,n,r){var i,o,a,s,u,l={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)l[a.toLowerCase()]=e.converters[a];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=l[u+" "+o]||l["* "+o]))for(i in l)if((s=i.split(" "))[1]===o&&(a=l[u+" "+s[0]]||l["* "+s[0]])){!0===a?a=l[i]:!0!==l[i]&&(o=s[0],c.unshift(s[1]));break}if(!0!==a)if(a&&e["throws"])t=a(t);else try{t=a(t)}catch(e){return{state:"parsererror",error:a?e:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(v,s,T,i),i?(v.ifModified&&((u=T.getResponseHeader("Last-Modified"))&&(S.lastModified[f]=u),(u=T.getResponseHeader("etag"))&&(S.etag[f]=u)),204===e||"HEAD"===v.type?l="nocontent":304===e?l="notmodified":(l=s.state,o=s.data,i=!(a=s.error))):(a=l,!e&&l||(l="error",e<0&&(e=0))),T.status=e,T.statusText=(t||l)+"",i?x.resolveWith(y,[o,l,T]):x.rejectWith(y,[T,l,a]),T.statusCode(w),w=void 0,g&&m.trigger(i?"ajaxSuccess":"ajaxError",[T,v,i?o:a]),b.fireWith(y,[T,l]),g&&(m.trigger("ajaxComplete",[T,v]),--S.active||S.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return S.get(e,t,n,"json")},getScript:function(e,t){return S.get(e,void 0,t,"script")}}),S.each(["get","post"],function(e,i){S[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),S.ajax(S.extend({url:e,type:i,dataType:r,data:t,success:n},S.isPlainObject(e)&&e))}}),S.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),S._evalUrl=function(e,t,n){return S.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){S.globalEval(e,t,n)}})},S.fn.extend({wrapAll:function(e){var t;return this[0]&&(m(e)&&(e=e.call(this[0])),t=S(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this},wrapInner:function(n){return m(n)?this.each(function(e){S(this).wrapInner(n.call(this,e))}):this.each(function(){var e=S(this),t=e.contents();t.length?t.wrapAll(n):e.append(n)})},wrap:function(t){var n=m(t);return this.each(function(e){S(this).wrapAll(n?t.call(this,e):t)})},unwrap:function(e){return this.parent(e).not("body").each(function(){S(this).replaceWith(this.childNodes)}),this}}),S.expr.pseudos.hidden=function(e){return!S.expr.pseudos.visible(e)},S.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},S.ajaxSettings.xhr=function(){try{return new C.XMLHttpRequest}catch(e){}};var Bt={0:200,1223:204},$t=S.ajaxSettings.xhr();y.cors=!!$t&&"withCredentials"in $t,y.ajax=$t=!!$t,S.ajaxTransport(function(i){var o,a;if(y.cors||$t&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideMimeType&&r.overrideMimeType(i.mimeType),i.crossDomain||e["X-Requested-With"]||(e["X-Requested-With"]="XMLHttpRequest"),e)r.setRequestHeader(n,e[n]);o=function(e){return function(){o&&(o=a=r.onload=r.onerror=r.onabort=r.ontimeout=r.onreadystatechange=null,"abort"===e?r.abort():"error"===e?"number"!=typeof r.status?t(0,"error"):t(r.status,r.statusText):t(Bt[r.status]||r.status,r.statusText,"text"!==(r.responseType||"text")||"string"!=typeof r.responseText?{binary:r.response}:{text:r.responseText},r.getAllResponseHeaders()))}},r.onload=o(),a=r.onerror=r.ontimeout=o("error"),void 0!==r.onabort?r.onabort=a:r.onreadystatechange=function(){4===r.readyState&&C.setTimeout(function(){o&&a()})},o=o("abort");try{r.send(i.hasContent&&i.data||null)}catch(e){if(o)throw e}},abort:function(){o&&o()}}}),S.ajaxPrefilter(function(e){e.crossDomain&&(e.contents.script=!1)}),S.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return S.globalEval(e),e}}}),S.ajaxPrefilter("script",function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),S.ajaxTransport("script",function(n){var r,i;if(n.crossDomain||n.scriptAttrs)return{send:function(e,t){r=S("<script>").attr(n.scriptAttrs||{}).prop({charset:n.scriptCharset,src:n.url}).on("load error",i=function(e){r.remove(),i=null,e&&t("error"===e.type?404:200,e.type)}),E.head.appendChild(r[0])},abort:function(){i&&i()}}});var _t,zt=[],Ut=/(=)\?(?=&|$)|\?\?/;S.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=zt.pop()||S.expando+"_"+wt.guid++;return this[e]=!0,e}}),S.ajaxPrefilter("json jsonp",function(e,t,n){var r,i,o,a=!1!==e.jsonp&&(Ut.test(e.url)?"url":"string"==typeof e.data&&0===(e.contentType||"").indexOf("application/x-www-form-urlencoded")&&Ut.test(e.data)&&"data");if(a||"jsonp"===e.dataTypes[0])return r=e.jsonpCallback=m(e.jsonpCallback)?e.jsonpCallback():e.jsonpCallback,a?e[a]=e[a].replace(Ut,"$1"+r):!1!==e.jsonp&&(e.url+=(Tt.test(e.url)?"&":"?")+e.jsonp+"="+r),e.converters["script json"]=function(){return o||S.error(r+" was not called"),o[0]},e.dataTypes[0]="json",i=C[r],C[r]=function(){o=arguments},n.always(function(){void 0===i?S(C).removeProp(r):C[r]=i,e[r]&&(e.jsonpCallback=t.jsonpCallback,zt.push(r)),o&&m(i)&&i(o[0]),o=i=void 0}),"script"}),y.createHTMLDocument=((_t=E.implementation.createHTMLDocument("").body).innerHTML="<form></form><form></form>",2===_t.childNodes.length),S.parseHTML=function(e,t,n){return"string"!=typeof e?[]:("boolean"==typeof t&&(n=t,t=!1),t||(y.createHTMLDocument?((r=(t=E.implementation.createHTMLDocument("")).createElement("base")).href=E.location.href,t.head.appendChild(r)):t=E),o=!n&&[],(i=N.exec(e))?[t.createElement(i[1])]:(i=xe([e],t,o),o&&o.length&&S(o).remove(),S.merge([],i.childNodes)));var r,i,o},S.fn.load=function(e,t,n){var r,i,o,a=this,s=e.indexOf(" ");return-1<s&&(r=ht(e.slice(s)),e=e.slice(0,s)),m(t)?(n=t,t=void 0):t&&"object"==typeof t&&(i="POST"),0<a.length&&S.ajax({url:e,type:i||"GET",dataType:"html",data:t}).done(function(e){o=arguments,a.html(r?S("<div>").append(S.parseHTML(e)).find(r):e)}).always(n&&function(e,t){a.each(function(){n.apply(this,o||[e.responseText,t,e])})}),this},S.expr.pseudos.animated=function(t){return S.grep(S.timers,function(e){return t===e.elem}).length},S.offset={setOffset:function(e,t,n){var r,i,o,a,s,u,l=S.css(e,"position"),c=S(e),f={};"static"===l&&(e.style.position="relative"),s=c.offset(),o=S.css(e,"top"),u=S.css(e,"left"),("absolute"===l||"fixed"===l)&&-1<(o+u).indexOf("auto")?(a=(r=c.position()).top,i=r.left):(a=parseFloat(o)||0,i=parseFloat(u)||0),m(t)&&(t=t.call(e,n,S.extend({},s))),null!=t.top&&(f.top=t.top-s.top+a),null!=t.left&&(f.left=t.left-s.left+i),"using"in t?t.using.call(e,f):c.css(f)}},S.fn.extend({offset:function(t){if(arguments.length)return void 0===t?this:this.each(function(e){S.offset.setOffset(this,t,e)});var e,n,r=this[0];return r?r.getClientRects().length?(e=r.getBoundingClientRect(),n=r.ownerDocument.defaultView,{top:e.top+n.pageYOffset,left:e.left+n.pageXOffset}):{top:0,left:0}:void 0},position:function(){if(this[0]){var e,t,n,r=this[0],i={top:0,left:0};if("fixed"===S.css(r,"position"))t=r.getBoundingClientRect();else{t=this.offset(),n=r.ownerDocument,e=r.offsetParent||n.documentElement;while(e&&(e===n.body||e===n.documentElement)&&"static"===S.css(e,"position"))e=e.parentNode;e&&e!==r&&1===e.nodeType&&((i=S(e).offset()).top+=S.css(e,"borderTopWidth",!0),i.left+=S.css(e,"borderLeftWidth",!0))}return{top:t.top-i.top-S.css(r,"marginTop",!0),left:t.left-i.left-S.css(r,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent;while(e&&"static"===S.css(e,"position"))e=e.offsetParent;return e||re})}}),S.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,i){var o="pageYOffset"===i;S.fn[t]=function(e){return $(this,function(e,t,n){var r;if(x(e)?r=e:9===e.nodeType&&(r=e.defaultView),void 0===n)return r?r[i]:e[t];r?r.scrollTo(o?r.pageXOffset:n,o?n:r.pageYOffset):e[t]=n},t,e,arguments.length)}}),S.each(["top","left"],function(e,n){S.cssHooks[n]=Fe(y.pixelPosition,function(e,t){if(t)return t=We(e,n),Pe.test(t)?S(e).position()[n]+"px":t})}),S.each({Height:"height",Width:"width"},function(a,s){S.each({padding:"inner"+a,content:s,"":"outer"+a},function(r,o){S.fn[o]=function(e,t){var n=arguments.length&&(r||"boolean"!=typeof e),i=r||(!0===e||!0===t?"margin":"border");return $(this,function(e,t,n){var r;return x(e)?0===o.indexOf("outer")?e["inner"+a]:e.document.documentElement["client"+a]:9===e.nodeType?(r=e.documentElement,Math.max(e.body["scroll"+a],r["scroll"+a],e.body["offset"+a],r["offset"+a],r["client"+a])):void 0===n?S.css(e,t,i):S.style(e,t,n,i)},s,n?e:void 0,n)}})}),S.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){S.fn[t]=function(e){return this.on(t,e)}}),S.fn.extend({bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)},hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)}}),S.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(e,n){S.fn[n]=function(e,t){return 0<arguments.length?this.on(n,null,e,t):this.trigger(n)}});var Xt=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;S.proxy=function(e,t){var n,r,i;if("string"==typeof t&&(n=e[t],t=e,e=n),m(e))return r=s.call(arguments,2),(i=function(){return e.apply(t||this,r.concat(s.call(arguments)))}).guid=e.guid=e.guid||S.guid++,i},S.holdReady=function(e){e?S.readyWait++:S.ready(!0)},S.isArray=Array.isArray,S.parseJSON=JSON.parse,S.nodeName=A,S.isFunction=m,S.isWindow=x,S.camelCase=X,S.type=w,S.now=Date.now,S.isNumeric=function(e){var t=S.type(e);return("number"===t||"string"===t)&&!isNaN(e-parseFloat(e))},S.trim=function(e){return null==e?"":(e+"").replace(Xt,"")},"function"==typeof define&&define.amd&&define("jquery",[],function(){return S});var Vt=C.jQuery,Gt=C.$;return S.noConflict=function(e){return C.$===S&&(C.$=Gt),e&&C.jQuery===S&&(C.jQuery=Vt),S},"undefined"==typeof e&&(C.jQuery=C.$=S),S});
//]]>
</script>
</b:includable>
<b:includable id='mainScript'>
<script>
//<![CDATA[
$('.search_btn').click(function(){
$('body').addClass('search_active');
});
$('.backdrop').click(function(){
$('body').removeClass('search_active');
});
/* Main Script */
const _0x3d545e=_0x3e54;(function(_0x78b421,_0x5b486f){const _0x2e7448=_0x3e54,_0x5946db=_0x78b421();while(!![]){try{const _0x54b2cc=parseInt(_0x2e7448(0x170))/0x1+-parseInt(_0x2e7448(0x10d))/0x2+-parseInt(_0x2e7448(0x164))/0x3*(parseInt(_0x2e7448(0x176))/0x4)+-parseInt(_0x2e7448(0x165))/0x5*(-parseInt(_0x2e7448(0x102))/0x6)+-parseInt(_0x2e7448(0x17e))/0x7+-parseInt(_0x2e7448(0x173))/0x8*(parseInt(_0x2e7448(0x118))/0x9)+-parseInt(_0x2e7448(0x1b0))/0xa*(-parseInt(_0x2e7448(0x137))/0xb);if(_0x54b2cc===_0x5b486f)break;else _0x5946db['push'](_0x5946db['shift']());}catch(_0xbba391){_0x5946db['push'](_0x5946db['shift']());}}}(_0x2882,0x51767),$(_0x3d545e(0x1be))[_0x3d545e(0x14e)](function(){const _0x5e21c9=_0x3d545e;var _0x5cf9bb=$(this)[_0x5e21c9(0x1d9)](_0x5e21c9(0x110));_0x5cf9bb&&$(_0x5e21c9(0x1be))[_0x5e21c9(0x185)](),$('#jobzeek_loadmore')['on'](_0x5e21c9(0x18f),function(_0xed9364){const _0x6fd410=_0x5e21c9;$(_0x6fd410(0x1be))[_0x6fd410(0x1dc)](),$[_0x6fd410(0x1c0)]({'url':_0x5cf9bb,'success':function(_0x4c0574){const _0x54f5a4=_0x6fd410;var _0x5a50e4=$(_0x4c0574)[_0x54f5a4(0x187)](_0x54f5a4(0x1e2));_0x5a50e4[_0x54f5a4(0x187)](_0x54f5a4(0x172))[_0x54f5a4(0x168)](_0x54f5a4(0x140)),$(_0x54f5a4(0x1e2))['append'](_0x5a50e4['html']()),(_0x5cf9bb=$(_0x4c0574)[_0x54f5a4(0x187)]('#jobzeek_loadmore')[_0x54f5a4(0x1d9)](_0x54f5a4(0x110)))?$(_0x54f5a4(0x1be))[_0x54f5a4(0x185)]():($('#jobzeek_loadmore')[_0x54f5a4(0x1dc)](),$(_0x54f5a4(0x122))[_0x54f5a4(0x168)](_0x54f5a4(0x185))),Defer[_0x54f5a4(0x104)](_0x54f5a4(0x18e),0x64,_0x54f5a4(0x19e),null,{'rootMargin':'1px'}),shareMenu(),timeAgo(),removeElement();},'beforeSend':function(){const _0x4decff=_0x6fd410;$(_0x4decff(0x124))[_0x4decff(0x190)](_0x4decff(0x198),_0x4decff(0x1da));},'complete':function(){const _0x31ab23=_0x6fd410;$(_0x31ab23(0x124))[_0x31ab23(0x1dc)]();}}),_0xed9364[_0x6fd410(0x1b5)]();});}));function responsive(_0x282bbb){const _0x33a7dd=_0x3d545e;_0x282bbb[_0x33a7dd(0x199)]?$(_0x33a7dd(0x155))['click'](function(){const _0x2c51c6=_0x33a7dd;$(this)[_0x2c51c6(0x15c)](_0x2c51c6(0x15b)),$(this)['siblings'](_0x2c51c6(0xf9))[_0x2c51c6(0x15c)](_0x2c51c6(0x185));}):$('.jobzeek_navigation\x20ul\x20li.has_sub')[_0x33a7dd(0x1d0)](function(){const _0x58964f=_0x33a7dd;$(this)[_0x58964f(0x15c)](_0x58964f(0x15b));});};var maxWidth=window[_0x3d545e(0x10b)](_0x3d545e(0x151));responsive(maxWidth),maxWidth[_0x3d545e(0x14a)](responsive),$(_0x3d545e(0x1ca))['click'](function(){const _0x28bf7a=_0x3d545e;$(_0x28bf7a(0x153))[_0x28bf7a(0x15c)]('nav_active');}),$(_0x3d545e(0x193))[_0x3d545e(0x18f)](function(){const _0x494ffd=_0x3d545e;$(_0x494ffd(0x153))[_0x494ffd(0x1bd)](_0x494ffd(0x135));}),$(_0x3d545e(0xf6))['click'](function(){const _0x48550a=_0x3d545e;$(_0x48550a(0x153))[_0x48550a(0x15c)]('ntfcn_active');}),$('.close_button')[_0x3d545e(0x18f)](function(){const _0x5bc39d=_0x3d545e;$(_0x5bc39d(0x153))['removeClass'](_0x5bc39d(0x12b));}),$(document)[_0x3d545e(0x13e)](function(_0x36ea85){const _0x531bea=_0x3d545e;if(_0x36ea85['keyCode']==0x1b)$('body')[_0x531bea(0x1bd)](_0x531bea(0x12b));}),$(document)['on'](_0x3d545e(0x18f),function(_0x259407){const _0xe7a1b4=_0x3d545e;$(_0x259407[_0xe7a1b4(0x131)])[_0xe7a1b4(0x106)](_0xe7a1b4(0x19a))[_0xe7a1b4(0x10e)]===0x0&&$(_0xe7a1b4(0x153))['removeClass'](_0xe7a1b4(0x12b));});function shareMenu(){const _0x15c95c=_0x3d545e;$(_0x15c95c(0x1af))['click'](function(){const _0x2d3e3f=_0x15c95c;$(_0x2d3e3f(0x153))[_0x2d3e3f(0x168)]('share_active'),$(this)[_0x2d3e3f(0x1a3)](_0x2d3e3f(0x111))['addClass'](_0x2d3e3f(0x15b));}),$(_0x15c95c(0x10f))[_0x15c95c(0x18f)](function(){const _0xa368ae=_0x15c95c;$(_0xa368ae(0x153))[_0xa368ae(0x1bd)](_0xa368ae(0xfa)),$(_0xa368ae(0x111))['removeClass'](_0xa368ae(0x15b));}),$(document)['keyup'](function(_0x58d0b9){const _0x24c1f4=_0x15c95c;if(_0x58d0b9[_0x24c1f4(0x1ba)]==0x1b)$(_0x24c1f4(0x153))[_0x24c1f4(0x1bd)](_0x24c1f4(0xfa));if(_0x58d0b9[_0x24c1f4(0x1ba)]==0x1b)$(_0x24c1f4(0x111))[_0x24c1f4(0x1bd)]('active');}),$(_0x15c95c(0xfc))['click'](function(){const _0x1ad44c=_0x15c95c;$(_0x1ad44c(0x17f))[_0x1ad44c(0x1a4)](),document[_0x1ad44c(0x1a6)]('copy'),($('.snackbar')['addClass'](_0x1ad44c(0x15b)),setTimeout(function(){const _0x28d9b5=_0x1ad44c;$(_0x28d9b5(0x136))[_0x28d9b5(0x1bd)](_0x28d9b5(0x15b));},0x7d0));});};shareMenu(),$(_0x3d545e(0x1c5))[_0x3d545e(0x18f)](function(){const _0x2779e4=_0x3d545e;$(_0x2779e4(0x182))[_0x2779e4(0x17b)]({'scrollTop':0x0},0x3e8);}),$(window)[_0x3d545e(0x1a8)](function(){const _0x2ea1a1=_0x3d545e;$(window)[_0x2ea1a1(0x100)]()>=0x7e?$(_0x2ea1a1(0x186))[_0x2ea1a1(0x168)](_0x2ea1a1(0x185)):$(_0x2ea1a1(0x186))[_0x2ea1a1(0x1bd)](_0x2ea1a1(0x185));}),$(document)[_0x3d545e(0x1d5)](function(){const _0x2a14a4=_0x3d545e;$(_0x2a14a4(0x1ac))[_0x2a14a4(0x183)](),$(_0x2a14a4(0x166))[_0x2a14a4(0x183)]($(_0x2a14a4(0x191))[_0x2a14a4(0x1bf)]()),$(_0x2a14a4(0x157))[_0x2a14a4(0x183)]($(_0x2a14a4(0x189))[_0x2a14a4(0x1bf)]()),$(_0x2a14a4(0x13c))[_0x2a14a4(0x183)]($(_0x2a14a4(0x18b))[_0x2a14a4(0x1bf)]()),$(_0x2a14a4(0x115))[_0x2a14a4(0x183)]($(_0x2a14a4(0x1c8))['html']()),$('.bottom_bar_menu\x20.apply_button')['html']($('.job_posting_apply_button')[_0x2a14a4(0x183)]()),$(_0x2a14a4(0x1b8))[_0x2a14a4(0x188)](!![],!![])[_0x2a14a4(0x1a0)](_0x2a14a4(0x171))['contents']()['unwrap']();});function removeElement(){const _0x28b990=_0x3d545e,_0x95f636=(function(){let _0x10621f=!![];return function(_0x51d494,_0x430eb0){const _0x1205fb=_0x10621f?function(){const _0x5adbcc=_0x3e54;if(_0x430eb0){const _0x36a50a=_0x430eb0[_0x5adbcc(0x11e)](_0x51d494,arguments);return _0x430eb0=null,_0x36a50a;}}:function(){};return _0x10621f=![],_0x1205fb;};}()),_0x2f0a0b=_0x95f636(this,function(){const _0x39e4f2=_0x3e54;return _0x2f0a0b['toString']()[_0x39e4f2(0x159)](_0x39e4f2(0xf3))[_0x39e4f2(0x161)]()[_0x39e4f2(0x105)](_0x2f0a0b)[_0x39e4f2(0x159)]('(((.+)+)+)+$');});_0x2f0a0b(),$(_0x28b990(0x163))[_0x28b990(0x195)](),$(_0x28b990(0x109))[_0x28b990(0x113)](function(){const _0x476c4e=_0x28b990;return $(this)['text']()['trim']()[_0x476c4e(0x10e)]==0x0;})[_0x28b990(0x195)]();};removeElement();function bloggerComment(){const _0x2b9759=_0x3d545e;var _0x282376=document,_0x336b83=_0x282376[_0x2b9759(0x120)]('comment_editor'),_0x5b12bf=_0x336b83[_0x2b9759(0xf7)](_0x2b9759(0x15f));if(_0x336b83[_0x2b9759(0x1b3)](_0x2b9759(0x1b1),_0x5b12bf),0x1==comment){var _0xc23e1a=_0x282376[_0x2b9759(0x1cc)](_0x2b9759(0x103)),_0x7eb51c=_0x282376[_0x2b9759(0x120)](_0x2b9759(0x1ad)),_0x4e9f9c=_0xc23e1a[_0x2b9759(0x10e)],_0x365fa5=function(_0xa96e33,_0xa1b3f1,_0x51329c,_0x188517){const _0x1a9bd4=_0x2b9759;_0xa96e33[_0x1a9bd4(0x15e)](_0x1a9bd4(0x18f),function(){const _0x360844=_0x1a9bd4;var _0x334010=_0xa96e33[_0x360844(0xf7)](_0x360844(0x180));_0x282376[_0x360844(0x120)]('c'+_0x334010)[_0x360844(0x1c4)](_0xa1b3f1),_0x282376[_0x360844(0x120)](_0x360844(0x1ad))['className']=_0x360844(0x11a),_0x282376[_0x360844(0x120)](_0x360844(0x1d3))[_0x360844(0x107)]=_0x360844(0xfd),_0x51329c[_0x360844(0x1b1)]=_0x188517+_0x360844(0xfe)+_0x334010;});};for(i=0x0;i<_0x4e9f9c;i++)_0x365fa5(_0xc23e1a[i],_0x7eb51c,_0x336b83,_0x5b12bf);var _0x2e8119=_0x282376[_0x2b9759(0x1cc)](_0x2b9759(0xf4))[0x0];_0x282376[_0x2b9759(0x120)]('addcomment')[_0x2b9759(0x15e)](_0x2b9759(0x18f),function(){const _0x299d43=_0x2b9759;_0x2e8119['appendChild'](_0x7eb51c),_0x282376[_0x299d43(0x120)](_0x299d43(0x1ad))[_0x299d43(0x107)]='comment_replybox_thread',_0x282376[_0x299d43(0x120)]('addcomment')[_0x299d43(0x107)]='hidden',_0x336b83[_0x299d43(0x1b1)]=_0x5b12bf;});}};$('.jtc_button')['click'](function(){const _0x3520f6=_0x3d545e;$(this)[_0x3520f6(0x195)](),$(_0x3520f6(0x143))[_0x3520f6(0x185)](),bloggerComment();}),$(_0x3d545e(0x174))[_0x3d545e(0x18f)](function(){const _0x3ebade=_0x3d545e;$(this)[_0x3ebade(0x15c)](_0x3ebade(0x15b)),$(_0x3ebade(0x15a))[_0x3ebade(0x15c)](_0x3ebade(0x15b));}),$(_0x3d545e(0x178))[_0x3d545e(0x18f)](function(){const _0x22a6b6=_0x3d545e;$(this)[_0x22a6b6(0x1a3)](_0x22a6b6(0x12e))[_0x22a6b6(0x15c)](_0x22a6b6(0x15b));}),$(document)['on']('click',function(_0x6071c4){const _0x5c6451=_0x3d545e;$(_0x6071c4[_0x5c6451(0x131)])[_0x5c6451(0x106)](_0x5c6451(0x13b))['length']===0x0&&$('.option_menu_wrapper')[_0x5c6451(0x1bd)](_0x5c6451(0x15b));}),$(document)[_0x3d545e(0x13e)](function(_0x1c24a9){const _0x34d4a2=_0x3d545e;if(_0x1c24a9[_0x34d4a2(0x1ba)]==0x1b)$(_0x34d4a2(0x12e))[_0x34d4a2(0x1bd)](_0x34d4a2(0x15b));}),$('.comment_user')[_0x3d545e(0x18f)](function(_0x3ff94c){const _0x66b84e=_0x3d545e;_0x3ff94c['preventDefault'](),$(_0x66b84e(0x153))[_0x66b84e(0x168)](_0x66b84e(0x18c)),$(this)[_0x66b84e(0x1a3)](_0x66b84e(0x1c9))[_0x66b84e(0x15c)](_0x66b84e(0x15b));}),$('.close_cb,\x20.backdrop_secondary')['click'](function(){const _0x2d5663=_0x3d545e;$(_0x2d5663(0x153))[_0x2d5663(0x1bd)](_0x2d5663(0x18c)),$('.comment_bio')[_0x2d5663(0x1bd)](_0x2d5663(0x15b));}),$(document)[_0x3d545e(0x13e)](function(_0x7f747){const _0x53b528=_0x3d545e;if(_0x7f747[_0x53b528(0x1ba)]==0x1b)$('body')[_0x53b528(0x1bd)](_0x53b528(0x18c));if(_0x7f747[_0x53b528(0x1ba)]==0x1b)$(_0x53b528(0x1c9))['removeClass'](_0x53b528(0x15b));}),$(_0x3d545e(0x1cf))[_0x3d545e(0x14e)](function(){const _0x2cb0e8=_0x3d545e;let _0x311358=$(this)['parent']()[_0x2cb0e8(0x187)]('ul')['children']()['length'];$(this)['css']('--count-comments','\x27'+_0x311358+'\x27');}),$(_0x3d545e(0x184))['click'](function(){const _0x2b30d8=_0x3d545e;$(this)[_0x2b30d8(0x15c)](_0x2b30d8(0x15b)),$(this)['siblings']('.collapse_content')['toggleClass'](_0x2b30d8(0x1ab));}),$('.show_hide_toc_button')[_0x3d545e(0x18f)](function(){const _0x5244f9=_0x3d545e;$(this)[_0x5244f9(0x15c)](_0x5244f9(0x1dc)),$('#toc_content')['toggleClass'](_0x5244f9(0x1dc));});function prepare(_0x507343){const _0x32746f=_0x3d545e;let _0x3c0923,_0x134b80,_0x374b07;for(let _0x386278=0x0,_0x750291=_0x507343[_0x32746f(0x10e)];_0x386278<_0x750291;_0x386278++){_0x374b07=_0x507343[_0x386278],_0x374b07['el']=_0x374b07,_0x134b80=parseInt(_0x374b07[_0x32746f(0x169)][0x1],0xa),_0x374b07[_0x32746f(0x14f)]=_0x134b80,_0x374b07[_0x32746f(0x1bb)]=_0x386278+0x1;if(_0x134b80<=0x1)_0x374b07[_0x32746f(0x1c7)]=0x0;if(_0x386278){if(_0x507343[_0x386278-0x1]['level']<_0x134b80)_0x374b07[_0x32746f(0x1c7)]=_0x507343[_0x386278-0x1][_0x32746f(0x1bb)];else{if(_0x507343[_0x386278-0x1][_0x32746f(0x14f)]==_0x134b80)_0x374b07[_0x32746f(0x1c7)]=_0x507343[_0x386278-0x1][_0x32746f(0x1c7)];else for(let _0x2774f8=_0x386278-0x1;_0x2774f8>=0x0;_0x2774f8--){if(_0x507343[_0x2774f8][_0x32746f(0x14f)]==_0x134b80-0x1){_0x374b07['parent']=_0x507343[_0x2774f8][_0x32746f(0x1bb)];break;}}}}}return _0x507343;}function hierarchical(_0x2d03f2){const _0x5395fd=_0x3d545e,_0x24ac17=Object[_0x5395fd(0x1b6)](null);_0x2d03f2[_0x5395fd(0x192)](_0x439cd9=>_0x24ac17[_0x439cd9[_0x5395fd(0x1bb)]]={..._0x439cd9,'subitems':[]});const _0x1b76ff=[];return _0x2d03f2[_0x5395fd(0x192)](_0x33bbdf=>{const _0x3b2b45=_0x5395fd;if(_0x33bbdf['parent'])_0x24ac17[_0x33bbdf[_0x3b2b45(0x1c7)]][_0x3b2b45(0x17c)][_0x3b2b45(0x1d7)](_0x24ac17[_0x33bbdf[_0x3b2b45(0x1bb)]]);else _0x1b76ff[_0x3b2b45(0x1d7)](_0x24ac17[_0x33bbdf[_0x3b2b45(0x1bb)]]);}),_0x1b76ff;}function add_list(_0x551554){const _0x931038=_0x3d545e;let _0x473727,_0x1b866d,_0x5bf9b0;const _0x39d8d8=document[_0x931038(0x16c)]('ol');if(_0x551554&&_0x551554[_0x931038(0x10e)])for(t of _0x551554){_0x5bf9b0=make_slug(t['el'][_0x931038(0x132)]);if(!_0x5bf9b0)_0x5bf9b0=_0x931038(0x144);_0x5bf9b0=_0x5bf9b0['replace'](/\W/g,''),t['el']['id']=_0x5bf9b0,_0x473727=document[_0x931038(0x16c)]('li'),_0x1b866d=document['createElement']('a'),_0x1b866d['href']='#'+_0x5bf9b0,_0x1b866d[_0x931038(0x1e6)]=t['el'][_0x931038(0x132)],_0x473727[_0x931038(0x1bf)](_0x1b866d),t[_0x931038(0x17c)]&&t[_0x931038(0x17c)]['length']&&_0x473727[_0x931038(0x1bf)](add_list(t['subitems'])),_0x39d8d8['append'](_0x473727);}return _0x39d8d8;}function _0x2882(){const _0x572583=['select','scale(1)','execCommand','paddingBottom','scroll','pageXOffset','readyState','open','.blog_posts\x20.entry_post_date\x20.post_date,\x20.entry_post_bookmark\x20.bookmark,\x20.entry_post_share\x20.share_button,\x20.blog_posts\x20.apply_now_text','threaded_comment_form','clientWidth','.share_button','30nduWaL','src','hasClass','setAttribute','.entry_post_date\x20.post_date_second','preventDefault','create','pre_copy_button','.entry_post_title','.lyt','keyCode','idt','https://www.youtube.com/embed/','removeClass','#jobzeek_loadmore','append','ajax','exceed','left','dataset','appendChild','.back_to_top_button','.job_posting_end','parent','.blog_posts\x20.apply_now_text','.comment_bio','.menu_button','head','getElementsByClassName','snippet','postShare','.comment_thread','hover','prototype','attr','addcomment','querySelectorAll','ready','text','push','resize','data','flex','querySelector','hide','borderTopWidth','parentNode','naturalHeight','bookmark','true','.blog_posts','Escape','postDate','transform','innerHTML','max','(((.+)+)+)+$','comment_form','https://img.youtube.com/vi/','.notification_button','getAttribute','image-zoom-styles','.jobzeek_navigation\x20li\x20ul','share_active','jobContent','.copy_link_button','comment_reply\x20jobzeek_button\x20medium\x20unelevated','&parentID=','getComputedStyle','scrollTop','parentElement','125238aVvUtr','reply_to','dom','constructor','closest','className','addItemTobookmark','.job_posting_location,\x20.job_posting_salary,\x20.job_posting_employment_type,\x20.job_posting_experience','parse','matchMedia','keydown','751976DaTfPV','length','.close_button,\x20.backdrop_secondary','load','.share_this_post','/sddefault.jpg','filter','bookmarked','.apply_text','img','removeEventListener','8595abNlnL','\x0a\x0a\x09.image-zoom-wrapper::after\x20{\x0a\x09\x09opacity:\x200;\x0a\x09\x09transition:\x20opacity\x20150ms\x20cubic-bezier(.25,\x20.1,\x20.25\x20,1);\x0a\x09\x09display:\x20block;\x0a\x09\x09content:\x20\x27\x27;\x0a\x09\x09position:\x20fixed;\x0a\x09\x09top:\x200;\x0a\x09\x09left:\x200;\x0a\x09\x09right:\x200;\x0a\x09\x09bottom:\x200;\x0a\x09\x09background-color:\x20#fff;\x0a\x09\x09z-index:\x2099998;\x0a\x09\x09pointer-events:\x20none;\x0a\x09}\x0a\x0a\x09.image-zoom-wrapper.image-zoom-wrapper-zoomed::after\x20{\x0a\x09\x09opacity:\x201;\x0a\x09\x09cursor:\x20zoom-out;\x0a\x09\x09pointer-events:\x20all;\x0a\x09}\x0a\x0a\x09.image-zoom\x20{\x0a\x09\x09transition:\x20transform\x20300ms\x20cubic-bezier(.25,\x20.1,\x20.25\x20,1);\x0a\x09\x09cursor:\x20zoom-in;\x0a\x09}\x0a\x0a\x09.image-zoom-zoomed\x20{\x0a\x09\x09position:\x20relative;\x0a\x09\x09z-index:\x2099999;\x0a\x09\x09cursor:\x20zoom-out;\x0a\x09\x09border-radius:0!important;}\x0a','comment_replybox_single','.job_posting_thumbnail\x20img','image-zoom-wrapper-zoomed','Youtube\x20video','apply','height','getElementById','Salin','.blog_pager\x20.no_results','embed','.blog_pager\x20.loading','interactive','transitionend','style','splice','insertBefore','srcElement','ntfcn_active','removeThisItem','div','.option_menu_wrapper','image-zoom','contains','target','textContent','class','h2,\x20h3,\x20h4,\x20h5,\x20h6','nav_active','.snackbar','1766083yIfazV','block','pathname','naturalWidth','.option_menu_button,\x20.option_menu_wrapper','.job_posting_share_button','allowfullscreen','keyup','clientTop','next_post','replace','add','.comment_content_wrapper','toc','imageZoomExceed','innerHeight','assign','toc_content','?rel=0&showinfo=0&autoplay=1','addListener','removeChild','getItem','width','each','level','top','(max-width:\x201024px)','slice','body','stringify','.jobzeek_navigation\x20ul\x20li.has_sub\x20>\x20a','img[alt]:not([alt=\x22\x22]):not([data-image-zoom-disabled])','.job_posting_bookmark_button','clipboard','search','.comments\x20ol','active','toggleClass','hostname','addEventListener','data-src','code','toString','min','.isMultipleItems\x20.job_posting_thumbnail,\x20.isMultipleItems\x20.job_posting_header_start,\x20.isMultipleItems\x20.job_posting_post_date,\x20.isMultipleItems\x20.job_posting_button,\x20.isMultipleItems\x20.job_posting_end','108258YHSZev','100HrxFrR','.job_posting_post_date','Tersalin','addClass','tagName','#post_middle\x20img','padding','createElement','data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=','.blog_posts\x20h1.entry_post_title','classList','162441MpHIWO','.job_posting_title','.post_outer','1528VSgHyO','.comment_header_sort','px)','8dgdbEx','scale(','.option_menu_button','borderRightWidth','call','animate','subitems','#post_middle','681268yeWPQM','.get_url','data-reply-to','DOMContentLoaded','html,\x20body','html','.collapse_header','show','.back_to_top','find','clone','.entry_post_bookmark\x20.bookmark','protocol','.entry_post_share\x20.share_button','cb_active','innerWidth','img.lazyload','click','css','.blog_posts\x20.entry_post_date\x20.post_date','forEach','.close_menu_button,\x20.backdrop','image-zoom-zoomed','remove','frameborder','copied','display','matches','.notification_button,\x20.notification_wrapper','.job_posting_info','iframe','innerText','loaded','pageYOffset','appendTo','paddingRight','documentElement','siblings'];_0x2882=function(){return _0x572583;};return _0x2882();}function make_slug(_0x52a513){return _0x52a513['toLowerCase']()['replace'](/[^\w ]+/g,'')['replace'](/ +/g,'_');}const divtoc=document[_0x3d545e(0x120)](_0x3d545e(0x148)),article=document[_0x3d545e(0x1db)](_0x3d545e(0x17d));function createToc(){const _0x306fe2=_0x3d545e;if(divtoc&&article){let _0xa0b0d6=article['querySelectorAll'](_0x306fe2(0x134));_0xa0b0d6=prepare(_0xa0b0d6),_0xa0b0d6=hierarchical(_0xa0b0d6);const _0x20593c=add_list(_0xa0b0d6);divtoc[_0x306fe2(0x1bf)](_0x20593c);}}document[_0x3d545e(0x15e)](_0x3d545e(0x181),()=>{createToc();}),(function(){const _0x49c958=_0x3d545e;var _0x5ba359=document['querySelectorAll'](_0x49c958(0x1b9));for(var _0x507744=0x0;_0x507744<_0x5ba359[_0x49c958(0x10e)];_0x507744++){var _0x5f4f0b=_0x49c958(0xf5)+_0x5ba359[_0x507744][_0x49c958(0x1c3)][_0x49c958(0x123)]+_0x49c958(0x112),_0x1974e2=new Image();_0x1974e2[_0x49c958(0x1b3)](_0x49c958(0x133),'yt_thumb\x20lazyload'),_0x1974e2[_0x49c958(0x1b3)](_0x49c958(0x15f),_0x5f4f0b),_0x1974e2[_0x49c958(0x1b3)](_0x49c958(0x1b1),_0x49c958(0x16d)),_0x1974e2[_0x49c958(0x1b3)]('alt',_0x49c958(0x11d)),_0x1974e2['addEventListener'](_0x49c958(0x110),(function(){const _0x15ff77=_0x49c958;_0x5ba359[_0x507744][_0x15ff77(0x1c4)](_0x1974e2);}(_0x507744))),_0x5ba359[_0x507744]['addEventListener'](_0x49c958(0x18f),function(){const _0x52f9fa=_0x49c958;var _0x1d6514=document[_0x52f9fa(0x16c)](_0x52f9fa(0x19c));_0x1d6514[_0x52f9fa(0x1b3)](_0x52f9fa(0x196),'0'),_0x1d6514['setAttribute'](_0x52f9fa(0x13d),''),_0x1d6514['setAttribute']('src',_0x52f9fa(0x1bc)+this[_0x52f9fa(0x1c3)][_0x52f9fa(0x123)]+_0x52f9fa(0x149)),this[_0x52f9fa(0x1e6)]='',this[_0x52f9fa(0x1c4)](_0x1d6514);});};}());let preTag=document[_0x3d545e(0x1d4)]('pre');async function copyCode(_0x41ac39){const _0x254878=_0x3d545e,_0x427cb9=_0x41ac39[_0x254878(0x12a)];_0x427cb9[_0x254878(0x19d)]=_0x254878(0x167);let _0x31ea62=_0x427cb9[_0x254878(0x101)][_0x254878(0x1db)](_0x254878(0x160))[_0x254878(0x19d)];await navigator['clipboard']['writeText'](_0x31ea62),_0x427cb9[_0x254878(0x16f)][_0x254878(0x142)](_0x254878(0x197)),setTimeout(()=>{const _0x1e1505=_0x254878;_0x427cb9[_0x1e1505(0x16f)]['remove'](_0x1e1505(0x197)),_0x427cb9['innerText']=_0x1e1505(0x121);},0x3e8);}preTag[_0x3d545e(0x192)](_0x7819d7=>{const _0x9c823f=_0x3d545e;if(navigator[_0x9c823f(0x158)]){let _0x3dfd55=document[_0x9c823f(0x16c)](_0x9c823f(0x12d));_0x3dfd55[_0x9c823f(0x16f)]['add'](_0x9c823f(0x1b7)),_0x3dfd55[_0x9c823f(0x19d)]=_0x9c823f(0x121),_0x3dfd55[_0x9c823f(0x15e)](_0x9c823f(0x18f),copyCode),_0x7819d7[_0x9c823f(0x1c4)](_0x3dfd55);}});var imageZoom=(function(){'use strict';const _0x132fc6=_0x3d545e;const _0x40db11=(_0x2b8296,_0x5ee714)=>{let _0x3b7ee9=!0x1;return function(..._0x2903c4){const _0x2aa3d1=_0x3e54;_0x3b7ee9||(_0x2b8296[_0x2aa3d1(0x11e)](this,_0x2903c4),_0x3b7ee9=!0x0,setTimeout(()=>{_0x3b7ee9=!0x1;},_0x5ee714));};},_0x525894=(_0x5508ac,_0x53ddb1)=>{const _0x5b2ef2=_0x3e54;let _0x295ba1=0x0;return _0x53ddb1[_0x5b2ef2(0x192)](_0x4dbde9=>{const _0x5d72dd=_0x5508ac[_0x4dbde9],_0x5ebfbb=parseInt(_0x5d72dd,0xa)||0x0;_0x295ba1+=_0x5ebfbb;}),_0x295ba1;},_0x34065f=_0x3a881b=>{const _0x73b041=_0x3e54;_0x3a881b[_0x73b041(0x127)]['transform']=_0x73b041(0x1a5),_0x3a881b[_0x73b041(0x1de)][_0x73b041(0x16f)]['remove'](_0x73b041(0x11c)),_0x3a881b[_0x73b041(0x15e)](_0x73b041(0x126),()=>{const _0x2e3346=_0x73b041;_0x3a881b[_0x2e3346(0x16f)]['remove'](_0x2e3346(0x194));},{'once':!0x0});},_0x40a7df=(_0x52ecce,_0x4e8929,_0x9dab0b,_0x10b03a)=>{const _0x3d55f9=_0x10b03a/_0x4e8929;return _0x52ecce*_0x3d55f9<=_0x9dab0b?_0x3d55f9:_0x9dab0b/_0x52ecce;},_0x3f5713=_0xe9341f=>{const _0x48814a=_0x3e54,_0x43b601=document[_0x48814a(0x16c)](_0x48814a(0x12d));_0x43b601[_0x48814a(0x16f)][_0x48814a(0x142)]('image-zoom-wrapper'),_0x43b601[_0x48814a(0x127)][_0x48814a(0x198)]=window[_0x48814a(0xff)](_0xe9341f)['display'],_0xe9341f['parentNode'][_0x48814a(0x129)](_0x43b601,_0xe9341f),_0x43b601['appendChild'](_0xe9341f),_0xe9341f['classList']['add']('image-zoom'),_0xe9341f[_0x48814a(0x127)][_0x48814a(0x1e5)]=_0x48814a(0x1a5);},_0x2d3037={'selector':_0x132fc6(0x156),'cb':()=>{},'padding':0x14,'exceed':!0x1};return(_0x153343=_0x2d3037)=>{const _0x1e8b11=_0x132fc6,{selector:_0x18d4e6,cb:_0x486a3f}=Object[_0x1e8b11(0x147)]({},_0x2d3037,_0x153343);let _0xe27a69=null;const _0x30ef0c=_0x40db11(_0x110c11=>{const _0x59a4e5=_0x1e8b11,_0x34ad30=_0x110c11['target'];if(_0xe27a69)return _0x34065f(_0xe27a69),void(_0xe27a69=null);_0x34ad30[_0x59a4e5(0x199)](_0x18d4e6)&&(_0x34ad30[_0x59a4e5(0x16f)][_0x59a4e5(0x130)](_0x59a4e5(0x12f))||_0x3f5713(_0x34ad30),((_0x4df599,_0x4cf92b)=>{const _0x5cccb8=_0x59a4e5,_0x1c0ea9=_0x4df599['getBoundingClientRect'](),_0x560682=window[_0x5cccb8(0xff)](_0x4df599),_0xee46c3=_0x1c0ea9[_0x5cccb8(0x14d)]-_0x525894(_0x560682,['borderLeftWidth',_0x5cccb8(0x179),'paddingLeft',_0x5cccb8(0x1a1)]),_0x17d64a=_0x1c0ea9[_0x5cccb8(0x11f)]-_0x525894(_0x560682,[_0x5cccb8(0x1dd),'borderBottomWidth','paddingTop',_0x5cccb8(0x1a7)]),_0x877af1=Math[_0x5cccb8(0xf2)](document[_0x5cccb8(0x1a2)][_0x5cccb8(0x1ae)]||0x0,window[_0x5cccb8(0x18d)]||0x0),_0xd1fc9=Math[_0x5cccb8(0xf2)](document[_0x5cccb8(0x1a2)]['clientHeight']||0x0,window[_0x5cccb8(0x146)]||0x0),_0x5effe4=_0x4cf92b[_0x5cccb8(0x1c1)]||_0x5cccb8(0x1e1)===_0x4df599[_0x5cccb8(0x1c3)]?.[_0x5cccb8(0x145)];let _0x283b1b=_0x40a7df(_0x17d64a,_0xee46c3,_0xd1fc9,_0x877af1);if(!_0x5effe4){const _0x4dd0c1=_0x40a7df(_0x17d64a,_0xee46c3,_0x4df599[_0x5cccb8(0x1df)],_0x4df599[_0x5cccb8(0x13a)]);_0x283b1b=Math[_0x5cccb8(0x162)](_0x283b1b,_0x4dd0c1);}if(_0x4cf92b[_0x5cccb8(0x16b)]>Math[_0x5cccb8(0x162)](_0xd1fc9-_0x17d64a*_0x283b1b,_0x877af1-_0xee46c3*_0x283b1b)/0x2){let _0x287d6f=_0x40a7df(_0x17d64a+_0x4cf92b[_0x5cccb8(0x16b)],_0xee46c3+_0x4cf92b[_0x5cccb8(0x16b)],_0xd1fc9,_0x877af1);if(!_0x5effe4){const _0x5177f1=_0x40a7df(_0x17d64a,_0xee46c3,_0x4df599['naturalHeight']-_0x4cf92b[_0x5cccb8(0x16b)],_0x4df599[_0x5cccb8(0x13a)]-_0x4cf92b[_0x5cccb8(0x16b)]);_0x287d6f=Math[_0x5cccb8(0x162)](_0x287d6f,_0x5177f1);}_0x283b1b=_0x287d6f;}const _0x33cae6=document['documentElement'],_0x42dc82=(window[_0x5cccb8(0x1a9)]||_0x33cae6['scrollLeft'])-(_0x33cae6['clientLeft']||0x0),_0x2dfd2a=(window[_0x5cccb8(0x19f)]||_0x33cae6[_0x5cccb8(0x100)])-(_0x33cae6[_0x5cccb8(0x13f)]||0x0),_0x227a2a=(_0x42dc82+_0x877af1/0x2-(_0x42dc82+_0x1c0ea9[_0x5cccb8(0x1c2)]+_0x1c0ea9['width']/0x2))/_0x283b1b,_0x28a99c=(_0x2dfd2a+_0xd1fc9/0x2-(_0x2dfd2a+_0x1c0ea9[_0x5cccb8(0x150)]+_0x1c0ea9[_0x5cccb8(0x11f)]/0x2))/_0x283b1b;_0x4df599[_0x5cccb8(0x16f)][_0x5cccb8(0x142)](_0x5cccb8(0x194)),_0x4df599[_0x5cccb8(0x1de)][_0x5cccb8(0x16f)][_0x5cccb8(0x142)](_0x5cccb8(0x11c)),_0x4df599[_0x5cccb8(0x127)][_0x5cccb8(0x1e5)]=_0x5cccb8(0x177)+_0x283b1b+')\x20translate('+_0x227a2a+'px,\x20'+_0x28a99c+_0x5cccb8(0x175);})(_0x34ad30,_0x153343),_0xe27a69=_0x34ad30);},0x1f4),_0x33882f=()=>{_0xe27a69&&(_0x34065f(_0xe27a69),_0xe27a69=null);},_0x5edcd3=_0x74bd2c=>{const _0x28f338=_0x1e8b11;_0x28f338(0x1e3)===_0x74bd2c[_0x28f338(0x160)]&&(_0x74bd2c[_0x28f338(0x1b5)](),_0xe27a69&&(_0x34065f(_0xe27a69),_0xe27a69=null));},_0x446f43=()=>{const _0x48acec=_0x1e8b11;(_0x13f27b=>{const _0x372714=_0x3e54,_0x1974ad=document['createElement'](_0x372714(0x127));_0x1974ad[_0x372714(0x1e6)]=_0x13f27b,_0x1974ad['setAttribute']('id',_0x372714(0xf8)),document[_0x372714(0x1cb)][_0x372714(0x1c4)](_0x1974ad);})(_0x48acec(0x119)),Array[_0x48acec(0x1d1)][_0x48acec(0x152)][_0x48acec(0x17a)](document[_0x48acec(0x1d4)](_0x18d4e6))[_0x48acec(0x192)](_0x3f5713),document[_0x48acec(0x153)][_0x48acec(0x15e)](_0x48acec(0x18f),_0x30ef0c),window['addEventListener'](_0x48acec(0x1a8),_0x33882f),window[_0x48acec(0x15e)](_0x48acec(0x1d8),_0x33882f),document[_0x48acec(0x15e)](_0x48acec(0x10c),_0x5edcd3),_0x486a3f();};return _0x1e8b11(0x125)===document['readyState']||'complete'===document[_0x1e8b11(0x1aa)]?_0x446f43():document[_0x1e8b11(0x15e)](_0x1e8b11(0x181),_0x446f43),()=>{const _0xac221=_0x1e8b11;document[_0xac221(0x153)][_0xac221(0x117)](_0xac221(0x18f),_0x30ef0c),window['removeEventListener'](_0xac221(0x1a8),_0x33882f),window['removeEventListener']('resize',_0x33882f),document[_0xac221(0x117)](_0xac221(0x10c),_0x5edcd3),document[_0xac221(0x1cb)][_0xac221(0x14b)](document[_0xac221(0x120)](_0xac221(0xf8)));};};}());function _0x3e54(_0x554eb4,_0x5be00c){const _0x5c30aa=_0x2882();return _0x3e54=function(_0x538512,_0x677472){_0x538512=_0x538512-0xf2;let _0x288228=_0x5c30aa[_0x538512];return _0x288228;},_0x3e54(_0x554eb4,_0x5be00c);}imageZoom({'selector':_0x3d545e(0x16a)}),$('.separator\x20a')[_0x3d545e(0x18f)](function(_0x3c7144){const _0x1563aa=_0x3d545e;_0x3c7144[_0x1563aa(0x1b5)](),$(this)[_0x1563aa(0x15c)](_0x1563aa(0x138));});var limitBookmark=0x64,bookmark=(function(){const _0xa52e05=_0x3d545e;list=[];function _0x359979(_0x397beb,_0x5eec03,_0x2cf419,_0x43bf7f,_0xd4b967,_0x92d8f5,_0x574b03,_0x2b91b8){const _0x3907bb=_0x3e54;this['id']=_0x397beb,this['name']=_0x5eec03,this['link']=_0x2cf419,this[_0x3907bb(0x116)]=_0x43bf7f,this[_0x3907bb(0x1cd)]=_0xd4b967,this[_0x3907bb(0x1ce)]=_0x92d8f5,this[_0x3907bb(0x1e4)]=_0x574b03,this[_0x3907bb(0xfb)]=_0x2b91b8;}function _0x1a001e(){const _0x4bf8c2=_0x3e54;localStorage['setItem'](_0x4bf8c2(0x1e0),JSON[_0x4bf8c2(0x154)](list));}function _0x2d0eb9(){const _0x41a70e=_0x3e54;list=JSON[_0x41a70e(0x10a)](localStorage[_0x41a70e(0x14c)](_0x41a70e(0x1e0)));}return localStorage['getItem']('bookmark')!=null&&_0x2d0eb9(),obj={},obj[_0xa52e05(0x108)]=function(_0x3163ad,_0x1439ed,_0x12b8c8,_0x33757f,_0xb34db,_0x28084a,_0x223162,_0x412d62){const _0x32afaa=_0xa52e05;var _0x51688b=new _0x359979(_0x3163ad,_0x1439ed,_0x12b8c8,_0x33757f,_0xb34db,_0x28084a,_0x223162,_0x412d62),_0x5b7bf3=list;_0x5b7bf3!=null?(same=_0x5b7bf3['find'](_0x5833a5=>{return _0x5833a5['id']==_0x3163ad;}),list[_0x32afaa(0x10e)]<limitBookmark&&(!same&&(list[_0x32afaa(0x1d7)](_0x51688b),_0x1a001e()))):(list['push'](_0x51688b),_0x1a001e());},obj[_0xa52e05(0x12c)]=function(_0x5c79a1){const _0x44a76f=_0xa52e05;for(var _0x321873 in list){if(list[_0x321873]['id']===_0x5c79a1){list[_0x44a76f(0x128)](_0x321873,0x1);break;}}_0x1a001e();},obj;}());$('.bookmark')[_0x3d545e(0x14e)](function(_0x20df4b){const _0x5b411f=_0x3d545e,_0x484685=JSON[_0x5b411f(0x10a)](localStorage[_0x5b411f(0x14c)](_0x5b411f(0x1e0)));for(var _0x4b2461 in _0x484685){_0x484685[_0x4b2461]['id']==$(this)[_0x5b411f(0x1d9)]('id')&&$(this)[_0x5b411f(0x168)](_0x5b411f(0x114));}$(this)[_0x5b411f(0x18f)](function(){const _0x545076=_0x5b411f,_0x106070=JSON['parse'](localStorage[_0x545076(0x14c)](_0x545076(0x1e0))),_0x44c2c5=$(this)[_0x545076(0x1d9)]('id'),_0x15483a=$(_0x545076(0x16e))[_0x545076(0x1d6)]()['replace']('\x0a',''),_0x58102f=location[_0x545076(0x18a)]+'//'+location[_0x545076(0x15d)]+location[_0x545076(0x139)],_0x324fb0=$(_0x545076(0x11b))[_0x545076(0x1d2)](_0x545076(0x1b1)),_0x138820=$(_0x545076(0x1c6))[_0x545076(0x1d6)]()[_0x545076(0x141)]('\x0a',''),_0x114408=$(_0x545076(0x111))[_0x545076(0x183)]()[_0x545076(0x141)]('\x0a',''),_0x229d3e=$(_0x545076(0x1b4))[_0x545076(0x183)]()['replace']('\x0a','');jobContent=$(_0x545076(0x19b))[_0x545076(0x183)]()[_0x545076(0x141)]('\x0a',''),_0x106070==null?!$(this)['hasClass'](_0x545076(0x114))?(bookmark['addItemTobookmark'](_0x44c2c5,_0x15483a,_0x58102f,_0x324fb0,_0x138820,_0x114408,_0x229d3e,jobContent),$(this)[_0x545076(0x168)]('bookmarked')):(bookmark[_0x545076(0x12c)](_0x44c2c5),$(this)['removeClass']('bookmarked')):!$(this)[_0x545076(0x1b2)]('bookmarked')?_0x106070[_0x545076(0x10e)]<limitBookmark&&(bookmark[_0x545076(0x108)](_0x44c2c5,_0x15483a,_0x58102f,_0x324fb0,_0x138820,_0x114408,_0x229d3e,jobContent),$(this)[_0x545076(0x168)]('bookmarked')):(bookmark[_0x545076(0x12c)](_0x44c2c5),$(this)[_0x545076(0x1bd)](_0x545076(0x114))),displayNum();});});function displayNum(){const _0x404624=_0x3d545e;var _0x5c5dd9=JSON[_0x404624(0x10a)](localStorage['getItem'](_0x404624(0x1e0)));let _0x51c960=0x0;for(var _0x44bc75 in _0x5c5dd9){_0x51c960++;}$('.numshow')['html'](_0x51c960);}displayNum();
/*@shinsenter/[email protected]*/
!function(r,i,t){var u,o=/^data-(.+)/,a='IntersectionObserver',s='deferjs',n='load',e='pageshow',f='forEach',c='shift',l=/p/.test(i.readyState),d=[],h=d.slice;function m(e){i.head.appendChild(e)}function v(e,n){h.call(e.attributes)[f](n)}function p(e,n,t,o){return o=(n?i.getElementById(n):o)||i.createElement(e),n&&(o.id=n),t&&(o.onload=t),o}function y(e,n){return h.call((n||i).querySelectorAll(e))}function b(t,e){y('source',t)[f](b),v(t,function(e,n){(n=o.exec(e.name))&&(t[n[1]]=e.value)}),e&&(t.className+=' '+e),n in t&&t[n]()}function I(e){u(function(o){o=y(e||'[type=deferjs]'),function e(n,t){(n=o[c]())&&(n.parentNode.removeChild(n),(t=p(n.nodeName)).text=n.text,v(n,function(e){'type'!=e.name&&t.setAttribute(e.name,e.value)}),t.src&&!t.hasAttribute('async')?(t.onload=t.onerror=e,m(t)):(m(t),e()))}()})}(u=function(e,n){l?t(e,n):d.push(e,n)}).all=I,u.js=function(n,t,e,o){u(function(e){(e=p('SCRIPT',t,o)).src=n,m(e)},e)},u.css=function(n,t,e,o){u(function(e){(e=p('LINK',t,o)).rel='stylesheet',e.href=n,m(e)},e)},u.dom=function(e,n,t,o,i){function c(e){o&&!1===o(e)||b(e,t)}u(function(t){t=a in r&&new r[a](function(e){e[f](function(e,n){e.isIntersecting&&(n=e.target)&&(t.unobserve(n),c(n))})},i),y(e||'[data-src]')[f](function(e){s in e||(e[s]=1,t?t.observe(e):c(e))})},n)},u.reveal=b,r.Defer=u,r.addEventListener('on'+e in r?e:n,function(){for(I();d[0];t(d[c](),d[c]()))l=1})}(this,document,setTimeout);
Defer.dom("img.lazyload",100,"loaded",null,{rootMargin:"1px"});
//]]>
<b:if cond='data:view.isMultipleItems'>
//<![CDATA[
function _0xcde6(){const _0x365748=['querySelectorAll','constructor','16lcSjrB','(((.+)+)+)+$','mouseup','.content_tabs\x20.widget\x20.cloud','click','837638pnEmGT','classList','.content_tabs\x20.right_arrow','8NYPwme','add','querySelector','.content_tabs\x20.left_arrow','97923mJZRyI','4070961fPIplb','remove','addEventListener','toString','dragging','102225pzZrRD','active','914622jdJIhG','mousedown','7519810QcObZk','search','1gSkrfh','scrollWidth','clientWidth','scrollLeft','5141490ayEJLE'];_0xcde6=function(){return _0x365748;};return _0xcde6();}const _0x1fd2a5=_0x5d3f;(function(_0x501f8e,_0x3a3306){const _0x3dbfce=_0x5d3f,_0x48fe49=_0x501f8e();while(!![]){try{const _0x503eb5=parseInt(_0x3dbfce(0x1d3))/0x1*(parseInt(_0x3dbfce(0x1c0))/0x2)+-parseInt(_0x3dbfce(0x1cd))/0x3*(-parseInt(_0x3dbfce(0x1da))/0x4)+parseInt(_0x3dbfce(0x1d7))/0x5+parseInt(_0x3dbfce(0x1cf))/0x6+parseInt(_0x3dbfce(0x1c7))/0x7+-parseInt(_0x3dbfce(0x1c3))/0x8*(parseInt(_0x3dbfce(0x1c8))/0x9)+-parseInt(_0x3dbfce(0x1d1))/0xa;if(_0x503eb5===_0x3a3306)break;else _0x48fe49['push'](_0x48fe49['shift']());}catch(_0x1387af){_0x48fe49['push'](_0x48fe49['shift']());}}}(_0xcde6,0x852fd));function _0x5d3f(_0x243080,_0x511f46){const _0x3c99b3=_0xcde6();return _0x5d3f=function(_0x397811,_0x3f4700){_0x397811=_0x397811-0x1bd;let _0xcde6b=_0x3c99b3[_0x397811];return _0xcde6b;},_0x5d3f(_0x243080,_0x511f46);}const _0x3f4700=(function(){let _0x521faf=!![];return function(_0x206e40,_0x5594e9){const _0x2af644=_0x521faf?function(){if(_0x5594e9){const _0x2603bc=_0x5594e9['apply'](_0x206e40,arguments);return _0x5594e9=null,_0x2603bc;}}:function(){};return _0x521faf=![],_0x2af644;};}()),_0x397811=_0x3f4700(this,function(){const _0x1a38ce=_0x5d3f;return _0x397811[_0x1a38ce(0x1cb)]()[_0x1a38ce(0x1d2)](_0x1a38ce(0x1db))[_0x1a38ce(0x1cb)]()[_0x1a38ce(0x1d9)](_0x397811)[_0x1a38ce(0x1d2)](_0x1a38ce(0x1db));});_0x397811();const tabs=document[_0x1fd2a5(0x1d8)]('.content_tabs\x20a'),rightArrow=document[_0x1fd2a5(0x1c5)](_0x1fd2a5(0x1c2)),leftArrow=document[_0x1fd2a5(0x1c5)](_0x1fd2a5(0x1c6)),tabsList=document[_0x1fd2a5(0x1c5)](_0x1fd2a5(0x1be)),leftArrowContainer=document[_0x1fd2a5(0x1c5)](_0x1fd2a5(0x1c6)),rightArrowContainer=document[_0x1fd2a5(0x1c5)](_0x1fd2a5(0x1c2)),manageIcons=()=>{const _0x2bba9e=_0x1fd2a5;tabsList[_0x2bba9e(0x1d6)]>=0xf?leftArrowContainer[_0x2bba9e(0x1c1)][_0x2bba9e(0x1c4)](_0x2bba9e(0x1ce)):leftArrowContainer['classList'][_0x2bba9e(0x1c9)](_0x2bba9e(0x1ce));let _0x46a990=tabsList[_0x2bba9e(0x1d4)]-tabsList[_0x2bba9e(0x1d5)]-0xf;tabsList['scrollLeft']>=_0x46a990?rightArrowContainer[_0x2bba9e(0x1c1)]['remove']('active'):rightArrowContainer[_0x2bba9e(0x1c1)][_0x2bba9e(0x1c4)](_0x2bba9e(0x1ce));};rightArrow[_0x1fd2a5(0x1ca)](_0x1fd2a5(0x1bf),()=>{tabsList['scrollLeft']+=0x73,manageIcons();}),leftArrow[_0x1fd2a5(0x1ca)](_0x1fd2a5(0x1bf),()=>{const _0x592962=_0x1fd2a5;tabsList[_0x592962(0x1d6)]-=0x73,manageIcons();}),tabsList[_0x1fd2a5(0x1ca)]('scroll',manageIcons);let dragging=![];const drag=_0x53a1b6=>{const _0x299772=_0x1fd2a5;if(!dragging)return;tabsList[_0x299772(0x1c1)][_0x299772(0x1c4)](_0x299772(0x1cc)),tabsList[_0x299772(0x1d6)]-=_0x53a1b6['movementX'];};tabsList[_0x1fd2a5(0x1ca)](_0x1fd2a5(0x1d0),()=>{dragging=![];}),tabsList[_0x1fd2a5(0x1ca)]('mousemove',drag),document[_0x1fd2a5(0x1ca)](_0x1fd2a5(0x1bd),()=>{const _0x32322b=_0x1fd2a5;dragging=![],tabsList[_0x32322b(0x1c1)][_0x32322b(0x1c9)](_0x32322b(0x1cc));});
//]]>
</b:if>
<b:if cond='data:skin.vars.optionFeatureTimeFormat == "2px"'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>
//<![CDATA[
(function(_0x2fad12,_0x61c002){var _0x3a2631=_0x3752,_0x27712d=_0x2fad12();while(!![]){try{var _0x1b5bf5=parseInt(_0x3a2631(0x86))/0x1+-parseInt(_0x3a2631(0x95))/0x2+parseInt(_0x3a2631(0x8d))/0x3+parseInt(_0x3a2631(0x8f))/0x4*(parseInt(_0x3a2631(0x85))/0x5)+parseInt(_0x3a2631(0x8c))/0x6+parseInt(_0x3a2631(0x8a))/0x7+parseInt(_0x3a2631(0x87))/0x8*(-parseInt(_0x3a2631(0x92))/0x9);if(_0x1b5bf5===_0x61c002)break;else _0x27712d['push'](_0x27712d['shift']());}catch(_0x3c3e8b){_0x27712d['push'](_0x27712d['shift']());}}}(_0x469a,0x21f85));function _0x3752(_0x547fe7,_0x2f081d){var _0xd3a5bc=_0x469a();return _0x3752=function(_0x2e0a34,_0xfd1e20){_0x2e0a34=_0x2e0a34-0x84;var _0x469a9b=_0xd3a5bc[_0x2e0a34];return _0x469a9b;},_0x3752(_0x547fe7,_0x2f081d);}function timeAgo(){var _0x1a163f=(function(){var _0x3095a7=!![];return function(_0x1d93c1,_0x4d3f02){var _0x4629e6=_0x3095a7?function(){if(_0x4d3f02){var _0x47ecc0=_0x4d3f02['apply'](_0x1d93c1,arguments);return _0x4d3f02=null,_0x47ecc0;}}:function(){};return _0x3095a7=![],_0x4629e6;};}()),_0x21bca4=_0x1a163f(this,function(){var _0x59564a=_0x3752;return _0x21bca4[_0x59564a(0x8b)]()['search']('(((.+)+)+)+$')[_0x59564a(0x8b)]()['constructor'](_0x21bca4)['search'](_0x59564a(0x93));});_0x21bca4(),$(function(){var _0x517bf5=_0x3752;$(_0x517bf5(0x97))['each'](function(){var _0xe006aa=_0x517bf5,_0x1e1967=$(this),_0x2515b0=_0x1e1967['attr'](_0xe006aa(0x88));!_0x1e1967['attr'](_0xe006aa(0x90))&&_0x1e1967[_0xe006aa(0x8e)](_0xe006aa(0x90),_0x2515b0),_0x1e1967['text'](_0x466f6b(_0x2515b0));});});function _0x466f6b(_0x56364d){var _0x506daf=_0x3752,_0x16d4b5=new Date(_0x56364d),_0x4a48e8=0x36ee80,_0x5f01d2=0x18*_0x4a48e8,_0x3ac97f=0x1e*_0x5f01d2,_0x32a4b2=0x16d*_0x5f01d2,_0x3bd052=_0x506daf(0x94),_0x4a42d1=new Date()-_0x16d4b5;return _0x4a42d1<0xea60?Math[_0x506daf(0x84)](_0x4a42d1/0x3e8)+_0x506daf(0x91)+_0x3bd052:_0x4a42d1<_0x4a48e8?Math['round'](_0x4a42d1/0xea60)+_0x506daf(0x89)+_0x3bd052:_0x4a42d1<_0x5f01d2?Math[_0x506daf(0x84)](_0x4a42d1/_0x4a48e8)+'\x20jam\x20'+_0x3bd052:_0x4a42d1<_0x3ac97f?Math[_0x506daf(0x84)](_0x4a42d1/_0x5f01d2)+'\x20hari\x20'+_0x3bd052:_0x4a42d1<_0x32a4b2?Math[_0x506daf(0x84)](_0x4a42d1/_0x3ac97f)+_0x506daf(0x96)+_0x3bd052:Math[_0x506daf(0x84)](_0x4a42d1/_0x32a4b2)+'\x20tahun\x20'+_0x3bd052;};};function _0x469a(){var _0x44292f=['840264FfkUiA','466068QBRJOe','attr','8jaXZVZ','title','\x20detik\x20','1898649UjBeqN','(((.+)+)+)+$','yang\x20lalu','329004IezYGC','\x20bulan\x20','.time_ago','round','89795vuTRcS','178816HbEsrn','8WZltZj','datetime','\x20menit\x20','31290OHNSaq','toString'];_0x469a=function(){return _0x44292f;};return _0x469a();}timeAgo();
//]]>
<b:default/>
//<![CDATA[
function _0x4c7d(){var _0x575211=['906LXGMYd','1562napixA','1404594jecuUl','(((.+)+)+)+$','apply','\x20minutes\x20','.time_ago','search','toString','14tOyWSh','\x20hours\x20','7155656MEELHA','25480670TAZQWm','text','each','title','1767954lMVkGk','2217105vQtghj','round','1698xxMIGL','attr','3564fgGUWa','\x20seconds\x20'];_0x4c7d=function(){return _0x575211;};return _0x4c7d();}(function(_0x258ffb,_0x4d1383){var _0x2c33d6=_0x2f53,_0x4d9b08=_0x258ffb();while(!![]){try{var _0x13132b=parseInt(_0x2c33d6(0xf0))/0x1*(-parseInt(_0x2c33d6(0xef))/0x2)+parseInt(_0x2c33d6(0xeb))/0x3*(parseInt(_0x2c33d6(0xed))/0x4)+-parseInt(_0x2c33d6(0xe9))/0x5+parseInt(_0x2c33d6(0xe8))/0x6*(-parseInt(_0x2c33d6(0xf8))/0x7)+-parseInt(_0x2c33d6(0xfa))/0x8+parseInt(_0x2c33d6(0xf1))/0x9+parseInt(_0x2c33d6(0xfb))/0xa;if(_0x13132b===_0x4d1383)break;else _0x4d9b08['push'](_0x4d9b08['shift']());}catch(_0x3ee0cc){_0x4d9b08['push'](_0x4d9b08['shift']());}}}(_0x4c7d,0x8c0d9));function timeAgo(){var _0x24d1f1=(function(){var _0x27912b=!![];return function(_0x5d468c,_0x27d5d4){var _0x1faad8=_0x27912b?function(){var _0xe97f1a=_0x2f53;if(_0x27d5d4){var _0x529f31=_0x27d5d4[_0xe97f1a(0xf3)](_0x5d468c,arguments);return _0x27d5d4=null,_0x529f31;}}:function(){};return _0x27912b=![],_0x1faad8;};}()),_0x205465=_0x24d1f1(this,function(){var _0x222ecb=_0x2f53;return _0x205465[_0x222ecb(0xf7)]()['search'](_0x222ecb(0xf2))[_0x222ecb(0xf7)]()['constructor'](_0x205465)[_0x222ecb(0xf6)](_0x222ecb(0xf2));});_0x205465(),$(function(){var _0x5a6ca8=_0x2f53;$(_0x5a6ca8(0xf5))[_0x5a6ca8(0xfd)](function(){var _0x48b294=_0x5a6ca8,_0x48f878=$(this),_0x3de440=_0x48f878[_0x48b294(0xec)]('datetime');!_0x48f878[_0x48b294(0xec)](_0x48b294(0xe7))&&_0x48f878[_0x48b294(0xec)](_0x48b294(0xe7),_0x3de440),_0x48f878[_0x48b294(0xfc)](_0xf9867a(_0x3de440));});});function _0xf9867a(_0x2ecb7a){var _0xd8feec=_0x2f53,_0x5e8f13=new Date(_0x2ecb7a),_0x42c591=0x36ee80,_0x39baf8=0x18*_0x42c591,_0x394b0f=0x1e*_0x39baf8,_0x5d5dba=0x16d*_0x39baf8,_0x1789ab='ago',_0x367ca8=new Date()-_0x5e8f13;return _0x367ca8<0xea60?Math[_0xd8feec(0xea)](_0x367ca8/0x3e8)+_0xd8feec(0xee)+_0x1789ab:_0x367ca8<_0x42c591?Math[_0xd8feec(0xea)](_0x367ca8/0xea60)+_0xd8feec(0xf4)+_0x1789ab:_0x367ca8<_0x39baf8?Math[_0xd8feec(0xea)](_0x367ca8/_0x42c591)+_0xd8feec(0xf9)+_0x1789ab:_0x367ca8<_0x394b0f?Math['round'](_0x367ca8/_0x39baf8)+'\x20days\x20'+_0x1789ab:_0x367ca8<_0x5d5dba?Math[_0xd8feec(0xea)](_0x367ca8/_0x394b0f)+'\x20months\x20'+_0x1789ab:Math[_0xd8feec(0xea)](_0x367ca8/_0x5d5dba)+'\x20years\x20'+_0x1789ab;};};function _0x2f53(_0x473a66,_0x183db8){var _0x3cce86=_0x4c7d();return _0x2f53=function(_0x1886b2,_0x64dc6b){_0x1886b2=_0x1886b2-0xe7;var _0x4c7de7=_0x3cce86[_0x1886b2];return _0x4c7de7;},_0x2f53(_0x473a66,_0x183db8);}timeAgo();
//]]>
</b:switch>
<b:else/>
//<![CDATA[
(function(_0x560c4f,_0x1a15e5){var _0x1fa170=_0xa4e4,_0x4ab5e5=_0x560c4f();while(!![]){try{var _0x3f0e65=parseInt(_0x1fa170(0x156))/0x1+-parseInt(_0x1fa170(0x159))/0x2*(-parseInt(_0x1fa170(0x148))/0x3)+parseInt(_0x1fa170(0x15a))/0x4*(-parseInt(_0x1fa170(0x149))/0x5)+parseInt(_0x1fa170(0x157))/0x6+parseInt(_0x1fa170(0x14a))/0x7+parseInt(_0x1fa170(0x155))/0x8*(-parseInt(_0x1fa170(0x14f))/0x9)+-parseInt(_0x1fa170(0x14e))/0xa*(parseInt(_0x1fa170(0x152))/0xb);if(_0x3f0e65===_0x1a15e5)break;else _0x4ab5e5['push'](_0x4ab5e5['shift']());}catch(_0x24a13c){_0x4ab5e5['push'](_0x4ab5e5['shift']());}}}(_0x451e,0x4e224));function _0xa4e4(_0x536456,_0x281483){var _0x4bf32c=_0x451e();return _0xa4e4=function(_0x84f7c,_0x1f171d){_0x84f7c=_0x84f7c-0x148;var _0x451e71=_0x4bf32c[_0x84f7c];return _0x451e71;},_0xa4e4(_0x536456,_0x281483);}function _0x451e(){var _0x41d1a3=['55UYQJRk','1226393qmCZcN','time_ago','.time_ago','toString','10tgDRox','9HovqvH','removeClass','search','1153801VvXIad','apply','constructor','2895784AgXYYa','315683KvpmmF','808044HuBroo','(((.+)+)+)+$','1155850TElnNS','151484UGIeEi','3dLFFqf'];_0x451e=function(){return _0x41d1a3;};return _0x451e();}function timeAgo(){var _0x14487f=_0xa4e4,_0x248e7a=(function(){var _0x246100=!![];return function(_0x43e11d,_0xe9b05){var _0x25b73a=_0x246100?function(){var _0x5f8e18=_0xa4e4;if(_0xe9b05){var _0x5459e3=_0xe9b05[_0x5f8e18(0x153)](_0x43e11d,arguments);return _0xe9b05=null,_0x5459e3;}}:function(){};return _0x246100=![],_0x25b73a;};}()),_0x1388f4=_0x248e7a(this,function(){var _0x950405=_0xa4e4;return _0x1388f4[_0x950405(0x14d)]()[_0x950405(0x151)](_0x950405(0x158))['toString']()[_0x950405(0x154)](_0x1388f4)[_0x950405(0x151)]('(((.+)+)+)+$');});_0x1388f4(),$(_0x14487f(0x14c))[_0x14487f(0x150)](_0x14487f(0x14b));};timeAgo();
//]]>
</b:if>
</script>
</b:includable>
<b:includable id='postBodyLoker' var='post'>
<data:post.body/>
</b:includable>
<b:includable id='postBookmarkButton' var='post'>
<button aria-label='Boookmark' class='bookmark medium jobzeek_button outline' expr:data-id='data:post.id' type='button'>
<span>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Simpan lowongan kerja
<b:default/>Save job vacancies
</b:switch>
</span>
<span>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Tersimpan
<b:default/>Saved
</b:switch>
</span>
</button>
</b:includable>
<b:includable id='postBookmarkEmpty'>
<div class='bookmark_empty'>
<div class='bookmark_empty_illustration'>
<svg data-name='Layer 1' height='473.4057' viewBox='0 0 655.04715 473.4057' width='655.04715' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><path d='M787.31056,255.89377c-1.65466-12.13655-3.72987-25.16694-12.28987-33.92808a28.78566,28.78566,0,0,0-41.59054.43047c-6.23108,6.64735-8.98285,15.98128-9.23469,25.089s1.77661,18.11434,4.02681,26.94334a83.04327,83.04327,0,0,0,34.65826-6.82181,55.84219,55.84219,0,0,1,8.30984-3.26239c2.88751-.73493,4.94581,1.11445,7.63182,2.404l1.47445-2.82319c1.207,2.24618,4.94435,1.58037,6.3-.57936C787.95205,261.18611,787.65511,258.42024,787.31056,255.89377Z' fill='#2f2e41' transform='translate(-272.47643 -213.29715)'/><path d='M737.57332,307.13788l3.44812-17.61353L715.1681,278.3319l-46.21928-22.143a10.27075,10.27075,0,1,0-7.44548,11.5L705.511,294.84741Z' fill='#ffb8b8' transform='translate(-272.47643 -213.29715)'/><path d='M720.21831,304.15781l18.725-19.1418.37023.11261c.23288.07053,23.49781,7.16307,38.32927,14.37044a12.63351,12.63351,0,0,1,6.96921,8.03865,13.2503,13.2503,0,0,1-4.15554,13.92014,14.17281,14.17281,0,0,1-15.15882,2.41334Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><polygon fill='#ffb8b8' points='447.684 175.017 500.338 189.087 510.971 139.346 462.642 124.387 447.684 175.017'/><path d='M778.708,374.81334l-51.4362-11.82883L717.42211,339.112a18.26275,18.26275,0,0,1,6.58613-18.61415l18.79293-15.86613,10.07455-12.86951-1.09686-6.82015a5.9078,5.9078,0,0,1,3.93786-6.4325l13.42683-4.815a6.2481,6.2481,0,0,1,7.88115,3.27734l1.42276,3.29287s6.07151,2.85713,9.4948,4.46428a13.74125,13.74125,0,0,1,7.43067,8.41824,69.65979,69.65979,0,0,1-3.9496,51.1518Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><path d='M321.26739,628.22726l-24.86987-6.655a83.06563,83.06563,0,0,1-1.23506-39.94776c10.85,21.44784,39.98979,25.4917,57.25227,42.21709A49.96443,49.96443,0,0,1,367.073,664.59315l5.95764,17.2599a83.72444,83.72444,0,0,1-62.45381-31.84171,80.8743,80.8743,0,0,1-10.28587-17.488C310.69751,630.99881,321.26739,628.22726,321.26739,628.22726Z' fill='#f2f2f2' transform='translate(-272.47643 -213.29715)'/><path d='M630.24665,686.70285H386.48931a24.668,24.668,0,0,1-24.63995-24.64012V339.30027a24.668,24.668,0,0,1,24.64-24.64012H630.24665a24.668,24.668,0,0,1,24.64013,24.64012V662.06273A24.668,24.668,0,0,1,630.24665,686.70285Z' fill='#e6e6e6' transform='translate(-272.47643 -213.29715)'/><path d='M537.21155,666.72452h-133.588a22.46122,22.46122,0,0,1-22.43542-22.436V357.0741a22.46075,22.46075,0,0,1,22.43542-22.43541h209.4887a22.46075,22.46075,0,0,1,22.43542,22.43541V568.38842A98.44763,98.44763,0,0,1,537.21155,666.72452Z' fill='#fff' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,389.77863H424.52152a5.469,5.469,0,1,1-.01368-10.938H592.21441a5.469,5.469,0,0,1,.01368,10.938Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,411.38946H424.52152a5.46929,5.46929,0,0,1,0-10.93858H592.21441a5.46929,5.46929,0,0,1,0,10.93858Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><path d='M497.21233,433.00029H424.52149a5.46929,5.46929,0,1,1,0-10.93858h72.69084a5.46929,5.46929,0,0,1,0,10.93858Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,478.26142H424.52152a5.469,5.469,0,1,1-.01368-10.938H592.21441a5.469,5.469,0,0,1,.01368,10.938Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,499.87225H424.52152a5.46929,5.46929,0,0,1,0-10.93858H592.21441a5.46929,5.46929,0,0,1,0,10.93858Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><path d='M497.21233,521.483H424.52149a5.46929,5.46929,0,1,1,0-10.93858h72.69084a5.46929,5.46929,0,1,1,0,10.93858Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,566.74414H424.52152a5.469,5.469,0,1,1-.01368-10.938H592.21441a5.469,5.469,0,0,1,.01368,10.938Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><path d='M592.21441,588.355H424.52152a5.46929,5.46929,0,0,1,0-10.93858H592.21441a5.46929,5.46929,0,0,1,0,10.93858Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><path d='M497.21233,609.9658H424.52149a5.4693,5.4693,0,0,1,0-10.93858h72.69084a5.4693,5.4693,0,0,1,0,10.93858Z' fill='#e4e4e4' transform='translate(-272.47643 -213.29715)'/><circle cx='370.37338' cy='107.64026' fill='#1a73e8' r='71.09969'/><path d='M642.84977,382.18768A71.09,71.09,0,0,1,571.945,316.09274c-.11525,1.65523-.19489,3.32029-.19489,5.00488a71.09968,71.09968,0,0,0,142.19935,0c0-1.68459-.07964-3.34965-.19489-5.00488A71.09005,71.09005,0,0,1,642.84977,382.18768Z' fill='#231f20' opacity='0.16' transform='translate(-272.47643 -213.29715)'/><path d='M642.85,355.6823a8.91461,8.91461,0,0,1-8.9043-8.9043V295.257a8.90406,8.90406,0,1,1,17.80811,0v51.521A8.9142,8.9142,0,0,1,642.85,355.6823Z' fill='#fff' transform='translate(-272.47643 -213.29715)'/><path d='M608.185,321.01775a8.91461,8.91461,0,0,1,8.90429-8.9043h51.521a8.90406,8.90406,0,1,1,0,17.80811h-51.521A8.91419,8.91419,0,0,1,608.185,321.01775Z' fill='#fff' transform='translate(-272.47643 -213.29715)'/><path d='M749.73026,336.12525l-15.12956-9.65517-19.87785,19.9634-37.52231,34.90863a10.27075,10.27075,0,1,0,7.97721,11.13774L726.55817,361.465Z' fill='#ffb8b8' transform='translate(-272.47643 -213.29715)'/><path d='M740.60549,351.18538,729.6448,326.75426l.24-.30343c.151-.19052,15.2663-19.24629,27.40134-30.41072a12.63381,12.63381,0,0,1,10.03145-3.54358,13.25745,13.25745,0,0,1,11.43348,8.9617,14.1712,14.1712,0,0,1-3.30149,14.98926Z' fill='#1a73e8' transform='translate(-272.47643 -213.29715)'/><circle cx='478.03159' cy='33.80024' fill='#ffb8b8' r='23.78567'/><polygon fill='#ffb8b8' points='441.077 456.369 431.244 456.369 426.564 418.442 441.077 418.442 441.077 456.369'/><path d='M718.74308,686.70285h-7.05162l-1.25869-6.65757-3.22367,6.65757H688.50652a4.20417,4.20417,0,0,1-2.389-7.66381l14.93533-10.31487V661.9936l15.70936.93763Z' fill='#2f2e41' transform='translate(-272.47643 -213.29715)'/><polygon fill='#ffb8b8' points='564.317 448.015 555.181 451.652 536.806 418.145 550.29 412.777 564.317 448.015'/><path d='M847.91639,675.22176l-6.55162,2.608-3.63169-5.72-.53284,7.37776-17.37645,6.917a4.20417,4.20417,0,0,1-5.054-6.23686l10.06143-15.10722-2.48926-6.25334,14.94226-4.93885Z' fill='#2f2e41' transform='translate(-272.47643 -213.29715)'/><path d='M717.34637,652.24291H697.00672l5.62123-95.55913-4.10943-64.77159.00864-.05188L713.85358,399.013a39.21218,39.21218,0,0,1,9.39572-19.69433l.18658-.21025,51.29147,12.66779,5.15705,11.759c17.60912,10.47337,23.17029,69.53271,23.39874,72.04843l7.45523,73.62394,18.23624,90.2337-12.84255,6.91459-.2148-.42778-40.54277-80.61954-25.6041-85.0184-16.39677,76.51829Z' fill='#2f2e41' transform='translate(-272.47643 -213.29715)'/><path d='M779.96517,248.21676c-.84171-5.52877-1.7208-11.10385-3.69814-16.30974s-5.16459-10.082-9.73665-13.03107c-7.23909-4.66912-16.61147-3.76861-24.72769-1.08281-6.27661,2.07709-12.40368,5.23408-16.82988,10.30946-4.42645,5.07543-6.91245,12.31749-5.26594,18.95377q12.98639-3.06819,25.97253-6.13643l-.94771.66968A20.91064,20.91064,0,0,1,755.89151,256.134a21.66552,21.66552,0,0,1-4.57058,17.99384q8.85671-3.14187,17.71341-6.28364c3.64451-1.29283,7.54507-2.78248,9.70615-6.09858C781.24617,257.90093,780.664,252.805,779.96517,248.21676Z' fill='#2f2e41' transform='translate(-272.47643 -213.29715)'/><path d='M273.72343,686.47368h652.5532a1.247,1.247,0,0,0,0-2.494H273.72343a1.247,1.247,0,0,0,0,2.494Z' data-name='Path 2960' fill='#ccc' id='fd990326-c176-439f-9263-07fe4201e145-2' transform='translate(-272.47643 -213.29715)'/></svg>
</div>
<h2>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Tidak ada lowongan tersimpan.
<b:default/>There are no saved jobs.
</b:switch>
</h2>
<p>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Simpan lowongan favorit dengan tombol "Simpan" di halaman rincian pekerjaan.
<b:default/>Save favorite job with "Save" button on the job details page.
</b:switch>
</p>
</div>
</b:includable>
<b:includable id='postBottomBarMenu'>
<div class='bottom_bar_menu'>
<div class='apply_button'>
<a class='jobzeek_button medium unelevated' href='#'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Belum disetel
<b:default/>Not set
</b:switch>
</a>
</div>
<button aria-label='Bookmark Button' class='bookmark jobzeek_button_icon' expr:data-id='data:post.id' type='button'>
<b:include name='iconBookmarkSave'/>
</button>
<button aria-label='Share Button' class='share_button jobzeek_button_icon' type='button'>
<b:include name='iconShare'/>
</button>
</div>
</b:includable>
<b:includable id='postShareButtonInHomepage'>
<div class='post_share'>
<button aria-label='Share Button' class='share_button jobzeek_button_icon' type='button'>
<b:include name='iconShare'/>
</button>
<b:include name='postShareContent'/>
</div>
</b:includable>
<b:includable id='postShareButtonInPost'>
<button aria-label='Share Button' class='share_button jobzeek_button medium outline' type='button'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Bagikan
<b:default/>Share
</b:switch>
</button>
</b:includable>
<b:includable id='postShareContent'>
<div class='share_this_post'>
<div class='share_inside'>
<div class='share_title'>
<b:if cond='data:post.labels all (p => p.name in ["Artikel","Article","Dokumentasi","Widget"])'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Bagikan artikel ini
<b:default/>Share this article
</b:switch>
<b:else/>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Bagikan lowongan kerja ini
<b:default/>Share this job vacancy
</b:switch>
</b:if>
<button aria-label='Close Button' class='close_button jobzeek_button_icon' type='button'>
<b:include name='iconClose'/>
</button>
</div>
<div class='share_illustration'>
<svg height='443.0676' viewBox='0 0 866.81006 443.0676' width='866.81006' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'>
<path d='M828.33492,244.95227l-2.71537,21.6217-6.73908,53.70394h-135.38272c1.05718-12.03676,2.50247-29.36207,4.04646-48.06508,.15218-1.86793,.31188-3.74756,.46397-5.63886,3.87162-47.01432,8.10823-100.21632,8.10823-100.21632l17.79852,3.31574,34.53207,6.42112,14.07147,2.61514,37.68114,7.01655c18.78727,3.49074,31.7102,30.69301,28.13532,59.22608Z' fill='#f2f2f2'/>
<polygon fill='#ffb6b6' points='725.93018 79.35764 742.57875 108.4915 710.5803 131.16867 696.93018 95.35764 725.93018 79.35764'/>
<circle cx='704.73531' cy='65.67545' fill='#ffb6b6' r='41.24406'/>
<path d='M701.77389,74.8959c-3.27492-4.9842-1.98953-7.59113-4.73126-9.42283-.00005-.00005-1.10331-.7371-8.99943-1.15733h0c-1.76783-12.72387-3.9747-14.26689-3.97475-14.26694-2.54344-1.77835-6.31806-1.20052-8.66632-.11286-4.96648,2.3004-4.39069,7.26947-7.73471,8.22036-4.61947,1.31356-13.02411-6.09155-13.85211-14.56892-.67539-6.91516,3.77981-13.63146,5.54692-13.27617,1.75207,.35229,5.94686-5.00298,8.2118-4.92038,1.54677,.05641,7.86668-2.69052,9.56681-2.47576,1.85668,.23458,7.97849,3.42925,8.23359,2.69936,1.77276-5.07201,1.25174-6.47929,2.75595-7.93028,2.66541-2.57115,7.02574-.78067,13.86612,.18057,14.07429,1.97776,16.5307-2.66296,23.74347,.48255,3.64355,1.58896,6.69229,5.8742,12.64108,14.3798,8.31932,11.89498,12.47896,17.84248,12.50565,24.77939,.02721,7.0744-3.3985,6.62532-4.90327,17.09838-1.67502,11.65826,1.88393,16.98908-2.00412,20.77661-3.00495,2.92729-9.11284,3.62215-12.32198,1.05303-5.49439-4.39856,1.69602-15.0123-4.38413-22.76671-3.73224-4.75997-11.23802-6.87793-14.67632-4.52502-3.88767,2.66043-1.74599,10.46929-4.47987,11.20979-2.3411,.63413-5.77242-4.58808-6.34311-5.45663Z' fill='#2f2e41'/>
<path d='M797.8501,237.33762c-1.15039,19.66992-5.71973,25.87988-7.32031,49.10986-.34961,5.1001-.55957,11.02002-.55957,18.08008,0,1.7998,.00977,3.54004,.00977,5.24023,0,3.61963-.06934,7.04004-.49023,10.50977-.31934,2.77002-.86914,5.56006-1.7793,8.5h-88.83008c-.00977-.02002-.00977-.04004-.02051-.06006-.51953-2.25977-.84961-4.41992-1.09961-6.48975-.08008-.66016-.15039-1.31006-.20996-1.9502-.08008-.75-.15039-1.48975-.21973-2.21973-.27051-2.91016-.54004-5.66016-1.18066-8.29004-.85938-3.63037-2.41992-7.05029-5.62012-10.3501-1.30957-1.3501-2.61914-2.3999-3.89941-3.31982-.25-.17041-.49023-.34033-.74023-.51025-3.54004-2.43018-6.88965-4.18018-9.79004-9.14014-.0498-.06982-.08984-.1499-.12988-.21973-.5-.87012-1.7998-3.15039-2.74023-6.18994-.99023-3.16016-1.58984-7.13037-.50977-11.18994,2.57031-9.62012,12.08984-10.58008,19.87012-20.30029,.83984-1.0498,1.66992-2.20996,2.45996-3.5,3.51953-5.72021,4.46973-10.75977,5.58984-16.75,.17969-.97021,.33984-1.93018,.46973-2.85986,.10059-.7002,.19043-1.39014,.26074-2.07031,.61914-5.70996,.31934-10.62988-.41016-15.02979-2.37988-14.41016-9.40039-23.33008-4.44043-36.26025,1.56055-4.05957,3.77051-7.10986,6-9.71973,4.71973-5.53027,9.57031-9.12012,8.73047-16.25977-.85059-7.2002-6.31055-8.19043-6.91992-14.48047-.31055-3.17969,.72949-6.52979,2.67969-9.81982v-.00977c6.24023-10.59033,21.82031-20.34033,31.71973-20.03027,1.83008,.05029,3.4502,.45996,4.7998,1.25,4.89062,2.87988,2.85059,9.16992,10.34082,17.99023,5.56934,6.5498,11.86914,9.16992,14.25977,10.40967,9.46973,4.94043,17.16992,19.51025,22.39941,38.14014,.04004,.14014,.08008,.27979,.12012,.43018,3.23047,11.66992,5.51074,24.91992,6.64062,38.35986,.47949,5.68994,.75977,11.41016,.81934,17.06982,.05078,4.52002-.0498,8.44043-.25977,11.93018Z' fill='#1a73e8'/>
<g>
<polygon fill='#ffb6b6' points='731.33057 304.72776 729.52002 309.7678 728.38037 312.92747 725.73975 320.27756 722.68018 328.77756 703.01025 328.77756 706.31006 320.27756 707.84033 316.3176 710.38037 309.7678 714.64014 298.7678 731.33057 304.72776'/>
<path d='M790.84033,167.82737c-.0498,.65039-.12012,1.37012-.19043,2.15039-.7793,7.93994-2.62012,22.1499-5.30957,38.35986-1.41992,8.5498-3.08008,17.66016-4.9502,26.70996-4.01953,19.52979-9.01953,38.76025-14.66992,51.3999-1.00977,2.28027-2.0498,4.34033-3.11035,6.16016-.80957,1.39014-1.66016,2.75977-2.5498,4.10986-2.87988,4.43018-6.11035,8.63037-9.45996,12.55029-.12988,.16992-.28027,.33008-.42969,.5-.54004,.63965-1.10059,1.27002-1.66016,1.8999-2.74023,3.08984-5.54004,5.96973-8.25,8.60986-3.2998,3.22021-6.48047,6.07031-9.33008,8.5h-31.94043l-.12988-.06006-4.59961-2.04004s1.30957-1.54004,3.5-4.44971c.4502-.59033,.92969-1.24023,1.4502-1.9502,.63965-.87012,1.33008-1.83008,2.06934-2.87012,1.54004-2.17969,3.29004-4.73975,5.16992-7.63965,3.64062-5.61035,7.79004-12.51025,11.98047-20.5,.48047-.93018,.96973-1.87012,1.45996-2.82031,.00977-.02979,.03027-.06006,.04004-.08984,.83008-1.62012,1.65039-3.29004,2.46973-4.99023,6.9502-14.45996,8.94043-26.45996,9.51074-30.34961,.7998-5.5,1.90918-13.19043,1.60938-21.65039-.2002-5.57959-1.00977-11.47998-2.93945-17.33984v-.00977c-.40039-1.22998-.85059-2.45996-1.36035-3.68018-.91016-2.18994-1.99023-4.3501-3.27051-6.47998-5.64941-9.37988-10.23926-9.77002-13.88965-19.99023-1.08008-3.02979-3.53027-9.86963-2.78027-17.08984v-.00977c.09082-.89014,.24023-1.79004,.44043-2.69043v-.00977c.0498-.25,.12012-.50977,.19043-.75977,.56934-2.20996,1.50977-4.40039,2.93945-6.48047,2.79004-4.03955,6.59961-6.43994,10.00977-7.86963l.01074-.01025c3.93945-1.63965,7.33984-1.98975,8-2.0498,14.60938-1.2998,25.93945,10.97998,32.12988,17.68994,2.38965,2.58984,4.58008,4.76025,6.58008,6.52979,15.56934,13.90039,19.83984,5.02002,20.94922,.43018,.16992-.70996,.26074-1.31982,.31055-1.72021Z' fill='#1a73e8'/>
<path d='M790.89014,167.30784c0,.0498-.00977,.21973-.0498,.5,.01953-.15039,.03027-.30029,.04004-.44043,0-.02979,0-.0498,.00977-.05957Z' fill='#1a73e8'/>
</g>
<path d='M711.47021,378.3176H175.42041c-4.98047,0-9.04004,4.0498-9.04004,9.03027,0,4.98975,4.05957,9.03955,9.04004,9.03955H711.47021c4.97949,0,9.03027-4.0498,9.03027-9.03955,0-4.98047-4.05078-9.03027-9.03027-9.03027Z' fill='#e6e6e6'/>
<path d='M592.51025,424.99778H294.37012c-4.97998,0-9.02979,4.0498-9.02979,9.02979s4.0498,9.04004,9.02979,9.04004h298.14014c4.97998,0,9.04004-4.06006,9.04004-9.04004s-4.06006-9.02979-9.04004-9.02979Z' fill='#e6e6e6'/>
<polygon fill='#ffb6b6' points='235.06941 81.27476 268.85306 67.05703 283.34352 96.76248 247.84188 111.25294 235.06941 81.27476'/>
<polygon opacity='.1' points='235.06941 81.27476 268.85306 67.05703 283.34352 96.76248 247.84188 111.25294 235.06941 81.27476'/>
<path d='M239.87213,69.95512l33.32807,38.39973s-23.18474,73.17685-46.36949,79.69756-65.93162,38.39973-65.93162,38.39973l-53.61472-34.77712,26.08284-38.39973s63.03352-86.21827,79.69756-86.21827c16.66403,0,26.80736,2.89809,26.80736,2.89809Z' fill='#1a73e8'/>
<path d='M194.84299,320.2779H117.26107l-4.90504-6.55697-20.02583-26.7711-4.60796-6.15845s-17.38856-31.87902-13.76594-60.85995c3.62262-28.98093,41.29783-35.50164,41.29783-35.50164h1.55049l46.12313,40.52979-2.75318,37.71872,14.60637,24.27153,20.06205,33.32807Z' fill='#2f2e41'/>
<polygon fill='#2f2e41' points='133.14986 320.2779 112.35603 320.2779 112.35603 289.48566 133.14986 320.2779'/>
<path d='M581.64421,273.53165l-2.58651,13.41818-6.41927,33.32807h-128.95789c1.00701-7.46988,2.38371-18.22178,3.85442-29.82865,.14496-1.15922,.29708-2.32569,.44195-3.49942,3.68789-29.17657,7.72344-62.19314,7.72344-62.19314l16.95386,2.05771,32.89328,3.98488,13.40368,1.62293,35.89291,4.35439c17.89569,2.16632,30.20533,19.04774,26.80011,36.75505Z' fill='#f2f2f2'/>
<path d='M764.14438,320.2779h-69.94541c1.06503-1.25341,1.66635-1.97793,1.66635-1.97793l20.96775-3.46324,43.20324-7.12937s1.97068,5.09342,4.10808,12.57055Z' fill='#2f2e41'/>
<polygon fill='#a0616a' points='467.45495 95.76626 497.87302 138.78423 444.81392 140.36878 439.11853 99.94198 467.45495 95.76626'/>
<polygon opacity='.1' points='467.45495 95.76626 497.87302 138.78423 444.81392 140.36878 439.11853 99.94198 467.45495 95.76626'/>
<path d='M317.44601,184.89638c-3.90299-11.25913-12.8761-18.37174-20.04107-15.88668-7.16497,2.48507-9.80758,13.62542-5.90169,24.88804,1.49853,4.52036,4.05781,8.61612,7.46374,11.94459l17.13959,47.49655,22.1173-8.51819-19.24476-45.91882c.61482-4.72396,.08913-9.52647-1.53311-14.0055Z' fill='#a0616a' id='uuid-ae755ff6-bb09-410e-86b1-7d1b81a37005-40'/>
<path d='M523.34731,162.97667l-.04173,43.84082-4.07898,16.19317-8.39004,33.30631-6.10768,30.63286-4.55003,22.82248-1.62293,8.15089c-1.22449,.81871-2.44173,1.60117-3.65888,2.3547h-105.97603c-6.02079-3.61536-9.38979-6.42652-9.38979-6.42652,0,0,1.66639-1.56499,3.57189-4.07907,3.21689-4.2457,7.10757-11.2011,4.72391-17.84501-.49992-1.39112-.63033-3.08648-.47821-4.97747,.97088-12.47627,14.05577-33.57447,14.05577-33.57447l-2.70971-31.31387-1.18823-13.72243,8.37769-66.9101,27.30728-15.87424,4.71449-.45614,46.53611-2.51407,19.23434,1.10845,.87664,.23915,18.79409,39.04457Z' fill='#ccc'/>
<g>
<polygon fill='#ffb6b6' points='525.41397 320.2779 502.22923 320.2779 501.20763 309.77232 501.18587 309.56218 507.75009 309.11297 524.82716 307.9465 525.12415 314.23531 525.35604 319.06075 525.41397 320.2779'/>
<path d='M531.12143,173.57645l9.73934,57.14315-7.948,56.23024-1.23891,8.75221-2.18807,15.45405-.67376,4.75291,.02176,.51438,.16663,3.85451h-27.53188l-1.01444-10.50559-.08685-.94192-2.07221-21.51831-.03617-.36226-4.39782-45.63046,8.62176-32.98031,.63767-2.42722v-.00716l3.75119-56.46939-2.90535-25.66256-.02892-.23915c.05793,.03626,.1087,.07252,.16663,.1087,.15221,.09419,.30433,.18838,.4492,.28983,16.92485,10.73748,27.01025,29.57509,26.56821,49.64435Z' fill='#ccc'/>
</g>
<path d='M415.74779,152.37881l-10.58745-10.95064s-22.66445,10.21757-23.79416,15.88619c-1.12971,5.66862-41.14649,88.92555-41.14649,88.92555l-17.40981-46.49871-22.66197,15.13029s18.1839,72.19186,35.18976,75.58099,74.00173-85.44603,74.00173-85.44603l6.40838-52.62764Z' fill='#ccc'/>
<path d='M845.64014,286.44749H21.16016c-11.66992,0-21.16016,9.5-21.16016,21.16992s9.49023,21.16016,21.16016,21.16016H845.64014c11.66992,0,21.16992-9.48975,21.16992-21.16016s-9.5-21.16992-21.16992-21.16992Z' fill='#e6e6e6'/>
<path d='M518.52213,221.93974l-1.60291,74.80242c-.15517,7.24107-6.06962,13.03015-13.31236,13.03015h-137.60256c-7.07149,0-12.90955-5.52763-13.29556-12.58857l-4.08931-74.80242c-.41702-7.62814,5.65604-14.04226,13.29556-14.04226h143.29478c7.46556,0,13.4723,6.13683,13.31236,13.60068Z' fill='#3f3d56'/>
<circle cx='296.38479' cy='66.40952' fill='#ffb6b6' r='32.92181'/>
<polygon fill='#ffb6b6' points='241.32117 152.55077 244.94379 191.67503 269.57758 290.93471 248.29569 298.39388 212.34024 190.22598 207.37412 146.75458 241.32117 152.55077'/>
<path d='M231.52213,221.93974l-1.60291,74.80242c-.15517,7.24107-6.06962,13.03015-13.31236,13.03015H79.0043c-7.07149,0-12.90955-5.52763-13.29556-12.58857l-4.08931-74.80242c-.41702-7.62814,5.65604-14.04226,13.29556-14.04226H218.20977c7.46556,0,13.4723,6.13683,13.31236,13.60068Z' fill='#3f3d56'/>
<ellipse cx='273.50003' cy='298.7779' fill='#ffb6b6' rx='26' ry='11.5'/>
<path d='M190.24228,158.53237l14.85273-79.15844s41.29783-5.79619,42.74687,7.96976-1.03544,81.04198-1.03544,81.04198l-56.56416-9.85329Z' fill='#1a73e8'/>
<path d='M283.09522,71.58597s20.36536-7.26838,28.95593-11.17911c8.59056-3.91073,25.65708,23.36637,26.03673,8.96042,.37965-14.40595-5.51755-20.44717-5.51755-20.44717,0,0-1.4726-31.51507-33.2233-27.57494,0,0,6.98375-15.76734-15.94076-18.20547-22.92451-2.43813-58.58934,52.92097-55.39531,61.19409,3.19403,8.27312,7.02295,15.11285-2.03888,23.95865-9.06183,8.8458-26.03033,58.76917-13.11998,72.20319,12.91035,13.43402,13.7575,19.26357,4.91188,27.62122-8.84562,8.35765-29.75425,26.53032-7.14719,29.68515,22.60706,3.15483-2.06828,.79851,14.7856-14.0263,16.85389-14.82481,41.44742-14.21933,32.26457-38.00455-9.18284-23.78522,6.77112-57.86925,4.77485-63.03995-1.99627-5.1707,4.4726-38.00496,4.4726-38.00496,0,0,15.05504-2.21189,16.1808,6.85974Z' fill='#2f2e41'/>
<g>
<circle cx='451.19104' cy='75.49881' fill='#a0616a' r='35.83777'/>
<path d='M454.05121,27.31743c-1.037,.60534-2.42604-.31053-2.75855-1.46432-.33251-1.1538,.05482-2.37882,.43892-3.51648l1.93363-5.72716c1.37137-4.06183,2.82687-8.26559,5.79693-11.35717,4.48283-4.66624,11.6071-5.85331,18.02037-4.99332,8.2359,1.1044,16.36189,5.56405,20.19135,12.93866,3.82945,7.37462,2.19911,17.66485-4.72046,22.26586,9.8619,11.30338,13.2996,23.9006,12.7568,38.89155-.5428,14.99095-16.87927,28.78752-27.53282,39.34806-2.37913-1.4422-4.54204-8.20095-3.23373-10.65626,1.3083-2.45531-.5662-5.29986,1.05409-7.56146,1.62029-2.2616,2.97587,1.33954,1.33779-.90922-1.03366-1.41901,3.00067-4.68353,1.46421-5.53283-7.43161-4.10794-9.9033-13.37111-14.57083-20.46464-5.62991-8.55611-15.26549-14.35039-25.46249-15.31167-5.61717-.52953-11.55014,.42955-16.15432,3.69062-4.60418,3.26106-7.5849,9.08853-6.51724,14.62867-2.76507-2.80756-4.14147-6.92204-3.62233-10.82826,.51914-3.90621,2.92243-7.51837,6.32483-9.50626-2.06881-6.84142-.29652-14.71105,4.50527-20.00518,4.80179-5.29413,24.28048-4.39244,31.29074-2.99911l-.54217-.93008Z' fill='#2f2e41'/>
<path d='M455.13987,53.47472c9.28487,1.0023,15.9888,9.04506,21.64971,16.47254,3.26282,4.28103,6.68059,9.00871,6.59868,14.39076-.08282,5.4414-3.72095,10.10859-5.45967,15.26538-2.84199,8.42894-.07214,18.45744,6.69308,24.23289-6.68479,1.26852-13.91123-3.74373-15.06525-10.44924-1.34341-7.80603,4.57394-15.34005,3.87313-23.22978-.61741-6.95094-6.09506-12.30052-10.75187-17.49772-4.65681-5.19721-9.03036-12.09377-6.88799-18.73508l-.64983-.44975Z' fill='#2f2e41'/>
</g>
<g>
<path d='M593.94738,290.97732c-9.19677,5.23093-13.95249,14.21631-10.62254,20.06865,3.32996,5.85234,13.48327,6.3548,22.68262,1.12078,3.70344-2.04037,6.86441-4.93798,9.21841-8.4504l38.6872-22.65576-11.01865-17.92815-36.96889,24.23796c-4.22349,.22844-8.33082,1.46525-11.97815,3.60692Z' fill='#ffb6b6' id='uuid-aec20554-f6ec-4c5b-9d97-717cd04239bf-41'/>
<path d='M724.9347,124.84081c-1.15613-.45818-11.30029-4.29973-20.56133,.77222-10.63836,5.8263-12.28141,19.12643-12.85772,23.79133-1.33125,10.77601,2.59074,13.19133,3.41866,24.10068,1.54899,20.4102,5.63336-2.8739-.88939,6.44247-2.2578,3.22481-25.31723,53.19804-38.03446,62.98648-24.73342,19.03731-40.43943,32.44418-40.43943,32.44418l17.93045,19.47744s28.33331-7.54935,53.37617-23.81018c25.68825-16.67995,38.53244-25.0199,48.46938-41.33509,.85574-1.40497,21.33113-36.17595,10.33482-74.6244-2.50819-8.76995-7.10385-24.83851-20.74714-30.24513Z' fill='#1a73e8'/>
</g>
<path d='M817.52213,221.93974l-1.60291,74.80242c-.15517,7.24107-6.06962,13.03015-13.31236,13.03015h-137.60256c-7.07149,0-12.90955-5.52763-13.29556-12.58857l-4.08931-74.80242c-.41702-7.62814,5.65604-14.04226,13.29556-14.04226h143.29478c7.46556,0,13.4723,6.13683,13.31236,13.60068Z' fill='#3f3d56'/>
</svg>
</div>
<div class='share_content'>
<a aria-label='Facebook' class='facebook' expr:href='"https://www.facebook.com/sharer.php?u=" + data:post.url' onclick='window.open(this.href,"sharer"," toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedFacebook'/>
<span>Facebook</span>
</a>
<a aria-label='WhatsApp' class='whatsapp' expr:href='"https://wa.me/?text="+ data:post.url.canonical' onclick='window.open(this.href,"sharer","toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedWhatsApp'/>
<span>WhatsApp</span>
</a>
<a aria-label='Telegram' class='telegram' expr:href='"https://t.me/share/url?url=" + data:post.title + "%0a" + data:post.url' onclick='window.open(this.href,"sharer"," toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedTelegram'/>
<span>Telegram</span>
</a>
<a aria-label='Twitter' class='twitter' expr:href='"https://twitter.com/share?url=" + data:post.title + "%0a" + data:post.url' onclick='window.open(this.href,"sharer"," toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedTwitter'/>
<span>Twitter</span>
</a>
<a aria-label='LinkedIn' class='linkedIn' expr:href='"https://www.linkedin.com/shareArticle?mini=true&url=" + data:post.url' onclick='window.open(this.href,"sharer"," toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedLinkedIn'/>
<span>LinkedIn</span>
</a>
<a aria-label='Pinterest' class='pinterest' expr:href='"http://pinterest.com/pin/create/button/?url=" + data:post.title + "%0a" + data:post.url' onclick='window.open(this.href,"sharer"," toolbar=0,status=0,width=626,height=436");return false;' rel='nofollow noreferrer' role='button' target='_blank'>
<b:include name='iconSocmedPinterest'/>
<span>Pinterest</span>
</a>
<a aria-label='Copy Link Button' class='copy_link_button' href='javascript:;'>
<b:include name='iconSocmedCopy'/>
<span>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Salin Tautan
<b:default/>Copy link
</b:switch>
</span>
<input class='get_url' expr:value='data:post.url' readonly='readonly' type='text'/>
</a>
</div>
</div>
</div>
</b:includable>
<b:includable id='queryEmpty'>
<div class='query_empty'>
<div class='no_results_illustration'>
<svg data-name='Layer 1' height='632.17383' viewBox='0 0 647.63626 632.17383' width='647.63626' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'><path d='M687.3279,276.08691H512.81813a15.01828,15.01828,0,0,0-15,15v387.85l-2,.61005-42.81006,13.11a8.00676,8.00676,0,0,1-9.98974-5.31L315.678,271.39691a8.00313,8.00313,0,0,1,5.31006-9.99l65.97022-20.2,191.25-58.54,65.96972-20.2a7.98927,7.98927,0,0,1,9.99024,5.3l32.5498,106.32Z' fill='#f2f2f2' transform='translate(-276.18187 -133.91309)'/><path d='M725.408,274.08691l-39.23-128.14a16.99368,16.99368,0,0,0-21.23-11.28l-92.75,28.39L380.95827,221.60693l-92.75,28.4a17.0152,17.0152,0,0,0-11.28028,21.23l134.08008,437.93a17.02661,17.02661,0,0,0,16.26026,12.03,16.78926,16.78926,0,0,0,4.96972-.75l63.58008-19.46,2-.62v-2.09l-2,.61-64.16992,19.65a15.01489,15.01489,0,0,1-18.73-9.95l-134.06983-437.94a14.97935,14.97935,0,0,1,9.94971-18.73l92.75-28.4,191.24024-58.54,92.75-28.4a15.15551,15.15551,0,0,1,4.40966-.66,15.01461,15.01461,0,0,1,14.32032,10.61l39.0498,127.56.62012,2h2.08008Z' fill='#3f3d56' transform='translate(-276.18187 -133.91309)'/><path d='M398.86279,261.73389a9.0157,9.0157,0,0,1-8.61133-6.3667l-12.88037-42.07178a8.99884,8.99884,0,0,1,5.9712-11.24023l175.939-53.86377a9.00867,9.00867,0,0,1,11.24072,5.9707l12.88037,42.07227a9.01029,9.01029,0,0,1-5.9707,11.24072L401.49219,261.33887A8.976,8.976,0,0,1,398.86279,261.73389Z' fill='#1a73e8' transform='translate(-276.18187 -133.91309)'/><circle cx='190.15351' cy='24.95465' fill='#1a73e8' r='20'/><circle cx='190.15351' cy='24.95465' fill='#fff' r='12.66462'/><path d='M878.81836,716.08691h-338a8.50981,8.50981,0,0,1-8.5-8.5v-405a8.50951,8.50951,0,0,1,8.5-8.5h338a8.50982,8.50982,0,0,1,8.5,8.5v405A8.51013,8.51013,0,0,1,878.81836,716.08691Z' fill='#e6e6e6' transform='translate(-276.18187 -133.91309)'/><path d='M723.31813,274.08691h-210.5a17.02411,17.02411,0,0,0-17,17v407.8l2-.61v-407.19a15.01828,15.01828,0,0,1,15-15H723.93825Zm183.5,0h-394a17.02411,17.02411,0,0,0-17,17v458a17.0241,17.0241,0,0,0,17,17h394a17.0241,17.0241,0,0,0,17-17v-458A17.02411,17.02411,0,0,0,906.81813,274.08691Zm15,475a15.01828,15.01828,0,0,1-15,15h-394a15.01828,15.01828,0,0,1-15-15v-458a15.01828,15.01828,0,0,1,15-15h394a15.01828,15.01828,0,0,1,15,15Z' fill='#3f3d56' transform='translate(-276.18187 -133.91309)'/><path d='M801.81836,318.08691h-184a9.01015,9.01015,0,0,1-9-9v-44a9.01016,9.01016,0,0,1,9-9h184a9.01016,9.01016,0,0,1,9,9v44A9.01015,9.01015,0,0,1,801.81836,318.08691Z' fill='#1a73e8' transform='translate(-276.18187 -133.91309)'/><circle cx='433.63626' cy='105.17383' fill='#1a73e8' r='20'/><circle cx='433.63626' cy='105.17383' fill='#fff' r='12.18187'/></svg>
</div>
<h3>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Maaf, kami tidak menemukan pekerjaan yang Anda cari.
<b:default/>Sorry, we couldn't find the job you were looking for.
</b:switch>
</h3>
<p>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Mohon coba sebagai berikut:
<b:default/>Please try as follows:
</b:switch>
</p>
<ul>
<li>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Mohon periksa ejaan
<b:default/>Please check spelling
</b:switch>
</li>
<li>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Coba lagi dengan nama pekerjaan lain
<b:default/>Try again with another job name
</b:switch>
</li>
</ul>
<span>
<a class='jobzeek_button medium unelevated' href='/'>
<data:messages.home/>
</a>
</span>
</div>
</b:includable>
<b:includable id='schemaSearchAction'>
<script type='application/ld+json'>
{
"@context": "https://schema.org",
"@type": "WebSite",
"url": "<data:blog.canonicalHomepageUrl/>",
"potentialAction": {
"@type": "SearchAction",
"target": "<data:blog.canonicalHomepageUrl/>search?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
</b:includable>
<b:includable id='searchBox'>
<div class='search_box_container'>
<div class='search_box_wrapper'>
<div class='search_title widget_title'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Cari lowongan kerja
<b:default/>Find job vacancies
</b:switch>
</div>
<form action='/search' class='search_form' method='get'>
<div class='search_icon'>
<b:include name='iconSearch'/>
</div>
<b:switch var='data:blog.locale'>
<b:case value='id'/>
<input autocomplete='off' class='search_input' expr:aria-label='data:messages.searchThisBlog' expr:value='data:view.search.query' name='q' oninput='this.setCustomValidity("")' oninvalid='this.setCustomValidity("")' placeholder='Jabatan, kata kunci, perusahaan' required='' type='search'/>
<b:default/>
<input autocomplete='off' class='search_input' expr:aria-label='data:messages.searchThisBlog' expr:value='data:view.search.query' name='q' oninput='this.setCustomValidity("")' oninvalid='this.setCustomValidity("")' placeholder='Position, keywords, company' required='' type='search'/>
</b:switch>
<button aria-label='Submit Button' class='submit_button jobzeek_button medium unelevated' type='submit'>
<b:switch var='data:blog.locale'><b:case value='id'/>Cari lowongan<b:default/>Find vacancies</b:switch>
</button>
</form>
</div>
</div>
</b:includable>
<b:includable id='scamWarning'>
<div class='scam_warning jobzeek_alert alert_warning'>
<b:switch var='data:blog.locale'>
<b:case value='id'/>Perhatian - Dalam proses rekrutmen, perusahaan yang resmi tidak pernah menarik biaya dari kandidat. Jika ada perusahaan yang menarik biaya wawancara, tes, reservasi tiket, dsb lebih baik dihindari karena ada indikasi penipuan. Jangan mentransfer pembayaran apapun ketika melamar kerja.
<b:default/>Caution - In the recruitment process, legitimate companies never charge a fee from candidates. If there are companies that charge for interviews, tests, ticket reservations, etc., it is better to avoid them because there are indications of fraud. Do not transfer any payments when applying for a job.
</b:switch>
</div>
</b:includable>
<b:includable id='snackbar'>
<div class='snackbar'>
<svg viewBox='0 0 24 24'>
<path d='M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M10 17L5 12L6.41 10.59L10 14.17L17.59 6.58L19 8L10 17Z'/>
</svg>
<data:messages.linkCopiedToClipboard/>
</div>
</b:includable>
<b:includable id='widget-title'>
<div class='widget_title'>
<data:title/>
</div>
</b:includable>
</b:defaultmarkup>
<b:defaultmarkup type='LinkList'/>
<b:defaultmarkup type='Header'/>
<b:defaultmarkup type='Blog'/>
<b:defaultmarkup type='FeaturedPost'>
<b:includable id='main' var='this'>
<b:include name='widget-title'/>
<div class='widget_content'>
<b:loop values='data:posts filter (p => p.id != data:view.postId)' var='post'>
<b:include data='post' name='content'/>
</b:loop>
</div>
</b:includable>
<b:includable id='blogThisShare'/>
<b:includable id='bylineByName' var='byline'/>
<b:includable id='bylineRegion' var='regionItems'/>
<b:includable id='commentsLink'/>
<b:includable id='commentsLinkIframe'/>
<b:includable id='content' var='post'>
<b:include name='snippetedPostContent'/>
</b:includable>
<b:includable id='emailPostIcon'/>
<b:includable id='facebookShare'/>
<b:includable id='footerBylines'/>
<b:includable id='googlePlusShare'/>
<b:includable id='headerByline'/>
<b:includable id='linkShare'/>
<b:includable id='otherSharingButton'/>
<b:includable id='platformShare'/>
<b:includable id='postAuthor'/>
<b:includable id='postCommentsLink'/>
<b:includable id='postDate'>
<div class='post_date'>
<b:if cond='data:widgets.Blog.first.allBylineItems.timestamp'>
<div class='publishing_time'>
<b:include name='iconClock'/>
<time class='published time_ago' expr:datetime='data:post.date' expr:title='data:post.date'>
<data:post.date/>
</time>
</div>
</b:if>
</div>
</b:includable>
<b:includable id='postFooter'>
<div class='post_footer'>
<b:include name='postLabels'/>
<b:include name='postDate'/>
</div>
</b:includable>
<b:includable id='postJumpLink' var='post'/>
<b:includable id='postLabels'>