-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1550 lines (1284 loc) · 160 KB
/
index.html
File metadata and controls
1550 lines (1284 loc) · 160 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0035)Aboutme.html -->
<html lang="en" class=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="generator" content="Wix.com Website Builder">
<meta http-equiv="X-Wix-Meta-Site-Id" content="221d4972-2dfb-4973-bcff-75792838194d">
<meta http-equiv="X-Wix-Application-Instance-Id" content="43a9be95-f3b1-4b3a-a03f-71a8fd3921b6">
<meta http-equiv="X-Wix-Published-Version" content="18">
<meta http-equiv="etag" content="88439aeb41a1140d4199adeb9a6a772f">
<meta name="format-detection" content="telephone=no">
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE">
<meta id="wixMobileViewport" name="viewport" content="width=980, user-scalable=yes">
<!-- META DATA -->
<script type="text/javascript">
var serviceTopology = {"cacheKillerVersion":"1","staticServerUrl":"https://static.parastorage.com/","usersScriptsRoot":"//static.parastorage.com/services/wix-users/2.660.0","biServerUrl":"https://frog.wix.com/","userServerUrl":"https://users.wix.com/","billingServerUrl":"https://premium.wix.com/","mediaRootUrl":"https://static.wixstatic.com/","logServerUrl":"https://frog.wix.com/plebs","monitoringServerUrl":"https://TODO/","usersClientApiUrl":"https://users.wix.com/wix-users","publicStaticBaseUri":"//static.parastorage.com/services/wix-public/1.253.0","basePublicUrl":"https://www.wix.com/","postLoginUrl":"https://www.wix.com/my-account","postSignUpUrl":"https://www.wix.com/new/account","baseDomain":"wix.com","staticMediaUrl":"https://static.wixstatic.com/media","staticAudioUrl":"https://music.wixstatic.com/mp3","staticDocsUrl":"https://docs.wixstatic.com/ugd","emailServer":"https://assets.wix.com/common-services/notification/invoke","blobUrl":"https://static.parastorage.com/wix_blob","htmlEditorUrl":"http://editor.wix.com/html","siteMembersUrl":"https://users.wix.com/wix-sm","scriptsLocationMap":{"automation":"https://static.parastorage.com/services/automation/1.23.0","bootstrap":"https://static.parastorage.com/services/bootstrap/2.1229.80","ck-editor":"https://static.parastorage.com/services/ck-editor/1.87.3","core":"https://static.parastorage.com/services/core/2.1229.80","dbsm-editor-app":"https://static.parastorage.com/services/dbsm-editor-app/1.647.0","dbsm-viewer-app":"https://static.parastorage.com/services/dbsm-viewer-app/1.449.0","ecommerce":"https://static.parastorage.com/services/ecommerce/1.203.0","fallback-viewer-app":"https://static.parastorage.com/services/fallback-viewer-app/1.0.0","js-platform-apps-configuration":"https://static.parastorage.com/services/js-platform-apps-configuration/1.52.0","js-wixcode-sdk":"https://static.parastorage.com/services/js-wixcode-sdk/1.342.0","langs":"https://static.parastorage.com/services/langs/2.577.0","linguist-flags":"https://static.parastorage.com/services/linguist-flags/1.38.0","promote-analytics-adapter":"https://static.parastorage.com/services/promote-analytics-adapter/2.117.0","promote-seo-renderer":"https://static.parastorage.com/services/promote-seo-renderer/1.2.0","santa":"https://static.parastorage.com/services/santa/1.7224.8","santa-langs":"https://static.parastorage.com/services/santa-langs/1.4801.0","santa-resources":"https://static.parastorage.com/services/santa-resources/1.2.0","santa-site-auth-module":"https://static.parastorage.com/services/santa-site-auth-module/1.9.0","semi-native-sdk":"https://static.parastorage.com/services/semi-native-sdk/1.8.0","sitemembers":"https://static.parastorage.com/services/sm-js-sdk/1.31.0","skins":"https://static.parastorage.com/services/skins/2.1229.80","tpa":"https://static.parastorage.com/services/tpa/2.1065.0","web":"https://static.parastorage.com/services/web/2.1229.80","wix-bolt":"https://static.parastorage.com/services/wix-bolt/1.2616.0","wix-code-platform":"https://static.parastorage.com/services/wix-code-platform/1.95.0","wix-code-viewer-app":"https://static.parastorage.com/services/wix-code-viewer-app/1.88.0","wix-music-embed":"https://static.parastorage.com/services/wix-music-embed/1.26.0","wix-ui-santa":"https://static.parastorage.com/services/wix-ui-santa/1.98.0","wixapps":"https://static.parastorage.com/services/wixapps/2.486.0","wixcode-namespaces":"https://static.parastorage.com/services/wixcode-namespaces/1.115.0"},"developerMode":false,"productionMode":true,"staticServerFallbackUrl":"https://sslstatic.wix.com/","staticVideoUrl":"https://video.wixstatic.com/","cloudStorageUrl":"https://static.wixstatic.com/","usersDomainUrl":"https://users.wix.com/wix-users","scriptsDomainUrl":"https://static.parastorage.com/","userFilesUrl":"https://static.parastorage.com/","staticHTMLComponentUrl":"https://gohulan-wixsite-com.filesusr.com/","secured":true,"ecommerceCheckoutUrl":"https://www.safer-checkout.com/","premiumServerUrl":"https://premium.wix.com/","digitalGoodsServerUrl":"https://dgs.wixapps.net/","wixCloudBaseDomain":"wix-code.com","mailServiceSuffix":"/_api/common-services/notification/invoke","staticVideoHeadRequestUrl":"https://storage.googleapis.com/video.wixstatic.com","protectedPageResolverUrl":"https://site-pages.wix.com/_api/wix-public-html-info-webapp/resolve_protected_page_urls","mediaUploadServerUrl":"https://files.wix.com/","siteAssetsServerUrl":"https://siteassets.parastorage.com/pages","staticServerWixDomainUrl":"https://www.wix.com/_partials","adaptiveVideoDomain":"https://files.wix.com/","scriptsVersionsMap":{"santa-data-fixer":"1.446.0","santa-site-metadata":"1.337.0","santa-main-r":"1.100.0","stylable-santa-flatten":"1.0.6"},"publicStaticsUrl":"//static.parastorage.com/services/wix-public/1.253.0"};
var santaModels = true;
var isStreaming = true;
var rendererModel = {"metaSiteId":"221d4972-2dfb-4973-bcff-75792838194d","siteInfo":{"documentType":"UGC","applicationType":"HtmlWeb","siteId":"43a9be95-f3b1-4b3a-a03f-71a8fd3921b6","siteTitleSEO":"aboutme"},"clientSpecMap":{"0":{"type":"appbuilder","applicationId":0,"appDefinitionId":"3d590cbc-4907-4cc4-b0b1-ddf2c5edf297","instanceId":"ec770066-1cd8-4cff-8782-a23f31df44a2","state":"Initialized"},"-666":{"type":"metasite","metaSiteId":"221d4972-2dfb-4973-bcff-75792838194d","appDefId":"22bef345-3c5b-4c18-b782-74d4085112ff","instance":"PmOmiI2wi-Dv4XEyhWcRLY83alafv77pd5HpgL_z20E.eyJpbnN0YW5jZUlkIjoiMjIxZDQ5NzItMmRmYi00OTczLWJjZmYtNzU3OTI4MzgxOTRkIiwiYXBwRGVmSWQiOiIyMmJlZjM0NS0zYzViLTRjMTgtYjc4Mi03NGQ0MDg1MTEyZmYiLCJtZXRhU2l0ZUlkIjoiMjIxZDQ5NzItMmRmYi00OTczLWJjZmYtNzU3OTI4MzgxOTRkIiwic2lnbkRhdGUiOiIyMDE5LTA1LTMwVDA2OjU2OjAwLjQwMloiLCJ1aWQiOm51bGwsInBlcm1pc3Npb25zIjpudWxsLCJpcEFuZFBvcnQiOm51bGwsInZlbmRvclByb2R1Y3RJZCI6bnVsbCwiZGVtb01vZGUiOmZhbHNlLCJzaXRlT3duZXJJZCI6ImZlNDI1M2E0LTA0MGYtNDI5Zi04N2U4LWYyODM5Y2QxYWY0MiIsImNhY2hlIjp0cnVlfQ","appDefinitionId":"22bef345-3c5b-4c18-b782-74d4085112ff","applicationId":-666},"1594":{"type":"public","applicationId":1594,"appDefinitionId":"12d1847a-b5a1-8efd-2852-9c42406fdb80","appDefinitionName":"LinkedIn Business Card","instance":"COiU7zdGvWh_cw6wUy8ctTJpD5sVd5QeInFy4EksCGs.eyJpbnN0YW5jZUlkIjoiOGY4NDNhZDMtODk3MC00NzI1LWE4MDYtNGYxN2IzODc5OTM2IiwiYXBwRGVmSWQiOiIxMmQxODQ3YS1iNWExLThlZmQtMjg1Mi05YzQyNDA2ZmRiODAiLCJtZXRhU2l0ZUlkIjoiMjIxZDQ5NzItMmRmYi00OTczLWJjZmYtNzU3OTI4MzgxOTRkIiwic2lnbkRhdGUiOiIyMDE5LTA1LTMwVDA2OjU2OjAwLjM5N1oiLCJ1aWQiOm51bGwsImlwQW5kUG9ydCI6IjEyNC40My42NS4xNjMvNTQxMzYiLCJ2ZW5kb3JQcm9kdWN0SWQiOm51bGwsImRlbW9Nb2RlIjpmYWxzZSwiYWlkIjoiNDExY2JmZTgtYTA2Zi00ZTgyLTk0ZjUtYmJlNDQ0ZmUzOTFkIiwiYmlUb2tlbiI6ImFkOTk3M2ExLWE0OGItMGU1Ni0xNGY5LTNhNmU5YmJmODA3YiIsInNpdGVPd25lcklkIjoiZmU0MjUzYTQtMDQwZi00MjlmLTg3ZTgtZjI4MzljZDFhZjQyIn0","instanceId":"8f843ad3-8970-4725-a806-4f17b3879936","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"12d18493-ffe0-04ee-48d0-39384bbe636f":{"widgetUrl":"https:\/\/linkedin.galilcloud.wixapps.net\/","widgetId":"12d18493-ffe0-04ee-48d0-39384bbe636f","refreshOnWidthChange":true,"mobileUrl":"https:\/\/linkedin.galilcloud.wixapps.net\/mobile","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"linkedin_business_cards","default":true}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":true},"appFields":{}},"1472":{"type":"public","applicationId":1472,"appDefinitionId":"14271d6f-ba62-d045-549b-ab972ae1f70e","appDefinitionName":"Wix Pro Gallery","instance":"4LqX58rFfWhY5PigCytsm1-m0SHWgHp29kjT41r7DJA.eyJpbnN0YW5jZUlkIjoiMGQxNzBjNTAtOTk5ZC00OGNjLTk5YzctNWNkMjNlZmUxZjA2IiwiYXBwRGVmSWQiOiIxNDI3MWQ2Zi1iYTYyLWQwNDUtNTQ5Yi1hYjk3MmFlMWY3MGUiLCJtZXRhU2l0ZUlkIjoiMjIxZDQ5NzItMmRmYi00OTczLWJjZmYtNzU3OTI4MzgxOTRkIiwic2lnbkRhdGUiOiIyMDE5LTA1LTMwVDA2OjU2OjAwLjM5NloiLCJ1aWQiOm51bGwsImlwQW5kUG9ydCI6IjEyNC40My42NS4xNjMvNTQxMzYiLCJ2ZW5kb3JQcm9kdWN0SWQiOm51bGwsImRlbW9Nb2RlIjpmYWxzZSwib3JpZ2luSW5zdGFuY2VJZCI6IjY0OGIxMDg3LTJmOWItNDAxNC1hZmFjLTNkNWY1M2Q1OGZjMyIsImFpZCI6IjQxMWNiZmU4LWEwNmYtNGU4Mi05NGY1LWJiZTQ0NGZlMzkxZCIsImJpVG9rZW4iOiIyZjBhNDUyMi1iNDY2LTAxYmYtMjUzOC0yOWFiMTZjNjA2NGIiLCJzaXRlT3duZXJJZCI6ImZlNDI1M2E0LTA0MGYtNDI5Zi04N2U4LWYyODM5Y2QxYWY0MiJ9","instanceId":"0d170c50-999d-48cc-99c7-5cd23efe1f06","appWorkerUrl":"https:\/\/progallery.wix.com\/worker.html","sectionPublished":true,"sectionMobilePublished":false,"sectionSeoEnabled":true,"widgets":{"14f7938f-fa9a-e9e3-3a24-089172dccb28":{"widgetUrl":"https:\/\/progallery.wix.com\/checkout","widgetId":"14f7938f-fa9a-e9e3-3a24-089172dccb28","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/checkout","appPage":{"id":"checkout_page","name":"Checkout Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":2,"indexable":true,"fullPage":true,"landingPageInMobile":true,"hideFromMenu":true},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":true,"shouldBeStretchedByDefault":true,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"default":false},"14f79354-c828-13e0-1246-058b79e70c1a":{"widgetUrl":"https:\/\/progallery.wix.com\/cart.html","widgetId":"14f79354-c828-13e0-1246-058b79e70c1a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/cart.html","published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"tpaWidgetId":"cart","default":false},"1491fc25-fcd2-9c08-c74f-67b98b69ac4a":{"widgetUrl":"https:\/\/progallery.wix.com\/multishare.html","widgetId":"1491fc25-fcd2-9c08-c74f-67b98b69ac4a","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/multishare.html","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":false,"shouldBeStretchedByDefaultMobile":true,"componentFields":{},"tpaWidgetId":"multishare_widget","default":false},"144f04b9-aab4-fde7-179b-780c11da4f46":{"widgetUrl":"https:\/\/progallery.wix.com\/fullscreen","widgetId":"144f04b9-aab4-fde7-179b-780c11da4f46","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/fullscreen","appPage":{"id":"fullscreen_page","name":"Fullscreen Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":1,"indexable":true,"fullPage":true,"landingPageInMobile":false,"hideFromMenu":true},"published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":true,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true},"default":false},"142bb34d-3439-576a-7118-683e690a1e0d":{"widgetUrl":"https:\/\/progallery.wix.com\/gallery.html","widgetId":"142bb34d-3439-576a-7118-683e690a1e0d","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/gallery.html","published":true,"mobilePublished":true,"seoEnabled":true,"preFetch":false,"shouldBeStretchedByDefault":true,"shouldBeStretchedByDefaultMobile":false,"componentFields":{"useSsrSeo":true,"mobileSettingsEnabled":true,"componentUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-santa-wrapper\/1.371.0\/viewer.bundle.min.js"},"tpaWidgetId":"pro-gallery","default":true},"14f793c4-68e4-1d4f-3a24-089172dccb28":{"widgetUrl":"https:\/\/progallery.wix.com\/thankyou","widgetId":"14f793c4-68e4-1d4f-3a24-089172dccb28","refreshOnWidthChange":true,"mobileUrl":"https:\/\/progallery.wix.com\/thankyou","appPage":{"id":"thank_you_page","name":"Thank you Page","defaultPage":"","hidden":true,"multiInstanceEnabled":false,"order":3,"indexable":true,"fullPage":false,"landingPageInMobile":false,"hideFromMenu":true},"published":true,"mobilePublished":true,"seoEnabled":false,"preFetch":false,"shouldBeStretchedByDefault":true,"shouldBeStretchedByDefaultMobile":false,"componentFields":{},"default":false}},"appRequirements":{"requireSiteMembers":false},"isWixTPA":true,"installedAtDashboard":false,"permissions":{"revoked":false},"appFields":{"platform":{"baseUrls":{"santaWrapperBaseUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-santa-wrapper\/1.371.0\/"},"viewerScriptUrl":"https:\/\/static.parastorage.com\/services\/pro-gallery-santa-wrapper\/1.371.0\/viewerScript.bundle.min.js"}}},"11":{"type":"sitemembers","applicationId":11,"collectionType":"Open","collectionFormFace":"Register","collectionExposure":"Public","smcollectionId":"37f1c7c2-736c-482f-93f9-be0641b4b928"}},"premiumFeatures":[],"geo":"LKA","languageCode":"en","locale":"si-lk","previewMode":false,"userId":"fe4253a4-040f-429f-87e8-f2839cd1af42","siteMetaData":{"preloader":{"uri":"","enabled":false},"adaptiveMobileOn":true,"quickActions":{"socialLinks":[],"colorScheme":"dark","configuration":{"quickActionsMenuEnabled":false,"navigationMenuEnabled":true,"phoneEnabled":false,"emailEnabled":false,"addressEnabled":false,"socialLinksEnabled":false}},"contactInfo":{"companyName":"","phone":"","fax":"","email":"","address":""},"renderHints":{"containsTPA":true,"isMeshReady":true,"containsAppPart":false,"containsAppPart2":false}},"runningExperiments":{"sv_includeRavenInPreview":"new","renderAboveTheFold":"new","useEarlyLinkCheck":"new","sv_ssrTpaAboveTheFold":"new","helveticaCssInRenderer":"new","sv_ssrLoadProGallery":"new","sv_loginSocialBarSelect":"new","sv_blogStudioExperiment":"old","sv_removeTestNode":"new","preloadBoltScript":"new","sv_reportIframeStartLoadingInWarmup":"new","sv_ampLinkTag":"new","bv_layout_props":"new","sv_newTPANativeDataFlow":"new","sv_contactFormUseFormBuilderSubmit":"new","sv_wixSiteUrlFallback":"new","sv_ssrNoPagesData":"new","sv_twitterMetaTags":"new","sv_dontDeleteSvSessionCookieOnLogout":"new","sv_wixInternalAuthDialogsNew":"new","sv_addSiteRevisionToMembersCalls":"new","earlyLoadJSEx":"new","preconnectTPA":"new","newLoginTheme":"new","sv_fontsByAgent":"new","sv_fixedMobileHeader":"new","sv_ssrLoadArtStore":"new","preconnectApps":"new","sv_tpaInnerRouteNavigation":"new","sv_blogSocialCounters":"new","sv_meshReadyFallback":"new","sv_meshLayout":"new","sv_loadUserGeneratedAppsAfterBootstrap":"new","sv_ssr_image_src":"new","ssrFontShortcut":"new","sv_ssrLoadBookings":"new","sv_tpaStateChangedEvent":"new","sv_controllerScripts":"new","wixCodeNoIframe":"new","useRegExpForFontsParse":"new","sv_orphanSlideDataFixer":"new","sv_moveRouterDataToRGI":"new","sv_tpaInnerRouteWorker":"new","sv_nativeComponents":"new","bv_test_shtaweem":"new","useFontFaceSet":"new","sv_hideCompInSafari":"new","sv_postmessage_security":"new","sv_enableBackgroundVideoOnTablet":"new","sv_tpaAddChatApp":"new","sv_restoreAutosaveWhenMobileFails":"new","sv_ssrLoadRestaurants":"new","sv_ssrLoadGetSubscrbers":"new","ssrCompPrefetch":"new","displayWixAdsNewVersion":"new","sv_useBackendGoogleOAuthFlow":"new","sv_bookingsFES":"old","bv_nativeComponents":"new","sv_videobox_mobile":"new","oneAppWixAds":"false","sv_image_name_url":"new","sv_contactFormSubmitPromoteAnalytics":"new","earlyLoadJS":"new","xsrfHeaderOnPostRequests":"new","preloadBoltScriptExtra":"new","sv_loadGhostStructure":"new","sv_includeBlankUrl":"new","fontCssInRenderer":"new","sv_contactFormAscendEmail":"new","sv_ssrCache":"new"},"urlFormatModel":{"format":"slash","forbiddenPageUriSEOs":["app","apps","_api","robots.txt","sitemap.xml","feed.xml","sites"],"pageIdToResolvedUriSEO":{}},"passwordProtectedPages":[],"useSandboxInHTMLComp":true,"siteMediaToken":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhcHA6MzQ2NjQ5MDcwMDI5NzIwNiIsInN1YiI6InVzZXI6ZmU0MjUzYTQtMDQwZi00MjlmLTg3ZTgtZjI4MzljZDFhZjQyIiwiYXVkIjoidXJuOnNlcnZpY2U6ZmlsZS51cGxvYWQiLCJleHAiOjE1NTk4MDQxNjAsImlhdCI6MTU1OTE5OTM2MCwianRpIjoieWt2ZVVpbzVLcVcyaGlSaXo2aWdNZyJ9.0oN2gOLqe9TxDOYEgyazKXTVahWojS9hPQCVXKjEkAE","mediaAuthToken":"eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJhcHA6MzQ2NjQ5MDcwMDI5NzIwNiIsInN1YiI6InNpdGU6MjIxZDQ5NzItMmRmYi00OTczLWJjZmYtNzU3OTI4MzgxOTRkIiwiYXVkIjoidXJuOnNlcnZpY2U6ZmlsZS51cGxvYWQiLCJleHAiOjE1NTkyODU3NjAsImlhdCI6MTU1OTE5OTM2MCwianRpIjoiTFRJbTZwejBSVl9mTEM4RmtFVGdFZyIsImFkZGVkQnkiOiJhbm9ueW1vdXM6NDExY2JmZTgtYTA2Zi00ZTgyLTk0ZjUtYmJlNDQ0ZmUzOTFkIn0.a20QjLXkoKN_SWu-cP2bJik0pGgChShvFQouc5sy6Ok","pagesPlatformApplications":{},"sitePropertiesInfo":{"siteDisplayName":"Aboutme","locale":"si-lk","currency":"LKR","timeZone":"Asia\/Colombo"},"seo":false,"pageList":{"pages":[{"pageId":"x508m","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"fe4253_a2dfafca482078d6c9754339928b4c21_1.json"},{"pageId":"c1d94","title":"CONTACT","pageUriSEO":"contact","pageJsonFileName":"fe4253_6107e76de356fb801be5782d8bddc5c1_11.json"},{"pageId":"mainPage","title":"HOME","pageUriSEO":"home","pageJsonFileName":"fe4253_8a8bbbea906d8620adb3cc946e738d25_13.json"},{"pageId":"cm8a","title":"PROJECTS","pageUriSEO":"projects","pageJsonFileName":"fe4253_4f341d2e581f7aa82bc594bde4a96668_16.json"},{"pageId":"c46c","title":"RESUME","pageUriSEO":"resume","pageJsonFileName":"fe4253_e8281dcb94e36c0eeb39fc804c887314_18.json"}],"mainPageId":"mainPage","masterPageJsonFileName":"fe4253_3cc61ff0bf09bb1f50c4f7206309bc60_17.json","topology":[{"baseUrl":"https:\/\/static.wixstatic.com\/","parts":"sites\/{filename}.z?v=3"},{"baseUrl":"https:\/\/staticorigin.wixstatic.com\/","parts":"sites\/{filename}.z?v=3"},{"baseUrl":"https:\/\/fallback.wix.com\/","parts":"wix-html-editor-pages-webapp\/page\/{filename}"}],"fixedPagePath":{"baseUrl":"siteassets.parastorage.com\/pages","parts":"\/fixedData?ck={ck}&experiments={experiments}&isHttps={isHttps}&isUrlMigrated={isUrlMigrated}&metaSiteId={metaSiteId}&pageId={pageId}&quickActionsMenuEnabled={quickActionsMenuEnabled}&siteId=43a9be95-f3b1-4b3a-a03f-71a8fd3921b6v=3&version={version}"}}};
var publicModel = {"domain":"wixsite.com","externalBaseUrl":"https:\/\/gohulan.wixsite.com\/aboutme","unicodeExternalBaseUrl":"https:\/\/gohulan.wixsite.com\/aboutme","pageList":{"pages":[{"pageId":"x508m","title":"Fullscreen Page","pageUriSEO":"fullscreen-page","pageJsonFileName":"fe4253_a2dfafca482078d6c9754339928b4c21_1.json"},{"pageId":"c1d94","title":"CONTACT","pageUriSEO":"contact","pageJsonFileName":"fe4253_6107e76de356fb801be5782d8bddc5c1_11.json"},{"pageId":"mainPage","title":"HOME","pageUriSEO":"home","pageJsonFileName":"fe4253_8a8bbbea906d8620adb3cc946e738d25_13.json"},{"pageId":"cm8a","title":"PROJECTS","pageUriSEO":"projects","pageJsonFileName":"fe4253_4f341d2e581f7aa82bc594bde4a96668_16.json"},{"pageId":"c46c","title":"RESUME","pageUriSEO":"resume","pageJsonFileName":"fe4253_e8281dcb94e36c0eeb39fc804c887314_18.json"}],"mainPageId":"mainPage","masterPageJsonFileName":"fe4253_3cc61ff0bf09bb1f50c4f7206309bc60_17.json","topology":[{"baseUrl":"https:\/\/static.wixstatic.com\/","parts":"sites\/{filename}.z?v=3"},{"baseUrl":"https:\/\/staticorigin.wixstatic.com\/","parts":"sites\/{filename}.z?v=3"},{"baseUrl":"https:\/\/fallback.wix.com\/","parts":"wix-html-editor-pages-webapp\/page\/{filename}"}],"fixedPagePath":{"baseUrl":"siteassets.parastorage.com\/pages","parts":"\/fixedData?ck={ck}&experiments={experiments}&isHttps={isHttps}&isUrlMigrated={isUrlMigrated}&metaSiteId={metaSiteId}&pageId={pageId}&quickActionsMenuEnabled={quickActionsMenuEnabled}&siteId=43a9be95-f3b1-4b3a-a03f-71a8fd3921b6v=3&version={version}"}},"timeSincePublish":5520,"favicon":"","deviceInfo":{"deviceType":"Desktop","browserType":"Chrome","browserVersion":74},"siteRevision":18,"sessionInfo":{"hs":-1366288323,"svSession":"6993ef4bacd01cced21767cfd40035d56a21d772d404d81daa6476a4d2d656ac4709bc65a50722d433da7a50bacc53cc1e60994d53964e647acf431e4f798bcd6fe20d940f2f5dda5de6b1c8f214d3135d7c0eb206108a62b90c2f1f8139cf5d","ctToken":"WnAyWHBRdGJ1YWxlNTB1NFNvZGNzRTJzQVV6ZEZnUERHVDN2MWVIODRqa3x7InVzZXJBZ2VudCI6Ik1vemlsbGEvNS4wIChXaW5kb3dzIE5UIDEwLjA7IFdpbjY0OyB4NjQpIEFwcGxlV2ViS2l0LzUzNy4zNiAoS0hUTUwsIGxpa2UgR2Vja28pIENocm9tZS83NC4wLjM3MjkuMTY5IFNhZmFyaS81MzcuMzYiLCJ2YWxpZFRocm91Z2giOjE1NTk4MDQxNjAzOTV9","isAnonymous":false,"visitorId":"411cbfe8-a06f-4e82-94f5-bbe444fe391d"},"metaSiteFlags":[],"siteMembersProtectedPages":[],"indexable":true,"hasBlogAmp":false,"renderTime":1559199360476,"siteDisplayName":"Aboutme","siteAssets":{"cacheVersions":{"dataFixer":1}},"siteMeshReady":true,"layoutMechanism":"MESH","requestId":"1559199360.3614698372294115330"};
var googleAnalytics = "";
var ipAnonymization = false;
var googleRemarketing = "";
var googleTagManager = "";
var facebookRemarketing = "";
var yandexMetrika = "";
</script>
<script>
// BEAT MESSAGE
var wixBiSession = {
initialTimestamp: Date.now()
, requestId: (function(m) { return m ? m[1] : ''})(document.cookie.match(/requestId=([^;]*)/))
, viewerSessionId: 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,function(c){var r=Math.random()*16|0,v=c=='x'?r:(r&0x3|0x8);return v.toString(16);})
, initialRequestTimestamp: (function() {return performance.timeOrigin ? performance.timeOrigin : Date.now() - performance.now();})()
, visitorId: publicModel.sessionInfo.visitorId
, is_rollout: 0
, is_platform_loaded: 1
, suppressbi: true
, dc: '208'
, renderType: 'bolt'
, wixBoltExclusionReason: ''
, wixBoltExclusionReasonMoreInfo: ''
, sendBeacon: function (url) {
if (wixBiSession.suppressbi) {
var sent = false;
try {
sent = navigator.sendBeacon(url);
} catch (e) {}
if (!sent) {
(new Image()).src = url;
}
}
}
, sendBeat: (function () {
var caching, match = document.cookie.match(/ssr-caching="cache.desc=(\w+).(?:varnish=(\w+))?/);
if (!match) {
caching = 'none';
} else if (!match[2]) {
caching = match[1] + ',none';
} else {
caching = match.slice(1).join();
}
var isCached = caching.indexOf("hit") === 0;
var beatUrl = 'https://frog.wix.com/bt?src=29&evid=3'
+ '&v=1.2616.0'
+ '&msid=221d4972-2dfb-4973-bcff-75792838194d'
+ '&isp=0'
+ '&st=2'
+ '&dc=208'
+ '&iss=1'
+ '&url=' + encodeURIComponent(location.href.replace(/^http(s)?:\/\/(www\.)?/, ''))
+ '&is_cached=' + isCached
+ '&caching=' + caching;
var referrer = document.referrer;
if (referrer) {
beatUrl += '&ref=' + encodeURIComponent(referrer);
}
match = document.cookie.match(/_wixCIDX=([^;]*)/)
if (match) {
beatUrl += '&client_id=' + match[1];
}
return function(et, name, extra, isPageEvent) {
var tts = '';
if (performance.now) {
tts = '&tts=' + Math.round(performance.now());
}
if (name && performance.mark) {
performance.mark(name + ' (beat ' + et + ')');
}
var ts = et === 1 ? 0 : Date.now() - wixBiSession.initialTimestamp;
extra = extra || ''
if (extra.indexOf('pn=') === -1) {
extra = '&pn=1' + extra
}
if (isPageEvent) {
beatUrl = beatUrl.replace('evid=3', 'evid=5');
}
wixBiSession.sendBeacon(beatUrl
+ '&et=' + et
+ (name ? '&event_name=' + encodeURIComponent(name) : '')
+ '&ts=' + ts + tts
+ '&vsi=' + wixBiSession.viewerSessionId
+ '&rid=' + wixBiSession.requestId
+ '&viewer_name=' + encodeURIComponent(wixBiSession.renderType)
+ '&is_rollout=' + wixBiSession.is_rollout
+ (wixBiSession.visitorId ? '&vid=' + wixBiSession.visitorId : '')
+ (wixBiSession.siteMemberId ? '&mid=' + wixBiSession.siteMemberId : '')
+ extra
);
}
})()
};
wixBiSession.sendBeat(1, 'Init');
// BEAT MESSAGE END
</script>
<script type="text/javascript">
(function(x,e,o,s,n){var a=window.fedops||{};a.apps=a.apps||{};a.apps[x]={startLoadTime:e&&e.now&&e.now()};try{a.sessionId=o.getItem("fedops.logger.sessionId")}catch(x){}a.sessionId=a.sessionId||wixBiSession.viewerSessionId;window.fedops=a;var d="//frog.wix.com/bolt-performance?appName="+x+"&src=72&evid=21"+'&dc=208'+"&is_rollout="+wixBiSession.is_rollout+ '&st=2'+ '&isp=0'+"&session_id="+a.sessionId+"&_="+s();wixBiSession.sendBeacon(d)})('bolt-viewer',window.performance,window.localStorage,Math.random,window.navigator);
</script>
<meta name="fragment" content="!">
<!-- DATA -->
<script type="text/javascript">
var adData = {};
var mobileAdData = {};
var usersDomain = "https://users.wix.com/wix-users";
</script>
<script type="text/javascript">
var santaBase = 'https://static.parastorage.com/services/santa/1.7224.8';
var boltBase = 'https://static.parastorage.com/services/wix-bolt/1.2616.0';
</script>
<script>
var requirejs = {
onNodeCreated: function(node) {
var src = node.getAttribute('src');
var shouldIgnore = ['googletagmanager.com', 'google-analytics.com', 'googleadservices.com', 'doubleclick.net', 'connect.facebook.net'].some(function (domain) {
return src.indexOf(domain) !== -1;
});
if (!shouldIgnore) {
node.setAttribute('crossorigin', 'anonymous')
}
}
}
</script>
<script>
window.messageBuffer = [];
window.messageHandler = function(event) {messageBuffer.push(event)};
window.addEventListener('message', window.messageHandler, false);
</script>
<script id="sentry">(function(c,t,u,n,p,l,y,z,v){function e(b){if(!w){w=!0;var d=t.getElementsByTagName(u)[0],a=t.createElement(u);a.src=z;a.crossorigin="anonymous";a.addEventListener("load",function(){try{c[n]=q;c[p]=r;var a=c[l],d=a.init;a.init=function(a){for(var b in a)Object.prototype.hasOwnProperty.call(a,b)&&(v[b]=a[b]);d(v)};B(b,a)}catch(A){console.error(A)}});d.parentNode.insertBefore(a,d)}}function B(b,d){try{for(var a=0;a<b.length;a++)if("function"===typeof b[a])b[a]();var f=m.data,g=!1,h=!1;for(a=0;a<f.length;a++)if(f[a].f){h=
!0;var e=f[a];!1===g&&"init"!==e.f&&d.init();g=!0;d[e.f].apply(d,e.a)}!1===h&&d.init();var k=c[n],l=c[p];for(a=0;a<f.length;a++)f[a].e&&k?k.apply(c,f[a].e):f[a].p&&l&&l.apply(c,[f[a].p])}catch(C){console.error(C)}}for(var g=!0,x=!1,k=0;k<document.scripts.length;k++)if(-1<document.scripts[k].src.indexOf(y)){g="no"!==document.scripts[k].getAttribute("data-lazy");break}var w=!1,h=[],m=function(b){(b.e||b.p||b.f&&-1<b.f.indexOf("capture")||b.f&&-1<b.f.indexOf("showReportDialog"))&&g&&e(h);m.data.push(b)};
m.data=[];c[l]={onLoad:function(b){h.push(b);g&&!x||e(h)},forceLoad:function(){x=!0;g&&setTimeout(function(){e(h)})}};"init addBreadcrumb captureMessage captureException captureEvent configureScope withScope showReportDialog".split(" ").forEach(function(b){c[l][b]=function(){m({f:b,a:arguments})}});var q=c[n];c[n]=function(b,d,a,f,e){m({e:[].slice.call(arguments)});q&&q.apply(c,arguments)};var r=c[p];c[p]=function(b){m({p:b.reason});r&&r.apply(c,arguments)};g||setTimeout(function(){e(h)})})(window,document,
"script","onerror","onunhandledrejection","Sentry","8b4e078a51d04e0e9efdf470027f0ec1","https://browser.sentry-cdn.com/4.6.2/bundle.min.js",{"dsn":"https://8b4e078a51d04e0e9efdf470027f0ec1@sentry.wixpress.com/3"});</script>
<script async="" data-main="https://static.parastorage.com/services/wix-bolt/1.2616.0/bolt-main/app/main-r.min.js" src="./Aboutme_files/requirejs.min.js.download"></script>
<script>
function polyfillsAreLoaded() {
var script = document.createElement('script');
script.src = 'https://static.parastorage.com/services/wix-bolt/1.2616.0/bolt-main/app/main-r.min.js';
script.setAttribute('crossorigin', 'anonymous')
document.head.appendChild(script);
}
</script>
<link id="viewerMainStyle" rel="stylesheet" type="text/css" href="./Aboutme_files/viewer.min.css">
<link rel="stylesheet" type="text/css" href="./Aboutme_files/languages.css">
<link rel="stylesheet" type="text/css" href="./Aboutme_files/css">
<title>Aboutme</title>
<link rel="canonical" href="Aboutme.html">
<meta property="og:title" content="Aboutme">
<meta property="og:url" content="Aboutme.html">
<meta property="og:site_name" content="Aboutme">
<meta property="og:type" content="website">
<script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="main-r.min" src="./Aboutme_files/main-r.min.js.download" crossorigin="anonymous"></script><link rel="preload" href="./Aboutme_files/bolt-main-r.init.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/bolt-main-r.animations.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/bolt-main-prod.js.download" as="script" crossorigin="anonymous"><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="lodash" src="./Aboutme_files/lodash.min.js.download" crossorigin="anonymous"></script><script charset="utf-8" src="./Aboutme_files/bolt-main-r.init.js.download" crossorigin="anonymous"></script><script charset="utf-8" src="./Aboutme_files/bolt-main-r.animations.js.download" crossorigin="anonymous"></script><link rel="preload" href="./Aboutme_files/santa-components.prod.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/warmupUtils.min.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/skins.min.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/layout.min.js.download" as="script" crossorigin="anonymous"><link rel="preload" href="./Aboutme_files/bolt-components.js.download" as="script" crossorigin="anonymous"><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="zepto" src="./Aboutme_files/zepto.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="wix-ui-santa/dataRefs.bundle" src="./Aboutme_files/dataRefs.bundle.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="warmupUtilsLib" src="./Aboutme_files/warmupUtils.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="image-client-api" src="./Aboutme_files/imageClientApi.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="warmupUtils" src="./Aboutme_files/warmupUtils.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="santa-components-layout" src="./Aboutme_files/santa-components-layout.prod.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="layout" src="./Aboutme_files/layout.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="create-react-class" src="./Aboutme_files/bundle.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="reactDOM" src="./Aboutme_files/react-dom.production.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="react" src="./Aboutme_files/react.production.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="skinUtils" src="./Aboutme_files/skin-utils.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="thirdPartyAnalytics" src="./Aboutme_files/thirdPartyAnalytics.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="skins" src="./Aboutme_files/skins.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="mobileLayoutUtils" src="./Aboutme_files/mobileLayoutUtils.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="data-capsule" src="./Aboutme_files/frame-listener.bundle.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="santa-core-utils" src="./Aboutme_files/coreUtils.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="coreUtils" src="./Aboutme_files/coreUtils.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="wixFreemiumBanner" src="./Aboutme_files/wixFreemiumBanner.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="tpaComponents" src="./Aboutme_files/tpaComponents.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="textCommon" src="./Aboutme_files/textCommon.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="skinExports" src="./Aboutme_files/skinExports.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="santa-components" src="./Aboutme_files/santa-components.prod.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="pmrpc" src="./Aboutme_files/pm-rpc.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="imageZoom" src="./Aboutme_files/imageZoom.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="galleriesCommon" src="./Aboutme_files/galleriesCommon.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="displayer" src="./Aboutme_files/displayer.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="backgroundCommon" src="./Aboutme_files/backgroundCommon.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="componentsCore" src="./Aboutme_files/componentsCore.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bolt-components" src="./Aboutme_files/bolt-components.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="components" src="./Aboutme_files/components.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="wix-dom-sanitizer" src="./Aboutme_files/wix-dom-sanitizer.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="bolt-main" src="./Aboutme_files/bolt-main-prod.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="TweenMax" src="./Aboutme_files/TweenMax.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="santa-animations" src="./Aboutme_files/santa-animations.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="ScrollToPlugin" src="./Aboutme_files/ScrollToPlugin.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="wix-ui-santa/viewerComponentService.bundle" src="./Aboutme_files/viewerComponentService.bundle.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="xss" src="./Aboutme_files/xss.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="color" src="./Aboutme_files/color.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="linkBar" src="./Aboutme_files/linkBar.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="svgShape" src="./Aboutme_files/svgShape.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="promote-analytics-adapter" src="./Aboutme_files/analytics-event-adapter.bundle.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="https://static.parastorage.com/services/pro-gallery-santa-wrapper/1.371.0/viewer.bundle.min.js" src="./Aboutme_files/viewer.bundle.min.js.download" crossorigin="anonymous"></script><link rel="stylesheet" type="text/css" href="./Aboutme_files/2.chunk.min.css"><script charset="utf-8" src="./Aboutme_files/2.chunk.min.js.download"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="contactForm" src="./Aboutme_files/contactForm.min.js.download" crossorigin="anonymous"></script><script type="text/javascript" charset="utf-8" async="" data-requirecontext="_" data-requiremodule="formCommon" src="./Aboutme_files/formCommon.min.js.download" crossorigin="anonymous"></script></head>
<body class="" data-js-loaded="true" style="">
<script type="text/javascript">
var htmlClassList = document.documentElement.classList;
var clientSideRender = false;
</script>
<div id="SITE_CONTAINER"><style type="text/css" data-styleid="uploadedFonts"></style><div><style type="text/css" data-styleid="theme_fonts">.font_0 {font: normal normal bold 43px/1.4em 'noticia text',serif ;color:#4D4D4D;}
.font_1 {font: normal normal bold 14px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_2 {font: normal normal normal 80px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_3 {font: normal normal normal 80px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_4 {font: normal normal normal 46px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_5 {font: normal normal normal 19px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_6 {font: normal normal normal 17px/1.2em 'noticia text',serif ;color:#4D4D4D;}
.font_7 {font: normal normal normal 16px/1.2em 'open sans',sans-serif ;color:#4D4D4D;}
.font_8 {font: normal normal normal 13px/1.4em 'open sans',sans-serif ;color:#4D4D4D;}
.font_9 {font: normal normal normal 12px/1.4em 'open sans',sans-serif ;color:#4D4D4D;}
.font_10 {font: normal normal normal 11px/1.2em 'Open Sans',sans-serif ;color:#4D4D4D;}
</style><style type="text/css" data-styleid="theme_colors">.color_0 {color: #12B7B3;}
.backcolor_0 {background-color: #12B7B3;}
.color_1 {color: #FFFFFF;}
.backcolor_1 {background-color: #FFFFFF;}
.color_2 {color: #000000;}
.backcolor_2 {background-color: #000000;}
.color_3 {color: #0088CB;}
.backcolor_3 {background-color: #0088CB;}
.color_4 {color: #FFCB05;}
.backcolor_4 {background-color: #FFCB05;}
.color_5 {color: #ED1C24;}
.backcolor_5 {background-color: #ED1C24;}
.color_6 {color: #6C3C17;}
.backcolor_6 {background-color: #6C3C17;}
.color_7 {color: #6C3C17;}
.backcolor_7 {background-color: #6C3C17;}
.color_8 {color: #FFFFFF;}
.backcolor_8 {background-color: #FFFFFF;}
.color_9 {color: #85CCCC;}
.backcolor_9 {background-color: #85CCCC;}
.color_10 {color: #6C3C17;}
.backcolor_10 {background-color: #6C3C17;}
.color_11 {color: #FFFFFF;}
.backcolor_11 {background-color: #FFFFFF;}
.color_12 {color: #EAE5E5;}
.backcolor_12 {background-color: #EAE5E5;}
.color_13 {color: #8B8B8B;}
.backcolor_13 {background-color: #8B8B8B;}
.color_14 {color: #4D4D4D;}
.backcolor_14 {background-color: #4D4D4D;}
.color_15 {color: #000000;}
.backcolor_15 {background-color: #000000;}
.color_16 {color: #F7B8C3;}
.backcolor_16 {background-color: #F7B8C3;}
.color_17 {color: #F093A4;}
.backcolor_17 {background-color: #F093A4;}
.color_18 {color: #E83556;}
.backcolor_18 {background-color: #E83556;}
.color_19 {color: #9B2339;}
.backcolor_19 {background-color: #9B2339;}
.color_20 {color: #4D121D;}
.backcolor_20 {background-color: #4D121D;}
.color_21 {color: #C5EFF1;}
.backcolor_21 {background-color: #C5EFF1;}
.color_22 {color: #A5E0E2;}
.backcolor_22 {background-color: #A5E0E2;}
.color_23 {color: #61D0D4;}
.backcolor_23 {background-color: #61D0D4;}
.color_24 {color: #418B8D;}
.backcolor_24 {background-color: #418B8D;}
.color_25 {color: #204547;}
.backcolor_25 {background-color: #204547;}
.color_26 {color: #F0ECAE;}
.backcolor_26 {background-color: #F0ECAE;}
.color_27 {color: #E0DC84;}
.backcolor_27 {background-color: #E0DC84;}
.color_28 {color: #D1C926;}
.backcolor_28 {background-color: #D1C926;}
.color_29 {color: #8B8619;}
.backcolor_29 {background-color: #8B8619;}
.color_30 {color: #46430D;}
.backcolor_30 {background-color: #46430D;}
.color_31 {color: #F8ADCE;}
.backcolor_31 {background-color: #F8ADCE;}
.color_32 {color: #F184B3;}
.backcolor_32 {background-color: #F184B3;}
.color_33 {color: #EB1572;}
.backcolor_33 {background-color: #EB1572;}
.color_34 {color: #9C0E4C;}
.backcolor_34 {background-color: #9C0E4C;}
.color_35 {color: #4E0726;}
.backcolor_35 {background-color: #4E0726;}
</style></div><div data-aid="stylesContainer"><style type="text/css" data-styleid="style-jpqppwh2">.style-jpqppwh2wrapper {min-width:180px;max-width:980px;position:relative;width:100%;}
.style-jpqppwh2_hiddenField {display:none !important;}
.style-jpqppwh2_form-footer {display:grid;grid-template-columns:35% 5% 60%;grid-template-rows:auto 1fr;direction:ltr;}
.style-jpqppwh2 span {color:#F7B8C3;font:normal 14px 'Helvetica Neue', Helvetica, sans-serif;}
.style-jpqppwh2 span.style-jpqppwh2_success {color:#BADA55;}
.style-jpqppwh2 span.style-jpqppwh2_error {color:#8B0000;}
.style-jpqppwh2 button,.style-jpqppwh2 input,.style-jpqppwh2 textarea {border-radius:0; padding:5px;}
.style-jpqppwh2 input,.style-jpqppwh2 textarea {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; background-color:rgba(232, 53, 86, 1);-webkit-appearance:none;-moz-appearance:none;border:0px solid rgba(234, 229, 229, 1);color:#F7B8C3;margin:0 0 5px;width:100%;}
.style-jpqppwh2 input.style-jpqppwh2_error,.style-jpqppwh2 textarea.style-jpqppwh2_error {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; border:1px solid #8B0000;color:#8B0000;}
.style-jpqppwh2 input::-webkit-input-placeholder,.style-jpqppwh2 textarea::-webkit-input-placeholder {color:#EAE5E5;}
.style-jpqppwh2 input::-ms-input-placeholder,.style-jpqppwh2 textarea::-ms-input-placeholder {color:#EAE5E5;}
.style-jpqppwh2 input::placeholder,.style-jpqppwh2 textarea::placeholder {color:#EAE5E5;}
.style-jpqppwh2 button {background-color:rgba(97, 208, 212, 1);font:normal normal normal 16px/1.2em 'open sans',sans-serif ; border:0;color:#FFFFFF;cursor:pointer;margin:0;}
.style-jpqppwh2 textarea {min-height:130px;resize:none;}
.style-jpqppwh2[data-state~="mobile"] input {color:#F7B8C3;font-size:16px;height:45px;line-height:45px;margin:0 0 15px;padding:0 5px;}
.style-jpqppwh2[data-state~="mobile"] input::-webkit-input-placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="mobile"] input::-ms-input-placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="mobile"] input::placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="mobile"] textarea {color:#F7B8C3;font-size:16px;height:150px;margin:0 0 10px;}
.style-jpqppwh2[data-state~="mobile"]::-webkit-input-placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="mobile"]::-ms-input-placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="mobile"]::placeholder {color:#EAE5E5;font-size:16px;}
.style-jpqppwh2[data-state~="right"] {direction:rtl;text-align:right;}
.style-jpqppwh2[data-state~="right"] .style-jpqppwh2_form-footer {grid-template-columns:35% 5% 60%;direction:ltr;}
.style-jpqppwh2[data-state~="right"] span {grid-column:3;grid-row:1/span 2;justify-self:end;}
.style-jpqppwh2[data-state~="right"] button {grid-column:1;grid-row:1/span 1;justify-self:start;}
.style-jpqppwh2[data-state~="left"] {direction:ltr;text-align:left;}
.style-jpqppwh2[data-state~="left"] .style-jpqppwh2_form-footer {grid-template-columns:60% 5% 35%;}
.style-jpqppwh2[data-state~="left"] span {grid-column:1;grid-row:1/span 2;justify-self:start;}
.style-jpqppwh2[data-state~="left"] button {grid-column:3;grid-row:1/span 1;justify-self:end;}</style><style type="text/css" data-styleid="ddm1">.ddm1itemsContainer {width:calc(100% - 0px);height:calc(100% - 0px);white-space:nowrap;display:inline-block;overflow:visible;position:relative;}
.ddm1moreContainer {overflow:visible;display:inherit;white-space:nowrap;width:auto;background-color:rgba(255, 255, 255, 1);border-radius:0; }
.ddm1dropWrapper {z-index:99999;display:block;opacity:1;visibility:hidden;position:absolute;margin-top:7px;}
.ddm1dropWrapper[data-dropMode="dropUp"] {margin-top:0;margin-bottom:7px;}
.ddm1repeaterButton {height:100%;position:relative;box-sizing:border-box;display:inline-block;cursor:pointer;font:normal normal bold 14px/1.2em 'noticia text',serif ;}
.ddm1repeaterButton[data-state~="header"] a,.ddm1repeaterButton[data-state~="header"] div {cursor:default !important;}
.ddm1repeaterButtonlinkElement {display:inline-block;height:100%;width:100%;}
.ddm1repeaterButton_gapper {padding:0 5px;}
.ddm1repeaterButtonlabel {display:inline-block;padding:0 10px;color:#8B8B8B;transition:color 0.4s ease 0s;}
.ddm1repeaterButton[data-state~="drop"] {width:100%;display:block;}
.ddm1repeaterButton[data-state~="drop"] .ddm1repeaterButtonlabel {padding:0 .5em;}
.ddm1repeaterButton[data-state~="over"] .ddm1repeaterButtonlabel,.ddm1repeaterButton[data-preview~="hover"] .ddm1repeaterButtonlabel {color:#61D0D4;transition:color 0.4s ease 0s;}
.ddm1repeaterButton[data-state~="selected"] .ddm1repeaterButtonlabel,.ddm1repeaterButton[data-preview~="active"] .ddm1repeaterButtonlabel {color:#61D0D4;transition:color 0.4s ease 0s;}</style><style type="text/css" data-styleid="hl1">.hl1 {box-sizing:border-box;border-top:1px solid rgba(139, 139, 139, 1);height:0;}</style><style type="text/css" data-styleid="lb1">.lb1itemsContainer {position:absolute;width:100%;height:100%;white-space:nowrap;}
.lb1itemsContainer > li:last-child {margin:0 !important;}
.lb1[data-state~="mobileView"] .lb1itemsContainer {position:absolute;width:100%;height:100%;white-space:normal;}
.lb1 a {display:block;height:100%;}
.lb1imageItemlink {cursor:pointer;}
.lb1imageItemimageimage {position:static;box-shadow:#000 0 0 0;user-select:none;}</style><style type="text/css" data-styleid="pc1">.pc1screenWidthBackground {position:absolute;top:0;right:0;bottom:0;left:0;}
.pc1[data-state~="fixedPosition"] {position:fixed !important;left:auto !important;z-index:50;}
.pc1[data-state~="fixedPosition"].pc1_footer {top:auto;bottom:0;}
.pc1bg {position:absolute;top:0;right:0;bottom:0;left:0;}
.pc1inlineContent {position:absolute;top:0;right:0;bottom:0;left:0;}
.pc1centeredContent {position:absolute;top:0;right:0;bottom:0;left:0;}</style><style type="text/css" data-styleid="siteBackground">.siteBackground {width:100%;position:absolute;}
.siteBackgroundbgBeforeTransition {position:absolute;top:0;}
.siteBackgroundbgAfterTransition {position:absolute;top:0;}</style><style type="text/css" data-styleid="fc1">.fc1screenWidthBackground {position:absolute;top:0;right:0;bottom:0;left:0;}
.fc1[data-state~="fixedPosition"] {position:fixed !important;left:auto !important;z-index:50;}
.fc1[data-state~="fixedPosition"].fc1_footer {top:auto;bottom:0;}
.fc1bg {position:absolute;top:0;right:0;bottom:0;left:0;}
.fc1inlineContent {position:absolute;top:0;right:0;bottom:0;left:0;}
.fc1centeredContent {position:absolute;top:0;right:0;bottom:0;left:0;}</style><style type="text/css" data-styleid="style-jpqpkzu9">.style-jpqpkzu9 button.style-jpqpkzu9link {width:100%;}
.style-jpqpkzu9[data-state~="shouldUseFlex"] .style-jpqpkzu9link,.style-jpqpkzu9[data-state~="shouldUseFlex"] .style-jpqpkzu9labelwrapper {text-align:initial;display:flex;align-items:center;}
.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpkzu9link,.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpkzu9labelwrapper {justify-content:center;}
.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpkzu9link,.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpkzu9labelwrapper {justify-content:flex-start;}
.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpkzu9link,.style-jpqpkzu9[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpkzu9labelwrapper {justify-content:flex-end;}
.style-jpqpkzu9link {position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(232, 53, 86, 1);transition:border 0.4s ease 0s, background-color 0.4s ease 0s; border:solid rgba(232, 53, 86, 1) 0px;border-radius:50%;}
.style-jpqpkzu9label {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; transition:color 0.4s ease 0s; color:#FFFFFF;display:inline-block;margin:calc(-1 * 0px) 0px 0;position:relative;white-space:nowrap;}
.style-jpqpkzu9[data-disabled="false"] {cursor:pointer !important;}
.style-jpqpkzu9[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpkzu9link,.style-jpqpkzu9[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpkzu9link,.style-jpqpkzu9[data-disabled="false"][data-preview~="hover"] .style-jpqpkzu9link {background-color:rgba(155, 35, 57, 1);border:solid rgba(155, 35, 57, 1) -5px;transition:border 0.4s ease 0s, background-color 0.4s ease 0s;}
.style-jpqpkzu9[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpkzu9label,.style-jpqpkzu9[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpkzu9label,.style-jpqpkzu9[data-disabled="false"][data-preview~="hover"] .style-jpqpkzu9label {color:#F7B8C3;transition:color 0.4s ease 0s;}
.style-jpqpkzu9[data-disabled="true"] .style-jpqpkzu9link,.style-jpqpkzu9[data-preview~="disabled"] .style-jpqpkzu9link {background-color:rgba(204, 204, 204, 1);border-color:rgba(204, 204, 204, 1);}
.style-jpqpkzu9[data-disabled="true"] .style-jpqpkzu9label,.style-jpqpkzu9[data-preview~="disabled"] .style-jpqpkzu9label {color:#FFFFFF;}</style><style type="text/css" data-styleid="style-jpqpi8rj">.style-jpqpi8rj button.style-jpqpi8rjlink {width:100%;}
.style-jpqpi8rj[data-state~="shouldUseFlex"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-state~="shouldUseFlex"] .style-jpqpi8rjlabelwrapper {text-align:initial;display:flex;align-items:center;}
.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpi8rjlabelwrapper {justify-content:center;}
.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpi8rjlabelwrapper {justify-content:flex-start;}
.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpi8rjlabelwrapper {justify-content:flex-end;}
.style-jpqpi8rjlink {position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(97, 208, 212, 1);transition:border 0.4s ease 0s, background-color 0.4s ease 0s; border:solid rgba(97, 208, 212, 1) 0px;border-radius:50%;}
.style-jpqpi8rjlabel {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; transition:color 0.4s ease 0s; color:#FFFFFF;display:inline-block;margin:calc(-1 * 0px) 0px 0;position:relative;white-space:nowrap;}
.style-jpqpi8rj[data-disabled="false"] {cursor:pointer !important;}
.style-jpqpi8rj[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-disabled="false"][data-preview~="hover"] .style-jpqpi8rjlink {background-color:rgba(65, 139, 141, 1);border:solid rgba(65, 139, 141, 1) -5px;transition:border 0.4s ease 0s, background-color 0.4s ease 0s;}
.style-jpqpi8rj[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpi8rjlabel,.style-jpqpi8rj[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpi8rjlabel,.style-jpqpi8rj[data-disabled="false"][data-preview~="hover"] .style-jpqpi8rjlabel {color:#F7B8C3;transition:color 0.4s ease 0s;}
.style-jpqpi8rj[data-disabled="true"] .style-jpqpi8rjlink,.style-jpqpi8rj[data-preview~="disabled"] .style-jpqpi8rjlink {background-color:rgba(204, 204, 204, 1);border-color:rgba(204, 204, 204, 1);}
.style-jpqpi8rj[data-disabled="true"] .style-jpqpi8rjlabel,.style-jpqpi8rj[data-preview~="disabled"] .style-jpqpi8rjlabel {color:#FFFFFF;}</style><style type="text/css" data-styleid="style-jpqpigfl">.style-jpqpigfl button.style-jpqpigfllink {width:100%;}
.style-jpqpigfl[data-state~="shouldUseFlex"] .style-jpqpigfllink,.style-jpqpigfl[data-state~="shouldUseFlex"] .style-jpqpigfllabelwrapper {text-align:initial;display:flex;align-items:center;}
.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpigfllink,.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="center"] .style-jpqpigfllabelwrapper {justify-content:center;}
.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpigfllink,.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="left"] .style-jpqpigfllabelwrapper {justify-content:flex-start;}
.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpigfllink,.style-jpqpigfl[data-state~="shouldUseFlex"][data-state~="right"] .style-jpqpigfllabelwrapper {justify-content:flex-end;}
.style-jpqpigfllink {position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(209, 201, 38, 1);transition:border 0.4s ease 0s, background-color 0.4s ease 0s; border:solid rgba(209, 201, 38, 1) 1px;border-radius:50%;}
.style-jpqpigfllabel {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; transition:color 0.4s ease 0s; color:#FFFFFF;display:inline-block;margin:calc(-1 * 1px) 1px 0;position:relative;white-space:nowrap;}
.style-jpqpigfl[data-disabled="false"] {cursor:pointer !important;}
.style-jpqpigfl[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpigfllink,.style-jpqpigfl[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpigfllink,.style-jpqpigfl[data-disabled="false"][data-preview~="hover"] .style-jpqpigfllink {background-color:rgba(139, 134, 25, 1);border:solid rgba(139, 134, 25, 1) -4px;transition:border 0.4s ease 0s, background-color 0.4s ease 0s;}
.style-jpqpigfl[data-disabled="false"]:active[data-state~="mobile"] .style-jpqpigfllabel,.style-jpqpigfl[data-disabled="false"]:hover[data-state~="desktop"] .style-jpqpigfllabel,.style-jpqpigfl[data-disabled="false"][data-preview~="hover"] .style-jpqpigfllabel {color:#F7B8C3;transition:color 0.4s ease 0s;}
.style-jpqpigfl[data-disabled="true"] .style-jpqpigfllink,.style-jpqpigfl[data-preview~="disabled"] .style-jpqpigfllink {background-color:rgba(204, 204, 204, 1);border-color:rgba(204, 204, 204, 1);}
.style-jpqpigfl[data-disabled="true"] .style-jpqpigfllabel,.style-jpqpigfl[data-preview~="disabled"] .style-jpqpigfllabel {color:#FFFFFF;}</style><style type="text/css" data-styleid="style-jwa7o2fe">.style-jwa7o2fe_zoomedin {cursor:url(https://static.parastorage.com/services/skins/2.1229.80/images/wysiwyg/core/themes/base/cursor_zoom_out.png), url(https://static.parastorage.com/services/skins/2.1229.80/images/wysiwyg/core/themes/base/cursor_zoom_out.cur), auto;overflow:hidden;display:block;}
.style-jwa7o2fe_zoomedout {cursor:url(https://static.parastorage.com/services/skins/2.1229.80/images/wysiwyg/core/themes/base/cursor_zoom_in.png), url(https://static.parastorage.com/services/skins/2.1229.80/images/wysiwyg/core/themes/base/cursor_zoom_in.cur), auto;}
.style-jwa7o2felink {display:block; border-radius:50%;border:0px solid rgba(255, 255, 255, 1);background-color:rgba(255, 255, 255, 1);overflow:hidden;}
.style-jwa7o2feimg {border-radius:50%;overflow:hidden;}
.style-jwa7o2feimgimage {position:static;box-shadow:#000 0 0 0;user-select:none;}</style><style type="text/css" data-styleid="txtNew">.txtNew {word-wrap:break-word;text-align:start;}
.txtNew_override-left * {text-align:left !important;}
.txtNew_override-right * {text-align:right !important;}
.txtNew_override-center * {text-align:center !important;}
.txtNew_override-justify * {text-align:justify !important;}
.txtNew > * {pointer-events:auto;}
.txtNew li {font-style:inherit;font-weight:inherit;line-height:inherit;letter-spacing:normal;}
.txtNew ol,.txtNew ul {padding-left:1.3em;padding-right:0;margin-left:0.5em;margin-right:0;line-height:normal;letter-spacing:normal;}
.txtNew ul {list-style-type:disc;}
.txtNew ol {list-style-type:decimal;}
.txtNew ul ul,.txtNew ol ul {list-style-type:circle;}
.txtNew ul ul ul,.txtNew ol ul ul {list-style-type:square;}
.txtNew ul ol ul,.txtNew ol ol ul {list-style-type:square;}
.txtNew ul[dir="rtl"],.txtNew ol[dir="rtl"] {padding-left:0;padding-right:1.3em;margin-left:0;margin-right:0.5em;}
.txtNew ul[dir="rtl"] ul,.txtNew ul[dir="rtl"] ol,.txtNew ol[dir="rtl"] ul,.txtNew ol[dir="rtl"] ol {padding-left:0;padding-right:1.3em;margin-left:0;margin-right:0.5em;}
.txtNew p {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h1 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h2 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h3 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h4 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h5 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew h6 {margin:0;line-height:normal;letter-spacing:normal;}
.txtNew a {color:inherit;}</style><style type="text/css" data-styleid="style-jhj1bdnn">.style-jhj1bdnn {overflow:hidden;}
.style-jhj1bdnn iframe {position:absolute;width:100%;height:100%;overflow:hidden;}
.style-jhj1bdnnpreloaderOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1bdnnpreloaderOverlaycontent {width:100%;height:100%;}
.style-jhj1bdnnunavailableMessageOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1bdnnunavailableMessageOverlaycontent {width:100%;height:100%;background:rgba(255, 255, 255, 0.9);font-size:0;margin-top:5px;}
.style-jhj1bdnnunavailableMessageOverlaytextContainer {color:#373737;font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;font-size:14px;display:inline-block;vertical-align:middle;width:100%;margin-top:10px;text-align:center;}
.style-jhj1bdnnunavailableMessageOverlayreloadButton {display:inline-block;}
.style-jhj1bdnnunavailableMessageOverlay a {color:#0099FF;text-decoration:underline;cursor:pointer;}
.style-jhj1bdnnunavailableMessageOverlayiconContainer {display:none;}
.style-jhj1bdnnunavailableMessageOverlaydismissButton {display:none;}
.style-jhj1bdnnunavailableMessageOverlaytextTitle {font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;display:none;}
.style-jhj1bdnnunavailableMessageOverlay[data-state~="hideIframe"] .style-jhj1bdnnunavailableMessageOverlay_buttons {opacity:1;}
.style-jhj1bdnnunavailableMessageOverlay[data-state~="hideOverlay"] {display:none;}</style><style type="text/css" data-styleid="style-jhj1bubh">.style-jhj1bubh {overflow:hidden;}
.style-jhj1bubh iframe {position:absolute;width:100%;height:100%;overflow:hidden;}
.style-jhj1bubhpreloaderOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1bubhpreloaderOverlaycontent {width:100%;height:100%;}
.style-jhj1bubhunavailableMessageOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1bubhunavailableMessageOverlaycontent {width:100%;height:100%;background:rgba(255, 255, 255, 0.9);font-size:0;margin-top:5px;}
.style-jhj1bubhunavailableMessageOverlaytextContainer {color:#373737;font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;font-size:14px;display:inline-block;vertical-align:middle;width:100%;margin-top:10px;text-align:center;}
.style-jhj1bubhunavailableMessageOverlayreloadButton {display:inline-block;}
.style-jhj1bubhunavailableMessageOverlay a {color:#0099FF;text-decoration:underline;cursor:pointer;}
.style-jhj1bubhunavailableMessageOverlayiconContainer {display:none;}
.style-jhj1bubhunavailableMessageOverlaydismissButton {display:none;}
.style-jhj1bubhunavailableMessageOverlaytextTitle {font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;display:none;}
.style-jhj1bubhunavailableMessageOverlay[data-state~="hideIframe"] .style-jhj1bubhunavailableMessageOverlay_buttons {opacity:1;}
.style-jhj1bubhunavailableMessageOverlay[data-state~="hideOverlay"] {display:none;}</style><style type="text/css" data-styleid="style-jhj1b4v9">.style-jhj1b4v9 {overflow:hidden;}
.style-jhj1b4v9 iframe {position:absolute;width:100%;height:100%;overflow:hidden;}
.style-jhj1b4v9preloaderOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1b4v9preloaderOverlaycontent {width:100%;height:100%;}
.style-jhj1b4v9unavailableMessageOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.style-jhj1b4v9unavailableMessageOverlaycontent {width:100%;height:100%;background:rgba(255, 255, 255, 0.9);font-size:0;margin-top:5px;}
.style-jhj1b4v9unavailableMessageOverlaytextContainer {color:#373737;font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;font-size:14px;display:inline-block;vertical-align:middle;width:100%;margin-top:10px;text-align:center;}
.style-jhj1b4v9unavailableMessageOverlayreloadButton {display:inline-block;}
.style-jhj1b4v9unavailableMessageOverlay a {color:#0099FF;text-decoration:underline;cursor:pointer;}
.style-jhj1b4v9unavailableMessageOverlayiconContainer {display:none;}
.style-jhj1b4v9unavailableMessageOverlaydismissButton {display:none;}
.style-jhj1b4v9unavailableMessageOverlaytextTitle {font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;display:none;}
.style-jhj1b4v9unavailableMessageOverlay[data-state~="hideIframe"] .style-jhj1b4v9unavailableMessageOverlay_buttons {opacity:1;}
.style-jhj1b4v9unavailableMessageOverlay[data-state~="hideOverlay"] {display:none;}</style><style type="text/css" data-styleid="i8yhdqcp_i8yhdqcp">.i8yhdqcp_i8yhdqcp {-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
.i8yhdqcp_i8yhdqcplink,.i8yhdqcp_i8yhdqcpsvg {position:absolute;top:0;right:0;bottom:0;left:0;}
.i8yhdqcp_i8yhdqcp svg {position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:auto;}
.i8yhdqcp_i8yhdqcp_non-scaling-stroke * {vector-effect:non-scaling-stroke;}
.i8yhdqcp_i8yhdqcp_with-shadow svg {overflow:visible !important;}</style><style type="text/css" data-styleid="i8yhhbia_i8yhhbib">.i8yhhbia_i8yhhbib {-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
.i8yhhbia_i8yhhbiblink,.i8yhhbia_i8yhhbibsvg {position:absolute;top:0;right:0;bottom:0;left:0;}
.i8yhhbia_i8yhhbib svg {position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:auto;}
.i8yhhbia_i8yhhbib_non-scaling-stroke * {vector-effect:non-scaling-stroke;}
.i8yhhbia_i8yhhbib_with-shadow svg {overflow:visible !important;}</style><style type="text/css" data-styleid="i8yhiy1r_i8yhiy1r">.i8yhiy1r_i8yhiy1r {-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
.i8yhiy1r_i8yhiy1rlink,.i8yhiy1r_i8yhiy1rsvg {position:absolute;top:0;right:0;bottom:0;left:0;}
.i8yhiy1r_i8yhiy1r svg {position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:auto;}
.i8yhiy1r_i8yhiy1r_non-scaling-stroke * {vector-effect:non-scaling-stroke;}
.i8yhiy1r_i8yhiy1r_with-shadow svg {overflow:visible !important;}</style><style type="text/css" data-styleid="i8yhjrh2_i8yhjrh3">.i8yhjrh2_i8yhjrh3 {-webkit-tap-highlight-color:rgba(0, 0, 0, 0);}
.i8yhjrh2_i8yhjrh3link,.i8yhjrh2_i8yhjrh3svg {position:absolute;top:0;right:0;bottom:0;left:0;}
.i8yhjrh2_i8yhjrh3 svg {position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:auto;}
.i8yhjrh2_i8yhjrh3_non-scaling-stroke * {vector-effect:non-scaling-stroke;}
.i8yhjrh2_i8yhjrh3_with-shadow svg {overflow:visible !important;}</style><style type="text/css" data-styleid="style-jwa8reex">.style-jwa8reexbg {border:0px solid rgba(0, 0, 0, 1);background-color:rgba(232, 53, 86, 1);}
.style-jwa8reexinlineContent,.style-jwa8reexbg {position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;}</style><style type="text/css" data-styleid="c2">.c2bg {border:0px solid rgba(0, 0, 0, 1);background-color:rgba(97, 208, 212, 1);}
.c2inlineContent,.c2bg {position:absolute;top:0;right:0;bottom:0;left:0;border-radius:50%;}</style><style type="text/css" data-styleid="b3">.b3 button.b3link {width:100%;}
.b3[data-state~="shouldUseFlex"] .b3link,.b3[data-state~="shouldUseFlex"] .b3labelwrapper {text-align:initial;display:flex;align-items:center;}
.b3[data-state~="shouldUseFlex"][data-state~="center"] .b3link,.b3[data-state~="shouldUseFlex"][data-state~="center"] .b3labelwrapper {justify-content:center;}
.b3[data-state~="shouldUseFlex"][data-state~="left"] .b3link,.b3[data-state~="shouldUseFlex"][data-state~="left"] .b3labelwrapper {justify-content:flex-start;}
.b3[data-state~="shouldUseFlex"][data-state~="right"] .b3link,.b3[data-state~="shouldUseFlex"][data-state~="right"] .b3labelwrapper {justify-content:flex-end;}
.b3link {position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(97, 208, 212, 1);transition:border 0.4s ease 0s, background-color 0.4s ease 0s; border:solid rgba(97, 208, 212, 1) 0px;border-radius:50%;}
.b3label {font:normal normal normal 13px/1.4em 'open sans',sans-serif ; transition:color 0.4s ease 0s; color:#FFFFFF;display:inline-block;margin:calc(-1 * 0px) 0px 0;position:relative;white-space:nowrap;}
.b3[data-disabled="false"] {cursor:pointer !important;}
.b3[data-disabled="false"]:active[data-state~="mobile"] .b3link,.b3[data-disabled="false"]:hover[data-state~="desktop"] .b3link,.b3[data-disabled="false"][data-preview~="hover"] .b3link {background-color:rgba(65, 139, 141, 1);border:solid rgba(65, 139, 141, 1) -5px;transition:border 0.4s ease 0s, background-color 0.4s ease 0s;}
.b3[data-disabled="false"]:active[data-state~="mobile"] .b3label,.b3[data-disabled="false"]:hover[data-state~="desktop"] .b3label,.b3[data-disabled="false"][data-preview~="hover"] .b3label {color:#F7B8C3;transition:color 0.4s ease 0s;}
.b3[data-disabled="true"] .b3link,.b3[data-preview~="disabled"] .b3link {background-color:rgba(204, 204, 204, 1);border-color:rgba(204, 204, 204, 1);}
.b3[data-disabled="true"] .b3label,.b3[data-preview~="disabled"] .b3label {color:#FFFFFF;}</style><style type="text/css" data-styleid="bgis2">.bgis2bg {background-color:rgba(232, 53, 86, 1); box-sizing:border-box;position:absolute;top:0;right:0;bottom:0;left:0;border-top:0px solid rgba(232, 53, 86, 1);border-bottom:0px solid rgba(232, 53, 86, 1);}
.bgis2inlineContent {position:absolute;top:0;right:0;bottom:0;left:0;}</style><style type="text/css" data-styleid="p1">.p1bg {position:absolute;top:0;right:0;bottom:0;left:0;}
.p1[data-state~="mobileView"] .p1bg {left:10px;right:10px;}
.p1inlineContent {position:absolute;top:0;right:0;bottom:0;left:0;}</style><style type="text/css" data-styleid="s_DtaksTPAWidgetSkin">.s_DtaksTPAWidgetSkin {overflow:hidden;}
.s_DtaksTPAWidgetSkin iframe {position:absolute;width:100%;height:100%;overflow:hidden;}
.s_DtaksTPAWidgetSkinpreloaderOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.s_DtaksTPAWidgetSkinpreloaderOverlaycontent {width:100%;height:100%;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlay {position:absolute;top:0;left:0;color:#373737;width:100%;height:100%;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlaycontent {width:100%;height:100%;background:rgba(255, 255, 255, 0.9);font-size:0;margin-top:5px;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlaytextContainer {color:#373737;font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;font-size:14px;display:inline-block;vertical-align:middle;width:100%;margin-top:10px;text-align:center;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlayreloadButton {display:inline-block;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlay a {color:#0099FF;text-decoration:underline;cursor:pointer;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlayiconContainer {display:none;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlaydismissButton {display:none;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlaytextTitle {font-family:"Helvetica Neue", "HelveticaNeueW01-55Roma", "HelveticaNeueW02-55Roma", "HelveticaNeueW10-55Roma", Helvetica, Arial, sans-serif;display:none;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlay[data-state~="hideIframe"] .s_DtaksTPAWidgetSkinunavailableMessageOverlay_buttons {opacity:1;}
.s_DtaksTPAWidgetSkinunavailableMessageOverlay[data-state~="hideOverlay"] {display:none;}</style></div><div class="noop visual-focus-on" style="position:relative"><div id="FONTS_CONTAINER"></div><div id="SITE_BACKGROUND" style="top: 50px; height: 1078px; width: 1349px;" class="siteBackground"><div id="SITE_BACKGROUND_previous_noPrev" class="siteBackgroundprevious" style="width: 100%; height: 100%;"><div id="SITE_BACKGROUNDpreviousImage" class="siteBackgroundpreviousImage"></div><div id="SITE_BACKGROUNDpreviousVideo" class="siteBackgroundpreviousVideo"></div><div id="SITE_BACKGROUND_previousOverlay_noPrev" class="siteBackgroundpreviousOverlay"></div></div><div id="SITE_BACKGROUND_current_mainPage_jpqphv7b_bg" style="top: 0px; background-color: rgb(234, 229, 229); position: absolute; width: 100%; height: 100%;" data-position="absolute" class="siteBackgroundcurrent"><div id="SITE_BACKGROUND_currentImage_mainPage_jpqphv7b_bg" style="position: absolute; top: 0px; height: 100%; width: 100%;" data-type="bgimage" data-height="100%" class="siteBackgroundcurrentImage" data-image-css="{"backgroundSize":"","backgroundPosition":"","backgroundRepeat":""}"></div><div id="SITE_BACKGROUNDcurrentVideo" class="siteBackgroundcurrentVideo"></div><div id="SITE_BACKGROUND_currentOverlay_mainPage_jpqphv7b_bg" style="position:absolute;top:0;width:100%;height:100%" class="siteBackgroundcurrentOverlay"></div></div></div><div id="SITE_ROOT" class="SITE_ROOT" style="width:100%;min-width:980px;top:50px;padding-bottom:0" aria-hidden="false"><div id="masterPage" class="mesh-layout" data-mesh-layout="grid"><header data-is-mobile="false" data-state="" data-site-width="980" data-header-top="0" style="position:relative;margin-top:0;left:0;margin-left:0;width:100%;min-width:980px;top:;bottom:;right:" class="fc1" id="SITE_HEADER"><div style="left:0;width:100%" id="SITE_HEADERscreenWidthBackground" class="fc1screenWidthBackground"></div><div id="SITE_HEADERcenteredContent" class="fc1centeredContent"><div style="margin-left:calc((100% - 980px) / 2);width:980px" id="SITE_HEADERbg" class="fc1bg"></div><div id="SITE_HEADERinlineContent" class="fc1inlineContent"><style id="SITE_HEADER-mesh-styles">
#SITE_HEADERinlineContent {
height: auto;
width: 100%;
position: relative;
}
#SITE_HEADERinlineContent-gridWrapper {
pointer-events: none;
}
#SITE_HEADERinlineContent-gridContainer {
position: static;
display: grid;
height: auto;
width: 100%;
min-height: 266px;
grid-template-rows: 1fr;
grid-template-columns: 100%;
}
#WRchTxt9 {
position: relative;
margin: 61px 0px 10px calc((100% - 980px) * 0.5);
left: 48px;
grid-area: 1 / 1 / 2 / 2;
justify-self: start;
align-self: start;
}
#DrpDwnMn0 {
position: relative;
margin: 84px 0px 10px calc((100% - 980px) * 0.5);
left: 545px;
grid-area: 1 / 1 / 2 / 2;
justify-self: start;
align-self: start;
}
#SITE_HEADERcenteredContent {
position: relative;
}
#SITE_HEADERinlineContent-gridContainer > * {
pointer-events: initial;
}
#SITE_HEADERinlineContent-gridContainer > [id$="-rotated-wrapper"] {
pointer-events: none;
}
#SITE_HEADERinlineContent-gridContainer > [id$="-rotated-wrapper"] > * {
pointer-events: initial;
}</style><div id="SITE_HEADERinlineContent-gridWrapper" data-mesh-internal="true"><div id="SITE_HEADERinlineContent-gridContainer" data-mesh-internal="true"><div data-packed="true" style="width: 468px; pointer-events: none;" class="txtNew" id="WRchTxt9"><p class="font_0"><span style="font-weight:bold;"><a href="Aboutme.html" target="_self">Gohulan Somanathan</a></span></p>
<p class="font_0" style="font-size:18px;"><span style="font-size:18px;"><a href="Aboutme.html" target="_self">Programmer | Designer | Consultant</a></span></p>
<p class="font_0" style="font-size:18px;"><span style="font-size:18px;">CEO Founder - <span style="color:#3AC906;">Cubemak</span> <span style="color:#8B0000;">Labs</span></span><br>
Application Consultant - <span style="color:#E21C21;">Oracle</span> Hospitality</p></div><nav id="DrpDwnMn0" class="hidden-during-prewarmup ddm1" style="width: 638px; height: 29px; overflow-x: visible;" data-stretch-buttons-to-menu-width="false" data-same-width-buttons="false" data-num-items="4" data-menuborder-y="0" data-menubtn-border="0" data-ribbon-els="0" data-label-pad="0" data-ribbon-extra="0" data-drophposition="" data-dropalign="left" dir="ltr" data-state="left notMobile" data-dropmode="dropDown"><ul style="text-align:left" aria-label="Site navigation" role="navigation" id="DrpDwnMn0itemsContainer" class="ddm1itemsContainer"><li data-direction="ltr" data-listposition="left" data-data-id="bmiwx" class="ddm1repeaterButton" data-state="menu selected idle link notMobile" id="DrpDwnMn00" data-original-gap-between-text-and-btn="10" aria-hidden="false" style="width: 72px; height: 29px; position: relative; box-sizing: border-box; overflow: visible;"><a role="button" tabindex="0" aria-haspopup="false" data-listposition="left" href="Aboutme.html" target="_self" id="DrpDwnMn00linkElement" class="ddm1repeaterButtonlinkElement"><div class="ddm1repeaterButton_gapper"><div style="text-align:left" id="DrpDwnMn00bg" class="ddm1repeaterButtonbg"><p style="text-align: left; line-height: 29px;" id="DrpDwnMn00label" class="ddm1repeaterButtonlabel">HOME</p></div></div></a></li><li data-direction="ltr" data-listposition="center" data-data-id="bmiupl" class="ddm1repeaterButton" data-state="menu idle link notMobile" id="DrpDwnMn01" data-original-gap-between-text-and-btn="10" aria-hidden="false" style="width: 86px; height: 29px; position: relative; box-sizing: border-box; overflow: visible;"><a role="button" tabindex="0" aria-haspopup="false" data-listposition="center" href="resume.html" target="_self" id="DrpDwnMn01linkElement" class="ddm1repeaterButtonlinkElement"><div class="ddm1repeaterButton_gapper"><div style="text-align:left" id="DrpDwnMn01bg" class="ddm1repeaterButtonbg"><p style="text-align: left; line-height: 29px;" id="DrpDwnMn01label" class="ddm1repeaterButtonlabel">RESUME</p></div></div></a></li><li data-direction="ltr" data-listposition="center" data-data-id="bmi15ev" class="ddm1repeaterButton" data-state="menu idle link notMobile" id="DrpDwnMn02" data-original-gap-between-text-and-btn="11" aria-hidden="false" style="width: 95px; height: 29px; position: relative; box-sizing: border-box; overflow: visible;"><a role="button" tabindex="0" aria-haspopup="false" data-listposition="center" href="projects.html" target="_self" id="DrpDwnMn02linkElement" class="ddm1repeaterButtonlinkElement"><div class="ddm1repeaterButton_gapper"><div style="text-align:left" id="DrpDwnMn02bg" class="ddm1repeaterButtonbg"><p style="text-align: left; line-height: 29px;" id="DrpDwnMn02label" class="ddm1repeaterButtonlabel">PROJECTS</p></div></div></a></li><li data-direction="ltr" data-listposition="center" data-data-id="bmie39" class="ddm1repeaterButton" data-state="menu idle link notMobile" id="DrpDwnMn03" data-original-gap-between-text-and-btn="10" aria-hidden="false" style="width: 91px; height: 29px; position: relative; box-sizing: border-box; overflow: visible;"><a role="button" tabindex="0" aria-haspopup="false" data-listposition="center" href="contact.html" target="_self" id="DrpDwnMn03linkElement" class="ddm1repeaterButtonlinkElement"><div class="ddm1repeaterButton_gapper"><div style="text-align:left" id="DrpDwnMn03bg" class="ddm1repeaterButtonbg"><p style="text-align: left; line-height: 29px;" id="DrpDwnMn03label" class="ddm1repeaterButtonlabel">CONTACT</p></div></div></a></li><li data-listposition="center" class="ddm1repeaterButton" data-state="menu idle header notMobile" id="DrpDwnMn0__more__" data-original-gap-between-text-and-btn="11" aria-hidden="true" style="height: 0px; overflow: hidden; position: absolute;"><a role="button" tabindex="-1" aria-haspopup="true" data-listposition="center" id="DrpDwnMn0__more__linkElement" class="ddm1repeaterButtonlinkElement"><div class="ddm1repeaterButton_gapper"><div style="text-align:left" id="DrpDwnMn0__more__bg" class="ddm1repeaterButtonbg"><p style="text-align:left" id="DrpDwnMn0__more__label" class="ddm1repeaterButtonlabel">More</p></div></div></a></li></ul><div id="DrpDwnMn0moreButton" class="ddm1moreButton"></div><nav style="visibility: hidden; left: 158px; right: auto; bottom: auto;" data-drophposition="" data-dropalign="left" id="DrpDwnMn0dropWrapper" class="ddm1dropWrapper"><ul style="visibility: hidden; left: 158px; right: auto;" id="DrpDwnMn0moreContainer" class="ddm1moreContainer"></ul></nav></nav></div></div></div></div></header><main data-is-mobile="false" data-is-mesh="true" data-site-width="980" style="left:0;margin-left:0;width:100%;min-width:980px;top:0;bottom:;right:;position:" class="pc1" data-state="" id="PAGES_CONTAINER"><div style="left:0" id="PAGES_CONTAINERscreenWidthBackground" class="pc1screenWidthBackground"></div><div style="position:relative" id="PAGES_CONTAINERcenteredContent" class="pc1centeredContent"><div style="display:none" id="PAGES_CONTAINERbg" class="pc1bg"></div><div style="position:relative" id="PAGES_CONTAINERinlineContent" class="pc1inlineContent"><div style="width:100%"><div data-ismobile="false" data-is-mesh-layout="true" style="height: 100%; left: 0px; position: relative;" class="p1" id="mainPage"><div style="margin-left:calc((100% - 980px) / 2);width:980px" id="mainPagebg" class="p1bg"></div><div class="p1inlineContent" id="mainPageinlineContent"><style id="mainPage-mesh-styles">
#mainPageinlineContent {
height: auto;
width: 100%;
position: relative;
}
#mainPageinlineContent-gridWrapper {
pointer-events: none;
}
#mainPageinlineContent-gridContainer {
position: static;
display: grid;
height: auto;
width: 100%;
min-height: 550px;
grid-template-rows: min-content min-content min-content 1fr;
grid-template-columns: 100%;
padding-bottom: 0px;
box-sizing: border-box;
}
#WPht4 {
position: relative;
margin: 28px 0px 0 calc((100% - 980px) * 0.5);
left: 25px;
grid-area: 1 / 1 / 4 / 2;
justify-self: start;
align-self: start;
}
#WRchTxt6 {
position: relative;
margin: 50px 0px 26px calc((100% - 980px) * 0.5);
left: 455px;
grid-area: 1 / 1 / 2 / 2;
justify-self: start;
align-self: start;
}
#StBttn3 {
position: relative;
margin: 0px 0px 38px calc((100% - 980px) * 0.5);
left: 455px;
grid-area: 2 / 1 / 3 / 2;
justify-self: start;
align-self: start;
}
#StBttn4 {
position: relative;
margin: 0px 0px 38px calc((100% - 980px) * 0.5);
left: 608px;
grid-area: 2 / 1 / 3 / 2;
justify-self: start;
align-self: start;
}
#StBttn5 {
position: relative;
margin: 0px 0px 38px calc((100% - 980px) * 0.5);
left: 761px;
grid-area: 2 / 1 / 3 / 2;
justify-self: start;
align-self: start;
}
#WRchTxtg {
position: relative;
margin: 0px 0px 0 calc((100% - 980px) * 0.5);
left: 455px;
grid-area: 4 / 1 / 5 / 2;
justify-self: start;
align-self: start;
}
#mainPagecenteredContent {
position: relative;
}
#mainPageinlineContent-gridContainer > * {
pointer-events: initial;
}
#mainPageinlineContent-gridContainer > [id$="-rotated-wrapper"] {
pointer-events: none;
}
#mainPageinlineContent-gridContainer > [id$="-rotated-wrapper"] > * {
pointer-events: initial;
}</style><div id="mainPageinlineContent-gridWrapper" data-mesh-internal="true"><div id="mainPageinlineContent-gridContainer" data-mesh-internal="true"><div data-exact-height="380" data-content-padding-horizontal="0" data-content-padding-vertical="0" data-display-mode="fill" title="" class="style-jwa7o2fe" id="WPht4" style="visibility: inherit; width: 385px; height: 380px;"><div id="WPht4link" class="style-jwa7o2felink" style="width: 385px; height: 380px;"><div data-image-info="{"imageData":{"type":"Image","id":"cmqz","metaData":{"pageId":"mainPage","isPreset":false,"schemaVersion":"2.0","isHidden":false},"title":"","uri":"fe4253_54031fd8c8624697b611c75b1dc190db~mv2_d_1350_1800_s_2.jpg","description":"","width":1350,"height":1800,"alt":"pp 2.jpg","name":"pp 2.jpg"},"displayMode":"fill"}" data-has-bg-scroll-effect="" data-style="" class="style-jwa7o2feimg" id="WPht4img" style="position: relative; width: 385px; height: 380px;"><img id="WPht4imgimage" alt="pp 2.jpg" data-type="image" itemprop="image" src="./Aboutme_files/pp 2.webp" style="width: 385px; height: 380px; object-fit: cover;"></div></div></div><div data-packed="true" class="txtNew" id="WRchTxt6" style="width: 503px; pointer-events: none;"><h1 class="font_3"><span style="font-weight:bold;">Hello World,</span></h1>
<h1 class="font_4" style="font-size:40px; text-align:center;"><span style="font-size:40px;">a bit about me:</span></h1></div><div id="StBttn3" data-align="center" data-disabled="false" data-margin="0" data-should-use-flex="true" data-width="130" data-height="130" class="style-jpqpkzu9" data-state="desktop shouldUseFlex center" style="height: 130px; min-height: 18px; width: 130px;"><a href="resume.html" target="_self" role="button" id="StBttn3link" class="style-jpqpkzu9link"><span id="StBttn3label" class="style-jpqpkzu9label">MY RESUME</span></a></div><div id="StBttn4" data-align="center" data-disabled="false" data-margin="0" data-should-use-flex="true" data-width="130" data-height="130" class="style-jpqpi8rj" data-state="desktop shouldUseFlex center" style="height: 130px; min-height: 18px; width: 130px;"><a href="projects.html" target="_self" role="button" id="StBttn4link" class="style-jpqpi8rjlink"><span id="StBttn4label" class="style-jpqpi8rjlabel">MY WORK</span></a></div><div id="StBttn5" data-align="center" data-disabled="false" data-margin="0" data-should-use-flex="true" data-width="130" data-height="130" class="style-jpqpigfl" data-state="desktop shouldUseFlex center" style="height: 130px; min-height: 18px; width: 130px;"><a href="resume.html" target="_self" data-keep-roots="true" data-anchor="c1srb" role="button" id="StBttn5link" class="style-jpqpigfllink"><span id="StBttn5label" class="style-jpqpigfllabel">MY SKILLS</span></a></div><div data-packed="true" class="txtNew" id="WRchTxtg" style="width: 430px; pointer-events: none;"><p class="font_8">Happiest person, Too much of Interest in Information Technology, Programmer, Positive attitude in all walks of life, and believe in Nothing is Impossible, </p>
<p class="font_8">I'm interested about mainly on Software Developing and currently working with research in Internet & Network Security.<br>
Other Interests - Graphic Designing , Multimedia Authoring and Photography <br>
I would like to share my knowledge between others.</p>
<p class="font_8"> <br>
I'm also early adopter in new technologies. I like to face challenges and I believe that nothing impossible with your own ability. </p></div></div></div></div></div><div data-ismobile="false" data-is-mesh-layout="true" class="p1" id="cm8a" style="height: 100%; left: 0px; position: relative; display: none; max-height: 0px; visibility: hidden; overflow: hidden;"><div id="cm8abg" class="p1bg" style="margin-left: calc((100% - 980px) / 2); width: 980px;"></div><div class="p1inlineContent" id="cm8ainlineContent"><style id="cm8a-mesh-styles">
#cm8ainlineContent {
height: auto;
width: 100%;
min-height: 1466px;
padding-bottom: 0px;
box-sizing: border-box;
position: relative;
}
#cm8acenteredContent {
position: relative;
}
#cm8ainlineContent-gridWrapper {
pointer-events: none;
}
#cm8ainlineContent-gridContainer > * {
pointer-events: initial;
}
#cm8ainlineContent-gridContainer > [id$="-rotated-wrapper"] {
pointer-events: none;
}
#cm8ainlineContent-gridContainer > [id$="-rotated-wrapper"] > * {
pointer-events: initial;
}</style></div></div><div data-ismobile="false" data-is-mesh-layout="true" class="p1" id="c1d94" style="height: 100%; left: 0px; position: relative; display: none; max-height: 0px; visibility: hidden; overflow: hidden;"><div id="c1d94bg" class="p1bg" style="margin-left: calc((100% - 980px) / 2); width: 980px;"></div><div class="p1inlineContent" id="c1d94inlineContent"><style id="c1d94-mesh-styles">
#c1d94inlineContent {
height: auto;
width: 100%;
min-height: 500px;
padding-bottom: 0px;
box-sizing: border-box;
position: relative;
}
#c1d94centeredContent {
position: relative;
}
#c1d94inlineContent-gridWrapper {
pointer-events: none;
}
#c1d94inlineContent-gridContainer > * {
pointer-events: initial;
}
#c1d94inlineContent-gridContainer > [id$="-rotated-wrapper"] {
pointer-events: none;
}
#c1d94inlineContent-gridContainer > [id$="-rotated-wrapper"] > * {
pointer-events: initial;
}</style></div></div></div></div></div></main><footer style="bottom:auto;left:0;margin-left:0;width:100%;min-width:980px;top:;right:;position:" class="fc1_footer fc1" data-site-width="980" data-fixedposition="false" data-isrunninginmobile="false" data-state=" " id="SITE_FOOTER"><div style="left:0;width:100%" id="SITE_FOOTERscreenWidthBackground" class="fc1screenWidthBackground"></div><div style="width:100%" id="SITE_FOOTERcenteredContent" class="fc1centeredContent"><div style="margin-left:calc((100% - 980px) / 2);width:980px" id="SITE_FOOTERbg" class="fc1bg"></div><div id="SITE_FOOTERinlineContent" class="fc1inlineContent"><style id="SITE_FOOTER-mesh-styles">
#SITE_FOOTERinlineContent {
height: auto;
width: 100%;
position: relative;
}
#SITE_FOOTERinlineContent-gridWrapper {
pointer-events: none;
}
#SITE_FOOTERinlineContent-gridContainer {
position: static;
display: grid;
height: auto;
width: 100%;
min-height: auto;
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content min-content min-content 1fr;
grid-template-columns: 100%;
}
#ie48nakd {
position: relative;
margin: 19px 0px 50px calc((100% - 980px) * 0.5);
left: -185px;
grid-area: 1 / 1 / 11 / 2;
justify-self: start;
align-self: start;
}
#WRchTxt7 {
position: relative;
margin: 70px 0px 5px calc((100% - 980px) * 0.5);
left: 551px;
grid-area: 1 / 1 / 2 / 2;
justify-self: start;
align-self: start;
}
#WRchTxtx {
position: relative;
margin: 78px 0px 10px calc((100% - 980px) * 0.5);
left: 767px;
grid-area: 1 / 1 / 4 / 2;
justify-self: start;
align-self: start;
}
#WRchTxt1 {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 94px;
grid-area: 1 / 1 / 9 / 2;
justify-self: start;
align-self: start;
}
#WRchTxt8 {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 325px;
grid-area: 1 / 1 / 10 / 2;
justify-self: start;
align-self: start;
}
#LnkBr2 {
position: relative;
margin: 0px 0px 10px calc((100% - 980px) * 0.5);
left: 542px;
grid-area: 2 / 1 / 3 / 2;
justify-self: start;
align-self: start;
}
#i8yhdqcp {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 485px;
grid-area: 1 / 1 / 5 / 2;
justify-self: start;
align-self: start;
}
#i8yhhbia {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 33px;
grid-area: 1 / 1 / 6 / 2;
justify-self: start;
align-self: start;
}
#i8yhiy1r {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 259px;
grid-area: 1 / 1 / 7 / 2;
justify-self: start;
align-self: start;
}
#i8yhjrh2 {
position: relative;
margin: 70px 0px 10px calc((100% - 980px) * 0.5);
left: 711px;
grid-area: 1 / 1 / 8 / 2;
justify-self: start;
align-self: start;
}
#SITE_FOOTERcenteredContent {
position: relative;
}
#SITE_FOOTERinlineContent-gridContainer > * {
pointer-events: initial;
}
#SITE_FOOTERinlineContent-gridContainer > [id$="-rotated-wrapper"] {
pointer-events: none;
}
#SITE_FOOTERinlineContent-gridContainer > [id$="-rotated-wrapper"] > * {
pointer-events: initial;
}</style><div id="SITE_FOOTERinlineContent-gridWrapper" data-mesh-internal="true"><div id="SITE_FOOTERinlineContent-gridContainer" data-mesh-internal="true"><div style="height: 137px; width: 1349px; left: -185px;" class="bgis2" id="ie48nakd"><div data-align-type="center" data-fitting-type="legacy_strip_tile" data-type="bgimage" id="ie48nakdbg" class="bgis2bg" style="background-image: none;"></div><div id="ie48nakdinlineContent" class="bgis2inlineContent"></div></div><div data-packed="true" style="width: 110px; pointer-events: none;" class="txtNew" id="WRchTxt7"><p class="font_9"><span class="color_11"><span style="font-weight:bold;">Follow me</span></span></p></div><div data-packed="true" style="width: 203px; pointer-events: none;" class="txtNew" id="WRchTxtx"><p class="font_9"><span class="color_11">© 2019 by Gohulan<br>
Proudly created with Cubemak Labs</span><br>
</p></div><div data-packed="true" style="width: 123px; pointer-events: none;" class="txtNew" id="WRchTxt1"><p class="font_8" style="line-height:1.2em;"><span class="color_11"><span style="font-weight:bold;">Call</span></span></p>
<p class="font_9"><span class="color_11">T : +94 11 7235 535 M: +94 77 3235 535</span></p></div><div data-packed="true" style="width: 130px; pointer-events: none;" class="txtNew" id="WRchTxt8"><p class="font_9"><span class="color_11"><span style="font-weight:bold;">Contact</span></span></p>
<p class="font_9"><span class="color_11"><object height="0"><a class="auto-generated-link" data-auto-recognition="true" data-content="gohulan@outlook.com" href="mailto:gohulan@outlook.com" data-type="mail">gohulan@outlook.com</a></object></span></p>
<p class="font_9"><span class="color_11"><object height="0"><a class="auto-generated-link" data-auto-recognition="true" data-content="info@cubemak.com" href="mailto:info@cubemak.com" data-type="mail">info@cubemak.com</a></object> </span></p></div><div data-hide-prejs="true" style="width:134px;height:22px;top:;bottom:;left:;right:;position:" class="lb1" id="LnkBr2"><ul aria-label="Social bar" id="LnkBr2itemsContainer" class="lb1itemsContainer"><li style="width:22px;height:22px;margin-bottom:0;margin-right:6px;display:inline-block" class="lb1imageItem" id="LnkBr20image"><a href="https://www.linkedin.com/in/gohulan/" target="_blank" data-content="https://www.linkedin.com/in/gohulan/" data-type="external" rel="nofollow" id="LnkBr20imagelink" class="lb1imageItemlink"><div data-image-info="{"imageData":{"type":"Image","id":"dataItem-jw934mwm","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"title":"LinkedIn Social Icon","uri":"48a2a42b19814efaa824450f23e8a253.png","width":200,"height":200,"alt":"LinkedIn Social Icon","link":{"type":"ExternalLink","id":"dataItem-jwa9jflw","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"url":"https://www.linkedin.com/in/gohulan/","target":"_blank"}},"displayMode":"fill"}" style="position: absolute; width: 22px; height: 22px;" data-has-bg-scroll-effect="" data-style="position:absolute" class="lb1imageItemimage" id="LnkBr20imageimage"><img id="LnkBr20imageimageimage" alt="LinkedIn Social Icon" data-type="image" itemprop="image" style="width: 22px; height: 22px; object-fit: cover;" src="./Aboutme_files/48a2a42b19814efaa824450f23e8a253.webp"></div></a></li><li style="width:22px;height:22px;margin-bottom:0;margin-right:6px;display:inline-block" class="lb1imageItem" id="LnkBr21image"><a href="https://twitter.com/Gohulan" target="_blank" data-content="https://twitter.com/Gohulan" data-type="external" rel="nofollow" id="LnkBr21imagelink" class="lb1imageItemlink"><div data-image-info="{"imageData":{"type":"Image","id":"i117oa","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"2.0","isHidden":false},"title":"Twitter Social Icon","uri":"9c4b521dd2404cd5a05ed6115f3a0dc8.png","description":"","width":200,"height":200,"alt":"Twitter Social Icon","link":{"type":"ExternalLink","id":"1zft","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"url":"https://twitter.com/Gohulan","target":"_blank"}},"displayMode":"fill"}" style="position: absolute; width: 22px; height: 22px;" data-has-bg-scroll-effect="" data-style="position:absolute" class="lb1imageItemimage" id="LnkBr21imageimage"><img id="LnkBr21imageimageimage" alt="Twitter Social Icon" data-type="image" itemprop="image" style="width: 22px; height: 22px; object-fit: cover;" src="./Aboutme_files/9c4b521dd2404cd5a05ed6115f3a0dc8.webp"></div></a></li><li style="width:22px;height:22px;margin-bottom:0;margin-right:6px;display:inline-block" class="lb1imageItem" id="LnkBr22image"><a href="https://www.tripadvisor.com/Profile/Gohulan" target="_blank" data-content="https://www.tripadvisor.com/Profile/Gohulan" data-type="external" rel="nofollow" id="LnkBr22imagelink" class="lb1imageItemlink"><div data-image-info="{"imageData":{"type":"Image","id":"dataItem-jw934mws","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"title":"Trip Advisor Social Icon","uri":"aa15b518717141db9d0fb129b9d51e39.png","width":200,"height":200,"alt":"Trip Advisor Social Icon","link":{"type":"ExternalLink","id":"dataItem-jwa9jflx","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"url":"https://www.tripadvisor.com/Profile/Gohulan","target":"_blank"}},"displayMode":"fill"}" style="position: absolute; width: 22px; height: 22px;" data-has-bg-scroll-effect="" data-style="position:absolute" class="lb1imageItemimage" id="LnkBr22imageimage"><img id="LnkBr22imageimageimage" alt="Trip Advisor Social Icon" data-type="image" itemprop="image" style="width: 22px; height: 22px; object-fit: cover;" src="./Aboutme_files/aa15b518717141db9d0fb129b9d51e39.webp"></div></a></li><li style="width:22px;height:22px;margin-bottom:0;margin-right:6px;display:inline-block" class="lb1imageItem" id="LnkBr23image"><a href="http://www.facebook.com/gohulan.somanathan" target="_blank" data-content="http://www.facebook.com/gohulan.somanathan" data-type="external" rel="nofollow" id="LnkBr23imagelink" class="lb1imageItemlink"><div data-image-info="{"imageData":{"type":"Image","id":"i01kxu","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"2.0","isHidden":false},"title":"Facebook Social Icon","uri":"e316f544f9094143b9eac01f1f19e697.png","description":"","width":200,"height":200,"alt":"Facebook Social Icon","link":{"type":"ExternalLink","id":"htk18o5m_1vu2","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"url":"http://www.facebook.com/gohulan.somanathan","target":"_blank"}},"displayMode":"fill"}" style="position: absolute; width: 22px; height: 22px;" data-has-bg-scroll-effect="" data-style="position:absolute" class="lb1imageItemimage" id="LnkBr23imageimage"><img id="LnkBr23imageimageimage" alt="Facebook Social Icon" data-type="image" itemprop="image" style="width: 22px; height: 22px; object-fit: cover;" src="./Aboutme_files/e316f544f9094143b9eac01f1f19e697.webp"></div></a></li><li style="width:22px;height:22px;margin-bottom:0;margin-right:6px;display:inline-block" class="lb1imageItem" id="LnkBr24image"><a href="https://www.youtube.com/channel/UCdkqfMXBjLZD38TCAtGBNwQ?view_as=subscriber" target="_blank" data-content="https://www.youtube.com/channel/UCdkqfMXBjLZD38TCAtGBNwQ?view_as=subscriber" data-type="external" rel="nofollow" id="LnkBr24imagelink" class="lb1imageItemlink"><div data-image-info="{"imageData":{"type":"Image","id":"dataItem-jw934mws1","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"title":"YouTube Social Icon","uri":"a1b09fe8b7f04378a9fe076748ad4a6a.png","width":200,"height":200,"alt":"YouTube Social Icon","link":{"type":"ExternalLink","id":"dataItem-jwa9jflx1","metaData":{"pageId":"masterPage","isPreset":false,"schemaVersion":"1.0","isHidden":false},"url":"https://www.youtube.com/channel/UCdkqfMXBjLZD38TCAtGBNwQ?view_as=subscriber","target":"_blank"}},"displayMode":"fill"}" style="position: absolute; width: 22px; height: 22px;" data-has-bg-scroll-effect="" data-style="position:absolute" class="lb1imageItemimage" id="LnkBr24imageimage"><img id="LnkBr24imageimageimage" alt="YouTube Social Icon" data-type="image" itemprop="image" style="width: 22px; height: 22px; object-fit: cover;" src="./Aboutme_files/a1b09fe8b7f04378a9fe076748ad4a6a.webp"></div></a></li></ul></div><div data-svg-id="8bfea90df6d04562a23fb515327ec615.svg" data-svg-type="shape" data-display-mode="legacyFit" data-strokewidth="0" data-viewbox="0 0 200 200" data-preserve-viewbox="ignore" style="top:;bottom:;left:;right:;width:45px;height:45px;position:" class="i8yhdqcp_i8yhdqcp" id="i8yhdqcp"><div id="i8yhdqcplink" class="i8yhdqcp_i8yhdqcplink"><div style="stroke-width:0;fill-opacity:1;stroke:rgba(255, 255, 255, 1);stroke-opacity:1;fill:rgba(97, 208, 212, 1)" class="i8yhdqcp_i8yhdqcp_i8yhdqcp i8yhdqcp_i8yhdqcp_non-scaling-stroke i8yhdqcp_i8yhdqcpsvg" id="i8yhdqcpsvg"><svg preserveAspectRatio="xMidYMid meet" data-bbox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" role="img" style="stroke-width: 0px;">
<g>
<path d="M100 0C44.8 0 0 44.8 0 100s44.8 100 100 100 100-44.8 100-100S155.2 0 100 0zm49.7 105H106v43.8c0 2.7-1.8 4.9-4.5 4.9s-4.5-2.2-4.5-4.9V105H51c-2.7 0-4.9-2.3-4.9-5s2.2-5 4.9-5h46V50.1c0-2.7 1.8-4.9 4.5-4.9s4.5 2.2 4.5 4.9V95h43.7c2.7 0 4.9 2.3 4.9 5s-2.2 5-4.9 5z"></path>
</g>
</svg>
</div></div></div><div data-svg-id="758e97db4e7343c89ed0766ac36d46c9.svg" data-svg-type="shape" data-display-mode="legacyFit" data-strokewidth="0" data-viewbox="0 0 200 200" data-preserve-viewbox="ignore" style="top:;bottom:;left:;right:;width:45px;height:45px;position:" class="i8yhhbia_i8yhhbib" id="i8yhhbia"><div id="i8yhhbialink" class="i8yhhbia_i8yhhbiblink"><div style="stroke-width:0;fill-opacity:1;stroke:rgba(0, 0, 0, 1);stroke-opacity:1;fill:rgba(97, 208, 212, 1)" class="i8yhhbia_i8yhhbib_i8yhhbia i8yhhbia_i8yhhbib_non-scaling-stroke i8yhhbia_i8yhhbibsvg" id="i8yhhbiasvg"><svg preserveAspectRatio="xMidYMid meet" data-bbox="0.3 0.1 200 200" xmlns="http://www.w3.org/2000/svg" viewBox="0.30000001192092896 0.10000000149011612 200 200" role="img" style="stroke-width: 0px;">
<g>
<path d="M86.9 74.6c1.8-1.8 1.6-6.2-.4-8.2L71 50.9c-1.8-1.8-5.5-1.5-7.4.4l-3.9 3.9L83 78.5l3.9-3.9z"></path>
<path d="M102.7 125.8c-7.1 0-14.6-2.6-20.5-8.4-10-10-9.8-24.9-3.6-34L55.4 60.1c-4 6.2-4.9 15.3-2.5 25.9C56 99.4 64 113 75.3 124.4c11.2 11.2 25.4 19.5 38.8 22.8 10.7 2.6 20 1.8 26.2-2.1L117 121.7c-3.9 2.6-9 4.1-14.3 4.1z"></path>
<path d="M100.3.1C45.1.1.3 44.9.3 100.1s44.8 100 100 100 100-44.8 100-100S155.5.1 100.3.1zm53.5 141.4l-6.2 6.2c-.2.2-.3.3-.5.4-5.2 4.7-12.6 7.1-21.3 7.1-4.2 0-8.6-.6-13.3-1.7-14.8-3.6-29.7-12.3-41.9-24.5s-20.7-26.9-24.1-41.6c-3.3-14.3-1.1-26.7 6-34.3.1-.1.2-.2.2-.3l6.2-6.2c2.3-2.3 5.5-3.6 8.8-3.6 3.1 0 5.9 1.1 7.9 3.2l15.5 15.5c4.6 4.6 4.8 13.1.4 17.5l-5.9 5.9c-6.2 6.3-7 19.4 1.2 27.6 8.5 8.5 22.2 8.1 28.4 2l5.8-5.8c2.3-2.3 5.5-3.6 8.8-3.6 3.1 0 5.9 1.1 7.9 3.2l15.5 15.5c4.8 4.5 5 13 .6 17.5z"></path>
<path d="M133.2 113c-1.8-1.8-5.5-1.5-7.4.4l-3.9 3.9 23.3 23.3 3.9-3.9c1.8-1.8 1.6-6.2-.4-8.2L133.2 113z"></path>
</g>
</svg>
</div></div></div><div data-svg-id="19b7a840e6f049928d49b32aeaec148e.svg" data-svg-type="shape" data-display-mode="legacyFit" data-strokewidth="0" data-viewbox="0 0 200 200" data-preserve-viewbox="ignore" style="top:;bottom:;left:;right:;width:45px;height:45px;position:" class="i8yhiy1r_i8yhiy1r" id="i8yhiy1r"><div id="i8yhiy1rlink" class="i8yhiy1r_i8yhiy1rlink"><div style="stroke-width:0;fill-opacity:1;stroke:rgba(0, 0, 0, 1);stroke-opacity:1;fill:rgba(97, 208, 212, 1)" class="i8yhiy1r_i8yhiy1r_i8yhiy1r i8yhiy1r_i8yhiy1r_non-scaling-stroke i8yhiy1r_i8yhiy1rsvg" id="i8yhiy1rsvg"><svg preserveAspectRatio="xMidYMid meet" data-bbox="-0.3 0.1 200 200" xmlns="http://www.w3.org/2000/svg" viewBox="-0.30000001192092896 0.10000000149011612 200 200" role="img" style="stroke-width: 0px;">
<g>
<path d="M46 75.2l54.5 25.2 52.5-24V67H46v8.2z"></path>
<path d="M101.9 108.2c-.1 0-.2.4-.3.4-.3.1-.6.4-1 .4-.3 0-.6-.3-.9-.4-.1 0-.1-.2-.2-.2s-.4-.1-.5-.2L46 83.7V134h107V84.8L102.1 108c-.1.1-.1.2-.2.2z"></path>
<path d="M99.7.1C44.5.1-.3 44.9-.3 100.1s44.8 100 100 100 100-44.8 100-100S155 .1 99.7.1zM161 138.2c0 2.1-1.7 3.8-3.8 3.8H42.8c-2.1 0-3.8-1.7-3.8-3.8V62.8c0-2.1 1.7-3.8 3.8-3.8h114.3c2.1 0 3.8 1.7 3.8 3.8v75.4z"></path>
</g>
</svg>
</div></div></div><div data-svg-id="c76972b86d774020ba7539fa841170dc.svg" data-svg-type="shape" data-display-mode="legacyFit" data-strokewidth="0" data-viewbox="0 0 200 200" data-preserve-viewbox="ignore" style="top:;bottom:;left:;right:;width:45px;height:45px;position:" class="i8yhjrh2_i8yhjrh3" id="i8yhjrh2"><div id="i8yhjrh2link" class="i8yhjrh2_i8yhjrh3link"><div style="stroke-width:0;fill-opacity:1;stroke:rgba(0, 0, 0, 1);stroke-opacity:1;fill:rgba(97, 208, 212, 1)" class="i8yhjrh2_i8yhjrh3_i8yhjrh2 i8yhjrh2_i8yhjrh3_non-scaling-stroke i8yhjrh2_i8yhjrh3svg" id="i8yhjrh2svg"><svg preserveAspectRatio="xMidYMid meet" data-bbox="0 0 200 200" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200" role="img" style="stroke-width: 0px;">
<g>
<path d="M100 41.4c-32.3 0-58.6 26.3-58.6 58.6s26.3 58.6 58.6 58.6 58.6-26.3 58.6-58.6-26.3-58.6-58.6-58.6zm29.4 43.3c-2.1 1.4-4.9.9-6.4-1.2-5.5-8.1-14.2-12.8-23.7-12.8-16 0-29 13.1-29 29.3s13.2 29.3 29.4 29.3c8.1 0 15.8-3.3 21.4-9.2 1.7-1.8 4.6-1.9 6.5-.2 1.8 1.7 1.9 4.6.2 6.5-7.2 7.6-17.4 12-28 12-21.3 0-38.6-17.2-38.6-38.4s17.1-38.4 38.2-38.4c12.6 0 24 6.1 31.2 16.8 1.4 2.1.9 4.9-1.2 6.3z"></path>
<path d="M100 0C44.8 0 0 44.8 0 100s44.8 100 100 100 100-44.8 100-100S155.2 0 100 0zm0 167.7c-37.3 0-67.7-30.4-67.7-67.7S62.7 32.3 100 32.3c37.3 0 67.7 30.4 67.7 67.7s-30.4 67.7-67.7 67.7z"></path>
</g>
</svg>
</div></div></div></div></div></div></div></footer></div></div><div id="WIX_ADS" class="wix-ads-2 visible desktop"><style type="text/css" data-styleid="wixAds-style">@charset "UTF-8";
/*the ad font is Helvetica. we don't wont users to use it in the sites, so we changed the name of the font */
@font-face {
font-family: "wixFreemiumFontW01-35Thin";
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/56be84de-9d60-4089-8df0-0ea6ec786b84.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/56be84de-9d60-4089-8df0-0ea6ec786b84.eot?#iefix") format("eot"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/50d35bbc-dfd4-48f1-af16-cf058f69421d.woff") format("woff"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/278bef59-6be1-4800-b5ac-1f769ab47430.ttf") format("truetype"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/2e309b1b-08b8-477f-bc9e-7067cf0af0b3.svg#2e309b1b-08b8-477f-bc9e-7067cf0af0b3") format("svg"); }
@font-face {
font-family: "wixFreemiumFontW01-45Ligh";
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/ae1656aa-5f8f-4905-aed0-93e667bd6e4a.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/ae1656aa-5f8f-4905-aed0-93e667bd6e4a.eot?#iefix") format("eot"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/530dee22-e3c1-4e9f-bf62-c31d510d9656.woff") format("woff"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/688ab72b-4deb-4e15-a088-89166978d469.ttf") format("truetype"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/7816f72f-f47e-4715-8cd7-960e3723846a.svg#7816f72f-f47e-4715-8cd7-960e3723846a") format("svg"); }
@font-face {
font-family: "wixFreemiumFontW01-55Roma";
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/b7693a83-b861-4aa6-85e0-9ecf676bc4d6.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/b7693a83-b861-4aa6-85e0-9ecf676bc4d6.eot?#iefix") format("eot"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/bcf54343-d033-41ee-bbd7-2b77df3fe7ba.woff") format("woff"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/b0ffdcf0-26da-47fd-8485-20e4a40d4b7d.ttf") format("truetype"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/da09f1f1-062a-45af-86e1-2bbdb3dd94f9.svg#da09f1f1-062a-45af-86e1-2bbdb3dd94f9") format("svg"); }
@font-face {
font-family: "wixFreemiumFontW01-65Medi";
font-weight: bold;
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/07fe0fec-b63f-4963-8ee1-535528b67fdb.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/07fe0fec-b63f-4963-8ee1-535528b67fdb.eot?#iefix") format("eot"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/60be5c39-863e-40cb-9434-6ebafb62ab2b.woff") format("woff"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/4c6503c9-859b-4d3b-a1d5-2d42e1222415.ttf") format("truetype"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/36c182c6-ef98-4021-9b0d-d63122c2bbf5.svg#36c182c6-ef98-4021-9b0d-d63122c2bbf5") format("svg"); }
@font-face {
font-family: "wixFreemiumFontW02-35Thin";
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/30b6ffc3-3b64-40dd-9ff8-a3a850daf535.eot?#iefix");
src: url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/30b6ffc3-3b64-40dd-9ff8-a3a850daf535.eot?#iefix") format("eot"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/775a65da-14aa-4634-be95-6724c05fd522.woff") format("woff"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/988eaaa7-5565-4f65-bb17-146b650ce9e9.ttf") format("truetype"), url("//static.parastorage.com/services/third-party/fonts/Helvetica/Fonts/3503a1a6-91c3-4c42-8e66-2ea7b2b57541.svg#3503a1a6-91c3-4c42-8e66-2ea7b2b57541") format("svg"); }
@font-face {
font-family: "wixFreemiumFontW02-45Ligh";